:root {
    --bg: #f8fafc;
    --surface: rgba(255, 255, 255, 0.96);
    --surface-solid: #ffffff;
    --surface-alt: #f4f8ff;
    --text: #0d1324;
    --muted: #5a667f;
    --line: rgba(12, 24, 56, 0.08);
    --line-strong: rgba(12, 24, 56, 0.14);
    --primary: #1255ff;
    --primary-deep: #0b2c89;
    --emerald: #0f8f6f;
    --heading: var(--text);
    --button-primary: var(--primary);
    --button-primary2: #2d76ff;
    --button-text: #fff;
    --shadow: 0 18px 48px rgba(13, 19, 36, 0.06);
    --shadow-soft: 0 10px 24px rgba(13, 19, 36, 0.05);
    --radius-xl: 32px;
    --radius-lg: 24px;
    --radius-md: 18px;
    --radius-sm: 14px;
    --container: 1280px;
    --font-heading: "Sora", sans-serif;
    --font-body: "Manrope", sans-serif;
    color-scheme: light;
}

html[data-theme="dark"] {
    --bg: #08111f;
    --surface: rgba(10, 19, 36, 0.82);
    --surface-solid: #0c172c;
    --surface-alt: #0f1d36;
    --text: #f5f8ff;
    --muted: #a0aec8;
    --line: rgba(180, 198, 230, 0.12);
    --line-strong: rgba(180, 198, 230, 0.2);
    --primary: #4d8dff;
    --primary-deep: #b6cbff;
    --emerald: #28c59b;
    --heading: var(--text);
    --button-primary: var(--primary);
    --button-primary2: #6fa1ff;
    --button-text: #08111f;
    --shadow: 0 30px 80px rgba(0, 0, 0, 0.32);
    --shadow-soft: 0 18px 40px rgba(0, 0, 0, 0.2);
    color-scheme: dark;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: var(--font-body);
    color: var(--text);
    background:
        radial-gradient(circle at top left, rgba(18, 85, 255, 0.08), transparent 26%),
        linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
    min-height: 100vh;
}

.chat-launcher {
    position: fixed;
    right: 1.25rem;
    /* Push chat above WhatsApp floating button to avoid overlap */
    bottom: 5.6rem;
    z-index: 60;
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    padding: 0.85rem 1.05rem;
    border-radius: 999px;
    border: 1px solid var(--line);
    background: var(--surface);
    color: var(--text);
    box-shadow: var(--shadow);
    font-weight: 800;
}

.chat-dot {
    width: 0.6rem;
    height: 0.6rem;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--button-primary) 0%, var(--button-primary2) 100%);
    box-shadow: 0 0 0 5px rgba(18, 85, 255, 0.12);
}

.chat-panel {
    position: fixed;
    right: 1.25rem;
    bottom: 5.25rem;
    width: min(380px, calc(100vw - 2.5rem));
    max-height: min(560px, calc(100vh - 8rem));
    display: none;
    flex-direction: column;
    border-radius: 24px;
    border: 1px solid var(--line);
    background: var(--surface-solid);
    box-shadow: var(--shadow);
    overflow: hidden;
    z-index: 60;
}

.chat-panel.open {
    display: flex;
}

.chat-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.9rem 1rem;
    border-bottom: 1px solid var(--line);
    background: var(--surface);
}

.chat-header strong {
    font-family: var(--font-heading);
    color: var(--heading);
    display: block;
}

.chat-header small {
    color: var(--muted);
    display: block;
    margin-top: 0.15rem;
    font-size: 0.82rem;
}

.chat-lang-select {
    height: 2.1rem;
    border-radius: 999px;
    border: 1px solid var(--line);
    padding: 0 0.6rem;
    background: rgba(255, 255, 255, 0.7);
    color: var(--text);
    font-weight: 700;
    font-size: 0.85rem;
}

html[data-theme="dark"] .chat-lang-select {
    background: rgba(14, 24, 43, 0.92);
}

.chat-close {
    width: 2.4rem;
    height: 2.4rem;
    border-radius: 999px;
    border: 1px solid var(--line);
    background: transparent;
    color: var(--text);
    font-weight: 900;
    cursor: pointer;
}

.chat-messages {
    padding: 1rem;
    display: grid;
    gap: 0.6rem;
    overflow: auto;
    background: linear-gradient(180deg, rgba(18, 85, 255, 0.04), transparent);
}

.chat-msg {
    display: flex;
}

.chat-user {
    justify-content: flex-end;
}

.chat-bot {
    justify-content: flex-start;
}

.chat-bubble {
    max-width: 85%;
    padding: 0.7rem 0.85rem;
    border-radius: 16px;
    border: 1px solid var(--line);
    background: var(--surface);
    color: var(--text);
    line-height: 1.45;
    overflow-wrap: anywhere;
}

.chat-user .chat-bubble {
    background: linear-gradient(135deg, var(--button-primary) 0%, var(--button-primary2) 100%);
    border-color: rgba(18, 85, 255, 0.18);
    color: var(--button-text);
}

.chat-form {
    display: flex;
    gap: 0.6rem;
    padding: 0.9rem;
    border-top: 1px solid var(--line);
    background: var(--surface-solid);
}

.chat-input {
    flex: 1;
    min-height: 2.75rem;
    border-radius: 999px;
    border: 1px solid var(--line);
    padding: 0.6rem 0.9rem;
    background: rgba(255, 255, 255, 0.75);
    color: var(--text);
}

html[data-theme="dark"] .chat-input {
    background: rgba(14, 24, 43, 0.92);
}

.chat-send {
    min-width: 5.25rem;
    border-radius: 999px;
    border: 1px solid transparent;
    background: linear-gradient(135deg, var(--button-primary) 0%, var(--button-primary2) 100%);
    color: var(--button-text);
    font-weight: 800;
    cursor: pointer;
}

