:root {
    --ink: #111114;
    --text: #1d1d1f;
    --muted: #6e6e73;
    --paper: #f5f5f7;
    --surface: #ffffff;
    --surface-soft: #fbfbfd;
    --line: #e5e5ea;
    --line-strong: #d2d2d7;
    --blue: #0071e3;
    --blue-hover: #0077ed;
    --green: #16a36b;
    --shadow: 0 18px 60px rgba(0, 0, 0, .08);
    --soft-shadow: 0 8px 28px rgba(0, 0, 0, .06);
    --radius: 8px;
    --max: 1120px;
    --header-h: 64px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: auto;
    background: var(--paper);
}

body {
    margin: 0;
    color: var(--text);
    background: var(--paper);
    font-family: -apple-system, BlinkMacSystemFont, "SF Pro Text", "Segoe UI", Arial, sans-serif;
    font-size: 16px;
    line-height: 1.55;
    letter-spacing: 0;
    -webkit-font-smoothing: antialiased;
}

body.menu-open {
    overflow: hidden;
}

img {
    display: block;
    max-width: 100%;
}

a {
    color: inherit;
}

button,
input,
select,
textarea {
    font: inherit;
}

.sr-only,
.skip-link {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.skip-link:focus {
    z-index: 120;
    top: 12px;
    left: 12px;
    width: auto;
    height: auto;
    margin: 0;
    clip: auto;
    padding: 10px 14px;
    color: var(--text);
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius);
}

.site-header {
    position: fixed;
    z-index: 90;
    top: 12px;
    left: 50%;
    width: min(var(--max), calc(100% - 32px));
    height: var(--header-h);
    display: grid;
    grid-template-columns: 252px minmax(0, 1fr) auto;
    align-items: center;
    gap: 20px;
    padding: 0 12px 0 16px;
    background: rgba(251, 251, 253, .74);
    border: 1px solid rgba(210, 210, 215, .72);
    border-radius: 999px;
    box-shadow: 0 10px 34px rgba(0, 0, 0, .08);
    backdrop-filter: saturate(180%) blur(22px);
    transform: translateX(-50%);
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    min-width: 0;
    text-decoration: none;
}

.brand img {
    width: 30px;
    height: 30px;
    border-radius: 7px;
}

.logo-brand {
    display: grid;
    gap: 1px;
    align-content: center;
    justify-items: start;
}

.logo-brand .brand-logo {
    width: 176px;
    height: auto;
    border-radius: 0;
}

.logo-brand small {
    color: var(--muted);
    font-size: 11px;
    font-weight: 650;
    line-height: 1.1;
}

.brand span {
    display: grid;
    gap: 0;
}

.brand strong {
    color: var(--ink);
    font-size: 14px;
    font-weight: 700;
    line-height: 1.1;
}

.brand small {
    color: var(--muted);
    font-size: 10px;
    font-weight: 600;
    line-height: 1.1;
}

.desktop-nav {
    justify-self: center;
    display: flex;
    align-items: center;
    gap: 6px;
}

.desktop-nav a {
    position: relative;
    min-height: 40px;
    display: inline-flex;
    align-items: center;
    padding: 0 14px;
    color: rgba(29, 29, 31, .72);
    border-radius: 999px;
    font-size: 14px;
    font-weight: 650;
    text-decoration: none;
    transition: color .18s ease, background .18s ease;
}

.desktop-nav a:hover,
.desktop-nav a.active {
    color: var(--text);
    background: rgba(0, 0, 0, .045);
}

.header-actions {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.phone-pill {
    min-height: 40px;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 0 12px;
    color: var(--muted);
    border: 1px solid transparent;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 650;
    text-decoration: none;
}

.phone-pill span {
    display: none;
}

.phone-pill strong {
    color: inherit;
    font-size: inherit;
    line-height: 1;
}

.menu-toggle {
    display: none;
    width: 40px;
    height: 40px;
    padding: 0 10px;
    border: 0;
    border-radius: 50%;
    background: rgba(0, 0, 0, .045);
    cursor: pointer;
}

.menu-toggle span:not(.sr-only) {
    display: block;
    height: 1.5px;
    margin: 5px 0;
    background: var(--ink);
    border-radius: 2px;
}

.mobile-menu {
    position: fixed;
    z-index: 80;
    inset: 0;
    display: none;
    align-content: start;
    gap: 18px;
    padding: 88px 18px 24px;
    color: var(--text);
    background: rgba(245, 245, 247, .92);
    backdrop-filter: saturate(180%) blur(26px);
}

.mobile-menu.open {
    display: grid;
}

.mobile-menu-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: var(--muted);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
}

.mobile-menu-head button {
    min-height: 34px;
    padding: 0 12px;
    border: 1px solid var(--line);
    border-radius: 999px;
    color: var(--text);
    background: rgba(255, 255, 255, .72);
    cursor: pointer;
}

