:root {
    --bg: #ffffff;
    --bg-elevated: #fff7f0;
    --navy: #12325c;
    --surface: #ffffff;
    --surface-2: #ffffff;
    --border: #e4d5c8;
    --border-strong: #f36f21;
    --text: #1a120c;
    --muted: #3f342e;
    --faint: #5c4f47;
    --blue: #c45110;
    --blue-2: #c45110;
    --purple: #9a3d0a;
    --cyan: #1e7d3b;
    --green: #1e7d3b;
    --amber: #f36f21;
    --danger: #b42318;
    --saffron: #f36f21;
    --saffron-dark: #c45110;
    --topbar: #9a3d0a;
    --gradient: linear-gradient(135deg, #f36f21 0%, #c45110 100%);
    --gradient-text: none;
    --shadow: 0 8px 20px rgba(90, 40, 10, 0.08);
    --radius: 6px;
    --radius-sm: 4px;
    --container: 1180px;
    --header-h: 48px;
    --font: "Noto Sans", "Inter", "Segoe UI", Arial, sans-serif;

    /* Readable compact scale — 15px root */
    --text-xs: 0.8rem;
    --text-sm: 0.933rem;
    --text-base: 1rem;
    --text-md: 1.067rem;
    --text-lg: 1.133rem;
    --text-xl: 1.25rem;
    --text-2xl: 1.467rem;
    --text-3xl: 1.733rem;
    --leading-tight: 1.25;
    --leading-normal: 1.6;
    --leading-relaxed: 1.72;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 15px;
}

html,
body {
    margin: 0;
    min-height: 100%;
    background: var(--bg);
    color: var(--text);
    font-family: var(--font);
    font-size: var(--text-base);
    line-height: var(--leading-normal);
    letter-spacing: 0;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

img,
svg {
    max-width: 100%;
    display: block;
}

a {
    color: var(--blue-2);
    text-decoration: none;
}

a:hover {
    color: var(--text);
}

p {
    margin: 0 0 1rem;
    color: var(--muted);
}

p {
    margin: 0 0 1.1rem;
    color: var(--muted);
    line-height: var(--leading-relaxed);
    font-size: var(--text-base);
}

h1,
h2,
h3,
h4 {
    margin: 0 0 0.65rem;
    line-height: var(--leading-tight);
    letter-spacing: -0.015em;
    color: var(--text);
    font-weight: 700;
}

h1 { font-size: clamp(1.467rem, 2.8vw, 2rem); }
h2 { font-size: clamp(1.2rem, 2.2vw, 1.533rem); }
h3 { font-size: var(--text-md); font-weight: 600; }
h4 { font-size: var(--text-base); font-weight: 600; }

ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

code,
pre {
    font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
}

.skip-link {
    position: absolute;
    left: 12px;
    top: -40px;
    background: var(--blue);
    color: #061018;
    padding: 8px 12px;
    border-radius: 8px;
    z-index: 100;
    font-weight: 700;
}

.skip-link:focus {
    top: 12px;
}

.container {
    width: min(calc(100% - 32px), var(--container));
    margin-inline: auto;
}

.page-bg { display: none; }

.topbar {
    background: var(--topbar);
    color: #fff;
    font-size: 0.82rem;
}
.topbar a { color: #fff; }
.topbar a:hover { text-decoration: underline; color: #fff; }
.topbar-inner,
.brand-bar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}
.topbar-inner { min-height: 36px; flex-wrap: wrap; padding: 6px 0; }
.topbar-left, .topbar-right { display: flex; gap: 16px; flex-wrap: wrap; }

.topbar-shell .topbar-inner {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 12px;
}

@media (min-width: 768px) {
    .topbar-shell .topbar-inner {
        grid-template-columns: auto 1fr auto;
    }
}

.topbar-ticker {
    overflow: hidden;
    mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
    min-width: 0;
}

.topbar-ticker-track {
    display: flex;
    gap: 28px;
    width: max-content;
    animation: topbarTicker 28s linear infinite;
}

.topbar-ticker-track span {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.92);
    white-space: nowrap;
}

.topbar-ticker-track span::before {
    content: "●";
    color: #ffb347;
    margin-right: 8px;
    font-size: 0.55rem;
    vertical-align: middle;
}

@keyframes topbarTicker {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

.brand-bar {
    background: linear-gradient(180deg, #fff 0%, #fffaf6 100%);
    border-bottom: 3px solid var(--saffron);
    padding: 10px 0 12px;
}

.brand-bar-inner {
    display: flex;
    align-items: center;
    gap: 18px;
}

.brand-text-logo {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: inherit;
    flex-shrink: 0;
    padding: 6px 0;
    min-width: 0;
}

.brand-text-logo-inner {
    display: flex;
    flex-direction: column;
    line-height: 1.05;
    gap: 3px;
}

.brand-text-logo-main {
    font-size: clamp(1.25rem, 2vw, 1.65rem);
    font-weight: 800;
    letter-spacing: 0.07em;
    color: var(--navy);
    white-space: nowrap;
    transition: color 0.2s ease;
}

.brand-text-logo-sub {
    font-size: clamp(0.52rem, 1vw, 0.68rem);
    font-weight: 700;
    letter-spacing: 0.2em;
    color: var(--saffron);
    text-transform: uppercase;
    white-space: nowrap;
}

.brand-text-logo:hover .brand-text-logo-main {
    color: var(--saffron);
}

.brand-text-logo:hover .brand-text-logo-sub {
    color: var(--navy);
}

.brand-poster-carousel {
    position: relative;
    flex: 1 1 auto;
    width: 100%;
    max-width: none;
    min-width: 0;
}

.brand-banner-advanced {
    height: 72px;
    aspect-ratio: auto;
    border-radius: 10px;
    overflow: hidden;
    box-shadow:
        0 2px 8px rgba(18, 50, 92, 0.08),
        0 6px 18px rgba(243, 111, 33, 0.1);
}

.brand-banner-slide,
.brand-poster-slide {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 18px 22px 42px;
    text-decoration: none;
    color: #fff;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.55s ease, visibility 0.55s ease, transform 0.55s ease;
    transform: translateX(12px) scale(0.985);
    z-index: 1;
    overflow: hidden;
}

/* Full PNG poster slides — must override padding/display above */
.brand-poster-slide.brand-poster-slide--full {
    padding: 0;
    display: block;
    gap: 0;
}

.brand-poster-slide.brand-poster-slide--full .brand-poster-full-img {
    width: 100%;
    height: 100%;
    min-height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    border-radius: inherit;
}

.brand-banner-slide.is-active,
.brand-poster-slide.is-active {
    opacity: 1;
    visibility: visible;
    transform: translateX(0) scale(1);
    z-index: 2;
}

.brand-banner-slide:focus-visible,
.brand-poster-slide:focus-visible {
    outline: 3px solid #fff;
    outline-offset: -3px;
}

.brand-banner-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.brand-banner-slide--navy .brand-banner-bg {
    background: linear-gradient(135deg, #0f2848 0%, #12325c 45%, #1a4a7a 100%);
}

.brand-banner-slide--saffron .brand-banner-bg {
    background: linear-gradient(135deg, #c45110 0%, #f36f21 40%, #12325c 100%);
}

.brand-banner-slide--emerald .brand-banner-bg {
    background: linear-gradient(135deg, #0d5c45 0%, #12325c 50%, #1a7a55 100%);
}

.brand-banner-slide--violet .brand-banner-bg {
    background: linear-gradient(135deg, #4c1d95 0%, #12325c 50%, #6d28d9 100%);
}

.brand-banner-slide--midnight .brand-banner-bg {
    background: linear-gradient(135deg, #0a1628 0%, #12325c 45%, #1e3a5f 100%);
}

.brand-banner-shine {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(115deg, transparent 30%, rgba(255, 255, 255, 0.12) 50%, transparent 70%);
    animation: bannerShine 6s ease-in-out infinite;
}

@keyframes bannerShine {
    0%, 100% { transform: translateX(-30%); opacity: 0; }
    45% { opacity: 1; }
    100% { transform: translateX(30%); opacity: 0; }
}

.brand-banner-grid {
    position: absolute;
    inset: 0;
    z-index: 1;
    opacity: 0.18;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.5) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.5) 1px, transparent 1px);
    background-size: 24px 24px;
}

.brand-banner-chip {
    position: absolute;
    z-index: 2;
    font-size: 0.62rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 4px 10px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.14);
    border: 1px solid rgba(255, 255, 255, 0.22);
    backdrop-filter: blur(4px);
}

.brand-banner-chip-a { top: 14px; right: 18%; animation: chipFloat 4s ease-in-out infinite; }
.brand-banner-chip-b { top: 38%; right: 8%; animation: chipFloat 4.5s ease-in-out infinite 0.5s; }
.brand-banner-chip-c { bottom: 28%; right: 22%; animation: chipFloat 5s ease-in-out infinite 1s; }

@keyframes chipFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-4px); }
}

.brand-banner-content {
    position: relative;
    z-index: 3;
    max-width: 68%;
    min-width: 0;
}

.brand-banner-eyebrow {
    display: inline-block;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.78);
    margin-bottom: 6px;
}

.brand-banner-title {
    display: block;
    font-size: clamp(1.05rem, 2.2vw, 1.55rem);
    font-weight: 800;
    line-height: 1.2;
    color: #fff;
    margin-bottom: 6px;
}

.brand-banner-sub {
    display: block;
    font-size: clamp(0.72rem, 1.4vw, 0.88rem);
    line-height: 1.45;
    color: rgba(255, 255, 255, 0.86);
    margin-bottom: 12px;
    max-width: 38rem;
}

.brand-banner-foot {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px 14px;
}

.brand-banner-badge {
    display: inline-block;
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    padding: 5px 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.18);
    border: 1px solid rgba(255, 255, 255, 0.28);
    color: #fff;
}

