:root {
    --primary: #f97316;
    --primary-dark: #ea580c;
    --primary-glow: rgba(249, 115, 22, 0.3);
    --accent: #10b981;
    --accent-light: #6ee7b7;
    --success: #10b981;
    --bg-dark: #08111f;
    --bg-surface: #0d1728;
    --bg-card: #111e35;
    --bg-gradient: linear-gradient(135deg, #08111f 0%, #10203b 50%, #172949 100%);
    --text-main: #f8fafc;
    --text-muted: #cbd5e1;
    --text-dim: #94a3b8;
    --glass-bg: rgba(255, 255, 255, 0.04);
    --glass-border: rgba(148, 163, 184, 0.18);
    --glass-hover: rgba(255, 255, 255, 0.08);
    --card-shadow: 0 24px 60px rgba(2, 6, 23, 0.32);
    --transition: all 0.28s ease;
    --transition-fast: all 0.18s ease;
    --slider-track: #22314d;
    --border-radius: 24px;
    --container: 1180px;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 100px;
}

body {
    margin: 0;
    font-family: "Manrope", sans-serif;
    color: var(--text-main);
    line-height: 1.65;
    background:
        radial-gradient(circle at top left, rgba(249, 115, 22, 0.12), transparent 28%),
        radial-gradient(circle at top right, rgba(16, 185, 129, 0.08), transparent 24%),
        linear-gradient(180deg, #08111f 0%, #0b1526 38%, #09111d 100%);
    overflow-x: hidden;
}

main {
    overflow: hidden;
}

#particle-canvas {
    display: none;
}

img {
    display: block;
    max-width: 100%;
}

a {
    color: inherit;
}

button,
input,
select,
textarea {
    font: inherit;
}

:focus-visible {
    outline: 2px solid rgba(249, 115, 22, 0.9);
    outline-offset: 3px;
}

.container {
    width: min(var(--container), calc(100% - 40px));
    margin: 0 auto;
}

h1,
h2,
h3,
h4,
summary {
    font-family: "Space Grotesk", sans-serif;
    line-height: 1.08;
    letter-spacing: -0.03em;
    margin: 0;
}

h1 {
    font-size: clamp(3rem, 6vw, 5.6rem);
}

h2 {
    font-size: clamp(2rem, 4vw, 3.4rem);
}

h3 {
    font-size: clamp(1.15rem, 2vw, 1.55rem);
}

p {
    margin: 0;
}

.text-muted {
    color: var(--text-dim);
}

.gradient-text {
    background: linear-gradient(135deg, #f97316 0%, #fb923c 42%, #6ee7b7 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 16px;
    border-radius: 999px;
    background: rgba(249, 115, 22, 0.12);
    border: 1px solid rgba(249, 115, 22, 0.24);
    color: #fdba74;
    font-size: 0.82rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.section-shell {
    padding: 96px 0;
}

.section-intro {
    display: grid;
    justify-items: center;
    gap: 18px;
    margin-bottom: 42px;
    text-align: center;
}

.section-intro.align-left {
    justify-items: start;
    text-align: left;
}

.section-title {
    max-width: 860px;
}

.section-subtitle {
    max-width: 760px;
    color: var(--text-dim);
    font-size: 1.05rem;
}

.list-dot {
    flex: 0 0 12px;
    width: 12px;
    height: 12px;
    margin-top: 0.45rem;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    box-shadow: 0 0 0 4px rgba(249, 115, 22, 0.08);
}

/* Icon-based list items - replacing bullet dots */
.icon-list {
    display: grid;
    gap: 16px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.icon-list li {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    color: var(--text-muted);
}

.icon-list .icon {
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    background: rgba(249, 115, 22, 0.12);
    font-size: 1.1rem;
}

.icon-list .icon.accent {
    background: rgba(16, 185, 129, 0.12);
}

.detail-list,
.hero-points,
.panel-checklist,
.aside-list {
    display: grid;
    gap: 14px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.detail-list li,
.hero-points li,
.panel-checklist li,
.aside-list li {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    color: var(--text-muted);
}

.compact-list {
    gap: 12px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 22px;
    border-radius: 999px;
    border: 1px solid transparent;
    text-decoration: none;
    font-weight: 700;
    transition: var(--transition);
    white-space: nowrap;
    cursor: pointer;
}

.btn:hover {
    transform: translateY(-2px);
}

.btn-lg {
    padding: 16px 28px;
    font-size: 1rem;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: #fff7ed;
    box-shadow: 0 18px 38px rgba(249, 115, 22, 0.22);
}

.btn-primary:hover {
    box-shadow: 0 24px 46px rgba(249, 115, 22, 0.3);
}

.btn-whatsapp {
    background: linear-gradient(135deg, #16a34a, #128c7e);
    color: white;
    box-shadow: 0 18px 38px rgba(18, 140, 126, 0.22);
}

.btn-whatsapp:hover {
    box-shadow: 0 24px 46px rgba(18, 140, 126, 0.28);
}

.btn-glass {
    background: rgba(255, 255, 255, 0.04);
    border-color: var(--glass-border);
    color: var(--text-main);
}

.btn-glass:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(249, 115, 22, 0.24);
}

.text-link {
    color: #fdba74;
    font-weight: 700;
    text-decoration: none;
}

.text-link:hover {
    color: #fed7aa;
}

.navbar {
    position: sticky;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(16px);
    background: rgba(8, 17, 31, 0.82);
    border-bottom: 1px solid rgba(148, 163, 184, 0.12);
    transition: var(--transition);
}

.navbar.scrolled {
    background: rgba(8, 17, 31, 0.94);
    box-shadow: 0 18px 40px rgba(2, 6, 23, 0.24);
}

.nav-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 84px;
    gap: 20px;
}

.logo {
    display: inline-flex;
    align-items: center;
}

.logo img {
    width: auto;
    height: 50px;
    object-fit: contain;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 22px;
}

.nav-links a {
    color: var(--text-dim);
    font-size: 0.94rem;
    font-weight: 700;
    text-decoration: none;
    transition: var(--transition-fast);
}

.nav-links a:hover {
    color: var(--text-main);
}

/* Hide mobile contact buttons on desktop */
.mobile-contact-btn {
    display: none;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.nav-trust {
    color: var(--text-dim);
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.nav-phone {
    text-decoration: none;
    font-weight: 700;
    color: var(--text-main);
    padding: 12px 16px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--glass-border);
}

.nav-phone:hover {
    border-color: rgba(249, 115, 22, 0.24);
}

.hero {
    position: relative;
    padding: 72px 0 56px;
}

.hero-orb {
    position: absolute;
    border-radius: 999px;
    filter: blur(50px);
    pointer-events: none;
}

.hero-orb-one {
    width: 320px;
    height: 320px;
    top: 6%;
    left: -90px;
    background: rgba(249, 115, 22, 0.16);
}

.hero-orb-two {
    width: 260px;
    height: 260px;
    right: -70px;
    bottom: 10%;
    background: rgba(16, 185, 129, 0.12);
}

.hero-grid {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1.06fr) minmax(340px, 0.94fr);
    align-items: center;
    gap: 42px;
}

.hero-copy,
.hero-panel {
    position: relative;
    z-index: 1;
}

.hero-copy {
    display: grid;
    gap: 24px;
}

.hero-lead {
    max-width: 690px;
    color: var(--text-muted);
    font-size: 1.12rem;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.hero-note {
    color: #fdba74;
    font-weight: 700;
}

.quote-card,
.hero-visual,
.coverage-card,
.pillar-card,
.process-item,
.aside-card,
.spotlight-row,
.calculator-panel,
.result-card,
.readiness-card,
.case-study-card,
.tracking-preview-card,
.audience-card,
.faq-item,
.cta-card,
.contact-card,
.form-card {
    border: 1px solid var(--glass-border);
    border-radius: var(--border-radius);
    background: linear-gradient(180deg, rgba(17, 30, 53, 0.92) 0%, rgba(9, 17, 32, 0.96) 100%);
    box-shadow: var(--card-shadow);
}

.hero-panel {
    display: grid;
    gap: 20px;
}

.quote-card {
    display: grid;
    gap: 22px;
    padding: 28px;
}

.quote-card-header {
    display: grid;
    gap: 8px;
}

.panel-label {
    color: #fdba74;
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    margin: 0;
    text-transform: uppercase;
}

.quick-proof {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.quick-proof-item {
    display: grid;
    gap: 6px;
    padding: 16px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.04);
}

.quick-proof-value {
    font-family: "Space Grotesk", sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
}

.quick-proof-label {
    color: var(--text-dim);
    font-size: 0.88rem;
}

.panel-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    align-items: center;
}

.hero-visual {
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    min-height: 320px;
    background: linear-gradient(180deg, #edf4f8 0%, #dbe7f1 100%);
}

.hero-visual img {
    width: 100%;
    height: 100%;
    min-height: 320px;
    object-fit: contain;
    object-position: left center;
}

.visual-badge {
    position: absolute;
    right: 20px;
    bottom: 20px;
    width: min(240px, calc(100% - 40px));
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: flex-start;
    padding: 16px 18px;
    border-radius: 18px;
    background: rgba(8, 17, 31, 0.82);
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.visual-badge-title {
    font-weight: 800;
    color: #fdba74;
}

.visual-badge-copy {
    color: var(--text-muted);
    font-size: 0.92rem;
}

.route-points {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.route-points span {
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.06);
    color: var(--text-main);
    font-size: 0.8rem;
    font-weight: 700;
}

.proof-bar {
    padding: 26px 0;
    border-top: 1px solid rgba(148, 163, 184, 0.08);
    border-bottom: 1px solid rgba(148, 163, 184, 0.08);
    background: rgba(255, 255, 255, 0.02);
}

.proof-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}

.proof-item {
    display: grid;
    gap: 6px;
    justify-items: center;
    text-align: center;
    padding: 12px 16px;
}

.proof-value {
    font-family: "Space Grotesk", sans-serif;
    font-size: clamp(1.7rem, 3vw, 2.4rem);
    font-weight: 700;
    color: #fff7ed;
}

.proof-label {
    color: var(--text-dim);
    font-size: 0.9rem;
}

.coverage-section {
    padding-top: 72px;
}

.coverage-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
}

.coverage-card {
    display: grid;
    gap: 14px;
    padding: 24px;
}

.coverage-card p {
    color: var(--text-dim);
}

.ops-proof {
    margin-top: 28px;
}

.pillar-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 20px;
}

.pillar-card,
.audience-card {
    display: grid;
    gap: 16px;
    padding: 26px;
}

.card-index {
    display: inline-flex;
    width: fit-content;
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(249, 115, 22, 0.12);
    color: #fdba74;
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

/* Icon styling for coverage cards */
.card-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    font-size: 1.5rem;
    margin-bottom: 12px;
}

.pillar-card p,
.audience-card p {
    color: var(--text-dim);
}

.process-section {
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.01), rgba(255, 255, 255, 0)),
        linear-gradient(180deg, rgba(17, 30, 53, 0.42), rgba(8, 17, 31, 0));
}

.process-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(300px, 0.72fr);
    gap: 28px;
    align-items: start;
}