html[data-theme="dark"] body {
    background:
        radial-gradient(circle at top left, rgba(77, 141, 255, 0.16), transparent 28%),
        radial-gradient(circle at top right, rgba(40, 197, 155, 0.14), transparent 24%),
        linear-gradient(180deg, #08111f 0%, #0a1426 100%);
}

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

a {
    color: inherit;
    text-decoration: none;
}

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

.site-shell {
    overflow: clip;
}

.container {
    width: min(calc(100% - 2rem), var(--container));
    margin: 0 auto;
}

p {
    line-height: 1.7;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 30;
    backdrop-filter: blur(18px);
    background: rgba(255, 255, 255, 0.84);
    border-bottom: 1px solid var(--line);
}

html[data-theme="dark"] .site-header,
html[data-theme="dark"] .mobile-menu {
    background: rgba(8, 17, 31, 0.82);
    border-color: var(--line);
}

.nav-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    min-height: 84px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 0.85rem;
}

.brand-mark {
    width: 2.8rem;
    height: 2.8rem;
    border-radius: 0.95rem;
    display: grid;
    place-items: center;
    color: #fff;
    font-family: var(--font-heading);
    font-weight: 700;
    background: linear-gradient(145deg, var(--button-primary) 0%, var(--button-primary2) 100%);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.4);
}

.brand-logo {
    display: block;
    object-fit: contain;
}

.brand-logo-header {
    height: 44px;
    width: auto;
    max-width: 210px;
}

.brand-logo-footer {
    width: 2.8rem;
    height: 2.8rem;
    border-radius: 0.95rem;
    background: rgba(255, 255, 255, 0.6);
    border: 1px solid rgba(18, 85, 255, 0.08);
    padding: 0.25rem;
}

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

.brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1.15;
}

.brand-text strong {
    font-family: var(--font-heading);
    font-size: 1rem;
}

.brand-text small {
    color: var(--muted);
    font-size: 0.82rem;
}

.desktop-nav,
.nav-actions,
.hero-actions,
.mini-stat-row,
.badge-row,
.card-list,
.results-grid,
.process-grid,
.pricing-grid,
.cta-actions,
.trust-grid,
.footer-links,
.footer-contact,
.social-row,
.contact-options,
.comparison-table,
.blog-meta,
.article-takeaways {
    display: flex;
    gap: 1rem;
}

.contact-options {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: stretch;
}

@media (max-width: 720px) {
    .contact-options {
        grid-template-columns: 1fr;
    }
}

.mobile-quickbar {
    display: none;
}

.mobile-only {
    display: none;
}

.desktop-nav {
    position: relative;
    align-items: center;
    gap: 1.4rem;
}

.desktop-nav > a,
.nav-dropdown-toggle {
    color: var(--muted);
    background: none;
    border: 0;
    padding: 0;
    cursor: pointer;
    font-weight: 600;
    white-space: nowrap;
}

.desktop-nav > a:hover,
.desktop-nav > a.active,
.nav-dropdown:hover .nav-dropdown-toggle,
.mobile-menu-inner a:hover {
    color: var(--text);
}

.nav-dropdown {
    position: relative;
    padding: 0.45rem 0;
    margin: -0.45rem 0;
}

.nav-dropdown::after {
    content: "";
    position: absolute;
    left: -1rem;
    right: -1rem;
    top: 100%;
    height: 1rem;
}

.mega-menu {
    position: absolute;
    top: calc(100% + 0.3rem);
    left: 50%;
    transform: translateX(-50%);
    width: min(920px, calc(100vw - 2rem));
    padding: 1rem;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.9rem;
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid var(--line);
    border-radius: 24px;
    box-shadow: var(--shadow);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.nav-dropdown:hover .mega-menu,
.nav-dropdown:focus-within .mega-menu {
    opacity: 1;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0.25rem);
}

.nav-dropdown:focus-within .nav-dropdown-toggle {
    color: var(--text);
}

