/* =====================================================
   IronTools.IT – Main Stylesheet
   Industrial dark theme with orange accent
   ===================================================== */

/* ===== CUSTOM PROPERTIES ===== */
:root {
  --bg:     #0c0e0f;
  --panel:  #141618;
  --card:   #1a1d1f;
  --card2:  #1f2224;
  --border: #252a2d;
  --border2:#2e3336;
  --txt:    #f0f2f3;
  --txt2:   #b8c0c8;
  --mut:    #606870;
  --acc:    #f97316;
  --acc2:   #ea580c;
  --acc3:   #fb923c;
  --green:  #22c55e;
  --blue:   #38bdf8;
  --red:    #ef4444;
  --it-g:   #009246;
  --it-r:   #ce2b37;

  --font:    'DM Sans',system-ui,sans-serif;
  --display: 'Bebas Neue',sans-serif;
  --mono:    'JetBrains Mono',monospace;

  --r:  10px;
  --r2: 16px;
  --transition: .18s ease;
}

/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--txt);
  font-size: 15px;
  line-height: 1.6;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img, svg { display: block; }
button { cursor: pointer; font-family: var(--font); }

/* Noise texture overlay */
body::after {
  content: '';
  position: fixed; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23n)' opacity='.032'/%3E%3C/svg%3E");
  pointer-events: none; z-index: 1000; opacity: .7;
}

/* ===== FLAG BAR ===== */
.flag-bar {
  position: fixed; top: 0; left: 0; right: 0;
  height: 3px; display: flex; z-index: 2000;
}
.flag-bar span { flex: 1; }

/* ===== NAV ===== */
#main-nav {
  position: fixed; top: 3px; left: 0; right: 0; z-index: 500;
  height: 62px;
  display: flex; align-items: center;
  padding: 0 24px; gap: 20px;
  background: rgba(12,14,15,.88);
  backdrop-filter: blur(16px) saturate(160%);
  border-bottom: 1px solid rgba(37,42,45,.6);
  transition: box-shadow var(--transition);
}
#main-nav.scrolled {
  box-shadow: 0 4px 32px rgba(0,0,0,.5);
  border-bottom-color: var(--border);
}

/* Logo */
.nav-logo { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.logo-svg { transition: transform var(--transition); }
.nav-logo:hover .logo-svg { transform: scale(1.06); }

/* Logo beam animations */
@keyframes beamGlow {
  0%,100% { filter: drop-shadow(0 0 2px rgba(249,115,22,.4)); }
  50%      { filter: drop-shadow(0 0 10px rgba(249,115,22,.9)); }
}
.nav-logo:hover .logo-svg g { animation: beamGlow 1.2s ease-in-out; }

.logo-text {
  font-family: var(--display);
  font-size: 22px;
  letter-spacing: .04em;
  line-height: 1;
}
.logo-iron  { color: var(--acc); }
.logo-tools { color: var(--txt); }
.logo-tld   { color: var(--mut); font-size: 16px; }

.nav-center {
  display: flex; align-items: center; gap: 26px;
  flex: 1; justify-content: center;
}
.nav-center a {
  font-size: 13px; font-weight: 500; color: var(--mut);
  letter-spacing: .06em; text-transform: uppercase;
  transition: color var(--transition);
}
.nav-center a:hover { color: var(--acc); }

.nav-right { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.lang-btn {
  font-size: 12px; font-weight: 600; color: var(--mut);
  padding: 6px 10px; border: 1px solid var(--border); border-radius: 6px;
  transition: all var(--transition);
}
.lang-btn:hover { border-color: var(--acc); color: var(--acc); }
.nav-cta {
  background: var(--acc); color: #000;
  font-size: 12px; font-weight: 700; letter-spacing: .06em;
  padding: 8px 16px; border-radius: 7px; text-transform: uppercase;
  transition: background var(--transition), box-shadow var(--transition);
}
.nav-cta:hover {
  background: var(--acc3);
  box-shadow: 0 4px 18px rgba(249,115,22,.4);
}

/* Burger */
.nav-burger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; padding: 6px;
}
.nav-burger span {
  display: block; width: 22px; height: 2px;
  background: var(--txt); border-radius: 2px;
  transition: all var(--transition);
}
.nav-burger[aria-expanded="true"] span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.nav-burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-burger[aria-expanded="true"] span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

/* Mobile menu */
.mobile-menu {
  display: none; flex-direction: column; gap: 4px;
  position: fixed; top: 65px; left: 0; right: 0; bottom: 0;
  background: var(--panel); padding: 24px; z-index: 499;
  transform: translateX(100%); transition: transform .25s ease;
}
.mobile-menu.open { transform: translateX(0); }
.mobile-menu a {
  font-size: 20px; font-weight: 600; padding: 14px 0;
  border-bottom: 1px solid var(--border); color: var(--txt2);
}
.mobile-menu .mobile-cta {
  margin-top: 12px; background: var(--acc); color: #000;
  border-radius: 8px; padding: 14px; text-align: center;
  font-weight: 700; border: none;
}

@media (max-width: 768px) {
  .nav-center { display: none; }
  .nav-burger { display: flex; }
  .mobile-menu { display: flex; }
  .nav-cta { display: none; }
}

/* ===== PAGE WRAPPER ===== */
.page-top { padding-top: 65px; }

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  padding: 130px 24px 90px;
  position: relative; text-align: center; overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  pointer-events: none; overflow: hidden;
  display: flex; align-items: center; justify-content: center;
}
.hero-bg svg { width: 140%; max-width: 1200px; opacity: .055; }
.hero-radial {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 65% 55% at 50% 42%, rgba(249,115,22,.07) 0%, transparent 70%),
    linear-gradient(180deg, transparent 55%, var(--bg) 100%);
  pointer-events: none;
}