.process-list {
    display: grid;
    gap: 18px;
}

.process-item {
    display: grid;
    grid-template-columns: 72px minmax(0, 1fr);
    gap: 20px;
    padding: 24px;
}

.process-number {
    display: grid;
    place-items: center;
    width: 72px;
    height: 72px;
    border-radius: 22px;
    background: linear-gradient(135deg, rgba(249, 115, 22, 0.22), rgba(16, 185, 129, 0.16));
    color: #fff7ed;
    font-family: "Space Grotesk", sans-serif;
    font-size: 1.35rem;
    font-weight: 700;
}

.process-item p {
    color: var(--text-dim);
    margin-top: 10px;
}

.process-points {
    display: grid;
    gap: 10px;
    margin-top: 18px;
}

.process-points span {
    padding: 12px 14px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.03);
    color: var(--text-dim);
    font-size: 0.92rem;
}

.process-points strong {
    color: var(--text-main);
}

.process-aside {
    position: sticky;
    top: 112px;
}

.aside-card {
    display: grid;
    gap: 20px;
    padding: 28px;
}

.aside-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.spotlight-list {
    display: grid;
    gap: 28px;
}

.spotlight-row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px;
    padding: 28px;
    align-items: center;
}

.spotlight-row-reverse .spotlight-copy {
    order: 2;
}