.mega-menu a {
    display: grid;
    grid-template-columns: 2.8rem minmax(0, 1fr);
    align-items: start;
    gap: 0.85rem;
    padding: 1rem;
    border-radius: 18px;
    background: #f8fbff;
    border: 1px solid rgba(18, 85, 255, 0.06);
    transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.mega-menu a:hover {
    background: linear-gradient(135deg, var(--button-primary) 0%, var(--button-primary2) 100%);
    border-color: rgba(18, 85, 255, 0.18);
    transform: translateY(-1px);
}

.mega-menu a:hover .mega-menu-copy > span,
.mega-menu a:hover .mega-menu-copy strong {
    color: var(--button-text);
}

.mega-menu a:hover .mega-menu-icon {
    background: rgba(255, 255, 255, 0.18);
    color: var(--button-text);
}

.mega-menu-icon {
    width: 2.8rem;
    height: 2.8rem;
    display: inline-grid;
    place-items: center;
    border-radius: 16px;
    color: var(--primary);
    background: rgba(18, 85, 255, 0.08);
}

.mega-menu-icon .ui-icon {
    width: 1.15rem;
    height: 1.15rem;
}

.mega-menu-copy {
    display: grid;
    align-content: start;
    gap: 0.3rem;
    min-width: 0;
}

.mega-menu-copy strong,
.mobile-submenu p,
.kicker,
.eyebrow {
    display: block;
    font-family: var(--font-heading);
    font-weight: 700;
}

.mega-menu-copy > span {
    display: block;
    color: var(--muted);
    font-size: 0.95rem;
    line-height: 1.5;
}

.mega-menu-footer {
    grid-column: 1 / -1;
    display: flex;
    justify-content: flex-end;
    padding-top: 0.25rem;
    border-top: 1px solid rgba(18, 85, 255, 0.08);
}

.mega-menu-footer .button {
    min-width: 190px;
}

.mega-menu-cta {
    background: linear-gradient(180deg, #ffffff, #eef4ff);
    border-color: rgba(18, 85, 255, 0.14);
    color: var(--primary-deep);
    box-shadow: 0 10px 24px rgba(18, 85, 255, 0.08);
}

.mega-menu-cta:hover {
    color: var(--primary-deep);
    box-shadow: 0 14px 28px rgba(18, 85, 255, 0.12);
}

.mobile-submenu-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.55rem;
    min-height: 2.8rem;
    margin-top: 0.25rem;
    padding: 0.7rem 1rem;
    border-radius: 999px;
    border: 1px solid var(--line-strong);
    color: var(--text);
    font-weight: 700;
    background: rgba(18, 85, 255, 0.05);
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    min-height: 3rem;
    padding: 0.9rem 1.3rem;
    border-radius: 999px;
    border: 1px solid transparent;
    background: linear-gradient(135deg, var(--button-primary) 0%, var(--button-primary2) 100%);
    color: var(--button-text);
    font-weight: 700;
    box-shadow: 0 14px 30px rgba(18, 85, 255, 0.22);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.button-icon {
    display: inline-grid;
    place-items: center;
    width: 1rem;
    height: 1rem;
    flex: 0 0 auto;
}

.button-icon .ui-icon {
    width: 1rem;
    height: 1rem;
}

.button:hover {
    transform: translateY(-1px);
    box-shadow: 0 18px 36px rgba(18, 85, 255, 0.24);
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
    outline: 3px solid rgba(18, 85, 255, 0.22);
    outline-offset: 2px;
}

.button-secondary {
    color: var(--text);
    background: rgba(255, 255, 255, 0.8);
    border-color: var(--line-strong);
    box-shadow: none;
}

.button-secondary:hover {
    box-shadow: none;
}

.mobile-menu-toggle,
.mobile-menu {
    display: none;
}

.button-secondary:hover {
    box-shadow: var(--shadow-soft);
}

.theme-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    min-height: 3rem;
    padding: 0.8rem 1rem;
    border-radius: 999px;
    border: 1px solid var(--line-strong);
    background: rgba(255, 255, 255, 0.72);
    color: var(--text);
    font-weight: 700;
    cursor: pointer;
}

.theme-toggle.icon-only {
    min-width: 3rem;
    padding: 0.7rem;
    gap: 0;
}

.theme-icon-light {
    display: none;
}

html[data-theme="dark"] .theme-icon-dark {
    display: none;
}

html[data-theme="dark"] .theme-icon-light {
    display: inline-grid;
}

html[data-theme="dark"] .theme-toggle,
html[data-theme="dark"] .button-secondary,
html[data-theme="dark"] input,
html[data-theme="dark"] select,
html[data-theme="dark"] textarea,
html[data-theme="dark"] .dashboard-card,
html[data-theme="dark"] .chart-bars,
html[data-theme="dark"] .logo-chip,
html[data-theme="dark"] .case-metric,
html[data-theme="dark"] .metric-card,
html[data-theme="dark"] .process-card {
    background: rgba(14, 24, 43, 0.92);
    color: var(--text);
    border-color: var(--line);
}

html[data-theme="dark"] .desktop-nav > a,
html[data-theme="dark"] .nav-dropdown-toggle,
html[data-theme="dark"] .brand-text small,
html[data-theme="dark"] p,
html[data-theme="dark"] li,
html[data-theme="dark"] td,
html[data-theme="dark"] th,
html[data-theme="dark"] label,
html[data-theme="dark"] .dashboard-card span,
html[data-theme="dark"] .dashboard-card small,
html[data-theme="dark"] .logo-chip,
html[data-theme="dark"] .small-label {
    color: var(--muted);
}

html[data-theme="dark"] .mega-menu a,
html[data-theme="dark"] .feature-icon,
html[data-theme="dark"] .card-icon {
    background: rgba(14, 24, 43, 0.95);
}

html[data-theme="dark"] .mega-menu-cta {
    background: rgba(14, 24, 43, 0.92);
    color: var(--text);
    border-color: var(--line);
}

html[data-theme="dark"] .mobile-submenu-cta {
    background: rgba(14, 24, 43, 0.92);
    color: var(--text);
    border-color: var(--line);
}

.hero,
.page-hero {
    padding: 4.5rem 0 4rem;
}

.hero-inner,
.page-hero-inner,
.split-layout,
.content-grid,
.checkout-layout,
.contact-grid,
.article-layout,
.footer-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 2rem;
    align-items: start;
}

.content-grid.three h3,
.content-grid.three strong {
    overflow-wrap: anywhere;
    word-break: break-word;
}

.section-copy,
.hero-copy {
    max-width: 620px;
}

.eyebrow,
.kicker {
    color: var(--primary-deep);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-size: 0.75rem;
    margin-bottom: 1.1rem;
}

h1,
h2,
h3,
h4 {
    margin: 0;
    font-family: var(--font-heading);
    line-height: 1.08;
    letter-spacing: -0.03em;
    color: var(--heading);
}

h1 {
    font-size: clamp(2.8rem, 5vw, 5.2rem);
}

h2 {
    font-size: clamp(2rem, 3vw, 3.4rem);
}

h3 {
    font-size: clamp(1.2rem, 2vw, 1.55rem);
}

p,
li,
td,
th,
label {
    color: var(--muted);
    line-height: 1.72;
}

.hero-copy p,
.section-copy p {
    font-size: 1.08rem;
    margin: 1.4rem 0 0;
}

.hero-actions,
.cta-actions {
    margin-top: 2rem;
    flex-wrap: wrap;
}

.badge-row {
    flex-wrap: wrap;
    margin-top: 1.8rem;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.6rem 0.85rem;
    border-radius: 999px;
    border: 1px solid rgba(18, 85, 255, 0.12);
    background: rgba(255, 255, 255, 0.88);
    color: var(--text);
    font-weight: 700;
    font-size: 0.92rem;
}