/* Grid lines background */
.hero::before {
  content: '';
  position: absolute; inset: 0; pointer-events: none;
  background-image:
    linear-gradient(rgba(37,42,45,.5) 1px, transparent 1px),
    linear-gradient(90deg, rgba(37,42,45,.5) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 70% at 50% 50%, black 20%, transparent 80%);
}

.hero-content { position: relative; z-index: 1; max-width: 860px; }

.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: var(--mono); font-size: 11px; font-weight: 500;
  color: var(--acc); text-transform: uppercase; letter-spacing: .14em;
  padding: 6px 16px;
  border: 1px solid rgba(249,115,22,.3); border-radius: 100px;
  background: rgba(249,115,22,.07); margin-bottom: 30px;
}
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:.2} }
.hero-eyebrow::before {
  content: ''; width: 6px; height: 6px; border-radius: 50%;
  background: var(--acc); flex-shrink: 0;
  animation: blink 1.6s ease-in-out infinite;
}

h1.hero-h1 {
  font-family: var(--display);
  font-size: clamp(64px, 11vw, 120px);
  line-height: .9; letter-spacing: .02em;
  margin-bottom: 28px;
}
h1.hero-h1 .acc { color: var(--acc); }
h1.hero-h1 .dim { color: var(--mut); }

.hero-sub {
  font-size: clamp(15px, 2vw, 18px); color: var(--txt2);
  max-width: 560px; margin: 0 auto 44px; line-height: 1.7;
}
.hero-sub b { color: var(--txt); font-weight: 600; }

.hero-ctas { display: flex; align-items: center; justify-content: center; gap: 14px; flex-wrap: wrap; }
.btn-primary {
  display: inline-flex; align-items: center; gap: 9px;
  background: linear-gradient(135deg, var(--acc), var(--acc2));
  color: #000; font-family: var(--display); font-size: 20px; font-weight: 400;
  letter-spacing: .06em; padding: 15px 32px; border-radius: 10px;
  box-shadow: 0 8px 30px rgba(249,115,22,.35);
  transition: all .2s;
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 14px 42px rgba(249,115,22,.5); }
.btn-secondary {
  display: inline-flex; align-items: center; gap: 9px;
  background: transparent; color: var(--txt2);
  font-size: 16px; font-weight: 500;
  padding: 15px 28px; border: 1px solid var(--border); border-radius: 10px;
  transition: all .2s;
}
.btn-secondary:hover { border-color: var(--acc); color: var(--acc); }

/* ===== STATS ===== */
.stats-strip {
  display: flex; flex-wrap: wrap;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--panel);
}
.stat-item {
  flex: 1; min-width: 140px; padding: 24px 20px;
  text-align: center; border-right: 1px solid var(--border);
  position: relative;
}
.stat-item:last-child { border-right: none; }
.stat-val {
  font-family: var(--display);
  font-size: 40px; color: var(--acc); line-height: 1;
}
.stat-lbl {
  font-size: 11px; color: var(--mut);
  text-transform: uppercase; letter-spacing: .08em; margin-top: 5px;
}

