@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

:root {
    --bg: #ffffff;
    --fg: #132033;
    --muted: #64748b;
    --line: #e2e8f0;
    --soft: #f8fafc;
    --soft2: #f1f5f9;
    --surface: #ffffff;
    --surface-tint: #f7faff;
    --surface-blue: #eff6ff;
    --primary: #2563eb;
    --primary-dark: #1d4ed8;
    --accent: #16a34a;
    --danger: #dc2626;
    --dark: #061826;
    --dark2: #0c2436;
    --radius: 22px;
    --shadow: 0 12px 30px rgba(15, 23, 42, .08);
    --shadow-card: 0 18px 45px rgba(15, 23, 42, .08);
    --shadow-card-hover: 0 26px 65px rgba(15, 23, 42, .12);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    color: var(--fg);
    background: var(--bg);
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
h1 { font-size: 3.2rem; }

.site { min-height: 100vh; display: flex; flex-direction: column; }
main { flex: 1; }
.container { width: min(1120px, calc(100% - 32px)); margin: 0 auto; }
.narrow { max-width: 860px; }

.nav {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(255, 255, 255, .96);
    border-bottom: 1px solid var(--line);
    backdrop-filter: blur(12px);
    box-shadow: 0 1px 8px rgba(15, 23, 42, .04);
}
.nav-inner { height: 64px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { display: inline-flex; align-items: center; gap: 10px; font-weight: 900; letter-spacing: -.02em; }
.brand-logo {
    display: block;
    width: auto;
    max-width: 220px;
    max-height: 44px;
    object-fit: contain;
}
.brand-mark {
    display: grid;
    place-items: center;
    width: 28px;
    height: 28px;
    border-radius: 8px;
    background: var(--primary);
    color: #fff;
    font-weight: 900;
}
.nav-links { display: flex; align-items: center; gap: 4px; }
.nav-links > a, .nav-item > button {
    border: 0;
    background: transparent;
    font: inherit;
    font-size: 14px;
    font-weight: 600;
    color: #475569;
    padding: 10px 12px;
    border-radius: 8px;
    cursor: pointer;

    
}
.nav-links > a:hover, .nav-item:hover > button { color: var(--primary); background: var(--soft); }
.nav-item { position: relative; }
.dropdown {
    position: absolute;
    top: 35px;
    left: 0;
    min-width: 240px;
    padding: 8px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 14px;
    box-shadow: var(--shadow);
    opacity: 0;
    pointer-events: none;
    transform: translateY(8px);
    transition: .16s ease;
}
.nav-item:hover .dropdown { opacity: 1; pointer-events: auto; transform: translateY(0); }
.dropdown a { display: block; padding: 10px 12px; border-radius: 8px; font-size: 14px; color: #475569; }
.dropdown a:hover { background: var(--soft); color: var(--primary); }
.dropdown-strong { color: var(--primary) !important; font-weight: 800; border-top: 1px solid var(--line); margin-top: 4px; }
.nav-toggle { display: none; border: 1px solid var(--line); background: #fff; padding: 9px 12px; border-radius: 8px; font-weight: 700; }

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 0 22px;
    border-radius: 10px;
    border: 1px solid var(--primary);
    background: var(--primary);
    color: #fff !important;
    font-weight: 800;
    line-height: 1;
    cursor: pointer;
    transition: .16s ease;
}
.btn:hover { background: var(--primary-dark); border-color: var(--primary-dark); transform: translateY(-1px); }
.btn-sm { min-height: 40px; padding: 0 16px !important; }
.btn-outline { background: #fff; color: var(--primary) !important; }
.btn-outline:hover { background: #eff6ff; color: var(--primary-dark) !important; }
.btn-outline-dark { background: transparent; border-color: rgba(255,255,255,.22); color: #fff !important; }
.btn-outline-dark:hover { background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.35); }
.btn-full { width: 100%; min-height: 56px; font-size: 17px; }
.actions { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }

.hero {
    position: relative;
    overflow: hidden;
    background: var(--dark);
    color: #fff;
    padding: 128px 0 84px;
}
.hero-home { min-height: 90vh; display: flex; align-items: center; }
.grid-bg {
    position: absolute;
    inset: 0;
    background-image: linear-gradient(to right, rgba(255,255,255,.05) 1px, transparent 1px), linear-gradient(to bottom, rgba(255,255,255,.05) 1px, transparent 1px), radial-gradient(circle at center, rgba(37,99,235,.22), transparent 50%);
    background-size: 24px 24px, 24px 24px, auto;
}
.hero-center { position: relative; text-align: center; max-width: 980px; }
.hero h1, .page-head h1 {
    margin: 0 0 24px;
    font-size: 3.5rem;
    line-height: 59px;
    letter-spacing: -.035em;
    font-weight: 900;
}
.hero-home h1 { font-size: 4.2rem; }
.hero h1 em { color: #60a5fa; font-style: normal; }
.hero p, .page-head p { color: #cbd5e1; font-size: clamp(18px, 2.3vw, 24px); line-height: 1.55; margin: 0 0 34px; }
.hero .actions { justify-content: center; }
.hero-split { display: grid; grid-template-columns: 1fr 420px; gap: 52px; align-items: center; }
.hero-split img { height: 290px; width: 100%; object-fit: cover; border-radius: 20px; opacity: .82; }
.badges { display: flex; flex-wrap: wrap; justify-content: center; gap: 8px; margin-bottom: 26px; }
.badges span {
    border: 1px solid rgba(96, 165, 250, .25);
    background: rgba(37, 99, 235, .12);
    color: #93c5fd;
    padding: 7px 11px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 700;
}
.eyebrow { display: block; color: #60a5fa; font-size: 13px; text-transform: uppercase; letter-spacing: .12em; font-weight: 900; margin-bottom: 16px; }
.back { display: inline-block; color: #93c5fd; margin-bottom: 28px; font-weight: 700; }

.section { padding: 86px 0; }
.band {
    background:
        radial-gradient(circle at 8% 12%, rgba(37,99,235,.045), transparent 28%),
        linear-gradient(180deg, var(--surface-tint), #ffffff);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}
.section h2 {
    margin: 0 0 36px;
    text-align: center;
    font-size: 3rem;
    line-height: 1.08;
    letter-spacing: -.03em;
    font-weight: 900;
}
.section h3 { margin: 0 0 10px; font-size: 20px; }
.section p { color: var(--muted); line-height: 1.65; }
.section-lead { max-width: 700px; margin: -18px auto 40px; text-align: center; font-size: 18px; }
.large { font-size: 20px; }
.center { text-align: center; }
.seo-copy {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at 12% 10%, rgba(37,99,235,.08), transparent 28%),
        linear-gradient(180deg, #ffffff, #f8fbff);
}
.seo-copy::before {
    content: "";
    position: absolute;
    inset: 22px 0 auto 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, #dbeafe, transparent);
}
.seo-copy .split {
    grid-template-columns: minmax(0, .94fr) minmax(420px, 1.06fr);
    gap: 72px;
    align-items: stretch;
}
.seo-copy h2 {
    max-width: 760px;
    text-align: left;
    margin-bottom: 24px;
    font-size: 3rem;
    line-height: .98;
}
.seo-copy p {
    max-width: 720px;
    font-size: 18px;
    line-height: 1.78;
    margin-bottom: 30px;
}
.seo-image {
    position: relative;
    align-self: stretch;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 28px 70px rgba(15, 23, 42, .10);
    min-height: 520px;
}
.seo-image::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(180deg, rgba(6,24,38,.08), rgba(6,24,38,.28));
}
.seo-image img {
    width: 100%;
    height: 100%;
    min-height: 520px;
    object-fit: cover;
}
.comparison {
    position: relative;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 30px;
    align-items: stretch;
}
.comparison::before {
    content: "VS";
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 2;
    transform: translate(-50%, -50%);
    display: grid;
    place-items: center;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: #fff;
    border: 1px solid var(--line);
    box-shadow: 0 16px 35px rgba(15,23,42,.12);
    color: var(--primary);
    font-size: 13px;
    font-weight: 900;
    letter-spacing: .08em;
}
.comparison-card {
    position: relative;
    overflow: hidden;
    min-height: 360px;
    padding: 36px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-card);
}
.comparison-card::after {
    content: "";
    position: absolute;
    right: -38px;
    top: -38px;
    width: 170px;
    height: 170px;
    border-radius: 50%;
    opacity: .28;
    pointer-events: none;
}
.comparison-card.red::after { background: #dbeafe; }
.comparison-card.green::after { background: #dbeafe; }
.comparison-card.is-featured {
    border-color: rgba(37,99,235,.35);
    box-shadow: var(--shadow-card-hover);
}
.comparison-kicker {
    display: inline-flex;
    margin-bottom: 18px;
    padding: 7px 11px;
    border-radius: 999px;
    background: rgba(255,255,255,.72);
    color: #475569;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: .09em;
    text-transform: uppercase;
}
.comparison h3 {
    position: relative;
    z-index: 1;
    font-size: 2rem;
    line-height: 1.1;
    letter-spacing: -.03em;
    margin-bottom: 24px;
}
.comparison-card ul {
    position: relative;
    z-index: 1;
    display: grid;
    gap: 16px;
    margin: 0;
}
.comparison-card li {
    display: grid;
    grid-template-columns: 30px 1fr;
    align-items: start;
    gap: 12px;
    margin: 0;
    color: #334155;
    font-size: 16px;
    line-height: 1.5;
    font-weight: 700;
}
.comparison-card li span {
    display: grid;
    place-items: center;
    width: 24px;
    height: 24px;
    border-radius: 999px;
    font-weight: 900;
    line-height: 1;
}
.comparison-card.red li span {
    background: #fff1f1;
    color: #dc2626;
}
.comparison-card.green li span {
    background: #e8f8ee;
    color: #15803d;
}

.card-grid { display: grid; gap: 22px; }
.card-grid.two { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.card-grid.three { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.card-grid.four { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.card, .mini-check, .box, .form-card, .panel {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: 0 1px 3px rgba(15,23,42,.04);
}
.service-feature-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
}
.service-feature-card {
    display: grid;
    grid-template-columns: 42% 1fr;
    min-height: 260px;
    overflow: hidden;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow-card);
    transition: .16s ease;
}
.service-feature-card:hover {
    border-color: rgba(37,99,235,.45);
    box-shadow: var(--shadow-card-hover);
    transform: translateY(-2px);
}
.service-feature-card img {
    width: 100%;
    height: 100%;
    min-height: 260px;
    object-fit: cover;
}
.service-feature-card > div {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding: 28px;
}
.service-feature-card h3 {
    font-size: 25px;
    line-height: 1.12;
    letter-spacing: -.02em;
    margin-bottom: 14px;
}
.service-feature-card p {
    margin: 0 0 22px;
    font-size: 16px;
}
.card { padding: 26px; transition: .16s ease; }
.card:hover, .card-link:hover { border-color: rgba(37,99,235,.45); box-shadow: var(--shadow-card); transform: translateY(-2px); }
.card p { margin-bottom: 0; }
.danger .icon { color: var(--primary); background: var(--surface-blue); }
.icon {
    display: grid;
    place-items: center;
    width: 42px;
    height: 42px;
    margin-bottom: 16px;
    border-radius: 14px;
    background: #dbeafe;
    color: var(--primary);
    font-weight: 900;
}
.link { color: var(--primary); font-weight: 800; }
.result small { color: var(--primary); font-weight: 900; text-transform: uppercase; letter-spacing: .08em; }
.result > strong { display: block; color: var(--accent); font-size: 52px; line-height: 1.1; margin: 12px 0; }

.success-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}
.success-card {
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #fff;
    box-shadow: var(--shadow-card);
    transition: .18s ease;
}
.success-card:hover {
    transform: translateY(-4px);
    border-color: rgba(37,99,235,.36);
    box-shadow: var(--shadow-card-hover);
}
.success-card img {
    width: 100%;
    height: 190px;
    object-fit: cover;
}
.success-card div { padding: 26px; }
.success-card small {
    display: inline-flex;
    margin-bottom: 12px;
    color: var(--primary);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: .09em;
    text-transform: uppercase;
}
.success-card strong {
    display: block;
    color: var(--accent);
    font-size: 56px;
    line-height: .95;
    letter-spacing: -.04em;
    margin-bottom: 18px;
}
.success-card h3 {
    font-size: 24px;
    line-height: 1.12;
    margin-bottom: 12px;
}
.success-card p { margin: 0; }

.timeline { position: relative; display: grid; gap: 18px; max-width: 720px; margin: 0 auto; }
.timeline div { display: grid; grid-template-columns: 48px 1fr; gap: 16px; align-items: center; }
.timeline span { display: grid; place-items: center; width: 42px; height: 42px; border-radius: 50%; background: var(--primary); color: #fff; font-weight: 900; border: 4px solid #fff; box-shadow: var(--shadow); }
.timeline strong { display: block; padding: 18px; border: 1px solid var(--line); background: #fff; border-radius: 10px; }

.process-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 18px;
    margin-top: 48px;
}
.process-card {
    position: relative;
    min-height: 285px;
    padding: 28px 22px;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #fff;
    box-shadow: var(--shadow-card);
    transition: .18s ease;
}
.process-card::before {
    content: "";
    position: absolute;
    inset: 0 0 auto;
    height: 5px;
    background: linear-gradient(90deg, var(--primary), #60a5fa);
}
.process-card::after {
    content: "";
    position: absolute;
    right: -34px;
    bottom: -34px;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: #eff6ff;
    pointer-events: none;
}
.process-card:hover {
    transform: translateY(-5px);
    border-color: rgba(37,99,235,.38);
    box-shadow: var(--shadow-card-hover);
}
.process-card span {
    display: grid;
    place-items: center;
    width: 48px;
    height: 48px;
    margin-bottom: 26px;
    border-radius: 16px;
    background: var(--primary);
    color: #fff;
    font-size: 20px;
    font-weight: 900;
    box-shadow: 0 14px 30px rgba(37,99,235,.26);
}
.process-card h3 {
    position: relative;
    z-index: 1;
    margin-bottom: 14px;
    font-size: 21px;
    line-height: 1.15;
    letter-spacing: -.02em;
}
.process-card p {
    position: relative;
    z-index: 1;
    margin: 0;
    font-size: 15px;
    line-height: 1.6;
}

.calculator { display: grid; grid-template-columns: 1fr 1fr; gap: 36px; align-items: stretch; }
.panel { padding: 30px; background: var(--soft); }
.panel label { display: block; margin-bottom: 22px; font-weight: 700; }
.panel label span { display: flex; justify-content: space-between; gap: 12px; margin-bottom: 10px; }
.panel b { color: var(--primary); }
input[type=range] { width: 100%; accent-color: var(--primary); }
.panel-blue { background: #eff6ff; border-color: #dbeafe; }
.metrics { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.metrics small { display: block; color: var(--muted); }
.metrics strong { display: block; font-size: 31px; margin-top: 4px; }
.metrics .big { grid-column: 1 / -1; background: #fff; border: 1px solid var(--line); border-radius: 12px; padding: 18px; }
.metrics .big strong { color: var(--accent); font-size: 42px; }

.split { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.chips { display: flex; flex-wrap: wrap; gap: 10px; }
.chips a {
    padding: 10px 15px;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: #fff;
    color: var(--muted);
    font-weight: 700;
    font-size: 14px;
}
.chips a:hover { border-color: var(--primary); color: var(--primary); }

.link-hub {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px;
}
.link-hub-card {
    position: relative;
    overflow: hidden;
    padding: 34px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #fff;
    box-shadow: var(--shadow-card);
}
.link-hub-card::after {
    content: "";
    position: absolute;
    right: -48px;
    top: -48px;
    width: 180px;
    height: 180px;
    border-radius: 50%;
    background: #dcfce7;
    opacity: .42;
    pointer-events: none;
}
.link-hub-card.is-blue::after {
    background: #dbeafe;
}
.link-hub-head {
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 18px;
    margin-bottom: 22px;
}
.link-hub-head span {
    display: inline-flex;
    padding: 8px 12px;
    border-radius: 999px;
    background: var(--soft2);
    color: var(--primary);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: .08em;
    text-transform: uppercase;
}
.link-hub-head strong {
    display: grid;
    place-items: center;
    width: 52px;
    height: 52px;
    border-radius: 16px;
    background: var(--primary);
    color: #fff;
    font-size: 22px;
}
.link-hub-card h2 {
    position: relative;
    z-index: 1;
    text-align: left;
    margin-bottom: 18px;
}
.link-hub-card p {
    position: relative;
    z-index: 1;
    max-width: 620px;
    margin-bottom: 26px;
    font-size: 17px;
}
.link-hub-card .chips {
    position: relative;
    z-index: 1;
    gap: 12px;
}
.link-hub-card .chips a {
    background: rgba(255,255,255,.84);
    border-color: #dbe3ef;
    box-shadow: 0 1px 2px rgba(15,23,42,.04);
}
.link-hub-card .chips a:hover {
    background: #eff6ff;
    border-color: var(--primary);
    transform: translateY(-1px);
}
.team .section h2, .team h2, .split h2 { text-align: left; }
.team-modern {
    display: grid;
    grid-template-columns: minmax(0, .92fr) minmax(430px, 1.08fr);
    gap: 64px;
    align-items: center;
}
.team-copy p {
    max-width: 660px;
    font-size: 18px;
    line-height: 1.75;
}
.team-points {
    display: grid;
    gap: 12px;
    margin: 28px 0;
}
.team-points div {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 16px;
    border: 1px solid var(--line);
    border-radius: 16px;
    background: #fff;
}
.team-points span {
    display: grid;
    place-items: center;
    width: 36px;
    height: 36px;
    border-radius: 12px;
    background: #dbeafe;
    color: var(--primary);
    font-size: 12px;
    font-weight: 900;
}
.team-points strong { font-size: 15px; }
.team-media {
    display: grid;
    gap: 18px;
}
.team-main-img {
    width: 100%;
    height: 390px;
    object-fit: cover;
    border-radius: var(--radius);
    box-shadow: var(--shadow-card-hover);
}
.team-small-imgs {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}
.team-small-imgs img {
    width: 100%;
    height: 190px;
    object-fit: cover;
    border-radius: var(--radius);
}
.stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-top: 24px; }
.stats div { background: var(--surface-blue); border: 1px solid #dbeafe; border-radius: 16px; padding: 16px; text-align: center; }
.stats b { display: block; color: var(--primary); font-size: 28px; }
.stats span { color: var(--muted); font-size: 13px; }
.photo-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.photo-grid img { width: 100%; height: 190px; object-fit: cover; border-radius: 18px; }
.photo-grid img:nth-child(even) { transform: translateY(24px); }
.dark-box {
    background: var(--dark);
    color: #fff;
    padding: 44px;
    border-radius: var(--radius);
    box-shadow: 0 25px 50px rgba(6, 24, 38, .22);
}
.dark-box h2, .dark-box p { color: #fff; text-align: center; }
.dark-box p { color: #cbd5e1; }

.faq-section {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at 10% 15%, rgba(37,99,235,.08), transparent 30%),
        linear-gradient(180deg, #fff, #f8fbff);
}
.faq-layout {
    display: grid;
    grid-template-columns: minmax(320px, .72fr) minmax(0, 1.28fr);
    gap: 56px;
    align-items: start;
}
.faq-intro {
    position: sticky;
    top: 96px;
}
.faq-intro h2 {
    text-align: left;
    margin-bottom: 20px;
}
.faq-intro p {
    max-width: 460px;
    margin-bottom: 28px;
    font-size: 18px;
    line-height: 1.7;
}
.faq {
    display: grid;
    gap: 14px;
}
.faq details {
    position: relative;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: rgba(255,255,255,.9);
    box-shadow: 0 8px 24px rgba(15,23,42,.05);
    transition: .18s ease;
}
.faq details:hover {
    border-color: rgba(37,99,235,.34);
    box-shadow: 0 16px 38px rgba(15,23,42,.08);
}
.faq details[open] {
    border-color: rgba(37,99,235,.45);
    background: #fff;
    box-shadow: var(--shadow-card);
}
.faq summary {
    position: relative;
    display: flex;
    align-items: center;
    gap: 16px;
    cursor: pointer;
    padding: 22px 64px 22px 24px;
    color: var(--fg);
    font-weight: 900;
    font-size: 18px;
    line-height: 1.35;
    list-style: none;
}
.faq summary::-webkit-details-marker {
    display: none;
}
.faq summary::before {
    content: "?";
    display: grid;
    place-items: center;
    width: 34px;
    height: 34px;
    flex: 0 0 34px;
    border-radius: 12px;
    background: #dbeafe;
    color: var(--primary);
    font-size: 18px;
    font-weight: 900;
}
.faq summary::after {
    content: "+";
    position: absolute;
    right: 24px;
    top: 50%;
    transform: translateY(-50%);
    display: grid;
    place-items: center;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: var(--soft2);
    color: var(--primary);
    font-size: 22px;
    font-weight: 900;
    transition: .18s ease;
}
.faq details[open] summary::after {
    content: "−";
    background: var(--primary);
    color: #fff;
}
.faq p {
    margin: 0;
    padding: 0 24px 24px 74px;
    color: var(--muted);
    font-size: 16px;
    line-height: 1.7;
}

.center-eyebrow { text-align: center; }
.service-hero {
    padding: 112px 0 78px;
}
.service-hero-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, .98fr) minmax(420px, 1.02fr);
    gap: 68px;
    align-items: center;
}
.service-hero-copy h1 {
    max-width: 780px;
}
.service-hero-copy p {
    max-width: 690px;
    font-size: 20px;
}
.service-hero .actions {
    justify-content: flex-start;
}
.service-hero-media {
    position: relative;
    overflow: hidden;
    min-height: 520px;
    border: 1px solid rgba(147,197,253,.22);
    border-radius: 26px;
    background: rgba(255,255,255,.06);
    box-shadow: 0 28px 70px rgba(0,0,0,.22);
}
.service-hero-media img {
    width: 100%;
    height: 100%;
    min-height: 520px;
    object-fit: cover;
    opacity: .88;
}
.service-hero-media::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(6,24,38,.02), rgba(6,24,38,.66));
}
.service-proof {
    position: absolute;
    left: 22px;
    right: 22px;
    bottom: 22px;
    z-index: 2;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}
.service-proof span {
    display: inline-flex;
    padding: 10px 13px;
    border: 1px solid rgba(255,255,255,.18);
    border-radius: 999px;
    background: rgba(6,24,38,.72);
    color: #fff;
    font-size: 13px;
    font-weight: 900;
}
.service-kpi-band {
    padding: 24px 0;
    background: #fff;
    border-bottom: 1px solid var(--line);
}
.service-kpi-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
}
.service-kpi-grid div {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: linear-gradient(180deg, #fff, #f8fbff);
}
.service-kpi-grid strong {
    display: grid;
    place-items: center;
    width: 42px;
    height: 42px;
    flex: 0 0 42px;
    border-radius: 14px;
    background: #dbeafe;
    color: var(--primary);
    font-size: 14px;
}
.service-kpi-grid span {
    color: #334155;
    font-weight: 800;
    line-height: 1.35;
}
.service-intent {
    background:
        radial-gradient(circle at 10% 10%, rgba(37,99,235,.06), transparent 32%),
        #ffffff;
}
.service-intent h2 {
    max-width: 680px;
}
.problem-card {
    position: relative;
    overflow: hidden;
    padding: 32px;
    border: 1px solid #dbeafe;
    border-radius: var(--radius);
    background: linear-gradient(180deg, #eff6ff, #ffffff);
    box-shadow: var(--shadow-card);
}
.problem-card::after {
    content: "";
    position: absolute;
    right: -64px;
    top: -64px;
    width: 180px;
    height: 180px;
    border-radius: 50%;
    background: rgba(37,99,235,.12);
}
.problem-card h3 {
    position: relative;
    z-index: 1;
    margin-bottom: 20px;
    font-size: 26px;
}
.problem-row {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 38px 1fr;
    gap: 14px;
    align-items: start;
    padding: 16px 0;
    border-top: 1px solid #dbeafe;
}
.problem-row:first-of-type { border-top: 0; }
.problem-row span {
    display: grid;
    place-items: center;
    width: 38px;
    height: 38px;
    border-radius: 13px;
    background: #fff7ed;
    color: #ea580c;
    font-weight: 900;
}
.problem-row p,
.benefit-row p {
    margin: 0;
    color: #334155;
    font-weight: 750;
}
.service-include-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}
.service-include-card {
    min-height: 176px;
    padding: 24px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: rgba(255,255,255,.92);
    box-shadow: 0 12px 30px rgba(15,23,42,.05);
    transition: .18s ease;
}
.service-include-card:hover {
    border-color: rgba(37,99,235,.32);
    transform: translateY(-3px);
    box-shadow: var(--shadow-card);
}
.service-include-card span {
    display: inline-flex;
    margin-bottom: 28px;
    padding: 8px 10px;
    border-radius: 999px;
    background: #dbeafe;
    color: var(--primary);
    font-size: 12px;
    font-weight: 900;
}
.service-include-card h3 {
    max-width: 280px;
    font-size: 20px;
    line-height: 1.25;
}
.service-process-section {
    background: #fff;
}
.service-process {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}
.service-process article {
    position: relative;
    overflow: hidden;
    min-height: 260px;
    padding: 26px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: linear-gradient(180deg, #fff, #f8fbff);
}
.service-process article::before {
    content: "";
    position: absolute;
    inset: 0 auto 0 0;
    width: 4px;
    background: var(--primary);
}
.service-process span {
    display: grid;
    place-items: center;
    width: 46px;
    height: 46px;
    margin-bottom: 30px;
    border-radius: 15px;
    background: var(--primary);
    color: #fff;
    font-weight: 900;
}
.service-process h3 {
    font-size: 20px;
    line-height: 1.2;
}
.service-process p {
    margin: 0;
    font-size: 15px;
}
.service-benefit-layout {
    display: grid;
    grid-template-columns: minmax(0, .88fr) minmax(460px, 1.12fr);
    gap: 58px;
    align-items: start;
}
.service-benefit-layout h2 {
    text-align: left;
}
.benefit-list {
    display: grid;
    gap: 12px;
}
.benefit-row {
    display: grid;
    grid-template-columns: 38px 1fr;
    gap: 14px;
    align-items: center;
    padding: 17px 18px;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: #fff;
    box-shadow: 0 8px 20px rgba(15,23,42,.04);
}
.benefit-row span {
    display: grid;
    place-items: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: #dcfce7;
    color: var(--accent);
    font-weight: 900;
}
.service-faq-section {
    background:
        radial-gradient(circle at 88% 16%, rgba(22,163,74,.08), transparent 28%),
        linear-gradient(180deg, #fff, #f8fbff);
}
.services-index-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
    margin-top: 36px;
}
.services-index-card {
    overflow: hidden;
    display: grid;
    grid-template-columns: minmax(190px, .85fr) minmax(0, 1.15fr);
    align-items: stretch;
    min-height: 260px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 12px 30px rgba(15,23,42,.05);
    transition: .18s ease;
}
.services-index-card:hover {
    border-color: rgba(37,99,235,.36);
    transform: translateY(-3px);
    box-shadow: var(--shadow-card);
}
.services-index-card img {
    width: 100%;
    height: 100%;
    min-height: 260px;
    object-fit: cover;
}
.services-index-card > div {
    display: grid;
    align-content: start;
    gap: 13px;
    padding: clamp(24px, 3vw, 36px);
}
.services-index-card span {
    color: var(--primary);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: .08em;
    text-transform: uppercase;
}
.services-index-card h3 {
    margin: 0;
    font-size: clamp(24px, 2vw, 34px);
    line-height: 1.1;
}
.services-index-card p {
    margin: 0;
    color: var(--muted);
    font-size: 17px;
    line-height: 1.55;
}
.services-index-card em {
    margin-top: 12px;
    color: var(--primary);
    font-size: 18px;
    font-style: normal;
    font-weight: 900;
}
.landing-link-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}
.landing-link-grid.compact {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}
.landing-link-card {
    position: relative;
    overflow: hidden;
    display: grid;
    gap: 16px;
    min-height: 184px;
    padding: 24px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: rgba(255,255,255,.92);
    box-shadow: 0 12px 30px rgba(15,23,42,.05);
    transition: .18s ease;
}
.landing-link-card::after {
    content: "";
    position: absolute;
    right: -46px;
    top: -46px;
    width: 130px;
    height: 130px;
    border-radius: 50%;
    background: rgba(37,99,235,.08);
}
.landing-link-card:hover {
    border-color: rgba(37,99,235,.36);
    transform: translateY(-3px);
    box-shadow: var(--shadow-card);
}
.landing-link-card span,
.landing-link-card strong,
.landing-link-card em {
    position: relative;
    z-index: 1;
}
.landing-link-card span {
    color: var(--primary);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: .08em;
    text-transform: uppercase;
}
.landing-link-card strong {
    max-width: 310px;
    font-size: 20px;
    line-height: 1.22;
}
.landing-link-card em {
    align-self: end;
    color: var(--primary);
    font-style: normal;
    font-weight: 900;
}
.service-link-card {
    display: block;
    color: inherit;
}
.service-link-card span {
    margin-bottom: 22px;
}
.city-proof {
    display: grid;
    grid-template-columns: minmax(0, .92fr) minmax(420px, 1.08fr);
    gap: 58px;
    align-items: center;
}
.city-proof h2 {
    text-align: left;
}
.city-proof blockquote {
    margin: 0;
    padding: 34px;
    border: 1px solid #dbeafe;
    border-radius: var(--radius);
    background: #fff;
    box-shadow: var(--shadow-card);
    color: var(--fg);
    font-size: 26px;
    line-height: 1.35;
    font-weight: 900;
}
.city-proof blockquote span {
    display: block;
    margin-top: 20px;
    color: var(--primary);
    font-size: 15px;
    line-height: 1.4;
}
.sector-strategy-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 26px;
    align-items: stretch;
}
.strategy-card {
    background: linear-gradient(180deg, #f0fdf4, #ffffff);
    border-color: #bbf7d0;
}
.strategy-card::after {
    background: rgba(22,163,74,.13);
}
.strategy-card .problem-row {
    border-color: #bbf7d0;
}
.strategy-card .problem-row span {
    background: #dcfce7;
    color: var(--accent);
}
.campaign-process article {
    min-height: 230px;
}
.contact-hero {
    padding-bottom: 96px;
}
.contact-hero-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, .88fr) minmax(460px, 1.12fr);
    gap: 60px;
    align-items: start;
}
.contact-highlights {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    max-width: 660px;
    margin-top: 34px;
}
.contact-highlights div {
    padding: 18px;
    border: 1px solid rgba(147,197,253,.24);
    border-radius: 18px;
    background: rgba(255,255,255,.07);
}
.contact-highlights strong {
    display: block;
    color: #fff;
    font-size: 30px;
    line-height: 1;
}
.contact-highlights span {
    display: block;
    margin-top: 8px;
    color: #cbd5e1;
    font-size: 13px;
    font-weight: 800;
}
.contact-form-panel {
    padding: 34px;
    border: 1px solid rgba(147,197,253,.2);
    border-radius: 26px;
    background: #fff;
    box-shadow: 0 30px 80px rgba(0,0,0,.24);
}
.contact-form-panel h2 {
    margin: 0 0 12px;
    color: var(--fg);
    text-align: left;
    font-size: 2.2rem;
    line-height: 1.05;
}
.contact-form-panel p {
    margin: 0 0 24px;
    color: var(--muted);
}
.contact-form-panel .form label {
    color: var(--fg);
}
.contact-process {
    display: grid;
    gap: 34px;
}
.contact-process > div:first-child {
    max-width: 820px;
}
.contact-process h2 {
    text-align: left;
}
.team-grid-modern {
    text-align: left;
}
.team-grid-modern article {
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #fff;
    box-shadow: 0 12px 30px rgba(15,23,42,.05);
}
.team-grid-modern img {
    aspect-ratio: 4 / 3;
    border-radius: 0;
    margin: 0;
}
.team-grid-modern article > div {
    padding: 18px;
}
.team-grid-modern strong {
    font-size: 18px;
}
.team-grid-modern span {
    display: block;
    margin: 6px 0 12px;
    color: var(--primary);
    font-size: 13px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .06em;
}
.team-grid-modern p {
    margin: 0;
    font-size: 14px;
    line-height: 1.6;
}
.about-values {
    background:
        radial-gradient(circle at 50% 0, rgba(96,165,250,.18), transparent 34%),
        var(--dark);
}
.about-values .eyebrow {
    color: #93c5fd;
}
.legal-head h1 {
    color: var(--fg);
}
.legal-head p {
    color: var(--muted);
}
.legal-section {
    background: #fff;
}
.legal-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 340px;
    gap: 42px;
    align-items: start;
}
.legal-content {
    padding: 38px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #fff;
    box-shadow: var(--shadow-card);
}
.legal-content h2 {
    margin: 34px 0 12px;
    text-align: left;
    font-size: 1.55rem;
    line-height: 1.2;
}
.legal-content h2:first-child {
    margin-top: 0;
}
.legal-content p {
    margin: 0;
    color: var(--muted);
    font-size: 16px;
    line-height: 1.75;
}
.legal-card {
    position: sticky;
    top: 88px;
    padding: 26px;
    border: 1px solid #dbeafe;
    border-radius: var(--radius);
    background: linear-gradient(180deg, #eff6ff, #fff);
    box-shadow: 0 14px 34px rgba(15,23,42,.06);
}
.legal-card h2 {
    margin: 0 0 18px;
    text-align: left;
    font-size: 1.35rem;
}
.legal-card dl {
    display: grid;
    gap: 12px;
    margin: 0;
}
.legal-card dt {
    color: var(--primary);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: .07em;
    text-transform: uppercase;
}
.legal-card dd {
    margin: -6px 0 0;
    color: #334155;
    font-weight: 750;
    line-height: 1.45;
}
.legal-note {
    margin: 20px 0 0;
    padding: 14px;
    border-radius: 14px;
    background: #fff7ed;
    color: #9a3412 !important;
    font-size: 14px !important;
    line-height: 1.5 !important;
}

.page-head { padding-top: 96px; text-align: center; }
.page-head h1 { color: var(--fg); font-size: 3.5rem; }
.page-head p { color: var(--muted); max-width: 760px; margin-left: auto; margin-right: auto; }
.service-list { display: grid; gap: 84px; }
.service-row { display: grid; grid-template-columns: 1.2fr .8fr; gap: 48px; align-items: center; }
.service-row.reverse > div:first-child { order: 2; }
.service-row .number {
    aspect-ratio: 1;
    display: grid;
    place-items: center;
    border: 1px solid var(--line);
    border-radius: 22px;
    background: #fff;
    box-shadow: var(--shadow);
    color: var(--primary);
    font-size: 46px;
    font-weight: 900;
}
ul { padding-left: 0; list-style: none; }
.service-row li, .clean-list li { display: flex; gap: 10px; margin: 13px 0; line-height: 1.5; }
.check { color: var(--accent); font-weight: 900; }
.mini-check { padding: 18px; font-weight: 700; color: #334155; }
.nav-prev-next { display: flex; justify-content: space-between; gap: 16px; font-weight: 800; color: var(--primary); }
.dark-cta { background: var(--dark); color: #fff; text-align: center; }
.dark-cta h2, .dark-cta p { color: #fff; }
.dark-cta p { color: #cbd5e1; }
.card-link { display: block; }
.testimonial { text-align: center; }
.testimonial blockquote { margin: 0 0 12px; font-size: 24px; line-height: 1.45; font-weight: 800; }
.box { padding: 28px; }
.box h2 { text-align: left; font-size: 3rem; margin-bottom: 18px; }
.box li { margin: 12px 0; color: #475569; line-height: 1.5; }
.box.red { background: #ffffff; border-color: #dbeafe; }
.box.green { background: #ffffff; border-color: #dbeafe; }
.wide-img { width: 100%; aspect-ratio: 3 / 1; object-fit: cover; border-radius: 22px; margin-top: 32px; }
.team-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; text-align: center; }
.team-grid img { width: 100%; aspect-ratio: 1; object-fit: cover; border-radius: 18px; margin-bottom: 12px; }
.team-grid strong { display: block; }
.team-grid span { color: var(--muted); font-size: 14px; }
.values { background: var(--primary); color: #fff; text-align: center; }
.values h2 { color: #fff; }
.values b { display: block; font-size: 20px; margin-bottom: 8px; }
.values span { color: #dbeafe; }

.form-card { padding: 30px; box-shadow: var(--shadow); text-align: left; }
.form { display: grid; gap: 20px; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form label { display: grid; gap: 8px; color: var(--fg); font-weight: 800; font-size: 14px; }
.form input, .form select, .form textarea {
    width: 100%;
    min-height: 46px;
    border: 1px solid var(--line);
    border-radius: 10px;
    padding: 11px 13px;
    font: inherit;
    color: var(--fg);
    background: #fff;
}
.form textarea { min-height: 130px; resize: vertical; }
.form-dark label { color: #fff; }
.form-dark input, .form-dark select, .form-dark textarea { background: var(--dark2); border-color: #334155; color: #fff; }
.thanks { min-height: 70vh; display: grid; place-items: center; text-align: center; }
.success { width: 92px; height: 92px; margin: 0 auto 22px; display: grid; place-items: center; border-radius: 50%; background: #dcfce7; color: var(--accent); font-size: 50px; font-weight: 900; }

.footer { margin-top: auto; padding: 48px 0 28px; background: var(--soft); border-top: 1px solid var(--line); }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 32px; }
.footer p { color: var(--muted); line-height: 1.6; }
.footer h3 { margin: 0 0 16px; }
.footer a:not(.brand) { display: block; color: var(--muted); margin: 10px 0; font-size: 14px; }
.footer a:hover { color: var(--primary); }
.copyright { margin-top: 32px; padding-top: 24px; border-top: 1px solid var(--line); text-align: center; color: var(--muted); font-size: 14px; }
.blog-head { padding-bottom: 76px; }
.blog-index-section { background: #f8fafc; }
.blog-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 28px; }
.blog-card { background: #fff; border: 1px solid var(--line); border-radius: 8px; overflow: hidden; box-shadow: var(--shadow-soft); }
.blog-card-image { display: block; height: 260px; background: var(--soft); }
.blog-card-image img { width: 100%; height: 100%; object-fit: cover; }
.blog-card-body { padding: 28px; }
.blog-date, .blog-meta, .blog-cta span { display: block; color: var(--primary); font-size: 13px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.blog-card h2 { font-size: 1.65rem; line-height: 1.18; margin: 10px 0 14px; }
.blog-card h2 a { color: var(--fg); }
.blog-card p { color: var(--muted); margin: 0 0 20px; }
.text-link { color: var(--primary); font-weight: 800; }
.blog-pagination { margin-top: 38px; }
.blog-single-head { padding-bottom: 64px; }
.blog-meta { display: flex; justify-content: center; gap: 18px; color: #93c5fd; }
.blog-featured-image { margin-top: -42px; position: relative; z-index: 2; }
.blog-featured-image img { width: 100%; max-height: 520px; object-fit: cover; border-radius: 8px; box-shadow: var(--shadow-card); }
.blog-content-layout { display: grid; grid-template-columns: minmax(0, 760px) 320px; gap: 56px; align-items: start; }
.blog-content { color: var(--fg); font-size: 19px; line-height: 1.75; }
.blog-content h2 { font-size: 2rem; line-height: 1.2; margin: 42px 0 14px; }
.blog-content p { color: var(--muted); margin: 0 0 20px; }
.blog-cta { position: sticky; top: 98px; background: var(--dark); color: #fff; border-radius: 8px; padding: 28px; }
.blog-cta h2 { color: #fff; font-size: 1.55rem; line-height: 1.2; margin: 10px 0 12px; }
.blog-cta p { color: #cbd5e1; margin: 0 0 22px; }
.whatsapp {
    position: fixed;
    right: 24px;
    bottom: 24px;
    z-index: 45;
    width: 58px;
    height: 58px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: #22c55e;
    color: #fff;
    box-shadow: var(--shadow);
}
.whatsapp svg {
    width: 31px;
    height: 31px;
    fill: currentColor;
}
.mobile-cta { display: none; }

@media (max-width: 900px) {
    .nav-toggle { display: inline-flex; }
    .nav-links {
        position: absolute;
        top: 64px;
        left: 0;
        right: 0;
        display: none;
        flex-direction: column;
        align-items: stretch;
        padding: 14px 16px 18px;
        background: #fff;
        border-bottom: 1px solid var(--line);
    }
    .nav-links.open { display: flex; }
    .nav-item > button, .nav-links > a { width: 100%; text-align: left; }
    .dropdown { position: static; display: none; opacity: 1; pointer-events: auto; transform: none; box-shadow: none; margin: 0 0 8px 12px; min-width: 0; }
    .nav-item:hover .dropdown, .nav-item.open .dropdown { display: block; }
    .hero-split, .split, .calculator, .service-row, .service-feature-grid, .service-hero-grid, .contact-hero-grid, .service-kpi-grid, .service-benefit-layout, .city-proof, .sector-strategy-grid, .legal-layout, .card-grid.two, .card-grid.three, .card-grid.four, .footer-grid, .blog-grid, .blog-content-layout { grid-template-columns: 1fr; }
    .success-grid, .team-modern { grid-template-columns: 1fr; }
    .faq-layout { grid-template-columns: 1fr; gap: 30px; }
    .faq-intro { position: static; }
    .legal-card { position: static; }
    .blog-cta { position: static; }
    .link-hub { grid-template-columns: 1fr; }
    .process-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .services-index-grid { grid-template-columns: 1fr; }
    .service-include-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .service-process { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .landing-link-grid, .landing-link-grid.compact { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .comparison { grid-template-columns: 1fr; }
    .comparison::before { display: none; }
    .seo-copy .split { grid-template-columns: 1fr; gap: 36px; }
    .hero-split img { display: none; }
    .service-hero-media { min-height: 360px; }
    .service-hero-media img { min-height: 360px; }
    .contact-form-panel { box-shadow: var(--shadow-card); }
    .hero h1, .page-head h1 { font-size: 3.5rem; line-height: 59px; }
    .hero-home h1 { font-size: 4.2rem; }
    .section { padding: 64px 0; }
    .service-row.reverse > div:first-child { order: 0; }
    .team-grid { grid-template-columns: repeat(2, 1fr); }
    .stats, .form-grid { grid-template-columns: 1fr; }
    .photo-grid img:nth-child(even) { transform: none; }
    .mobile-cta { display: block; position: fixed; left: 0; right: 0; bottom: 0; z-index: 44; padding: 12px 16px; background: rgba(255,255,255,.96); border-top: 1px solid var(--line); }
    .mobile-cta .btn { width: 100%; min-height: 44px; }
    .whatsapp { bottom: 78px; }
}

@media (max-width: 560px) {
    .container { width: min(100% - 24px, 1120px); }
    .hero { padding: 104px 0 64px; }
    .hero-home { min-height: auto; }
    .actions { flex-direction: column; align-items: stretch; }
    .btn { width: 100%; }
    .dark-box { padding: 28px 18px; }
    .metrics { grid-template-columns: 1fr; }
    .faq summary { padding: 18px 54px 18px 18px; font-size: 16px; }
    .faq summary::before { width: 30px; height: 30px; flex-basis: 30px; }
    .faq summary::after { right: 18px; }
    .faq p { padding: 0 18px 20px 64px; }
    .success-card img, .team-main-img, .team-small-imgs img { height: 220px; }
    .team-small-imgs { grid-template-columns: 1fr; }
    .link-hub-card { padding: 24px; }
    .process-grid { grid-template-columns: 1fr; }
    .process-card { min-height: auto; }
    .seo-image, .seo-image img { min-height: 320px; }
    .service-feature-card { grid-template-columns: 1fr; }
    .service-feature-card img { height: 190px; min-height: 190px; }
    .service-feature-card > div { padding: 22px; }
    .service-feature-card .btn { width: auto; }
    .service-hero { padding: 96px 0 56px; }
    .service-hero-copy p { font-size: 18px; }
    .contact-highlights { grid-template-columns: 1fr; }
    .contact-form-panel { padding: 24px; border-radius: 20px; }
    .contact-form-panel h2 { font-size: 1.8rem; }
    .service-hero-media { min-height: 300px; border-radius: 20px; }
    .service-hero-media img { min-height: 300px; }
    .service-kpi-grid div { align-items: flex-start; }
    .services-index-card { min-height: auto; }
    .services-index-card { grid-template-columns: 1fr; }
    .services-index-card img { min-height: 220px; height: 220px; }
    .service-include-grid, .service-process { grid-template-columns: 1fr; }
    .landing-link-grid, .landing-link-grid.compact { grid-template-columns: 1fr; }
    .service-include-card, .service-process article { min-height: auto; }
    .landing-link-card { min-height: auto; }
    .city-proof blockquote { padding: 24px; font-size: 21px; }
    .legal-content, .legal-card { padding: 24px; }
    .problem-card { padding: 24px; }
    .service-proof { position: static; padding: 14px; background: var(--dark); }
    .team-grid { grid-template-columns: 1fr; }
    .nav-prev-next { flex-direction: column; }
}