.brand-banner-cta {
    display: inline-flex;
    align-items: center;
    gap: 2px;
    font-size: 0.82rem;
    font-weight: 700;
    color: #fff;
    padding: 6px 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.22);
    border: 1px solid rgba(255, 255, 255, 0.35);
    transition: background 0.2s ease, transform 0.2s ease;
}

.brand-banner-slide:hover .brand-banner-cta {
    background: rgba(255, 255, 255, 0.32);
    transform: translateX(2px);
}

.brand-banner-visual {
    position: relative;
    z-index: 3;
    width: 220px;
    height: 140px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 4px;
}

.brand-banner-poster-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
    border: 2px solid rgba(255, 255, 255, 0.28);
    box-shadow:
        0 10px 28px rgba(0, 0, 0, 0.28),
        0 0 0 1px rgba(255, 255, 255, 0.08) inset;
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.brand-banner-slide:hover .brand-banner-poster-img {
    transform: scale(1.03) translateY(-2px);
    box-shadow:
        0 14px 32px rgba(0, 0, 0, 0.35),
        0 0 0 1px rgba(255, 255, 255, 0.12) inset;
}

.brand-banner-ui {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 5;
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 2px 8px;
    background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.35));
}

.brand-banner-nav {
    width: 20px;
    height: 20px;
    border: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.22);
    color: #fff;
    display: grid;
    place-items: center;
    cursor: pointer;
    transition: background 0.2s ease;
    flex-shrink: 0;
    font-size: 0.65rem;
}

.brand-banner-nav:hover {
    background: rgba(255, 255, 255, 0.35);
}

.brand-banner-progress {
    flex: 1;
    height: 2px;
    background: rgba(255, 255, 255, 0.25);
    border-radius: 999px;
    overflow: hidden;
}

.brand-banner-progress-bar {
    display: block;
    height: 100%;
    width: 0;
    background: #fff;
    border-radius: inherit;
    transition: width 0.1s linear;
}

.brand-banner-dots {
    position: static;
    transform: none;
    display: flex;
    gap: 4px;
    margin-left: 2px;
}

.brand-banner-dots .brand-poster-dot {
    width: 6px;
    height: 6px;
    background: rgba(255, 255, 255, 0.35);
}

.brand-banner-dots .brand-poster-dot.is-active {
    background: #fff;
}

.brand-poster {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 8px;
}

.brand-poster-dots {
    position: absolute;
    left: 50%;
    bottom: 2px;
    transform: translateX(-50%);
    display: flex;
    gap: 7px;
    z-index: 3;
}

.brand-poster-dot {
    width: 9px;
    height: 9px;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background: rgba(243, 111, 33, 0.35);
    cursor: pointer;
    transition: transform 0.2s ease, background 0.2s ease;
}

.brand-poster-dot.is-active {
    background: var(--saffron);
    transform: scale(1.15);
}

.brand-poster-dot:focus-visible {
    outline: 2px solid var(--navy);
    outline-offset: 2px;
}
.slogan-bar {
    background: var(--saffron);
    color: #fff;
    text-align: center;
    font-weight: 700;
    padding: 8px 12px;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    min-height: var(--header-h);
    background: var(--saffron-dark);
}

.site-header .header-inner {
    min-height: var(--header-h);
}

.site-header.is-scrolled {
    background: var(--saffron-dark);
}

.header-inner {
    min-height: var(--header-h);
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}

.brand {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text);
    flex-shrink: 0;
}

.brand-logo {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    object-fit: contain;
    flex-shrink: 0;
}
.brand-logo-sm { width: 72px; height: 72px; }

.brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1.05;
}

.brand-text strong {
    font-size: 1.02rem;
    letter-spacing: 0.08em;
}

.brand-text span {
    font-size: 0.68rem;
    color: var(--muted);
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.site-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    width: 100%;
}

.nav-list {
    display: flex;
    align-items: center;
    gap: 4px;
}

.nav-link {
    display: block;
    color: #fff;
    font-size: var(--text-base);
    font-weight: 600;
    padding: 12px 14px;
    border-radius: 0;
}

.nav-link:hover,
.nav-link.is-active {
    color: #fff;
    background: #a8440c;
}

.dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 250px;
    padding: 0;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 0;
    box-shadow: var(--shadow);
    opacity: 0;
    visibility: hidden;
    z-index: 20;
}

.dropdown a {
    color: var(--navy);
    border-radius: 0;
    border-bottom: 1px solid #f3e7dc;
}

.dropdown a:hover {
    background: #fff7f0;
    color: var(--saffron-dark);
}

.btn-primary,
.btn-nav {
    color: #fff;
    background: var(--navy);
    border-radius: 3px;
    box-shadow: none;
}
.btn-primary:hover,
.btn-nav:hover { color: #fff; background: #0c2342; }

.btn-ghost {
    color: var(--navy);
    background: #fff;
    border-color: var(--navy);
}

.glass-card {
    background: #ffffff;
    border: 1px solid var(--border);
    border-radius: 4px;
    box-shadow: none;
}

.has-dropdown {
    position: relative;
}

.dropdown {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    min-width: 250px;
    padding: 10px;
    background: #ffffff;
    border: 1px solid var(--border);
    border-radius: 16px;
    box-shadow: var(--shadow);
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: 0.18s ease;
}

.has-dropdown:hover .dropdown,
.has-dropdown:focus-within .dropdown {
    opacity: 1;
    visibility: visible;
    transform: none;
}

.dropdown a {
    display: block;
    color: var(--muted);
    padding: 9px 12px;
    border-radius: 10px;
    font-size: 0.9rem;
    font-weight: 600;
}

.dropdown a:hover {
    background: rgba(79, 140, 255, 0.1);
    color: var(--text);
}

.nav-toggle {
    display: none;
    width: 44px;
    height: 44px;
    border: 1px solid var(--border);
    background: #ffffff;
    border-radius: 12px;
    padding: 0;
    cursor: pointer;
}

.nav-toggle span {
    display: block;
    width: 18px;
    height: 2px;
    margin: 4px auto;
    background: #fff;
    border-radius: 2px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    min-height: 42px;
    padding: 0 18px;
    border-radius: 10px;
    font-weight: 600;
    font-size: var(--text-base);
    border: 1px solid transparent;
    cursor: pointer;
    transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.btn:hover {
    transform: translateY(-1px);
}

.btn-primary {
    color: #fff;
    background: var(--navy);
    box-shadow: none;
}

.btn-primary:hover {
    color: #fff;
    background: #0c2342;
}

.btn-ghost {
    color: var(--text);
    background: #ffffff;
    border-color: var(--border);
}

.btn-ghost:hover {
    color: var(--text);
    border-color: var(--border-strong);
}

.btn-secondary {
    color: var(--saffron-dark);
    background: #fff;
    border-color: var(--saffron);
}

.btn-secondary:hover {
    color: #fff;
    background: var(--saffron);
    border-color: var(--saffron);
}

.btn-nav {
    min-height: 42px;
    padding-inline: 16px;
}

.glass-card {
    background: #ffffff;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.section {
    padding: 52px 0;
}

.section-alt {
    background: #f7f9fc;
}

.section-head {
    max-width: 680px;
    margin-bottom: 36px;
}

.section-head.center,
.center {
    text-align: center;
    margin-inline: auto;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin: 0 0 12px;
    color: var(--blue-2);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.lead {
    font-size: var(--text-md);
    line-height: var(--leading-relaxed);
    max-width: 42rem;
    color: var(--muted);
}

.hero {
    position: relative;
    padding: 72px 0 36px;
    overflow: hidden;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 40px;
    align-items: center;
}

.hero h1 span {
    display: block;
    background: var(--gradient-text);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 28px;
}

.hero-visual {
    position: relative;
    min-height: 420px;
}

.orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(8px);
    opacity: 0.22;
    animation: float 9s ease-in-out infinite;
}

.orb-a {
    width: 220px;
    height: 220px;
    background: #4f8cff;
    top: 40px;
    left: 40px;
}

.orb-b {
    width: 160px;
    height: 160px;
    background: #8b6cff;
    right: 30px;
    bottom: 70px;
    animation-delay: -3s;
}

.orb-c {
    width: 90px;
    height: 90px;
    background: #22d3ee;
    right: 140px;
    top: 30px;
    animation-delay: -5s;
}

.network-panel {
    position: relative;
    z-index: 1;
    height: 100%;
    min-height: 420px;
    padding: 22px;
    overflow: hidden;
}

.network-panel svg {
    width: 100%;
    height: 100%;
}

.node-chip {
    position: absolute;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    border-radius: 999px;
    background: #ffffff;
    border: 1px solid var(--border-strong);
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--text);
    box-shadow: var(--shadow);
}

.node-chip i {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--cyan);
    box-shadow: 0 0 10px var(--cyan);
}

.chip-1 { top: 18%; left: 8%; }
.chip-2 { top: 48%; right: 6%; }
.chip-3 { bottom: 16%; left: 18%; }

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-14px); }
}

.pulse-line {
    stroke-dasharray: 6 10;
    animation: dash 18s linear infinite;
}

@keyframes dash {
    to { stroke-dashoffset: -240; }
}

.trust-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    margin-top: 54px;
}

.trust-item {
    padding: 18px;
}

.trust-item strong {
    display: block;
    color: var(--text);
    font-size: 0.95rem;
}

.trust-item span {
    color: var(--faint);
    font-size: 0.85rem;
}

.service-grid,
.why-grid,
.product-grid,
.feature-grid,
.stack-grid,
.process-grid {
    display: grid;
    gap: 18px;
}

.service-grid,
.product-grid,
.feature-grid {
    grid-template-columns: repeat(3, 1fr);
}

.why-grid,
.process-grid {
    grid-template-columns: repeat(3, 1fr);
}