.mobile-menu nav {
    display: grid;
    overflow: hidden;
    background: rgba(255, 255, 255, .72);
    border: 1px solid var(--line);
    border-radius: 18px;
    box-shadow: var(--soft-shadow);
}

.mobile-menu nav a {
    display: flex;
    align-items: center;
    min-height: 52px;
    padding: 0 18px;
    color: var(--text);
    border-bottom: 1px solid var(--line);
    font-size: 17px;
    font-weight: 650;
    text-decoration: none;
}

.mobile-menu nav a:last-child {
    border-bottom: 0;
}

.mobile-menu nav a.active {
    color: var(--blue);
}

.mobile-menu-cta {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.btn {
    min-height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 0 17px;
    border: 1px solid transparent;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 650;
    text-decoration: none;
    cursor: pointer;
    transition: background .18s ease, color .18s ease, border-color .18s ease, transform .18s ease;
}

.btn:hover {
    transform: translateY(-1px);
}

.btn.primary {
    color: #fff;
    background: var(--blue);
}

.btn.primary:hover {
    background: var(--blue-hover);
}

.btn.secondary,
.btn.glass {
    color: var(--blue);
    background: rgba(0, 113, 227, .08);
    border-color: rgba(0, 113, 227, .12);
}

.btn.small {
    min-height: 34px;
    padding: 0 13px;
    font-size: 12px;
}

.btn.compact {
    min-height: 38px;
}

.btn.wide {
    width: 100%;
}

.text-link {
    display: inline-flex;
    align-items: center;
    color: var(--blue);
    font-weight: 650;
    text-decoration: none;
}

.text-link::after {
    content: "";
    width: 7px;
    height: 7px;
    margin-left: 7px;
    border-top: 1.7px solid currentColor;
    border-right: 1.7px solid currentColor;
    transform: rotate(45deg);
}

main {
    min-height: 60vh;
}

.hero {
    position: relative;
    overflow: hidden;
}

.home-hero {
    min-height: 720px;
    color: var(--text);
    background:
        radial-gradient(circle at 76% 20%, rgba(0, 113, 227, .12), transparent 32%),
        linear-gradient(180deg, #fff 0%, var(--paper) 100%);
}

.hero-media {
    position: absolute;
    right: max(26px, calc((100vw - var(--max)) / 2));
    bottom: 74px;
    width: min(510px, 42vw);
    height: 390px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, .76);
    border-radius: 28px;
    box-shadow: 0 30px 90px rgba(0, 0, 0, .14);
    background: #d8dce3;
}

.hero-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(.94) contrast(.98);
}

.hero-shade {
    display: none;
}

.hero-inner {
    position: relative;
    z-index: 1;
    width: min(var(--max), calc(100% - 44px));
    min-height: 720px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 580px) 340px;
    align-items: center;
    gap: 42px;
    padding-top: 72px;
}

.hero-copy {
    max-width: 580px;
    padding-top: 24px;
}

.hero-copy h1 {
    max-width: 580px;
}

.hero-copy .hero-lead {
    max-width: 570px;
}

.hero-copy h1,
.page-hero h1,
.article-hero h1 {
    max-width: 720px;
    margin: 0;
    color: var(--ink);
    font-size: clamp(38px, 4.8vw, 60px);
    font-weight: 700;
    line-height: 1.03;
    letter-spacing: -.015em;
}

.page-hero h1,
.article-hero h1 {
    font-size: clamp(36px, 4.2vw, 54px);
}

.hero-lead,
.page-hero p,
.article-hero p {
    max-width: 650px;
    margin: 18px 0 0;
    color: var(--muted);
    font-size: clamp(17px, 1.65vw, 21px);
    line-height: 1.45;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 26px;
}

.hero-panel {
    align-self: end;
    margin-bottom: 86px;
    padding: 18px;
    background: rgba(255, 255, 255, .74);
    border: 1px solid rgba(210, 210, 215, .74);
    border-radius: 18px;
    box-shadow: var(--soft-shadow);
    backdrop-filter: saturate(180%) blur(20px);
}

.hero-panel h2 {
    margin: 10px 0 12px;
    color: var(--ink);
    font-size: 21px;
    line-height: 1.16;
}

.hero-panel ul {
    display: grid;
    gap: 8px;
    padding: 0;
    margin: 0;
    list-style: none;
}

.hero-panel li {
    color: var(--muted);
    font-size: 14px;
}

.live-dot {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--muted);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
}

.live-dot::before {
    content: "";
    width: 8px;
    height: 8px;
    background: var(--green);
    border-radius: 50%;
}

.eyebrow {
    margin: 0 0 10px;
    color: var(--blue);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .01em;
    text-transform: none;
}

.metric-band {
    width: min(var(--max), calc(100% - 44px));
    position: relative;
    z-index: 3;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    overflow: hidden;
    margin: -46px auto 0;
    background: var(--line);
    border: 1px solid var(--line);
    border-radius: 18px;
    box-shadow: var(--soft-shadow);
}

