:root {
    --color-navy-900: #09142d;
    --color-navy-800: #0f1f4d;
    --color-navy-700: #193d8a;
    --color-cyan-500: #1aa9ff;
    --color-green-500: #2fd38d;
    --color-green-400: #77e6b5;
    --color-orange-500: #ff8b37;
    --color-text: #17223b;
    --color-text-soft: #5f6984;
    --color-line: rgba(15, 31, 77, 0.12);
    --color-surface: #ffffff;
    --color-surface-soft: #f3f7ff;
    --color-surface-deep: #dfe9ff;
    --shadow-soft: 0 18px 60px rgba(9, 20, 45, 0.12);
    --shadow-strong: 0 30px 80px rgba(7, 19, 48, 0.2);
    --radius-xl: 32px;
    --radius-lg: 24px;
    --radius-md: 18px;
    --radius-sm: 14px;
    --container-width: 1180px;
    --header-height: 88px;
    --section-padding: 110px;
    --anchor-offset: 18px;
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: var(--anchor-offset);
}

body {
    font-family: "Outfit", sans-serif;
    color: var(--color-text);
    background: var(--color-surface);
    line-height: 1.65;
    overflow-x: hidden;
}

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

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

button,
a {
    transition: transform 180ms ease, background-color 180ms ease, color 180ms ease, border-color 180ms ease, opacity 180ms ease, box-shadow 180ms ease;
}

button {
    font: inherit;
    background: none;
    border: 0;
    color: inherit;
    cursor: pointer;
}

ul {
    list-style: none;
}

:focus-visible {
    outline: 3px solid rgba(26, 169, 255, 0.35);
    outline-offset: 4px;
}

.container {
    width: min(100% - 40px, var(--container-width));
    margin: 0 auto;
}

.section {
    padding: var(--section-padding) 0;
}

section[id] {
    scroll-margin-top: var(--anchor-offset);
}

.section-soft {
    background: linear-gradient(180deg, #f8fbff 0%, #f1f6ff 100%);
}

.progress-bar {
    position: fixed;
    inset: 0 auto auto 0;
    z-index: 1300;
    height: 6px;
    width: 0;
    background: linear-gradient(90deg, var(--color-cyan-500) 0%, var(--color-green-500) 100%);
    box-shadow: 0 0 18px rgba(26, 169, 255, 0.35);
}

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1200;
    padding: 18px 0;
    transition: background-color 180ms ease, box-shadow 180ms ease, backdrop-filter 180ms ease;
}

.site-header.scrolled {
    background: rgba(9, 20, 45, 0.76);
    box-shadow: 0 20px 40px rgba(3, 8, 20, 0.18);
    backdrop-filter: blur(18px);
}

.nav {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    min-height: calc(var(--header-height) - 36px);
}

.logo {
    display: inline-flex;
    align-items: center;
}

.logo img {
    width: auto;
    height: 46px;
}

.site-header .logo {
    padding: 10px 16px;
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 16px 32px rgba(4, 12, 30, 0.16);
}

.site-header .logo img {
    height: 58px;
}

.site-footer .logo img {
    height: 52px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 28px;
}

.nav-links a {
    color: #eff5ff;
    font-weight: 500;
    letter-spacing: 0.01em;
}

.nav-links a:hover {
    color: var(--color-green-400);
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
}

.mobile-menu-btn span {
    width: 26px;
    height: 2px;
    border-radius: 999px;
    background: #ffffff;
    transform-origin: center;
}

.mobile-menu-btn.is-open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.mobile-menu-btn.is-open span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.is-open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 52px;
    padding: 0 26px;
    border-radius: 999px;
    border: 1px solid transparent;
    font-weight: 700;
    line-height: 1;
}

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

.btn-primary {
    color: #081327;
    background: linear-gradient(135deg, var(--color-green-500) 0%, var(--color-cyan-500) 100%);
    box-shadow: 0 18px 40px rgba(26, 169, 255, 0.24);
}

.btn-secondary {
    color: var(--color-navy-800);
    background: transparent;
    border-color: rgba(15, 31, 77, 0.16);
}