.badge::before,
.check-list li::before,
.metric-card strong::before {
    content: "";
    width: 0.55rem;
    height: 0.55rem;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--emerald) 0%, #69d8b3 100%);
    box-shadow: 0 0 0 5px rgba(15, 143, 111, 0.12);
}

.panel,
.card,
.metric-card,
.process-card,
.pricing-card,
.testimonial-card,
.faq-item,
.case-card,
.feature-panel,
.contact-card,
.blog-card,
.article-sidebar,
.checkout-summary,
.legal-card,
.form-card,
.hero-visual {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow);
    backdrop-filter: none;
}

.hero-visual {
    padding: 1.6rem;
}

.flat-visual {
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(180deg, #ffffff, #f7faff);
}

.flat-visual img {
    width: 100%;
    min-height: 420px;
    object-fit: cover;
}

.hero-media-shell {
    position: relative;
    padding: 1.1rem;
    background: linear-gradient(180deg, #ffffff, #f5f9ff);
}

.hero-media-shell > img,
.flat-visual > img,
.proof-visual > img {
    width: 100%;
    height: auto;
    border-radius: 24px;
}

.floating-stat {
    position: absolute;
    max-width: 230px;
    padding: 1rem 1.1rem;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.94);
    border: 1px solid var(--line);
    box-shadow: var(--shadow-soft);
}

.floating-stat span,
.floating-stat small {
    display: block;
    color: var(--muted);
}

.floating-stat strong {
    display: block;
    margin: 0.35rem 0;
    font-family: var(--font-heading);
    font-size: 1.45rem;
}

.stat-top {
    top: 2rem;
    right: -1rem;
}

.stat-bottom {
    left: -1rem;
    bottom: 2rem;
}

.dashboard-visual {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr;
    gap: 1rem;
    min-height: 420px;
}

.dashboard-card,
.chart-bars {
    background: #ffffff;
    border-radius: 24px;
    padding: 1.2rem;
    border: 1px solid rgba(12, 24, 56, 0.05);
    box-shadow: var(--shadow-soft);
}

.dashboard-card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.dashboard-card.tall {
    grid-row: span 2;
    background:
        linear-gradient(180deg, rgba(18, 85, 255, 0.06), transparent),
        #ffffff;
}

.dashboard-card span,
.metric-card span,
.process-card span,
.pricing-card span,
.case-card span,
.contact-card span,
.small-label {
    color: var(--muted);
    font-size: 0.9rem;
}

.dashboard-card strong,
.metric-card strong,
.pricing-price,
.quote-mark,
.case-metric strong {
    font-family: var(--font-heading);
    color: var(--text);
}

.dashboard-card strong {
    font-size: 2rem;
}

.chart-bars {
    display: flex;
    align-items: end;
    gap: 0.7rem;
}

.chart-bars span {
    display: block;
    flex: 1;
    border-radius: 999px 999px 14px 14px;
    background: linear-gradient(180deg, rgba(18, 85, 255, 0.22), rgba(18, 85, 255, 0.9));
}

.chart-bars span:nth-child(1) { height: 35%; }
.chart-bars span:nth-child(2) { height: 55%; }
.chart-bars span:nth-child(3) { height: 48%; }
.chart-bars span:nth-child(4) { height: 72%; }
.chart-bars span:nth-child(5) { height: 88%; }

.section {
    padding: 2.25rem 0 5.25rem;
}

.section-muted {
    background: linear-gradient(180deg, rgba(242, 247, 255, 0.85), rgba(248, 251, 255, 0.9));
    border-top: 1px solid rgba(18, 85, 255, 0.05);
    border-bottom: 1px solid rgba(18, 85, 255, 0.05);
}

.section-header {
    max-width: 720px;
    margin-bottom: 2rem;
}

.section-header p {
    margin-top: 1rem;
}

.trust-strip {
    padding: 1.25rem 0 0;
}

.trust-grid,
.card-grid,
.pricing-grid,
.results-grid,
.process-grid,
.testimonial-grid,
.faq-grid,
.blog-grid,
.case-grid,
.value-grid,
.platform-grid {
    display: grid;
    gap: 1.35rem;
}

.trust-grid {
    grid-template-columns: repeat(6, minmax(0, 1fr));
}

.logo-chip,
.metric-card,
.process-card,
.case-metric {
    padding: 1.2rem 1.1rem;
    background: rgba(255, 255, 255, 0.78);
    border-radius: 18px;
    border: 1px solid rgba(12, 24, 56, 0.06);
    text-align: center;
}

.logo-chip {
    font-family: var(--font-heading);
    color: #33415d;
}

.card-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.service-card {
    min-height: 240px;
    display: flex;
    flex-direction: column;
}

.service-card p {
    margin-bottom: 1rem;
}

.service-card .small-label {
    margin-bottom: 1rem;
}

.service-card .inline-link {
    margin-top: auto;
}

.icon-badge {
    width: 3.25rem;
    height: 3.25rem;
    display: inline-grid;
    place-items: center;
    border-radius: 18px;
    color: var(--primary);
    font-family: var(--font-heading);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    background: rgba(18, 85, 255, 0.08);
}

.ui-icon {
    width: 1.2rem;
    height: 1.2rem;
    flex: 0 0 auto;
}

.icon-badge .ui-icon,
.card-icon .ui-icon,
.feature-icon .ui-icon,
.metric-icon .ui-icon {
    width: 1.28rem;
    height: 1.28rem;
}

.card,
.feature-panel,
.contact-card,
.blog-card,
.case-card,
.testimonial-card,
.form-card,
.legal-card,
.article-sidebar {
    padding: 1.6rem;
}

.card,
.feature-panel,
.contact-card,
.blog-card,
.case-card,
.testimonial-card,
.pricing-card,
.timeline-card,
.checkout-summary,
.form-card {
    transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.card:hover,
.feature-panel:hover,
.contact-card:hover,
.blog-card:hover,
.case-card:hover,
.testimonial-card:hover,
.pricing-card:hover,
.timeline-card:hover,
.checkout-summary:hover,
.form-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 24px 46px rgba(13, 19, 36, 0.08);
    border-color: rgba(18, 85, 255, 0.14);
}

.card-icon,
.feature-icon,
.metric-icon {
    width: 3rem;
    height: 3rem;
    border-radius: 16px;
    display: inline-grid;
    place-items: center;
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--primary-deep);
    background: linear-gradient(135deg, rgba(18, 85, 255, 0.12), rgba(15, 143, 111, 0.14));
}

