:root {
    --bg: #07111f;
    --bg-soft: #0d1a2d;
    --surface: rgba(14, 27, 47, 0.78);
    --surface-strong: rgba(11, 20, 36, 0.92);
    --surface-light: #f4f7fb;
    --text: #e8eef8;
    --text-dark: #0f172a;
    --muted: #9eb0ca;
    --muted-dark: #52627c;
    --line: rgba(158, 176, 202, 0.18);
    --line-strong: rgba(158, 176, 202, 0.28);
    --primary: #1f4ea1;
    --primary-soft: #2f6fe5;
    --secondary: #e53f45;
    --accent: #7ee0ff;
    --shadow-xl: 0 30px 80px rgba(0, 0, 0, 0.35);
    --shadow-lg: 0 20px 50px rgba(5, 12, 24, 0.32);
    --shadow-md: 0 12px 24px rgba(8, 17, 31, 0.18);
    --radius-xl: 32px;
    --radius-lg: 24px;
    --radius-md: 18px;
    --max-width: 1240px;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    background:
        radial-gradient(circle at top left, rgba(46, 111, 229, 0.22), transparent 26%),
        radial-gradient(circle at 88% 18%, rgba(229, 63, 69, 0.18), transparent 22%),
        linear-gradient(180deg, #07111f 0%, #08131f 45%, #eef3fa 45%, #eef3fa 100%);
    color: var(--text);
    font-family: "Manrope", sans-serif;
    min-height: 100vh;
    overflow-x: hidden;
}

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

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

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

main {
    position: relative;
    z-index: 1;
}

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

.page-bg {
    inset: 0;
    overflow: hidden;
    pointer-events: none;
    position: fixed;
    z-index: 0;
}

.glow {
    border-radius: 999px;
    filter: blur(24px);
    position: absolute;
}

.glow-one {
    background: rgba(47, 111, 229, 0.35);
    height: 300px;
    left: -40px;
    top: 90px;
    width: 300px;
}

.glow-two {
    background: rgba(229, 63, 69, 0.28);
    height: 280px;
    right: -80px;
    top: 320px;
    width: 280px;
}

.grid-fade {
    background-image:
        linear-gradient(rgba(126, 224, 255, 0.06) 1px, transparent 1px),
        linear-gradient(90deg, rgba(126, 224, 255, 0.06) 1px, transparent 1px);
    background-position: center;
    background-size: 72px 72px;
    inset: 0;
    mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.85), transparent 70%);
    position: absolute;
}

.site-header {
    left: 0;
    padding: 22px 24px 0;
    position: sticky;
    top: 0;
    width: 100%;
    z-index: 20;
}

.site-nav {
    align-items: center;
    backdrop-filter: blur(20px);
    background: rgba(8, 15, 28, 0.7);
    border: 1px solid rgba(126, 224, 255, 0.12);
    border-radius: 999px;
    box-shadow: 0 14px 34px rgba(0, 0, 0, 0.25);
    display: grid;
    gap: 28px;
    grid-template-columns: auto minmax(0, 1fr);
    margin: 0 auto;
    max-width: var(--max-width);
    padding: 12px 18px;
    transition: background 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}

.site-header.is-scrolled .site-nav {
    background: rgba(7, 13, 24, 0.92);
    border-color: rgba(126, 224, 255, 0.18);
}

.brand {
    align-items: center;
    display: flex;
    flex-shrink: 0;
    gap: 14px;
}

.brand img {
    filter: drop-shadow(0 12px 30px rgba(255, 255, 255, 0.16));
    width: clamp(112px, 14vw, 154px);
}