.btn-nav {
    min-height: 46px;
    color: #081327;
    background: linear-gradient(135deg, var(--color-green-500) 0%, #7be5bb 100%);
}

.hero .btn-secondary,
.cta-card .btn-secondary {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.18);
}

.hero {
    position: relative;
    padding: 154px 0 120px;
    overflow: hidden;
    background:
        radial-gradient(circle at top left, rgba(47, 211, 141, 0.25), transparent 28%),
        radial-gradient(circle at 80% 20%, rgba(26, 169, 255, 0.28), transparent 24%),
        linear-gradient(135deg, #081327 0%, #0f1f4d 38%, #173f90 72%, #0c8de0 100%);
}

.hero-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(10px);
    opacity: 0.65;
    pointer-events: none;
}

.hero-glow-one {
    top: 90px;
    right: -90px;
    width: 280px;
    height: 280px;
    background: rgba(47, 211, 141, 0.2);
}

.hero-glow-two {
    bottom: 50px;
    left: -80px;
    width: 240px;
    height: 240px;
    background: rgba(26, 169, 255, 0.18);
}

.hero-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1.04fr) minmax(0, 0.96fr);
    grid-template-areas:
        "top    visual"
        "bottom visual";
    column-gap: 56px;
    row-gap: 28px;
    align-items: start;
}

.hero-copy-top { grid-area: top; align-self: end; }
.hero-copy-bottom { grid-area: bottom; align-self: start; }
.hero-visual { grid-area: visual; align-self: center; }

.hero-copy {
    color: #ffffff;
}

.hero-lede {
    max-width: 52ch;
}

.eyebrow {
    display: inline-flex;
    margin-bottom: 18px;
    color: var(--color-green-400);
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.hero h1,
.section-heading h2,
.workspace-copy h3,
.cta-copy h2 {
    line-height: 1.08;
}

.hero h1 {
    max-width: 16ch;
    margin-bottom: 24px;
    font-size: clamp(2.4rem, 5.6vw, 4.4rem);
    letter-spacing: -0.035em;
    font-weight: 800;
}

.hero h1 .highlight {
    background: linear-gradient(135deg, var(--color-green-400) 0%, var(--color-cyan-500) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    white-space: nowrap;
}

.accent {
    background: linear-gradient(135deg, var(--color-green-500) 0%, var(--color-cyan-500) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.hero p {
    max-width: 640px;
    color: rgba(239, 245, 255, 0.86);
    font-size: 1.08rem;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin: 34px 0 28px;
}

.hero-points {
    display: grid;
    gap: 12px;
    margin-bottom: 36px;
}

.hero-points li {
    position: relative;
    padding-left: 30px;
    color: rgba(239, 245, 255, 0.9);
}

.hero-points li::before {
    content: "";
    position: absolute;
    top: 10px;
    left: 0;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--color-green-500), var(--color-cyan-500));
    box-shadow: 0 0 0 6px rgba(47, 211, 141, 0.14);
}

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

.trust-card {
    padding: 18px 18px 20px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.07);
    backdrop-filter: blur(10px);
}

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

.trust-card span {
    display: block;
    color: rgba(239, 245, 255, 0.78);
    font-size: 0.95rem;
}

.hero-visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ================== PHONE FRAME (hero + spotlights) ================== */
.phone-frame {
    position: relative;
    width: min(300px, 80%);
    aspect-ratio: 9 / 19;
    padding: 14px;
    border-radius: 46px;
    background: linear-gradient(180deg, #0c1730 0%, #10265d 100%);
    box-shadow:
        0 40px 90px rgba(7, 19, 48, 0.35),
        0 0 0 2px rgba(255, 255, 255, 0.08) inset;
}

.phone-frame::before {
    content: "";
    position: absolute;
    inset: 6px;
    border-radius: 40px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0));
    pointer-events: none;
}

.phone-notch {
    position: absolute;
    top: 18px;
    left: 50%;
    transform: translateX(-50%);
    width: 90px;
    height: 22px;
    border-radius: 999px;
    background: #05091a;
    z-index: 2;
}

.phone-screen {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 32px;
    overflow: hidden;
    background: #0a1328;
    box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.05) inset;
}

.phone-screen img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
}