/* ===== SECTIONS ===== */
.section {
  padding: 96px 24px;
  max-width: 1200px; margin: 0 auto;
  position: relative; z-index: 1;
}
.section-label {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--mono); font-size: 11px; font-weight: 500;
  color: var(--acc); text-transform: uppercase; letter-spacing: .14em;
  margin-bottom: 12px;
}
.section-label::before {
  content: ''; flex: 0 0 28px; height: 1.5px; background: var(--acc);
}
.section-title {
  font-family: var(--display);
  font-size: clamp(36px, 5vw, 58px);
  line-height: .95; letter-spacing: .02em;
  margin-bottom: 18px;
}
.section-sub {
  font-size: 16px; color: var(--txt2); max-width: 520px;
  margin-bottom: 52px; line-height: 1.7;
}

/* ===== TOOLS GRID ===== */
.tools-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(290px, 1fr));
  gap: 14px;
}
.tool-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--r2);
  padding: 26px; display: flex; flex-direction: column;
  position: relative; overflow: hidden;
  transition: transform .2s, border-color .2s, box-shadow .2s;
}
.tool-card.live { cursor: pointer; }
.tool-card.live:hover {
  transform: translateY(-5px);
  border-color: var(--acc);
  box-shadow: 0 20px 50px rgba(0,0,0,.5), 0 0 0 1px rgba(249,115,22,.18);
}
.tool-card.soon { opacity: .6; }
/* Corner accent for live cards */
.tool-card.live::after {
  content: ''; position: absolute;
  top: 0; right: 0;
  width: 60px; height: 60px;
  background: conic-gradient(from 270deg at 100% 0%, var(--acc) 0deg, transparent 90deg);
  opacity: 0; transition: opacity .2s;
  pointer-events: none;
}
.tool-card.live:hover::after { opacity: .15; }

.tool-card-top {
  display: flex; align-items: flex-start;
  justify-content: space-between; margin-bottom: 18px;
}
.tool-icon {
  width: 46px; height: 46px; border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 22px; flex-shrink: 0;
  background: rgba(255,255,255,.04); border: 1px solid var(--border);
}
.tool-badge {
  font-family: var(--mono); font-size: 10px;
  font-weight: 700; letter-spacing: .08em;
  padding: 3px 10px; border-radius: 100px;
}
.badge-live  { background: rgba(249,115,22,.12); color: var(--acc); border: 1px solid rgba(249,115,22,.3); }
.badge-soon  { background: rgba(255,255,255,.05); color: var(--mut); border: 1px solid var(--border); }
.badge-free  { background: rgba(34,197,94,.12); color: var(--green); border: 1px solid rgba(34,197,94,.3); }

.tool-title {
  font-family: var(--display); font-size: 22px;
  letter-spacing: .02em; margin-bottom: 10px; line-height: 1.05;
}
.tool-desc  { font-size: 13px; color: var(--txt2); line-height: 1.65; margin-bottom: 20px; flex: 1; }
.tool-tags  { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 20px; }
.tool-tag   {
  font-family: var(--mono); font-size: 10px; color: var(--mut);
  background: var(--panel); border: 1px solid var(--border);
  padding: 3px 9px; border-radius: 100px;
}
.tool-footer {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 16px; border-top: 1px solid var(--border);
}
.tool-link { font-size: 13px; font-weight: 600; color: var(--acc); }
.tool-link-muted { color: var(--mut); }
.tool-arrow { font-size: 18px; color: var(--acc); transition: transform .2s; }
.tool-card.live:hover .tool-arrow { transform: translateX(5px); }

/* ===== HOW IT WORKS ===== */
.how-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 12px;
}
.how-step {
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--r2); padding: 28px;
  position: relative; overflow: hidden;
}
.how-step::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, var(--acc), transparent);
}
.how-num {
  font-family: var(--display); font-size: 56px;
  color: rgba(249,115,22,.12); line-height: 1; margin-bottom: 14px;
}
.how-title { font-family: var(--display); font-size: 20px; margin-bottom: 10px; letter-spacing: .02em; }
.how-desc  { font-size: 13px; color: var(--txt2); line-height: 1.6; }