.card h3,
.feature-panel h3,
.pricing-card h3,
.faq-item h3,
.case-card h3,
.blog-card h3 {
    margin-top: 1rem;
    margin-bottom: 0.75rem;
}

.card a.inline-link,
.blog-card a.inline-link,
.case-card a.inline-link,
.text-link {
    color: var(--primary);
    font-weight: 700;
}

.results-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.metric-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0.75rem;
}

.metric-card strong {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.7rem;
    margin-bottom: 0.5rem;
    font-size: clamp(1.6rem, 3vw, 2.35rem);
}

.process-grid {
    grid-template-columns: repeat(5, minmax(0, 1fr));
}

.process-card {
    padding: 1.5rem;
    text-align: left;
}

.process-card .step-number {
    display: inline-flex;
    width: 2rem;
    height: 2rem;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: rgba(18, 85, 255, 0.1);
    color: var(--primary);
    font-weight: 800;
    margin-bottom: 1rem;
}

.case-grid,
.testimonial-grid,
.value-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.case-card .case-metrics,
.article-takeaways,
.service-metrics {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 1.25rem;
}

.case-metric {
    min-width: 110px;
    flex: 1 1 0;
}

.case-metric strong {
    display: block;
    font-size: 1.2rem;
}

.pricing-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    align-items: stretch;
}

.pricing-card {
    padding: 1.9rem;
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 1.35rem;
    min-height: 100%;
    overflow: hidden;
}

.pricing-card.highlight {
    background: linear-gradient(180deg, rgba(18, 85, 255, 0.1), rgba(255, 255, 255, 0.94));
    border-color: rgba(18, 85, 255, 0.18);
    transform: translateY(-0.6rem);
    box-shadow: 0 24px 48px rgba(13, 37, 93, 0.12);
}

.pricing-card-top {
    display: grid;
    gap: 0.8rem;
}

.pricing-badge-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.55rem;
}

.pricing-badge {
    display: inline-flex;
    align-items: center;
    min-height: 2rem;
    padding: 0.3rem 0.75rem;
    border-radius: 999px;
    border: 1px solid rgba(12, 24, 56, 0.08);
    background: rgba(18, 85, 255, 0.06);
    color: var(--primary-deep);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.02em;
}

.pricing-badge-accent {
    background: rgba(15, 143, 111, 0.1);
    color: #0f6f58;
}

.pricing-summary {
    margin: 0;
    min-height: 3.4rem;
}

.pricing-note,
.pricing-footnote {
    margin: 0;
    color: var(--muted);
    font-size: 0.92rem;
}

.pricing-price {
    font-size: clamp(2rem, 4vw, 3rem);
    margin: 0.2rem 0 0;
    display: flex;
    align-items: end;
    gap: 0.35rem;
    flex-wrap: wrap;
    line-height: 0.95;
}

.pricing-price small {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--muted);
    margin-bottom: 0.35rem;
}

.pricing-spec-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.8rem;
}

.pricing-spec {
    padding: 0.95rem 1rem;
    border-radius: 18px;
    border: 1px solid rgba(12, 24, 56, 0.06);
    background: rgba(248, 251, 255, 0.88);
    min-width: 0;
}

.pricing-spec-wide {
    grid-column: 1 / -1;
}

.pricing-spec-label,
.pricing-feature-title {
    display: block;
    color: var(--muted);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    margin-bottom: 0.45rem;
}

.pricing-spec strong {
    display: block;
    color: var(--text);
    font-size: 0.98rem;
    line-height: 1.5;
    overflow-wrap: anywhere;
}

.pricing-feature-block {
    padding-top: 0.15rem;
    border-top: 1px solid var(--line);
}

.pricing-feature-list {
    list-style: none;
    padding: 0;
    margin: 1rem 0 0;
    display: grid;
    gap: 0.9rem;
}

.pricing-card ul,
.check-list {
    list-style: none;
    padding: 0;
    margin: 1.3rem 0 0;
}

.pricing-card li,
.check-list li {
    display: flex;
    gap: 0.8rem;
    margin-bottom: 0.85rem;
}

.pricing-feature-list li {
    margin-bottom: 0;
    align-items: flex-start;
    color: var(--text);
    line-height: 1.55;
}

.pricing-feature-list li::before {
    content: "";
    width: 0.55rem;
    height: 0.55rem;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--emerald) 0%, #69d8b3 100%);
    box-shadow: 0 0 0 5px rgba(15, 143, 111, 0.12);
    margin-top: 0.4rem;
    flex: 0 0 auto;
}

.pricing-cta {
    margin-top: auto;
    display: grid;
    gap: 0.8rem;
}

.pricing-cta .button {
    width: 100%;
}

.timeline-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 1rem;
}

.timeline-card {
    position: relative;
    padding: 1.55rem;
    border-radius: var(--radius-lg);
    border: 1px solid var(--line);
    background: var(--surface);
    box-shadow: var(--shadow-soft);
}

.timeline-card::before {
    content: "";
    position: absolute;
    top: 1.25rem;
    right: 1.25rem;
    width: 0.75rem;
    height: 0.75rem;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--primary), #6fa1ff);
    box-shadow: 0 0 0 6px rgba(18, 85, 255, 0.1);
}