.floating-card {
    position: absolute;
    width: min(290px, 48%);
    padding: 20px;
    border-radius: 22px;
    background: rgba(9, 20, 45, 0.78);
    border: 1px solid rgba(255, 255, 255, 0.16);
    box-shadow: 0 18px 45px rgba(7, 18, 40, 0.22);
    color: #ffffff;
}

.floating-card-top {
    top: 40px;
    left: -10px;
}

.floating-card-bottom {
    right: -10px;
    bottom: 40px;
}

.floating-label {
    display: inline-flex;
    margin-bottom: 10px;
    color: var(--color-green-400);
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.floating-card strong {
    display: block;
    margin-bottom: 8px;
    font-size: 1.12rem;
    line-height: 1.35;
}

.floating-card p {
    color: rgba(239, 245, 255, 0.78);
    font-size: 0.94rem;
}

.logo-strip {
    margin-top: -1px;
    padding: 26px 0 0;
    background: linear-gradient(180deg, #e8f1ff 0%, #ffffff 100%);
}

.logo-strip-content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 18px 28px;
    padding: 22px 28px;
    border-radius: var(--radius-lg);
    background: #ffffff;
    box-shadow: var(--shadow-soft);
}

.logo-strip-content p {
    color: var(--color-text-soft);
    font-weight: 600;
}

.logo-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.logo-cloud span {
    padding: 10px 16px;
    border: 1px solid var(--color-line);
    border-radius: 999px;
    background: var(--color-surface-soft);
    color: var(--color-navy-800);
    font-size: 0.94rem;
    font-weight: 600;
}

.section-heading {
    max-width: 780px;
    margin-bottom: 42px;
}

.section-heading-compact {
    margin-bottom: 0;
}

.section-heading.text-center {
    margin-right: auto;
    margin-left: auto;
    text-align: center;
}

.section-heading h2 {
    margin-bottom: 18px;
    font-size: clamp(2.2rem, 4vw, 3.5rem);
    letter-spacing: -0.03em;
}

.section-heading p,
.workspace-copy p,
.cta-copy p {
    color: var(--color-text-soft);
    font-size: 1.02rem;
}

.platform-grid,
.industries-grid,
.stats-grid,
.process-grid,
.pricing-grid,
.news-grid {
    display: grid;
    gap: 24px;
}

.platform-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-bottom: 28px;
}

.feature-card,
.industry-card,
.stat-card,
.process-card,
.pricing-card,
.news-card,
.workspace-panel,
.cta-card,
.media-card {
    border: 1px solid var(--color-line);
    border-radius: var(--radius-lg);
    background: #ffffff;
    box-shadow: var(--shadow-soft);
}

.feature-card,
.industry-card,
.stat-card,
.process-card,
.pricing-card,
.news-card {
    padding: 30px;
}

.feature-card h3,
.industry-card h3,
.process-card h3,
.pricing-header h3,
.news-card h3 {
    margin-bottom: 12px;
    font-size: 1.35rem;
    line-height: 1.25;
}

.feature-card p,
.industry-card p,
.process-card p,
.pricing-header p,
.news-card p,
.pricing-features li,
.workspace-item span {
    color: var(--color-text-soft);
}

.feature-icon,
.process-step {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    margin-bottom: 22px;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(26, 169, 255, 0.14), rgba(47, 211, 141, 0.2));
    color: var(--color-navy-800);
    font-weight: 800;
}

.workspace-panel {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
    gap: 26px;
    padding: 34px;
    background: linear-gradient(135deg, #ffffff 0%, #eef5ff 100%);
}

.workspace-copy h3 {
    margin-bottom: 16px;
    font-size: clamp(1.8rem, 3.2vw, 2.5rem);
    letter-spacing: -0.03em;
}

.workspace-list {
    display: grid;
    gap: 16px;
}

.workspace-item {
    padding: 20px 22px;
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.84);
    border: 1px solid rgba(15, 31, 77, 0.08);
}

.workspace-item strong {
    display: block;
    margin-bottom: 6px;
    color: var(--color-navy-800);
    font-size: 1.02rem;
}

.split-layout {
    display: grid;
    grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
    gap: 34px;
    align-items: center;
}

.bullet-list {
    display: grid;
    gap: 12px;
    margin-top: 24px;
}