.service-card,
.product-card,
.feature-card,
.why-card {
    padding: 22px;
    transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.service-card:hover,
.product-card:hover,
.why-card:hover,
.feature-card:hover {
    transform: translateY(-4px);
    border-color: var(--border-strong);
    box-shadow: 0 18px 40px rgba(20, 40, 90, 0.25);
}

.icon-wrap {
    width: 72px;
    height: 72px;
    display: grid;
    place-items: center;
    margin-bottom: 16px;
    padding: 0;
    border: 0;
    background: none;
    border-radius: 18px;
    overflow: visible;
}

.icon-png {
    width: 72px;
    height: 72px;
    object-fit: contain;
    display: block;
}

.card-link .icon-png,
.check-list .icon-png,
.meta-line .icon-png {
    width: 22px;
    height: 22px;
    flex-shrink: 0;
}

.service-card h3,
.product-card h3,
.why-card h3 {
    margin-bottom: 8px;
}

.card-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 8px;
    color: var(--blue-2);
    font-weight: 700;
    font-size: 0.9rem;
}

.stack-logo-img {
    width: 64px;
    height: 64px;
    object-fit: contain;
    display: block;
}

.stack-grid {
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
}

.stack-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 18px 12px;
    text-align: center;
}

.badge {
    display: inline-flex;
    align-items: center;
    padding: 4px 10px;
    border-radius: 999px;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.badge-available {
    color: #047857;
    background: rgba(16, 185, 129, 0.12);
    border: 1px solid rgba(16, 185, 129, 0.28);
}

.badge-dev {
    color: #b45309;
    background: rgba(245, 158, 11, 0.12);
    border: 1px solid rgba(245, 158, 11, 0.28);
}

.badge-custom {
    color: #5b21b6;
    background: rgba(139, 108, 255, 0.12);
    border: 1px solid rgba(139, 108, 255, 0.28);
}

.product-card header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 8px;
}

.global-panel {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 28px;
    padding: 32px;
    align-items: center;
}

.map-art {
    min-height: 240px;
}

.about-preview {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 32px;
    align-items: start;
}

.stat-pills {
    display: grid;
    gap: 12px;
}

.stat-pills article {
    padding: 18px 20px;
}

.stat-pills strong {
    display: block;
    color: var(--text);
}

.cta-band {
    margin: 20px 0 0;
    padding: 28px 0 90px;
}

.cta-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
    padding: 32px;
    border-radius: 24px;
    background: linear-gradient(135deg, rgba(79, 140, 255, 0.16), rgba(139, 108, 255, 0.12) 50%, rgba(34, 211, 238, 0.08));
    border: 1px solid var(--border-strong);
}

.cta-inner p {
    margin: 0;
    max-width: 560px;
}

.page-hero {
    padding: 64px 0 28px;
}

.page-hero .lead {
    margin-bottom: 0;
}

.split {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 28px;
    align-items: start;
}

/* Service / about intro — text + sidebar card, no empty gap */
.service-intro-split {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(280px, 380px);
    gap: 28px 32px;
    align-items: start;
    width: 100%;
}

.service-intro-main {
    min-width: 0;
}

.service-intro-main h2 {
    margin-bottom: 16px;
}

.service-intro-main p {
    max-width: none;
}

.service-intro-aside {
    min-width: 0;
    width: 100%;
    position: sticky;
    top: calc(var(--header-h, 72px) + 16px);
}

.service-intro-aside h3 {
    margin-bottom: 14px;
    color: var(--navy);
    font-size: 1.05rem;
}

.highlight-card,
.contact-aside {
    padding: 24px;
}

.check-list li {
    display: flex;
    gap: 10px;
    margin-bottom: 12px;
    color: var(--muted);
}

.check-list .icon-png {
    margin-top: 2px;
}

.notice {
    margin-top: 18px;
    padding: 14px 16px;
    border-radius: 14px;
    background: rgba(79, 140, 255, 0.08);
    border: 1px solid var(--border-strong);
    color: #1e3a6e;
    font-size: 0.94rem;
}

.notice strong {
    color: var(--text);
}

.process-grid {
    counter-reset: none;
}

.step-num {
    display: inline-block;
    margin-bottom: 12px;
    color: var(--blue-2);
    font-weight: 800;
    letter-spacing: 0.08em;
}

.process-grid .glass-card {
    padding: 22px;
}

.contact-layout {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 24px;
}

.form-card,
.contact-aside {
    padding: 28px;
}