.spotlight-row-reverse .spotlight-media {
    order: 1;
}

.spotlight-copy {
    display: grid;
    gap: 18px;
}

.spotlight-copy p {
    color: var(--text-muted);
}

.spotlight-media {
    overflow: hidden;
    border-radius: 22px;
    min-height: 320px;
}

.spotlight-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.readiness-section {
    background:
        radial-gradient(circle at top left, rgba(16, 185, 129, 0.08), transparent 30%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.01), rgba(255, 255, 255, 0));
}

.readiness-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
}

.readiness-card {
    display: grid;
    gap: 18px;
    padding: 28px;
}

.readiness-card-review {
    border-color: rgba(249, 115, 22, 0.28);
}

.readiness-cta {
    margin-top: 24px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 22px 24px;
    border-radius: 22px;
    border: 1px solid var(--glass-border);
    background: rgba(255, 255, 255, 0.03);
}

.readiness-cta p {
    color: var(--text-muted);
    font-weight: 700;
}

.calculator-section {
    background:
        radial-gradient(circle at top center, rgba(249, 115, 22, 0.08), transparent 32%),
        linear-gradient(180deg, rgba(17, 30, 53, 0.52), rgba(8, 17, 31, 0));
}

.calculator-shell {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(300px, 0.95fr);
    gap: 24px;
    align-items: start;
}

.calculator-panel,
.result-group {
    display: grid;
    gap: 20px;
}

.calculator-panel {
    padding: 28px;
}

.calculator-label {
    color: var(--text-muted);
    font-weight: 800;
}

.weight-display {
    display: flex;
    align-items: baseline;
    gap: 10px;
    font-family: "Space Grotesk", sans-serif;
    font-size: clamp(3.2rem, 8vw, 5rem);
    font-weight: 700;
}

.weight-display .unit {
    color: var(--text-dim);
    font-size: 1.2rem;
}