.bullet-list li {
    position: relative;
    padding-left: 24px;
    color: var(--color-text-soft);
}

.bullet-list li::before {
    content: "";
    position: absolute;
    top: 11px;
    left: 0;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--color-cyan-500), var(--color-green-500));
}

.media-card {
    overflow: hidden;
    padding: 18px;
    background: linear-gradient(135deg, #f8fbff 0%, #eef5ff 100%);
}

.media-card img {
    border-radius: 24px;
}

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

.industry-card {
    background: linear-gradient(180deg, #ffffff 0%, #f7fbff 100%);
}

.industry-card:hover,
.feature-card:hover,
.process-card:hover,
.news-card:hover {
    transform: translateY(-6px);
}

.stats-section {
    color: #ffffff;
    background:
        radial-gradient(circle at 15% 15%, rgba(47, 211, 141, 0.18), transparent 18%),
        radial-gradient(circle at 85% 25%, rgba(26, 169, 255, 0.18), transparent 22%),
        linear-gradient(135deg, #081327 0%, #0d1c44 45%, #173b86 100%);
}

.stats-section .section-heading p,
.stats-section .stat-card p {
    color: rgba(239, 245, 255, 0.75);
}

.stats-section .eyebrow {
    color: var(--color-green-400);
}

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

.stat-card {
    min-height: 220px;
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.12);
    box-shadow: none;
    backdrop-filter: blur(10px);
}

.stat-card h3 {
    margin-bottom: 10px;
    color: #ffffff;
    font-size: clamp(2.2rem, 3vw, 3.4rem);
    line-height: 1;
}

.process-layout {
    display: grid;
    gap: 34px;
}

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

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

.pricing-card {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 26px;
}

.pricing-card-featured {
    border-color: rgba(26, 169, 255, 0.38);
    background: linear-gradient(180deg, #ffffff 0%, #eef9ff 100%);
    box-shadow: 0 28px 60px rgba(26, 169, 255, 0.18);
}

.pricing-badge {
    position: absolute;
    top: -16px;
    left: 50%;
    transform: translateX(-50%);
    padding: 8px 18px;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--color-cyan-500) 0%, var(--color-green-500) 100%);
    color: #081327;
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    white-space: nowrap;
    box-shadow: 0 14px 30px rgba(26, 169, 255, 0.32);
    z-index: 3;
}

.price {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1;
    color: var(--color-navy-800);
}

.price span {
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-text-soft);
}

.pricing-features {
    display: grid;
    gap: 12px;
    flex: 1;
}

.pricing-features li {
    position: relative;
    padding-left: 24px;
}

.pricing-features li::before {
    content: "";
    position: absolute;
    top: 10px;
    left: 0;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--color-green-500), var(--color-cyan-500));
}

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

.news-card {
    background: linear-gradient(180deg, #ffffff 0%, #f7fbff 100%);
}

.news-tag {
    display: inline-flex;
    margin-bottom: 16px;
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(26, 169, 255, 0.1);
    color: var(--color-navy-800);
    font-size: 0.84rem;
    font-weight: 700;
}

.news-meta {
    margin-bottom: 10px;
    color: var(--color-text-soft);
    font-size: 0.94rem;
}

.news-link {
    display: inline-flex;
    margin-top: 18px;
    color: var(--color-navy-700);
    font-weight: 700;
}

.cta-section {
    padding-top: 30px;
}

.cta-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    padding: 42px;
    color: #ffffff;
    background:
        radial-gradient(circle at top right, rgba(47, 211, 141, 0.26), transparent 22%),
        linear-gradient(135deg, #081327 0%, #10265d 50%, #173f90 100%);
    border-color: rgba(255, 255, 255, 0.12);
}

.cta-copy {
    max-width: 720px;
}

.cta-copy h2 {
    margin-bottom: 18px;
    font-size: clamp(2.2rem, 4vw, 3.4rem);
    letter-spacing: -0.03em;
}

.cta-copy p {
    color: rgba(239, 245, 255, 0.78);
}

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

.site-footer {
    padding: 80px 0 30px;
    background: #ffffff;
}

.footer-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.8fr) repeat(3, minmax(0, 1fr));
    gap: 28px;
    padding-bottom: 28px;
    border-bottom: 1px solid var(--color-line);
}