.metric-band div {
    min-height: 104px;
    display: grid;
    align-content: center;
    gap: 3px;
    padding: 20px 22px;
    background: rgba(255, 255, 255, .86);
}

.metric-band strong {
    color: var(--ink);
    font-size: clamp(25px, 2.6vw, 34px);
    font-weight: 700;
    line-height: 1;
    letter-spacing: -.01em;
}

.metric-band span {
    color: var(--muted);
    font-size: 13px;
    font-weight: 600;
}

.section {
    width: min(var(--max), calc(100% - 44px));
    margin: 0 auto;
    padding: 82px 0;
}

.section-heading {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: end;
    gap: 24px;
    margin-bottom: 24px;
}

.section-heading h2,
.section-copy h2,
.pricing-note h2,
.ai-seo-band h2,
.growth-band h2,
.faq-modern-head h2,
.faq-whatsapp-card h2,
.whatsapp-contact-card h2 {
    max-width: 760px;
    margin: 0;
    color: var(--ink);
    font-size: clamp(30px, 3.4vw, 42px);
    font-weight: 700;
    line-height: 1.08;
    letter-spacing: -.012em;
}

.section-copy p,
.content-article p,
.pricing-note p,
.article-body p {
    color: var(--muted);
    font-size: 17px;
}

.split-section {
    display: grid;
    grid-template-columns: minmax(0, .95fr) minmax(320px, 1fr);
    align-items: center;
    gap: 48px;
}

.split-section.reverse {
    grid-template-columns: minmax(320px, .8fr) minmax(0, 1fr);
}

.glass-board,
.side-panel,
.contact-panel,
.contact-info,
.detail-card,
.article-card,
.whatsapp-contact-card {
    background: rgba(255, 255, 255, .78);
    border: 1px solid var(--line);
    border-radius: 18px;
    box-shadow: var(--soft-shadow);
}

.glass-board {
    padding: 8px;
}

.board-row {
    display: grid;
    grid-template-columns: 92px minmax(0, 1fr);
    gap: 14px;
    align-items: center;
    min-height: 68px;
    padding: 12px 14px;
    border-bottom: 1px solid var(--line);
}

.board-row:last-child {
    border-bottom: 0;
}

.board-row span {
    color: var(--muted);
    font-size: 12px;
    font-weight: 650;
}

.board-row strong {
    color: var(--ink);
    font-size: 18px;
    line-height: 1.22;
}

.seo-editorial {
    display: grid;
    gap: 18px;
}

.seo-editorial-head {
    max-width: 860px;
}

.seo-editorial-head h2,
.seo-answer-card h2 {
    max-width: 820px;
    margin: 0;
    color: var(--ink);
    font-size: clamp(30px, 3.4vw, 42px);
    font-weight: 700;
    line-height: 1.08;
    letter-spacing: -.012em;
}

.seo-editorial-head p:not(.eyebrow),
.seo-answer-card p {
    color: var(--muted);
    font-size: 17px;
}

.seo-editorial-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
}

.seo-editorial-grid article,
.seo-answer-card {
    padding: 24px;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: 18px;
    box-shadow: var(--soft-shadow);
}

.seo-editorial-grid article span {
    width: 34px;
    height: 34px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--blue);
    background: rgba(0, 113, 227, .08);
    border-radius: 50%;
    font-size: 12px;
    font-weight: 700;
}

.seo-editorial-grid h3 {
    margin: 20px 0 9px;
    color: var(--ink);
    font-size: 22px;
    line-height: 1.14;
}

.seo-editorial-grid p {
    margin: 0;
    color: var(--muted);
}

.seo-answer-card {
    display: grid;
    gap: 10px;
}

.seo-answer-card p {
    max-width: 920px;
    margin: 0;
}

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

.service-card {
    min-height: 214px;
    display: grid;
    align-content: start;
    padding: 22px;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: 18px;
    box-shadow: var(--soft-shadow);
}

.service-card span {
    width: 34px;
    height: 34px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--blue);
    background: rgba(0, 113, 227, .08);
    border-radius: 50%;
    font-size: 12px;
    font-weight: 700;
}

.service-card h3 {
    margin: 22px 0 8px;
    color: var(--ink);
    font-size: 21px;
    line-height: 1.15;
}

.service-card p,
.detail-card p,
.price-card p,
.handoff-grid p,
.compare-strip p,
.article-card p {
    color: var(--muted);
    margin: 0;
}

.timeline {
    display: grid;
    gap: 12px;
}

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

.timeline article {
    display: grid;
    grid-template-columns: 44px minmax(0, 1fr);
    gap: 16px;
    padding: 20px;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: 18px;
    box-shadow: var(--soft-shadow);
}

.timeline.mini article {
    grid-template-columns: 1fr;
}