.weight-display-compact {
    font-size: clamp(2.5rem, 6vw, 4rem);
}

.slider {
    -webkit-appearance: none;
    appearance: none;
    width: 100%;
    height: 12px;
    border-radius: 999px;
    background: var(--slider-track);
    outline: none;
}

.slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: #fff7ed;
    border: 4px solid var(--primary);
    box-shadow: 0 10px 22px rgba(249, 115, 22, 0.24);
    cursor: pointer;
}

.slider::-moz-range-thumb {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: #fff7ed;
    border: 4px solid var(--primary);
    box-shadow: 0 10px 22px rgba(249, 115, 22, 0.24);
    cursor: pointer;
}

.slider-labels {
    display: flex;
    justify-content: space-between;
    color: var(--text-dim);
    font-size: 0.82rem;
}

.tier-indicators {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 10px;
}

.tier {
    padding: 14px 10px;
    border-radius: 18px;
    border: 1px solid var(--glass-border);
    background: rgba(255, 255, 255, 0.03);
    color: var(--text-dim);
    font-size: 0.8rem;
    font-weight: 800;
    line-height: 1.4;
    text-align: center;
    transition: var(--transition);
}

.tier small {
    display: block;
    color: var(--text-dim);
    font-size: 0.74rem;
    font-weight: 700;
}

.tier.active {
    border-color: rgba(249, 115, 22, 0.4);
    background: rgba(249, 115, 22, 0.12);
    color: #fff7ed;
}

.calculator-notes {
    display: grid;
    gap: 14px;
    padding: 20px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.03);
}

.calculator-notes h3 {
    font-size: 1rem;
}

.result-group {
    align-content: start;
}

.estimate-summary-card {
    display: grid;
    gap: 16px;
}

.estimate-summary-card p {
    color: var(--text-dim);
}

.result-card {
    padding: 24px;
}

.result-card h3 {
    color: var(--text-dim);
    font-size: 0.9rem;
    margin-bottom: 8px;
}

.result-card-accent {
    border-color: rgba(249, 115, 22, 0.24);
}

.result-value {
    display: flex;
    align-items: baseline;
    gap: 8px;
    font-family: "Space Grotesk", sans-serif;
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 700;
}

.currency {
    font-size: 1rem;
    color: var(--text-dim);
}

.dynamic-number {
    font-variant-numeric: tabular-nums;
}

.savings-badge {
    padding: 16px 18px;
    border-radius: 20px;
    border: 1px solid rgba(16, 185, 129, 0.24);
    background: rgba(16, 185, 129, 0.08);
    color: #bbf7d0;
    opacity: 0;
    transform: translateY(10px);
    transition: var(--transition);
}

.savings-badge.show {
    opacity: 1;
    transform: translateY(0);
}

.calculator-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.case-studies-section {
    background:
        radial-gradient(circle at top right, rgba(249, 115, 22, 0.08), transparent 30%),
        linear-gradient(180deg, rgba(17, 30, 53, 0.24), rgba(8, 17, 31, 0));
}

.case-study-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
}

.case-study-card {
    display: grid;
    gap: 16px;
    padding: 26px;
}