.footer-brand p {
    max-width: 420px;
    margin: 20px 0;
    color: var(--color-text-soft);
}

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

.footer-contact-list a,
.footer-contact-list span,
.footer-column a {
    color: var(--color-text-soft);
}

.footer-column {
    display: grid;
    align-content: start;
    gap: 10px;
}

.footer-column h3 {
    margin-bottom: 4px;
    color: var(--color-navy-800);
    font-size: 1.02rem;
}

.footer-column a:hover,
.footer-contact-list a:hover {
    color: var(--color-navy-700);
}

.footer-bottom {
    padding-top: 22px;
}

.footer-bottom p {
    color: var(--color-text-soft);
    font-size: 0.94rem;
}

.back-to-top {
    position: fixed;
    right: 22px;
    bottom: 22px;
    z-index: 1250;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: var(--color-navy-800);
    color: #ffffff;
    box-shadow: 0 20px 40px rgba(9, 20, 45, 0.22);
    opacity: 0;
    pointer-events: none;
    transform: translateY(12px);
}

.back-to-top.show {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 500ms ease, transform 500ms ease;
}

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

@media (max-width: 1080px) {
    :root {
        --section-padding: 92px;
    }

    .hero-grid,
    .split-layout,
    .workspace-panel,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .hero-grid {
        grid-template-areas:
            "top"
            "visual"
            "bottom";
        row-gap: 22px;
    }

    .hero-copy-top,
    .hero-copy-bottom,
    .hero-visual {
        align-self: stretch;
    }

    .hero h1 {
        max-width: 100%;
    }

    .hero-visual {
        min-height: auto;
        margin-top: 4px;
    }

    .hero-device-card {
        left: 56px;
        right: 40px;
    }

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

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

    .cta-card {
        align-items: flex-start;
        flex-direction: column;
    }
}

@media (max-width: 860px) {
    :root {
        --header-height: 80px;
        --anchor-offset: 16px;
    }

    .nav {
        min-height: 44px;
    }

    .mobile-menu-btn {
        display: inline-flex;
    }

    .nav-links {
        position: absolute;
        top: calc(100% + 12px);
        right: 20px;
        left: 20px;
        display: grid;
        gap: 14px;
        padding: 20px;
        border: 1px solid rgba(255, 255, 255, 0.12);
        border-radius: var(--radius-md);
        background: rgba(9, 20, 45, 0.96);
        box-shadow: 0 24px 50px rgba(3, 8, 20, 0.26);
        opacity: 0;
        pointer-events: none;
        transform: translateY(-10px);
    }

    .nav-links.is-open {
        opacity: 1;
        pointer-events: auto;
        transform: translateY(0);
    }

    .hero {
        padding-top: 138px;
    }

    .site-header .logo {
        padding: 8px 12px;
        border-radius: 16px;
    }

    .site-header .logo img {
        height: 50px;
    }

    .hero-grid,
    .platform-grid,
    .stats-grid,
    .process-grid,
    .pricing-grid,
    .news-grid,
    .industries-grid,
    .hero-trust {
        grid-template-columns: 1fr;
    }

    .hero-visual {
        min-height: auto;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 8px 0 4px;
    }

    .logo-strip-content {
        padding: 20px;
    }

    .feature-card,
    .industry-card,
    .stat-card,
    .process-card,
    .pricing-card,
    .news-card {
        padding: 24px;
    }
}

@media (max-width: 560px) {
    :root {
        --anchor-offset: 14px;
    }

    body {
        line-height: 1.58;
    }

    .container {
        width: min(100% - 28px, var(--container-width));
    }

    .hero {
        padding: 126px 0 92px;
    }

    .site-header .logo img {
        height: 44px;
    }

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

    .btn,
    .btn-nav {
        width: 100%;
    }

    .hero-visual {
        padding: 4px 0;
    }

    .hero-device-card {
        padding: 14px;
    }

    .hero-device-card img {
        max-height: 360px;
    }

    .site-footer {
        padding-top: 68px;
    }
}

/* =========================================================
   PAIN / SOLUTION
   ========================================================= */
.pain-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
    margin-bottom: 36px;
}