.timeline article span {
    width: 34px;
    height: 34px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--muted);
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: 50%;
    font-size: 12px;
    font-weight: 700;
}

.timeline article h2,
.timeline article h3 {
    margin: 0 0 8px;
    color: var(--ink);
    font-size: 21px;
    line-height: 1.15;
}

.timeline article p {
    margin: 0;
    color: var(--muted);
}

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

.pricing-grid.full {
    align-items: start;
}

.price-card {
    position: relative;
    display: grid;
    gap: 16px;
    padding: 24px;
    overflow: hidden;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: 18px;
    box-shadow: var(--soft-shadow);
}

.price-card.featured {
    border-color: rgba(0, 113, 227, .34);
    box-shadow: 0 18px 58px rgba(0, 113, 227, .13);
}

.badge {
    width: max-content;
    display: inline-flex;
    align-items: center;
    min-height: 26px;
    padding: 0 10px;
    color: var(--blue);
    background: rgba(0, 113, 227, .08);
    border-radius: 999px;
    font-size: 12px;
    font-weight: 700;
}

.price-head {
    display: grid;
    gap: 8px;
}

.price-card h2,
.price-card h3 {
    margin: 0;
    color: var(--ink);
    font-size: 27px;
    line-height: 1.08;
}

.installment-callout {
    display: grid;
    gap: 3px;
    padding: 14px;
    background:
        linear-gradient(135deg, rgba(0, 113, 227, .1), rgba(22, 163, 107, .08));
    border: 1px solid rgba(0, 113, 227, .14);
    border-radius: 16px;
}

.installment-callout.compact {
    padding: 12px;
}

.installment-callout span,
.price-amount span {
    color: var(--blue);
    font-size: 11px;
    font-weight: 750;
}

.installment-callout strong {
    margin: 0;
    color: var(--ink);
    font-size: 18px;
    line-height: 1.12;
    letter-spacing: 0;
}

.installment-callout small {
    color: var(--muted);
    font-size: 12px;
    font-weight: 650;
    line-height: 1.35;
}

.price-card.featured .installment-callout {
    background:
        linear-gradient(135deg, rgba(0, 113, 227, .13), rgba(22, 163, 107, .1));
    border-color: rgba(0, 113, 227, .24);
}

.price-amount {
    display: grid;
    gap: 5px;
}

.price-amount strong {
    display: block;
    margin: 0;
    color: var(--ink);
    font-size: 30px;
    line-height: 1;
    letter-spacing: -.01em;
}

.price-amount small {
    color: var(--muted);
    font-size: 13px;
    font-weight: 600;
}

.check-list {
    display: grid;
    gap: 9px;
    padding: 0;
    margin: 0;
    list-style: none;
}

.check-list li {
    position: relative;
    padding-left: 24px;
    color: var(--muted);
}

.check-list li::before {
    content: "";
    position: absolute;
    top: .62em;
    left: 0;
    width: 13px;
    height: 7px;
    border-left: 1.8px solid var(--green);
    border-bottom: 1.8px solid var(--green);
    transform: rotate(-45deg);
}

.faq-list {
    display: grid;
    gap: 10px;
}

.faq-list details {
    background: rgba(255, 255, 255, .82);
    border: 1px solid var(--line);
    border-radius: 16px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, .035);
}

.faq-list summary {
    min-height: 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 16px 18px;
    color: var(--ink);
    font-size: 17px;
    font-weight: 650;
    cursor: pointer;
}

.faq-list summary::after {
    content: "+";
    color: var(--muted);
    font-size: 22px;
    font-weight: 400;
    line-height: 1;
}

.faq-list details[open] summary::after {
    content: "−";
}

.faq-list details p {
    margin: 0;
    padding: 0 18px 18px;
    color: var(--muted);
}

.center-action {
    display: flex;
    justify-content: center;
    margin-top: 22px;
}

.page-hero {
    position: relative;
    min-height: 430px;
    display: grid;
    align-items: end;
    overflow: hidden;
    padding: 140px max(22px, calc((100vw - var(--max)) / 2)) 64px;
    color: var(--text);
    background:
        radial-gradient(circle at 82% 16%, rgba(0, 113, 227, .13), transparent 34%),
        linear-gradient(180deg, #fff 0%, var(--paper) 100%);
}

.page-hero > img {
    position: absolute;
    right: max(22px, calc((100vw - var(--max)) / 2));
    bottom: 36px;
    width: min(360px, 32vw);
    height: auto;
    max-height: 260px;
    object-fit: contain;
    opacity: .5;
}

.page-hero > div {
    position: relative;
    z-index: 1;
    max-width: 760px;
}

.page-hero::after {
    display: none;
}

.light-hero {
    width: min(var(--max), calc(100% - 44px));
    min-height: 0;
    grid-template-columns: minmax(0, .98fr) minmax(280px, .66fr);
    gap: 44px;
    align-items: center;
    margin: 0 auto;
    padding: 136px 0 64px;
    background: transparent;
}

.light-hero > img {
    position: relative;
    right: auto;
    bottom: auto;
    width: 100%;
    height: auto;
    max-height: 340px;
    object-fit: contain;
    opacity: 1;
}

.pricing-hero,
.contact-hero,
.faq-hero {
    min-height: 410px;
}

.faq-hero {
    grid-template-columns: minmax(0, 760px);
    align-items: end;
}

.faq-hero > div {
    max-width: 760px;
}

.editorial-layout,
.process-layout,
.faq-layout,
.contact-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 320px;
    align-items: start;
    gap: 30px;
}