.brand-copy {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.brand-copy span {
    color: var(--accent);
    font-size: 0.84rem;
    font-style: italic;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.brand-copy strong {
    color: #ffffff;
    font-family: "Space Grotesk", sans-serif;
    font-size: 0.95rem;
    letter-spacing: 0.08em;
}

.nav-panel {
    align-items: center;
    display: grid;
    gap: 24px;
    grid-template-columns: minmax(0, 1fr) auto;
    width: 100%;
}

.nav-links,
.nav-actions {
    align-items: center;
    display: flex;
    gap: 12px;
}

.nav-actions {
    justify-content: flex-end;
    justify-self: end;
}

.nav-links {
    justify-content: center;
    justify-self: center;
    min-width: 0;
}

.nav-links a {
    border-radius: 999px;
    color: rgba(232, 238, 248, 0.88);
    font-size: 0.94rem;
    font-weight: 600;
    padding: 10px 12px;
    text-align: center;
    transition: background 0.25s ease, color 0.25s ease, transform 0.25s ease;
    white-space: nowrap;
}

.nav-links a:hover,
.nav-links a:focus-visible {
    background: rgba(126, 224, 255, 0.08);
    color: #ffffff;
    transform: translateY(-1px);
}

.nav-toggle {
    background: transparent;
    border: 0;
    cursor: pointer;
    display: none;
    gap: 5px;
    padding: 4px;
}

.nav-toggle span {
    background: #ffffff;
    border-radius: 999px;
    display: block;
    height: 2px;
    transition: transform 0.25s ease, opacity 0.25s ease;
    width: 24px;
}

.btn {
    align-items: center;
    border: 1px solid transparent;
    border-radius: 999px;
    display: inline-flex;
    font-size: 0.95rem;
    font-weight: 800;
    gap: 10px;
    justify-content: center;
    min-height: 48px;
    padding: 0 22px;
    transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, border-color 0.25s ease;
}

.btn:hover,
.btn:focus-visible {
    transform: translateY(-2px);
}

.btn-primary {
    background: linear-gradient(135deg, #1f4ea1 0%, #2f6fe5 45%, #e53f45 100%);
    box-shadow: 0 16px 40px rgba(38, 95, 205, 0.34);
    color: #ffffff;
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.14);
    color: #ffffff;
}

.btn-ghost {
    background: rgba(126, 224, 255, 0.08);
    border-color: rgba(126, 224, 255, 0.18);
    color: #ffffff;
}

.icon-btn {
    align-items: center;
    backdrop-filter: blur(16px);
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 18px;
    box-shadow: 0 14px 28px rgba(0, 0, 0, 0.18);
    display: inline-flex;
    flex-shrink: 0;
    height: 56px;
    justify-content: center;
    transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, border-color 0.25s ease;
    width: 56px;
}

.icon-btn:hover,
.icon-btn:focus-visible {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(126, 224, 255, 0.24);
    box-shadow: 0 20px 36px rgba(0, 0, 0, 0.26);
    transform: translateY(-2px);
}

.icon-btn-primary {
    background: linear-gradient(135deg, #1f4ea1 0%, #2f6fe5 48%, #e53f45 100%);
    border-color: transparent;
}

.icon-btn-mark {
    align-items: center;
    color: #ffffff;
    display: inline-flex;
    justify-content: center;
}

.icon-btn-mark svg {
    fill: none;
    height: 22px;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.9;
    width: 22px;
}

.photo-slice {
    padding: 26px 24px 18px;
    position: relative;
}

.photo-slider {
    border: 1px solid rgba(126, 224, 255, 0.14);
    border-radius: 34px;
    box-shadow: var(--shadow-xl);
    height: clamp(360px, 52vw, 520px);
    margin: 0 auto;
    max-width: var(--max-width);
    overflow: hidden;
    position: relative;
}

.photo-slide {
    inset: 0;
    opacity: 0;
    pointer-events: none;
    position: absolute;
    transform: scale(1.03);
    transition: opacity 0.7s ease, transform 1.1s ease;
}

.photo-slide.is-active {
    opacity: 1;
    pointer-events: auto;
    transform: scale(1);
}

.photo-slide img {
    height: 100%;
    object-fit: cover;
    width: 100%;
}

.photo-slide-overlay {
    background:
        linear-gradient(90deg, rgba(6, 14, 25, 0.88) 0%, rgba(6, 14, 25, 0.4) 46%, rgba(6, 14, 25, 0.68) 100%),
        linear-gradient(180deg, rgba(7, 13, 24, 0.04) 20%, rgba(7, 13, 24, 0.78) 100%);
    inset: 0;
    position: absolute;
}

.photo-slide-copy {
    bottom: 122px;
    display: grid;
    gap: 14px;
    left: 42px;
    max-width: 560px;
    position: absolute;
    z-index: 2;
}

.photo-slide-kicker {
    color: var(--accent);
    display: inline-flex;
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.22em;
    text-transform: uppercase;
}

.photo-slide-copy h2 {
    color: #ffffff;
    font-family: "Space Grotesk", sans-serif;
    font-size: clamp(2rem, 4.8vw, 4.2rem);
    letter-spacing: -0.04em;
    line-height: 0.98;
    text-wrap: balance;
}

.photo-slide-copy p {
    color: rgba(232, 238, 248, 0.86);
    font-size: 1.05rem;
    line-height: 1.75;
    max-width: 46ch;
}

.photo-slide-copy-benefits {
    bottom: 96px;
    gap: 10px;
    max-width: 760px;
}

.photo-slide-copy-benefits h2 {
    font-size: clamp(1.95rem, 4.2vw, 4.25rem);
    line-height: 0.94;
    max-width: 13ch;
}

.photo-slide-copy-benefits p {
    font-size: 1rem;
    line-height: 1.6;
    max-width: 50ch;
}

.photo-slide-points {
    display: grid;
    gap: 10px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    list-style: none;
    margin-top: 2px;
    max-width: 620px;
}

.photo-slide-points li {
    align-items: center;
    backdrop-filter: blur(12px);
    background: rgba(8, 17, 31, 0.42);
    border: 1px solid rgba(126, 224, 255, 0.18);
    border-radius: 18px;
    color: #ffffff;
    display: flex;
    font-size: 0.9rem;
    font-weight: 700;
    gap: 12px;
    line-height: 1.45;
    min-height: 52px;
    padding: 12px 14px;
}

.photo-slide-points li::before {
    background: linear-gradient(135deg, #7ee0ff 0%, #2f6fe5 100%);
    border-radius: 999px;
    box-shadow: 0 0 0 4px rgba(126, 224, 255, 0.12);
    content: "";
    display: inline-flex;
    flex: 0 0 10px;
    height: 10px;
    width: 10px;
}

.photo-slide-copy-compact {
    max-width: 470px;
}

.photo-slide-copy-compact h2 {
    font-size: clamp(1.9rem, 4.2vw, 3.5rem);
    line-height: 1.02;
    max-width: 10ch;
}

.photo-slide-copy-compact p {
    max-width: 34ch;
}

.photo-slide--finance .photo-slide-copy {
    max-width: 470px;
}

.photo-slide--finance .photo-slide-copy h2 {
    max-width: 8.4ch;
}

.photo-slide--finance .photo-slide-copy p {
    max-width: 31ch;
}

.photo-slide--delivery .photo-slide-copy {
    max-width: 430px;
}

.photo-slide--delivery .photo-slide-copy h2 {
    max-width: 7.4ch;
}

.photo-slide--delivery .photo-slide-copy p {
    max-width: 28ch;
}

.photo-slider-ui {
    bottom: 26px;
    display: flex;
    justify-content: center;
    left: 50%;
    position: absolute;
    transform: translateX(-50%);
    z-index: 3;
}

.photo-slider-controls {
    backdrop-filter: blur(16px);
    background: rgba(8, 17, 31, 0.62);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 999px;
}

.photo-slider-controls {
    align-items: center;
    display: flex;
    gap: 12px;
    justify-content: center;
    padding: 10px 12px;
}

.photo-slider-dots {
    display: flex;
    gap: 10px;
}

.photo-slider-dot,
.photo-slider-arrow {
    border: 0;
    cursor: pointer;
}

.photo-slider-dot {
    background: rgba(255, 255, 255, 0.32);
    border-radius: 999px;
    height: 12px;
    transition: transform 0.25s ease, background 0.25s ease, width 0.25s ease;
    width: 12px;
}

.photo-slider-dot.is-active {
    background: #ffffff;
    width: 34px;
}

.photo-slider-arrow {
    align-items: center;
    background: rgba(126, 224, 255, 0.12);
    border-radius: 999px;
    color: #ffffff;
    display: inline-flex;
    font-size: 1.6rem;
    height: 42px;
    justify-content: center;
    transition: transform 0.25s ease, background 0.25s ease;
    width: 42px;
}

.photo-slider-arrow:hover,
.photo-slider-arrow:focus-visible,
.photo-slider-dot:hover,
.photo-slider-dot:focus-visible {
    transform: translateY(-1px);
}

.hero {
    padding: 24px 24px 58px;
    position: relative;
}

.hero-shell,
.section-heading,
.plan-grid,
.steps-grid,
.experience-layout,
.faq-list,
.cta-panel,
.site-footer {
    margin-left: auto;
    margin-right: auto;
    max-width: var(--max-width);
}

.hero-shell {
    align-items: stretch;
    background: linear-gradient(145deg, rgba(10, 18, 32, 0.96), rgba(17, 31, 54, 0.92));
    border: 1px solid rgba(126, 224, 255, 0.12);
    border-radius: 34px;
    box-shadow: var(--shadow-xl);
    display: grid;
    gap: 26px;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    padding: 38px;
}

.hero-copy h1,
.section-heading h2,
.step-card h3,
.info-card h3,
.stack-card h3,
.cta-panel h2 {
    font-family: "Space Grotesk", sans-serif;
}

.hero-copy {
    align-self: center;
    max-width: 560px;
}

.hero-copy h1 {
    font-size: clamp(2.8rem, 6.1vw, 5.4rem);
    letter-spacing: -0.05em;
    line-height: 0.96;
    max-width: 10.5ch;
}

.hero-copy h1 span {
    background: linear-gradient(135deg, #8adffb 0%, #ffffff 35%, #ff8e92 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
}

.eyebrow {
    color: var(--accent);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.24em;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.hero-lead,
.section-heading p,
.experience-copy p,
.cta-panel p {
    color: var(--muted);
    font-size: 1.08rem;
    line-height: 1.75;
    max-width: 60ch;
}

.hero-grid {
    display: grid;
    gap: 16px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.hero-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 26px;
    box-shadow: var(--shadow-md);
    display: grid;
    gap: 12px;
    padding: 24px;
}

.hero-card h3 {
    color: #ffffff;
    font-family: "Space Grotesk", sans-serif;
    font-size: 1.42rem;
    line-height: 1.14;
}

.hero-card p {
    color: var(--muted);
    line-height: 1.72;
}

.hero-card-kicker {
    color: var(--accent);
    display: inline-flex;
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

.hero-card-feature,
.hero-card-accent {
    grid-column: span 2;
}

.hero-card-feature {
    background:
        linear-gradient(135deg, rgba(31, 78, 161, 0.18), rgba(255, 255, 255, 0.04)),
        rgba(255, 255, 255, 0.05);
}

.hero-card-accent {
    background:
        radial-gradient(circle at top right, rgba(229, 63, 69, 0.22), transparent 38%),
        linear-gradient(135deg, rgba(8, 17, 31, 0.94), rgba(21, 41, 72, 0.92));
    border-color: rgba(126, 224, 255, 0.16);
}

.hero-card-inline {
    align-items: start;
    display: grid;
    gap: 14px;
    grid-template-columns: auto 1fr;
}

.hero-card-inline strong {
    color: var(--accent);
    font-family: "Space Grotesk", sans-serif;
    font-size: 2rem;
    line-height: 1;
}

.showcase-card {
    background: linear-gradient(180deg, rgba(20, 36, 60, 0.95), rgba(10, 18, 32, 0.95));
    border: 1px solid rgba(126, 224, 255, 0.16);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
    overflow: hidden;
    padding: 18px;
    position: relative;
}

.showcase-card::before {
    background: linear-gradient(135deg, rgba(126, 224, 255, 0.28), transparent 35%, rgba(229, 63, 69, 0.2));
    content: "";
    inset: 0;
    pointer-events: none;
    position: absolute;
}

.showcase-topline {
    display: flex;
    gap: 10px;
    justify-content: space-between;
    margin-bottom: 16px;
    position: relative;
    z-index: 1;
}

.showcase-media {
    aspect-ratio: 1.03 / 1;
    background: linear-gradient(180deg, rgba(10, 18, 32, 0.24), rgba(10, 18, 32, 0.08));
    border-radius: 24px;
    overflow: hidden;
    position: relative;
}

.showcase-image {
    height: 100%;
    object-fit: cover;
    width: 100%;
}

.showcase-media video {
    height: 100%;
    object-fit: cover;
    width: 100%;
}

.showcase-flag,
.showcase-rail {
    left: 24px;
    position: absolute;
    right: 24px;
    z-index: 2;
}

.showcase-flag {
    align-items: start;
    background: linear-gradient(180deg, rgba(8, 17, 31, 0.78), rgba(8, 17, 31, 0.48));
    border: 1px solid rgba(126, 224, 255, 0.16);
    border-radius: 24px;
    display: grid;
    gap: 10px;
    justify-items: start;
    max-width: 360px;
    padding: 20px 22px;
    top: 24px;
}

.showcase-flag strong {
    color: #ffffff;
    font-family: "Space Grotesk", sans-serif;
    font-size: 1.16rem;
    line-height: 1.3;
}

.stage-band {
    color: var(--accent);
    display: inline-flex;
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.22em;
    text-transform: uppercase;
}

.showcase-rail {
    bottom: 24px;
    display: grid;
    gap: 12px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.product-card {
    background: rgba(8, 17, 31, 0.78);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 22px;
    box-shadow: var(--shadow-md);
    display: grid;
    gap: 10px;
    padding: 18px;
}

.product-card-highlight {
    background: linear-gradient(180deg, rgba(31, 78, 161, 0.78), rgba(8, 17, 31, 0.72));
    border-color: rgba(126, 224, 255, 0.22);
}

.product-card-tag {
    color: var(--accent);
    display: inline-flex;
    font-size: 0.76rem;
    font-weight: 800;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.product-card strong {
    color: #ffffff;
    font-family: "Space Grotesk", sans-serif;
    font-size: 1rem;
    line-height: 1.35;
}

.product-card p {
    color: #d5e3f6;
    line-height: 1.55;
}

.showcase-overlay {
    background:
        radial-gradient(circle at top right, rgba(126, 224, 255, 0.3), transparent 32%),
        linear-gradient(180deg, rgba(7, 13, 24, 0.04), rgba(7, 13, 24, 0.7));
    inset: 0;
    pointer-events: none;
    position: absolute;
    z-index: 1;
}

.showcase-content {
    display: grid;
    gap: 14px;
    margin-top: 18px;
    position: relative;
    z-index: 1;
}

.mini-panel,
.signal-list div,
.stack-card,
.info-card,
.step-card,
.feature-list article,
.cta-panel,
.experience-visual,
.faq-list details {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: var(--shadow-md);
}

.mini-panel {
    border-radius: var(--radius-lg);
    padding: 20px;
}

.mini-panel strong {
    color: #ffffff;
    display: block;
    font-size: 1.1rem;
    margin-bottom: 8px;
}

.mini-panel p,
.signal-list p,
.info-card p,
.step-card p,
.stack-card p,
.feature-list span,
.faq-list p {
    color: var(--muted);
    line-height: 1.7;
}

.signal-list {
    display: grid;
    gap: 12px;
}

.signal-list div {
    align-items: start;
    border-radius: var(--radius-md);
    display: grid;
    gap: 10px;
    grid-template-columns: auto 1fr;
    padding: 16px 18px;
}

.signal-list span,
.step-number {
    color: var(--accent);
    font-family: "Space Grotesk", sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
}

.floating-chip {
    background: rgba(9, 19, 37, 0.88);
    border: 1px solid rgba(126, 224, 255, 0.18);
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
    max-width: 220px;
    padding: 16px 18px;
    position: absolute;
}

.floating-chip strong {
    color: #ffffff;
    display: block;
    margin-bottom: 6px;
}

.floating-chip span {
    color: var(--muted);
    font-size: 0.92rem;
    line-height: 1.55;
}

.floating-chip-left {
    left: -34px;
    top: 58px;
}

.floating-chip-right {
    bottom: 38px;
    right: -28px;
}

.hero-metrics {
    display: grid;
    gap: 16px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin-top: 18px;
}

.hero-metrics article {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 22px;
    padding: 22px;
}

.hero-metrics strong {
    color: #ffffff;
    display: block;
    font-family: "Space Grotesk", sans-serif;
    font-size: 1.1rem;
    margin-bottom: 8px;
}

.hero-metrics span {
    color: var(--muted);
    line-height: 1.7;
}

.section {
    padding: 110px 24px;
    position: relative;
}

.section-dark {
    background: linear-gradient(180deg, rgba(7, 17, 31, 0.04), rgba(7, 17, 31, 0.16));
}

.section-light {
    color: var(--text-dark);
}

.section-light .eyebrow {
    color: var(--primary-soft);
}

.section-light .section-heading p,
.section-light .info-card p,
.section-light .step-card p,
.section-light .faq-list p,
.section-light .feature-list span,
.section-light .stack-card p {
    color: var(--muted-dark);
}

.section-light .section-heading h2,
.section-light .info-card h3,
.section-light .step-card h3,
.section-light .stack-card h3,
.section-light .cta-panel h2 {
    color: var(--text-dark);
}

.section-heading {
    margin-bottom: 36px;
}

.section-heading h2 {
    font-size: clamp(2.1rem, 5vw, 4.2rem);
    letter-spacing: -0.04em;
    line-height: 1.04;
    margin-bottom: 18px;
    max-width: 14ch;
}

.plan-grid,
.steps-grid {
    display: grid;
    gap: 18px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.info-card,
.step-card {
    border-radius: var(--radius-lg);
    padding: 28px;
}

.info-card-media {
    border-radius: 22px;
    margin-bottom: 22px;
    overflow: hidden;
}

.info-card-media img {
    aspect-ratio: 1.26 / 1;
    object-fit: cover;
    width: 100%;
}

.section-light .info-card,
.section-light .step-card,
.section-light .experience-visual,
.section-light .faq-list details,
.section-light .cta-panel {
    background: rgba(255, 255, 255, 0.78);
    border-color: rgba(15, 23, 42, 0.08);
}

.info-card h3,
.step-card h3,
.stack-card h3 {
    font-size: 1.5rem;
    line-height: 1.18;
    margin-bottom: 12px;
}

.card-kicker,
.stack-label {
    color: var(--accent);
    display: inline-flex;
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 0.18em;
    margin-bottom: 14px;
    text-transform: uppercase;
}

.section-light .card-kicker,
.section-light .stack-label {
    color: var(--primary-soft);
}

.info-card ul {
    color: inherit;
    display: flex;
    flex-direction: column;
    gap: 10px;
    list-style: none;
    margin-top: 20px;
}

.info-card li {
    align-items: center;
    color: inherit;
    display: flex;
    font-weight: 700;
    gap: 10px;
}

.info-card li::before {
    background: linear-gradient(135deg, var(--accent), var(--primary-soft));
    border-radius: 999px;
    content: "";
    flex: 0 0 8px;
    height: 8px;
}

.accent-card {
    background:
        linear-gradient(180deg, rgba(229, 63, 69, 0.18), rgba(31, 78, 161, 0.16)),
        rgba(255, 255, 255, 0.06);
}

.steps-grid {
    counter-reset: none;
}

.step-number {
    display: inline-block;
    margin-bottom: 18px;
}

.section-spotlight {
    background:
        radial-gradient(circle at top right, rgba(47, 111, 229, 0.12), transparent 28%),
        linear-gradient(180deg, #091221 0%, #0b1526 100%);
    padding-top: 64px;
    padding-bottom: 68px;
}

.experience-layout {
    align-items: stretch;
    display: grid;
    gap: 28px;
    grid-template-columns: 1fr;
    margin-left: auto;
    margin-right: auto;
    max-width: var(--max-width);
    width: 100%;
}

.experience-copy {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 28px;
    box-shadow: var(--shadow-md);
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 100%;
    padding: 38px 36px;
}

.experience-copy h2 {
    font-family: "Space Grotesk", sans-serif;
    font-size: clamp(1.95rem, 3vw, 2.75rem);
    letter-spacing: -0.04em;
    line-height: 1.08;
    margin-bottom: 14px;
    max-width: none;
    width: 100%;
}

.experience-copy > p {
    font-size: 1.04rem;
    line-height: 1.78;
    max-width: none;
    width: 100%;
}

.feature-list {
    display: grid;
    gap: 14px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: 26px;
}

.feature-list article {
    border-radius: var(--radius-md);
    padding: 20px 22px;
}

.feature-list strong {
    color: #ffffff;
    display: block;
    margin-bottom: 6px;
}

.experience-stack {
    display: grid;
    gap: 18px;
}

.experience-visual {
    background: linear-gradient(180deg, rgba(18, 33, 58, 0.92), rgba(9, 18, 33, 0.96));
    border: 1px solid rgba(126, 224, 255, 0.14);
    box-shadow: var(--shadow-lg);
    border-radius: var(--radius-lg);
    overflow: hidden;
    position: relative;
}

.experience-visual img {
    aspect-ratio: 1.18 / 0.86;
    object-fit: cover;
    opacity: 0.82;
    width: 100%;
}

.experience-visual::after {
    background:
        linear-gradient(180deg, rgba(8, 17, 31, 0.08) 0%, rgba(8, 17, 31, 0.72) 100%),
        linear-gradient(90deg, rgba(8, 17, 31, 0.8) 0%, rgba(8, 17, 31, 0.16) 60%);
    content: "";
    inset: 0;
    pointer-events: none;
    position: absolute;
}

.experience-visual-caption {
    align-items: start;
    display: grid;
    gap: 10px;
    left: 24px;
    max-width: 420px;
    position: absolute;
    right: 24px;
    top: 24px;
    z-index: 1;
}

.experience-visual-caption strong {
    color: #ffffff;
    font-family: "Space Grotesk", sans-serif;
    font-size: 1.5rem;
    line-height: 1.18;
}

.experience-card-grid {
    align-items: stretch;
    display: grid;
    gap: 16px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.experience-card-grid .main-stack {
    grid-column: span 2;
}

.stack-card {
    border-radius: var(--radius-lg);
    height: 100%;
    padding: 26px;
}

.main-stack {
    background:
        linear-gradient(135deg, rgba(31, 78, 161, 0.28), rgba(229, 63, 69, 0.16)),
        rgba(255, 255, 255, 0.06);
}

.contact-shell {
    margin-left: auto;
    margin-right: auto;
    max-width: var(--max-width);
}

.section-contact {
    background:
        linear-gradient(180deg, rgba(8, 17, 31, 0.08), rgba(8, 17, 31, 0.02)),
        linear-gradient(180deg, #eef3fa 0%, #f6f8fc 100%);
    color: var(--text-dark);
    padding-top: 72px;
    padding-bottom: 82px;
}

.contact-heading {
    margin-bottom: 30px;
    max-width: none;
    width: 100%;
}

.contact-heading .eyebrow {
    color: var(--primary-soft);
}

.contact-heading h2 {
    color: var(--text-dark);
    font-family: "Space Grotesk", sans-serif;
    font-size: clamp(2rem, 4.2vw, 3.4rem);
    letter-spacing: -0.04em;
    line-height: 1.02;
    margin-bottom: 16px;
    max-width: none;
    width: 100%;
}

.contact-heading p {
    color: var(--muted-dark);
    font-size: 1.05rem;
    line-height: 1.75;
    max-width: 74ch;
}

.contact-layout {
    display: grid;
    gap: 24px;
    grid-template-columns: minmax(0, 1.02fr) minmax(0, 0.98fr);
}

.contact-card {
    background: rgba(255, 255, 255, 0.86);
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 30px;
    box-shadow: 0 24px 54px rgba(14, 24, 39, 0.12);
    padding: 28px;
}

.contact-card-header h3 {
    color: var(--text-dark);
    font-family: "Space Grotesk", sans-serif;
    font-size: 1.8rem;
    line-height: 1.15;
    margin-bottom: 10px;
}

.contact-card-header p {
    color: var(--muted-dark);
    line-height: 1.7;
}

.contact-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 18px;
}

.contact-meta a {
    align-items: center;
    background: rgba(15, 23, 42, 0.04);
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 999px;
    color: var(--text-dark);
    display: inline-flex;
    font-size: 0.95rem;
    font-weight: 700;
    min-height: 44px;
    padding: 0 16px;
    transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, border-color 0.25s ease;
}

.contact-meta a:hover,
.contact-meta a:focus-visible {
    background: rgba(31, 78, 161, 0.08);
    border-color: rgba(31, 78, 161, 0.14);
    box-shadow: 0 12px 24px rgba(14, 24, 39, 0.1);
    transform: translateY(-1px);
}

.contact-map-frame {
    border-radius: 24px;
    margin-top: 22px;
    overflow: hidden;
}

.contact-map-frame iframe {
    border: 0;
    display: block;
    height: 380px;
    width: 100%;
}

.contact-socials {
    display: grid;
    gap: 14px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: 20px;
}

.contact-social-link {
    align-items: center;
    background: rgba(15, 23, 42, 0.04);
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 22px;
    display: flex;
    gap: 14px;
    min-height: 72px;
    padding: 16px 18px;
    transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, border-color 0.25s ease;
}

.contact-social-link:hover,
.contact-social-link:focus-visible {
    background: rgba(31, 78, 161, 0.08);
    border-color: rgba(31, 78, 161, 0.16);
    box-shadow: 0 14px 28px rgba(14, 24, 39, 0.12);
    transform: translateY(-1px);
}

.contact-social-icon {
    align-items: center;
    background: linear-gradient(135deg, rgba(31, 78, 161, 0.14), rgba(229, 63, 69, 0.08));
    border-radius: 18px;
    color: var(--primary);
    display: inline-flex;
    flex: 0 0 46px;
    height: 46px;
    justify-content: center;
    width: 46px;
}

.contact-social-icon svg {
    fill: none;
    height: 22px;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.8;
    width: 22px;
}

.contact-social-copy {
    display: grid;
    gap: 3px;
}

.contact-social-copy strong {
    color: var(--text-dark);
    font-size: 1rem;
}

.contact-social-copy span {
    color: var(--muted-dark);
    font-size: 0.95rem;
    font-weight: 700;
}

.contact-form {
    margin-top: 18px;
}

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

.contact-field {
    display: grid;
    gap: 10px;
}

.contact-field span {
    color: var(--text-dark);
    font-size: 0.92rem;
    font-weight: 800;
}

.contact-field input,
.contact-field textarea {
    appearance: none;
    background: rgba(247, 250, 254, 0.98);
    border: 1px solid rgba(15, 23, 42, 0.1);
    border-radius: 18px;
    color: var(--text-dark);
    min-height: 56px;
    outline: 0;
    padding: 16px 18px;
    transition: border-color 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
    width: 100%;
}

.contact-field textarea {
    min-height: 168px;
    resize: vertical;
}

.contact-field input:focus,
.contact-field textarea:focus {
    background: #ffffff;
    border-color: rgba(31, 78, 161, 0.32);
    box-shadow: 0 0 0 4px rgba(47, 111, 229, 0.14);
}

.contact-field-full {
    margin-top: 16px;
}

.contact-honeypot {
    left: -9999px;
    opacity: 0;
    position: absolute;
    pointer-events: none;
}

.contact-form-actions {
    align-items: center;
    display: flex;
    gap: 16px;
    justify-content: space-between;
    margin-top: 20px;
}

.contact-form-status {
    color: var(--muted-dark);
    flex: 1 1 auto;
    font-size: 0.95rem;
    line-height: 1.6;
    min-height: 1.6em;
}

.contact-form-status.is-success {
    color: #177245;
}

.contact-form-status.is-error {
    color: #c53345;
}

.floating-actions {
    bottom: 24px;
    display: grid;
    gap: 12px;
    pointer-events: none;
    position: fixed;
    right: 24px;
    z-index: 24;
}

.floating-action {
    align-items: center;
    background: rgba(8, 17, 31, 0.88);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 18px;
    box-shadow: 0 18px 42px rgba(0, 0, 0, 0.24);
    color: #ffffff;
    cursor: pointer;
    display: inline-flex;
    height: 58px;
    justify-content: center;
    pointer-events: auto;
    transition: transform 0.25s ease, opacity 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
    width: 58px;
}

.floating-action svg {
    fill: none;
    height: 24px;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.9;
    width: 24px;
}

.floating-action:hover,
.floating-action:focus-visible {
    box-shadow: 0 22px 46px rgba(0, 0, 0, 0.28);
    transform: translateY(-2px);
}

.floating-action-whatsapp {
    background: linear-gradient(135deg, #0d8f55 0%, #19bf69 100%);
    border-color: rgba(255, 255, 255, 0.12);
}

.floating-action-top {
    opacity: 0;
    transform: translateY(8px);
    visibility: hidden;
}

.floating-action-top.is-visible {
    opacity: 1;
    transform: translateY(0);
    visibility: visible;
}

.faq-list {
    display: grid;
    gap: 14px;
    max-width: 920px;
}

.faq-list details {
    border-radius: 22px;
    overflow: hidden;
    padding: 0 24px;
}

.faq-list summary {
    align-items: center;
    cursor: pointer;
    display: flex;
    font-family: "Space Grotesk", sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    justify-content: space-between;
    list-style: none;
    min-height: 74px;
}

.faq-list summary::-webkit-details-marker {
    display: none;
}

.faq-list summary::after {
    color: var(--primary-soft);
    content: "+";
    font-size: 1.6rem;
    line-height: 1;
}

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

.faq-list p {
    padding-bottom: 22px;
}

.cta-section {
    padding-top: 0;
}

.cta-panel {
    align-items: center;
    border-radius: 30px;
    display: grid;
    gap: 24px;
    grid-template-columns: minmax(0, 1.1fr) auto;
    padding: 34px;
}

.cta-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
    min-width: 220px;
}

.site-footer {
    background: rgba(7, 17, 31, 0.9);
    border: 1px solid rgba(126, 224, 255, 0.12);
    border-radius: 28px;
    box-shadow: var(--shadow-lg);
    align-items: center;
    color: rgba(232, 238, 248, 0.74);
    display: flex;
    justify-content: center;
    margin-bottom: 32px;
    max-width: var(--max-width);
    width: calc(100% - 48px);
    padding: 28px 24px;
    text-align: center;
}

.site-footer small {
    display: block;
    font-size: 1rem;
    line-height: 1.7;
    width: 100%;
}

html.js .reveal {
    opacity: 0;
    transform: translateY(34px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

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

@media (max-width: 1080px) {
    .photo-slider {
        height: clamp(340px, 56vw, 470px);
    }

    .photo-slide-copy {
        bottom: 110px;
        max-width: 500px;
    }

    .photo-slide-copy-benefits {
        max-width: 560px;
    }

    .photo-slide-points {
        max-width: 500px;
    }

    .photo-slide-copy-compact {
        max-width: 420px;
    }

    .hero-shell,
    .experience-layout,
    .contact-layout,
    .cta-panel {
        grid-template-columns: 1fr;
    }

    .hero-copy h1,
    .section-heading h2 {
        max-width: none;
    }

    .plan-grid,
    .steps-grid {
        grid-template-columns: 1fr;
    }

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

    .hero-card-feature,
    .hero-card-accent {
        grid-column: auto;
    }

    .experience-card-grid {
        grid-template-columns: 1fr;
    }

    .experience-card-grid .main-stack {
        grid-column: auto;
    }

    .feature-list,
    .contact-socials {
        grid-template-columns: 1fr 1fr;
    }

    .contact-map-frame iframe {
        height: 340px;
    }
}

@media (max-width: 860px) {
    .photo-slice {
        padding: 16px 16px 10px;
    }

    .photo-slider {
        border-radius: 28px;
        height: clamp(320px, 62vw, 430px);
    }

    .photo-slide-copy {
        bottom: 96px;
        left: 22px;
        max-width: calc(100% - 44px);
    }

    .photo-slide-copy-benefits h2 {
        max-width: 10ch;
    }

    .photo-slide-points {
        grid-template-columns: 1fr;
        max-width: 100%;
    }

    .photo-slide-copy-compact {
        max-width: min(420px, calc(100% - 44px));
    }

    .photo-slider-ui {
        bottom: 18px;
        left: 50%;
        transform: translateX(-50%);
    }

    .photo-slider-controls {
        justify-content: center;
    }

    .site-header {
        padding: 16px 16px 0;
    }

    .site-nav {
        display: flex;
        align-items: flex-start;
        border-radius: 30px;
        flex-wrap: wrap;
        gap: 14px;
        padding: 14px 16px;
    }

    .js .nav-toggle {
        display: grid;
        margin-left: auto;
    }

    .nav-panel {
        display: flex;
        flex-basis: 100%;
        flex-direction: column;
        gap: 18px;
        padding-top: 8px;
    }

    .js .nav-panel {
        display: none;
    }

    .js .nav-panel.is-open {
        display: flex;
    }

    .nav-links {
        align-items: stretch;
        flex-direction: column;
        width: 100%;
    }

    .nav-links a {
        width: 100%;
    }

    .nav-actions {
        justify-content: flex-start;
        width: 100%;
    }

    .hero {
        padding-left: 16px;
        padding-right: 16px;
    }

    .hero-shell {
        padding: 24px;
    }

    .hero-copy h1 {
        font-size: clamp(2.45rem, 12vw, 4.2rem);
    }

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

    .experience-copy {
        padding: 24px;
    }

    .contact-card {
        padding: 24px;
    }

    .feature-list,
    .contact-socials {
        grid-template-columns: 1fr;
    }

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

    .contact-form-actions {
        align-items: stretch;
        flex-direction: column;
    }

    .contact-form-actions .btn {
        width: 100%;
    }

    .experience-visual-caption {
        left: 18px;
        max-width: calc(100% - 36px);
        right: 18px;
        top: 18px;
    }

    .section {
        padding: 86px 16px;
    }

    .cta-actions {
        min-width: auto;
        width: 100%;
    }

    .site-footer {
        align-items: center;
        flex-direction: row;
        padding-left: 16px;
        padding-right: 16px;
        text-align: center;
        width: calc(100% - 32px);
    }

    .floating-actions {
        bottom: 18px;
        right: 18px;
    }
}

@media (max-width: 560px) {
    .photo-slider {
        height: 324px;
    }

    .photo-slide-copy {
        bottom: 74px;
        gap: 8px;
        left: 16px;
        max-width: calc(100% - 32px);
    }

    .photo-slide:first-child img {
        object-position: 70% 30%;
    }

    .photo-slide--delivery img {
        object-position: 62% 42%;
    }

    .photo-slide-copy-benefits {
        bottom: 72px;
        gap: 7px;
        max-width: min(68%, 250px);
    }

    .photo-slide-copy-benefits h2 {
        font-size: clamp(1.34rem, 6.3vw, 1.9rem);
        line-height: 1.02;
        max-width: 6.2ch;
    }

    .photo-slide-copy-benefits p {
        font-size: 0.82rem;
        line-height: 1.42;
        max-width: 24ch;
    }

    .photo-slide:first-child .photo-slide-points {
        display: none;
    }

    .photo-slide--finance .photo-slide-copy,
    .photo-slide--delivery .photo-slide-copy {
        max-width: min(65%, 238px);
    }

    .photo-slide--finance .photo-slide-copy h2 {
        font-size: clamp(1.34rem, 6.4vw, 1.88rem);
        line-height: 1.04;
        max-width: 6.4ch;
    }

    .photo-slide--finance .photo-slide-copy p {
        font-size: 0.82rem;
        line-height: 1.42;
        max-width: 21ch;
    }

    .photo-slide-copy p {
        font-size: 0.95rem;
        line-height: 1.6;
    }

    .photo-slide-points {
        gap: 8px;
    }

    .photo-slide-points li {
        font-size: 0.78rem;
        min-height: 44px;
        padding: 10px 12px;
    }

    .photo-slide-copy-compact h2 {
        font-size: clamp(1.58rem, 8vw, 2.35rem);
        max-width: 8ch;
    }

    .photo-slide-copy-compact p {
        font-size: 0.88rem;
        line-height: 1.48;
        max-width: 25ch;
    }

    .experience-visual img {
        aspect-ratio: 1 / 1.04;
    }

    .contact-card {
        border-radius: 24px;
        padding: 22px;
    }

    .contact-card-header h3 {
        font-size: 1.5rem;
    }

    .contact-social-link {
        min-height: 64px;
        padding: 14px 16px;
    }

    .contact-map-frame iframe {
        height: 300px;
    }

    .experience-visual-caption strong {
        font-size: 1.24rem;
    }

    .experience-copy,
    .experience-visual-caption {
        gap: 8px;
    }

    .brand-copy {
        display: none;
    }

    .brand img {
        width: 120px;
    }

    .cta-actions {
        width: 100%;
    }

    .cta-actions .btn {
        width: 100%;
    }

    .hero-shell,
    .hero-card,
    .info-card,
    .step-card,
    .stack-card,
    .cta-panel {
        padding: 22px;
    }

    .faq-list details {
        padding-left: 18px;
        padding-right: 18px;
    }

}

@media (max-width: 420px) {
    .photo-slider {
        height: 302px;
    }

    .photo-slide-copy {
        bottom: 66px;
    }

    .photo-slide:first-child img {
        object-position: 72% 28%;
    }

    .photo-slide--delivery img {
        object-position: 64% 40%;
    }

    .photo-slide-copy-benefits {
        max-width: min(72%, 232px);
    }

    .photo-slide-copy-benefits h2 {
        font-size: clamp(1.2rem, 5.7vw, 1.65rem);
        max-width: 5.8ch;
    }

    .photo-slide-copy-benefits p {
        font-size: 0.78rem;
        max-width: 21ch;
    }

    .photo-slide--finance .photo-slide-copy,
    .photo-slide--delivery .photo-slide-copy {
        max-width: min(68%, 210px);
    }

    .photo-slide--finance .photo-slide-copy h2 {
        font-size: clamp(1.18rem, 5.9vw, 1.52rem);
        max-width: 6ch;
    }

    .photo-slide--finance .photo-slide-copy p {
        font-size: 0.78rem;
        max-width: 19ch;
    }

    .photo-slide-copy-compact h2 {
        font-size: clamp(1.38rem, 7vw, 1.85rem);
        max-width: 7.2ch;
    }

    .photo-slide-copy-compact p {
        font-size: 0.8rem;
        max-width: 21ch;
    }

    .photo-slider-controls {
        gap: 8px;
        padding: 6px 10px;
    }
}

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

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

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