:root {
    --landing-bg: #f7f7f7;
    --landing-ink: #323a46;
    --landing-muted: #6c757d;
    --landing-line: #e9edf3;
    --landing-soft: #eef3fc;
    --landing-soft-2: #e6edf9;
    --landing-brand: #346ee0;
    --landing-brand-dark: #323a46;
    --landing-brand-hover: #215fd9;
    --landing-white: #ffffff;
    --landing-shadow: 0 22px 60px rgba(50, 58, 70, .10);
    --landing-shadow-sm: 0 12px 32px rgba(50, 58, 70, .08);
    --landing-radius: 24px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    background: var(--landing-bg);
    color: var(--landing-ink);
    font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}
body.menu-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
img { max-width: 100%; display: block; }

.landing-container { width: min(1180px, calc(100% - 40px)); margin: 0 auto; }
.section-pad { padding: 104px 0; }

.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(247, 247, 247, .90);
    border-bottom: 1px solid rgba(52, 110, 224, .09);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
}
.nav-wrap { min-height: 78px; display: flex; align-items: center; gap: 30px; }
.brand { flex: 0 0 auto; }
.brand img { width: 176px; height: auto; }
.main-nav { display: flex; align-items: center; gap: 28px; margin-left: auto; }
.main-nav a, .nav-login { color: #60686f; font-size: 14px; font-weight: 650; transition: color .2s ease; }
.main-nav a:hover, .nav-login:hover { color: var(--landing-brand); }
.nav-actions { display: flex; align-items: center; gap: 18px; }
.mobile-menu-btn { display: none; border: 0; background: transparent; font-size: 28px; color: var(--landing-brand-dark); padding: 5px; cursor: pointer; }

.btn {
    appearance: none;
    border: 1px solid transparent;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 44px;
    padding: 10px 18px;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 750;
    line-height: 1.2;
    transition: transform .2s ease, box-shadow .2s ease, background-color .2s ease, border-color .2s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary { background: var(--landing-brand) !important; border-color: var(--landing-brand) !important; color: #fff !important; box-shadow: 0 10px 24px rgba(52,110,224,.18); }
.btn-primary:hover { background: var(--landing-brand-hover) !important; border-color: var(--landing-brand-hover) !important; }
.btn-outline { background: #fff !important; border-color: #d9e0ea !important; color: var(--landing-brand-dark) !important; }
.btn-outline:hover { border-color: var(--landing-brand) !important; background: var(--landing-soft) !important; color: var(--landing-brand-dark) !important; }
.btn-lg { min-height: 52px; padding: 14px 22px; border-radius: 14px; font-size: 15px; }
.btn-block { width: 100%; }
.btn-white { background: #fff !important; color: var(--landing-brand-dark) !important; border-color: #fff !important; box-shadow: 0 12px 30px rgba(0,0,0,.10); }
.btn-white:hover { background: #f1f5f7 !important; }

.hero {
    min-height: 760px;
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
    background:
        radial-gradient(circle at 8% 25%, rgba(52,110,224,.08), transparent 32%),
        linear-gradient(180deg, #ffffff 0%, #f1f5f7 100%);
}
.hero:after {
    content: "";
    position: absolute;
    inset: auto 0 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(52,110,224,.20), transparent);
}
.hero-glow { position: absolute; border-radius: 50%; filter: blur(3px); pointer-events: none; }
.hero-glow-one { width: 420px; height: 420px; right: -170px; top: 40px; background: rgba(52, 110, 224, .08); }
.hero-glow-two { width: 260px; height: 260px; left: -100px; bottom: 20px; background: rgba(52, 110, 224, .05); }
.hero-grid { display: grid; grid-template-columns: .93fr 1.07fr; gap: 70px; align-items: center; position: relative; z-index: 1; }
.eyebrow { display: inline-flex; align-items: center; gap: 9px; color: var(--landing-brand); font-size: 12px; font-weight: 800; text-transform: uppercase; letter-spacing: .11em; }
.eyebrow span { width: 25px; height: 2px; border-radius: 4px; background: var(--landing-brand); }
.eyebrow.light { color: #b9cdf4; }
.eyebrow.light span { background: #b9cdf4; }
.hero h1 { font-size: clamp(48px, 5.3vw, 76px); line-height: .99; letter-spacing: -.055em; margin: 22px 0 24px; max-width: 700px; }
.hero h1 em { font-style: normal; color: var(--landing-brand); }
.hero-lead { max-width: 620px; color: var(--landing-muted); font-size: 19px; line-height: 1.72; margin: 0; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 34px; }
.hero-checks { display: flex; flex-wrap: wrap; gap: 20px; margin-top: 24px; color: #6c757d; font-size: 13px; font-weight: 650; }
.hero-checks span { display: inline-flex; align-items: center; gap: 6px; }
.hero-checks i { width: 20px; height: 20px; border-radius: 50%; display: grid; place-items: center; background: var(--landing-soft); color: var(--landing-brand); font-size: 15px; }

.hero-visual { position: relative; padding: 30px 0 30px 20px; }
.preview-shell { background: #fff; border: 1px solid #e9edf3; border-radius: 22px; box-shadow: var(--landing-shadow); overflow: hidden; transform: perspective(1400px) rotateY(-2deg) rotateX(1deg); }
.preview-topbar { height: 58px; display: flex; align-items: center; justify-content: space-between; border-bottom: 1px solid #e9edf3; padding: 0 18px; }
.preview-brand { display: flex; align-items: center; gap: 9px; font-size: 13px; color: var(--landing-brand-dark); }
.preview-brand img { width: 27px; height: 27px; }
.preview-user { display: flex; gap: 5px; }
.preview-user span { width: 6px; height: 6px; border-radius: 50%; background: #ced4da; }
.preview-body { min-height: 420px; display: grid; grid-template-columns: 118px 1fr; }
.preview-sidebar { background: var(--landing-brand-dark); padding: 21px 10px; }
.preview-nav-item { display: flex; align-items: center; gap: 8px; color: rgba(255,255,255,.65); padding: 9px 10px; border-radius: 8px; font-size: 10px; margin-bottom: 5px; }
.preview-nav-item i { font-size: 15px; }
.preview-nav-item.active { color: #fff; background: rgba(255,255,255,.12); }
.preview-content { min-width: 0; background: #f7f7f7; padding: 24px; }
.preview-heading-row { display: flex; justify-content: space-between; align-items: flex-start; gap: 10px; }
.preview-heading-row small { color: #98a6ad; font-size: 9px; }
.preview-heading-row h3 { margin: 3px 0 0; font-size: 18px; letter-spacing: -.02em; }
.preview-pill { padding: 5px 9px; border-radius: 100px; background: #eef3fc; color: var(--landing-brand); font-size: 9px; font-weight: 800; }
.preview-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 11px; margin: 20px 0; }
.preview-stat { background: #fff; border: 1px solid #e9edf3; border-radius: 12px; padding: 13px; box-shadow: 0 6px 16px rgba(50,58,70,.03); }
.preview-stat i { font-size: 18px; color: var(--landing-brand); display: block; margin-bottom: 13px; }
.preview-stat span { display: block; color: #98a6ad; font-size: 8px; }
.preview-stat strong { display: block; font-size: 19px; margin-top: 2px; }
.preview-panels { display: grid; grid-template-columns: 1.25fr .75fr; gap: 11px; }
.preview-chart-card, .preview-activity-card { background: #fff; border: 1px solid #e9edf3; border-radius: 12px; padding: 15px; min-width: 0; }
.mini-title { font-size: 10px; font-weight: 800; margin-bottom: 15px; }
.bar-row { display: grid; grid-template-columns: 52px 1fr 28px; align-items: center; gap: 7px; margin: 12px 0; font-size: 8px; color: #6c757d; }
.bar-row > div { height: 5px; border-radius: 10px; background: #e9edf3; overflow: hidden; }
.bar-row b { display: block; height: 100%; background: var(--landing-brand); border-radius: inherit; }
.bar-row strong { color: #60686f; font-size: 8px; text-align: right; }
.activity-item { display: grid; grid-template-columns: 27px 1fr; gap: 8px; align-items: center; margin: 12px 0; }
.activity-icon { width: 27px; height: 27px; display: grid; place-items: center; border-radius: 8px; background: var(--landing-soft); color: var(--landing-brand); font-size: 13px; }
.activity-item strong, .activity-item small { display: block; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.activity-item strong { font-size: 8px; }
.activity-item small { font-size: 7px; color: #98a6ad; margin-top: 1px; }
.floating-card { position: absolute; display: flex; align-items: center; gap: 10px; background: #fff; border: 1px solid #e9edf3; border-radius: 14px; padding: 11px 14px; box-shadow: var(--landing-shadow-sm); }
.floating-card > i { width: 34px; height: 34px; display: grid; place-items: center; border-radius: 10px; background: var(--landing-soft); color: var(--landing-brand); font-size: 18px; }
.floating-card strong, .floating-card span { display: block; }
.floating-card strong { font-size: 11px; }
.floating-card span { font-size: 8px; color: #98a6ad; }
.float-one { left: -12px; bottom: 52px; }
.float-two { right: -28px; top: 78px; }

.quick-strip { background: #fff; border-bottom: 1px solid var(--landing-line); }
.strip-grid { min-height: 94px; display: grid; grid-template-columns: repeat(5, 1fr); align-items: center; }
.strip-grid > div { padding: 0 24px; border-right: 1px solid #e9edf3; }
.strip-grid > div:first-child { padding-left: 0; }
.strip-grid > div:last-child { border-right: 0; }
.strip-grid strong, .strip-grid span { display: block; }
.strip-grid strong { color: var(--landing-brand-dark); font-size: 13px; }
.strip-grid span { color: #98a6ad; font-size: 11px; margin-top: 1px; }

.section-heading { max-width: 750px; margin-bottom: 52px; }
.section-heading.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-heading.center .eyebrow { justify-content: center; }
.section-heading h2, .operations-copy h2, .faq-intro h2 { font-size: clamp(34px, 4.2vw, 52px); line-height: 1.08; letter-spacing: -.045em; margin: 16px 0 18px; }
.section-heading p, .operations-copy > p, .faq-intro > p { color: var(--landing-muted); font-size: 17px; max-width: 690px; }
.section-heading.center p { margin-left: auto; margin-right: auto; }

.feature-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.feature-card { background: #fff; border: 1px solid var(--landing-line); border-radius: 20px; padding: 26px; transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease; }
.feature-card:hover { transform: translateY(-4px); border-color: #c9d7f3; box-shadow: var(--landing-shadow-sm); }
.feature-icon { width: 48px; height: 48px; border-radius: 14px; display: grid; place-items: center; background: var(--landing-soft); color: var(--landing-brand); font-size: 24px; margin-bottom: 28px; }
.feature-card h3 { font-size: 18px; margin: 0 0 10px; letter-spacing: -.02em; }
.feature-card p { color: var(--landing-muted); font-size: 13px; margin: 0; line-height: 1.72; }

.workflow-section { background: var(--landing-brand-dark); color: #fff; position: relative; overflow: hidden; }
.workflow-section:before { content: ""; position: absolute; width: 520px; height: 520px; border-radius: 50%; background: rgba(52, 110, 224, .13); right: -180px; top: -210px; }
.workflow-section .section-heading p { color: #c6d2e8; }
.workflow-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; position: relative; }
.workflow-step { position: relative; border: 1px solid rgba(255,255,255,.12); background: rgba(255,255,255,.045); border-radius: 22px; padding: 32px; min-height: 260px; }
.step-no { position: absolute; right: 24px; top: 20px; font-size: 36px; font-weight: 850; color: rgba(255,255,255,.08); }
.workflow-icon { width: 52px; height: 52px; display: grid; place-items: center; border-radius: 15px; background: rgba(52, 110, 224, .16); color: #b9cdf4; font-size: 25px; }
.workflow-step h3 { font-size: 21px; margin: 30px 0 9px; }
.workflow-step p { color: #b7c1d1; font-size: 14px; margin: 0; max-width: 290px; }

.operations-section { background: #fff; }
.operations-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 85px; align-items: center; }
.operations-copy > p { margin: 0; }
.check-list { list-style: none; margin: 28px 0 24px; padding: 0; display: grid; gap: 14px; }
.check-list li { display: flex; align-items: flex-start; gap: 10px; color: #6c757d; font-size: 14px; }
.check-list li i { flex: 0 0 24px; width: 24px; height: 24px; display: grid; place-items: center; border-radius: 50%; background: var(--landing-soft); color: var(--landing-brand); font-size: 16px; margin-top: 1px; }
.check-list strong { color: var(--landing-ink); }
.text-link { display: inline-flex; align-items: center; gap: 6px; color: var(--landing-brand); font-size: 14px; font-weight: 800; }
.operations-cards { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
.ops-card { min-height: 160px; background: #f7f7f7; border: 1px solid var(--landing-line); border-radius: 20px; padding: 24px; display: flex; flex-direction: column; justify-content: flex-end; }
.ops-card.wide { grid-column: 1 / -1; min-height: 205px; justify-content: flex-start; }
.ops-card.accent { background: var(--landing-brand); color: #fff; border-color: var(--landing-brand); }
.ops-card.accent-soft { background: var(--landing-soft); border-color: #d9e6fb; }
.ops-card > i { font-size: 28px; color: var(--landing-brand); margin-bottom: 22px; }
.ops-card.accent > i { color: #fff; }
.ops-card strong { font-size: 16px; }
.ops-card > span { color: var(--landing-muted); font-size: 12px; margin-top: 5px; }
.ops-card.accent > span { color: rgba(255,255,255,.78); }
.ops-card-top { display: flex; justify-content: space-between; color: var(--landing-muted); font-size: 12px; }
.ops-card.wide h3 { font-size: 24px; line-height: 1.2; letter-spacing: -.03em; max-width: 440px; margin: 24px 0; }
.ops-progress span { display: flex; justify-content: space-between; color: #6c757d; font-size: 11px; }
.ops-progress em { font-style: normal; font-weight: 800; color: var(--landing-brand); }
.ops-progress > div { height: 7px; background: #e9edf3; border-radius: 10px; margin-top: 7px; overflow: hidden; }
.ops-progress i { display: block; height: 100%; background: var(--landing-brand); border-radius: inherit; }

.packages-section { background: #f1f5f7; }
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; align-items: stretch; }
.price-card { background: #fff; border: 1px solid var(--landing-line); border-radius: 22px; padding: 30px; position: relative; display: flex; flex-direction: column; box-shadow: 0 10px 30px rgba(50,58,70,.04); }
.price-card.featured { border: 2px solid var(--landing-brand); transform: translateY(-8px); box-shadow: var(--landing-shadow); }
.popular-badge { position: absolute; top: -14px; right: 22px; padding: 6px 11px; border-radius: 100px; background: var(--landing-brand); color: #fff; font-size: 10px; font-weight: 800; letter-spacing: .04em; text-transform: uppercase; }
.plan-tag { display: inline-flex; color: var(--landing-brand); background: var(--landing-soft); border-radius: 100px; padding: 5px 10px; font-size: 10px; font-weight: 800; text-transform: uppercase; letter-spacing: .06em; }
.price-top h3 { font-size: 21px; margin: 18px 0 8px; }
.price-top p { color: var(--landing-muted); font-size: 13px; line-height: 1.65; min-height: 64px; margin: 0; }
.plan-price { padding: 26px 0 20px; margin-top: 20px; border-top: 1px solid #e9edf3; }
.plan-price strong, .plan-price span { display: block; }
.plan-price strong { font-size: 30px; letter-spacing: -.04em; }
.plan-price span { color: #98a6ad; font-size: 11px; margin-top: 1px; }
.price-card ul { list-style: none; padding: 0; margin: 0 0 26px; display: grid; gap: 11px; flex: 1; }
.price-card li { display: flex; gap: 8px; align-items: flex-start; color: #6c757d; font-size: 13px; }
.price-card li i { color: var(--landing-brand); font-size: 18px; }
.pricing-note { max-width: 760px; margin: 30px auto 0; text-align: center; color: #6c757d; font-size: 12px; }
.pricing-note i { color: var(--landing-brand); }

.roles-section { background: #fff; }
.role-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.role-card { border: 1px solid var(--landing-line); border-radius: 20px; padding: 28px; display: flex; align-items: flex-start; gap: 18px; }
.role-icon { flex: 0 0 48px; width: 48px; height: 48px; display: grid; place-items: center; border-radius: 14px; background: var(--landing-soft); color: var(--landing-brand); font-size: 24px; }
.role-card small { color: var(--landing-brand); font-weight: 800; text-transform: uppercase; letter-spacing: .06em; font-size: 9px; }
.role-card h3 { margin: 5px 0 8px; font-size: 18px; line-height: 1.25; }
.role-card p { margin: 0; color: var(--landing-muted); font-size: 12px; line-height: 1.7; }

.faq-section { background: #f7f7f7; }
.faq-layout { display: grid; grid-template-columns: .72fr 1.28fr; gap: 90px; align-items: start; }
.faq-intro { position: sticky; top: 115px; }
.faq-intro > p { font-size: 15px; margin: 0 0 24px; }
.faq-list { display: grid; gap: 10px; }
.faq-list details { background: #fff; border: 1px solid var(--landing-line); border-radius: 15px; padding: 0 20px; }
.faq-list summary { cursor: pointer; list-style: none; padding: 20px 34px 20px 0; font-size: 14px; font-weight: 750; position: relative; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary:after { content: "+"; position: absolute; right: 0; top: 16px; color: var(--landing-brand); font-size: 22px; font-weight: 400; }
.faq-list details[open] summary:after { content: "−"; }
.faq-list details p { color: var(--landing-muted); font-size: 13px; margin: -3px 0 20px; line-height: 1.75; }

.final-cta { background: var(--landing-brand); color: #fff; padding: 70px 0; }
.final-cta-inner { display: flex; justify-content: space-between; align-items: center; gap: 50px; }
.cta-kicker { font-size: 10px; font-weight: 800; text-transform: uppercase; letter-spacing: .12em; color: #d9e6fb; }
.final-cta h2 { font-size: clamp(32px, 4vw, 48px); letter-spacing: -.045em; line-height: 1.08; max-width: 700px; margin: 10px 0 10px; }
.final-cta p { color: #e6edf9; margin: 0; }
.final-cta-actions { flex: 0 0 240px; display: flex; flex-direction: column; gap: 13px; align-items: stretch; }
.cta-login { color: #ffffff; text-align: center; font-size: 11px; font-weight: 650; }

.site-footer { background: #323a46; color: #fff; padding: 60px 0 22px; }
.footer-main { display: flex; justify-content: space-between; gap: 60px; padding-bottom: 45px; }
.footer-brand img { width: 170px; filter: brightness(0) invert(1); }
.footer-brand p { max-width: 330px; color: #adb5bd; font-size: 13px; margin: 18px 0 0; }
.footer-links { display: flex; gap: 90px; }
.footer-links > div { display: flex; flex-direction: column; gap: 10px; min-width: 120px; }
.footer-links strong { font-size: 12px; margin-bottom: 6px; }
.footer-links a { color: #adb5bd; font-size: 12px; }
.footer-links a:hover { color: #fff; }
.footer-bottom { min-height: 58px; border-top: 1px solid rgba(255,255,255,.09); display: flex; align-items: flex-end; justify-content: space-between; color: #98a6ad; font-size: 11px; }
.footer-bottom a { display: inline-flex; align-items: center; gap: 5px; color: #ced4da; }

@media (max-width: 1080px) {
    .main-nav { gap: 18px; }
    .hero-grid { gap: 38px; }
    .feature-grid { grid-template-columns: repeat(2, 1fr); }
    .workflow-grid { grid-template-columns: repeat(2, 1fr); }
    .operations-grid { gap: 50px; }
    .role-card { padding: 22px; }
}

@media (max-width: 900px) {
    .section-pad { padding: 80px 0; }
    .nav-wrap { min-height: 70px; }
    .mobile-menu-btn { display: inline-grid; place-items: center; margin-left: auto; }
    .main-nav {
        display: none;
        position: fixed;
        inset: 70px 0 auto 0;
        margin: 0;
        padding: 22px 20px 24px;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        background: #fff;
        border-bottom: 1px solid var(--landing-line);
        box-shadow: 0 18px 30px rgba(50,58,70,.08);
    }
    .main-nav.open { display: flex; }
    .main-nav a { padding: 13px 0; border-bottom: 1px solid #e9edf3; }
    .nav-actions { display: none; }
    .hero { min-height: auto; padding-top: 82px; }
    .hero-grid { grid-template-columns: 1fr; gap: 40px; }
    .hero-copy { text-align: center; }
    .hero-copy .eyebrow { justify-content: center; }
    .hero-lead { margin-left: auto; margin-right: auto; }
    .hero-actions, .hero-checks { justify-content: center; }
    .hero-visual { max-width: 680px; margin: 0 auto; padding-left: 0; width: 100%; }
    .float-one { left: -6px; }
    .float-two { right: -8px; }
    .strip-grid { grid-template-columns: repeat(3, 1fr); padding: 18px 0; gap: 15px 0; }
    .strip-grid > div { border-right: 0; padding: 0 12px; }
    .workflow-grid, .pricing-grid, .role-grid { grid-template-columns: 1fr; }
    .workflow-step { min-height: 220px; }
    .operations-grid, .faq-layout { grid-template-columns: 1fr; gap: 48px; }
    .faq-intro { position: static; }
    .price-card.featured { transform: none; }
    .role-card { max-width: 650px; width: 100%; margin: 0 auto; }
    .final-cta-inner { align-items: flex-start; flex-direction: column; }
    .final-cta-actions { width: 100%; flex-basis: auto; max-width: 320px; }
}

@media (max-width: 620px) {
    .landing-container { width: min(100% - 28px, 1180px); }
    .section-pad { padding: 68px 0; }
    .brand img { width: 154px; }
    .hero { padding-top: 62px; }
    .hero h1 { font-size: 46px; }
    .hero-lead { font-size: 16px; }
    .hero-actions { flex-direction: column; }
    .hero-actions .btn { width: 100%; }
    .hero-checks { gap: 10px 14px; }
    .preview-shell { transform: none; border-radius: 16px; }
    .preview-body { grid-template-columns: 76px 1fr; min-height: 360px; }
    .preview-sidebar { padding: 14px 7px; }
    .preview-nav-item { justify-content: center; padding: 9px 4px; }
    .preview-nav-item span { display: none; }
    .preview-content { padding: 15px; }
    .preview-stats { gap: 7px; }
    .preview-stat { padding: 9px; }
    .preview-stat span { display: none; }
    .preview-stat strong { font-size: 15px; }
    .preview-panels { grid-template-columns: 1fr; }
    .preview-activity-card { display: none; }
    .float-one { bottom: 12px; left: -5px; }
    .float-two { top: 50px; right: -5px; }
    .floating-card { padding: 8px 10px; }
    .floating-card > i { width: 29px; height: 29px; }
    .strip-grid { grid-template-columns: repeat(2, 1fr); }
    .section-heading { margin-bottom: 36px; }
    .section-heading h2, .operations-copy h2, .faq-intro h2 { font-size: 34px; }
    .section-heading p, .operations-copy > p { font-size: 15px; }
    .feature-grid { grid-template-columns: 1fr; }
    .feature-card { padding: 23px; }
    .operations-cards { grid-template-columns: 1fr; }
    .ops-card.wide { grid-column: auto; }
    .pricing-grid { gap: 14px; }
    .price-card { padding: 24px; }
    .footer-main { flex-direction: column; }
    .footer-links { gap: 45px; width: 100%; }
    .footer-bottom { align-items: flex-start; padding-top: 20px; gap: 10px; flex-direction: column; }
}

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    *, *::before, *::after { transition: none !important; animation: none !important; }
}