.content-article {
    max-width: 790px;
}

.content-article h2 {
    margin: 0 0 18px;
    color: var(--ink);
    font-size: clamp(30px, 3.3vw, 42px);
    line-height: 1.08;
}

.side-panel {
    padding: 20px;
}

.side-panel h2 {
    margin: 0 0 16px;
    color: var(--ink);
    font-size: 22px;
    line-height: 1.15;
}

.side-panel a:not(.btn) {
    display: block;
    padding: 11px 0;
    color: var(--muted);
    border-bottom: 1px solid var(--line);
    font-weight: 650;
    text-decoration: none;
}

.sticky-panel {
    position: sticky;
    top: 92px;
}

.value-list {
    display: grid;
    gap: 10px;
}

.value-list div {
    display: grid;
    gap: 4px;
    padding: 14px;
    background: var(--surface-soft);
    border: 1px solid var(--line);
    border-radius: 14px;
}

.value-list span {
    color: var(--muted);
}

.statement-band {
    padding: 42px;
    color: var(--ink);
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: 22px;
    box-shadow: var(--soft-shadow);
}

.statement-band p {
    max-width: 860px;
    margin: 0;
    font-size: clamp(25px, 3vw, 38px);
    font-weight: 700;
    line-height: 1.12;
    letter-spacing: -.012em;
}

.service-detail-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
}

.detail-card {
    padding: 24px;
}

.detail-card h2 {
    margin: 0 0 10px;
    color: var(--ink);
    font-size: 27px;
    line-height: 1.1;
}

.detail-card .check-list {
    margin-top: 18px;
}

.image-card {
    padding: 24px;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: 22px;
    box-shadow: var(--soft-shadow);
}

.image-card img {
    width: 100%;
    max-height: 390px;
    object-fit: contain;
}

.ai-seo-band,
.growth-band {
    display: grid;
    grid-template-columns: minmax(0, .9fr) minmax(300px, 1fr);
    gap: 26px;
    align-items: center;
    padding: 40px;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: 22px;
    box-shadow: var(--soft-shadow);
}

.ai-seo-grid,
.growth-pill-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
}

.ai-seo-grid span,
.growth-pill-grid span {
    min-height: 34px;
    display: inline-flex;
    align-items: center;
    padding: 0 11px;
    color: var(--muted);
    background: var(--surface-soft);
    border: 1px solid var(--line);
    border-radius: 999px;
    font-size: 13px;
    font-weight: 650;
}

.handoff-grid,
.compare-strip,
.article-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
}

.handoff-grid article,
.compare-strip article {
    padding: 22px;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: 18px;
    box-shadow: var(--soft-shadow);
}

.handoff-grid h3,
.compare-strip strong {
    display: block;
    margin: 0 0 9px;
    color: var(--ink);
    font-size: 22px;
    line-height: 1.15;
}

.compare-strip span {
    color: var(--blue);
    font-size: 12px;
    font-weight: 700;
}

.pricing-note {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(300px, .75fr);
    gap: 30px;
    padding: 40px;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: 22px;
    box-shadow: var(--soft-shadow);
}

.payment-highlight {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, .78fr);
    gap: 28px;
    align-items: center;
    padding: 36px;
    background:
        radial-gradient(circle at 92% 8%, rgba(22, 163, 107, .14), transparent 34%),
        linear-gradient(135deg, rgba(255, 255, 255, .92), rgba(251, 251, 253, .78));
    border: 1px solid var(--line);
    border-radius: 22px;
    box-shadow: var(--soft-shadow);
}

.payment-highlight h2 {
    max-width: 760px;
    margin: 0;
    color: var(--ink);
    font-size: clamp(29px, 3.2vw, 40px);
    line-height: 1.08;
    letter-spacing: -.012em;
}

.payment-highlight-copy {
    display: grid;
    gap: 18px;
}

.payment-highlight-copy p {
    margin: 0;
    color: var(--muted);
    font-size: 16px;
}

.payment-highlight-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.payment-highlight-pills span {
    min-height: 34px;
    display: inline-flex;
    align-items: center;
    padding: 0 11px;
    color: var(--text);
    background: rgba(255, 255, 255, .8);
    border: 1px solid var(--line);
    border-radius: 999px;
    font-size: 13px;
    font-weight: 650;
}