.timeline-phase {
    display: inline-flex;
    align-items: center;
    min-height: 1.8rem;
    padding: 0.2rem 0.65rem;
    border-radius: 999px;
    background: rgba(18, 85, 255, 0.08);
    color: var(--primary-deep);
    font-size: 0.76rem;
    font-weight: 800;
    letter-spacing: 0.03em;
    text-transform: uppercase;
}

.timeline-card h3 {
    margin: 0.95rem 0 0.4rem;
}

.timeline-time {
    display: block;
    color: var(--emerald);
    font-family: var(--font-heading);
    font-size: 0.94rem;
}

.timeline-card p {
    margin: 0.8rem 0 0;
}

.pricing-table-wrap {
    overflow-x: auto;
}

.comparison-table {
    width: 100%;
    min-width: 760px;
    border-collapse: collapse;
    display: table;
}

.comparison-table th,
.comparison-table td {
    text-align: left;
    padding: 1rem;
    border-bottom: 1px solid var(--line);
}

.comparison-table th {
    color: var(--text);
    font-family: var(--font-heading);
}

.comparison-table td:first-child {
    min-width: 280px;
}

.comparison-cards {
    margin-top: 1.25rem;
    display: grid;
    gap: 1rem;
}

.case-section-label {
    display: block;
    margin-top: 1rem;
    color: var(--text);
    font-family: var(--font-heading);
    font-size: 0.9rem;
}

.feature-panel {
    padding: 2rem;
}

.faq-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.faq-item {
    padding: 1.3rem 1.5rem;
}

.faq-trigger {
    width: 100%;
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    border: 0;
    background: none;
    padding: 0;
    cursor: pointer;
    text-align: left;
    color: var(--text);
}

.faq-trigger strong {
    font-size: 1rem;
}

.faq-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.25s ease;
}

.faq-item.active .faq-content {
    margin-top: 1rem;
    max-height: 420px;
}

.cta-band {
    padding: 2.2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    background:
        linear-gradient(120deg, rgba(18, 85, 255, 0.12), rgba(15, 143, 111, 0.1)),
        rgba(255, 255, 255, 0.84);
}

.proof-layout {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 2rem;
    align-items: center;
}

.proof-copy {
    max-width: 620px;
}

.easy-list li {
    margin-bottom: 1rem;
}

.proof-visual {
    position: relative;
}

.photo-card {
    overflow: hidden;
    border-radius: var(--radius-xl);
    border: 1px solid var(--line);
    background: var(--surface);
    box-shadow: var(--shadow);
}

.photo-card img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    min-height: 400px;
}

.photo-caption {
    position: relative;
}

.image-note {
    position: absolute;
    left: 1rem;
    right: 1rem;
    bottom: 1rem;
    padding: 1rem 1.1rem;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid var(--line);
}

.image-note strong {
    display: block;
    margin-bottom: 0.3rem;
    color: var(--text);
}

.photo-stack {
    position: relative;
    padding-bottom: 3.5rem;
}

.stack-main,
.stack-float {
    width: 100%;
    display: block;
    object-fit: cover;
    border-radius: 26px;
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
}

.stack-main {
    min-height: 420px;
}

.stack-float {
    position: absolute;
    right: -1rem;
    bottom: 0;
    width: 46%;
    min-height: 220px;
    background: #fff;
}

.proof-micro {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.9rem;
    margin-top: 1rem;
}

.image-banner-grid {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 2rem;
    align-items: center;
}

.image-triple-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.25rem;
}

.feature-photo img {
    min-height: 460px;
}

.large-photo img {
    min-height: 520px;
}

.compact-photo img {
    min-height: 260px;
}

.highlight-copy {
    padding: 2.4rem;
}