.form-card form {
    position: relative;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.form-row {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.form-row.full {
    grid-column: 1 / -1;
}

label {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--text);
}

.req {
    color: var(--danger);
}

input,
select,
textarea {
    width: 100%;
    border: 1px solid var(--border);
    background: #ffffff;
    color: var(--text);
    border-radius: 12px;
    min-height: 46px;
    padding: 10px 12px;
    font: inherit;
}

textarea {
    min-height: 140px;
    resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
    outline: 2px solid rgba(79, 140, 255, 0.45);
    border-color: var(--border-strong);
}

.hp {
    position: absolute;
    left: -9999px;
    opacity: 0;
}

.form-error,
.field-error {
    color: #be123c;
    font-size: 0.82rem;
}

.alert {
    padding: 12px 14px;
    border-radius: 12px;
    margin-bottom: 16px;
    font-weight: 600;
}

.alert-success {
    background: rgba(52, 211, 153, 0.12);
    border: 1px solid rgba(52, 211, 153, 0.28);
    color: #047857;
}

.alert-error {
    background: rgba(251, 113, 133, 0.12);
    border: 1px solid rgba(251, 113, 133, 0.28);
    color: #be123c;
}

.meta-line {
    display: flex;
    gap: 10px;
    margin-bottom: 14px;
    color: var(--muted);
}

.meta-line svg {
    width: 18px;
    height: 18px;
    color: var(--blue-2);
    flex-shrink: 0;
    margin-top: 3px;
}

.placeholder-value {
    color: var(--faint);
    font-style: italic;
}

.legal {
    max-width: 800px;
}

.legal h2 {
    margin-top: 28px;
}

.docs-grid {
    display: grid;
    grid-template-columns: 260px 1fr;
    gap: 22px;
}

.docs-side {
    padding: 18px;
    position: sticky;
    top: 96px;
    align-self: start;
}

.docs-side a {
    display: block;
    padding: 8px 10px;
    color: var(--muted);
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.9rem;
}

.docs-side a:hover {
    background: rgba(79, 140, 255, 0.08);
    color: var(--text);
}

.docs-content .glass-card {
    padding: 22px;
    margin-bottom: 16px;
}

pre {
    overflow: auto;
    background: #0b1220;
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 14px;
    color: #dbe7ff;
    font-size: 0.85rem;
}

.portal-home { padding: 28px 0; background: #fff; }
.portal-grid {
    display: grid;
    grid-template-columns: 1.4fr 0.8fr;
    gap: 24px;
}
.portal-about h2,
.news-panel h2,
.section-head h2 {
    color: var(--saffron-dark);
    border-bottom: 3px solid var(--saffron);
    display: inline-block;
    padding-bottom: 6px;
}
.news-panel {
    background: #fff;
    border: 1px solid var(--border);
}
.news-panel h2 {
    display: block;
    background: var(--saffron);
    color: #fff;
    border: 0;
    margin: 0;
    padding: 10px 14px;
    font-size: 1.05rem;
}
.news-panel ul { padding: 8px 0; }
.news-panel li a {
    display: block;
    padding: 10px 14px;
    color: var(--navy);
    border-bottom: 1px dashed var(--border);
    font-weight: 600;
}
.news-panel li:last-child a { border-bottom: 0; }
.more-link { font-weight: 700; color: var(--saffron-dark); }

.stat-band { background: #fff7f0; padding: 8px 0 28px; }
.stat-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}
.stat-row article {
    background: #fff;
    border: 1px solid var(--border);
    text-align: center;
    padding: 18px 10px;
}
.stat-row strong {
    display: block;
    font-size: 2rem;
    color: var(--saffron-dark);
}
.info-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}
.info-cards article {
    border: 1px solid var(--border);
    padding: 18px;
    background: #fff;
}
.info-cards h3 { color: var(--navy); }

/* --- Modern homepage hero --- */
.page-home-modern .home-hero {
    position: relative;
    padding: 40px 0 48px;
    background: #fff7f0;
    overflow: hidden;
}

.home-hero-grid {
    align-items: center;
}

.home-kicker {
    display: inline-block;
    margin: 0 0 12px;
    color: var(--saffron-dark);
    font-size: var(--text-sm);
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.home-hero-copy h1 {
    font-size: clamp(1.6rem, 3.4vw, 2.267rem);
    font-weight: 800;
    color: var(--navy);
    line-height: 1.22;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.hero-title-accent {
    color: var(--saffron-dark);
    background: none;
    -webkit-background-clip: unset;
    background-clip: unset;
}

.home-hero-lead {
    font-size: var(--text-md);
    line-height: var(--leading-relaxed);
    color: var(--muted);
    max-width: 38rem;
    margin-bottom: 0;
}

.home-hero-lead em {
    color: var(--saffron-dark);
    font-style: normal;
    font-weight: 600;
}

.page-home-modern .home-hero .hero-actions {
    margin-top: 1.85rem;
}

.btn-hero-primary,
.btn-hero-outline {
    font-size: var(--text-base);
    font-weight: 700;
    min-height: 44px;
    padding-inline: 1.25rem;
    border-radius: 10px;
}

.btn-hero-primary {
    background: linear-gradient(135deg, #f36f21, #e85d0a);
    border: 0;
    color: #fff;
    box-shadow: 0 6px 18px rgba(243, 111, 33, 0.28);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-hero-primary:hover {
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 10px 24px rgba(243, 111, 33, 0.38);
    background: linear-gradient(135deg, #ff7b2e, #f36f21);
}

.btn-hero-outline {
    background: #fff;
    border: 2px solid var(--saffron-dark);
    color: var(--saffron-dark);
    transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.btn-hero-outline:hover {
    background: var(--saffron-dark);
    border-color: var(--saffron-dark);
    color: #fff;
}

.hero-stat {
    padding: 10px 8px;
    border-radius: 10px;
    background: #fff;
    border: 1px solid var(--border);
    text-align: center;
    box-shadow: 0 4px 14px rgba(18, 50, 92, 0.06);
}

.hero-stat strong {
    display: block;
    font-size: var(--text-lg);
    font-weight: 800;
    color: var(--saffron-dark);
    line-height: 1.2;
}

.hero-stat span {
    display: block;
    font-size: var(--text-xs);
    font-weight: 600;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: 0.03em;
    margin-top: 3px;
}

.home-hero-visual {
    position: relative;
    min-height: 280px;
}

.hero-panel {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 320px;
    border-radius: 12px;
    background: #1a2332;
    border: 1px solid #2a3544;
    box-shadow: 0 12px 32px rgba(18, 50, 92, 0.15);
    overflow: hidden;
}

.hero-panel-top {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.04);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    flex-shrink: 0;
}

.hero-panel-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
}

.hero-panel-dot:nth-child(1) { background: #ff5f57; }
.hero-panel-dot:nth-child(2) { background: #febc2e; }
.hero-panel-dot:nth-child(3) { background: #28c840; }

.hero-panel-label {
    margin-left: auto;
    font-size: 0.72rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.5);
    letter-spacing: 0.04em;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 70%;
}

.hero-code {
    margin: 0;
    flex: 1;
    min-height: 0;
    padding: 20px 18px 12px;
    font-family: "Cascadia Code", "Consolas", "Monaco", monospace;
    font-size: clamp(0.72rem, 1.5vw, 0.82rem);
    line-height: 1.65;
    color: #c9d8e8;
    overflow: hidden;
    white-space: pre;
    transition: opacity 0.2s ease;
}

.hero-panel.is-switching .hero-code {
    opacity: 0.35;
}

.hero-api-dots {
    display: flex;
    justify-content: center;
    gap: 6px;
    padding: 0 16px 14px;
    flex-shrink: 0;
}

.hero-api-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.25);
    transition: background 0.2s ease, transform 0.2s ease;
}

.hero-api-dot.is-active {
    background: #f36f21;
    transform: scale(1.15);
}

.hero-code .hc-muted { color: #6b8299; }
.hero-code .hc-key { color: #79c0ff; }
.hero-code .hc-str { color: #a5d6ff; }
.hero-code .hc-num { color: #ffb347; }
.hero-code .hc-ok { color: #3fb950; font-weight: 700; }

.hero-panel-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    padding: 12px 16px 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.hero-panel-tags span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 5px 12px;
    border-radius: 999px;
    font-size: 0.75rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.75);
    background: rgba(37, 211, 102, 0.1);
    border: 1px solid rgba(37, 211, 102, 0.25);
}

.hero-orbit {
    position: absolute;
    z-index: 3;
    width: 56px;
    height: 56px;
    display: grid;
    place-items: center;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.25);
    animation: heroOrbit 6s ease-in-out infinite;
}

.hero-orbit-icon {
    width: 36px;
    height: 36px;
    object-fit: contain;
}

.hero-orbit-a { top: -8px; left: -12px; animation-delay: 0s; }
.hero-orbit-b { top: 30%; right: -16px; animation-delay: -1.5s; }
.hero-orbit-c { bottom: 20%; left: -20px; animation-delay: -3s; }
.hero-orbit-d { bottom: -10px; right: 15%; animation-delay: -4.5s; }

@keyframes heroOrbit {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.hero-trust {
    margin-top: 1.5rem;
}

.hero-trust-item {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--muted);
    white-space: nowrap;
}

.hero-trust-item .hero-trust-icon {
    width: 28px;
    height: 28px;
    flex-shrink: 0;
    object-fit: contain;
    display: block;
}

.hero-trust span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--muted);
}

.stat-band-modern {
    background: transparent;
    padding: 0 0 24px;
    margin-top: -8px;
}

.stat-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    padding: 22px 16px;
    border-radius: 16px;
    background: #fff;
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.stat-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 36px rgba(18, 50, 92, 0.12);
}

.stat-icon-img {
    width: 52px;
    height: 52px;
}

.portal-home-modern {
    padding-top: 12px;
}

.about-visual-wrap {
    margin-bottom: 18px;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
}

.about-visual-wrap img {
    width: 100%;
    height: auto;
}

.news-panel-modern {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.news-panel-modern li a {
    display: flex;
    align-items: center;
    gap: 12px;
}

.news-icon-img {
    width: 36px;
    height: 36px;
    flex-shrink: 0;
}

.info-cards-modern {
    gap: 20px;
}

.visual-card {
    padding: 22px 20px 24px;
    border-radius: 16px;
    background: #fff;
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
    transition: transform 0.2s ease, border-color 0.2s ease;
}

.visual-card:hover {
    transform: translateY(-4px);
    border-color: var(--border-strong);
}

.visual-card-img {
    width: 64px;
    height: 64px;
    margin-bottom: 12px;
}

.icon-wrap-lg .icon-png {
    width: 80px;
    height: 80px;
}

.service-card-modern,
.why-card-modern,
.product-card-modern {
    border-radius: 16px;
    overflow: hidden;
}

.service-card-top {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 10px;
}

.service-card-top h3 {
    margin: 0;
}

.service-grid-modern .service-card,
.why-grid-modern .why-card,
.product-grid-modern .product-card {
    background: linear-gradient(180deg, #ffffff 0%, #fffaf6 100%);
}

.stack-grid-modern .stack-item-modern {
    border-radius: 14px;
    transition: transform 0.2s ease;
}

.stack-grid-modern .stack-item-modern:hover {
    transform: translateY(-3px);
}

.stack-grid-modern .stack-logo-img {
    width: 72px;
    height: 72px;
}

.lookme-help-head {
    text-align: center;
    max-width: 560px;
    margin: 0 auto 28px;
}

.lookme-help-head h2 {
    border: 0;
    padding: 0;
    color: var(--navy);
    font-size: clamp(1.4rem, 3vw, 1.85rem);
    margin-bottom: 8px;
}

.page-home-modern .section-head h2 {
    border: 0;
    padding: 0;
    color: var(--navy);
    display: block;
}

.page-home-modern .section-head {
    margin-bottom: 28px;
}

.page-home-modern .section {
    padding: 44px 0;
}

.center-lead {
    margin-inline: auto;
    color: var(--muted);
}

.home-stats {
    padding: 0 0 36px;
    border-bottom: 1px solid var(--border);
}

.home-stats-row {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 32px 48px;
}

.home-stats-item {
    text-align: center;
}

.home-stats-item strong {
    display: block;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--saffron-dark);
    line-height: 1.2;
}

.home-stats-item span {
    display: block;
    margin-top: 4px;
    font-size: var(--text-sm);
    color: var(--muted);
    font-weight: 500;
}

.info-cards-simple .visual-card {
    box-shadow: none;
    border-radius: 10px;
}

.info-cards-simple .visual-card:hover {
    transform: none;
    border-color: var(--saffron);
}

.why-grid-simple {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.why-grid-simple .why-card {
    box-shadow: none;
    border: 1px solid var(--border);
    background: #fff;
}

.why-grid-simple .why-card:hover {
    border-color: var(--saffron);
    transform: none;
}

.why-grid-simple .icon-wrap-lg .icon-png {
    width: 56px;
    height: 56px;
}

.page-home-modern .product-card-modern {
    box-shadow: none;
    border: 1px solid var(--border);
    background: #fff;
}

.page-home-modern .product-card-modern:hover {
    transform: none;
    border-color: var(--saffron);
}

.cta-inner-simple {
    padding: 28px 32px;
    background: var(--navy) !important;
    box-shadow: none;
}

.cta-inner-simple h2 {
    font-size: 1.35rem;
    margin-bottom: 6px;
}

.cta-inner-simple p {
    margin: 0;
    font-size: var(--text-base);
}

.wa-section {
    background: transparent;
    padding-top: 44px;
    padding-bottom: 32px;
}

.wa-web {
    box-shadow: 0 4px 24px rgba(11, 20, 26, 0.08);
    border: 1px solid #e9edef;
    border-radius: 14px;
}

.wa-link {
    font-size: 0.875rem;
    font-weight: 700;
    padding: 10px 14px;
    box-shadow: none;
    background: #25d366;
}

.wa-link:hover {
    background: #1da851;
    transform: none;
}

/* --- ROIBest-inspired sections (LOOKME colors) --- */
.section-eyebrow {
    display: inline-block;
    margin: 0 0 12px;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--saffron-dark);
}

.section-eyebrow-light {
    color: rgba(255, 255, 255, 0.88);
}

.center-lead {
    margin-inline: auto;
}

.roi-bento-section {
    padding: 0 0 28px;
    margin-top: -12px;
}

.roi-bento-grid {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 12px;
}

.roi-bento-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 6px;
    padding: 18px 12px 16px;
    border-radius: 14px;
    background: #fff;
    border: 1px solid var(--border);
    box-shadow: 0 4px 16px rgba(18, 50, 92, 0.06);
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.roi-bento-card:hover {
    transform: translateY(-4px);
    border-color: rgba(243, 111, 33, 0.35);
    box-shadow: 0 12px 28px rgba(243, 111, 33, 0.12);
}

.roi-bento-icon-img {
    width: 40px;
    height: 40px;
}

.roi-bento-metric {
    font-size: var(--text-lg);
    font-weight: 800;
    color: var(--saffron-dark);
    line-height: 1.2;
}

.roi-bento-label {
    font-size: var(--text-xs);
    font-weight: 600;
    color: var(--muted);
    line-height: 1.35;
}

.roi-impact {
    padding: 8px 0 36px;
}

.roi-impact-inner {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 28px;
    align-items: center;
    padding: 36px 36px 32px;
    border-radius: 22px;
    background:
        radial-gradient(circle at 100% 0%, rgba(243, 111, 33, 0.18), transparent 45%),
        linear-gradient(135deg, #12325c 0%, #1a4478 55%, #c45110 100%);
    color: #fff;
    box-shadow: 0 24px 56px rgba(18, 50, 92, 0.22);
}

.roi-impact-title {
    margin: 0 0 14px;
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -0.02em;
    color: #fff;
}

.roi-impact-num {
    display: block;
    font-size: clamp(2.4rem, 5vw, 3.2rem);
    font-weight: 800;
    line-height: 1;
    margin-bottom: 6px;
    background: linear-gradient(90deg, #ffb347, #f36f21);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.roi-impact-lead {
    margin: 0 0 22px;
    max-width: 36rem;
    font-size: var(--text-md);
    line-height: var(--leading-relaxed);
    color: rgba(255, 255, 255, 0.9);
}

.roi-impact-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.roi-impact-actions .btn-hero-outline {
    border-color: rgba(255, 255, 255, 0.65);
    color: #fff;
    background: transparent;
}

.roi-impact-actions .btn-hero-outline:hover {
    background: #fff;
    color: var(--navy);
    border-color: #fff;
}

.roi-impact-stack {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.roi-impact-card {
    padding: 18px 16px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.16);
    backdrop-filter: blur(8px);
    transition: transform 0.2s ease, background 0.2s ease;
}

.roi-impact-card:hover {
    transform: translateY(-3px);
    background: rgba(255, 255, 255, 0.14);
}

.roi-impact-card strong {
    display: block;
    font-size: var(--text-lg);
    font-weight: 800;
    color: #fff;
    margin-bottom: 4px;
}

.roi-impact-card span {
    font-size: var(--text-sm);
    color: rgba(255, 255, 255, 0.78);
    font-weight: 500;
}

.roi-impact-card-accent {
    grid-column: span 2;
    background: rgba(243, 111, 33, 0.22);
    border-color: rgba(243, 111, 33, 0.4);
}

.roi-proof {
    padding: 0 0 32px;
}

.roi-proof-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
}

.roi-proof-item {
    text-align: center;
    padding: 24px 16px;
    border-radius: 16px;
    background: linear-gradient(180deg, #fffaf6 0%, #fff 100%);
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
    transition: transform 0.2s ease;
}

.roi-proof-item:hover {
    transform: translateY(-3px);
}

.roi-proof-item strong {
    display: block;
    font-size: clamp(1.4rem, 2.5vw, 1.85rem);
    font-weight: 800;
    color: var(--saffron-dark);
    line-height: 1.15;
}

.roi-proof-item span {
    display: block;
    margin-top: 6px;
    font-size: var(--text-sm);
    font-weight: 600;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.roi-pillars-section {
    padding-top: 48px;
}

.roi-pillars-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
}

.roi-pillar-card {
    position: relative;
    padding: 28px 22px 24px;
    border-radius: 18px;
    background: #fff;
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
    overflow: hidden;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.roi-pillar-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient);
}

.roi-pillar-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 18px 40px rgba(243, 111, 33, 0.14);
}

.roi-pillar-num {
    position: absolute;
    top: 14px;
    right: 16px;
    font-size: 2rem;
    font-weight: 800;
    color: rgba(243, 111, 33, 0.12);
    line-height: 1;
}

.roi-pillar-icon-img {
    width: 52px;
    height: 52px;
    margin-bottom: 10px;
}

.roi-pillar-metric {
    display: inline-block;
    margin-bottom: 8px;
    padding: 4px 10px;
    border-radius: 999px;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--saffron-dark);
    background: rgba(243, 111, 33, 0.1);
    border: 1px solid rgba(243, 111, 33, 0.2);
}

.roi-pillar-card h3 {
    margin: 0 0 8px;
    font-size: var(--text-lg);
    color: var(--navy);
}

.roi-pillar-card p {
    margin: 0;
    font-size: var(--text-sm);
    line-height: var(--leading-relaxed);
    color: var(--muted);
}

.roi-product-card {
    position: relative;
    border-top: 0;
}

.roi-product-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient);
    border-radius: 16px 16px 0 0;
}

.cta-main {
    flex: 1;
    min-width: 0;
}

.cta-mini-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 20px;
    padding-top: 18px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.cta-mini-stats div {
    min-width: 90px;
}

.cta-mini-stats strong {
    display: block;
    font-size: var(--text-xl);
    font-weight: 800;
    color: #fff;
    line-height: 1.2;
}

.cta-mini-stats span {
    display: block;
    font-size: var(--text-xs);
    font-weight: 600;
    color: rgba(255, 255, 255, 0.78);
    text-transform: uppercase;
    letter-spacing: 0.04em;
    margin-top: 2px;
}

.cta-action-btn {
    flex-shrink: 0;
    align-self: center;
    font-weight: 800;
    padding: 14px 28px;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.wa-section {
    background: transparent;
    padding-top: 48px;
    padding-bottom: 36px;
}

/* WhatsApp Web-style: chat list + active conversation */
.wa-web {
    display: grid;
    grid-template-columns: minmax(280px, 340px) minmax(0, 1fr);
    max-width: 1020px;
    margin: 0 auto;
    height: clamp(380px, 46vh, 460px);
    min-height: 0;
    background: #fff;
    border-radius: 18px;
    overflow: hidden;
    box-shadow:
        0 2px 6px rgba(11, 20, 26, 0.06),
        0 18px 48px rgba(11, 20, 26, 0.14);
    border: 1px solid rgba(7, 94, 84, 0.1);
}

.wa-web-sidebar {
    display: flex;
    flex-direction: column;
    background: #fff;
    border-right: 1px solid #e9edef;
    min-height: 0;
}

.wa-web-sidebar-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding: 14px 16px;
    background: #f0f2f5;
    border-bottom: 1px solid #e9edef;
}

.wa-web-sidebar-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #111b21;
    font-size: 1rem;
}

.wa-web-sidebar-logo {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #25d366;
    color: #fff;
}

.wa-web-sidebar-count {
    font-size: 0.68rem;
    font-weight: 700;
    color: #667781;
    background: #e9edef;
    padding: 4px 10px;
    border-radius: 999px;
    white-space: nowrap;
}

.wa-top-info .wa-online {
    font-size: 0.72rem;
    color: #667781;
    display: block;
    max-width: 220px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.wa-web-chats {
    flex: 1;
    overflow-y: auto;
    overscroll-behavior: contain;
}

.wa-web-chat-item {
    display: flex;
    align-items: center;
    gap: 12px;
    width: 100%;
    padding: 12px 16px;
    border: 0;
    border-bottom: 1px solid #f0f2f5;
    background: transparent;
    text-align: left;
    cursor: pointer;
    font-family: inherit;
    transition: background 0.15s ease;
}

.wa-web-chat-item:hover {
    background: #f5f6f6;
}

.wa-web-chat-item.is-active {
    background: #f0f2f5;
}

.wa-web-chat-item:focus-visible {
    outline: 2px solid #25d366;
    outline-offset: -2px;
}

.wa-web-chat-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
    background: #dfe5e7;
}

.wa-web-chat-body {
    flex: 1;
    min-width: 0;
}

.wa-web-chat-top {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 8px;
    margin-bottom: 3px;
}

.wa-web-chat-top strong {
    font-size: 1rem;
    font-weight: 500;
    color: #111b21;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.wa-web-chat-top time {
    font-size: 0.75rem;
    color: #667781;
    flex-shrink: 0;
}

.wa-web-chat-preview {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.8125rem;
    color: #667781;
    line-height: 1.35;
}

.wa-web-chat-preview span {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.wa-web-chat-icon {
    width: 16px;
    height: 16px;
    object-fit: contain;
    flex-shrink: 0;
    opacity: 0.85;
}

.wa-web-main {
    position: relative;
    min-height: 0;
    height: 100%;
    background: #efeae2;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.wa-web-panel {
    display: flex;
    flex-direction: column;
    flex: 1;
    min-height: 0;
    height: 100%;
    font-family: "Segoe UI", "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 14.2px;
    -webkit-font-smoothing: antialiased;
}

.wa-web-panel.is-active {
    display: flex;
}

.wa-web-panel .wa-messages {
    flex: 1;
    min-height: 0;
    overflow-y: auto;
    overscroll-behavior: contain;
}

.wa-browse-hint {
    margin: 20px auto 0;
    max-width: 520px;
    text-align: center;
    font-size: var(--text-sm);
    color: var(--muted);
}

.wa-api-strip {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    background: #f0f2f5;
    border-top: 1px solid #e9edef;
}

.wa-api-strip-icon {
    width: 36px;
    height: 36px;
    object-fit: contain;
    flex-shrink: 0;
}

.wa-api-strip-text {
    flex: 1;
    min-width: 0;
}

.wa-api-strip-text strong {
    display: block;
    font-size: 0.875rem;
    font-weight: 700;
    color: #111b21;
    line-height: 1.3;
}

.wa-api-strip-text span {
    display: block;
    font-size: 0.75rem;
    color: #667781;
    line-height: 1.4;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.wa-api-strip-badge {
    flex-shrink: 0;
    font-size: 0.65rem;
    font-weight: 800;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: #075e54;
    background: rgba(7, 94, 84, 0.1);
    padding: 4px 8px;
    border-radius: 999px;
}

.wa-web .wa-back {
    display: none;
    border: 0;
    background: transparent;
    color: inherit;
    font-size: 1.25rem;
    padding: 0;
    width: 26px;
    cursor: pointer;
    opacity: 0.9;
    flex-shrink: 0;
}

.wa-zigzag {
    display: flex;
    flex-direction: column;
    gap: 32px;
    position: relative;
}

.wa-zigzag::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 60px;
    bottom: 60px;
    width: 4px;
    transform: translateX(-50%);
    background: repeating-linear-gradient(
        180deg,
        rgba(7, 94, 84, 0.28) 0,
        rgba(7, 94, 84, 0.28) 12px,
        transparent 12px,
        transparent 22px
    );
    z-index: 0;
    pointer-events: none;
}

.wa-row {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(280px, 1fr) minmax(320px, 1fr);
    gap: 40px 48px;
    align-items: stretch;
    justify-content: center;
    max-width: 1040px;
    margin: 0 auto;
    padding: 8px 0;
}

.wa-row::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    width: 16px;
    height: 16px;
    background: linear-gradient(135deg, #25d366, #128c7e);
    border: 3px solid #fff;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    box-shadow: 0 0 0 5px rgba(37, 211, 102, 0.22), 0 4px 12px rgba(7, 94, 84, 0.25);
    z-index: 2;
}

.wa-row-alt {
    grid-template-columns: minmax(320px, 1fr) minmax(280px, 1fr);
}

.wa-row-alt .wa-side-visual {
    order: 2;
}

.wa-row-alt .wa-phone {
    order: 1;
    justify-self: end;
}

.wa-row:not(.wa-row-alt) .wa-phone {
    justify-self: start;
}

.wa-side-visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: waSideFloat 6s ease-in-out infinite;
}

.wa-row-alt .wa-side-visual {
    animation-delay: -3s;
}

@keyframes waSideFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

.wa-side-card {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    text-align: center;
    width: 100%;
    max-width: 360px;
    padding: 28px 24px 24px;
    background: linear-gradient(165deg, #ffffff 0%, #f8faf9 100%);
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.9);
    box-shadow:
        0 4px 6px rgba(18, 50, 92, 0.04),
        0 20px 48px rgba(18, 50, 92, 0.12);
    overflow: hidden;
}

.wa-side-card::before {
    content: "";
    position: absolute;
    inset: 0 0 auto;
    height: 4px;
    background: linear-gradient(90deg, #075e54, #25d366, #128c7e);
}

.wa-step {
    position: absolute;
    top: 16px;
    left: 16px;
    z-index: 3;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    color: #075e54;
    background: rgba(37, 211, 102, 0.14);
    border: 1px solid rgba(37, 211, 102, 0.35);
    padding: 4px 10px;
    border-radius: 999px;
}

.wa-side-ring,
.wa-side-glow {
    display: none;
}

.wa-side-png {
    position: relative;
    z-index: 2;
    width: 150px;
    height: 150px;
    object-fit: contain;
    display: block;
    background: none;
    border: 0;
    box-shadow: none;
    filter: none;
}

.wa-side-title {
    position: relative;
    z-index: 2;
    font-size: 1.05rem;
    font-weight: 800;
    color: #053328;
    line-height: 1.35;
    max-width: 22ch;
}

.wa-side-desc {
    position: relative;
    z-index: 2;
    margin: 0;
    font-size: var(--text-sm);
    line-height: var(--leading-relaxed);
    color: #3f342e;
    font-weight: 500;
    max-width: 32ch;
}

.wa-side-badge {
    position: relative;
    z-index: 2;
    display: inline-block;
    margin-top: 4px;
    padding: 6px 14px;
    border-radius: 999px;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #075e54;
    background: rgba(7, 94, 84, 0.08);
    border: 1px solid rgba(7, 94, 84, 0.15);
}

.wa-phone {
    width: 100%;
    max-width: 420px;
    background: #1a1a1a;
    border-radius: 28px;
    padding: 10px;
    box-shadow:
        0 0 0 1px rgba(255, 255, 255, 0.06),
        0 24px 56px rgba(0, 0, 0, 0.22),
        0 8px 24px rgba(7, 94, 84, 0.12);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.wa-phone:hover {
    transform: translateY(-6px);
    box-shadow:
        0 0 0 1px rgba(255, 255, 255, 0.08),
        0 32px 64px rgba(0, 0, 0, 0.26),
        0 12px 32px rgba(7, 94, 84, 0.16);
}

.wa-phone-bezel {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    min-height: 380px;
    font-family: "Segoe UI", "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 14.2px;
    -webkit-font-smoothing: antialiased;
}

.wa-top {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    background: #008069;
    color: #fff;
}

.wa-back {
    font-size: 1.25rem;
    opacity: 0.9;
    width: 26px;
    flex-shrink: 0;
}

.wa-top-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
    background: #dfe5e7;
}

.wa-top-logo {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #fff;
    object-fit: contain;
    padding: 3px;
    flex-shrink: 0;
}

.wa-top-info {
    flex: 1;
    min-width: 0;
    line-height: 1.25;
}

.wa-top-info strong {
    display: block;
    font-size: 1rem;
    font-weight: 500;
}

.wa-online {
    display: block;
    font-size: 0.8125rem;
    opacity: 0.85;
    font-weight: 400;
}

.wa-top-actions {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 1.05rem;
    opacity: 0.92;
    flex-shrink: 0;
}

.wa-dot {
    display: none;
}

@keyframes waPulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.75; transform: scale(0.92); }
}