.payment-highlight-pills span:first-child {
    color: #0f6f4c;
    background: rgba(22, 163, 107, .1);
    border-color: rgba(22, 163, 107, .18);
}

.faq-group-title {
    max-width: 860px;
    margin: 34px auto 10px;
    color: var(--ink);
    font-size: 22px;
    line-height: 1.15;
}

.faq-modern {
    padding-top: 72px;
}

.faq-modern-head {
    max-width: 780px;
    margin: 0 auto 26px;
    text-align: center;
}

.faq-modern-head p:not(.eyebrow) {
    margin: 12px auto 0;
    color: var(--muted);
    font-size: 17px;
}

.faq-topic-pills {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
    margin-top: 22px;
}

.faq-topic-pills a {
    min-height: 34px;
    display: inline-flex;
    align-items: center;
    padding: 0 12px;
    color: var(--text);
    background: rgba(255, 255, 255, .72);
    border: 1px solid var(--line);
    border-radius: 999px;
    font-size: 13px;
    font-weight: 650;
    text-decoration: none;
}

.faq-modern-list {
    max-width: 860px;
    margin: 0 auto;
}

.faq-modern-list details {
    background: rgba(255, 255, 255, .86);
}

.faq-whatsapp-card {
    max-width: 860px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 22px;
    align-items: center;
    margin: 24px auto 0;
    padding: 24px;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: 22px;
    box-shadow: var(--soft-shadow);
}

.faq-whatsapp-card h2 {
    font-size: clamp(25px, 2.7vw, 34px);
}

.faq-whatsapp-card p:not(.eyebrow) {
    max-width: 580px;
    margin: 8px 0 0;
    color: var(--muted);
}

.contact-layout {
    grid-template-columns: minmax(0, 1fr) 340px;
}

.whatsapp-contact-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 340px;
    align-items: start;
    gap: 30px;
}

.contact-panel,
.contact-info {
    padding: 24px;
}

.whatsapp-contact-card {
    position: relative;
    overflow: hidden;
    padding: 34px;
}

.whatsapp-contact-card::after {
    content: "";
    position: absolute;
    right: -70px;
    top: -70px;
    width: 210px;
    height: 210px;
    background: radial-gradient(circle, rgba(22, 163, 107, .16), transparent 68%);
    pointer-events: none;
}

.whatsapp-contact-card > * {
    position: relative;
    z-index: 1;
}

.whatsapp-contact-card h2 {
    max-width: 720px;
    font-size: clamp(34px, 4vw, 52px);
}

.whatsapp-contact-card p:not(.eyebrow) {
    max-width: 660px;
    color: var(--muted);
    font-size: 18px;
}

.whatsapp-mark {
    width: max-content;
    min-height: 30px;
    display: inline-flex;
    align-items: center;
    margin-bottom: 18px;
    padding: 0 11px;
    color: #0f6f4c;
    background: rgba(22, 163, 107, .1);
    border: 1px solid rgba(22, 163, 107, .18);
    border-radius: 999px;
    font-size: 12px;
    font-weight: 750;
}

.whatsapp-quick-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 24px;
}

.whatsapp-quick-list span {
    min-height: 34px;
    display: inline-flex;
    align-items: center;
    padding: 0 11px;
    color: var(--muted);
    background: var(--surface-soft);
    border: 1px solid var(--line);
    border-radius: 999px;
    font-size: 13px;
    font-weight: 650;
}

.contact-panel h2 {
    margin: 0 0 18px;
    color: var(--ink);
    font-size: 36px;
    line-height: 1.05;
}

.contact-form {
    display: grid;
    gap: 14px;
}

.contact-form label {
    display: grid;
    gap: 7px;
}

.contact-form label span {
    color: var(--text);
    font-size: 13px;
    font-weight: 650;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    min-height: 50px;
    padding: 0 14px;
    border: 1px solid var(--line-strong);
    border-radius: 12px;
    color: var(--text);
    background: rgba(255, 255, 255, .9);
    outline: none;
}