/* ===== PRICING ===== */
.pricing-wrap { display: flex; justify-content: center; }
.price-card {
  background: var(--card); border: 1px solid var(--border);
  border-radius: 20px; padding: 52px 44px;
  max-width: 480px; width: 100%; text-align: center;
  position: relative; overflow: hidden;
}
.price-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--acc2), var(--acc), var(--acc3));
}
.price-card::after {
  content: '';
  position: absolute; top: -100px; left: 50%; transform: translateX(-50%);
  width: 300px; height: 240px;
  background: radial-gradient(ellipse, rgba(249,115,22,.1) 0%, transparent 70%);
  pointer-events: none;
}
.price-trial {
  font-family: var(--mono); font-size: 12px; font-weight: 700;
  color: var(--acc); text-transform: uppercase; letter-spacing: .1em;
  margin-bottom: 10px;
}
.price-amount {
  font-family: var(--display); font-size: 80px;
  line-height: 1; letter-spacing: -.02em; margin-bottom: 6px;
}
.price-amount sup { font-size: 30px; vertical-align: top; margin-top: 20px; display: inline-block; }
.price-amount sub { font-size: 22px; color: var(--mut); font-family: var(--font); font-weight: 300; }
.price-after { font-size: 14px; color: var(--mut); margin-bottom: 34px; }
.price-features { text-align: left; margin-bottom: 36px; display: flex; flex-direction: column; gap: 12px; }
.pf { display: flex; align-items: flex-start; gap: 11px; font-size: 14px; }
.pf-check {
  width: 18px; height: 18px; flex-shrink: 0; margin-top: 1px;
  background: rgba(249,115,22,.15); border: 1px solid rgba(249,115,22,.4);
  border-radius: 5px; display: flex; align-items: center; justify-content: center;
  font-size: 11px; color: var(--acc);
}
.btn-price {
  width: 100%;
  background: linear-gradient(135deg, var(--acc), var(--acc2));
  color: #000; font-family: var(--display); font-size: 20px;
  letter-spacing: .04em; padding: 17px;
  border: none; border-radius: 10px;
  box-shadow: 0 8px 28px rgba(249,115,22,.3);
  transition: all .2s; display: block; text-align: center;
}
.btn-price:hover { transform: translateY(-2px); box-shadow: 0 14px 38px rgba(249,115,22,.5); }
.price-note { font-size: 12px; color: var(--mut); margin-top: 14px; line-height: 1.5; }

/* ===== LEGAL PAGES ===== */
.legal-hero {
  padding: 120px 24px 60px;
  background: linear-gradient(180deg, rgba(249,115,22,.04) 0%, transparent 100%);
  text-align: center; border-bottom: 1px solid var(--border);
}
.legal-eyebrow {
  font-family: var(--mono); font-size: 11px; color: var(--acc);
  text-transform: uppercase; letter-spacing: .14em; margin-bottom: 14px;
}
.legal-hero h1 {
  font-family: var(--display); font-size: clamp(40px, 6vw, 72px);
  margin-bottom: 16px;
}
.legal-hero .updated {
  font-family: var(--mono); font-size: 12px; color: var(--mut);
}
.legal-content {
  max-width: 780px; margin: 0 auto; padding: 64px 24px 96px;
}
.legal-content h2 {
  font-family: var(--display); font-size: 28px;
  margin: 48px 0 16px; color: var(--txt);
  padding-left: 14px; border-left: 3px solid var(--acc);
}
.legal-content h3 {
  font-size: 16px; font-weight: 700; margin: 28px 0 10px; color: var(--txt);
}
.legal-content p {
  font-size: 15px; color: var(--txt2); line-height: 1.75; margin-bottom: 16px;
}
.legal-content ul {
  list-style: none; margin: 0 0 20px; padding: 0;
  display: flex; flex-direction: column; gap: 8px;
}
.legal-content ul li {
  font-size: 14px; color: var(--txt2); padding-left: 22px; position: relative; line-height: 1.6;
}
.legal-content ul li::before {
  content: '→'; position: absolute; left: 0;
  color: var(--acc); font-size: 13px; font-weight: 700;
}
.legal-content a { color: var(--acc); text-decoration: underline; text-underline-offset: 3px; }
.legal-box {
  background: var(--card); border: 1px solid var(--border);
  border-left: 3px solid var(--acc);
  border-radius: 8px; padding: 18px 20px; margin: 20px 0;
  font-size: 14px; color: var(--txt2); line-height: 1.65;
}
.legal-table {
  width: 100%; border-collapse: collapse; margin: 20px 0; font-size: 14px;
}
.legal-table th {
  background: var(--panel); color: var(--mut);
  padding: 10px 14px; text-align: left; font-size: 11px;
  text-transform: uppercase; letter-spacing: .07em;
  border: 1px solid var(--border);
}
.legal-table td {
  padding: 10px 14px; border: 1px solid var(--border); color: var(--txt2);
  line-height: 1.5; vertical-align: top;
}

