/* ============================================================
   Mission Critical IT — stylesheet
   Light, clean, professional. Green accent ties to the brand.
   ============================================================ */
:root {
    --ink: #0f1b2a;          /* near-black slate (text + dark sections) */
    --ink-soft: #4a5867;     /* secondary text */
    --bg: #ffffff;
    --bg-soft: #f4f7f9;      /* alt section background */
    --line: #e3e9ee;         /* borders */
    --accent: #2f6f4e;       /* forest green (brand heritage) */
    --accent-dark: #245a3e;
    --accent-soft: #e8f1ec;
    --gold: #c4a574;         /* warm secondary accent */
    --shadow: 0 18px 40px rgba(15, 27, 42, 0.10);
    --radius: 14px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    font-family: 'Source Sans 3', system-ui, sans-serif;
    color: var(--ink);
    background: var(--bg);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
}
h1, h2, h3, h4 { font-family: 'Rajdhani', sans-serif; font-weight: 700; line-height: 1.12; letter-spacing: .3px; }
a { color: inherit; }
img { max-width: 100%; display: block; }
em { font-style: normal; color: var(--accent); font-weight: 600; }

.btn {
    display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
    font-family: 'Rajdhani', sans-serif; font-weight: 600; font-size: 1.05rem;
    letter-spacing: .5px; text-decoration: none; cursor: pointer;
    padding: .85rem 1.75rem; border-radius: 8px; border: 2px solid transparent;
    transition: transform .2s ease, box-shadow .2s ease, background .2s ease, color .2s ease;
}
.btn-primary { background: var(--accent); color: #fff; }
.btn-primary:hover { background: var(--accent-dark); transform: translateY(-2px); box-shadow: 0 10px 24px rgba(47,111,78,.35); }
.btn-ghost { border-color: rgba(255,255,255,.4); color: #fff; }
.btn-ghost:hover { border-color: #fff; background: rgba(255,255,255,.08); }
.btn-light { background: #fff; color: var(--accent-dark); }
.btn-light:hover { transform: translateY(-2px); box-shadow: 0 10px 24px rgba(0,0,0,.18); }
.btn-full { width: 100%; }

/* ---- Nav ---- */
nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
    background: rgba(255,255,255,.85); backdrop-filter: blur(12px);
    border-bottom: 1px solid transparent; transition: border-color .3s, box-shadow .3s;
}
nav.scrolled { border-bottom-color: var(--line); box-shadow: 0 4px 20px rgba(15,27,42,.06); }
.nav-container {
    max-width: 1200px; margin: 0 auto; padding: .9rem 1.5rem;
    display: flex; align-items: center; justify-content: space-between;
}
.logo { display: flex; align-items: center; gap: .65rem; text-decoration: none; color: var(--ink); }
.logo-icon { width: 58px; height: 58px; display: grid; place-items: center; }
.logo-icon img { width: 100%; height: 100%; object-fit: contain; }
.logo-text { font-family: 'Rajdhani', sans-serif; font-weight: 600; font-size: 1.25rem; letter-spacing: 1px; text-transform: uppercase; }
.logo-text strong { color: var(--accent); }
.nav-links { list-style: none; display: flex; align-items: center; gap: 2rem; }
.nav-links a { text-decoration: none; color: var(--ink-soft); font-weight: 600; font-size: .95rem; transition: color .2s; }
.nav-links a:hover { color: var(--accent); }
.nav-links .nav-cta { background: var(--accent); color: #fff; padding: .55rem 1.2rem; border-radius: 8px; }
.nav-links .nav-cta:hover { background: var(--accent-dark); color: #fff; }
.mobile-menu-btn { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 6px; }
.mobile-menu-btn span { width: 24px; height: 2px; background: var(--ink); border-radius: 2px; transition: .3s; }

/* ---- Line icons ---- */
.lic { width: 24px; height: 24px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; flex: none; }

/* ---- Hero ---- */
.hero {
    position: relative; overflow: hidden;
    background: linear-gradient(160deg, #0f1b2a 0%, #14283a 55%, #1b3a2c 100%);
    color: #fff; padding: 11rem 1.5rem 6rem; text-align: center;
}
.hero-glow {
    position: absolute; inset: 0;
    background:
        radial-gradient(ellipse at 75% 15%, rgba(47,111,78,.35) 0%, transparent 45%),
        radial-gradient(ellipse at 15% 90%, rgba(196,165,116,.12) 0%, transparent 40%);
}
.hero-inner { position: relative; max-width: 860px; margin: 0 auto; }
.eyebrow {
    display: inline-block; text-transform: uppercase; letter-spacing: 3px;
    font-size: .8rem; font-weight: 600; color: var(--gold); margin-bottom: 1.25rem;
}
.hero h1 { font-size: clamp(2.4rem, 6vw, 4rem); margin-bottom: 1.25rem; }
.hero h1 .accent { color: #5fae84; }
.hero-sub { font-size: 1.25rem; color: #c6d2dc; max-width: 640px; margin: 0 auto 2rem; }
.hero-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; margin-bottom: 2.5rem; }
.hero-badges { list-style: none; display: flex; gap: 1.75rem; justify-content: center; flex-wrap: wrap; color: #aebcc8; font-size: .95rem; }
.hero-badges li { display: flex; align-items: center; gap: .45rem; }
.hero-badges .lic { width: 18px; height: 18px; color: #5fae84; }

/* ---- Problem / stakes ---- */
.problem { background: var(--ink); color: #fff; padding: 5.5rem 1.5rem; }
.problem-inner { max-width: 820px; margin: 0 auto; text-align: center; }
.problem .tag { color: var(--gold); }
.problem h2 { font-size: clamp(1.9rem, 4vw, 2.6rem); margin-bottom: 1rem; }
.problem .lede { font-size: 1.2rem; color: #c6d2dc; margin-bottom: 2.5rem; }
.problem .lede em { color: #5fae84; }
.pain-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; margin-bottom: 2.5rem; text-align: left; }
.pain { background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.08); border-radius: var(--radius); padding: 1.5rem; }
.pain span { display: block; margin-bottom: .6rem; color: var(--gold); }
.pain .lic { width: 28px; height: 28px; }
.pain p { color: #c6d2dc; font-size: .98rem; }
.problem-close { font-size: 1.12rem; color: #aebcc8; max-width: 680px; margin: 0 auto; }
.problem-close strong { color: #fff; }

/* ---- Sections ---- */
.section { max-width: 1200px; margin: 0 auto; padding: 6rem 1.5rem; }
.section-soft { max-width: none; background: var(--bg-soft); }
.section-soft > * { max-width: 1200px; margin-left: auto; margin-right: auto; }
.section-head { max-width: 640px; margin: 0 auto 3.5rem; text-align: center; }
.tag { display: inline-block; text-transform: uppercase; letter-spacing: 2.5px; font-size: .78rem; font-weight: 700; color: var(--accent); margin-bottom: .75rem; }
.section-head h2 { font-size: clamp(1.9rem, 4vw, 2.6rem); margin-bottom: .9rem; }
.section-head p { color: var(--ink-soft); font-size: 1.12rem; }

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

/* ---- Cards ---- */
.card {
    background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
    padding: 2rem; transition: transform .25s, box-shadow .25s, border-color .25s;
}
.card:hover { transform: translateY(-5px); box-shadow: var(--shadow); border-color: var(--accent); }
.card-icon { width: 54px; height: 54px; border-radius: 12px; background: var(--accent-soft); display: grid; place-items: center; color: var(--accent); margin-bottom: 1.1rem; }
.card-icon .lic { width: 26px; height: 26px; }
.card h3 { font-size: 1.3rem; margin-bottom: .6rem; }
.card p { color: var(--ink-soft); }

/* ---- Portfolio ---- */
.work-card {
    background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
    overflow: hidden; display: flex; flex-direction: column;
    transition: transform .25s, box-shadow .25s;
}
.work-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.work-thumb { position: relative; aspect-ratio: 16/10; overflow: hidden; }
.work-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.work-card:hover .work-thumb img { transform: scale(1.05); }
.work-type { position: absolute; top: .8rem; left: .8rem; background: rgba(15,27,42,.85); color: #fff; font-size: .72rem; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; padding: .3rem .7rem; border-radius: 6px; }
.work-body { padding: 1.4rem 1.5rem 1.6rem; display: flex; flex-direction: column; flex: 1; }
.work-body h3 { font-size: 1.25rem; margin-bottom: .4rem; }
.work-body p { color: var(--ink-soft); font-size: .97rem; flex: 1; }
.work-link { margin-top: 1.1rem; font-weight: 700; color: var(--accent); text-decoration: none; font-family: 'Rajdhani', sans-serif; letter-spacing: .5px; }
.work-link:hover { color: var(--accent-dark); }
.work-link.disabled { color: var(--ink-soft); pointer-events: none; }
.work-note { text-align: center; margin-top: 2.5rem; color: var(--ink-soft); }
.work-note a { color: var(--accent); font-weight: 600; }

/* ---- About ---- */
.about-grid { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 3.5rem; align-items: center; max-width: 1200px; margin: 0 auto; }
.about-photo img { border-radius: var(--radius); aspect-ratio: 4/5; object-fit: cover; box-shadow: var(--shadow); }
.about-body h2 { font-size: clamp(1.9rem, 4vw, 2.6rem); margin-bottom: 1rem; }
.about-body p { color: var(--ink-soft); margin-bottom: 1.1rem; }
.about-body blockquote {
    border-left: 4px solid var(--accent); background: var(--accent-soft);
    padding: 1.1rem 1.4rem; border-radius: 0 10px 10px 0; margin: 1.4rem 0;
    color: var(--ink); font-size: 1.08rem;
}
.about-body .btn { margin-top: .5rem; }

/* ---- Pricing band ---- */
/* Field Ops cross-promo band — dark navy to match the Field Ops brand hero */
.fieldops { background: linear-gradient(160deg, #0f1b2a 0%, #173049 100%); color: #fff; padding: 5rem 1.5rem; }
.fieldops-inner { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: 1.2fr .8fr; gap: 3rem; align-items: center; }
.fieldops .tag { color: var(--gold); }
.fieldops h2 { font-size: clamp(1.8rem, 4vw, 2.4rem); margin-bottom: 1rem; color: #fff; }
.fieldops p { color: #c7d2dd; margin-bottom: 1.2rem; max-width: 46ch; }
.fieldops p strong { color: #fff; }
.fieldops-points { list-style: none; margin: 0 0 1.8rem; color: #aebccb; }
.fieldops-points li { padding: .3rem 0 .3rem 1.6rem; position: relative; }
.fieldops-points li::before { content: "✓"; position: absolute; left: 0; color: #6fce9c; font-weight: 700; }
.fieldops-phone img { width: 250px; max-width: 100%; height: auto; display: block; margin: 0 auto; border-radius: 32px; border: 9px solid #0b1420; background: #0b1420; box-shadow: var(--shadow); }

.pricing-band { background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%); color: #fff; padding: 5rem 1.5rem; text-align: center; }
.pricing-inner { max-width: 720px; margin: 0 auto; }
.pricing-inner h2 { font-size: clamp(1.8rem, 4vw, 2.5rem); margin-bottom: 1rem; }
.pricing-inner p { font-size: 1.15rem; opacity: .95; margin-bottom: 2rem; }

/* ---- Process ---- */
.steps .step { text-align: center; padding: 1rem; }
.step-num { width: 60px; height: 60px; margin: 0 auto 1rem; border-radius: 50%; display: grid; place-items: center; background: var(--accent-soft); color: var(--accent-dark); font-family: 'Rajdhani', sans-serif; font-weight: 700; font-size: 1.7rem; border: 2px solid var(--accent); }
.step h3 { font-size: 1.2rem; margin-bottom: .4rem; }
.step p { color: var(--ink-soft); font-size: .95rem; }

/* ---- Contact ---- */
.contact-grid { display: grid; grid-template-columns: 1fr 1.3fr; gap: 3rem; max-width: 1100px; margin: 0 auto; }
.contact-info h3 { font-size: 1.5rem; margin-bottom: 1.25rem; }
.contact-list { list-style: none; }
.contact-list li { display: flex; align-items: center; gap: .9rem; padding: 1rem 1.1rem; background: #fff; border: 1px solid var(--line); border-left: 3px solid var(--accent); border-radius: 10px; margin-bottom: .9rem; }
.contact-list .ci-icon { display: flex; color: var(--accent); }
.contact-list .lic { width: 20px; height: 20px; }
.contact-list strong { display: block; font-size: .95rem; }
.contact-list span { color: var(--ink-soft); font-size: .92rem; }
.contact-list a { color: var(--ink-soft); text-decoration: none; }
.contact-list a:hover { color: var(--accent); }
.service-area { margin-top: 1.25rem; padding: 1.2rem 1.3rem; background: var(--accent-soft); border-radius: 10px; color: var(--ink-soft); font-size: .95rem; }

.contact-form { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 2.2rem; box-shadow: var(--shadow); }
.row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.field { margin-bottom: 1.1rem; }
.field label { display: block; font-size: .8rem; font-weight: 700; text-transform: uppercase; letter-spacing: .8px; color: var(--ink-soft); margin-bottom: .45rem; }
.field input, .field textarea, .field select {
    width: 100%; padding: .85rem .95rem; border: 1px solid var(--line); border-radius: 8px;
    font-family: inherit; font-size: 1rem; color: var(--ink); background: #fdfefe; transition: border-color .2s, box-shadow .2s;
}
.field input:focus, .field textarea:focus, .field select:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px rgba(47,111,78,.15); }
.field textarea { min-height: 120px; resize: vertical; }
.cf-turnstile { margin-bottom: 1rem; }
.form-status { margin-top: 1rem; font-weight: 600; text-align: center; min-height: 1.2rem; }
.form-status.ok { color: var(--accent-dark); }
.form-status.err { color: #b3261e; }

/* ---- Footer ---- */
footer { background: var(--ink); color: #c6d2dc; padding: 4rem 1.5rem 1.5rem; }
.footer-inner { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 2.5rem; padding-bottom: 2.5rem; border-bottom: 1px solid rgba(255,255,255,.1); }
.footer-brand .logo { color: #fff; margin-bottom: 1rem; }
.footer-logo img { filter: brightness(0) invert(1); }
.footer-brand p { font-size: .95rem; color: #9fb0bd; }
.footer-col h4 { color: #fff; text-transform: uppercase; letter-spacing: 1px; font-size: 1rem; margin-bottom: 1rem; }
.footer-col a, .footer-col p { display: block; color: #9fb0bd; text-decoration: none; font-size: .95rem; margin-bottom: .6rem; transition: color .2s; }
.footer-col a:hover { color: #5fae84; }
.footer-bottom { max-width: 1200px; margin: 1.5rem auto 0; text-align: center; font-size: .88rem; color: #7e909e; }

/* ---- How-it-works CTA ---- */
.how-cta { text-align: center; margin-top: 3rem; }

/* ---- Founder's promise ---- */
.promise { background: var(--accent-soft); padding: 5rem 1.5rem; }
.promise-inner {
    max-width: 780px; margin: 0 auto; text-align: center;
    background: #fff; border: 1px solid var(--line); border-top: 4px solid var(--accent);
    border-radius: var(--radius); padding: 3rem 2.5rem; box-shadow: var(--shadow);
}
.promise-badge {
    display: inline-block; background: var(--accent-soft); color: var(--accent-dark);
    font-family: 'Rajdhani', sans-serif; font-weight: 700; letter-spacing: .5px;
    padding: .4rem 1rem; border-radius: 999px; font-size: .95rem; margin-bottom: 1.25rem;
}
.promise-badge .lic { width: 15px; height: 15px; vertical-align: -2px; margin-right: .25rem; }
.promise-inner h2 { font-size: clamp(1.6rem, 3.5vw, 2.2rem); margin-bottom: 1rem; }
.promise-inner p { color: var(--ink-soft); font-size: 1.1rem; }
.promise-sign { margin-top: 1.25rem; font-family: 'Rajdhani', sans-serif; font-weight: 600; color: var(--accent-dark); }

/* ---- Pricing card ---- */
.pricing-card {
    max-width: 620px; margin: 0 auto; background: #fff;
    border: 1px solid var(--line); border-top: 5px solid var(--accent);
    border-radius: var(--radius); padding: 2.5rem; box-shadow: var(--shadow);
}
.pricing-numbers {
    display: flex; align-items: center; justify-content: center; gap: 1.5rem;
    flex-wrap: wrap; padding-bottom: 1.75rem; margin-bottom: 1.75rem;
    border-bottom: 1px solid var(--line);
}
.price-block { text-align: center; }
.price { display: block; font-family: 'Rajdhani', sans-serif; font-weight: 700; font-size: 2.8rem; color: var(--accent-dark); line-height: 1; }
.price-note { display: block; font-size: .9rem; color: var(--ink-soft); margin-top: .35rem; text-transform: uppercase; letter-spacing: .5px; }
.price-plus { font-family: 'Rajdhani', sans-serif; font-size: 2rem; color: var(--ink-soft); font-weight: 600; }
.pricing-included { list-style: none; margin-bottom: 1.75rem; }
.pricing-included li { display: flex; align-items: flex-start; gap: .7rem; padding: .55rem 0; color: var(--ink); border-bottom: 1px solid var(--bg-soft); }
.pricing-included li:last-child { border-bottom: none; }
.pricing-included .check { color: var(--accent); font-weight: 800; flex-shrink: 0; }
.pricing-explainer { background: var(--accent-soft); border-radius: 10px; padding: 1.1rem 1.3rem; font-size: .95rem; color: var(--ink-soft); margin-bottom: 1.75rem; }
.pricing-explainer strong { color: var(--ink); }
.pricing-fineprint { text-align: center; font-size: .9rem; color: var(--ink-soft); margin-top: 1rem; }

/* ---- Pricing: build banner + two plans ---- */
.build-banner {
    max-width: 620px; margin: 0 auto 1.25rem; text-align: center;
    background: var(--accent-soft); border: 1px solid var(--line);
    border-radius: var(--radius); padding: 1.25rem 1.5rem;
}
.build-banner .bb-price { font-family: 'Rajdhani', sans-serif; font-weight: 700; font-size: 1.9rem; color: var(--accent-dark); }
.build-banner .bb-note { color: var(--ink-soft); text-transform: uppercase; letter-spacing: .5px; font-size: .85rem; }
.build-banner .bb-finance { display: block; margin-top: .4rem; color: var(--accent-dark); font-weight: 600; }
.founder-note { text-align: center; max-width: 620px; margin: 0 auto 1.75rem; color: var(--gold); font-weight: 700; }
.pricing-grid {
    display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem;
    max-width: 860px; margin: 0 auto; align-items: start;
}
.plan-card {
    position: relative; background: #fff; border: 1px solid var(--line);
    border-top: 5px solid var(--line); border-radius: var(--radius);
    padding: 2rem 1.75rem; box-shadow: var(--shadow);
}
.plan-card.featured { border-top-color: var(--accent); box-shadow: 0 22px 48px rgba(47,111,78,.18); }
.plan-badge {
    position: absolute; top: -.85rem; left: 50%; transform: translateX(-50%);
    background: var(--accent); color: #fff; font-size: .72rem; font-weight: 700;
    text-transform: uppercase; letter-spacing: .5px; padding: .3rem .85rem;
    border-radius: 999px; white-space: nowrap;
}
.plan-name { font-family: 'Rajdhani', sans-serif; font-size: 1.5rem; font-weight: 700; color: var(--ink); }
.plan-blurb { color: var(--ink-soft); font-size: .95rem; margin-bottom: 1rem; }
.plan-price-row { display: flex; align-items: baseline; gap: .5rem; }
.plan-price { font-family: 'Rajdhani', sans-serif; font-weight: 700; font-size: 2.6rem; color: var(--accent-dark); line-height: 1; }
.plan-was { font-family: 'Rajdhani', sans-serif; font-size: 1.5rem; color: var(--ink-soft); text-decoration: line-through; }
.plan-price-note { font-size: .82rem; color: var(--ink-soft); text-transform: uppercase; letter-spacing: .5px; margin: .35rem 0 1.25rem; }
.plan-included { list-style: none; margin: 0; }
.plan-included li { display: flex; align-items: flex-start; gap: .6rem; padding: .5rem 0; color: var(--ink); border-bottom: 1px solid var(--bg-soft); font-size: .95rem; }
.plan-included li:last-child { border-bottom: none; }
.plan-included .check { color: var(--accent); font-weight: 800; flex-shrink: 0; }
.guarantee { text-align: center; max-width: 620px; margin: 1.75rem auto 0; font-weight: 600; color: var(--ink); }
.guarantee::before { content: "✓ "; color: var(--accent); font-weight: 800; }
.pricing-cta { max-width: 620px; margin: 1.5rem auto 0; }
@media (max-width: 640px) { .pricing-grid { grid-template-columns: 1fr; } }

/* ---- FAQ ---- */
.faq { max-width: 780px; margin: 0 auto; }
.faq-item { background: #fff; border: 1px solid var(--line); border-radius: 10px; margin-bottom: .9rem; overflow: hidden; }
.faq-item summary {
    cursor: pointer; list-style: none; padding: 1.2rem 1.4rem;
    font-family: 'Rajdhani', sans-serif; font-weight: 600; font-size: 1.15rem;
    display: flex; justify-content: space-between; align-items: center; gap: 1rem;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: '+'; font-size: 1.6rem; color: var(--accent); font-weight: 400; line-height: 1; transition: transform .25s; }
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item summary:hover { color: var(--accent); }
.faq-item p { padding: 0 1.4rem 1.3rem; color: var(--ink-soft); }

/* ---- Responsive ---- */
@media (max-width: 980px) {
    .grid-3 { grid-template-columns: repeat(2,1fr); }
    .pain-grid { grid-template-columns: 1fr; }
    .steps { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
    .about-grid { grid-template-columns: 1fr; gap: 2rem; }
    .about-photo { max-width: 360px; margin: 0 auto; }
    .fieldops-inner { grid-template-columns: 1fr; text-align: center; }
    .fieldops p { margin-inline: auto; }
    .fieldops-points { display: inline-block; text-align: left; }
    .contact-grid { grid-template-columns: 1fr; }
    .footer-inner { grid-template-columns: 1fr 1fr; gap: 2rem; }

    /* Collapse the nav to the hamburger menu on tablets (incl. iPad portrait),
       so the top-right CTA never crowds or overflows the bar. */
    .nav-links {
        position: absolute; top: 100%; left: 0; right: 0; flex-direction: column; gap: 0;
        background: #fff; border-bottom: 1px solid var(--line); padding: .5rem 1.5rem 1.25rem;
        display: none;
    }
    .nav-links.open { display: flex; }
    .nav-links li { width: 100%; }
    .nav-links a { display: block; padding: .75rem 0; width: 100%; }
    .nav-links .nav-cta { text-align: center; margin-top: .5rem; }
    .mobile-menu-btn { display: flex; }
}
@media (max-width: 680px) {
    .grid-3, .grid-4, .pain-grid, .row { grid-template-columns: 1fr; }
    .pricing-card { padding: 1.75rem 1.4rem; }
    .promise-inner { padding: 2rem 1.5rem; }
    .hero { padding-top: 8.5rem; }
    .section { padding: 4rem 1.5rem; }
}