.wa-top-icon {
    width: 40px;
    height: 40px;
    object-fit: contain;
    background: none;
    border: 0;
    box-shadow: none;
    filter: none;
    flex-shrink: 0;
}

.wa-topic {
    display: none;
}

.wa-msg-row {
    display: flex;
    align-items: flex-end;
    gap: 6px;
    max-width: 100%;
}

.wa-msg-row-in {
    align-self: flex-start;
}

.wa-msg-row-out {
    align-self: flex-end;
    justify-content: flex-end;
}

.wa-chat-avatar {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
    margin-bottom: 2px;
    background: #dfe5e7;
}

.wa-messages {
    flex: 1;
    padding: 12px 16px 16px;
    background-color: #efeae2;
    background-image: url("/assets/images/wa-wallpaper.svg");
    background-size: 412px 412px;
    background-repeat: repeat;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.wa-day {
    text-align: center;
    margin: 2px 0 10px;
}

.wa-day span {
    display: inline-block;
    padding: 4px 12px 5px;
    border-radius: 7px;
    background: #ffffff;
    color: #54656f;
    font-size: 0.765rem;
    font-weight: 500;
    box-shadow: 0 1px 0.5px rgba(11, 20, 26, 0.13);
}

.wa-msg {
    position: relative;
    max-width: 85%;
    padding: 6px 8px 5px 10px;
    border-radius: 7.5px;
    box-shadow: 0 1px 0.5px rgba(11, 20, 26, 0.13);
    opacity: 0;
    transform: translateY(12px);
}

.wa-sender,
.wa-sender-brand {
    display: none;
}

.wa-msg p {
    margin: 0 0 2px;
    font-size: inherit;
    line-height: 19px;
    font-weight: 400;
    color: #111b21;
    word-break: break-word;
}

.wa-hl {
    color: #054640;
    font-weight: 800;
}

.wa-in {
    background: #fff;
    border-top-left-radius: 0;
}

.wa-in::before {
    content: "";
    position: absolute;
    left: -6px;
    top: 0;
    border-top: 6px solid #fff;
    border-left: 6px solid transparent;
}

.wa-out {
    background: #d9fdd3;
    border-top-right-radius: 0;
}

.wa-out::before {
    content: "";
    position: absolute;
    right: -6px;
    top: 0;
    border-top: 6px solid #d9fdd3;
    border-right: 6px solid transparent;
}

.wa-out p {
    font-weight: 400;
    color: #111b21;
}

.wa-time {
    float: right;
    margin-left: 8px;
    font-size: 0.6875rem;
    color: #667781;
    line-height: 15px;
    margin-top: 2px;
}

.wa-meta {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 4px;
    clear: both;
}

.wa-ticks {
    color: #53bdeb;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: -2px;
}

.wa-footer {
    padding: 12px 14px;
    background: #f0f2f5;
    border-top: 1px solid #e0e0e0;
}

.wa-link {
    display: block;
    text-align: center;
    padding: 12px 16px;
    border-radius: 999px;
    background: linear-gradient(180deg, #2ee06a 0%, #25d366 100%);
    color: #fff;
    font-weight: 800;
    font-size: 0.92rem;
    letter-spacing: 0.02em;
    box-shadow: 0 4px 14px rgba(37, 211, 102, 0.35);
    opacity: 0;
    transform: translateY(8px);
    transition: background 0.2s ease, transform 0.2s ease;
}

.wa-link:hover {
    background: linear-gradient(180deg, #25d366 0%, #1da851 100%);
    color: #fff;
    transform: translateY(-1px);
}

.wa-row.is-live .wa-msg-row-in .wa-in,
.wa-web-panel.is-live .wa-msg-row-in .wa-in {
    animation: waMsgIn 0.5s ease forwards;
    animation-delay: calc(var(--qa-delay, 0s) + 0.15s);
}

.wa-row.is-live .wa-msg-row-out .wa-out,
.wa-web-panel.is-live .wa-msg-row-out .wa-out {
    animation: waMsgInRight 0.55s cubic-bezier(0.2, 0.9, 0.2, 1) forwards;
    animation-delay: calc(var(--qa-delay, 0s) + 0.7s);
}

.wa-row.is-live .wa-in,
.wa-web-panel.is-live .wa-in {
    animation: waMsgIn 0.5s ease forwards;
    animation-delay: calc(var(--qa-delay, 0s) + 0.15s);
}

.wa-row.is-live .wa-out,
.wa-web-panel.is-live .wa-out {
    animation: waMsgInRight 0.55s cubic-bezier(0.2, 0.9, 0.2, 1) forwards;
    animation-delay: calc(var(--qa-delay, 0s) + 0.7s);
}

.wa-row.is-live .wa-link,
.wa-web-panel.is-live .wa-link {
    animation: waMsgIn 0.45s ease forwards;
    animation-delay: calc(var(--qa-delay, 0s) + 1.1s);
}

.wa-row.is-live .wa-side-visual {
    animation: waSidePop 0.6s ease forwards, waSideFloat 6s ease-in-out 0.6s infinite;
}

@keyframes waSidePop {
    from { opacity: 0; transform: scale(0.9) translateY(16px); }
    to { opacity: 1; transform: scale(1) translateY(0); }
}

/* All client questions — below WhatsApp chat */
.wa-faq-all {
    margin-top: 48px;
    padding-top: 40px;
    border-top: 1px solid var(--border);
}

.wa-faq-all-head {
    margin-bottom: 32px;
    text-align: center;
}

.wa-faq-all-head h3 {
    color: var(--navy);
    font-size: clamp(1.2rem, 2.5vw, 1.55rem);
    font-weight: 800;
    margin: 8px 0 10px;
}

.wa-faq-all-lead {
    color: var(--muted);
    max-width: 40rem;
    margin: 0 auto;
    font-size: var(--text-sm);
}

.wa-faq-group {
    margin-bottom: 36px;
}

.wa-faq-group-head {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px 14px;
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 2px solid #fff0e6;
}

.wa-faq-group-head h4 {
    margin: 0;
    color: var(--navy);
    font-size: 1.05rem;
    font-weight: 800;
    flex: 1;
    min-width: 180px;
}

.wa-faq-group-icon {
    width: 28px;
    height: 28px;
    object-fit: contain;
}

.wa-faq-group-count {
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--saffron-dark);
    background: #fff7f0;
    padding: 4px 10px;
    border-radius: 999px;
}

.wa-faq-group-link {
    font-size: var(--text-sm);
    font-weight: 700;
    color: var(--saffron-dark);
}

.wa-faq-group-link:hover {
    color: var(--navy);
}

.wa-faq-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.wa-faq-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 16px 18px;
    border-left: 3px solid #25d366;
}

.wa-faq-card-client {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.wa-faq-card-client img {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    object-fit: cover;
}

.wa-faq-card-client strong {
    font-size: var(--text-sm);
    color: var(--navy);
}

.wa-faq-q {
    margin: 0 0 10px;
    font-size: var(--text-sm);
    font-weight: 600;
    color: #111b21;
    line-height: 1.45;
    font-style: normal;
}

.wa-faq-a {
    margin: 0;
    font-size: var(--text-sm);
    color: var(--muted);
    line-height: 1.55;
    padding: 10px 12px;
    background: #e7ffdb;
    border-radius: 0 10px 10px 10px;
}

.wa-faq-a .wa-hl {
    color: #128c7e;
}

/* Desktop: WhatsApp Web layout stays side-by-side */
@media (min-width: 992px) {
    .wa-web {
        height: clamp(400px, 46vh, 460px);
    }

    .wa-web-show-list .wa-web-main {
        display: flex;
    }

    .wa-web-show-chat .wa-web-sidebar {
        display: flex;
    }
}

@media (max-width: 991px) {
    .wa-faq-grid {
        grid-template-columns: 1fr;
    }

    .wa-web {
        grid-template-columns: 1fr;
        height: auto;
        max-height: none;
        border-radius: 14px;
    }

    .wa-web-show-list .wa-web-sidebar {
        max-height: 420px;
    }

    .wa-web-show-list .wa-web-main {
        display: none;
    }

    .wa-web-show-chat .wa-web-sidebar {
        display: none;
    }

    .wa-web .wa-back {
        display: inline-block;
    }

    .wa-web-panel {
        min-height: 0;
        height: auto;
        max-height: 460px;
    }

    .wa-api-strip {
        flex-wrap: wrap;
        gap: 8px;
    }

    .wa-api-strip-text span {
        white-space: normal;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

    .wa-api-strip-badge {
        display: none;
    }
}

/* Legacy grid styles kept for reference — no longer used on homepage */
@media (min-width: 992px) {
    .wa-zigzag {
        display: flex;
        flex-direction: column;
        gap: 32px;
    }

    .wa-zigzag::before,
    .wa-row::after {
        display: none;
    }
}

@keyframes qaSpin {
    to { transform: rotate(360deg); }
}

@keyframes waMsgIn {
    from { opacity: 0; transform: translateX(-14px) translateY(8px); }
    to { opacity: 1; transform: translateX(0) translateY(0); }
}

@keyframes waMsgInRight {
    from { opacity: 0; transform: translateX(14px) translateY(8px); }
    to { opacity: 1; transform: translateX(0) translateY(0); }
}

.reveal-up {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.7s ease, transform 0.7s ease;
    transition-delay: var(--qa-delay, 0s);
}

.reveal-up.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.cta-band-modern {
    background: transparent;
    padding: 0 0 48px;
}

.cta-inner-modern {
    position: relative;
    overflow: hidden;
    border: 0;
    border-radius: 20px;
    color: #fff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 28px;
    padding: 36px 40px;
    background:
        linear-gradient(135deg, rgba(18, 50, 92, 0.92), rgba(196, 81, 16, 0.94)),
        url("/assets/images/home/cta-pattern.png") center / cover no-repeat;
    box-shadow: 0 20px 50px rgba(18, 50, 92, 0.22);
}

.cta-inner-modern h2,
.cta-inner-modern p {
    color: #fff;
}

.cta-inner-modern p {
    opacity: 0.92;
}

.btn-light {
    background: #fff;
    color: var(--saffron-dark);
    border-color: #fff;
}

.btn-light:hover {
    background: #fff7f0;
    color: var(--navy);
}

.page-hero {
    padding: 28px 0 12px;
    background: #fff7f0;
    border-bottom: 3px solid var(--saffron);
}

/* Inner pages — match homepage clean style */
.page-inner-modern .page-hero {
    padding: 40px 0 36px;
}

.page-inner-modern .page-hero h1 {
    color: var(--navy);
    font-size: clamp(1.45rem, 3vw, 2rem);
    font-weight: 800;
    margin-bottom: 12px;
}

.page-inner-modern .page-hero .lead {
    color: var(--muted);
    max-width: 42rem;
}

.page-inner-modern .eyebrow {
    color: var(--saffron-dark);
    font-size: var(--text-sm);
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.page-inner-modern .section-head h2,
.page-inner-modern .split h2 {
    border: 0;
    padding: 0;
    color: var(--navy);
}

.page-inner-modern .section {
    padding: 44px 0;
}

.page-inner-modern .glass-card,
.page-inner-modern .feature-card,
.page-inner-modern .service-card,
.page-inner-modern .product-card,
.page-inner-modern .form-card,
.page-inner-modern .contact-aside,
.page-inner-modern .docs-side,
.page-inner-modern .docs-content .glass-card,
.page-inner-modern .process-card-modern {
    box-shadow: none;
    border: 1px solid var(--border);
    background: #fff;
    border-radius: 12px;
}

.page-inner-modern .feature-card:hover,
.page-inner-modern .service-card:hover,
.page-inner-modern .product-card:hover {
    border-color: var(--saffron);
    transform: none;
}

.feature-grid-modern,
.process-grid-modern {
    gap: 18px;
}

.feature-card-modern .icon-wrap .icon-png {
    width: 56px;
    height: 56px;
}

.process-card-modern {
    padding: 20px 18px;
    list-style: none;
}

.page-inner-modern .notice {
    margin-top: 24px;
}

.form-note {
    font-size: var(--text-sm);
    margin: 8px 0 16px;
    color: var(--muted);
}

.legal-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 12px 20px;
    margin-top: 32px;
    padding-top: 24px;
    border-top: 1px solid var(--border);
}

.legal-nav a {
    font-weight: 600;
    font-size: var(--text-sm);
}

.error-page-modern {
    min-height: 50vh;
    display: grid;
    place-items: center;
    text-align: center;
    padding: 60px 0;
    background: #fff7f0;
}

.error-page-modern h1 {
    color: var(--navy);
}

.error-page-modern .hero-actions {
    justify-content: center;
    margin-top: 20px;
}

.page-inner-modern .docs-side a {
    display: block;
    padding: 8px 0;
    color: var(--saffron-dark);
    font-weight: 600;
    font-size: var(--text-sm);
}

.page-inner-modern .docs-side a:hover {
    color: var(--navy);
}

.page-inner-modern pre {
    background: #1a2332;
    color: #c9d8e8;
    padding: 16px;
    border-radius: 10px;
    overflow-x: auto;
    font-size: 0.82rem;
    line-height: 1.6;
}

.directory-group {
    margin-bottom: 42px;
}

/* Service detail pages */
.service-hero {
    padding-bottom: 28px;
}

.service-hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    align-items: center;
}

.service-hero-copy .lead {
    max-width: 36rem;
}

.service-status-line {
    margin: 0 0 16px;
}

.service-hero-visual {
    min-height: 280px;
}

.service-api-panel {
    height: 300px;
}

.service-api-code {
    font-size: 0.78rem;
}

.service-stats {
    background: var(--navy);
    padding: 20px 0;
    border-bottom: 3px solid var(--saffron);
}

.service-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    text-align: center;
}

.service-stat {
    color: rgba(255, 255, 255, 0.88);
}

.service-stat strong {
    display: block;
    font-size: 1.15rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 4px;
}

.service-stat span {
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.62);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.api-endpoints-table {
    border: 1px solid var(--border);
    border-radius: 12px;
    overflow: hidden;
    background: #fff;
}

.api-endpoint-row {
    display: grid;
    grid-template-columns: 88px 1fr 1.4fr;
    gap: 16px;
    align-items: center;
    padding: 14px 18px;
    border-bottom: 1px solid var(--border);
    font-size: var(--text-sm);
}

.api-endpoint-row:last-child {
    border-bottom: 0;
}

.api-endpoint-head {
    background: #fff7f0;
    font-weight: 700;
    color: var(--navy);
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.api-method {
    display: inline-block;
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    padding: 4px 8px;
    border-radius: 6px;
    text-align: center;
}

.api-method-post {
    background: rgba(243, 111, 33, 0.12);
    color: var(--saffron-dark);
}

.api-method-get {
    background: rgba(18, 50, 92, 0.1);
    color: var(--navy);
}

.api-path {
    font-family: "Cascadia Code", "Consolas", monospace;
    font-size: 0.78rem;
    color: var(--navy);
    word-break: break-all;
}

.api-desc {
    color: var(--muted);
    line-height: 1.5;
}

.webhook-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.webhook-card {
    padding: 20px 18px;
}

.webhook-event {
    display: inline-block;
    font-family: "Cascadia Code", "Consolas", monospace;
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--saffron-dark);
    background: #fff7f0;
    padding: 6px 10px;
    border-radius: 8px;
    margin-bottom: 10px;
}

.webhook-card p {
    margin: 0;
    font-size: var(--text-sm);
    color: var(--muted);
}

.related-api-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
}