/* ===== FOOTER ===== */
footer {
  background: var(--panel);
  border-top: 1px solid var(--border);
}
.footer-inner {
  max-width: 1200px; margin: 0 auto;
  padding: 60px 24px 40px;
  display: grid; grid-template-columns: 1fr 2fr; gap: 60px;
}
.footer-logo-link { display: flex; align-items: center; gap: 10px; margin-bottom: 14px; }
.footer-logo-text { font-family: var(--display); font-size: 20px; }
.footer-logo-text .tld { color: var(--mut); }
.footer-tagline { font-size: 13px; color: var(--mut); line-height: 1.6; margin-bottom: 18px; max-width: 280px; }
.footer-flag { display: flex; align-items: center; gap: 6px; }
.footer-flag span { width: 20px; height: 3px; border-radius: 2px; }
.footer-flag small { font-size: 11px; color: var(--mut); margin-left: 6px; }
.footer-links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; }
.footer-col { display: flex; flex-direction: column; gap: 10px; }
.footer-col strong { font-size: 12px; text-transform: uppercase; letter-spacing: .08em; color: var(--mut); margin-bottom: 4px; }
.footer-col a { font-size: 13px; color: var(--txt2); transition: color var(--transition); }
.footer-col a:hover { color: var(--acc); }
.footer-col .active-lang { color: var(--acc); }
.soon-tag { font-family: var(--mono); font-size: 9px; color: var(--mut); background: var(--card); border: 1px solid var(--border); padding: 1px 6px; border-radius: 4px; vertical-align: middle; }
.footer-bottom {
  max-width: 1200px; margin: 0 auto;
  padding: 18px 24px;
  border-top: 1px solid var(--border);
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 8px;
  font-size: 12px; color: var(--mut);
}

/* ===== COOKIE BANNER ===== */
.cookie-banner {
  position: fixed; bottom: 24px; left: 24px; right: 24px;
  max-width: 680px; margin: 0 auto;
  background: var(--card); border: 1px solid var(--border);
  border-radius: 14px; padding: 18px 20px;
  display: flex; align-items: center; gap: 16px;
  flex-wrap: wrap; z-index: 900;
  box-shadow: 0 16px 50px rgba(0,0,0,.6);
  transition: opacity .3s, transform .3s;
}
.cookie-banner.hidden { opacity: 0; pointer-events: none; transform: translateY(20px); }
.cookie-content { display: flex; align-items: center; gap: 12px; flex: 1; }
.cookie-content p { font-size: 13px; color: var(--txt2); line-height: 1.5; }
.cookie-content a { color: var(--acc); text-decoration: underline; }
.cookie-actions { display: flex; gap: 8px; flex-shrink: 0; flex-wrap: wrap; }
.cookie-btn-reject {
  font-size: 12px; font-weight: 700; padding: 8px 14px;
  background: none; border: 1px solid var(--border); color: var(--mut);
  border-radius: 7px; transition: all var(--transition);
}
.cookie-btn-reject:hover { border-color: var(--txt2); color: var(--txt); }
.cookie-btn-accept {
  font-size: 12px; font-weight: 700; padding: 8px 14px;
  background: var(--acc); border: none; color: #000;
  border-radius: 7px; transition: background var(--transition);
}
.cookie-btn-accept:hover { background: var(--acc3); }

/* ===== ANIMATIONS ===== */
@keyframes fadeUp    { from{opacity:0;transform:translateY(26px)} to{opacity:1;transform:translateY(0)} }
@keyframes fadeIn    { from{opacity:0} to{opacity:1} }
@keyframes scaleIn   { from{opacity:0;transform:scale(.95)} to{opacity:1;transform:scale(1)} }
.a1 { animation: fadeUp .65s ease both; }
.a2 { animation: fadeUp .65s .12s ease both; }
.a3 { animation: fadeUp .65s .24s ease both; }
.a4 { animation: fadeUp .65s .36s ease both; }
.a5 { animation: fadeUp .65s .46s ease both; }

