/* ============================================================================
   MUHGPT — official site (dark premium)  ·  styles.css v2
   ========================================================================== */

:root {
    --bg: #07070d;
    --bg-2: #0b0b15;
    --surface: rgba(255, 255, 255, 0.035);
    --surface-2: rgba(255, 255, 255, 0.055);
    --surface-hover: rgba(255, 255, 255, 0.08);
    --border: rgba(255, 255, 255, 0.09);
    --border-2: rgba(255, 255, 255, 0.15);
    --text: #ECECF5;
    --muted: #9a9ab4;
    --faint: #6b6b84;
    --accent: #7c5cff;
    --accent-2: #3d7bff;
    --accent-3: #21d4fd;
    --red: #e0426a;
    --green: #16d196;
    --grad: linear-gradient(135deg, #8b6bff 0%, #4f7cff 55%, #21d4fd 110%);
    --grad-soft: linear-gradient(135deg, rgba(124, 92, 255, .18), rgba(61, 123, 255, .12));
    --radius: 16px;
    --radius-lg: 22px;
    --radius-sm: 10px;
    --shadow: 0 20px 60px -20px rgba(0, 0, 0, .7);
    --glow: 0 0 70px rgba(124, 92, 255, .30);
    --display: 'Outfit', system-ui, sans-serif;
    --body: 'Inter', system-ui, sans-serif;
    --mono: 'Fira Code', ui-monospace, monospace;
    --ease: cubic-bezier(.22, .61, .36, 1);
    --maxw: 1200px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; text-size-adjust: 100%; }

body {
    font-family: var(--body);
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
    -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
h1, h2, h3, h4 { font-family: var(--display); font-weight: 800; line-height: 1.1; letter-spacing: -0.02em; }

.wrap { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
.grad-text { background: var(--grad); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }

::selection { background: rgba(124, 92, 255, .35); color: #fff; }
::-webkit-scrollbar { width: 11px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: #25253a; border-radius: 6px; border: 3px solid var(--bg); }
::-webkit-scrollbar-thumb:hover { background: var(--accent); }

/* ── Background FX ───────────────────────────────────────────────────────── */
.ambient {
    position: fixed; inset: 0; z-index: -3; pointer-events: none;
    background:
        radial-gradient(60% 50% at 15% 0%, rgba(124, 92, 255, .20), transparent 70%),
        radial-gradient(50% 50% at 95% 10%, rgba(33, 212, 253, .14), transparent 70%),
        radial-gradient(60% 60% at 50% 110%, rgba(61, 123, 255, .14), transparent 70%);
}
.grid-bg {
    position: fixed; inset: 0; z-index: -2; pointer-events: none; opacity: .5;
    background-image:
        linear-gradient(rgba(255, 255, 255, .025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, .025) 1px, transparent 1px);
    background-size: 54px 54px;
    -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 0%, #000 30%, transparent 80%);
    mask-image: radial-gradient(ellipse 80% 60% at 50% 0%, #000 30%, transparent 80%);
}
.particles { position: fixed; inset: 0; z-index: -1; pointer-events: none; overflow: hidden; }
.particle {
    position: absolute; bottom: -10px; width: 3px; height: 3px; border-radius: 50%;
    background: var(--accent); box-shadow: 0 0 8px var(--accent);
    animation: rise linear infinite;
}
@keyframes rise {
    0% { transform: translateY(0) scale(1); opacity: 0; }
    10% { opacity: .8; }
    100% { transform: translateY(-105vh) scale(.4); opacity: 0; }
}

/* ── Buttons ─────────────────────────────────────────────────────────────── */
.btn {
    display: inline-flex; align-items: center; justify-content: center; gap: 9px;
    font-family: var(--display); font-weight: 600; font-size: .95rem;
    padding: 11px 20px; border-radius: 999px; border: 1px solid transparent;
    cursor: pointer; transition: transform .2s var(--ease), box-shadow .2s var(--ease), background .2s, border-color .2s;
    white-space: nowrap;
}
.btn-sm { padding: 8px 15px; font-size: .85rem; }
.btn-lg { padding: 15px 28px; font-size: 1.02rem; }
.btn-primary { background: var(--grad); color: #fff; box-shadow: 0 8px 30px -8px rgba(124, 92, 255, .65); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 14px 40px -8px rgba(124, 92, 255, .8); }
.btn-ghost { background: var(--surface-2); color: var(--text); border-color: var(--border-2); -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px); }
.btn-ghost:hover { background: var(--surface-hover); border-color: var(--accent); transform: translateY(-2px); }
.w-full { width: 100%; }

/* ── Nav ─────────────────────────────────────────────────────────────────── */
.navbar { position: fixed; top: 0; left: 0; right: 0; z-index: 100; transition: background .3s, border-color .3s, padding .3s; padding: 14px 0; border-bottom: 1px solid transparent; }
.navbar.scrolled { background: rgba(8, 8, 15, .72); -webkit-backdrop-filter: blur(18px); backdrop-filter: blur(18px); border-bottom-color: var(--border); padding: 9px 0; }
.nav-container { max-width: var(--maxw); margin: 0 auto; padding: 0 24px; display: flex; align-items: center; gap: 18px; position: relative; }
.logo { display: inline-flex; align-items: center; gap: 10px; font-family: var(--display); font-weight: 800; font-size: 1.2rem; letter-spacing: -.02em; }
.logo-mark { width: 32px; height: 32px; border-radius: 9px; display: grid; place-items: center; background: var(--grad); color: #fff; font-size: 15px; box-shadow: 0 4px 16px -4px rgba(124, 92, 255, .7); }
.nav-links { display: flex; gap: 4px; list-style: none; margin-left: 22px; }
.nav-links a { padding: 8px 14px; border-radius: 9px; color: var(--muted); font-weight: 500; font-size: .92rem; transition: color .2s, background .2s; }
.nav-links a:hover { color: var(--text); background: var(--surface-2); }
.nav-buttons { display: flex; align-items: center; gap: 10px; margin-left: auto; }
.mobile-menu-btn { display: none; margin-left: auto; width: 42px; height: 42px; border-radius: 10px; border: 1px solid var(--border-2); background: var(--surface-2); color: var(--text); font-size: 18px; cursor: pointer; }

/* ── Section primitives ──────────────────────────────────────────────────── */
section { padding: 96px 0; position: relative; }
.sec-head { text-align: center; max-width: 680px; margin: 0 auto 56px; }
.sec-label { display: inline-block; font-family: var(--display); font-weight: 600; font-size: .78rem; letter-spacing: .14em; text-transform: uppercase; color: var(--accent-3); padding: 6px 14px; border: 1px solid var(--border-2); border-radius: 999px; background: var(--grad-soft); margin-bottom: 18px; }
.sec-head h2 { font-size: clamp(1.9rem, 4.4vw, 3rem); margin-bottom: 14px; }
.sec-head p { color: var(--muted); font-size: 1.05rem; }

/* ── Hero ────────────────────────────────────────────────────────────────── */
.hero { padding: 150px 0 60px; }
.hero-inner { display: grid; grid-template-columns: 1.05fr 1.15fr; gap: 56px; align-items: center; }
.hero-badge { display: inline-flex; align-items: center; gap: 8px; font-size: .85rem; font-weight: 500; color: var(--muted); padding: 7px 15px; border: 1px solid var(--border-2); border-radius: 999px; background: var(--surface); margin-bottom: 24px; }
.hero-badge .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--green); box-shadow: 0 0 10px var(--green); animation: pulse 2s infinite; }
@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: .4; } }
.hero-copy h1 { font-size: clamp(2.4rem, 5.4vw, 4rem); font-weight: 900; margin-bottom: 20px; }
.hero-copy .sub { font-size: 1.12rem; color: var(--muted); max-width: 560px; margin-bottom: 30px; }
.hero-buttons { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 22px; }
.hero-meta { display: flex; flex-wrap: wrap; gap: 18px; color: var(--faint); font-size: .88rem; }
.hero-meta i { color: var(--green); margin-right: 5px; }

.hero-visual { position: relative; }
.floaty { animation: floaty 7s ease-in-out infinite; }
@keyframes floaty { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-14px); } }
.float-chip { position: absolute; display: inline-flex; align-items: center; gap: 8px; font-size: .82rem; font-weight: 600; font-family: var(--display); padding: 9px 14px; border-radius: 12px; background: rgba(15, 15, 26, .82); -webkit-backdrop-filter: blur(10px); backdrop-filter: blur(10px); border: 1px solid var(--border-2); box-shadow: var(--shadow); }
.float-chip i { color: var(--accent-3); }
.chip-1 { top: 8%; left: -18px; animation: floaty 6s ease-in-out infinite; }
.chip-2 { bottom: 10%; right: -14px; animation: floaty 8s ease-in-out infinite .5s; }

/* ── Browser frame ───────────────────────────────────────────────────────── */
.browser-frame { border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--border-2); background: #0e0e18; box-shadow: var(--shadow), var(--glow); }
.bf-bar { display: flex; align-items: center; gap: 7px; padding: 11px 14px; background: #14141f; border-bottom: 1px solid var(--border); }
.bf-dot { width: 11px; height: 11px; border-radius: 50%; flex: 0 0 auto; }
.bf-dot.r { background: #ff5f57; } .bf-dot.y { background: #febc2e; } .bf-dot.g { background: #28c840; }
.bf-url { margin-left: 12px; font-size: .76rem; color: var(--faint); font-family: var(--mono); display: inline-flex; align-items: center; gap: 6px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.browser-frame img { width: 100%; height: auto; display: block; }

/* ── Trust strip ─────────────────────────────────────────────────────────── */
.trust-strip { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 18px; margin-top: 70px; padding: 26px 30px; border: 1px solid var(--border); border-radius: var(--radius-lg); background: var(--surface); }
.trust-item { display: flex; flex-direction: column; align-items: center; flex: 1; min-width: 110px; }
.trust-item strong { font-family: var(--display); font-size: 1.7rem; font-weight: 800; background: var(--grad); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.trust-item span { color: var(--muted); font-size: .82rem; margin-top: 2px; }

/* ── Tools showcase (alternating rows) ───────────────────────────────────── */
.tool-row { display: grid; grid-template-columns: 1fr 1.12fr; gap: 56px; align-items: center; margin-bottom: 90px; }
.tool-row:last-child { margin-bottom: 0; }
.tool-row.reverse .tool-text { order: 2; }
.tool-row.reverse .tool-visual { order: 1; }
.tool-text, .tool-visual { min-width: 0; }
.tool-ico { width: 54px; height: 54px; border-radius: 15px; display: grid; place-items: center; font-size: 23px; color: #fff; background: var(--grad); box-shadow: 0 10px 28px -10px rgba(124, 92, 255, .7); margin-bottom: 18px; }
.tool-ico.red { background: linear-gradient(135deg, #ff4d6d, #c81e4a); box-shadow: 0 10px 28px -10px rgba(224, 66, 106, .7); }
.tool-ico.violet { background: linear-gradient(135deg, #a855f7, #7c3aed); }
.tool-ico.green { background: linear-gradient(135deg, #2bd97e, #10a85f); box-shadow: 0 10px 28px -10px rgba(22, 209, 150, .6); }
.tool-ico.blue { background: linear-gradient(135deg, #3d7bff, #1e4fd0); }
.tool-text h3 { font-size: clamp(1.6rem, 3.2vw, 2.1rem); margin-bottom: 12px; }
.tool-text > p { color: var(--muted); font-size: 1.04rem; margin-bottom: 18px; }
.ticks { list-style: none; display: flex; flex-direction: column; gap: 10px; margin-bottom: 24px; }
.ticks li { display: flex; align-items: center; gap: 11px; color: var(--text); font-size: .96rem; }
.ticks i { color: var(--green); font-size: .8rem; width: 20px; height: 20px; display: grid; place-items: center; background: rgba(22, 209, 150, .12); border-radius: 50%; flex: 0 0 auto; }
.tool-link { display: inline-flex; align-items: center; gap: 8px; font-family: var(--display); font-weight: 600; color: var(--accent-3); transition: gap .2s, color .2s; }
.tool-link:hover { gap: 13px; color: #fff; }
.pill { display: inline-flex; align-items: center; gap: 7px; font-family: var(--display); font-weight: 700; font-size: .72rem; letter-spacing: .05em; text-transform: uppercase; color: #ffd479; padding: 5px 12px; border-radius: 999px; background: rgba(255, 180, 60, .12); border: 1px solid rgba(255, 180, 60, .3); margin-bottom: 14px; }

/* ── Pro Agent — 3-step showcase ── */
.agent-showcase { margin-bottom: 90px; }
.agent-intro { max-width: 720px; margin: 0 auto 42px; text-align: center; display: flex; flex-direction: column; align-items: center; }
.agent-intro .tool-ico { margin-bottom: 18px; }
.agent-intro h3 { font-size: clamp(1.7rem, 3.4vw, 2.3rem); margin-bottom: 12px; }
.agent-intro p { color: var(--muted); font-size: 1.05rem; margin-bottom: 22px; }
.agent-steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.agent-step { margin: 0; min-width: 0; }
.agent-step .browser-frame { box-shadow: var(--shadow); border-color: var(--border); transition: transform .25s var(--ease), border-color .25s; }
.agent-step .browser-frame:hover { transform: translateY(-4px); border-color: var(--border-2); }
.agent-step figcaption { margin-top: 14px; display: flex; align-items: center; justify-content: center; gap: 9px; font-family: var(--display); font-weight: 600; font-size: .94rem; color: var(--text); }
.step-n { width: 26px; height: 26px; border-radius: 50%; display: grid; place-items: center; background: var(--grad); color: #fff; font-size: .82rem; flex: 0 0 auto; }

/* ── Mocks ───────────────────────────────────────────────────────────────── */
.mock { aspect-ratio: 16 / 10; padding: 16px; background: radial-gradient(120% 120% at 0% 0%, #14141f, #0b0b13); }
.mock-gallery { display: grid; grid-template-columns: repeat(3, 1fr); grid-auto-rows: 1fr; gap: 10px; }
.mock-gallery .art { border-radius: 10px; min-height: 60px; position: relative; overflow: hidden; }
.art::after { content: ''; position: absolute; inset: 0; background: linear-gradient(transparent, rgba(0, 0, 0, .25)); }
.art.a1 { background: linear-gradient(135deg, #7c5cff, #21d4fd); }
.art.a2 { background: linear-gradient(135deg, #ff6a88, #ff99ac); }
.art.a3 { background: linear-gradient(135deg, #f7971e, #ffd200); }
.art.a4 { background: linear-gradient(135deg, #11998e, #38ef7d); }
.art.a5 { background: linear-gradient(135deg, #ee0979, #ff6a00); }
.art.a6 { background: linear-gradient(135deg, #4f7cff, #8b6bff); }
.mock-prompt { grid-column: 1 / -1; display: flex; align-items: center; gap: 10px; font-size: .82rem; color: var(--muted); padding: 11px 14px; border-radius: 10px; background: rgba(0, 0, 0, .35); border: 1px solid var(--border); font-family: var(--mono); }
.mock-prompt i { color: var(--accent-3); }
.mp-btn { margin-left: auto; font-family: var(--display); font-weight: 600; font-size: .76rem; color: #fff; background: var(--grad); padding: 6px 13px; border-radius: 8px; flex: 0 0 auto; }

.mock-terminal { display: flex; flex-direction: column; gap: 9px; font-family: var(--mono); font-size: .82rem; padding: 22px; justify-content: center; }
.mock-terminal .ln { color: #c9c9e0; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.mock-terminal .c { color: var(--faint); }
.mock-terminal .k { color: var(--accent-3); }
.mock-terminal .s { color: #ffd479; }
.mock-terminal .ok { color: var(--green); }
.blink { animation: blink 1.4s steps(2, start) infinite; }
@keyframes blink { 50% { opacity: .35; } }

.mock-code { padding: 0; overflow: hidden; }
.mock-code pre { margin: 0; font-family: var(--mono); font-size: .8rem; line-height: 1.9; padding: 18px 8px; height: 100%; }
.mock-code .cl { display: block; padding: 0 14px; white-space: pre; }
.mock-code .ln-n { display: inline-block; width: 26px; color: #3c3c52; -webkit-user-select: none; user-select: none; }
.mock-code .kw { color: #c678dd; } .mock-code .fn { color: #61afef; } .mock-code .nm { color: #d19a66; } .mock-code .cm { color: #5c6370; font-style: italic; }

/* ── Features grid ───────────────────────────────────────────────────────── */
.features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.f-card { padding: 28px 24px; border-radius: var(--radius); border: 1px solid var(--border); background: var(--surface); transition: transform .25s var(--ease), border-color .25s, background .25s; }
.f-card:hover { transform: translateY(-5px); border-color: var(--border-2); background: var(--surface-2); }
.f-card .ico { width: 48px; height: 48px; border-radius: 13px; display: grid; place-items: center; font-size: 20px; color: var(--accent-3); background: var(--grad-soft); border: 1px solid var(--border-2); margin-bottom: 16px; }
.f-card h3 { font-size: 1.18rem; margin-bottom: 8px; }
.f-card p { color: var(--muted); font-size: .94rem; }

/* ── CTA band ────────────────────────────────────────────────────────────── */
.cta-band { padding: 40px 0; }
.cta-inner { display: flex; align-items: center; justify-content: space-between; gap: 30px; flex-wrap: wrap; padding: 48px; border-radius: var(--radius-lg); border: 1px solid var(--border-2); background: linear-gradient(120deg, rgba(124, 92, 255, .16), rgba(33, 212, 253, .08)); box-shadow: var(--glow); }
.cta-inner h2 { font-size: clamp(1.6rem, 3.4vw, 2.3rem); margin-bottom: 8px; }
.cta-inner p { color: var(--muted); }

/* ── Pricing ─────────────────────────────────────────────────────────────── */
.pricing-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px; align-items: stretch; }
.price-card { display: flex; flex-direction: column; padding: 26px 20px; border-radius: var(--radius); border: 1px solid var(--border); background: var(--surface); transition: transform .25s var(--ease), border-color .25s; position: relative; }
.price-card:hover { transform: translateY(-6px); border-color: var(--border-2); }
.price-card.featured { border-color: transparent; background: linear-gradient(var(--bg-2), var(--bg-2)) padding-box, var(--grad) border-box; border: 1.5px solid transparent; box-shadow: var(--glow); }
.feat-badge { position: absolute; top: -12px; left: 50%; transform: translateX(-50%); white-space: nowrap; font-family: var(--display); font-weight: 700; font-size: .72rem; color: #fff; background: var(--grad); padding: 5px 14px; border-radius: 999px; box-shadow: 0 6px 18px -6px rgba(124, 92, 255, .8); }
.p-dur { font-family: var(--display); font-weight: 600; color: var(--muted); font-size: .92rem; }
.p-price { font-family: var(--display); font-weight: 900; font-size: 2.4rem; margin: 4px 0; }
.p-price span { font-size: .9rem; font-weight: 600; color: var(--faint); }
.p-tag { font-size: .8rem; color: var(--accent-3); font-weight: 600; margin-bottom: 16px; }
.p-features { list-style: none; display: flex; flex-direction: column; gap: 10px; margin-bottom: 22px; flex: 1; }
.p-features li { display: flex; align-items: flex-start; gap: 9px; font-size: .88rem; color: var(--text); }
.p-features i { color: var(--green); font-size: .74rem; margin-top: 5px; flex: 0 0 auto; }

/* ── Contact ─────────────────────────────────────────────────────────────── */
.contact-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; max-width: 880px; margin: 0 auto; }
.contact-card { display: flex; flex-direction: column; align-items: center; text-align: center; gap: 6px; padding: 34px 22px; border-radius: var(--radius); border: 1px solid var(--border); background: var(--surface); transition: transform .25s var(--ease), border-color .25s, background .25s; }
.contact-card:hover { transform: translateY(-6px); background: var(--surface-2); }
.contact-card i { font-size: 30px; margin-bottom: 8px; }
.contact-card.telegram i { color: #29b6f6; } .contact-card.email i { color: var(--accent); } .contact-card.whatsapp i { color: #25d366; }
.contact-card.telegram:hover { border-color: #29b6f6; } .contact-card.email:hover { border-color: var(--accent); } .contact-card.whatsapp:hover { border-color: #25d366; }
.contact-card .label { font-family: var(--display); font-weight: 700; }
.contact-card .value { color: var(--muted); font-size: .9rem; }

/* ── Footer ──────────────────────────────────────────────────────────────── */
.site-footer { border-top: 1px solid var(--border); padding: 60px 0 30px; background: var(--bg-2); }
.footer-inner { display: grid; grid-template-columns: 1.4fr 2fr; gap: 40px; padding-bottom: 40px; }
.footer-brand .logo { margin-bottom: 14px; }
.footer-brand p { color: var(--muted); font-size: .92rem; max-width: 330px; }
.footer-links-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.footer-col h4 { font-size: .82rem; text-transform: uppercase; letter-spacing: .1em; color: var(--faint); margin-bottom: 14px; }
.footer-col a { display: block; color: var(--muted); font-size: .92rem; margin-bottom: 10px; transition: color .2s; }
.footer-col a:hover { color: var(--accent-3); }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; padding-top: 26px; border-top: 1px solid var(--border); color: var(--faint); font-size: .85rem; }
.footer-badges { display: flex; gap: 10px; flex-wrap: wrap; }
.badge-pill { display: inline-flex; align-items: center; gap: 7px; font-size: .76rem; color: var(--muted); padding: 6px 12px; border: 1px solid var(--border); border-radius: 999px; background: var(--surface); }
.badge-pill i { color: var(--green); }

/* ── Reveal animations ───────────────────────────────────────────────────── */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal-d1 { transition-delay: .1s; } .reveal-d2 { transition-delay: .2s; }
.reveal-scale { opacity: 0; transform: scale(.96) translateY(20px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.reveal-scale.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
    .reveal, .reveal-scale, .floaty, .particle, .blink { animation: none !important; transition: none !important; opacity: 1 !important; transform: none !important; }
}

/* ── Responsive ──────────────────────────────────────────────────────────── */
@media (max-width: 980px) {
    .hero-inner { grid-template-columns: 1fr; gap: 44px; }
    .hero-copy { text-align: center; }
    .hero-copy .sub { margin-left: auto; margin-right: auto; }
    .hero-buttons, .hero-meta { justify-content: center; }
    .tool-row { grid-template-columns: 1fr; gap: 28px; }
    .tool-row.reverse .tool-text, .tool-row.reverse .tool-visual { order: 0; }
    .features-grid { grid-template-columns: repeat(2, 1fr); }
    .pricing-grid { grid-template-columns: repeat(2, 1fr); }
    .price-card.featured { order: -1; }
    .footer-inner { grid-template-columns: 1fr; gap: 30px; }
}

@media (max-width: 760px) {
    .nav-links, .nav-buttons { display: none; }
    .nav-links.open {
        display: flex; flex-direction: column; position: absolute; top: 100%; left: 16px; right: 16px;
        margin: 10px 0 0; padding: 14px; gap: 4px; background: rgba(12, 12, 20, .96);
        -webkit-backdrop-filter: blur(18px); backdrop-filter: blur(18px);
        border: 1px solid var(--border-2); border-radius: 16px; box-shadow: var(--shadow);
    }
    .nav-links.open a { padding: 12px 14px; }
    .mobile-menu-btn { display: block; }
    section { padding: 70px 0; }
    .hero { padding: 120px 0 40px; }
    .trust-strip { margin-top: 50px; padding: 22px 18px; gap: 14px; }
    .trust-item { min-width: 40%; }
    .trust-item strong { font-size: 1.4rem; }
    .cta-inner { padding: 32px 22px; text-align: center; justify-content: center; }
    .float-chip { display: none; }
    .sec-head { margin-bottom: 40px; }
    .tool-row { margin-bottom: 64px; }
    .agent-steps { grid-template-columns: 1fr; gap: 26px; }
    .agent-showcase { margin-bottom: 64px; }
}

@media (max-width: 480px) {
    .wrap, .nav-container { padding: 0 16px; }
    .features-grid { grid-template-columns: 1fr; }
    .pricing-grid { grid-template-columns: 1fr; }
    .contact-grid { grid-template-columns: 1fr; }
    .hero-copy h1 { font-size: 2.1rem; }
    .footer-links-grid { grid-template-columns: 1fr 1fr; }
}