.related-api-card {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 16px;
    border: 1px solid var(--border);
    border-radius: 12px;
    background: #fff;
    color: var(--navy);
    font-weight: 600;
    font-size: var(--text-sm);
    transition: border-color 0.2s ease, background 0.2s ease;
}

.related-api-card:hover {
    border-color: var(--saffron);
    background: #fffaf6;
    color: var(--navy);
}

.related-api-icon .icon-png {
    width: 36px;
    height: 36px;
}

.related-api-label {
    flex: 1;
    line-height: 1.35;
}

.related-api-card .icon-png:last-child {
    width: 16px;
    height: 16px;
    opacity: 0.5;
}

.section-related {
    padding-top: 20px;
}

.service-grid-modern .service-card-modern {
    background: linear-gradient(180deg, #ffffff 0%, #fffaf6 100%);
}

.cta-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
    padding: 24px;
    border-radius: 4px;
    background: #fff7f0;
    border: 1px solid var(--border);
}

.site-footer {
    border-top: 3px solid var(--saffron);
    background: #12325c;
    color: #e8eef5;
    padding: 48px 0 0;
}

.footer-top {
    display: grid;
    grid-template-columns: 1.2fr repeat(3, minmax(0, 1fr));
    gap: 32px 24px;
    padding-bottom: 28px;
}

