/* ===========================================
   AI GROW BOT — Landing Page Styles
   Theme: Orange + White (matches logo)
   Edit --accent below to change brand color.
   =========================================== */

:root {
    /* ---- Brand Colors ---- */
    --accent: #ff6b35;
    --accent-2: #ff8f3c;
    --accent-dark: #e54b1b;
    --accent-soft: #fff2ec;
    --gradient: linear-gradient(135deg, #ff6b35 0%, #ff8f3c 100%);
    --gradient-dark: linear-gradient(135deg, #e54b1b 0%, #ff6b35 100%);

    /* ---- Neutrals ---- */
    --bg: #ffffff;
    --bg-soft: #fafafa;
    --text: #0a0a0a;
    --text-muted: #5b5b63;
    --border: #ececec;
    --card: #ffffff;

    /* ---- Effects ---- */
    --shadow-sm: 0 2px 8px rgba(20, 20, 30, 0.04);
    --shadow: 0 10px 30px rgba(20, 20, 30, 0.06);
    --shadow-lg: 0 20px 50px rgba(255, 107, 53, 0.18);
    --radius: 14px;
    --radius-lg: 20px;
    --ease: cubic-bezier(.4, 0, .2, 1);
}

/* ---- Reset ---- */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 100px; }
body {
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
img { max-width: 100%; display: block; }

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

/* ===========================================
   REUSABLES
   =========================================== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 26px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 15px;
    transition: all .3s var(--ease);
    white-space: nowrap;
    position: relative;
    overflow: hidden;
}
.btn-primary {
    background: var(--gradient);
    color: #fff;
    box-shadow: 0 8px 20px rgba(255, 107, 53, 0.35);
}
.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 30px rgba(255, 107, 53, 0.45);
}
.btn-ghost {
    background: #fff;
    color: var(--text);
    border: 1.5px solid var(--border);
}
.btn-ghost:hover {
    border-color: var(--accent);
    color: var(--accent);
    transform: translateY(-2px);
}
.btn-white {
    background: #fff;
    color: var(--accent);
    font-weight: 700;
    box-shadow: 0 10px 25px rgba(0,0,0,0.12);
}
.btn-white:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 34px rgba(0,0,0,0.18);
}
.btn-glow::after {
    content: "";
    position: absolute;
    top: 0; left: -100%;
    width: 100%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,.4), transparent);
    transition: left .6s var(--ease);
}
.btn-glow:hover::after { left: 100%; }

.gradient-text {
    background: var(--gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}
.underline-accent {
    position: relative;
    display: inline-block;
}
.underline-accent::after {
    content: "";
    position: absolute;
    left: 0; bottom: 4px;
    width: 100%; height: 10px;
    background: var(--accent-soft);
    border-radius: 4px;
    z-index: -1;
}
.eyebrow {
    display: inline-block;
    padding: 6px 14px;
    background: var(--accent-soft);
    color: var(--accent);
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: .5px;
    text-transform: uppercase;
    margin-bottom: 18px;
}
.section { padding: 100px 0; }
.section-head {
    text-align: center;
    max-width: 680px;
    margin: 0 auto 60px;
}
.section-head h2 {
    font-size: clamp(28px, 4vw, 44px);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 14px;
    letter-spacing: -0.5px;
}
.section-head p {
    color: var(--text-muted);
    font-size: 17px;
}

.grid { display: grid; gap: 24px; }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

.glass {
    background: rgba(255,255,255,0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,0.5);
    box-shadow: var(--shadow);
}

/* ===========================================
   NAVBAR
   =========================================== */
.navbar {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    background: rgba(255,255,255,0.8);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border-bottom: 1px solid transparent;
    transition: all .3s var(--ease);
}
.navbar > .nav-wrap { padding: 12px 0; }
.navbar.scrolled {
    border-bottom-color: var(--border);
    box-shadow: var(--shadow-sm);
}

/* Top contact bar — slim, slick strip above the main nav */
.topbar {
    background: linear-gradient(90deg, #0b0b0c 0%, #17181b 50%, #0b0b0c 100%);
    color: rgba(255,255,255,0.92);
    font-size: 12px;
    line-height: 1;
    letter-spacing: 0.15px;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    position: relative;
}
.topbar::after {
    content: "";
    position: absolute;
    left: 0; right: 0; bottom: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255,107,53,0.55), transparent);
    opacity: .6;
    pointer-events: none;
}
.topbar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    height: 28px;
    padding: 0;
}
.topbar-left {
    display: flex;
    align-items: center;
    gap: 22px;
    flex-wrap: wrap;
}
.topbar-item {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: rgba(255,255,255,0.85);
    text-decoration: none;
    font-weight: 500;
    transition: color .2s var(--ease);
}
.topbar-item i {
    font-size: 11px;
    color: var(--accent);
    opacity: .9;
    transition: transform .25s var(--ease), opacity .2s var(--ease);
}
.topbar-item:hover { color: #fff; }
.topbar-item:hover i { transform: translateY(-1px); opacity: 1; }

.topbar-left .topbar-item + .topbar-item {
    position: relative;
    padding-left: 22px;
}
.topbar-left .topbar-item + .topbar-item::before {
    content: "";
    position: absolute;
    left: 0; top: 50%;
    width: 1px; height: 12px;
    background: rgba(255,255,255,0.12);
    transform: translateY(-50%);
}

.topbar-socials {
    display: inline-flex;
    align-items: center;
    gap: 4px;
}
.topbar-socials a {
    color: rgba(255,255,255,0.75);
    font-size: 12px;
    width: 22px; height: 22px;
    display: inline-flex; align-items: center; justify-content: center;
    border-radius: 50%;
    transition: color .2s var(--ease), background .2s var(--ease), transform .25s var(--ease);
}
.topbar-socials a:hover {
    color: #fff;
    background: var(--accent);
    transform: translateY(-1px);
}

@media (max-width: 720px) {
    .topbar { font-size: 11.5px; }
    .topbar-inner { height: auto; flex-direction: column; gap: 4px; padding: 5px 0; }
    .topbar-left { gap: 14px; justify-content: center; }
    .topbar-left .topbar-item + .topbar-item { padding-left: 14px; }
    .topbar-left .topbar-item + .topbar-item::before { height: 10px; }
    .topbar-socials { gap: 2px; }
    .topbar-socials a { width: 20px; height: 20px; font-size: 11px; }
}
@media (max-width: 480px) {
    .topbar-item span { display: none; }     /* show only icons on tiny screens */
    .topbar-left .topbar-item + .topbar-item { padding-left: 12px; }
}
.nav-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}
.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 800;
    font-size: 20px;
    letter-spacing: -0.5px;
}
.logo-mark {
    width: 42px; height: 42px;
    border-radius: 10px;
    background: #fff;
    display: grid;
    place-items: center;
    overflow: hidden;
    box-shadow: 0 6px 14px rgba(255,107,53,.18);
    border: 1px solid var(--border);
}
/* Full combined logo (icon + text) */
.logo-full {
    display: inline-flex;
    align-items: center;
    transition: transform .3s var(--ease);
}
.logo-full:hover { transform: scale(1.03); }
.logo-full-img {
    height: 58px;
    width: auto;
    display: block;
    object-fit: contain;
}
.mock-logo-img {
    height: 20px;
    width: auto;
    display: block;
    object-fit: contain;
}
/* Footer variant — invert so dark text shows on dark background */
.footer .logo-full-img-dark {
    filter: brightness(0) invert(1);
    height: 36px;
}
.logo-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    background: #fff;
}
.logo-img-mini {
    width: 18px;
    height: 18px;
    object-fit: contain;
    display: inline-block;
    vertical-align: middle;
    margin-right: 4px;
    border-radius: 4px;
}
/* Dark footer — give logo a subtle lighter container */
.footer .logo-mark {
    background: #fff;
    border-color: transparent;
}
.logo-text .accent { color: var(--accent); }

.nav-links {
    display: flex;
    gap: 32px;
    align-items: center;
}
.nav-links a {
    font-size: 15px;
    font-weight: 500;
    color: var(--text-muted);
    transition: color .2s var(--ease);
    position: relative;
}
.nav-links a::after {
    content: "";
    position: absolute;
    left: 0; bottom: -6px;
    width: 0; height: 2px;
    background: var(--accent);
    transition: width .3s var(--ease);
}
.nav-links a:hover { color: var(--text); }
.nav-links a:hover::after { width: 100%; }

.nav-cta { display: flex; align-items: center; gap: 12px; }
.nav-cta .btn { padding: 11px 22px; font-size: 14px; border-radius: 10px; }
.nav-cta .btn i { font-size: 13px; }
.menu-toggle { display: none; font-size: 20px; color: var(--text); padding: 8px; }

/* ===========================================
   HERO
   =========================================== */