.pain-card {
    padding: 30px;
    border: 1px solid var(--color-line);
    border-radius: var(--radius-lg);
    background: #ffffff;
    box-shadow: var(--shadow-soft);
    display: grid;
    gap: 14px;
    align-content: start;
}

.pain-mark {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 14px;
    background: rgba(255, 91, 91, 0.12);
    color: #e14040;
    font-size: 1.4rem;
    font-weight: 800;
    line-height: 1;
}

.pain-card h3 {
    font-size: 1.2rem;
    color: var(--color-navy-800);
}

.pain-card p {
    color: var(--color-text-soft);
    font-size: 0.98rem;
}

.solution-strip {
    padding: 32px 36px;
    border-radius: var(--radius-lg);
    background:
        radial-gradient(circle at top right, rgba(47, 211, 141, 0.2), transparent 40%),
        linear-gradient(135deg, #081327 0%, #10265d 60%, #173f90 100%);
    color: #ffffff;
    box-shadow: var(--shadow-strong);
}

.solution-strip .eyebrow {
    color: var(--color-green-400);
}

.solution-strip h3 {
    margin-bottom: 10px;
    font-size: clamp(1.5rem, 2.8vw, 2rem);
    line-height: 1.18;
    letter-spacing: -0.02em;
}

.solution-strip p {
    color: rgba(239, 245, 255, 0.82);
    max-width: 820px;
}

/* =========================================================
   SPOTLIGHT SECTIONS
   ========================================================= */
.spotlight-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
    gap: 60px;
    align-items: center;
}

.spotlight-reverse {
    direction: rtl;
}

.spotlight-reverse > * {
    direction: ltr;
}

.spotlight-copy h2 {
    margin-bottom: 18px;
    font-size: clamp(1.9rem, 3.6vw, 3rem);
    letter-spacing: -0.028em;
    line-height: 1.12;
}

.spotlight-copy p {
    color: var(--color-text-soft);
    font-size: 1.04rem;
    margin-bottom: 22px;
}

.check-list {
    display: grid;
    gap: 12px;
    margin: 0 0 28px;
}

.check-list li {
    position: relative;
    padding-left: 34px;
    color: var(--color-text-soft);
    font-size: 0.98rem;
    line-height: 1.55;
}

.check-list li strong {
    color: var(--color-navy-800);
}

.check-list li::before {
    content: "";
    position: absolute;
    top: 4px;
    left: 0;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--color-green-500), var(--color-cyan-500));
    box-shadow: 0 6px 14px rgba(47, 211, 141, 0.22);
}

.check-list li::after {
    content: "";
    position: absolute;
    top: 9px;
    left: 6px;
    width: 10px;
    height: 5px;
    border-left: 2px solid #ffffff;
    border-bottom: 2px solid #ffffff;
    transform: rotate(-45deg);
}

.spotlight-visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 520px;
}

.badge-chip {
    position: absolute;
    padding: 10px 16px;
    border-radius: 999px;
    background: #ffffff;
    border: 1px solid var(--color-line);
    box-shadow: 0 16px 30px rgba(9, 20, 45, 0.14);
    color: var(--color-navy-800);
    font-weight: 700;
    font-size: 0.9rem;
    white-space: nowrap;
}

.badge-chip-top {
    top: 42px;
    left: -8px;
}

.badge-chip-bottom {
    bottom: 54px;
    right: -6px;
}

.spotlight-visual .badge-chip-top {
    top: 42px;
    left: auto;
    right: calc(50% + 130px);
}

.spotlight-visual .badge-chip-bottom {
    bottom: 54px;
    right: auto;
    left: calc(50% + 130px);
}

.section-soft .badge-chip {
    background: #ffffff;
}

.hero .badge-chip {
    background: rgba(255, 255, 255, 0.96);
    border-color: rgba(255, 255, 255, 0.6);
    box-shadow: 0 18px 36px rgba(3, 10, 30, 0.28);
}

#spotlight-dashboard .phone-screen {
    padding-top: 26px;
    background: #ffffff;
}

#spotlight-dashboard .phone-screen img {
    object-fit: cover;
    object-position: top center;
}

/* ================== DESKTOP FRAME ================== */
.desktop-visual {
    min-height: auto;
}