.footer-brand-link {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 14px;
    color: #fff;
}

.footer-brand-link:hover {
    color: #fff;
    opacity: 0.92;
}

.footer-text-logo {
    display: flex;
    flex-direction: column;
    line-height: 1.15;
    gap: 2px;
}

.footer-text-logo-main {
    font-size: 1.1rem;
    letter-spacing: 0.06em;
    color: #fff;
}

.footer-text-logo-sub {
    font-size: 0.62rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.72);
}

.footer-tagline {
    margin: 0 0 8px;
    font-size: var(--text-sm);
    color: rgba(255, 255, 255, 0.82);
    line-height: 1.5;
    max-width: 26ch;
}

.footer-company {
    margin: 0 0 16px;
    font-size: var(--text-sm);
    color: rgba(255, 255, 255, 0.62);
}

.btn-footer-cta {
    display: inline-block;
    padding: 10px 18px;
    border-radius: 8px;
    background: var(--saffron);
    color: #fff;
    font-weight: 700;
    font-size: var(--text-sm);
    transition: background 0.2s ease, transform 0.2s ease;
}

.btn-footer-cta:hover {
    background: #e85d0a;
    color: #fff;
    transform: translateY(-1px);
}

.footer-heading {
    margin: 0 0 14px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #fff;
    border: 0;
    padding: 0;
}