.case-study-top {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

.case-study-tag {
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(16, 185, 129, 0.1);
    color: #bbf7d0;
    font-size: 0.8rem;
    font-weight: 800;
}

.case-study-card p {
    color: var(--text-dim);
}

.tracking-preview-section {
    padding-top: 72px;
}

.tracking-preview-shell {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    gap: 24px;
    align-items: start;
}

.tracking-preview-copy {
    margin-bottom: 0;
}

.tracking-preview-card {
    display: grid;
    gap: 20px;
    padding: 28px;
}

.tracking-preview-head {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
}

.tracking-inline-status {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.tracking-pill {
    padding: 10px 14px;
    border-radius: 999px;
    border: 1px solid var(--glass-border);
    background: rgba(255, 255, 255, 0.03);
    color: var(--text-dim);
    font-size: 0.84rem;
    font-weight: 800;
}

.tracking-pill-complete {
    border-color: rgba(16, 185, 129, 0.28);
    background: rgba(16, 185, 129, 0.1);
    color: #bbf7d0;
}

.tracking-pill-current {
    border-color: rgba(249, 115, 22, 0.28);
    background: rgba(249, 115, 22, 0.12);
    color: #fed7aa;
}

.tracking-stage-list {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
}

.tracking-stage {
    display: grid;
    gap: 10px;
    padding: 18px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.03);
}

.tracking-stage strong {
    color: var(--text-main);
}

.tracking-stage small {
    color: var(--text-dim);
}

.tracking-stage-dot {
    width: 14px;
    height: 14px;
    border-radius: 999px;
    border: 2px solid var(--glass-border);
    background: transparent;
}

.tracking-stage-dot-complete {
    border-color: rgba(16, 185, 129, 0.5);
    background: var(--accent);
}

.tracking-stage-dot-current {
    border-color: rgba(249, 115, 22, 0.5);
    background: var(--primary);
}

.tracking-preview-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.audience-grid,
.faq-grid {
    display: grid;
    gap: 20px;
}

.audience-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.audience-card .text-link {
    margin-top: auto;
}

.faq-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.faq-item {
    padding: 22px 24px;
}

.faq-item summary {
    list-style: none;
    cursor: pointer;
    position: relative;
    padding-right: 34px;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary::after {
    content: "+";
    position: absolute;
    right: 0;
    top: 0;
    color: #fdba74;
    font-size: 1.4rem;
    line-height: 1;
}

.faq-item[open] summary::after {
    content: "-";
}

.faq-item p {
    margin-top: 14px;
    color: var(--text-dim);
}

.cta-card {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 24px;
    padding: 32px;
}

.cta-copy {
    display: grid;
    gap: 18px;
}

.cta-copy p {
    color: var(--text-muted);
    max-width: 680px;
}

.cta-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 12px;
}

footer {
    padding: 28px 0 24px;
    border-top: 1px solid rgba(148, 163, 184, 0.08);
    background: rgba(255, 255, 255, 0.02);
}

.footer-content {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
    gap: 24px;
    padding: 28px 0 34px;
}

.footer-brand {
    display: grid;
    gap: 14px;
}

.footer-brand p,
.footer-col p {
    color: var(--text-dim);
}

.footer-col {
    display: grid;
    align-content: start;
    gap: 12px;
}

.footer-col a {
    color: var(--text-dim);
    text-decoration: none;
}

.footer-col a:hover {
    color: var(--text-main);
}

.footer-bottom {
    border-top: 1px solid rgba(148, 163, 184, 0.08);
    padding-top: 18px;
    text-align: center;
    color: var(--text-dim);
    font-size: 0.92rem;
}

.page-hero {
    padding: 120px 0 28px;
}

.contact-shell {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    gap: 24px;
    align-items: start;
}

.contact-card,
.form-card {
    padding: 28px;
}

.contact-stack {
    display: grid;
    gap: 20px;
}

.contact-card {
    display: grid;
    gap: 20px;
}

.contact-card p,
.contact-card li {
    color: var(--text-dim);
}

.contact-channel {
    display: grid;
    gap: 10px;
    padding: 18px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.03);
    text-decoration: none;
}

.contact-channel:hover {
    background: rgba(255, 255, 255, 0.05);
}

.contact-channel strong {
    color: var(--text-main);
    font-size: 1.02rem;
}