.about-story-card,
.about-fit-card {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.about-photo-card {
    height: 100%;
}

.about-photo-story img,
.about-photo-caption img {
    min-height: 360px;
}

.about-photo-team img {
    min-height: 400px;
}

.proof-micro article {
    padding: 1rem;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid var(--line);
}

.proof-micro strong {
    display: block;
    color: var(--text);
    margin-bottom: 0.3rem;
}

.site-footer {
    padding: 4.5rem 0 2rem;
    background:
        radial-gradient(circle at top left, rgba(18, 85, 255, 0.08), transparent 24%),
        linear-gradient(180deg, rgba(248, 251, 255, 0.72), rgba(255, 255, 255, 0.96));
    border-top: 1px solid rgba(18, 85, 255, 0.07);
}

.footer-shell {
    display: grid;
    gap: 1.6rem;
}

.footer-spotlight {
    padding: 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    background:
        linear-gradient(120deg, rgba(18, 85, 255, 0.12), rgba(15, 143, 111, 0.09)),
        rgba(255, 255, 255, 0.92);
}

.footer-spotlight-copy {
    max-width: 700px;
}

.footer-spotlight-copy h2 {
    margin-top: 0.2rem;
    font-size: clamp(1.9rem, 3vw, 2.8rem);
}

.footer-spotlight-actions {
    display: grid;
    gap: 0.8rem;
    min-width: 220px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.25fr 0.85fr 0.95fr 1.1fr;
    gap: 1.5rem;
    align-items: start;
}

.footer-brand-block,
.footer-link-group,
.footer-news-card {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: 28px;
    box-shadow: var(--shadow-soft);
    padding: 1.5rem;
}

.footer-brand-block p,
.footer-link-group p,
.footer-news-card p {
    margin: 1rem 0 0;
}

.site-footer h3 {
    font-size: 1rem;
    margin-bottom: 1rem;
}

.footer-links-list,
.footer-contact-list {
    display: grid;
    gap: 0.85rem;
}

.footer-links-list a,
.footer-socials a,
.footer-contact-list a,
.footer-contact-list span {
    color: var(--muted);
}

.footer-links-list a:hover,
.footer-socials a:hover,
.footer-contact-list a:hover,
.footer-links a:hover {
    color: var(--text);
}

.footer-contact-list a,
.footer-contact-list span {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.footer-item-icon {
    width: 1.1rem;
    height: 1.1rem;
    color: var(--primary);
    margin-top: 0.1rem;
    flex: 0 0 auto;
}

.footer-socials {
    margin-top: 1.2rem;
    flex-wrap: wrap;
}

.footer-socials a {
    display: inline-flex;
    align-items: center;
    min-height: 2.4rem;
    padding: 0.45rem 0.8rem;
    border-radius: 999px;
    border: 1px solid var(--line);
    background: rgba(18, 85, 255, 0.04);
}

.footer-news-card {
    background:
        linear-gradient(180deg, rgba(18, 85, 255, 0.06), rgba(255, 255, 255, 0.98)),
        var(--surface);
}

.footer-newsletter {
    margin-top: 1rem;
}

.footer-newsletter .button {
    width: 100%;
}

.footer-mini-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.7rem;
    margin-top: 1rem;
}

.footer-mini-badges span {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    min-height: 2.3rem;
    padding: 0.45rem 0.85rem;
    border-radius: 999px;
    border: 1px solid rgba(18, 85, 255, 0.1);
    background: rgba(255, 255, 255, 0.7);
    color: var(--text);
    font-size: 0.86rem;
    font-weight: 700;
}

.footer-mini-badges.compact span {
    font-size: 0.82rem;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    align-items: center;
    padding-top: 2rem;
    margin-top: 1.5rem;
    border-top: 1px solid var(--line);
}

.footer-links {
    flex-wrap: wrap;
}

html[data-theme="dark"] .site-footer {
    background:
        radial-gradient(circle at top left, rgba(77, 141, 255, 0.12), transparent 24%),
        linear-gradient(180deg, rgba(9, 18, 34, 0.72), rgba(8, 17, 31, 0.98));
    border-color: var(--line);
}

html[data-theme="dark"] .footer-brand-block,
html[data-theme="dark"] .footer-link-group,
html[data-theme="dark"] .footer-news-card,
html[data-theme="dark"] .footer-spotlight {
    background: rgba(10, 19, 36, 0.82);
    border-color: var(--line);
}

.whatsapp-float {
    position: fixed;
    right: 1.2rem;
    bottom: 1.2rem;
    z-index: 20;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 128px;
    min-height: 3.1rem;
    padding: 0.75rem 1rem;
    border-radius: 999px;
    background: linear-gradient(135deg, #11b97f, #0f8f6f);
    color: #fff;
    font-weight: 800;
    box-shadow: 0 18px 32px rgba(17, 185, 127, 0.25);
}

.mini-stat-row {
    margin-top: 2rem;
    flex-wrap: wrap;
}

.mini-stat {
    min-width: 150px;
}

.mini-stat strong {
    display: block;
    font-family: var(--font-heading);
    font-size: 1.55rem;
    color: var(--text);
}

.split-layout,
.content-grid,
.contact-grid,
.checkout-layout,
.article-layout {
    gap: 1.6rem;
}

.content-grid.three,
.platform-grid,
.blog-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.form-card form,
.checkout-summary form,
.newsletter-form,
.contact-form {
    display: grid;
    gap: 1rem;
}

.newsletter-form {
    margin-top: 1rem;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
}

label span {
    display: block;
    color: var(--text);
    font-weight: 700;
    margin-bottom: 0.45rem;
}

input,
select,
textarea {
    width: 100%;
    padding: 0.9rem 1rem;
    border-radius: 16px;
    border: 1px solid var(--line-strong);
    background: rgba(255, 255, 255, 0.9);
    color: var(--text);
}

textarea {
    min-height: 150px;
    resize: vertical;
}

.contact-options,
.pill-row {
    flex-wrap: wrap;
}

.pill-row {
    display: flex;
    gap: 0.75rem;
    margin-top: 1rem;
}

.intro-chip-row {
    margin-top: 1.15rem;
}

.contact-card strong {
    display: block;
    margin: 0.55rem 0 0.2rem;
    color: var(--text);
    font-size: 1.05rem;
    line-height: 1.35;
    overflow-wrap: anywhere;
}

.contact-card .icon-badge {
    margin-bottom: 0.9rem;
}

.blog-card .category-pill,
.pill {
    display: inline-flex;
    align-items: center;
    padding: 0.45rem 0.75rem;
    border-radius: 999px;
    background: rgba(18, 85, 255, 0.08);
    color: var(--primary-deep);
    font-weight: 800;
    font-size: 0.82rem;
}

.blog-meta {
    margin: 0.8rem 0 1rem;
    flex-wrap: wrap;
    font-size: 0.92rem;
}

.blog-card-image,
.blog-featured-media img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 18px;
    border: 1px solid var(--line);
    margin: 0 0 1rem;
}

.blog-featured-media img {
    height: 260px;
    border-radius: 24px;
}

.quote-mark {
    font-size: 2.5rem;
    line-height: 1;
    margin-bottom: 0.75rem;
}

.article-body p,
.article-body li {
    font-size: 1.02rem;
}

.article-body section + section {
    margin-top: 2rem;
}

.article-takeaways {
    margin-top: 1.5rem;
}

.article-takeaways li {
    margin: 0;
}

.article-sidebar {
    position: sticky;
    top: 6.5rem;
}

.checkout-summary {
    padding: 1.6rem;
}

.order-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1rem;
    margin-top: 1rem;
    border-top: 1px solid var(--line);
}

.secure-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.7rem;
    margin-top: 1rem;
}

.secure-badges span {
    padding: 0.55rem 0.8rem;
    border-radius: 999px;
    background: rgba(15, 143, 111, 0.08);
    color: var(--emerald);
    font-weight: 800;
    font-size: 0.82rem;
}