.contact-form textarea {
    min-height: 136px;
    padding-top: 14px;
    resize: vertical;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    border-color: rgba(0, 113, 227, .72);
    box-shadow: 0 0 0 4px rgba(0, 113, 227, .1);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.check-line {
    grid-template-columns: 18px minmax(0, 1fr);
    align-items: start;
}

.check-line input {
    width: 18px;
    min-height: 18px;
    margin-top: 2px;
}

.check-line a {
    color: var(--blue);
}

.hp-field {
    position: absolute;
    left: -9999px;
}

.form-alert {
    margin-bottom: 14px;
    padding: 12px 14px;
    border-radius: 12px;
    font-weight: 650;
}

.form-alert.success {
    color: #0f6f4c;
    background: rgba(22, 163, 107, .12);
}

.form-alert.error {
    color: #a33b2c;
    background: rgba(224, 80, 56, .12);
}

.contact-info {
    display: grid;
    gap: 14px;
}

.contact-info div:not(.contact-note) {
    display: grid;
    gap: 4px;
    padding-bottom: 14px;
    border-bottom: 1px solid var(--line);
}

.contact-info span {
    color: var(--muted);
    font-size: 12px;
    font-weight: 700;
}

.contact-info a {
    color: var(--ink);
    font-size: 17px;
    font-weight: 650;
    text-decoration: none;
}

.contact-info address {
    color: var(--muted);
    font-style: normal;
}

.contact-note {
    padding: 16px;
    background: var(--surface-soft);
    border: 1px solid var(--line);
    border-radius: 14px;
}

.contact-note p {
    margin: 6px 0 0;
    color: var(--muted);
}

.legal-content {
    max-width: 820px;
    padding-top: 136px;
}

.legal-content h1 {
    margin: 0;
    color: var(--ink);
    font-size: clamp(34px, 4.4vw, 52px);
    line-height: 1.05;
}

.legal-content .lead {
    color: var(--muted);
    font-size: 19px;
}

.legal-content h2 {
    margin: 32px 0 8px;
    color: var(--ink);
    font-size: 24px;
}

.legal-content p {
    color: var(--muted);
}

.article-shell {
    width: min(880px, calc(100% - 44px));
    margin: 0 auto;
    padding: 136px 0 86px;
}

.article-hero {
    padding-bottom: 40px;
    border-bottom: 1px solid var(--line);
}

.article-hero p {
    color: var(--muted);
}

.article-body {
    max-width: 740px;
    margin-top: 40px;
}

.article-body h2 {
    margin: 38px 0 10px;
    color: var(--ink);
    font-size: 29px;
    line-height: 1.16;
}

.article-cta {
    margin-top: 40px;
    padding: 26px;
    color: var(--text);
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: 18px;
    box-shadow: var(--soft-shadow);
}

.article-cta h2,
.article-cta p {
    color: inherit;
}

.article-cta p {
    color: var(--muted);
}

.article-grid {
    grid-template-columns: minmax(0, 1fr);
    max-width: 760px;
}

.article-card {
    display: grid;
    gap: 10px;
    padding: 28px;
    text-decoration: none;
}

.article-card span {
    color: var(--blue);
    font-size: 12px;
    font-weight: 700;
}

.article-card h2 {
    margin: 0;
    color: var(--ink);
    font-size: clamp(28px, 3vw, 38px);
    line-height: 1.08;
}

.article-card strong {
    color: var(--blue);
}

.not-found {
    min-height: 70vh;
    display: grid;
    align-content: center;
    padding-top: 136px;
}

.not-found h1 {
    margin: 0;
    color: var(--ink);
    font-size: clamp(34px, 4.4vw, 52px);
    line-height: 1.05;
}

.not-found p {
    max-width: 620px;
    color: var(--muted);
    font-size: 19px;
}

.footer-cta {
    width: min(var(--max), calc(100% - 44px));
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 24px;
    align-items: center;
    margin: 48px auto 58px;
    padding: 32px;
    color: var(--text);
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 22px;
    box-shadow: var(--shadow);
}

.footer-cta h2 {
    max-width: 690px;
    margin: 0;
    color: var(--ink);
    font-size: clamp(26px, 3vw, 38px);
    line-height: 1.1;
    letter-spacing: -.012em;
}

.footer-cta p:not(.eyebrow) {
    margin: 10px 0 0;
    color: var(--muted);
    font-size: 16px;
}

.footer-cta-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.site-footer {
    position: relative;
    z-index: 0;
    margin-top: 0;
    padding: 56px max(22px, calc((100vw - var(--max)) / 2)) 30px;
    color: rgba(255, 255, 255, .78);
    background: #111114;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.25fr .8fr .8fr .8fr;
    gap: 32px;
}

.footer-brand {
    color: #fff;
}

.footer-brand.logo-brand .brand-logo {
    width: 166px;
    padding: 6px 8px;
    background: rgba(255, 255, 255, .92);
    border: 1px solid rgba(255, 255, 255, .14);
    border-radius: 8px;
}

.footer-brand small {
    color: rgba(255, 255, 255, .56);
}

.footer-brand-col p {
    max-width: 360px;
    color: rgba(255, 255, 255, .62);
}

.site-footer h2 {
    margin: 0 0 12px;
    color: #fff;
    font-size: 14px;
}

.site-footer a {
    display: block;
    margin: 8px 0;
    color: rgba(255, 255, 255, .66);
    text-decoration: none;
}

.site-footer a:hover {
    color: #fff;
}

.site-footer address {
    color: rgba(255, 255, 255, .66);
    font-style: normal;
}

.social-links {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 18px;
}

.social-links a {
    min-height: 32px;
    display: inline-flex;
    align-items: center;
    margin: 0;
    padding: 0 10px;
    border: 1px solid rgba(255, 255, 255, .14);
    border-radius: 999px;
    font-size: 12px;
    font-weight: 650;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, .12);
    color: rgba(255, 255, 255, .5);
    font-size: 13px;
}

