/* ============================================================
   BIX3 — Main Stylesheet  (Hostinger-inspired theme)
   ============================================================ */

:root {
    --purple: #673de6;
    --purple-dark: #5025d1;
    --purple-deep: #2f1c6a;
    --purple-light: #ebe4ff;
    --purple-bg: #f6f3ff;
    --navy: #1d1e30;
    --text: #47484f;
    --text-light: #727586;
    --green: #00b090;
    --green-light: #def4f0;
    --orange: #fe9a00;
    --red: #fc5185;
    --blue: #2196f3;
    --white: #ffffff;
    --border: #e6e6f0;
    --shadow-sm: 0 2px 8px rgba(47, 28, 106, 0.06);
    --shadow-md: 0 8px 24px rgba(47, 28, 106, 0.10);
    --shadow-lg: 0 20px 48px rgba(47, 28, 106, 0.16);
    --radius: 16px;
    --radius-sm: 10px;
    --font: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    font-family: var(--font);
    color: var(--text);
    background: var(--white);
    line-height: 1.65;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}
img, svg { max-width: 100%; vertical-align: middle; }
a { text-decoration: none; color: var(--purple); transition: color .2s; }
ul { list-style: none; }
h1, h2, h3, h4 { color: var(--purple-deep); line-height: 1.25; font-weight: 800; }
h1 { font-size: clamp(2.1rem, 4.5vw, 3.4rem); }
h2 { font-size: clamp(1.7rem, 3vw, 2.4rem); }
h3 { font-size: 1.25rem; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ---------- Buttons ---------- */
.btn {
    display: inline-flex; align-items: center; justify-content: center; gap: 8px;
    font-family: var(--font); font-weight: 700; font-size: 1rem;
    padding: 14px 30px; border-radius: var(--radius-sm);
    border: 2px solid transparent; cursor: pointer; transition: all .25s ease;
    white-space: nowrap;
}
.btn-primary { background: var(--purple); color: #fff; box-shadow: 0 6px 18px rgba(103, 61, 230, .35); }
.btn-primary:hover { background: var(--purple-dark); transform: translateY(-2px); box-shadow: 0 10px 24px rgba(103, 61, 230, .45); color:#fff; }
.btn-outline { background: transparent; color: var(--purple); border-color: var(--purple); }
.btn-outline:hover { background: var(--purple); color: #fff; transform: translateY(-2px); }
.btn-white { background: #fff; color: var(--purple); box-shadow: var(--shadow-md); }
.btn-white:hover { transform: translateY(-2px); box-shadow: var(--shadow-lg); color: var(--purple-dark); }
.btn-sm { padding: 10px 20px; font-size: .9rem; }
.btn-lg { padding: 17px 38px; font-size: 1.08rem; }
.btn-block { width: 100%; }

/* ---------- Badges ---------- */
.badge { display: inline-block; font-size: .72rem; font-weight: 700; padding: 3px 10px; border-radius: 99px; letter-spacing: .3px; }
.badge-green { background: var(--green-light); color: var(--green); }
.badge-purple { background: var(--purple-light); color: var(--purple); }
.badge-orange { background: #fff1dc; color: var(--orange); }

/* ---------- Topbar ---------- */
.topbar { background: linear-gradient(90deg, var(--purple-deep), var(--purple)); color: #fff; font-size: .87rem; padding: 9px 0; }
.topbar-inner { display: flex; align-items: center; justify-content: center; gap: 16px; flex-wrap: wrap; text-align: center; }
.topbar-link { color: #fff; font-weight: 700; text-decoration: underline; text-underline-offset: 3px; }
.topbar-link:hover { opacity: .85; }

/* ---------- Header / Nav ---------- */
.site-header {
    position: sticky; top: 0; z-index: 1000;
    background: rgba(255, 255, 255, .92); backdrop-filter: blur(12px);
    border-bottom: 1px solid transparent; transition: box-shadow .3s, border-color .3s;
}
.site-header.scrolled { box-shadow: var(--shadow-sm); border-color: var(--border); }
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 74px; gap: 24px; }

.logo { display: inline-flex; align-items: center; gap: 10px; }
.logo-mark {
    width: 40px; height: 40px; border-radius: 11px; display: grid; place-items: center;
    background: linear-gradient(135deg, var(--purple), #9569ff);
    color: #fff; font-weight: 800; font-size: 1.05rem;
    box-shadow: 0 4px 12px rgba(103, 61, 230, .4);
}
.logo-text { font-size: 1.5rem; font-weight: 800; color: var(--purple-deep); letter-spacing: -.5px; }
.logo-accent { color: var(--purple); }
.logo-light .logo-text { color: #fff; }

.main-nav { display: flex; align-items: center; gap: 28px; }
.nav-list { display: flex; align-items: center; gap: 4px; }
.nav-link {
    display: inline-flex; align-items: center; gap: 6px;
    font-family: var(--font); font-size: .98rem; font-weight: 500; color: var(--navy);
    padding: 10px 15px; border-radius: 8px; background: none; border: none; cursor: pointer;
    transition: color .2s, background .2s;
}
.nav-link:hover, .nav-link.active { color: var(--purple); background: var(--purple-bg); }
.nav-cta { display: flex; align-items: center; gap: 12px; }

/* Dropdown */
.has-dropdown { position: relative; }
.dropdown-toggle svg { transition: transform .25s; }
.has-dropdown:hover .dropdown-toggle svg, .has-dropdown.open .dropdown-toggle svg { transform: rotate(180deg); }
.dropdown {
    position: absolute; top: calc(100% + 10px); left: 50%; transform: translateX(-50%) translateY(8px);
    background: #fff; border-radius: var(--radius); box-shadow: var(--shadow-lg);
    border: 1px solid var(--border); padding: 10px; min-width: 300px;
    opacity: 0; visibility: hidden; transition: all .25s ease; z-index: 100;
}
.has-dropdown:hover .dropdown, .has-dropdown.open .dropdown {
    opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0);
}
.dropdown-item {
    display: flex; align-items: center; gap: 14px; padding: 12px 14px;
    border-radius: var(--radius-sm); transition: background .2s;
}
.dropdown-item:hover, .dropdown-item.active { background: var(--purple-bg); }
.dropdown-item strong { display: block; color: var(--purple-deep); font-size: .95rem; }
.dropdown-item small { color: var(--text-light); font-size: .8rem; }
.dd-icon { width: 42px; height: 42px; border-radius: 11px; display: grid; place-items: center; flex-shrink: 0; }
.dd-purple { background: var(--purple-light); color: var(--purple); }
.dd-blue   { background: #e0f0ff; color: var(--blue); }
.dd-green  { background: var(--green-light); color: var(--green); }
.dd-orange { background: #fff1dc; color: var(--orange); }

/* Mobile toggle */
.nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: 8px; z-index: 1100; }
.nav-toggle span { display: block; width: 24px; height: 2.5px; background: var(--purple-deep); margin: 5px 0; border-radius: 2px; transition: all .3s; }
.nav-toggle.open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero {
    position: relative; overflow: hidden;
    background: linear-gradient(160deg, #f8f6ff 0%, #efeaff 55%, #fdf3ff 100%);
    padding: 90px 0 110px;
}
.hero-inner { display: grid; grid-template-columns: 1.05fr .95fr; gap: 56px; align-items: center; position: relative; z-index: 2; }
.hero-kicker {
    display: inline-flex; align-items: center; gap: 8px;
    background: #fff; border: 1px solid var(--border); border-radius: 99px;
    padding: 7px 16px; font-size: .85rem; font-weight: 700; color: var(--purple);
    box-shadow: var(--shadow-sm); margin-bottom: 22px;
    animation: fadeDown .8s ease both;
}
.hero h1 { margin-bottom: 20px; animation: fadeDown .8s .1s ease both; }
.hero h1 .grad {
    background: linear-gradient(90deg, var(--purple), #b666ff, var(--red));
    -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
    background-size: 200% auto; animation: gradShift 4s linear infinite;
}
.hero p.lead { font-size: 1.15rem; color: var(--text-light); max-width: 520px; margin-bottom: 32px; animation: fadeDown .8s .2s ease both; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; animation: fadeDown .8s .3s ease both; }
.hero-trust { display: flex; gap: 26px; margin-top: 38px; flex-wrap: wrap; animation: fadeDown .8s .4s ease both; }
.hero-trust span { display: inline-flex; align-items: center; gap: 8px; font-size: .9rem; font-weight: 500; color: var(--purple-deep); }
.hero-trust svg { color: var(--green); flex-shrink: 0; }

/* Hero visual */
.hero-visual { position: relative; min-height: 420px; }
.hero-card {
    position: absolute; background: #fff; border-radius: var(--radius);
    box-shadow: var(--shadow-lg); padding: 20px 24px; border: 1px solid var(--border);
}
.hero-card-main {
    top: 8%; left: 6%; right: 12%; bottom: 14%;
    display: flex; flex-direction: column; gap: 14px;
    animation: floatY 6s ease-in-out infinite;
    padding: 26px;
}
.hc-browser-bar { display: flex; gap: 6px; }
.hc-browser-bar i { width: 11px; height: 11px; border-radius: 50%; }
.hc-browser-bar i:nth-child(1) { background: #fc5185; }
.hc-browser-bar i:nth-child(2) { background: #fe9a00; }
.hc-browser-bar i:nth-child(3) { background: #00b090; }
.hc-line { height: 12px; border-radius: 6px; background: var(--purple-bg); }
.hc-line.w60 { width: 60%; } .hc-line.w80 { width: 80%; } .hc-line.w40 { width: 40%; }
.hc-hero-block { height: 90px; border-radius: 12px; background: linear-gradient(120deg, var(--purple-light), #d9ecff); }
.hc-cols { display: flex; gap: 12px; }
.hc-cols i { flex: 1; height: 52px; border-radius: 10px; background: var(--purple-bg); }

.hero-card-uptime { top: 0; right: 0; animation: floatY 5s .5s ease-in-out infinite; text-align: center; }
.hero-card-uptime strong { font-size: 1.5rem; color: var(--green); display: block; }
.hero-card-uptime small { color: var(--text-light); font-weight: 500; }
.hero-card-speed { bottom: 2%; left: 0; display: flex; align-items: center; gap: 14px; animation: floatY 7s 1s ease-in-out infinite; }
.speed-ring { width: 52px; height: 52px; border-radius: 50%; display: grid; place-items: center; background: conic-gradient(var(--purple) 320deg, var(--purple-light) 0); }
.speed-ring b { width: 40px; height: 40px; background: #fff; border-radius: 50%; display: grid; place-items: center; color: var(--purple); font-size: .8rem; }
.hero-card-speed strong { display: block; color: var(--purple-deep); font-size: .95rem; }
.hero-card-speed small { color: var(--text-light); font-size: .8rem; }

/* Blobs */
.blob { position: absolute; border-radius: 50%; filter: blur(70px); opacity: .45; z-index: 1; pointer-events: none; }
.blob-1 { width: 420px; height: 420px; background: #c9b4ff; top: -120px; right: -100px; animation: blobMove 14s ease-in-out infinite alternate; }
.blob-2 { width: 350px; height: 350px; background: #ffd6ec; bottom: -140px; left: -80px; animation: blobMove 18s 2s ease-in-out infinite alternate-reverse; }

/* Domain search */
.domain-search { max-width: 640px; margin: 0 auto; }
.domain-search form { display: flex; background: #fff; border-radius: 14px; box-shadow: var(--shadow-lg); padding: 8px; gap: 8px; }
.domain-search input {
    flex: 1; border: none; outline: none; font-family: var(--font); font-size: 1.05rem;
    padding: 12px 18px; color: var(--navy); background: transparent; min-width: 0;
}
.domain-search input::placeholder { color: #a9abb8; }
.tld-ticker { display: flex; justify-content: center; gap: 20px; margin-top: 22px; flex-wrap: wrap; }
.tld-ticker span { font-weight: 700; color: var(--purple-deep); font-size: .95rem; }
.tld-ticker b { color: var(--purple); }

/* ---------- Sections ---------- */
.section { padding: 90px 0; }
.section-alt { background: #fafaff; }
.section-purple { background: linear-gradient(150deg, var(--purple-deep) 0%, #43299c 60%, var(--purple) 100%); }
.section-purple h2, .section-purple h3 { color: #fff; }
.section-purple p { color: #cfc4f5; }
.section-head { text-align: center; max-width: 680px; margin: 0 auto 56px; }
.section-head .badge { margin-bottom: 14px; }
.section-head h2 { margin-bottom: 14px; }
.section-head p { color: var(--text-light); font-size: 1.08rem; }

/* ---------- Feature cards ---------- */
.features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.feature-card {
    background: #fff; border: 1px solid var(--border); border-radius: var(--radius);
    padding: 34px 28px; transition: transform .3s, box-shadow .3s, border-color .3s;
}
.feature-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: var(--purple-light); }
.feature-icon {
    width: 56px; height: 56px; border-radius: 15px; display: grid; place-items: center; margin-bottom: 20px;
}
.fi-purple { background: var(--purple-light); color: var(--purple); }
.fi-green  { background: var(--green-light); color: var(--green); }
.fi-blue   { background: #e0f0ff; color: var(--blue); }
.fi-orange { background: #fff1dc; color: var(--orange); }
.fi-pink   { background: #ffe4ee; color: var(--red); }
.fi-navy   { background: #e6e6f5; color: var(--purple-deep); }
.feature-card h3 { margin-bottom: 10px; }
.feature-card p { color: var(--text-light); font-size: .96rem; }

/* ---------- Billing toggle ---------- */
.billing-toggle { display: flex; align-items: center; justify-content: center; gap: 16px; margin-bottom: 46px; }
.toggle-label { font-weight: 700; color: var(--text-light); transition: color .2s; display: inline-flex; align-items: center; gap: 8px; }
.toggle-label.active { color: var(--purple-deep); }
.toggle-switch {
    width: 58px; height: 30px; border-radius: 99px; background: var(--purple);
    border: none; cursor: pointer; position: relative; transition: background .25s;
}
.toggle-knob {
    position: absolute; top: 4px; left: 4px; width: 22px; height: 22px;
    background: #fff; border-radius: 50%; transition: transform .3s cubic-bezier(.5, 1.6, .4, 1);
    box-shadow: 0 2px 6px rgba(0,0,0,.2);
}
.toggle-switch.annual .toggle-knob { transform: translateX(28px); }

/* ---------- Pricing ---------- */
.pricing-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(255px, 1fr)); gap: 24px; align-items: stretch; }
.pricing-card {
    position: relative; background: #fff; border: 2px solid var(--border); border-radius: var(--radius);
    padding: 34px 28px; display: flex; flex-direction: column;
    transition: transform .3s, box-shadow .3s, border-color .3s;
}
.pricing-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.pricing-card.popular { border-color: var(--purple); box-shadow: 0 16px 40px rgba(103, 61, 230, .18); }
.popular-badge {
    position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
    background: linear-gradient(90deg, var(--purple), #9569ff); color: #fff;
    font-size: .75rem; font-weight: 700; padding: 5px 18px; border-radius: 99px;
    letter-spacing: .4px; text-transform: uppercase; box-shadow: 0 4px 12px rgba(103,61,230,.4);
    white-space: nowrap;
}
.plan-name { font-size: 1.3rem; margin-bottom: 6px; }
.plan-desc { color: var(--text-light); font-size: .9rem; min-height: 44px; margin-bottom: 18px; }
.plan-price { margin-bottom: 6px; }
.plan-price .currency { font-size: 1.4rem; font-weight: 700; color: var(--purple-deep); vertical-align: top; }
.plan-price .amount { font-size: 3rem; font-weight: 800; color: var(--purple-deep); letter-spacing: -1px; }
.plan-price .period { color: var(--text-light); font-weight: 500; }
.plan-note { font-size: .82rem; color: var(--green); font-weight: 500; margin-bottom: 22px; min-height: 20px; }
.plan-features { margin-top: 26px; display: flex; flex-direction: column; gap: 12px; }
.plan-features li { display: flex; align-items: flex-start; gap: 10px; font-size: .93rem; color: var(--text); }
.plan-features svg { color: var(--green); flex-shrink: 0; margin-top: 3px; }

/* ---------- Stats ---------- */
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; text-align: center; }
.stat-item strong { display: block; font-size: clamp(2rem, 4vw, 3rem); font-weight: 800; color: #fff; letter-spacing: -1px; }
.stat-item span { color: #cfc4f5; font-weight: 500; }

/* ---------- Steps ---------- */
.steps-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; counter-reset: step; }
.step-card { position: relative; background: #fff; border: 1px solid var(--border); border-radius: var(--radius); padding: 36px 28px 30px; transition: transform .3s, box-shadow .3s; }
.step-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.step-num {
    width: 46px; height: 46px; border-radius: 50%; display: grid; place-items: center;
    background: linear-gradient(135deg, var(--purple), #9569ff); color: #fff;
    font-weight: 800; font-size: 1.15rem; margin-bottom: 18px; box-shadow: 0 6px 14px rgba(103,61,230,.35);
}
.step-card h3 { margin-bottom: 10px; }
.step-card p { color: var(--text-light); font-size: .95rem; }

/* ---------- Testimonials ---------- */
.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.testi-card { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); padding: 30px; transition: transform .3s, box-shadow .3s; }
.testi-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.testi-stars { color: var(--orange); font-size: 1.05rem; letter-spacing: 2px; margin-bottom: 14px; }
.testi-card blockquote { color: var(--text); font-size: .97rem; margin-bottom: 20px; }
.testi-author { display: flex; align-items: center; gap: 12px; }
.testi-avatar {
    width: 44px; height: 44px; border-radius: 50%; display: grid; place-items: center;
    font-weight: 800; color: #fff; font-size: .95rem;
}
.testi-author strong { display: block; color: var(--purple-deep); font-size: .93rem; }
.testi-author small { color: var(--text-light); }

/* ---------- FAQ ---------- */
.faq-list { max-width: 780px; margin: 0 auto; display: flex; flex-direction: column; gap: 14px; }
.faq-item { background: #fff; border: 1px solid var(--border); border-radius: var(--radius-sm); overflow: hidden; transition: box-shadow .3s, border-color .3s; }
.faq-item.open { border-color: var(--purple-light); box-shadow: var(--shadow-sm); }
.faq-q {
    width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 16px;
    background: none; border: none; cursor: pointer; text-align: left;
    font-family: var(--font); font-size: 1.02rem; font-weight: 700; color: var(--purple-deep);
    padding: 20px 24px;
}
.faq-q .faq-icon {
    width: 28px; height: 28px; border-radius: 8px; display: grid; place-items: center; flex-shrink: 0;
    background: var(--purple-bg); color: var(--purple); transition: transform .3s, background .3s, color .3s;
}
.faq-item.open .faq-icon { transform: rotate(45deg); background: var(--purple); color: #fff; }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .35s ease; }
.faq-a p { padding: 0 24px 22px; color: var(--text-light); font-size: .96rem; }

/* ---------- Comparison table ---------- */
.table-wrap { overflow-x: auto; border: 1px solid var(--border); border-radius: var(--radius); background: #fff; }
.compare-table { width: 100%; border-collapse: collapse; min-width: 720px; }
.compare-table th, .compare-table td { padding: 16px 20px; text-align: center; font-size: .94rem; border-bottom: 1px solid var(--border); }
.compare-table th { background: var(--purple-bg); color: var(--purple-deep); font-weight: 800; font-size: 1rem; }
.compare-table td:first-child, .compare-table th:first-child { text-align: left; font-weight: 600; color: var(--purple-deep); }
.compare-table tr:last-child td { border-bottom: none; }
.compare-table tr:hover td { background: #fafaff; }

/* ---------- Page hero (inner pages) ---------- */
.page-hero {
    position: relative; overflow: hidden; text-align: center;
    background: linear-gradient(160deg, #f8f6ff 0%, #efeaff 60%, #fdf3ff 100%);
    padding: 80px 0 70px;
}
.page-hero .container { position: relative; z-index: 2; max-width: 800px; }
.page-hero .badge { margin-bottom: 18px; }
.page-hero h1 { margin-bottom: 18px; animation: fadeDown .8s ease both; }
.page-hero p { font-size: 1.12rem; color: var(--text-light); animation: fadeDown .8s .15s ease both; }
.page-hero .hero-actions { justify-content: center; margin-top: 30px; }

/* Breadcrumbs */
.breadcrumbs { font-size: .85rem; color: var(--text-light); margin-bottom: 18px; animation: fadeDown .6s ease both; }
.breadcrumbs a { color: var(--purple); font-weight: 500; }
.breadcrumbs span { margin: 0 6px; }

/* ---------- CTA strip ---------- */
.cta-strip { background: linear-gradient(120deg, var(--purple-deep), var(--purple) 70%, #9569ff); padding: 70px 0; }
.cta-strip-inner { display: flex; align-items: center; justify-content: space-between; gap: 30px; flex-wrap: wrap; }
.cta-strip h2 { color: #fff; margin-bottom: 8px; }
.cta-strip p { color: #d5cbf7; }

/* ---------- Footer ---------- */
.site-footer { background: var(--navy); color: #a5a7b8; padding: 70px 0 0; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.3fr; gap: 44px; padding-bottom: 50px; }
.footer-brand p { font-size: .92rem; margin: 18px 0 22px; max-width: 320px; }
.footer-social { display: flex; gap: 10px; }
.footer-social a {
    width: 38px; height: 38px; border-radius: 10px; display: grid; place-items: center;
    background: rgba(255,255,255,.07); color: #cfd0dc; transition: all .25s;
}
.footer-social a:hover { background: var(--purple); color: #fff; transform: translateY(-3px); }
.footer-col h3 { color: #fff; font-size: 1.02rem; margin-bottom: 20px; }
.footer-col ul { display: flex; flex-direction: column; gap: 12px; }
.footer-col a { color: #a5a7b8; font-size: .93rem; }
.footer-col a:hover { color: #fff; }
.footer-contact li { display: flex; align-items: center; gap: 10px; font-size: .93rem; }
.footer-contact svg { color: var(--purple); flex-shrink: 0; }
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,.08); padding: 22px 0;
    display: flex; justify-content: space-between; gap: 12px; flex-wrap: wrap; font-size: .85rem;
}

/* ---------- Forms ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 40px; align-items: start; }
.contact-info-card {
    background: #fff; border: 1px solid var(--border); border-radius: var(--radius);
    padding: 26px; display: flex; gap: 18px; align-items: flex-start; margin-bottom: 18px;
    transition: transform .3s, box-shadow .3s;
}
.contact-info-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.contact-info-card h3 { font-size: 1.05rem; margin-bottom: 4px; }
.contact-info-card p, .contact-info-card a { color: var(--text-light); font-size: .93rem; }
.contact-info-card a:hover { color: var(--purple); }
.contact-form-card { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); padding: 38px; box-shadow: var(--shadow-sm); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-weight: 700; color: var(--purple-deep); font-size: .9rem; margin-bottom: 8px; }
.form-group input, .form-group textarea, .form-group select {
    width: 100%; font-family: var(--font); font-size: .97rem; color: var(--navy);
    padding: 13px 16px; border: 2px solid var(--border); border-radius: var(--radius-sm);
    outline: none; transition: border-color .2s, box-shadow .2s; background: #fff;
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus {
    border-color: var(--purple); box-shadow: 0 0 0 4px rgba(103, 61, 230, .12);
}
.form-alert { padding: 15px 20px; border-radius: var(--radius-sm); font-weight: 500; font-size: .95rem; margin-bottom: 22px; }
.form-alert.success { background: var(--green-light); color: #00755f; border: 1px solid #b2e5db; }
.form-alert.error { background: #ffe4ee; color: #c81e5b; border: 1px solid #ffc3da; }
.hp-field { position: absolute; left: -9999px; opacity: 0; height: 0; overflow: hidden; }

/* ---------- TLD cards ---------- */
.tld-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.tld-card {
    position: relative; background: #fff; border: 2px solid var(--border); border-radius: var(--radius);
    padding: 28px 20px; text-align: center; transition: transform .3s, box-shadow .3s, border-color .3s;
}
.tld-card:hover { transform: translateY(-6px); border-color: var(--purple); box-shadow: var(--shadow-md); }
.tld-card .tld-name { font-size: 1.6rem; font-weight: 800; color: var(--purple-deep); display: block; }
.tld-card .tld-price { color: var(--purple); font-weight: 700; font-size: 1.05rem; }
.tld-card .tld-price small { color: var(--text-light); font-weight: 500; }
.tld-hot { position: absolute; top: 12px; right: 12px; }

/* ---------- Solutions / app showcase ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.split h2 { margin-bottom: 18px; }
.split p { color: var(--text-light); margin-bottom: 16px; }
.check-list { display: flex; flex-direction: column; gap: 14px; margin: 24px 0 30px; }
.check-list li { display: flex; gap: 12px; align-items: flex-start; font-weight: 500; color: var(--text); }
.check-list svg { color: var(--green); flex-shrink: 0; margin-top: 4px; }
.app-mock {
    background: linear-gradient(150deg, var(--purple-deep), #43299c); border-radius: 20px;
    padding: 28px; box-shadow: var(--shadow-lg); animation: floatY 7s ease-in-out infinite;
}
.app-mock-bar { display: flex; gap: 6px; margin-bottom: 18px; }
.app-mock-bar i { width: 10px; height: 10px; border-radius: 50%; background: rgba(255,255,255,.3); }
.app-mock-row { display: flex; align-items: center; gap: 12px; background: rgba(255,255,255,.08); border-radius: 12px; padding: 14px 16px; margin-bottom: 12px; }
.app-mock-row .am-dot { width: 34px; height: 34px; border-radius: 9px; background: rgba(255,255,255,.15); display: grid; place-items: center; color: #fff; flex-shrink: 0; }
.app-mock-row .am-lines { flex: 1; }
.app-mock-row .am-lines i { display: block; height: 8px; border-radius: 4px; background: rgba(255,255,255,.25); margin: 5px 0; }
.app-mock-row .am-lines i:last-child { width: 55%; background: rgba(255,255,255,.15); }
.am-status { font-size: .72rem; font-weight: 700; padding: 4px 10px; border-radius: 99px; background: rgba(0,224,177,.2); color: #4dffd2; }
.app-mock-progress { background: rgba(255,255,255,.08); border-radius: 12px; padding: 16px; }
.app-mock-progress small { color: #cfc4f5; font-weight: 500; }
.am-bar { height: 8px; border-radius: 4px; background: rgba(255,255,255,.15); margin-top: 10px; overflow: hidden; }
.am-bar i { display: block; height: 100%; width: 72%; border-radius: 4px; background: linear-gradient(90deg, #00e0b1, #4dffd2); animation: barGrow 2.4s ease-in-out infinite alternate; }

/* ---------- Values / about ---------- */
.value-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }

/* ---------- Animations ---------- */
@keyframes fadeDown { from { opacity: 0; transform: translateY(-18px); } to { opacity: 1; transform: none; } }
@keyframes floatY { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-14px); } }
@keyframes gradShift { to { background-position: 200% center; } }
@keyframes blobMove { from { transform: translate(0,0) scale(1); } to { transform: translate(40px, 30px) scale(1.15); } }
@keyframes barGrow { from { width: 30%; } to { width: 85%; } }

.reveal { opacity: 0; transform: translateY(30px); transition: opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
    .reveal { opacity: 1; transform: none; }
}

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
    .features-grid, .testi-grid, .steps-grid, .value-grid { grid-template-columns: repeat(2, 1fr); }
    .tld-grid { grid-template-columns: repeat(3, 1fr); }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .hero-inner { grid-template-columns: 1fr; }
    .hero .hero-visual { display: none; }
    .hero { text-align: center; padding: 70px 0; }
    .hero p.lead { margin-left: auto; margin-right: auto; }
    .hero-actions, .hero-trust { justify-content: center; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .contact-grid { grid-template-columns: 1fr; }
    .split { grid-template-columns: 1fr; gap: 40px; }
}

@media (max-width: 860px) {
    /* backdrop-filter makes the header a containing block, which would trap
       the fixed menu panel inside it — disable it on mobile */
    .site-header { backdrop-filter: none; -webkit-backdrop-filter: none; background: #fff; }
    .nav-toggle { display: block; }
    /* Full-screen slide-in panel. Sits BELOW the sticky header (z 999 < 1000)
       so the logo and hamburger stay visible and tappable while open. */
    .main-nav {
        position: fixed; top: 0; right: 0; bottom: 0; left: 0; z-index: 999;
        background: #fff;
        flex-direction: column; justify-content: flex-start; align-items: stretch;
        padding: 150px 22px 40px; gap: 10px;
        transform: translateX(100%); transition: transform .35s cubic-bezier(.4, 0, .2, 1);
        overflow-y: auto; overscroll-behavior: contain; -webkit-overflow-scrolling: touch;
    }
    .main-nav.open { transform: translateX(0); box-shadow: -20px 0 60px rgba(47,28,106,.15); }
    .nav-list { flex-direction: column; width: 100%; gap: 6px; }
    .nav-list > li { width: 100%; }
    .nav-link {
        width: 100%; justify-content: space-between; font-size: 1.08rem; font-weight: 600;
        padding: 15px 18px; border-radius: var(--radius-sm);
        border: 1px solid transparent;
    }
    .nav-link.active { border-color: var(--purple-light); }
    /* Staggered entrance when the panel opens */
    .main-nav.open .nav-list > li, .main-nav.open .nav-cta {
        animation: navItemIn .45s cubic-bezier(.2, .8, .3, 1) both;
    }
    .main-nav.open .nav-list > li:nth-child(1) { animation-delay: .06s; }
    .main-nav.open .nav-list > li:nth-child(2) { animation-delay: .11s; }
    .main-nav.open .nav-list > li:nth-child(3) { animation-delay: .16s; }
    .main-nav.open .nav-list > li:nth-child(4) { animation-delay: .21s; }
    .main-nav.open .nav-list > li:nth-child(5) { animation-delay: .26s; }
    .main-nav.open .nav-cta { animation-delay: .32s; }
    /* Services dropdown becomes a smooth accordion */
    .dropdown {
        position: static; transform: none; opacity: 1; visibility: visible;
        display: block; box-shadow: none; min-width: 0;
        max-height: 0; overflow: hidden; padding: 0; margin: 0;
        border: none; background: var(--purple-bg); border-radius: var(--radius-sm);
        transition: max-height .4s ease, margin .4s ease, padding .3s ease;
    }
    /* Beat the desktop centering rule's specificity — no translateX on mobile */
    .has-dropdown:hover .dropdown, .has-dropdown.open .dropdown { transform: none; }
    .has-dropdown.open .dropdown { max-height: 420px; padding: 8px; margin: 6px 0 4px; }
    .has-dropdown.open > .dropdown-toggle { color: var(--purple); background: var(--purple-bg); }
    .dropdown-item:hover, .dropdown-item.active { background: #fff; }
    .nav-cta { flex-direction: column; width: 100%; margin-top: 18px; gap: 10px; }
    .nav-cta .btn { width: 100%; padding: 14px 20px; font-size: 1rem; }
}

@keyframes navItemIn {
    from { opacity: 0; transform: translateX(28px); }
    to   { opacity: 1; transform: none; }
}

@media (max-width: 640px) {
    .section { padding: 64px 0; }
    .features-grid, .testi-grid, .steps-grid, .value-grid { grid-template-columns: 1fr; }
    .tld-grid { grid-template-columns: repeat(2, 1fr); }
    .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 22px; }
    .footer-grid { grid-template-columns: 1fr; gap: 34px; }
    .footer-bottom { justify-content: center; text-align: center; }
    .form-row { grid-template-columns: 1fr; }
    .domain-search form { flex-direction: column; }
    .domain-search .btn { width: 100%; }
    .cta-strip-inner { text-align: center; justify-content: center; flex-direction: column; }
    .contact-form-card { padding: 26px 20px; }
    .split .hero-visual { display: none; }
    .hero { padding: 56px 0 64px; }
    .page-hero { padding: 60px 0 54px; }
    .section-head { margin-bottom: 40px; }
    .pricing-card { padding: 28px 22px; }
    .compare-table th, .compare-table td { padding: 12px 14px; font-size: .88rem; }
    .scale-visual { padding: 22px 18px 18px; }
    .scale-bars { height: 110px; gap: 7px; }
    .platform-card { padding: 18px; gap: 14px; }
    .app-mock { padding: 20px; }
}

@media (max-width: 430px) {
    .container { padding: 0 18px; }
    .topbar { font-size: .78rem; padding: 7px 0; }
    .nav-inner { height: 64px; }
    .logo-mark { width: 34px; height: 34px; font-size: .9rem; }
    .logo-text { font-size: 1.3rem; }
    .main-nav { padding-top: 136px; }
    .hero-actions, .page-hero .hero-actions { flex-direction: column; align-items: stretch; }
    .hero-actions .btn { width: 100%; }
    .btn-lg { padding: 15px 26px; font-size: 1rem; }
    .hero-trust { gap: 12px; flex-direction: column; align-items: center; }
    .billing-toggle { flex-wrap: wrap; }
    .tld-ticker { gap: 12px; }
    .stats-grid { grid-template-columns: 1fr 1fr; }
    .scale-meta { flex-direction: column; gap: 10px; }
    .plan-price .amount { font-size: 2.5rem; }
}

/* ============================================================
   Platform / Autoscaling highlight section (homepage)
   ============================================================ */
.platform-section { position: relative; overflow: hidden; }
.platform-section::before {
    content: ""; position: absolute; width: 540px; height: 540px; border-radius: 50%;
    background: radial-gradient(circle, rgba(149, 105, 255, .35), transparent 70%);
    top: -180px; right: -140px; pointer-events: none;
}
.platform-badge {
    display: inline-flex; align-items: center; gap: 8px;
    background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.2);
    color: #d8ccff; font-size: .8rem; font-weight: 700; letter-spacing: .5px;
    padding: 6px 16px; border-radius: 99px; text-transform: uppercase;
}
.platform-grid { display: grid; grid-template-columns: 1fr 1.15fr; gap: 56px; align-items: center; position: relative; z-index: 2; }
.platform-cards { display: flex; flex-direction: column; gap: 16px; }
.platform-card {
    display: flex; gap: 18px; align-items: flex-start;
    background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.12);
    border-radius: 16px; padding: 22px 24px;
    transition: background .3s, transform .3s, border-color .3s;
}
.platform-card:hover { background: rgba(255,255,255,.11); transform: translateX(6px); border-color: rgba(255,255,255,.28); }
.pc-icon {
    width: 48px; height: 48px; border-radius: 13px; display: grid; place-items: center; flex-shrink: 0;
    background: rgba(149,105,255,.22); color: #c9b4ff; border: 1px solid rgba(255,255,255,.14);
}
.platform-card h3 { color: #fff; font-size: 1.08rem; margin-bottom: 5px; }
.platform-card p { color: #cfc4f5; font-size: .92rem; line-height: 1.6; }

/* Animated autoscale visual */
.scale-visual {
    background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.14);
    border-radius: 20px; padding: 30px 30px 24px; backdrop-filter: blur(6px);
}
.scale-visual-head { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-bottom: 24px; flex-wrap: wrap; }
.scale-visual-head strong { color: #fff; font-size: 1rem; }
.scale-status { display: inline-flex; align-items: center; gap: 8px; font-size: .78rem; font-weight: 700; color: #4dffd2; background: rgba(0,224,177,.14); border: 1px solid rgba(77,255,210,.3); padding: 5px 13px; border-radius: 99px; }
.pulse-dot { width: 8px; height: 8px; border-radius: 50%; background: #4dffd2; animation: pulseDot 1.6s ease-in-out infinite; }
@keyframes pulseDot { 0%,100% { box-shadow: 0 0 0 0 rgba(77,255,210,.5); } 50% { box-shadow: 0 0 0 7px rgba(77,255,210,0); } }
.scale-bars { display: flex; align-items: flex-end; gap: 10px; height: 150px; margin-bottom: 18px; }
.scale-bars i {
    flex: 1; border-radius: 7px 7px 3px 3px;
    background: linear-gradient(180deg, #a97fff, #673de6);
    transform-origin: bottom; animation: scalePulse 3.2s ease-in-out infinite;
    box-shadow: 0 0 18px rgba(149,105,255,.35);
}
.scale-bars i:nth-child(1) { height: 45%; animation-delay: 0s; }
.scale-bars i:nth-child(2) { height: 70%; animation-delay: .3s; }
.scale-bars i:nth-child(3) { height: 55%; animation-delay: .6s; }
.scale-bars i:nth-child(4) { height: 90%; animation-delay: .9s; }
.scale-bars i:nth-child(5) { height: 65%; animation-delay: 1.2s; }
.scale-bars i:nth-child(6) { height: 100%; animation-delay: 1.5s; }
.scale-bars i:nth-child(7) { height: 60%; animation-delay: 1.8s; }
.scale-bars i:nth-child(8) { height: 80%; animation-delay: 2.1s; }
@keyframes scalePulse { 0%, 100% { transform: scaleY(.55); opacity: .75; } 50% { transform: scaleY(1); opacity: 1; } }
.scale-meta { display: flex; justify-content: space-between; gap: 10px; flex-wrap: wrap; border-top: 1px solid rgba(255,255,255,.1); padding-top: 16px; }
.scale-meta span { font-size: .8rem; color: #b9aae8; font-weight: 500; }
.scale-meta b { color: #fff; display: block; font-size: 1.05rem; }
.platform-trust { display: flex; justify-content: center; gap: 28px; flex-wrap: wrap; margin-top: 48px; position: relative; z-index: 2; }
.platform-trust span { display: inline-flex; align-items: center; gap: 9px; color: #e4dcff; font-weight: 600; font-size: .95rem; }
.platform-trust svg { color: #4dffd2; flex-shrink: 0; }

@media (max-width: 1024px) {
    .platform-grid { grid-template-columns: 1fr; gap: 40px; }
}

/* ============================================================
   V2 — Modern visual upgrade layer
   ============================================================ */

::selection { background: var(--purple); color: #fff; }

/* Animated topbar gradient */
.topbar {
    background: linear-gradient(90deg, #2f1c6a, #673de6, #8b5cf6, #fc5185, #673de6, #2f1c6a);
    background-size: 300% 100%;
    animation: topbarFlow 12s linear infinite;
}
@keyframes topbarFlow { to { background-position: 300% 0; } }

/* Gradient buttons with shine sweep */
.btn { position: relative; overflow: hidden; }
.btn-primary { background: linear-gradient(135deg, #8b5cf6 0%, #673de6 55%, #5b2fd6 100%); }
.btn-primary:hover { background: linear-gradient(135deg, #9d71ff 0%, #7348f0 55%, #6335e6 100%); }
.btn-primary::after {
    content: ""; position: absolute; top: 0; left: -80%; width: 45%; height: 100%;
    background: linear-gradient(100deg, transparent, rgba(255,255,255,.38), transparent);
    transform: skewX(-20deg); transition: left .55s ease; pointer-events: none;
}
.btn-primary:hover::after { left: 135%; }

/* Hero: aurora gradients + faint grid */
.hero {
    background:
        radial-gradient(900px 480px at 88% -10%, rgba(139, 92, 246, .20), transparent 62%),
        radial-gradient(760px 420px at -8% 108%, rgba(252, 81, 133, .13), transparent 60%),
        radial-gradient(600px 380px at 45% 120%, rgba(56, 189, 248, .10), transparent 60%),
        linear-gradient(160deg, #f9f7ff 0%, #f0eaff 55%, #fdf1fa 100%);
}
.hero::before {
    content: ""; position: absolute; inset: 0; pointer-events: none;
    background-image:
        linear-gradient(rgba(103, 61, 230, .055) 1px, transparent 1px),
        linear-gradient(90deg, rgba(103, 61, 230, .055) 1px, transparent 1px);
    background-size: 44px 44px;
    -webkit-mask-image: radial-gradient(ellipse 85% 75% at 50% 25%, #000 25%, transparent 72%);
    mask-image: radial-gradient(ellipse 85% 75% at 50% 25%, #000 25%, transparent 72%);
}
.blob-3 {
    width: 300px; height: 300px; background: #9adcff; opacity: .32;
    top: 38%; left: 34%;
    animation: blobMove 20s 1s ease-in-out infinite alternate;
}
.hero-kicker {
    border: 1.5px solid transparent;
    background: linear-gradient(#fff, #fff) padding-box,
                linear-gradient(90deg, #673de6, #fc5185, #673de6) border-box;
}
.hero-card { border: 1px solid rgba(255,255,255,.9); box-shadow: 0 24px 60px rgba(47,28,106,.18); }
.hero-card-main { background: rgba(255,255,255,.86); backdrop-filter: blur(8px); }

/* Tech marquee strip */
.marquee-strip {
    background: #fff; border-bottom: 1px solid var(--border);
    padding: 20px 0; overflow: hidden; position: relative;
}
.marquee-strip::before, .marquee-strip::after {
    content: ""; position: absolute; top: 0; bottom: 0; width: 110px; z-index: 2; pointer-events: none;
}
.marquee-strip::before { left: 0; background: linear-gradient(90deg, #fff, transparent); }
.marquee-strip::after { right: 0; background: linear-gradient(-90deg, #fff, transparent); }
.marquee { display: flex; gap: 52px; width: max-content; animation: marqueeScroll 30s linear infinite; }
.marquee-strip:hover .marquee { animation-play-state: paused; }
.marquee span {
    display: inline-flex; align-items: center; gap: 11px; white-space: nowrap;
    font-weight: 700; font-size: 1rem; color: #9094aa; letter-spacing: .2px;
}
.marquee span i {
    width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0;
    background: linear-gradient(135deg, #8b5cf6, #fc5185);
}
@keyframes marqueeScroll { to { transform: translateX(-50%); } }

/* Feature cards: gradient top bar + playful icon hover */
.feature-card { position: relative; overflow: hidden; }
.feature-card::before {
    content: ""; position: absolute; top: 0; left: 0; right: 0; height: 4px;
    background: linear-gradient(90deg, var(--purple), #b666ff, #fc5185);
    transform: scaleX(0); transform-origin: left; transition: transform .45s ease;
}
.feature-card:hover::before { transform: scaleX(1); }
.feature-icon { transition: transform .35s cubic-bezier(.3, 1.4, .4, 1); }
.feature-card:hover .feature-icon { transform: scale(1.1) rotate(-5deg); }

/* Section-alt: soft gradient wash */
.section-alt { background: linear-gradient(180deg, #fbfaff 0%, #f5f2ff 100%); }

/* Pricing: gradient price + richer popular card */
.plan-price .amount {
    background: linear-gradient(110deg, var(--purple-deep), var(--purple) 80%);
    -webkit-background-clip: text; background-clip: text;
    -webkit-text-fill-color: transparent; color: transparent;
}
.pricing-card.popular {
    background: linear-gradient(180deg, #f8f5ff 0%, #fff 45%);
    box-shadow: 0 18px 46px rgba(103, 61, 230, .20);
}

/* Steps: dashed connector line between cards (desktop) */
@media (min-width: 1025px) {
    .steps-grid { position: relative; }
    .steps-grid::before {
        content: ""; position: absolute; top: 59px; left: 13%; right: 13%;
        border-top: 2px dashed #d5c8fa; z-index: 0;
    }
    .step-card { position: relative; z-index: 1; }
}

/* Testimonials: decorative quote mark */
.testi-card { position: relative; }
.testi-card::before {
    content: "\201C"; position: absolute; top: 2px; right: 22px;
    font-family: Georgia, serif; font-size: 5.2rem; line-height: 1;
    color: var(--purple-light); pointer-events: none;
}

/* CTA strip: floating light orbs */
.cta-strip { position: relative; overflow: hidden; }
.cta-strip::before, .cta-strip::after {
    content: ""; position: absolute; border-radius: 50%;
    background: rgba(255,255,255,.09); pointer-events: none;
}
.cta-strip::before { width: 320px; height: 320px; top: -160px; right: -70px; }
.cta-strip::after { width: 200px; height: 200px; bottom: -110px; left: 8%; }

/* Dark sections: containment for glows */
.section-purple { position: relative; overflow: hidden; }

/* ============================================================
   Stats section v2 — glass cards, icons, glow
   ============================================================ */
.stats-grid { gap: 22px; }
.stat-item {
    position: relative; overflow: hidden; text-align: center;
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.14);
    border-radius: 20px; padding: 34px 20px 28px;
    backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px);
    transition: transform .35s ease, background .35s, border-color .35s, box-shadow .35s;
}
.stat-item::before {
    content: ""; position: absolute; top: 0; left: 18%; right: 18%; height: 3px;
    border-radius: 0 0 4px 4px;
    background: linear-gradient(90deg, transparent, #b799ff, #ff9dc0, transparent);
    opacity: .8;
}
.stat-item::after {
    content: ""; position: absolute; width: 150px; height: 150px; border-radius: 50%;
    top: -50px; left: 50%; transform: translateX(-50%);
    background: radial-gradient(circle, rgba(149,105,255,.5), transparent 70%);
    opacity: 0; transition: opacity .45s ease; pointer-events: none;
}
.stat-item:hover { transform: translateY(-8px); background: rgba(255,255,255,.10); border-color: rgba(255,255,255,.32); box-shadow: 0 20px 44px rgba(15,8,45,.35); }
.stat-item:hover::after { opacity: 1; }
.stat-icon {
    width: 54px; height: 54px; margin: 0 auto 16px; border-radius: 16px;
    display: grid; place-items: center; color: #e6dcff;
    background: linear-gradient(135deg, rgba(149,105,255,.38), rgba(252,81,133,.22));
    border: 1px solid rgba(255,255,255,.22);
    position: relative; z-index: 1;
    animation: statFloat 4.5s ease-in-out infinite;
}
.stats-grid > div:nth-child(2) .stat-icon { animation-delay: .5s; }
.stats-grid > div:nth-child(3) .stat-icon { animation-delay: 1s; }
.stats-grid > div:nth-child(4) .stat-icon { animation-delay: 1.5s; }
@keyframes statFloat { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-7px); } }
.stat-item strong {
    position: relative; z-index: 1;
    background: linear-gradient(180deg, #ffffff 30%, #c4aaff);
    -webkit-background-clip: text; background-clip: text;
    -webkit-text-fill-color: transparent; color: transparent;
}
.stat-item span:last-child { position: relative; z-index: 1; }

@media (max-width: 640px) {
    .stat-item { padding: 26px 14px 22px; border-radius: 16px; }
    .stat-icon { width: 46px; height: 46px; margin-bottom: 12px; }
}

/* ============================================================
   Platform section — LIGHT theme restyle
   ============================================================ */
.platform-section {
    background:
        radial-gradient(760px 420px at 90% 0%, rgba(139, 92, 246, .14), transparent 60%),
        radial-gradient(640px 400px at 0% 100%, rgba(252, 81, 133, .09), transparent 60%),
        linear-gradient(165deg, #faf8ff 0%, #f1ecff 55%, #fdf4fb 100%);
}
.platform-section::before {
    background: radial-gradient(circle, rgba(149, 105, 255, .16), transparent 70%);
}
.platform-badge {
    background: linear-gradient(#fff, #fff) padding-box,
                linear-gradient(90deg, #673de6, #fc5185) border-box;
    border: 1.5px solid transparent;
    color: var(--purple);
}
.platform-card {
    background: #fff; border: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
}
.platform-card:hover { background: #fff; border-color: var(--purple-light); box-shadow: var(--shadow-md); }
.platform-card h3 { color: var(--purple-deep); }
.platform-card p { color: var(--text-light); }
.pc-icon {
    background: linear-gradient(135deg, var(--purple-light), #f3e8ff);
    color: var(--purple); border: 1px solid #ddd0ff;
}
.scale-visual {
    background: #fff; border: 1px solid var(--border);
    box-shadow: var(--shadow-lg);
}
.scale-visual-head strong { color: var(--purple-deep); }
.scale-status { color: #00755f; background: var(--green-light); border-color: #a9e4d8; }
.pulse-dot { background: var(--green); }
@keyframes pulseDot { 0%,100% { box-shadow: 0 0 0 0 rgba(0,176,144,.45); } 50% { box-shadow: 0 0 0 7px rgba(0,176,144,0); } }
.scale-bars i { box-shadow: 0 4px 16px rgba(103, 61, 230, .28); }
.scale-meta { border-top-color: var(--border); }
.scale-meta span { color: var(--text-light); }
.scale-meta b { color: var(--purple-deep); }
.platform-trust span { color: var(--purple-deep); }
.platform-trust svg { color: var(--green); }

/* ============================================================
   Stats band — LIGHT + compact restyle
   ============================================================ */
.stats-section {
    padding: 54px 0;
    background: linear-gradient(180deg, #ffffff 0%, #f7f4ff 100%);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}
.stats-section .stats-grid { gap: 18px; }
.stats-section .stat-item {
    background: #fff; border: 1px solid var(--border);
    backdrop-filter: none; -webkit-backdrop-filter: none;
    border-radius: 16px; padding: 24px 16px 20px;
}
.stats-section .stat-item:hover {
    background: #fff; border-color: var(--purple-light);
    box-shadow: var(--shadow-md); transform: translateY(-5px);
}
.stats-section .stat-item::after {
    background: radial-gradient(circle, rgba(149, 105, 255, .16), transparent 70%);
}
.stats-section .stat-icon {
    width: 44px; height: 44px; border-radius: 13px; margin-bottom: 12px;
    background: linear-gradient(135deg, var(--purple-light), #fde9f2);
    border: 1px solid #e2d6ff; color: var(--purple);
}
.stats-section .stat-item strong {
    font-size: clamp(1.7rem, 2.8vw, 2.3rem);
    background: linear-gradient(110deg, var(--purple-deep), var(--purple) 85%);
    -webkit-background-clip: text; background-clip: text;
    -webkit-text-fill-color: transparent; color: transparent;
}
.stats-section .stat-item span:last-child { color: var(--text-light); font-size: .88rem; font-weight: 500; }

@media (max-width: 640px) {
    .stats-section { padding: 40px 0; }
    .stats-section .stat-item { padding: 20px 12px 16px; }
}

/* ============================================================
   Legal pages (privacy / terms / payment terms)
   ============================================================ */
.legal-wrap { max-width: 820px; margin: 0 auto; }
.legal-updated {
    display: inline-block; background: var(--purple-bg); color: var(--purple);
    font-size: .82rem; font-weight: 700; padding: 6px 16px; border-radius: 99px;
    margin-bottom: 30px;
}
.legal-wrap h2 { font-size: 1.45rem; margin: 40px 0 14px; }
.legal-wrap h2:first-of-type { margin-top: 0; }
.legal-wrap h3 { font-size: 1.1rem; margin: 26px 0 10px; }
.legal-wrap p { margin-bottom: 15px; }
.legal-wrap ul { margin: 0 0 18px 22px; list-style: disc; }
.legal-wrap li { margin-bottom: 8px; }
.legal-wrap a { font-weight: 600; }
.legal-note {
    background: #fff8ec; border: 1px solid #ffe2b0; border-radius: var(--radius-sm);
    padding: 16px 20px; font-size: .92rem; color: #8a5b00; margin-bottom: 34px;
}

/* ============================================================
   Testimonial carousel
   ============================================================ */
.testi-carousel { position: relative; }
.testi-viewport { overflow: hidden; padding: 14px 4px 20px; margin: -14px -4px -6px; }
.testi-track {
    display: flex; gap: 24px;
    transition: transform .55s cubic-bezier(.4, 0, .2, 1);
    will-change: transform;
}
.testi-track .testi-card { flex: 0 0 calc((100% - 48px) / 3); margin: 0; }
@media (max-width: 1024px) {
    .testi-track .testi-card { flex-basis: calc((100% - 24px) / 2); }
}
@media (max-width: 640px) {
    .testi-track .testi-card { flex-basis: 100%; }
}
.testi-controls { display: flex; align-items: center; justify-content: center; gap: 22px; margin-top: 30px; }
.testi-btn {
    width: 46px; height: 46px; border-radius: 50%;
    border: 2px solid var(--purple-light); background: #fff; color: var(--purple);
    display: grid; place-items: center; cursor: pointer;
    transition: all .25s ease;
}
.testi-btn:hover {
    background: var(--purple); border-color: var(--purple); color: #fff;
    transform: translateY(-2px); box-shadow: 0 8px 18px rgba(103, 61, 230, .35);
}
.testi-dots { display: flex; gap: 8px; }
.testi-dot {
    width: 9px; height: 9px; padding: 0; border: none; border-radius: 99px;
    background: #d9d3ef; cursor: pointer; transition: all .3s ease;
}
.testi-dot.active { width: 28px; background: linear-gradient(90deg, var(--purple), #9569ff); }

/* ============================================================
   Live domain search results
   ============================================================ */
.domain-results {
    background: #fff; border: 1px solid var(--border); border-radius: 14px;
    box-shadow: var(--shadow-lg); margin-top: 14px; padding: 8px;
    max-height: 340px; overflow-y: auto; text-align: left;
    animation: fadeDown .35s ease both;
}
.dr-row {
    display: flex; align-items: center; gap: 14px;
    padding: 13px 16px; border-radius: 10px;
}
.dr-row + .dr-row { border-top: 1px solid #f1effa; }
.dr-row:hover { background: var(--purple-bg); }
.dr-name { flex: 1; font-weight: 700; color: var(--purple-deep); word-break: break-all; }
.dr-status { font-size: .78rem; font-weight: 700; padding: 4px 12px; border-radius: 99px; white-space: nowrap; }
.dr-available { background: var(--green-light); color: #00755f; }
.dr-taken { background: #ffe4ee; color: #c81e5b; }
.dr-price { font-weight: 700; color: var(--purple); white-space: nowrap; font-size: .92rem; }
.dr-row .btn { padding: 8px 18px; font-size: .85rem; }
.dr-msg { padding: 18px 16px; color: var(--text-light); text-align: center; font-size: .95rem; }
.dr-spinner {
    width: 26px; height: 26px; margin: 18px auto; border-radius: 50%;
    border: 3px solid var(--purple-light); border-top-color: var(--purple);
    animation: drSpin .8s linear infinite;
}
@keyframes drSpin { to { transform: rotate(360deg); } }
@media (max-width: 640px) {
    .dr-row { flex-wrap: wrap; gap: 8px; }
    .dr-row .btn { width: 100%; }
}

/* ============================================================
   Inner page headers — same aurora + grid treatment as the hero
   ============================================================ */
.page-hero {
    background:
        radial-gradient(760px 400px at 88% -10%, rgba(139, 92, 246, .18), transparent 62%),
        radial-gradient(640px 360px at -8% 108%, rgba(252, 81, 133, .11), transparent 60%),
        linear-gradient(160deg, #f9f7ff 0%, #f0eaff 60%, #fdf1fa 100%);
}
.page-hero::before {
    content: ""; position: absolute; inset: 0; pointer-events: none;
    background-image:
        linear-gradient(rgba(103, 61, 230, .055) 1px, transparent 1px),
        linear-gradient(90deg, rgba(103, 61, 230, .055) 1px, transparent 1px);
    background-size: 44px 44px;
    -webkit-mask-image: radial-gradient(ellipse 85% 80% at 50% 20%, #000 25%, transparent 75%);
    mask-image: radial-gradient(ellipse 85% 80% at 50% 20%, #000 25%, transparent 75%);
}

/* ============================================================
   Animated header grid — drifting pattern + glowing intersections
   ============================================================ */
.hero::before, .page-hero::before {
    background-image:
        radial-gradient(rgba(103, 61, 230, .20) 1.6px, transparent 2.2px),
        linear-gradient(rgba(103, 61, 230, .055) 1px, transparent 1px),
        linear-gradient(90deg, rgba(103, 61, 230, .055) 1px, transparent 1px);
    background-size: 88px 88px, 44px 44px, 44px 44px;
    animation:
        gridDrift 18s linear infinite,
        gridBreath 6.5s ease-in-out infinite alternate;
}
/* One 88px step = exactly 2 grid tiles, so the loop is invisible */
@keyframes gridDrift {
    to { background-position: 88px 88px, 88px 88px, 88px 88px; }
}
@keyframes gridBreath {
    from { opacity: .55; }
    to   { opacity: 1; }
}

/* ============================================================
   Footer v2 — gradient depth, glow, trust strip, pay badges
   ============================================================ */
.site-footer {
    position: relative; overflow: hidden;
    background: linear-gradient(180deg, #1d1636 0%, #130f26 100%);
}
.site-footer::before {
    content: ""; position: absolute; top: 0; left: 0; right: 0; height: 3px;
    background: linear-gradient(90deg, transparent, #673de6 25%, #fc5185 50%, #673de6 75%, transparent);
}
.site-footer::after {
    content: ""; position: absolute; width: 640px; height: 640px; border-radius: 50%;
    top: -360px; left: 50%; transform: translateX(-50%);
    background: radial-gradient(circle, rgba(103, 61, 230, .22), transparent 70%);
    pointer-events: none;
}
.site-footer .container { position: relative; z-index: 1; }
.footer-col h3 { position: relative; padding-bottom: 10px; }
.footer-col h3::after {
    content: ""; position: absolute; bottom: 0; left: 0;
    width: 28px; height: 3px; border-radius: 3px;
    background: linear-gradient(90deg, #673de6, #fc5185);
}
.footer-col ul a { display: inline-block; transition: color .25s, transform .25s; }
.footer-col ul a:hover { color: #fff; transform: translateX(6px); }

/* Trust strip */
.footer-trust {
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px;
    padding: 26px 0; border-top: 1px solid rgba(255,255,255,.08);
}
.ft-item {
    display: flex; align-items: center; gap: 13px;
    background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.09);
    border-radius: 14px; padding: 14px 18px;
    transition: background .3s, transform .3s, border-color .3s;
}
.ft-item:hover { background: rgba(255,255,255,.08); transform: translateY(-3px); border-color: rgba(255,255,255,.22); }
.ft-icon {
    width: 40px; height: 40px; border-radius: 11px; display: grid; place-items: center; flex-shrink: 0;
    background: linear-gradient(135deg, rgba(103,61,230,.4), rgba(252,81,133,.22));
    border: 1px solid rgba(255,255,255,.14); color: #c9b4ff;
}
.ft-item strong { display: block; color: #fff; font-size: .9rem; line-height: 1.35; }
.ft-item small { color: #9c9eb3; font-size: .78rem; }

/* Payment badges */
.pay-badges { display: flex; gap: 8px; flex-wrap: wrap; }
.pay-badge {
    font-size: .66rem; font-weight: 800; letter-spacing: .8px;
    color: #cfd0dc; background: rgba(255,255,255,.05);
    border: 1px solid rgba(255,255,255,.16); border-radius: 6px;
    padding: 4px 11px; transition: border-color .25s, color .25s;
}
.pay-badge:hover { border-color: #9569ff; color: #fff; }

@media (max-width: 1024px) { .footer-trust { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px)  { .footer-trust { grid-template-columns: 1fr; } }

/* ============================================================
   Contact form AJAX states
   ============================================================ */
.btn-spin {
    display: inline-block; width: 16px; height: 16px; border-radius: 50%;
    border: 2.5px solid rgba(255,255,255,.35); border-top-color: #fff;
    animation: drSpin .7s linear infinite;
}
.btn-loading { opacity: .85; cursor: progress; pointer-events: none; }
.btn-sent { background: linear-gradient(135deg, #00c9a0, #00b090) !important; }
.form-alert { animation: fadeDown .4s ease both; }

/* ============================================================
   Clean header backgrounds — white, letting the grid show through
   ============================================================ */
.hero, .page-hero { background: #fff; }
.hero::before, .page-hero::before {
    background-image:
        radial-gradient(rgba(103, 61, 230, .28) 1.6px, transparent 2.2px),
        linear-gradient(rgba(103, 61, 230, .09) 1px, transparent 1px),
        linear-gradient(90deg, rgba(103, 61, 230, .09) 1px, transparent 1px);
}

/* Hide the blurred color blobs in headers — pure white + grid only */
.hero .blob, .page-hero .blob { display: none; }

/* Grid covers the entire header; only a soft fade at the very bottom edge */
.hero::before, .page-hero::before {
    -webkit-mask-image: linear-gradient(to bottom, #000 78%, transparent 100%);
    mask-image: linear-gradient(to bottom, #000 78%, transparent 100%);
}