.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        animation: none !important;
        transition: none !important;
    }

    .reveal {
        opacity: 1;
        transform: none;
    }
}

@media (max-width: 1100px) {
    .mega-menu {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .card-grid,
    .content-grid.three,
    .blog-grid,
    .trust-grid,
    .proof-micro {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .process-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .case-grid,
    .testimonial-grid,
    .value-grid,
    .results-grid,
    .pricing-grid,
    .faq-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .timeline-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .footer-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 920px) {
    .desktop-nav,
    .desktop-only {
        display: none;
    }

    .mobile-menu-toggle {
        width: 3rem;
        height: 3rem;
        border-radius: 999px;
        border: 1px solid var(--line-strong);
        display: inline-flex;
        flex-direction: column;
        justify-content: center;
        gap: 0.3rem;
        background: rgba(255, 255, 255, 0.86);
        padding: 0 0.8rem;
    }

    .mobile-menu-toggle span {
        height: 2px;
        width: 100%;
        background: var(--text);
        border-radius: 99px;
    }

    .theme-toggle.desktop-only {
        display: none;
    }

    .mobile-menu {
        display: none;
        border-top: 1px solid var(--line);
        background: rgba(249, 251, 255, 0.96);
    }

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

    .mobile-menu-inner {
        padding: 1rem 0 1.5rem;
        display: grid;
        gap: 0.9rem;
    }

    .mobile-submenu {
        padding-top: 0.6rem;
        border-top: 1px solid var(--line);
        display: grid;
        gap: 0.75rem;
    }

    .hero-inner,
    .page-hero-inner,
    .split-layout,
    .content-grid,
    .contact-grid,
    .checkout-layout,
    .article-layout,
    .footer-grid,
    .form-row,
    .proof-layout,
    .image-banner-grid {
        grid-template-columns: 1fr;
    }

    .section-copy,
    .hero-copy,
    .section-header {
        max-width: none;
    }

    .dashboard-visual {
        min-height: auto;
    }

    .stat-top,
    .stat-bottom {
        position: static;
        max-width: none;
        margin-top: 1rem;
    }

    .cta-band,
    .footer-bottom,
    .footer-spotlight {
        flex-direction: column;
        align-items: flex-start;
    }

    .footer-spotlight-actions {
        width: 100%;
        min-width: 0;
    }

    .footer-spotlight-actions .button {
        width: 100%;
    }

    .stack-float {
        position: static;
        width: 100%;
        margin-top: 1rem;
    }

    .photo-stack {
        padding-bottom: 0;
    }

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

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

@media (max-width: 720px) {
    body {
        padding-bottom: 5.8rem;
    }

    .hero,
    .page-hero {
        padding: 4rem 0 3rem;
    }

    .section {
        padding: 1.5rem 0 4rem;
    }

    h1 {
        font-size: clamp(2.2rem, 10vw, 3.1rem);
        line-height: 1.04;
    }

    h2 {
        font-size: clamp(1.7rem, 8vw, 2.35rem);
        line-height: 1.12;
    }

    .card-grid,
    .results-grid,
    .process-grid,
    .case-grid,
    .testimonial-grid,
    .pricing-grid,
    .faq-grid,
    .content-grid.three,
    .blog-grid,
    .trust-grid,
    .value-grid,
    .platform-grid,
    .proof-micro,
    .image-triple-grid {
        grid-template-columns: 1fr;
    }

    .dashboard-visual {
        grid-template-columns: 1fr;
    }

    .dashboard-card.tall {
        grid-row: auto;
    }

    .nav-actions .button {
        display: none;
    }

    .hero-actions,
    .cta-actions {
        flex-direction: column;
    }

    .hero-actions .button,
    .cta-actions .button,
    .button-secondary,
    .pricing-cta .button {
        width: 100%;
    }

    .whatsapp-float {
        display: none;
    }

    .mobile-quickbar {
        position: fixed;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 40;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 0.75rem;
        padding: 0.8rem 1rem calc(0.8rem + env(safe-area-inset-bottom));
        background: rgba(255, 255, 255, 0.96);
        border-top: 1px solid var(--line);
        backdrop-filter: blur(18px);
    }

    html[data-theme="dark"] .mobile-quickbar {
        background: rgba(8, 17, 31, 0.94);
    }

    .mobile-quickbar .button {
        min-height: 3.15rem;
        padding-inline: 0.9rem;
        font-size: 0.95rem;
    }

    .pricing-summary {
        min-height: 0;
    }

    .mobile-only {
        display: block;
    }

    .pricing-table-wrap {
        display: none;
    }

    .pricing-card.highlight {
        transform: none;
    }

    .pricing-spec-grid {
        grid-template-columns: 1fr;
    }

    .pricing-spec-wide {
        grid-column: auto;
    }

    .contact-options {
        display: grid;
        grid-template-columns: 1fr;
    }

    .comparison-table th,
    .comparison-table td {
        padding: 0.85rem 0.8rem;
        font-size: 0.92rem;
    }

    .site-footer {
        padding-top: 3.5rem;
    }

    .footer-spotlight,
    .footer-brand-block,
    .footer-link-group,
    .footer-news-card {
        padding: 1.2rem;
        border-radius: 22px;
    }

    .footer-spotlight-copy h2 {
        font-size: clamp(1.55rem, 7vw, 2rem);
    }

    .footer-socials a,
    .footer-mini-badges span {
        width: 100%;
        justify-content: center;
    }

    .card:hover,
    .feature-panel:hover,
    .contact-card:hover,
    .blog-card:hover,
    .case-card:hover,
    .testimonial-card:hover,
    .pricing-card:hover,
    .timeline-card:hover,
    .checkout-summary:hover,
    .form-card:hover {
        transform: none;
    }
}