.floating-whatsapp {
    position: fixed;
    z-index: 70;
    right: 18px;
    bottom: 16px;
    min-height: 40px;
    display: inline-flex;
    align-items: center;
    padding: 0 15px;
    color: #fff;
    background: var(--green);
    border-radius: 999px;
    box-shadow: 0 10px 30px rgba(22, 163, 107, .26);
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
}

@media (max-width: 1120px) {
    .site-header {
        grid-template-columns: auto 1fr auto;
    }

    .desktop-nav {
        display: none;
    }

    .header-actions {
        justify-self: end;
    }

    .menu-toggle {
        display: block;
    }

    .hero-inner,
    .editorial-layout,
    .process-layout,
    .faq-layout,
    .contact-layout,
    .whatsapp-contact-layout {
        grid-template-columns: 1fr;
    }

    .hero-media {
        width: min(420px, 42vw);
        height: 330px;
        opacity: .72;
    }

    .hero-panel {
        align-self: auto;
        max-width: 420px;
        margin: 0 0 42px;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .sticky-panel {
        position: static;
    }
}

@media (max-width: 880px) {
    .site-header {
        top: 10px;
        width: calc(100% - 20px);
        grid-template-columns: auto 1fr;
    }

    .brand small,
    .phone-pill,
    .header-actions > .btn {
        display: none;
    }

    .logo-brand .brand-logo {
        width: 148px;
    }

    .home-hero,
    .hero-inner {
        min-height: 690px;
    }

    .hero-inner {
        display: block;
        padding-top: 118px;
    }

    .hero-copy {
        max-width: 620px;
        padding-top: 0;
    }

    .hero-media {
        right: 18px;
        bottom: 32px;
        width: 48vw;
        height: 230px;
        opacity: .36;
    }

    .hero-panel {
        display: none;
    }

    .metric-band,
    .pricing-grid,
    .timeline.mini,
    .seo-editorial-grid,
    .service-detail-grid,
    .handoff-grid,
    .compare-strip,
    .pricing-note,
    .payment-highlight,
    .ai-seo-band,
    .growth-band,
    .faq-whatsapp-card,
    .footer-cta,
    .light-hero,
    .split-section,
    .split-section.reverse {
        grid-template-columns: 1fr;
    }

    .metric-band {
        margin-top: 0;
    }

    .service-grid {
        grid-template-columns: 1fr 1fr;
    }

    .section,
    .metric-band,
    .footer-cta,
    .payment-highlight,
    .faq-modern-list,
    .faq-whatsapp-card,
    .light-hero,
    .article-shell {
        width: min(100% - 28px, var(--max));
    }

    .section {
        padding: 62px 0;
    }

    .section-heading {
        grid-template-columns: 1fr;
        align-items: start;
    }

    .page-hero {
        min-height: 430px;
        padding: 126px 18px 54px;
    }

    .faq-hero {
        grid-template-columns: 1fr;
    }

    .page-hero > img {
        display: none;
    }

    .form-row {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 620px) {
    body {
        font-size: 15px;
    }

    .site-header {
        height: 54px;
        padding-left: 12px;
    }

    .brand strong {
        font-size: 14px;
    }

    .logo-brand .brand-logo {
        width: 138px;
    }

    .home-hero,
    .hero-inner {
        min-height: 650px;
    }

    .hero-copy h1,
    .page-hero h1,
    .article-hero h1 {
        font-size: 32px;
        line-height: 1.07;
    }

    .hero-lead,
    .page-hero p,
    .article-hero p {
        font-size: 16px;
    }

    .hero-actions {
        display: grid;
        grid-template-columns: 1fr;
        max-width: 260px;
    }

    .hero-media {
        width: 58vw;
        height: 190px;
    }

    .metric-band,
    .seo-editorial-grid,
    .service-grid,
    .footer-grid,
    .faq-topic-pills,
    .mobile-menu-cta {
        grid-template-columns: 1fr;
    }

    .faq-modern-head {
        text-align: left;
    }

    .faq-topic-pills {
        display: grid;
        justify-content: stretch;
    }

    .faq-topic-pills a,
    .faq-whatsapp-card .btn,
    .whatsapp-contact-card .btn {
        width: 100%;
    }

    .payment-highlight {
        padding: 26px;
    }

    .payment-highlight-pills {
        display: grid;
    }

    .whatsapp-contact-card {
        padding: 26px;
    }

    .whatsapp-contact-card h2 {
        font-size: 32px;
    }

    .metric-band div {
        min-height: 88px;
    }

    .board-row {
        grid-template-columns: 1fr;
        gap: 4px;
    }

    .footer-bottom {
        display: grid;
    }

    .floating-whatsapp {
        display: none;
    }
}