.footer-links {
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer-links li {
    margin-bottom: 8px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.72);
    font-size: var(--text-sm);
    line-height: 1.4;
    transition: color 0.15s ease;
}

.footer-links a:hover {
    color: #fff;
}

.footer-disclaimer {
    margin: 0;
    padding: 18px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    font-size: 0.82rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.55);
}

.footer-bottom {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 8px 16px;
    padding: 16px 0 22px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.55);
}

.footer-bottom p {
    margin: 0;
    color: rgba(255, 255, 255, 0.55);
}

/* Legacy footer selectors — keep for other pages if referenced */
.footer-grid {
    padding-bottom: 0;
}

.site-footer h2 {
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #fff;
    margin-bottom: 14px;
    border: 0;
    padding: 0;
}

.site-footer a {
    color: rgba(255, 255, 255, 0.72);
}

.site-footer a:hover {
    color: #fff;
}

.footer-note {
    color: rgba(255, 255, 255, 0.55);
    font-size: 0.82rem;
}

.error-page {
    min-height: 58vh;
    display: grid;
    place-items: center;
    text-align: center;
    padding: 60px 0;
}

@media (max-width: 1024px) {
    .hero-grid,
    .home-hero-grid,
    .global-panel,
    .about-preview,
    .split,
    .service-intro-split,
    .contact-layout,
    .docs-grid,
    .footer-top {
        grid-template-columns: 1fr 1fr;
    }

    .footer-brand {
        grid-column: 1 / -1;
    }

    .footer-grid,
    .portal-grid,
    .brand-bar-inner {
        grid-template-columns: 1fr;
    }

    .service-grid,
    .product-grid,
    .feature-grid,
    .why-grid,
    .process-grid,
    .trust-row,
    .stat-row,
    .info-cards {
        grid-template-columns: 1fr 1fr;
    }

    .why-grid-simple {
        grid-template-columns: 1fr;
    }

    .home-stats-row {
        gap: 24px;
    }

    .wa-zigzag::before,
    .wa-row::after {
        display: none;
    }

    .wa-zigzag {
        gap: 36px;
    }

    .wa-row,
    .wa-row-alt {
        grid-template-columns: 1fr;
        max-width: 440px;
        gap: 20px;
        padding: 0;
    }

    .wa-row-alt .wa-side-visual,
    .wa-row-alt .wa-phone,
    .wa-row:not(.wa-row-alt) .wa-phone {
        order: unset;
        justify-self: stretch;
    }

    .wa-side-card {
        max-width: none;
        padding: 24px 20px 20px;
    }

    .wa-side-png {
        width: 120px;
        height: 120px;
    }

    .wa-side-desc {
        font-size: 0.85rem;
    }

    .wa-phone {
        max-width: none;
        border-radius: 24px;
        padding: 8px;
    }

    .wa-phone-bezel {
        min-height: 340px;
    }

    .service-hero-grid {
        grid-template-columns: 1fr 1fr;
    }

    .webhook-grid {
        grid-template-columns: 1fr 1fr;
    }

    .related-api-grid {
        grid-template-columns: 1fr 1fr;
    }

    .api-endpoint-row {
        grid-template-columns: 72px 1fr;
    }

    .api-endpoint-row .api-desc {
        grid-column: 1 / -1;
    }

    .docs-side {
        position: static;
    }

    .brand-bar-inner,
    .topbar-inner {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 860px) {
    .nav-toggle {
        display: inline-block;
    }

    .site-nav {
        position: absolute;
        top: var(--header-h);
        left: 0;
        right: 0;
        display: none;
        flex-direction: column;
        align-items: stretch;
        gap: 8px;
        padding: 16px;
        background: var(--saffron-dark);
        border-bottom: 1px solid #a8440c;
    }

    .site-nav.is-open {
        display: flex;
    }

    .nav-list {
        flex-direction: column;
        align-items: stretch;
    }

    .dropdown {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        display: none;
        min-width: 0;
        box-shadow: none;
        background: transparent;
        border: 0;
        padding: 0 0 0 10px;
    }

    .has-dropdown.is-open .dropdown {
        display: block;
    }

    .btn-nav {
        width: 100%;
    }

    .hero-visual {
        min-height: 320px;
    }

    .home-hero-visual {
        max-width: 560px;
        margin-inline: auto;
        margin-top: 12px;
    }

    .hero-panel {
        height: 300px;
    }

    .hero-orbit-a { left: 0; }
    .hero-orbit-b { right: 0; }
    .hero-orbit-c { left: 0; }

    .page-home-modern .home-hero {
        padding: 36px 0 44px;
    }

    .network-panel {
        min-height: 320px;
    }
}

@media (max-width: 640px) {
    .footer-top {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .footer-bottom {
        flex-direction: column;
    }

    .brand-poster-carousel,
    .brand-banner-advanced {
        width: 100%;
        height: 64px;
    }

    .brand-text-logo-main {
        font-size: 1.15rem;
    }

    .brand-text-logo-sub {
        font-size: 0.5rem;
        letter-spacing: 0.12em;
    }

    .service-intro-split {
        grid-template-columns: 1fr;
    }

    .service-intro-aside {
        position: static;
    }

    .service-hero-grid,
    .service-stats-grid,
    .webhook-grid,
    .related-api-grid {
        grid-template-columns: 1fr;
    }

    .service-api-panel {
        height: 280px;
    }

    .service-grid,
    .product-grid,
    .feature-grid,
    .why-grid,
    .process-grid,
    .trust-row,
    .form-grid,
    .stat-row,
    .info-cards,
    .wa-row {
        grid-template-columns: 1fr;
    }

    .roi-bento-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .cta-inner-simple {
        flex-direction: column;
        align-items: stretch;
        padding: 24px 20px;
    }

    .hero {
        padding-top: 36px;
    }

    .cta-inner {
        flex-direction: column;
        align-items: stretch;
    }

    .page-home-modern .home-hero .hero-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .page-home-modern .home-hero .hero-actions .btn {
        width: 100%;
    }

    .hero-trust {
        flex-direction: column;
        align-items: flex-start;
    }

    .section {
        padding: 56px 0;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        animation: none !important;
        transition: none !important;
    }

    .reveal-up,
    .wa-msg,
    .wa-link {
        opacity: 1 !important;
        transform: none !important;
    }
}

:focus-visible {
    outline: 2px solid var(--blue);
    outline-offset: 3px;
}