.hero {
    position: relative;
    padding: 160px 0 100px;
    overflow: hidden;
    background: radial-gradient(ellipse at top right, var(--accent-soft) 0%, transparent 50%),
                radial-gradient(ellipse at bottom left, #fff5f0 0%, transparent 50%);
}
.floating-shapes {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}
.shape {
    position: absolute;
    border-radius: 50%;
    background: var(--gradient);
    opacity: 0.08;
    filter: blur(40px);
    animation: float 12s ease-in-out infinite;
}
.shape-1 { width: 320px; height: 320px; top: 10%; left: -80px; }
.shape-2 { width: 220px; height: 220px; top: 60%; right: -60px; animation-delay: -4s; }
.shape-3 { width: 160px; height: 160px; bottom: 10%; left: 30%; animation-delay: -7s; }
.shape-4 { width: 180px; height: 180px; top: 20%; right: 20%; animation-delay: -2s; }

@keyframes float {
    0%, 100% { transform: translate(0,0) scale(1); }
    33% { transform: translate(30px,-30px) scale(1.08); }
    66% { transform: translate(-20px,25px) scale(0.95); }
}

.hero-wrap {
    display: grid;
    grid-template-columns: 1.05fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}
.pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    color: var(--text-muted);
    margin-bottom: 22px;
    box-shadow: var(--shadow-sm);
}
.pill i { color: var(--accent); }
.hero-badge.meta-partner {
    display: inline-block;
    margin-bottom: 22px;
}
.hero-badge.meta-partner img {
    display: block;
    height: 56px;
    width: auto;
    max-width: 220px;
    object-fit: contain;
}
.hero-title {
    font-size: clamp(36px, 5.2vw, 64px);
    font-weight: 900;
    line-height: 1.05;
    letter-spacing: -1.5px;
    margin-bottom: 22px;
}
.hero-sub {
    font-size: 18px;
    color: var(--text-muted);
    margin-bottom: 32px;
    max-width: 520px;
}
.hero-cta {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 36px;
}
.hero-meta {
    display: flex;
    align-items: center;
    gap: 14px;
}
.avatars {
    display: flex;
}
.avatars span {
    width: 36px; height: 36px;
    border-radius: 50%;
    border: 2px solid #fff;
    margin-left: -8px;
    background: var(--gradient);
    box-shadow: var(--shadow-sm);
}
.avatars span:nth-child(1) { background: linear-gradient(135deg, #ff8f6b, #ff4e2b); margin-left: 0; }
.avatars span:nth-child(2) { background: linear-gradient(135deg, #ffb37a, #ff7a3d); }
.avatars span:nth-child(3) { background: linear-gradient(135deg, #ffa06b, #ff5e26); }
.avatars span:nth-child(4) { background: linear-gradient(135deg, #ffc29a, #ff8f3c); }

/* Avatars with real images — keep circular + soft orange glow */
.avatars-img span {
    width: 38px;
    height: 38px;
    margin-left: -12px;
    overflow: hidden;
    background: #fff;
    position: relative;
    animation: avatarGlow 2.8s ease-in-out infinite;
    transition: transform .3s var(--ease);
}
.avatars-img span:first-child { margin-left: 0; }
.avatars-img span img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    display: block;
}
.avatars-img span:hover {
    transform: translateY(-4px) scale(1.15);
    z-index: 10;
}
.avatars-img span:nth-child(1)  { animation-delay: 0s;   }
.avatars-img span:nth-child(2)  { animation-delay: .25s; }
.avatars-img span:nth-child(3)  { animation-delay: .5s;  }
.avatars-img span:nth-child(4)  { animation-delay: .75s; }
.avatars-img span:nth-child(5)  { animation-delay: 1s;   }
.avatars-img span:nth-child(6)  { animation-delay: 1.25s;}
.avatars-img span:nth-child(7)  { animation-delay: 1.5s; }
.avatars-img span:nth-child(8)  { animation-delay: 1.75s;}
.avatars-img span:nth-child(9)  { animation-delay: 2s;   }
.avatars-img span:nth-child(10) { animation-delay: 2.25s;}
.avatars-img span:nth-child(11) { animation-delay: 2.5s; }

@keyframes avatarGlow {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(255,107,53,0.55), 0 2px 6px rgba(0,0,0,0.08);
    }
    50% {
        box-shadow: 0 0 0 6px rgba(255,107,53,0), 0 2px 10px rgba(255,107,53,0.25);
    }
}
.meta-text {
    font-size: 14px;
    color: var(--text-muted);
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.meta-text strong { color: var(--text); }
.meta-stars {
    display: flex;
    gap: 3px;
    color: #fbbc04;
    font-size: 13px;
}

/* Hero Dashboard Mock */
.hero-right { position: relative; }
.hero-mock {
    border-radius: var(--radius-lg);
    overflow: hidden;
    transform: perspective(1200px) rotateY(-6deg) rotateX(3deg);
    transition: transform .5s var(--ease);
    border: 1px solid var(--border);
    box-shadow: 0 30px 60px rgba(255,107,53,0.12), 0 15px 40px rgba(0,0,0,0.06);
}
.hero-mock:hover { transform: perspective(1200px) rotateY(-2deg) rotateX(1deg); }

.mock-topbar {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 12px 16px;
    background: #fafafa;
    border-bottom: 1px solid var(--border);
}
.mock-topbar > span {
    width: 10px; height: 10px;
    border-radius: 50%;
    background: #e4e4e4;
}
.mock-topbar > span:nth-child(1) { background: #ff5f57; }
.mock-topbar > span:nth-child(2) { background: #ffbd2e; }
.mock-topbar > span:nth-child(3) { background: #28ca42; }
.mock-url {
    margin-left: auto;
    font-size: 11px;
    background: #fff;
    padding: 4px 12px;
    border-radius: 6px;
    color: var(--text-muted);
    border: 1px solid var(--border);
}

.mock-body {
    display: grid;
    grid-template-columns: 170px 1fr;
    background: #fff;
    min-height: 340px;
}
.mock-side {
    padding: 18px 14px;
    background: #fafafa;
    border-right: 1px solid var(--border);
}
.mock-logo {
    font-size: 13px;
    font-weight: 800;
    color: var(--accent);
    margin-bottom: 18px;
    display: flex; align-items: center; gap: 6px;
}
.mock-side ul { list-style: none; display: flex; flex-direction: column; gap: 4px; }
.mock-side li {
    display: flex; align-items: center; gap: 8px;
    padding: 8px 10px;
    font-size: 12px;
    color: var(--text-muted);
    border-radius: 8px;
    transition: all .2s;
}
.mock-side li.active {
    background: var(--accent-soft);
    color: var(--accent);
    font-weight: 600;
}
.mock-side li i { font-size: 11px; }

.mock-main { padding: 20px; }
.mock-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-bottom: 18px;
}
.stat-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 12px;
    display: flex;
    flex-direction: column;
    gap: 3px;
}
.stat-label { font-size: 10px; color: var(--text-muted); font-weight: 600; text-transform: uppercase; }
.stat-value { font-size: 18px; font-weight: 800; }
.stat-delta { font-size: 10px; font-weight: 700; }
.stat-delta.up { color: #14a44d; }

.mock-chart {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 20px;
    height: 160px;
}
.chart-bars {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    height: 100%;
    gap: 8px;
}
.chart-bars span {
    flex: 1;
    height: var(--h);
    background: var(--gradient);
    border-radius: 6px 6px 0 0;
    opacity: 0.9;
    animation: barGrow 1s var(--ease) both;
}
.chart-bars span:nth-child(1) { animation-delay: 0.1s; }
.chart-bars span:nth-child(2) { animation-delay: 0.15s; }
.chart-bars span:nth-child(3) { animation-delay: 0.2s; }
.chart-bars span:nth-child(4) { animation-delay: 0.25s; }
.chart-bars span:nth-child(5) { animation-delay: 0.3s; }
.chart-bars span:nth-child(6) { animation-delay: 0.35s; }
.chart-bars span:nth-child(7) { animation-delay: 0.4s; }
.chart-bars span:nth-child(8) { animation-delay: 0.45s; }

@keyframes barGrow {
    from { height: 0; opacity: 0; }
    to { height: var(--h); opacity: 0.9; }
}

/* Floating Cards */
.float-card {
    position: absolute;
    background: #fff;
    padding: 12px 16px;
    border-radius: 14px;
    box-shadow: var(--shadow);
    display: flex;
    align-items: center;
    gap: 12px;
    border: 1px solid var(--border);
    animation: bob 4s ease-in-out infinite;
}
.float-wa {
    left: -30px;
    bottom: 40px;
    animation-delay: -1s;
}
.float-ai {
    right: -20px;
    top: 40px;
}
.float-card strong { display: block; font-size: 13px; }
.float-card small { font-size: 11px; color: var(--text-muted); }

.wa-icon {
    width: 38px; height: 38px;
    border-radius: 50%;
    background: #25d366;
    color: #fff;
    display: grid; place-items: center;
    font-size: 18px;
    box-shadow: 0 0 0 0 rgba(37,211,102,.5);
    animation: waPulse 2s infinite;
}
@keyframes waPulse {
    0% { box-shadow: 0 0 0 0 rgba(37,211,102,.5); }
    70% { box-shadow: 0 0 0 14px rgba(37,211,102,0); }
    100% { box-shadow: 0 0 0 0 rgba(37,211,102,0); }
}
.wa-text { display: flex; flex-direction: column; }
.typing {
    display: inline-flex;
    gap: 3px;
    margin-top: 4px;
}
.typing i {
    width: 6px; height: 6px;
    border-radius: 50%;
    background: #25d366;
    display: inline-block;
    animation: typing 1.4s infinite ease-in-out;
}
.typing i:nth-child(2) { animation-delay: .2s; }
.typing i:nth-child(3) { animation-delay: .4s; }
@keyframes typing {
    0%, 80%, 100% { transform: scale(0.6); opacity: 0.4; }
    40% { transform: scale(1); opacity: 1; }
}

.ai-icon {
    width: 38px; height: 38px;
    border-radius: 10px;
    background: var(--gradient);
    color: #fff;
    display: grid; place-items: center;
    font-size: 16px;
}
@keyframes bob {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* ===========================================
   TRUST BAR
   =========================================== */
.trust {
    padding: 50px 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    background: var(--bg-soft);
}
.trust-title {
    text-align: center;
    color: var(--text-muted);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 26px;
}
.trust-logos {
    display: flex;
    
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.trust-logo {
    flex: 1 1 180px;
    max-width: 220px;
    display: flex;
    
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    gap: 14px;
    opacity: 0.9;
    filter: grayscale(10%);
    transition: all .35s ease;
    cursor: pointer;
    padding: 10px 8px;
    text-align: center;
}

.trust-logo svg {
    width: auto;
    max-width: 100%;
    height: 42px;
    display: block;
    margin: 0 auto;
}

.trust-rating {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    width: 100%;
}
.trust-stars {
    display: flex;
    justify-content: center;
    gap: 3px;
    color: #fbbc04;
    font-size: 14px;
    text-shadow: 0 1px 3px rgba(251,188,4,0.3);
}
.trust-rating small {
    font-size: 12px;
    font-weight: 700;
    color: var(--text-muted);
    letter-spacing: 0.2px;
}
.trust-logo:hover .trust-stars {
    animation: starsWink .5s cubic-bezier(.4,0,.2,1);
}
@keyframes starsWink {
    0% { transform: scale(1); }
    50% { transform: scale(1.15); }
    100% { transform: scale(1); }
}

.trust-logo:hover {
    opacity: 1;
    filter: grayscale(0%);
    transform: translateY(-3px) scale(1.04);
}

/* ===========================================
   FEATURES
   =========================================== */
.feature-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 32px 28px;
    transition: all .35s var(--ease);
    position: relative;
    overflow: hidden;
}
.feature-card::before {
    content: "";
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 3px;
    background: var(--gradient);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .35s var(--ease);
}
.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}
.feature-card:hover::before { transform: scaleX(1); }

.feat-icon {
    width: 56px; height: 56px;
    border-radius: 14px;
    background: var(--accent-soft);
    color: var(--accent);
    display: grid;
    place-items: center;
    font-size: 22px;
    margin-bottom: 20px;
    transition: all .35s var(--ease);
}
.feature-card:hover .feat-icon {
    background: var(--gradient);
    color: #fff;
    transform: rotate(-8deg) scale(1.08);
}
.feature-card h3 {
    font-size: 19px;
    font-weight: 700;
    margin-bottom: 10px;
}
.feature-card p {
    color: var(--text-muted);
    font-size: 15px;
}

/* ===========================================
   PRODUCT PREVIEW
   =========================================== */
.preview {
    overflow: visible;
}
.preview .container {
    max-width: 1400px;
}
.preview-wrap {
    display: grid;
    grid-template-columns: 0.7fr 1.6fr;
    gap: 80px;
    align-items: center;
}
.preview-left h2 {
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 16px;
    letter-spacing: -0.5px;
}
.preview-left p {
    color: var(--text-muted);
    font-size: 17px;
    margin-bottom: 26px;
}
.check-list {
    list-style: none;
    margin-bottom: 30px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.check-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text);
    font-weight: 500;
}
.check-list i {
    width: 24px; height: 24px;
    background: var(--gradient);
    color: #fff;
    border-radius: 50%;
    display: grid;
    place-items: center;
    font-size: 11px;
    flex-shrink: 0;
}

.preview-mock {
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border);
    box-shadow: 0 30px 60px rgba(255,107,53,0.1), 0 15px 35px rgba(0,0,0,0.05);
}
/* ------- Animated Preview Stage (bigger dashboard image) ------- */
.preview-stage {
    position: relative;
    width: 100%;
    perspective: 1800px;
    /* Let the preview break out to the right of the grid column */
    margin-right: -60px;
}
.preview-glow {
    position: absolute;
    inset: -40px;
    background:
        radial-gradient(circle at 30% 30%, rgba(255,107,53,0.25) 0%, transparent 55%),
        radial-gradient(circle at 70% 70%, rgba(255,143,60,0.2) 0%, transparent 55%);
    filter: blur(30px);
    z-index: 0;
    animation: glowPulse 6s ease-in-out infinite;
    pointer-events: none;
}
@keyframes glowPulse {
    0%, 100% { opacity: 0.7; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.05); }
}

.preview-frame {
    position: relative;
    z-index: 2;
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid var(--border);
    box-shadow:
        0 50px 100px rgba(255,107,53,0.22),
        0 25px 60px rgba(0,0,0,0.1),
        0 0 0 1px rgba(255,255,255,0.8) inset;
    transform: perspective(1800px) rotateY(-3deg) rotateX(1.5deg);
    transition: transform .6s var(--ease), box-shadow .6s var(--ease);
    animation: frameFloat 7s ease-in-out infinite;
    width: 100%;
}
@keyframes frameFloat {
    0%, 100% { transform: perspective(1800px) rotateY(-3deg) rotateX(1.5deg) translateY(0); }
    50% { transform: perspective(1800px) rotateY(-1deg) rotateX(0.5deg) translateY(-14px); }
}
.preview-frame:hover {
    transform: perspective(1800px) rotateY(0deg) rotateX(0deg) translateY(-8px) scale(1.02);
    box-shadow: 0 50px 100px rgba(255,107,53,0.3), 0 25px 60px rgba(0,0,0,0.12);
    animation-play-state: paused;
}

.frame-topbar {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 12px 16px;
    background: linear-gradient(180deg, #fafafa, #f4f4f4);
    border-bottom: 1px solid var(--border);
}
.frame-topbar > span {
    width: 11px; height: 11px;
    border-radius: 50%;
}
.frame-topbar > span:nth-child(1) { background: #ff5f57; }
.frame-topbar > span:nth-child(2) { background: #ffbd2e; }
.frame-topbar > span:nth-child(3) { background: #28ca42; }
.frame-url {
    margin: 0 auto;
    font-size: 12px;
    background: #fff;
    padding: 5px 16px;
    border-radius: 8px;
    color: var(--text-muted);
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
    max-width: 60%;
}
.frame-url i { color: #14a44d; font-size: 10px; }

.frame-body {
    position: relative;
    overflow: hidden;
    background: #fafafa;
}
.preview-img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform .6s var(--ease);
}
.preview-frame:hover .preview-img {
    transform: scale(1.02);
}

/* Shine sweep animation */
.shine-sweep {
    position: absolute;
    top: 0;
    left: -150%;
    width: 80%;
    height: 100%;
    background: linear-gradient(120deg, transparent 20%, rgba(255,255,255,0.55) 50%, transparent 80%);
    transform: skewX(-20deg);
    pointer-events: none;
    animation: shineSweep 5s ease-in-out infinite;
}
@keyframes shineSweep {
    0% { left: -150%; }
    40% { left: 150%; }
    100% { left: 150%; }
}

/* Floating stat badges around the frame */
.preview-float {
    position: absolute;
    z-index: 5;
    background: #fff;
    padding: 12px 18px;
    border-radius: 14px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1), 0 8px 20px rgba(255,107,53,0.08);
    display: flex;
    align-items: center;
    gap: 12px;
    border: 1px solid var(--border);
    animation: bob 4.5s ease-in-out infinite;
}
.preview-float small {
    display: block;
    font-size: 11px;
    color: var(--text-muted);
    font-weight: 500;
}
.preview-float strong {
    display: block;
    font-size: 17px;
    font-weight: 800;
    color: var(--text);
}
.pf-icon {
    width: 40px; height: 40px;
    border-radius: 11px;
    display: grid;
    place-items: center;
    color: #fff;
    font-size: 16px;
    flex-shrink: 0;
}
.pf-icon.green { background: linear-gradient(135deg, #14a44d, #28ca42); box-shadow: 0 6px 14px rgba(20,164,77,0.3); }
.pf-icon.orange { background: var(--gradient); box-shadow: 0 6px 14px rgba(255,107,53,0.3); }
.pf-icon.purple { background: linear-gradient(135deg, #7b3fe4, #a855f7); box-shadow: 0 6px 14px rgba(123,63,228,0.3); }

.preview-float-1 { top: -18px; left: -30px; animation-delay: 0s; }
.preview-float-2 { top: 40%; right: -40px; animation-delay: -1.5s; }
.preview-float-3 { bottom: -20px; left: 15%; animation-delay: -3s; }
.preview-body {
    padding: 24px;
    background: #fff;
}
.preview-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}
.preview-header h4 { font-size: 17px; font-weight: 700; }
.tag {
    padding: 4px 10px;
    background: var(--accent-soft);
    color: var(--accent);
    border-radius: 50px;
    font-size: 11px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 6px;
}
.tag::before {
    content: "";
    width: 6px; height: 6px;
    border-radius: 50%;
    background: var(--accent);
    animation: pulseDot 1.5s infinite;
}
@keyframes pulseDot {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}
.preview-chart {
    height: 140px;
    margin-bottom: 20px;
}
.preview-chart svg { width: 100%; height: 100%; }
.preview-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}
.preview-cards > div {
    background: var(--bg-soft);
    padding: 14px;
    border-radius: 10px;
    text-align: center;
}
.preview-cards strong {
    display: block;
    font-size: 22px;
    color: var(--accent);
    font-weight: 800;
}
.preview-cards span {
    font-size: 12px;
    color: var(--text-muted);
    font-weight: 500;
}

/* ===========================================
   HOW IT WORKS
   =========================================== */
.how { background: var(--bg-soft); }
.steps {
    display: flex;
    align-items: stretch;
    gap: 0;
    justify-content: space-between;
}
.step {
    flex: 1;
    background: #fff;
    padding: 36px 28px;
    border-radius: var(--radius);
    border: 1px solid var(--border);
    text-align: center;
    position: relative;
    transition: all .3s var(--ease);
}
.step:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}
.step-num {
    font-size: 14px;
    font-weight: 800;
    color: var(--accent);
    letter-spacing: 2px;
    margin-bottom: 12px;
}
.step-icon {
    width: 70px; height: 70px;
    border-radius: 50%;
    background: var(--gradient);
    color: #fff;
    display: grid;
    place-items: center;
    font-size: 26px;
    margin: 0 auto 20px;
    box-shadow: 0 10px 25px rgba(255,107,53,0.3);
}
.step h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
}
.step p {
    color: var(--text-muted);
    font-size: 15px;
}
.step-line {
    width: 50px;
    height: 2px;
    background: linear-gradient(90deg, var(--accent), var(--accent-2));
    align-self: center;
    opacity: 0.35;
    position: relative;
}
.step-line::after {
    content: "";
    position: absolute;
    right: -4px; top: -4px;
    width: 10px; height: 10px;
    border-top: 2px solid var(--accent-2);
    border-right: 2px solid var(--accent-2);
    transform: rotate(45deg);
}

/* ===========================================
   BENEFITS
   =========================================== */
.benefit-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 36px 28px;
    text-align: center;
    transition: all .35s var(--ease);
}
.benefit-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}
.benefit-icon {
    width: 72px; height: 72px;
    margin: 0 auto 20px;
    border-radius: 20px;
    background: var(--accent-soft);
    color: var(--accent);
    display: grid;
    place-items: center;
    font-size: 28px;
    transition: all .35s var(--ease);
}
.benefit-card:hover .benefit-icon {
    background: var(--gradient);
    color: #fff;
    transform: scale(1.08);
}
.benefit-card h3 { font-size: 20px; font-weight: 700; margin-bottom: 10px; }
.benefit-card p { color: var(--text-muted); font-size: 15px; }

/* ===========================================
   TESTIMONIALS
   =========================================== */
.testimonials { background: var(--bg-soft); }
.testi-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 30px;
    transition: all .35s var(--ease);
}
.testi-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}
.stars {
    color: #ffb800;
    margin-bottom: 16px;
    display: flex;
    gap: 2px;
}
.testi-card p {
    font-size: 16px;
    color: var(--text);
    margin-bottom: 22px;
    line-height: 1.6;
}
.testi-user {
    display: flex;
    align-items: center;
    gap: 12px;
}
.avatar {
    width: 44px; height: 44px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    color: #fff;
    font-weight: 700;
    font-size: 16px;
    flex-shrink: 0;
}
.testi-user strong { display: block; font-size: 14px; }
.testi-user small { color: var(--text-muted); font-size: 13px; }

/* ===========================================
   CTA BANNER
   =========================================== */
.cta-banner { padding: 80px 0; }
.cta-wrap {
    background: var(--gradient);
    border-radius: 28px;
    padding: 72px 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
    color: #fff;
    box-shadow: 0 30px 60px rgba(255,107,53,0.25);
}
.cta-shapes span {
    position: absolute;
    background: rgba(255,255,255,0.08);
    border-radius: 50%;
    animation: float 10s ease-in-out infinite;
}
.cta-shapes span:nth-child(1) { width: 200px; height: 200px; top: -60px; left: -60px; }
.cta-shapes span:nth-child(2) { width: 140px; height: 140px; bottom: -40px; right: 10%; animation-delay: -3s; }
.cta-shapes span:nth-child(3) { width: 100px; height: 100px; top: 30%; right: -30px; animation-delay: -6s; }

.cta-wrap h2 {
    font-size: clamp(30px, 4vw, 46px);
    font-weight: 800;
    margin-bottom: 16px;
    letter-spacing: -0.5px;
    position: relative;
    z-index: 2;
}
.cta-wrap p {
    font-size: 18px;
    opacity: 0.95;
    margin-bottom: 32px;
    position: relative;
    z-index: 2;
}
.white-accent { color: #fff5f0; }

.cta-wrap .btn-white { position: relative; z-index: 2; }

/* ===========================================
   FOOTER
   =========================================== */
.footer {
    background: #0a0a0a;
    color: #cfcfcf;
    padding: 70px 0 30px;
}
.footer .logo { color: #fff; }
.footer .logo-text .accent { color: var(--accent-2); }
.footer-wrap {
    display: grid;
    grid-template-columns: 1.4fr 2fr;
    gap: 60px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}
.foot-brand p {
    margin-top: 16px;
    font-size: 14px;
    color: #9a9a9a;
    max-width: 340px;
}
.socials {
    display: flex;
    gap: 10px;
    margin-top: 22px;
}
.socials a {
    width: 38px; height: 38px;
    border-radius: 10px;
    background: rgba(255,255,255,0.06);
    display: grid;
    place-items: center;
    color: #cfcfcf;
    transition: all .25s var(--ease);
}
.socials a:hover {
    background: var(--gradient);
    color: #fff;
    transform: translateY(-3px);
}
.foot-cols {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}
.foot-col h4 {
    color: #fff;
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 16px;
}
.foot-col a {
    display: block;
    font-size: 14px;
    color: #9a9a9a;
    padding: 6px 0;
    transition: color .2s;
}
.foot-col a:hover { color: var(--accent-2); }

.foot-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 24px;
    font-size: 13px;
    color: #7a7a7a;
    flex-wrap: wrap;
    gap: 10px;
}
.foot-legal a {
    color: #9a9a9a;
    transition: color .2s;
    margin: 0 2px;
}
.foot-legal a:hover { color: var(--accent-2); }

/* Secure payments row */
.foot-payments {
    padding: 26px 24px 0;
    margin-top: 10px;
    border-top: 1px solid rgba(255,255,255,0.06);
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: space-between;
}
.pay-label {
    color: #cfcfcf;
    font-size: 13px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 8px;
    letter-spacing: 0.3px;
}
.pay-label i {
    color: var(--accent-2);
    font-size: 12px;
}
.pay-logos {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    align-items: center;
}
.pay-item {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 8px;
    padding: 8px 10px;
    height: 42px;
    display: grid;
    place-items: center;
    transition: all .3s var(--ease);
    cursor: default;
}
.pay-item svg,
.pay-item img {
    height: 22px;
    width: auto;
    display: block;
}
.pay-item-razorpay {
    background: #fff;
    border-color: rgba(0,0,0,0.08);
}
.pay-item-razorpay:hover {
    background: #fff;
}
.pay-item:hover {
    background: rgba(255,255,255,0.12);
    border-color: var(--accent);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(255,107,53,0.25);
}

@media (max-width: 720px) {
    .foot-payments {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 14px;
        padding: 20px 16px 0;
    }
    .pay-logos { justify-content: center; gap: 10px; }
    .pay-item { height: 36px; padding: 6px 8px; }
    .pay-item svg { height: 18px; }
}

/* ===========================================
   WHATSAPP SHOWCASE (Animated Phone)
   =========================================== */
.wa-showcase {
    position: relative;
    background: linear-gradient(180deg, #fff7f0 0%, #ffffff 100%);
    overflow: hidden;
}
.wa-bg-shapes {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}
.wa-bg-shapes span {
    position: absolute;
    border-radius: 50%;
    background: var(--gradient);
    opacity: 0.09;
    filter: blur(60px);
    animation: float 14s ease-in-out infinite;
}
.wa-bg-shapes span:nth-child(1) { width: 300px; height: 300px; top: 20%; left: -60px; }
.wa-bg-shapes span:nth-child(2) { width: 200px; height: 200px; bottom: 10%; right: 10%; animation-delay: -5s; }
.wa-bg-shapes span:nth-child(3) { width: 160px; height: 160px; top: 10%; right: 20%; animation-delay: -2s; }

.wa-wrap {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}
.pill-dark {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: #1a1a1a;
    color: #fff;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 22px;
}
.pill-dark i { color: #25d366; font-size: 14px; }

.wa-title {
    font-size: clamp(36px, 5vw, 58px);
    font-weight: 900;
    line-height: 1.05;
    letter-spacing: -1.2px;
    margin-bottom: 20px;
}
.wa-desc {
    font-size: 17px;
    color: var(--text-muted);
    margin-bottom: 32px;
    max-width: 520px;
}
.wa-cta {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 30px;
}
.btn-whatsapp {
    background: #25d366;
    color: #fff;
    box-shadow: 0 8px 20px rgba(37,211,102,0.35);
}
.btn-whatsapp:hover {
    transform: translateY(-2px);
    background: #22c55e;
    box-shadow: 0 14px 30px rgba(37,211,102,0.45);
}
.wa-trust {
    display: flex;
    align-items: center;
    gap: 18px;
    flex-wrap: wrap;
}
.stars-inline {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    color: var(--text-muted);
}
.stars-inline i { color: #ffb800; font-size: 13px; }
.stars-inline span { margin-left: 6px; }
.stars-inline strong { color: var(--text); }

/* Phone Stage */
.phone-stage {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 620px;
    perspective: 1200px;
}
.phone {
    width: 300px;
    height: 600px;
    background: #1a1a1a;
    border-radius: 44px;
    padding: 12px;
    box-shadow:
        0 40px 80px rgba(255,107,53,0.25),
        0 20px 50px rgba(0,0,0,0.3),
        inset 0 0 0 2px #2a2a2a;
    position: relative;
    z-index: 2;
    animation: phoneFloat 6s ease-in-out infinite;
    transform-style: preserve-3d;
}
@keyframes phoneFloat {
    0%, 100% {
        transform: translateY(0) rotate(-2deg) rotateY(-4deg);
    }
    50% {
        transform: translateY(-20px) rotate(2deg) rotateY(4deg);
    }
}
.phone-notch {
    position: absolute;
    top: 22px;
    left: 50%;
    transform: translateX(-50%);
    width: 110px;
    height: 26px;
    background: #000;
    border-radius: 14px;
    z-index: 4;
}
.phone-screen {
    width: 100%;
    height: 100%;
    background: #0b141a;
    border-radius: 34px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}
.chat-header {
    background: #202c33;
    padding: 42px 14px 12px;
    display: flex;
    align-items: center;
    gap: 10px;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}
.chat-avatar {
    width: 36px; height: 36px;
    border-radius: 50%;
    background: #fff;
    display: grid;
    place-items: center;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(255,107,53,0.35);
}
.chat-avatar .logo-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.chat-info { flex: 1; color: #fff; display: flex; flex-direction: column; }
.chat-info strong { font-size: 13px; font-weight: 600; }
.chat-info small { font-size: 11px; color: #8696a0; }
.chat-actions {
    display: flex;
    gap: 14px;
    color: #aebac1;
    font-size: 14px;
}

.chat-body {
    flex: 1;
    padding: 14px 10px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 8px;
    background:
        linear-gradient(rgba(11,20,26,0.92), rgba(11,20,26,0.92)),
        repeating-linear-gradient(45deg, #182229 0 2px, transparent 2px 20px);
}
.chat-body::-webkit-scrollbar { width: 0; }

.msg {
    max-width: 78%;
    padding: 7px 10px 18px;
    border-radius: 8px;
    font-size: 12px;
    line-height: 1.4;
    position: relative;
    word-wrap: break-word;
    animation: msgIn .5s var(--ease) both;
    color: #e9edef;
}
@keyframes msgIn {
    from { opacity: 0; transform: translateY(10px) scale(0.95); }
    to { opacity: 1; transform: translateY(0) scale(1); }
}
.msg-in {
    align-self: flex-start;
    background: #202c33;
    border-top-left-radius: 2px;
}
.msg-out {
    align-self: flex-end;
    background: #005c4b;
    border-top-right-radius: 2px;
}
.msg:nth-child(1) { animation-delay: 0.2s; }
.msg:nth-child(2) { animation-delay: 0.5s; }
.msg:nth-child(3) { animation-delay: 1s; }
.msg:nth-child(4) { animation-delay: 1.5s; }
.msg:nth-child(5) { animation-delay: 2s; }
.msg:nth-child(6) { animation-delay: 2.5s; }

.ai-tag {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    background: linear-gradient(135deg, #ff6b35, #ff8f3c);
    color: #fff;
    padding: 2px 8px;
    border-radius: 50px;
    font-size: 9px;
    font-weight: 700;
    margin-bottom: 4px;
    width: fit-content;
}
.ai-tag::before {
    content: "🤖";
    font-size: 9px;
}
.msg-out .ai-tag { margin-bottom: 4px; display: flex; }
.msg-time {
    position: absolute;
    right: 10px;
    bottom: 4px;
    font-size: 9px;
    color: rgba(233,237,239,0.6);
    display: flex;
    align-items: center;
    gap: 3px;
}
.msg-time i { color: #53bdeb; font-size: 10px; }

.typing-msg {
    padding: 10px 14px 10px;
    max-width: 60px;
}
.typing-msg .dots {
    display: inline-flex;
    gap: 4px;
}
.typing-msg .dots i {
    width: 6px; height: 6px;
    background: #8696a0;
    border-radius: 50%;
    display: inline-block;
    animation: typing 1.4s infinite ease-in-out;
}
.typing-msg .dots i:nth-child(2) { animation-delay: .2s; }
.typing-msg .dots i:nth-child(3) { animation-delay: .4s; }

.chat-footer {
    background: #202c33;
    padding: 10px 14px;
    display: flex;
    align-items: center;
    gap: 10px;
}
.chat-footer span {
    flex: 1;
    background: #2a3942;
    padding: 8px 14px;
    border-radius: 20px;
    color: #8696a0;
    font-size: 12px;
}
.chat-footer button {
    width: 34px; height: 34px;
    border-radius: 50%;
    background: #00a884;
    color: #fff;
    display: grid;
    place-items: center;
    font-size: 13px;
    transition: all .2s;
}
.chat-footer button:hover { background: #008f70; transform: scale(1.05); }

/* Floating Stat Cards */
.stat-float {
    position: absolute;
    background: #fff;
    padding: 12px 16px;
    border-radius: 14px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.12), 0 5px 15px rgba(255,107,53,0.08);
    display: flex;
    align-items: center;
    gap: 12px;
    border: 1px solid var(--border);
    z-index: 3;
    animation: bob 4.5s ease-in-out infinite;
}
.stat-float small { display: block; font-size: 11px; color: var(--text-muted); font-weight: 500; }
.stat-float strong { display: block; font-size: 17px; font-weight: 800; color: var(--text); }

.stat-float-icon {
    width: 42px; height: 42px;
    border-radius: 12px;
    display: grid;
    place-items: center;
    color: #fff;
    font-size: 18px;
}
.stat-float-icon.green { background: #25d366; box-shadow: 0 6px 14px rgba(37,211,102,.3); }
.stat-float-icon.orange { background: var(--gradient); box-shadow: 0 6px 14px rgba(255,107,53,.3); }
.stat-float-icon.red { background: linear-gradient(135deg, #ff4e2b, #e54b1b); box-shadow: 0 6px 14px rgba(229,75,27,.3); }

.stat-msg { top: 10%; left: 0; animation-delay: -0.5s; }
.stat-conv { top: 40%; right: 0; animation-delay: -1.5s; }
.stat-ai { bottom: 15%; right: 5%; animation-delay: -2.5s; }

/* Floating WhatsApp button (bottom-right) */
.wa-float-btn {
    position: absolute;
    bottom: 10px;
    right: 20px;
    width: 60px; height: 60px;
    border-radius: 50%;
    background: #25d366;
    color: #fff;
    display: grid;
    place-items: center;
    font-size: 28px;
    box-shadow: 0 10px 30px rgba(37,211,102,0.5), 0 0 0 0 rgba(37,211,102,0.6);
    cursor: pointer;
    animation: waPulse 2s infinite;
    z-index: 5;
}

/* ===========================================
   PRICING
   =========================================== */
.pricing {
    background: var(--bg-soft);
    position: relative;
    overflow: hidden;
}
.pricing::before {
    content: "";
    position: absolute;
    top: 20%;
    left: 50%;
    transform: translateX(-50%);
    width: 500px; height: 500px;
    background: radial-gradient(circle, var(--accent-soft) 0%, transparent 60%);
    pointer-events: none;
}

.billing-toggle {
    display: inline-flex;
    align-items: center;
    gap: 16px;
    margin-top: 24px;
    padding: 6px 10px;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 50px;
    box-shadow: var(--shadow-sm);
}
.billing-label {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-muted);
    padding: 8px 4px;
    transition: color .25s;
    cursor: pointer;
    user-select: none;
}
.billing-label.active { color: var(--text); }

.toggle-switch {
    width: 52px;
    height: 28px;
    border-radius: 50px;
    background: #e4e4e4;
    position: relative;
    transition: background .3s var(--ease);
    cursor: pointer;
    padding: 0;
    flex-shrink: 0;
}
.toggle-knob {
    position: absolute;
    top: 3px; left: 3px;
    width: 22px; height: 22px;
    border-radius: 50%;
    background: #fff;
    box-shadow: 0 2px 6px rgba(0,0,0,.2);
    transition: all .3s var(--ease);
}
.toggle-switch.active { background: var(--gradient); }
.toggle-switch.active .toggle-knob { left: 27px; }

.save-note {
    margin-top: 14px;
    font-size: 14px;
    color: var(--accent);
    font-weight: 600;
}
.save-note i { margin-right: 4px; }

.pricing-toggles {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 24px;
}
.pricing-toggles .billing-toggle { margin-top: 0; }
.currency-toggle .billing-label small {
    font-weight: 700;
    color: var(--accent);
    margin-left: 2px;
}
.fx-note {
    margin-top: 6px;
    font-size: 12px;
    color: var(--text-muted);
    font-weight: 500;
}
.fx-note[hidden] { display: none; }

.pricing-grid {
    position: relative;
    z-index: 2;
    align-items: stretch;
}

.price-card {
    background: #fff;
    border: 1.5px solid var(--border);
    border-radius: 20px;
    padding: 36px 30px;
    transition: all .4s var(--ease);
    position: relative;
    display: flex;
    flex-direction: column;
}
.price-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 60px rgba(255,107,53,0.15);
    border-color: var(--accent);
}
.price-card.popular {
    border: 2px solid transparent;
    background:
        linear-gradient(#fff, #fff) padding-box,
        var(--gradient) border-box;
    box-shadow: 0 20px 50px rgba(255,107,53,0.18);
    transform: translateY(-8px);
}
.price-card.popular:hover {
    transform: translateY(-14px);
    box-shadow: 0 34px 70px rgba(255,107,53,0.25);
}
.popular-tag {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient);
    color: #fff;
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    box-shadow: 0 8px 20px rgba(255,107,53,0.4);
    display: flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap;
}
.popular-tag i { font-size: 11px; }

.price-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 18px;
}
.price-top h3 {
    font-size: 22px;
    font-weight: 700;
}
.save-badge {
    background: #fef3c7;
    color: #b45309;
    padding: 4px 10px;
    border-radius: 50px;
    font-size: 11px;
    font-weight: 700;
    display: none;
}
.save-badge.show { display: inline-block; animation: badgePop .4s var(--ease); }
@keyframes badgePop {
    0% { transform: scale(0); opacity: 0; }
    60% { transform: scale(1.1); }
    100% { transform: scale(1); opacity: 1; }
}

.price-value {
    display: flex;
    align-items: baseline;
    gap: 4px;
    margin-bottom: 18px;
}
.currency {
    font-size: 22px;
    font-weight: 700;
    color: var(--text);
}
.amount {
    font-size: 46px;
    font-weight: 900;
    color: var(--text);
    letter-spacing: -1.5px;
    transition: all .35s var(--ease);
}
.amount.flip {
    animation: amountFlip .5s var(--ease);
}
@keyframes amountFlip {
    0% { transform: rotateX(0); opacity: 1; }
    50% { transform: rotateX(90deg); opacity: 0; }
    100% { transform: rotateX(0); opacity: 1; }
}
.period {
    font-size: 15px;
    color: var(--text-muted);
    font-weight: 500;
}

.price-desc {
    color: var(--text-muted);
    font-size: 14px;
    margin-bottom: 24px;
    line-height: 1.55;
}

.btn-price {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 20px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 15px;
    background: #fff;
    color: var(--accent);
    border: 2px solid var(--accent);
    margin-bottom: 24px;
    transition: all .3s var(--ease);
    position: relative;
    overflow: hidden;
}
.btn-price::before {
    content: "";
    position: absolute;
    inset: 0;
    background: var(--gradient);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .4s var(--ease);
    z-index: 0;
}
.btn-price span,
.btn-price i {
    position: relative;
    z-index: 1;
    transition: color .3s var(--ease);
}
.btn-price:hover {
    color: #fff;
    border-color: transparent;
    transform: translateY(-2px);
    box-shadow: 0 12px 25px rgba(255,107,53,0.35);
}
.btn-price:hover::before { transform: scaleX(1); }
.btn-price:hover i { transform: translateX(4px); }

.btn-price-popular {
    background: var(--gradient);
    color: #fff;
    border-color: transparent;
    box-shadow: 0 10px 22px rgba(255,107,53,0.35);
    animation: btnPulse 2.5s infinite;
}
.btn-price-popular::before {
    background: var(--gradient-dark);
}
.btn-price-popular:hover {
    color: #fff;
}
@keyframes btnPulse {
    0%, 100% { box-shadow: 0 10px 22px rgba(255,107,53,0.35), 0 0 0 0 rgba(255,107,53,0.5); }
    50% { box-shadow: 0 10px 22px rgba(255,107,53,0.35), 0 0 0 14px rgba(255,107,53,0); }
}

.price-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: auto;
}
.price-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    font-weight: 500;
}
.price-features li i {
    width: 20px; height: 20px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    font-size: 10px;
    flex-shrink: 0;
}
.price-features li.yes { color: var(--text); }
.price-features li.yes i {
    background: var(--accent-soft);
    color: var(--accent);
}
.price-features li.no { color: #bcbcbc; text-decoration: line-through; }
.price-features li.no i {
    background: #f4f4f4;
    color: #bcbcbc;
}

/* Free Trial card */
.price-free {
    background: linear-gradient(160deg, #fff7f0 0%, #fff 100%);
    border: 1.5px dashed var(--accent);
}
.price-free:hover {
    border-style: solid;
    border-color: var(--accent);
}
.free-tag {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: #1a1a1a;
    color: #fff;
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap;
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
    animation: freeTagPulse 2.2s infinite;
}
.free-tag i { color: var(--accent-2); font-size: 11px; }
@keyframes freeTagPulse {
    0%, 100% { box-shadow: 0 8px 20px rgba(0,0,0,0.2), 0 0 0 0 rgba(255,107,53,0.5); }
    50% { box-shadow: 0 8px 20px rgba(0,0,0,0.2), 0 0 0 10px rgba(255,107,53,0); }
}
.amount-free {
    background: var(--gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 44px;
    font-weight: 900;
    letter-spacing: -1.5px;
}

/* ===========================================
   VIDEO SHOWCASE
   =========================================== */
.video-section {
    position: relative;
    background: linear-gradient(180deg, #fff 0%, #fff7f0 100%);
    overflow: hidden;
}
.video-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}
.video-bg span {
    position: absolute;
    border-radius: 50%;
    background: var(--gradient);
    opacity: 0.08;
    filter: blur(50px);
    animation: float 12s ease-in-out infinite;
}
.video-bg span:nth-child(1) { width: 280px; height: 280px; top: 8%; left: -60px; }
.video-bg span:nth-child(2) { width: 220px; height: 220px; bottom: 10%; right: -50px; animation-delay: -4s; }
.video-bg span:nth-child(3) { width: 160px; height: 160px; top: 40%; right: 20%; animation-delay: -7s; }

.video-stage {
    position: relative;
    max-width: 960px;
    margin: 0 auto;
    z-index: 2;
}

.video-glow {
    position: absolute;
    inset: -30px;
    background:
        radial-gradient(circle at 30% 30%, rgba(255,107,53,0.28) 0%, transparent 55%),
        radial-gradient(circle at 70% 70%, rgba(255,143,60,0.22) 0%, transparent 55%);
    filter: blur(28px);
    z-index: 0;
    animation: videoGlowPulse 5s ease-in-out infinite;
    pointer-events: none;
}
@keyframes videoGlowPulse {
    0%, 100% { opacity: 0.7; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.04); }
}

.video-frame {
    position: relative;
    z-index: 2;
    background: #1a1a1a;
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid rgba(255,107,53,0.25);
    box-shadow:
        0 50px 100px rgba(255,107,53,0.22),
        0 25px 60px rgba(0,0,0,0.25);
    transition: transform .5s var(--ease), box-shadow .5s var(--ease);
    animation: videoFloat 7s ease-in-out infinite;
}
@keyframes videoFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}
.video-frame:hover {
    transform: translateY(-6px) scale(1.01);
    box-shadow:
        0 60px 120px rgba(255,107,53,0.3),
        0 30px 70px rgba(0,0,0,0.3);
    animation-play-state: paused;
}

.video-topbar {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 12px 18px;
    background: linear-gradient(180deg, #2a2a2a, #1f1f1f);
    border-bottom: 1px solid #333;
}
.video-topbar > span {
    width: 11px; height: 11px;
    border-radius: 50%;
}
.video-topbar > span:nth-child(1) { background: #ff5f57; }
.video-topbar > span:nth-child(2) { background: #ffbd2e; }
.video-topbar > span:nth-child(3) { background: #28ca42; }
.video-url {
    margin: 0 auto;
    font-size: 12px;
    background: #333;
    padding: 5px 16px;
    border-radius: 8px;
    color: #ccc;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
    max-width: 70%;
}
.video-url i { color: #ff0000; font-size: 14px; }

.video-wrap {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    background: #000;
    cursor: pointer;
    overflow: hidden;
}
.video-wrap iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
}
.video-poster {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .6s var(--ease), filter .4s var(--ease);
}
.video-wrap:hover .video-poster {
    transform: scale(1.04);
    filter: brightness(0.7);
}

/* Dark overlay gradient for readability */
.video-wrap::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0.15) 0%, rgba(0,0,0,0.5) 100%);
    z-index: 1;
    transition: opacity .3s var(--ease);
    pointer-events: none;
}
.video-wrap:hover::before { opacity: 0.7; }

/* Play button */
.video-play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 92px;
    height: 92px;
    border-radius: 50%;
    background: #ff0000;
    border: none;
    cursor: pointer;
    z-index: 3;
    display: grid;
    place-items: center;
    box-shadow: 0 20px 50px rgba(255,0,0,0.5), 0 0 0 0 rgba(255,0,0,0.5);
    transition: transform .35s var(--ease), box-shadow .35s var(--ease);
    animation: playPulse 2.2s ease-in-out infinite;
}
@keyframes playPulse {
    0%, 100% {
        box-shadow: 0 20px 50px rgba(255,0,0,0.45), 0 0 0 0 rgba(255,0,0,0.6);
    }
    50% {
        box-shadow: 0 20px 50px rgba(255,0,0,0.55), 0 0 0 22px rgba(255,0,0,0);
    }
}
.video-play:hover {
    transform: translate(-50%, -50%) scale(1.1);
    background: #e60000;
}
.play-icon {
    color: #fff;
    font-size: 32px;
    margin-left: 6px;
    z-index: 2;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.3));
}
.play-ring {
    position: absolute;
    inset: -8px;
    border-radius: 50%;
    border: 2px solid rgba(255,255,255,0.4);
    animation: ringExpand 2.5s ease-out infinite;
}
.play-ring.ring-2 { animation-delay: 1.25s; }
@keyframes ringExpand {
    0% { transform: scale(0.85); opacity: 0.8; }
    100% { transform: scale(1.5); opacity: 0; }
}

/* Bottom caption */
.video-caption {
    position: absolute;
    bottom: 22px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0,0,0,0.65);
    backdrop-filter: blur(10px);
    color: #fff;
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
    z-index: 3;
    border: 1px solid rgba(255,255,255,0.1);
    white-space: nowrap;
    transition: all .3s var(--ease);
}
.video-caption i { color: #ff0000; font-size: 18px; }
.video-wrap:hover .video-caption {
    background: rgba(0,0,0,0.8);
    transform: translateX(-50%) translateY(-4px);
}

/* When video is playing, hide poster/play overlays */
.video-wrap.playing .video-poster,
.video-wrap.playing::before,
.video-wrap.playing .video-play,
.video-wrap.playing .video-caption { display: none; }

/* Floating badges */
.video-float {
    position: absolute;
    z-index: 5;
    background: #fff;
    padding: 12px 18px;
    border-radius: 14px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.12), 0 8px 20px rgba(255,107,53,0.1);
    display: flex;
    align-items: center;
    gap: 12px;
    border: 1px solid var(--border);
    animation: bob 4.5s ease-in-out infinite;
}
.video-float small {
    display: block;
    font-size: 11px;
    color: var(--text-muted);
    font-weight: 500;
}
.video-float strong {
    display: block;
    font-size: 15px;
    font-weight: 800;
    color: var(--text);
}
.vf-icon {
    width: 38px; height: 38px;
    border-radius: 11px;
    background: var(--gradient);
    color: #fff;
    display: grid;
    place-items: center;
    font-size: 15px;
    box-shadow: 0 6px 14px rgba(255,107,53,0.3);
    flex-shrink: 0;
}
.vf-icon.green {
    background: linear-gradient(135deg, #14a44d, #28ca42);
    box-shadow: 0 6px 14px rgba(20,164,77,0.3);
}
.video-float-1 { top: -22px; left: -30px; animation-delay: 0s; }
.video-float-2 { bottom: -22px; right: -30px; animation-delay: -2s; }

@media (max-width: 720px) {
    .video-frame { animation: none; }
    .video-float { padding: 8px 12px; }
    .video-float strong { font-size: 13px; }
    .video-float small { font-size: 10px; }
    .vf-icon { width: 30px; height: 30px; font-size: 12px; }
    .video-float-1 { top: -14px; left: 5px; }
    .video-float-2 { bottom: -14px; right: 5px; }
    .video-url { font-size: 10px; padding: 4px 10px; }
}

/* ===========================================
   GOOGLE-STYLE TESTIMONIAL CARDS (Auto Slide)
   =========================================== */
.testi-marquee {
    position: relative;
    overflow: hidden;
    width: 100%;
    padding: 20px 0;
    -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 6%, #000 94%, transparent 100%);
            mask-image: linear-gradient(90deg, transparent 0, #000 6%, #000 94%, transparent 100%);
}
.testi-track {
    display: flex;
    gap: 24px;
    width: max-content;
    animation: testiSlide 50s linear infinite;
}
.testi-marquee:hover .testi-track {
    animation-play-state: paused;
}
@keyframes testiSlide {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

.google-card {
    flex: 0 0 340px;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 22px;
    box-shadow: 0 4px 14px rgba(20,20,30,0.05);
    display: flex;
    flex-direction: column;
    transition: all .35s var(--ease);
}
.google-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(255,107,53,0.12), 0 6px 18px rgba(0,0,0,0.06);
    border-color: var(--accent);
}
.gc-head {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 14px;
}
.gc-user {
    display: flex;
    align-items: center;
    gap: 12px;
}
.gc-avatar {
    width: 44px; height: 44px;
    border-radius: 50%;
    color: #fff;
    display: grid;
    place-items: center;
    font-weight: 700;
    font-size: 15px;
    letter-spacing: 0.5px;
    flex-shrink: 0;
}
.gc-user strong {
    display: block;
    font-size: 15px;
    font-weight: 700;
    color: var(--text);
    line-height: 1.2;
}
.gc-user small {
    display: block;
    font-size: 12px;
    color: var(--text-muted);
    margin-top: 2px;
}
.gc-google {
    display: grid;
    place-items: center;
    flex-shrink: 0;
}
.gc-stars {
    display: flex;
    align-items: center;
    gap: 3px;
    margin-bottom: 12px;
}
.gc-stars i.fa-star {
    color: #fbbc04;
    font-size: 15px;
}
.gc-verified {
    margin-left: 6px;
    color: #1a73e8;
    font-size: 14px;
    display: inline-flex;
}
.gc-text {
    font-size: 14px;
    color: #3c4043;
    line-height: 1.6;
    margin-bottom: 14px;
    min-height: 88px;
}
@media (max-width: 720px) {
    .google-card { flex: 0 0 290px; padding: 18px; }
    .testi-track { animation-duration: 42s; gap: 18px; }
}

/* ===========================================
   CLIENT LOGOS SLIDER (Marquee)
   =========================================== */
.clients-slider {
    padding: 70px 0 80px;
    background: var(--bg-soft);
    overflow: hidden;
    position: relative;
}
.clients-title {
    text-align: center;
    font-size: 22px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 40px;
    letter-spacing: -0.3px;
}

.marquee {
    position: relative;
    overflow: hidden;
    width: 100%;
    -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 10%, #000 90%, transparent 100%);
            mask-image: linear-gradient(90deg, transparent 0, #000 10%, #000 90%, transparent 100%);
}
.marquee-track {
    display: flex;
    gap: 40px;
    width: max-content;
    animation: marqueeSlide 35s linear infinite;
}
.marquee:hover .marquee-track {
    animation-play-state: paused;
}
@keyframes marqueeSlide {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

.client-logo {
    flex: 0 0 auto;
    width: 180px;
    height: 100px;
    background: #fff;
    border-radius: 14px;
    border: 1px solid var(--border);
    display: grid;
    place-items: center;
    padding: 16px 20px;
    box-shadow: var(--shadow-sm);
    transition: all .35s var(--ease);
    overflow: hidden;
}
.client-logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    filter: grayscale(30%);
    opacity: 0.85;
    transition: all .35s var(--ease);
}
.client-logo:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 30px rgba(255,107,53,0.15);
    border-color: var(--accent);
}
.client-logo:hover img {
    filter: grayscale(0%);
    opacity: 1;
}

@media (max-width: 720px) {
    .client-logo { width: 140px; height: 80px; padding: 12px; }
    .marquee-track { gap: 24px; animation-duration: 28s; }
    .clients-title { font-size: 18px; margin-bottom: 28px; }
    .clients-slider { padding: 50px 0 60px; }
}

/* ===========================================
   CONTACT SECTION
   =========================================== */
.contact-section {
    background: linear-gradient(180deg, #fff 0%, #fff7f0 100%);
    position: relative;
    overflow: hidden;
}
.contact-wrap {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 40px;
    align-items: stretch;
}
.contact-info,
.contact-form {
    background: #fff;
    border-radius: 20px;
    padding: 40px;
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
}
.contact-info h3,
.contact-form h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 8px;
    letter-spacing: -0.3px;
}
.info-lead,
.form-lead {
    font-size: 15px;
    color: var(--text-muted);
    margin-bottom: 28px;
    line-height: 1.55;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px;
    border-radius: 14px;
    background: var(--bg-soft);
    margin-bottom: 12px;
    transition: all .3s var(--ease);
    border: 1px solid transparent;
}
.info-item:hover {
    background: #fff;
    border-color: var(--accent);
    transform: translateX(4px);
    box-shadow: 0 8px 20px rgba(255,107,53,0.12);
}
.info-icon {
    width: 46px; height: 46px;
    flex-shrink: 0;
    border-radius: 12px;
    background: var(--gradient);
    color: #fff;
    display: grid;
    place-items: center;
    font-size: 18px;
    box-shadow: 0 6px 14px rgba(255,107,53,0.3);
}
.info-icon.wa-bg {
    background: #25d366;
    box-shadow: 0 6px 14px rgba(37,211,102,0.3);
}
.info-item small {
    display: block;
    font-size: 12px;
    color: var(--text-muted);
    font-weight: 500;
}
.info-item strong {
    display: block;
    font-size: 15px;
    color: var(--text);
    font-weight: 700;
}
.info-item.wa strong { color: #25d366; }

.info-social {
    margin-top: 28px;
    padding-top: 22px;
    border-top: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
}
.info-social > span {
    font-size: 14px;
    color: var(--text-muted);
    font-weight: 600;
}
.info-social > div { display: flex; gap: 10px; }
.info-social a {
    width: 36px; height: 36px;
    border-radius: 10px;
    background: var(--bg-soft);
    display: grid;
    place-items: center;
    color: var(--text-muted);
    transition: all .25s var(--ease);
}
.info-social a:hover {
    background: var(--gradient);
    color: #fff;
    transform: translateY(-3px);
}

/* Form */
.contact-form {
    position: relative;
    overflow: hidden;
}
.contact-form::before {
    content: "";
    position: absolute;
    top: -50%;
    right: -30%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, var(--accent-soft) 0%, transparent 70%);
    pointer-events: none;
    opacity: 0.7;
    animation: glowShift 8s ease-in-out infinite;
}
@keyframes glowShift {
    0%, 100% { transform: translate(0,0) scale(1); }
    50% { transform: translate(-30px, 30px) scale(1.15); }
}
.contact-form > * { position: relative; z-index: 1; }

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin-bottom: 14px;
}
.form-field {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 14px;
    position: relative;
    opacity: 0;
    transform: translateY(20px);
    animation: fieldSlideIn .6s var(--ease) forwards;
}
.contact-form.visible .form-field:nth-child(1) { animation-delay: .05s; }
.contact-form.visible .form-field:nth-child(2) { animation-delay: .12s; }
.contact-form.visible .form-field:nth-child(3) { animation-delay: .19s; }
.contact-form.visible .form-field:nth-child(4) { animation-delay: .26s; }
.contact-form.visible .form-field:nth-child(5) { animation-delay: .33s; }
.form-row .form-field:nth-child(2) { animation-delay: .1s; }

@keyframes fieldSlideIn {
    to { opacity: 1; transform: translateY(0); }
}

.form-field label {
    font-size: 13px;
    font-weight: 600;
    color: var(--text);
    transition: color .25s var(--ease);
}
.form-field:focus-within label {
    color: var(--accent);
    transform: translateX(4px);
}
.form-field label { transition: color .25s var(--ease), transform .25s var(--ease); }

.form-field input,
.form-field select,
.form-field textarea {
    width: 100%;
    padding: 13px 14px;
    border-radius: 10px;
    border: 1.5px solid var(--border);
    background: #fff;
    font-family: inherit;
    font-size: 14px;
    color: var(--text);
    transition: all .3s var(--ease);
    outline: none;
    resize: vertical;
    position: relative;
}
.form-field textarea { min-height: 110px; }

/* Animated bottom accent bar on focus */
.form-field::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 0;
    width: 0;
    height: 2px;
    background: var(--gradient);
    transition: all .4s var(--ease);
    border-radius: 2px;
    pointer-events: none;
}
.form-field:focus-within::after {
    width: 70%;
    left: 15%;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 4px var(--accent-soft);
    transform: translateY(-2px);
}
.form-field input:hover:not(:focus),
.form-field select:hover:not(:focus),
.form-field textarea:hover:not(:focus) {
    border-color: #d4d4d4;
}

/* Field with value — subtle filled state */
.form-field input:not(:placeholder-shown),
.form-field textarea:not(:placeholder-shown) {
    background: #fffaf5;
}

.form-field input.invalid,
.form-field select.invalid,
.form-field textarea.invalid {
    border-color: #ef4444;
    box-shadow: 0 0 0 4px rgba(239,68,68,0.1);
    animation: shake .4s var(--ease);
}
@keyframes shake {
    0%, 100% { transform: translateX(0); }
    20% { transform: translateX(-8px); }
    40% { transform: translateX(8px); }
    60% { transform: translateX(-6px); }
    80% { transform: translateX(6px); }
}

/* Submit button animations */
.form-submit {
    width: 100%;
    justify-content: center;
    margin-top: 10px;
    position: relative;
    overflow: hidden;
    animation: submitPulse 2.5s infinite;
}
@keyframes submitPulse {
    0%, 100% {
        box-shadow: 0 8px 20px rgba(255,107,53,0.35), 0 0 0 0 rgba(255,107,53,0.5);
    }
    50% {
        box-shadow: 0 8px 20px rgba(255,107,53,0.35), 0 0 0 14px rgba(255,107,53,0);
    }
}
.form-submit i:first-child {
    font-size: 18px;
    animation: waWiggle 2s ease-in-out infinite;
}
@keyframes waWiggle {
    0%, 100% { transform: rotate(0); }
    25% { transform: rotate(-10deg) scale(1.1); }
    75% { transform: rotate(10deg) scale(1.1); }
}
.form-submit i:last-child {
    transition: transform .3s var(--ease);
}
.form-submit:hover i:last-child {
    transform: translateX(6px);
}
.form-submit:active {
    transform: scale(0.97);
}

/* Ripple on click */
.form-submit.rippling::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(255,255,255,0.4);
    border-radius: 50%;
    transform: scale(0);
    animation: ripple .6s ease-out;
}
@keyframes ripple {
    from { transform: scale(0); opacity: 1; }
    to { transform: scale(2.5); opacity: 0; }
}

.form-note {
    font-size: 12px;
    color: var(--text-muted);
    text-align: center;
    margin-top: 12px;
    opacity: 0;
    animation: fieldSlideIn .6s var(--ease) .5s forwards;
}

.form-lead {
    animation: fieldSlideIn .6s var(--ease) both;
}

/* Contact info items animated entrance */
.contact-info .info-item {
    opacity: 0;
    transform: translateX(-20px);
    animation: infoSlideIn .6s var(--ease) forwards;
}
.contact-info.reveal.visible .info-item:nth-of-type(1) { animation-delay: .15s; }
.contact-info.reveal.visible .info-item:nth-of-type(2) { animation-delay: .25s; }
.contact-info.reveal.visible .info-item:nth-of-type(3) { animation-delay: .35s; }
@keyframes infoSlideIn {
    to { opacity: 1; transform: translateX(0); }
}
.info-item .info-icon {
    transition: all .4s var(--ease);
}
.info-item:hover .info-icon {
    transform: rotate(-8deg) scale(1.08);
}

.form-success {
    background: #10b981;
    color: #fff;
    padding: 14px 18px;
    border-radius: 12px;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    animation: slideDown .4s var(--ease);
}
@keyframes slideDown {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ===========================================
   FAQ SECTION
   =========================================== */
.faq-section {
    position: relative;
    background: linear-gradient(180deg, #fff7f0 0%, #fff 100%);
    overflow: hidden;
}
.faq-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
}
.faq-bg span {
    position: absolute;
    border-radius: 50%;
    background: var(--gradient);
    opacity: 0.06;
    filter: blur(60px);
    animation: float 14s ease-in-out infinite;
}
.faq-bg span:nth-child(1) { width: 260px; height: 260px; top: 10%; left: -60px; }
.faq-bg span:nth-child(2) { width: 200px; height: 200px; bottom: 15%; right: -50px; animation-delay: -5s; }

.faq-wrap {
    max-width: 860px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}
.faq-category {
    display: flex;
    justify-content: center;
    margin-bottom: 28px;
}
.faq-chip {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 18px;
    background: #fff;
    border: 1.5px solid var(--accent);
    color: var(--accent);
    border-radius: 50px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.3px;
    box-shadow: 0 6px 18px rgba(255,107,53,0.15);
}
.faq-chip i { font-size: 12px; }

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.faq-item {
    background: #fff;
    border: 1.5px solid var(--border);
    border-radius: 14px;
    overflow: hidden;
    transition: all .35s var(--ease);
    animation: faqFadeIn .6s var(--ease) both;
}
.faq-item:nth-child(1) { animation-delay: .05s; }
.faq-item:nth-child(2) { animation-delay: .15s; }
.faq-item:nth-child(3) { animation-delay: .25s; }
.faq-item:nth-child(4) { animation-delay: .35s; }

@keyframes faqFadeIn {
    from { opacity: 0; transform: translateY(16px); }
    to { opacity: 1; transform: translateY(0); }
}

.faq-item:hover {
    border-color: var(--accent);
    box-shadow: 0 10px 25px rgba(255,107,53,0.08);
    transform: translateY(-2px);
}

.faq-item.open {
    border-color: var(--accent);
    box-shadow: 0 18px 40px rgba(255,107,53,0.15);
    background: linear-gradient(160deg, #fff8f3 0%, #fff 100%);
}

.faq-q {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 22px 24px;
    background: transparent;
    text-align: left;
    cursor: pointer;
    transition: all .25s var(--ease);
}

.faq-num {
    font-size: 14px;
    font-weight: 900;
    color: var(--accent);
    flex-shrink: 0;
    letter-spacing: 1px;
    font-variant-numeric: tabular-nums;
}

.faq-qtext {
    flex: 1;
    font-size: 16px;
    font-weight: 700;
    color: var(--text);
    letter-spacing: -0.2px;
    line-height: 1.4;
}

.faq-toggle {
    width: 34px; height: 34px;
    border-radius: 50%;
    background: var(--accent-soft);
    color: var(--accent);
    display: grid;
    place-items: center;
    font-size: 13px;
    flex-shrink: 0;
    transition: all .35s var(--ease);
}
.faq-toggle i {
    transition: transform .4s var(--ease);
}
.faq-item.open .faq-toggle {
    background: var(--gradient);
    color: #fff;
    transform: rotate(0deg);
    box-shadow: 0 6px 16px rgba(255,107,53,0.35);
}
.faq-item.open .faq-toggle i {
    transform: rotate(135deg);
}

.faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height .45s var(--ease);
}
.faq-item.open .faq-a {
    max-height: 500px;
}
.faq-a-inner {
    padding: 0 24px 24px 68px;
    opacity: 0;
    transform: translateY(-6px);
    transition: opacity .4s var(--ease) .1s, transform .4s var(--ease) .1s;
}
.faq-item.open .faq-a-inner {
    opacity: 1;
    transform: translateY(0);
}
.faq-a-inner p {
    font-size: 15px;
    line-height: 1.65;
    color: var(--text-muted);
}
.faq-a-inner strong {
    color: var(--text);
    font-weight: 700;
}

/* Bottom "Still have questions" card */
.faq-cta {
    margin-top: 36px;
    background: #fff;
    border: 1.5px solid var(--border);
    border-radius: 16px;
    padding: 22px 26px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    box-shadow: var(--shadow-sm);
    flex-wrap: wrap;
}
.faq-cta strong {
    display: block;
    font-size: 16px;
    font-weight: 700;
    color: var(--text);
}
.faq-cta small {
    display: block;
    font-size: 13px;
    color: var(--text-muted);
    margin-top: 2px;
}

@media (max-width: 720px) {
    .faq-q { padding: 18px 16px; gap: 12px; }
    .faq-qtext { font-size: 15px; }
    .faq-a-inner { padding: 0 16px 20px 46px; }
    .faq-a-inner p { font-size: 14px; }
    .faq-num { font-size: 13px; }
    .faq-cta { flex-direction: column; text-align: center; }
}

/* ===========================================
   SCROLL REVEAL
   =========================================== */
.reveal {
    opacity: 0;
    transform: translateY(32px);
    transition: opacity .7s var(--ease), transform .7s var(--ease);
}
.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ===========================================
   RESPONSIVE — Tablet, Mobile, Small Mobile
   =========================================== */

/* ======= TABLET (≤ 980px) ======= */
@media (max-width: 980px) {
    .container { padding: 0 20px; }
    .section { padding: 80px 0; }

    .grid-3 { grid-template-columns: repeat(2, 1fr); }
    .grid-4 { grid-template-columns: repeat(2, 1fr); }

    /* Hero */
    .hero { padding: 130px 0 70px; }
    .hero-wrap { grid-template-columns: 1fr; gap: 50px; text-align: center; }
    .hero-left .pill,
    .hero-left .avatars-img,
    .hero-meta { justify-content: center; }
    .hero-meta { display: inline-flex; margin: 0 auto; }
    .hero-cta { justify-content: center; }
    .hero-sub { margin-left: auto; margin-right: auto; }
    .hero-mock { transform: none; }
    .float-wa { left: 0; bottom: 10px; }
    .float-ai { right: 0; top: 10px; }

    /* Trust */
    .trust-logos { justify-content: center; gap: 30px; }
    .trust-logo { flex: 0 1 160px; }

    /* Product preview */
    .preview-wrap { grid-template-columns: 1fr; gap: 60px; text-align: center; }
    .preview-left .check-list { display: inline-block; text-align: left; }
    .preview-stage { margin-right: 0; max-width: 720px; margin-left: auto; margin-right: auto; }
    .preview-frame { transform: none; animation: none; }
    .preview-frame:hover { transform: translateY(-8px); }
    .preview-float-1 { top: -14px; left: 10px; }
    .preview-float-2 { top: 35%; right: -15px; }
    .preview-float-3 { bottom: -14px; left: 20%; }

    /* WhatsApp showcase */
    .wa-wrap { grid-template-columns: 1fr; gap: 60px; text-align: center; }
    .wa-cta { justify-content: center; }
    .wa-trust { justify-content: center; }
    .wa-desc { margin-left: auto; margin-right: auto; }
    .phone-stage { min-height: 640px; max-width: 420px; margin: 0 auto; }

    /* Steps */
    .steps { flex-direction: column; gap: 20px; }
    .step-line { width: 2px; height: 30px; align-self: center; }
    .step-line::after { transform: rotate(135deg); right: -4px; bottom: -4px; top: auto; }

    /* Pricing */
    .pricing-grid { grid-template-columns: repeat(2, 1fr); }
    .price-card.popular { transform: none; }

    /* Contact */
    .contact-wrap { grid-template-columns: 1fr; gap: 24px; }

    /* Video */
    .video-stage { max-width: 720px; }
    .video-float-1 { top: -14px; left: 0; }
    .video-float-2 { bottom: -14px; right: 0; }

    /* Footer */
    .footer-wrap { grid-template-columns: 1fr; gap: 40px; }
}

/* ======= MOBILE (≤ 720px) ======= */
@media (max-width: 720px) {
    body { font-size: 15px; }
    .container { padding: 0 18px; }
    .section { padding: 60px 0; }
    .section-head { margin-bottom: 40px; }
    .section-head h2 { font-size: clamp(24px, 6vw, 32px); }
    .section-head p { font-size: 15px; }

    /* Navbar */
    .navbar > .nav-wrap { padding: 10px 0; }
    .nav-links {
        position: fixed;
        top: 100px;
        right: 14px;
        background: #fff;
        flex-direction: column;
        align-items: flex-start;
        padding: 20px;
        border-radius: var(--radius);
        box-shadow: var(--shadow-lg);
        border: 1px solid var(--border);
        gap: 14px;
        transform: translateX(120%);
        transition: transform .35s var(--ease);
        min-width: 200px;
        z-index: 99;
    }
    .nav-links.open { transform: translateX(0); }
    .menu-toggle { display: block; }
    .logo-full-img { height: 42px; }
    .nav-cta .btn { padding: 10px 16px; font-size: 13px; }

    /* Hero */
    .hero { padding: 110px 0 60px; }
    .hero-title { font-size: clamp(30px, 8vw, 44px); line-height: 1.1; }
    .hero-sub { font-size: 16px; }
    .hero-mock { box-shadow: 0 15px 30px rgba(0,0,0,0.08); }
    .mock-body { min-height: auto; }
    .mock-stats { grid-template-columns: repeat(3, 1fr); gap: 6px; }
    .stat-card { padding: 8px; }
    .stat-value { font-size: 14px; }
    .stat-label { font-size: 9px; }
    .stat-delta { font-size: 9px; }
    .float-wa, .float-ai { padding: 8px 12px; }
    .float-wa strong, .float-ai strong { font-size: 12px; }
    .float-ai small { font-size: 10px; }
    .avatars-img span { width: 32px; height: 32px; margin-left: -10px; }

    /* Grid collapse */
    .grid-3 { grid-template-columns: 1fr; }
    .grid-4 { grid-template-columns: 1fr; }

    /* Trust bar */
    .trust { padding: 40px 0; }
    .trust-title { font-size: 12px; margin-bottom: 20px; }
    .trust-logos { gap: 24px; }
    .trust-logo { flex: 0 1 140px; padding: 6px; gap: 10px; }
    .trust-logo svg { height: 34px; }
    .trust-stars { font-size: 12px; }
    .trust-rating small { font-size: 11px; }

    /* Features */
    .feature-card { padding: 24px 20px; }
    .feature-card h3 { font-size: 17px; }
    .feat-icon { width: 48px; height: 48px; font-size: 19px; }

    /* Preview */
    .preview-left h2 { font-size: clamp(24px, 6vw, 32px); }
    .preview-float { padding: 8px 12px; gap: 8px; }
    .preview-float strong { font-size: 13px; }
    .preview-float small { font-size: 10px; }
    .pf-icon { width: 32px; height: 32px; font-size: 13px; }
    .preview-float-1 { top: -10px; left: 0; }
    .preview-float-2 { top: 40%; right: -5px; }
    .preview-float-3 { bottom: -10px; left: 5%; }
    .frame-url { font-size: 10px; padding: 4px 10px; max-width: 75%; }

    /* WhatsApp showcase */
    .wa-showcase { padding: 60px 0; }
    .wa-title { font-size: clamp(28px, 7vw, 40px); }
    .wa-desc { font-size: 15px; }
    .phone-stage { min-height: 580px; max-width: 340px; }
    .phone { width: 280px; height: 560px; margin: 0 auto; }
    .stat-float { padding: 8px 12px; gap: 8px; }
    .stat-float strong { font-size: 13px; }
    .stat-float small { font-size: 10px; }
    .stat-float-icon { width: 34px; height: 34px; font-size: 14px; }
    .stat-msg { top: 2%; left: -10px; }
    .stat-conv { top: 35%; right: -10px; }
    .stat-ai { bottom: 8%; right: -5px; }
    .wa-float-btn { width: 48px; height: 48px; font-size: 22px; bottom: 0; right: 0; }

    /* Steps */
    .step { padding: 28px 22px; }
    .step-icon { width: 60px; height: 60px; font-size: 22px; }

    /* Benefits */
    .benefit-card { padding: 28px 22px; }

    /* Pricing */
    .pricing-grid { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }
    .price-card { padding: 28px 22px; }
    .amount { font-size: 38px; }
    .billing-toggle { flex-wrap: wrap; justify-content: center; gap: 10px; }

    /* Video */
    .video-stage { max-width: 100%; }
    .video-play { width: 72px; height: 72px; }
    .play-icon { font-size: 24px; }
    .video-caption { font-size: 12px; padding: 8px 14px; bottom: 14px; }
    .video-url { font-size: 10px; padding: 4px 10px; max-width: 80%; }

    /* Testimonials */
    .google-card { flex: 0 0 290px; padding: 18px; }
    .gc-user strong { font-size: 14px; }
    .gc-text { font-size: 13px; min-height: 80px; }

    /* Contact */
    .contact-info, .contact-form { padding: 26px 20px; }
    .info-item { padding: 12px; }
    .info-icon { width: 40px; height: 40px; font-size: 15px; }
    .form-row { grid-template-columns: 1fr; gap: 0; }

    /* FAQ */
    .faq-chip { font-size: 12px; padding: 6px 14px; }
    .faq-q { padding: 16px 14px; gap: 10px; }
    .faq-qtext { font-size: 14.5px; }
    .faq-toggle { width: 30px; height: 30px; font-size: 12px; }
    .faq-a-inner { padding: 0 14px 18px 44px; }
    .faq-a-inner p { font-size: 14px; }
    .faq-num { font-size: 12px; }
    .faq-cta { flex-direction: column; text-align: center; padding: 20px; }

    /* CTA banner */
    .cta-banner { padding: 60px 0; }
    .cta-wrap { padding: 44px 22px; border-radius: 20px; }
    .cta-wrap h2 { font-size: clamp(24px, 7vw, 34px); }
    .cta-wrap p { font-size: 16px; }

    /* Footer */
    .footer { padding: 50px 0 24px; }
    .foot-cols { grid-template-columns: repeat(2, 1fr); gap: 24px; }
    .foot-col h4 { font-size: 14px; margin-bottom: 12px; }
    .foot-col a { font-size: 13px; }
    .foot-bottom { flex-direction: column; text-align: center; gap: 8px; font-size: 12px; }
}

/* ======= SMALL MOBILE (≤ 480px) ======= */
@media (max-width: 480px) {
    .container { padding: 0 16px; }
    .section { padding: 50px 0; }

    /* Navbar logo smaller */
    .logo-full-img { height: 36px; }
    .nav-cta .btn { padding: 9px 13px; font-size: 12px; }
    .nav-cta .btn i { font-size: 11px; }

    /* Hero */
    .hero { padding: 100px 0 40px; }
    .hero-cta { flex-direction: column; align-items: stretch; width: 100%; }
    .hero-cta .btn { justify-content: center; }
    .hero-meta { flex-direction: column; gap: 10px; }
    .meta-text { align-items: center; text-align: center; }
    .mock-body { grid-template-columns: 1fr; }
    .mock-side { display: none; }
    .hero-mock { transform: none; }
    .avatars-img span { width: 28px; height: 28px; margin-left: -8px; }

    /* Buttons stack globally */
    .btn { width: 100%; justify-content: center; }
    .nav-cta .btn { width: auto; }
    .btn-price { width: 100%; }
    .form-submit { width: 100%; }

    /* WhatsApp showcase */
    .wa-cta { flex-direction: column; align-items: stretch; width: 100%; }
    .wa-cta .btn { width: 100%; }
    .phone { width: 250px; height: 500px; }
    .phone-stage { min-height: 540px; max-width: 300px; }
    .stat-float { padding: 6px 10px; }
    .stat-float strong { font-size: 12px; }
    .stat-float small { font-size: 9px; }
    .stat-float-icon { width: 28px; height: 28px; font-size: 12px; }
    .chat-body { padding: 10px 8px; }
    .msg { font-size: 11px; padding: 6px 9px 16px; }

    /* Pricing */
    .grid-4 { grid-template-columns: 1fr; }
    .pricing-grid { grid-template-columns: 1fr; max-width: 100%; }
    .amount { font-size: 34px; }
    .price-card { padding: 26px 20px; }
    .billing-label { font-size: 13px; }

    /* Contact */
    .contact-info, .contact-form { padding: 22px 16px; }
    .info-item { padding: 10px; gap: 10px; }
    .info-icon { width: 36px; height: 36px; font-size: 14px; }
    .info-item strong { font-size: 14px; }
    .info-item small { font-size: 11px; }

    /* Video */
    .video-play { width: 60px; height: 60px; }
    .play-icon { font-size: 20px; }
    .play-ring { inset: -5px; }
    .video-caption { font-size: 11px; padding: 6px 12px; }

    /* Testimonials */
    .google-card { flex: 0 0 260px; padding: 16px; }
    .gc-avatar { width: 38px; height: 38px; font-size: 13px; }
    .gc-user strong { font-size: 13px; }
    .gc-user small { font-size: 11px; }
    .gc-text { font-size: 13px; }

    /* Client marquee */
    .client-logo { width: 120px; height: 70px; padding: 10px; }
    .marquee-track { gap: 16px; }
    .clients-title { font-size: 16px; }

    /* Footer */
    .foot-cols { grid-template-columns: 1fr; gap: 20px; text-align: center; }
    .socials { justify-content: center; }
    .foot-brand p { margin-left: auto; margin-right: auto; }

    /* Hide subtle parallax shapes on small screens for perf */
    .shape, .wa-bg-shapes span, .faq-bg span, .video-bg span { opacity: 0.04; }
}

/* ======= TINY DEVICES (≤ 360px) ======= */
@media (max-width: 360px) {
    .hero-title { font-size: 28px; }
    .section-head h2 { font-size: 22px; }
    .wa-title { font-size: 26px; }
    .phone { width: 230px; height: 460px; }
    .phone-stage { min-height: 500px; max-width: 260px; }
    .stat-float strong { font-size: 11px; }
    .gc-text { font-size: 12px; }
}