.desktop-frame {
    width: 100%;
    max-width: 560px;
    border-radius: 20px;
    overflow: hidden;
    background: linear-gradient(180deg, #0c1730 0%, #10265d 100%);
    box-shadow:
        0 40px 90px rgba(7, 19, 48, 0.32),
        0 0 0 1px rgba(255, 255, 255, 0.08) inset;
}

.desktop-bar {
    display: flex;
    gap: 7px;
    padding: 12px 16px;
    background: #0a1225;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.desktop-bar span {
    width: 11px;
    height: 11px;
    border-radius: 50%;
    background: #2a3a66;
}

.desktop-bar span:first-child { background: #ff6057; }
.desktop-bar span:nth-child(2) { background: #ffbd2e; }
.desktop-bar span:nth-child(3) { background: #27c93f; }

.desktop-screen {
    background: #0a1328;
    aspect-ratio: 16 / 10;
}

.desktop-screen img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top left;
}

/* =========================================================
   FEATURE GRID V2
   ========================================================= */
.feature-grid-v2 {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
}

.feature-card-v2 {
    padding: 28px 26px;
    border: 1px solid var(--color-line);
    border-radius: var(--radius-lg);
    background: linear-gradient(180deg, #ffffff 0%, #f7fbff 100%);
    box-shadow: var(--shadow-soft);
    transition: transform 240ms ease, box-shadow 240ms ease, border-color 240ms ease;
}

.feature-card-v2:hover {
    transform: translateY(-4px);
    border-color: rgba(26, 169, 255, 0.35);
    box-shadow: 0 30px 60px rgba(9, 20, 45, 0.14);
}

.feature-icon-v2 {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    margin-bottom: 18px;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(26, 169, 255, 0.14), rgba(47, 211, 141, 0.2));
    font-size: 1.5rem;
}

.feature-card-v2 h3 {
    font-size: 1.15rem;
    margin-bottom: 8px;
    color: var(--color-navy-800);
    line-height: 1.3;
}

.feature-card-v2 p {
    color: var(--color-text-soft);
    font-size: 0.96rem;
    line-height: 1.55;
}

/* =========================================================
   FAQ
   ========================================================= */
.faq-layout {
    display: grid;
    grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
    gap: 56px;
    align-items: start;
}

.faq-layout .section-heading p a {
    color: var(--color-navy-700);
    font-weight: 700;
    text-decoration: underline;
    text-decoration-color: rgba(26, 169, 255, 0.4);
    text-underline-offset: 3px;
}

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

.faq-item {
    border: 1px solid var(--color-line);
    border-radius: var(--radius-md);
    background: #ffffff;
    box-shadow: 0 10px 30px rgba(9, 20, 45, 0.06);
    overflow: hidden;
    transition: border-color 200ms ease, box-shadow 200ms ease;
}

.faq-item[open] {
    border-color: rgba(26, 169, 255, 0.4);
    box-shadow: 0 18px 40px rgba(9, 20, 45, 0.12);
}

.faq-item summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 20px 22px;
    font-weight: 700;
    color: var(--color-navy-800);
    cursor: pointer;
    list-style: none;
    font-size: 1rem;
}

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

.faq-item summary::after {
    content: "+";
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(26, 169, 255, 0.14), rgba(47, 211, 141, 0.2));
    color: var(--color-navy-800);
    font-weight: 800;
    font-size: 1.2rem;
    line-height: 1;
    transition: transform 200ms ease;
}

.faq-item[open] summary::after {
    content: "−";
    transform: rotate(180deg);
}

.faq-item p {
    padding: 0 22px 22px;
    color: var(--color-text-soft);
    font-size: 0.98rem;
    line-height: 1.62;
}

/* =========================================================
   PRICING NOTE
   ========================================================= */
.pricing-note {
    margin-top: 28px;
    text-align: center;
    color: var(--color-text-soft);
    font-size: 0.96rem;
}

/* =========================================================
   RESPONSIVE OVERRIDES FOR NEW BLOCKS
   ========================================================= */
@media (max-width: 1080px) {
    .pain-grid,
    .feature-grid-v2 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .spotlight-grid,
    .faq-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .spotlight-reverse {
        direction: ltr;
    }

    .spotlight-visual {
        min-height: 460px;
        order: 2;
    }

    .spotlight-copy {
        order: 1;
    }

    .desktop-frame {
        max-width: 620px;
    }
}

@media (max-width: 860px) {
    :root {
        --section-padding: 64px;
    }

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

    .pain-grid,
    .feature-grid-v2 {
        grid-template-columns: 1fr;
    }

    .solution-strip {
        padding: 26px 24px;
    }

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

    .phone-frame {
        width: min(260px, 70%);
    }

    .badge-chip {
        padding: 8px 13px;
        font-size: 0.82rem;
    }

    .badge-chip-top {
        top: 20px;
        left: -4px;
    }

    .badge-chip-bottom {
        bottom: 30px;
        right: -4px;
    }

    .spotlight-visual .badge-chip-top {
        top: 20px;
        right: calc(50% + 110px);
    }

    .spotlight-visual .badge-chip-bottom {
        bottom: 30px;
        left: calc(50% + 110px);
    }

    .hero-visual {
        min-height: auto;
        padding: 8px 0;
    }

    .hero .phone-frame {
        width: min(230px, 60%);
    }

    .hero-grid {
        row-gap: 18px;
    }

    .hero h1 {
        font-size: clamp(2.1rem, 8vw, 2.8rem);
    }
}

@media (max-width: 560px) {
    .section {
        padding: 44px 0;
    }

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

    .section-heading h2 {
        margin-bottom: 10px;
    }

    .pain-card,
    .feature-card-v2 {
        padding: 20px;
    }

    .pain-grid,
    .feature-grid-v2 {
        gap: 14px;
    }

    .solution-strip {
        padding: 22px 18px;
        margin-top: 22px;
    }

    .solution-strip h3 {
        font-size: 1.2rem;
    }

    .spotlight-grid,
    .faq-layout {
        gap: 26px;
    }

    .spotlight-copy h2,
    .cta-copy h2 {
        margin-bottom: 12px;
    }

    .spotlight-copy p,
    .spotlight-copy .check-list {
        margin-bottom: 14px;
    }

    .hero {
        padding: 108px 0 44px;
    }

    .hero h1 {
        font-size: clamp(2rem, 9vw, 2.5rem);
        max-width: 100%;
        margin-bottom: 14px;
    }

    .hero p {
        font-size: 0.98rem;
    }

    .hero-lede {
        margin-bottom: 0;
    }

    .hero-actions {
        margin: 20px 0 18px;
    }

    .hero-points {
        gap: 10px;
        margin-bottom: 22px;
    }

    .hero-trust {
        gap: 10px;
    }

    .trust-card {
        padding: 14px 14px 16px;
    }

    .eyebrow {
        margin-bottom: 12px;
        font-size: 0.78rem;
        letter-spacing: 0.14em;
    }

    .section-heading h2,
    .spotlight-copy h2,
    .cta-copy h2 {
        font-size: clamp(1.7rem, 6.4vw, 2.1rem);
    }

    .spotlight-visual {
        min-height: auto;
        padding: 4px 0;
    }

    .phone-frame {
        width: min(240px, 76%);
        padding: 10px;
        border-radius: 38px;
    }

    .phone-notch {
        top: 14px;
        width: 70px;
        height: 16px;
    }

    .phone-screen {
        border-radius: 28px;
    }

    .desktop-frame {
        border-radius: 14px;
    }

    .desktop-bar {
        padding: 9px 12px;
    }

    .spotlight-visual .badge-chip {
        display: none;
    }

    .hero .badge-chip {
        padding: 7px 12px;
        font-size: 0.76rem;
    }

    .hero .badge-chip-top {
        top: 24px;
        left: -10px;
    }

    .hero .badge-chip-bottom {
        bottom: 28px;
        right: -10px;
    }

    .check-list li {
        padding-left: 30px;
    }

    .faq-item summary {
        padding: 16px 18px;
        font-size: 0.96rem;
    }

    .faq-item p {
        padding: 0 18px 18px;
        font-size: 0.94rem;
    }

    .price {
        font-size: 2.6rem;
    }

    .btn {
        min-height: 48px;
        padding: 0 22px;
        font-size: 0.96rem;
    }
}

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

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

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