/* Scroll reveal */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .55s ease, transform .55s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .footer-inner  { grid-template-columns: 1fr; gap: 40px; }
  .footer-links  { grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 640px) {
  .stats-strip   { flex-direction: column; }
  .stat-item     { border-right: none; border-bottom: 1px solid var(--border); }
  .stat-item:last-child { border-bottom: none; }
  .section       { padding: 64px 18px; }
  .price-card    { padding: 36px 22px; }
  .footer-links  { grid-template-columns: 1fr; }
  .cookie-banner { bottom: 0; left: 0; right: 0; border-radius: 14px 14px 0 0; }
}

@media print {
  #main-nav, .cookie-banner, .hero-ctas, footer { display: none !important; }
  body { background: #fff; color: #000; }
  .legal-content h2 { color: #000; }
  .legal-content p, .legal-content ul li { color: #333; }
}

/* ===== DESIGN IMPROVEMENTS v2 ===== */

/* Animated stat counters */
.stat-val{transition:color .3s}
.stat-item:hover .stat-val{color:var(--txt)}

/* Hero: stronger grid vignette */
.hero::before{
  mask-image:radial-gradient(ellipse 75% 65% at 50% 50%, black 30%, transparent 85%);
}

/* Tool cards: colored top edge on hover */
.tool-card.live::before{
  content:'';position:absolute;top:0;left:0;right:0;height:2px;
  background:var(--c,var(--acc));transform:scaleX(0);transform-origin:left;
  transition:transform .25s cubic-bezier(.4,0,.2,1);
}
.tool-card.live:hover::before{transform:scaleX(1)}
.tool-card.live::after{display:none} /* remove old corner effect */

/* Pricing card: pulsing border */
@keyframes borderPulse{
  0%,100%{box-shadow:0 0 0 0 rgba(249,115,22,0)}
  50%{box-shadow:0 0 0 6px rgba(249,115,22,.08)}
}
.price-card{animation:borderPulse 3.5s ease-in-out infinite}

/* Better section label line */
.section-label::before{background:linear-gradient(90deg,var(--acc),transparent)}

/* How-step: hover lift */
.how-step{transition:transform .2s,border-color .2s}
.how-step:hover{transform:translateY(-3px);border-color:var(--border2)}

/* Hero eyebrow: scan line animation */
@keyframes scanline{
  0%{background-position:-100% 0}
  100%{background-position:200% 0}
}
.hero-eyebrow{
  position:relative;overflow:hidden;
}
.hero-eyebrow::after{
  content:'';position:absolute;top:0;left:0;right:0;bottom:0;
  background:linear-gradient(90deg,transparent 0%,rgba(249,115,22,.2) 50%,transparent 100%);
  background-size:200% 100%;
  animation:scanline 3.5s ease-in-out infinite;
  pointer-events:none;
}

/* Footer columns: hover line under links */
.footer-col a{position:relative;padding-bottom:1px}
.footer-col a::after{
  content:'';position:absolute;bottom:0;left:0;width:0;height:1px;
  background:var(--acc);transition:width .2s;
}
.footer-col a:hover::after{width:100%}
.footer-col a:hover{color:var(--acc)}

/* Nav CTA: glow on hover */
.nav-cta:hover{
  background:var(--acc3);
  box-shadow:0 4px 20px rgba(249,115,22,.45);
}

/* Stats strip: individual item reveal animation */
@keyframes statReveal{
  from{opacity:0;transform:translateY(16px)}
  to{opacity:1;transform:translateY(0)}
}
.stat-item.visible{animation:statReveal .5s ease both}

/* Legal pages: better link style */
.legal-content a{
  color:var(--acc);
  text-decoration:underline;
  text-underline-offset:3px;
  text-decoration-color:rgba(249,115,22,.4);
  transition:text-decoration-color .2s;
}
.legal-content a:hover{text-decoration-color:var(--acc)}

/* Mobile nav: smoother slide */
.mobile-menu{transition:transform .28s cubic-bezier(.4,0,.2,1)}