.form-card {
    display: grid;
    gap: 18px;
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.form-grid .full-width {
    grid-column: 1 / -1;
}

.form-label {
    display: block;
    margin-bottom: 8px;
    color: var(--text-muted);
    font-size: 0.92rem;
    font-weight: 700;
}

.form-control {
    width: 100%;
    padding: 14px 16px;
    border-radius: 16px;
    border: 1px solid var(--glass-border);
    background: rgba(255, 255, 255, 0.03);
    color: var(--text-main);
    transition: var(--transition-fast);
}

.form-control:focus {
    border-color: rgba(249, 115, 22, 0.4);
    box-shadow: 0 0 0 4px rgba(249, 115, 22, 0.08);
    outline: none;
}

textarea.form-control {
    min-height: 130px;
    resize: vertical;
}

.form-status {
    min-height: 1.5rem;
    color: #bbf7d0;
    font-size: 0.92rem;
}

option {
    color: #0f172a;
    background: #ffffff;
}

.theme-toggle {
    position: fixed;
    right: 20px;
    bottom: 88px;
    z-index: 996;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 120px;
    height: 48px;
    padding: 0 16px;
    border: 1px solid rgba(249, 115, 22, 0.28);
    border-radius: 999px;
    background: rgba(8, 17, 31, 0.92);
    color: #fff7ed;
    font-weight: 800;
    letter-spacing: 0.02em;
    box-shadow: 0 20px 38px rgba(2, 6, 23, 0.18);
    cursor: pointer;
    transition: var(--transition);
}

.theme-toggle:hover {
    border-color: rgba(249, 115, 22, 0.5);
    background: rgba(15, 23, 42, 0.98);
}

html[data-theme="light"] {
    --bg-dark: #f8fafc;
    --bg-surface: #ffffff;
    --bg-card: #ffffff;
    --bg-gradient: linear-gradient(135deg, #f8fbff 0%, #eef4f8 52%, #f8fafc 100%);
    --text-main: #0f172a;
    --text-muted: #334155;
    --text-dim: #475569;
    --glass-border: rgba(148, 163, 184, 0.28);
    --glass-hover: rgba(15, 23, 42, 0.04);
    --card-shadow: 0 20px 42px rgba(148, 163, 184, 0.14);
    --slider-track: #d7e2f0;
    --primary-glow: rgba(249, 115, 22, 0.18);
}

html[data-theme="light"] body {
    color: #0f172a;
    background:
        radial-gradient(circle at top left, rgba(249, 115, 22, 0.08), transparent 26%),
        radial-gradient(circle at top right, rgba(16, 185, 129, 0.06), transparent 22%),
        linear-gradient(180deg, #f8fbff 0%, #eef4f8 40%, #f8fafc 100%);
}

html[data-theme="light"] .navbar {
    background: rgba(255, 255, 255, 0.84);
    border-bottom-color: rgba(148, 163, 184, 0.22);
}

html[data-theme="light"] .navbar.scrolled {
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 20px 38px rgba(148, 163, 184, 0.18);
}

html[data-theme="light"] .nav-links a,
html[data-theme="light"] .nav-trust,
html[data-theme="light"] .proof-label,
html[data-theme="light"] .quick-proof-label,
html[data-theme="light"] .section-subtitle,
html[data-theme="light"] .text-muted,
html[data-theme="light"] .hero-lead,
html[data-theme="light"] .coverage-card p,
html[data-theme="light"] .pillar-card p,
html[data-theme="light"] .audience-card p,
html[data-theme="light"] .spotlight-copy p,
html[data-theme="light"] .process-item p,
html[data-theme="light"] .faq-item p,
html[data-theme="light"] .footer-brand p,
html[data-theme="light"] .footer-col p,
html[data-theme="light"] .footer-col a,
html[data-theme="light"] .cta-copy p,
html[data-theme="light"] .contact-card p,
html[data-theme="light"] .contact-card li,
html[data-theme="light"] .tracking-stage small,
html[data-theme="light"] .case-study-card p,
html[data-theme="light"] .estimate-summary-card p,
html[data-theme="light"] .detail-list li,
html[data-theme="light"] .calculator-label,
html[data-theme="light"] .form-label,
html[data-theme="light"] .slider-labels,
html[data-theme="light"] .tier small,
html[data-theme="light"] .result-card h3,
html[data-theme="light"] .currency,
html[data-theme="light"] .footer-bottom {
    color: #334155;
}

html[data-theme="light"] .nav-links a:hover,
html[data-theme="light"] .footer-col a:hover {
    color: #0f172a;
}

html[data-theme="light"] .section-title,
html[data-theme="light"] .quick-proof-value,
html[data-theme="light"] .proof-value,
html[data-theme="light"] .weight-display,
html[data-theme="light"] .result-value,
html[data-theme="light"] .faq-item summary,
html[data-theme="light"] .tracking-stage strong,
html[data-theme="light"] .contact-channel strong {
    color: #0f172a;
}

html[data-theme="light"] .quote-card,
html[data-theme="light"] .hero-visual,
html[data-theme="light"] .coverage-card,
html[data-theme="light"] .pillar-card,
html[data-theme="light"] .process-item,
html[data-theme="light"] .aside-card,
html[data-theme="light"] .spotlight-row,
html[data-theme="light"] .calculator-panel,
html[data-theme="light"] .result-card,
html[data-theme="light"] .readiness-card,
html[data-theme="light"] .case-study-card,
html[data-theme="light"] .tracking-preview-card,
html[data-theme="light"] .audience-card,
html[data-theme="light"] .faq-item,
html[data-theme="light"] .cta-card,
html[data-theme="light"] .contact-card,
html[data-theme="light"] .form-card {
    border-color: rgba(148, 163, 184, 0.24);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(248, 250, 252, 0.96) 100%);
    box-shadow: 0 20px 42px rgba(148, 163, 184, 0.16);
}

html[data-theme="light"] .hero-visual {
    background: linear-gradient(180deg, #fff7ed 0%, #eef4f8 100%);
}

html[data-theme="light"] .badge,
html[data-theme="light"] .card-index {
    background: rgba(249, 115, 22, 0.12);
    border: 1px solid rgba(234, 88, 12, 0.18);
    color: #9a3412;
}

html[data-theme="light"] .visual-badge,
html[data-theme="light"] .readiness-cta,
html[data-theme="light"] .process-points span,
html[data-theme="light"] .calculator-notes,
html[data-theme="light"] .contact-channel,
html[data-theme="light"] .tracking-stage,
html[data-theme="light"] .tier,
html[data-theme="light"] .quick-proof-item,
html[data-theme="light"] .tracking-pill {
    background: rgba(248, 250, 252, 0.92);
    border-color: rgba(148, 163, 184, 0.22);
}

html[data-theme="light"] .hero-note,
html[data-theme="light"] .visual-badge-title,
html[data-theme="light"] .panel-label,
html[data-theme="light"] .text-link {
    color: #9a3412;
}

html[data-theme="light"] .visual-badge-copy,
html[data-theme="light"] .readiness-cta p {
    color: #334155;
}

html[data-theme="light"] .text-link:hover {
    color: #c2410c;
}

html[data-theme="light"] .route-points span,
html[data-theme="light"] .nav-phone,
html[data-theme="light"] .btn-glass,
html[data-theme="light"] .form-control,
html[data-theme="light"] .mobile-sales-bar,
html[data-theme="light"] .scroll-top,
html[data-theme="light"] .theme-toggle {
    background: rgba(255, 255, 255, 0.94);
    color: #0f172a;
    border-color: rgba(148, 163, 184, 0.24);
}

html[data-theme="light"] .route-points span {
    box-shadow: inset 0 0 0 1px rgba(148, 163, 184, 0.12);
}

html[data-theme="light"] .form-control::placeholder {
    color: #64748b;
    opacity: 1;
}

html[data-theme="light"] .form-control:focus {
    background: #ffffff;
}

html[data-theme="light"] .case-study-tag {
    background: rgba(16, 185, 129, 0.12);
    border: 1px solid rgba(22, 163, 74, 0.18);
    color: #166534;
}

html[data-theme="light"] .tracking-pill {
    color: #334155;
}

html[data-theme="light"] .tracking-pill-complete {
    border-color: rgba(22, 163, 74, 0.2);
    background: rgba(16, 185, 129, 0.12);
    color: #166534;
}

html[data-theme="light"] .tracking-pill-current {
    border-color: rgba(234, 88, 12, 0.22);
    background: rgba(249, 115, 22, 0.12);
    color: #9a3412;
}

html[data-theme="light"] .savings-badge {
    border-color: rgba(22, 163, 74, 0.2);
    background: rgba(16, 185, 129, 0.1);
    color: #166534;
}

html[data-theme="light"] .proof-bar,
html[data-theme="light"] footer {
    background: rgba(255, 255, 255, 0.92);
    border-color: rgba(148, 163, 184, 0.18);
}

html[data-theme="light"] .proof-value,
html[data-theme="light"] .tracking-stage strong,
html[data-theme="light"] .contact-channel strong {
    color: #0f172a;
}

html[data-theme="light"] .process-section,
html[data-theme="light"] .calculator-section,
html[data-theme="light"] .case-studies-section,
html[data-theme="light"] .readiness-section {
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.86), rgba(239, 246, 255, 0.32)),
        linear-gradient(180deg, rgba(255, 255, 255, 0.72), rgba(255, 255, 255, 0));
}

html[data-theme="light"] .theme-toggle:hover,
html[data-theme="light"] .scroll-top:hover,
html[data-theme="light"] .btn-glass:hover,
html[data-theme="light"] .contact-channel:hover {
    background: #ffffff;
}

.mobile-sales-bar {
    display: none;
}

.scroll-top {
    position: fixed;
    right: 20px;
    bottom: 20px;
    z-index: 996;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 56px;
    height: 56px;
    padding: 0 16px;
    border: 1px solid rgba(249, 115, 22, 0.28);
    border-radius: 999px;
    background: rgba(8, 17, 31, 0.92);
    color: #fff7ed;
    font-weight: 800;
    letter-spacing: 0.03em;
    box-shadow: 0 20px 38px rgba(2, 6, 23, 0.24);
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(12px);
    transition: var(--transition);
}

.scroll-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scroll-top:hover {
    border-color: rgba(249, 115, 22, 0.5);
    background: rgba(15, 23, 42, 0.98);
}

.reveal {
    opacity: 0;
    transform: translateY(32px);
    transition:
        opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1),
        transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
    transition-delay: var(--delay, 0s);
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal-right {
    transform: translateX(40px);
}

.reveal-right.visible {
    transform: translateX(0);
}

@media (max-width: 1080px) {
    .hero-grid,
    .process-layout,
    .calculator-shell,
    .tracking-preview-shell,
    .contact-shell,
    .cta-card {
        grid-template-columns: 1fr;
    }

    .process-aside {
        position: static;
    }

    .coverage-grid,
    .pillar-grid,
    .readiness-grid,
    .case-study-grid,
    .audience-grid,
    .faq-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .footer-content {
        grid-template-columns: 1fr 1fr;
    }

    .cta-actions {
        justify-content: flex-start;
    }

    .visual-badge {
        left: 20px;
        right: 20px;
        width: auto;
    }
}

@media (max-width: 860px) {
    body.has-mobile-sales-bar {
        padding-bottom: 92px;
    }

    .nav-content {
        flex-wrap: wrap;
        row-gap: 10px;
        padding: 12px 0;
    }

    /* Hamburger menu button */
    .hamburger {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        width: 44px;
        height: 44px;
        gap: 5px;
        cursor: pointer;
        border-radius: 12px;
        background: rgba(255, 255, 255, 0.04);
        border: 1px solid var(--glass-border);
        padding: 10px;
    }

    .hamburger span {
        display: block;
        width: 22px;
        height: 2px;
        background: var(--text-main);
        border-radius: 2px;
        transition: transform 0.3s ease, opacity 0.3s ease;
    }

    .hamburger.active span:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active span:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }

    /* Hide nav links by default on mobile, show when hamburger clicked */
    .nav-links {
        display: none;
        order: 3;
        width: 100%;
        flex-direction: column;
        gap: 4px;
        padding: 8px 0 4px;
        background: rgba(8, 17, 31, 0.95);
        border-radius: 16px;
        margin-top: 8px;
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links a {
        display: flex;
        align-items: center;
        justify-content: center;
        min-height: 48px;
        padding: 12px 16px;
        border-radius: 12px;
        background: rgba(255, 255, 255, 0.04);
        border: 1px solid var(--glass-border);
        text-align: center;
        white-space: normal;
        line-height: 1.2;
        font-size: 0.95rem;
    }

    /* Hide nav-actions on mobile - move to hamburger menu */
    .nav-actions {
        display: none;
    }

    /* Mobile-only contact buttons in hamburger menu */
    .mobile-contact-btn {
        display: flex;
    }

    .mobile-contact-btn.call-btn {
        background: rgba(255, 255, 255, 0.08);
        color: #fff;
        font-weight: 700;
    }

    .mobile-contact-btn.whatsapp-btn {
        background: #25D366;
        color: #fff;
        font-weight: 700;
    }

    .nav-trust {
        display: none;
    }

    .nav-phone {
        display: none;
    }

    .nav-actions .btn {
        padding: 10px 16px;
        font-size: 0.85rem;
    }

    html[data-theme="light"] .nav-links a {
        background: rgba(255, 255, 255, 0.96);
        border-color: rgba(148, 163, 184, 0.22);
        color: #0f172a;
    }

    .spotlight-row,
    .spotlight-row-reverse {
        grid-template-columns: 1fr;
    }

    .spotlight-row-reverse .spotlight-copy,
    .spotlight-row-reverse .spotlight-media {
        order: initial;
    }

    .tier-indicators {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .tracking-stage-list {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .form-grid {
        grid-template-columns: 1fr;
    }

    .mobile-sales-bar {
        position: fixed;
        left: 50%;
        bottom: 16px;
        z-index: 997;
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 10px;
        width: min(420px, calc(100% - 24px));
        padding: 10px;
        transform: translateX(-50%);
        border-radius: 24px;
        background: rgba(8, 17, 31, 0.94);
        border: 1px solid var(--glass-border);
        box-shadow: var(--card-shadow);
    }

    .scroll-top {
        right: 16px;
        bottom: 108px;
        min-width: 52px;
        height: 52px;
        padding: 0 14px;
        font-size: 0.86rem;
    }

    body:not(.has-mobile-sales-bar) .scroll-top {
        bottom: 16px;
    }

    .theme-toggle {
        right: 16px;
        bottom: 172px;
        min-width: 110px;
        height: 44px;
        font-size: 0.84rem;
    }

    body:not(.has-mobile-sales-bar) .theme-toggle {
        bottom: 88px;
    }
}

@media (max-width: 640px) {
    html {
        scroll-padding-top: 84px;
    }

    .container {
        width: min(var(--container), calc(100% - 24px));
    }

    .footer-content {
        grid-template-columns: 1fr;
    }

    .section-shell {
        padding: 76px 0;
    }

    .nav-links {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    /* Ensure hamburger menu stays as flex on smallest screens */
    .nav-links.active {
        display: flex;
        flex-direction: column;
    }

    .nav-links a {
        font-size: 0.8rem;
        padding: 10px 6px;
    }

    .proof-grid,
    .coverage-grid,
    .pillar-grid,
    .readiness-grid,
    .case-study-grid,
    .audience-grid,
    .faq-grid,
    .tracking-stage-list,
    .quick-proof {
        grid-template-columns: 1fr;
    }

    .hero-actions,
    .panel-actions,
    .aside-actions,
    .readiness-cta,
    .calculator-cta,
    .tracking-preview-actions,
    .cta-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .process-item {
        grid-template-columns: 1fr;
    }

    .process-number {
        width: 60px;
        height: 60px;
    }

    .quote-card,
    .hero-visual,
    .coverage-card,
    .pillar-card,
    .process-item,
    .aside-card,
    .spotlight-row,
    .calculator-panel,
    .result-card,
    .readiness-card,
    .case-study-card,
    .tracking-preview-card,
    .audience-card,
    .faq-item,
    .cta-card,
    .contact-card,
    .form-card {
        border-radius: 20px;
    }

    .scroll-top {
        right: 12px;
    }

    .theme-toggle {
        right: 12px;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }

    .reveal,
    .reveal-right {
        opacity: 1;
        transform: none;
    }
}
