/* Hotelitix, Brand theme: Navy #0B253A + Orange #F18F22 */
:root {
    --navy: #0b253a;
    --navy-light: #1a2b3c;
    --navy-muted: #3d5a73;
    --orange: #f18f22;
    --orange-dark: #d97a15;
    --orange-soft: rgba(241, 143, 34, 0.12);
    --orange-glow: rgba(241, 143, 34, 0.28);
    --primary: #0b253a;
    --primary-dark: #061828;
    --primary-soft: rgba(11, 37, 58, 0.06);
    --primary-glow: rgba(11, 37, 58, 0.12);
    --accent: #f18f22;
    --gold: #f18f22;
    --bg-deep: #ffffff;
    --bg-dark: #f5f7fa;
    --bg-muted: #eef1f5;
    --bg-navy: #0b253a;
    --bg-card: #ffffff;
    --bg-card-hover: #fafbfc;
    --border: #e2e8f0;
    --border-hover: rgba(241, 143, 34, 0.45);
    --text: #0b253a;
    --text-muted: #64748b;
    --gray-50: #f8fafc;
    --gray-100: #f1f5f9;
    --gray-200: #e2e8f0;
    --gray-300: #cbd5e1;
    --gradient: linear-gradient(135deg, #f18f22 0%, #ff9f43 100%);
    --gradient-navy: linear-gradient(135deg, #0b253a 0%, #1a2b3c 100%);
    --shadow-3d:
        0 20px 40px -12px rgba(11, 37, 58, 0.12),
        0 8px 20px rgba(241, 143, 34, 0.08);
    --shadow-sm: 0 1px 3px rgba(11, 37, 58, 0.06);
    --shadow-orange: 0 8px 24px var(--orange-glow);
    --radius: 14px;
    --radius-lg: 20px;
    --header-h: 72px;
    --top-bar-h: 42px;
    --section-viewport: calc(100svh - var(--header-h) - var(--top-bar-h));
    --font: "Inter", system-ui, sans-serif;
    --font-display: "Outfit", "Inter", sans-serif;
    --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font);
    background: var(--bg-deep);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
    min-height: 100vh;
    background-image:
        radial-gradient(ellipse 70% 45% at 90% 0%,
            rgba(241, 143, 34, 0.06),
            transparent),
        radial-gradient(ellipse 60% 40% at 0% 100%,
            rgba(11, 37, 58, 0.04),
            transparent),
        linear-gradient(180deg, var(--bg-deep) 0%, var(--bg-dark) 100%);
}

.bg-pattern {
    position: fixed;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    opacity: 0.35;
    background-image:
        radial-gradient(circle at 20% 30%,
            rgba(241, 143, 34, 0.15) 1px,
            transparent 1px),
        radial-gradient(circle at 80% 70%,
            rgba(11, 37, 58, 0.08) 1px,
            transparent 1px);
    background-size:
        48px 48px,
        64px 64px;
}

#bg-canvas {
    position: fixed;
    inset: 0;
    z-index: 0;
    pointer-events: none;
}

.container {
    width: min(1200px, 92vw);
    margin: 0 auto;
}

/* Loader */
.loader {
    position: fixed;
    inset: 0;
    z-index: 10000;
    background: var(--bg-deep);
    display: flex;
    align-items: center;
    justify-content: center;
    transition:
        opacity 0.6s,
        visibility 0.6s;
}

.loader.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.loader-logo {
    width: 220px;
    height: auto;
    max-height: 48px;
    object-fit: contain;
    margin-bottom: 24px;
    animation: pulse 1.5s ease-in-out infinite;
}

.loader-bar {
    width: 200px;
    height: 3px;
    background: var(--orange-soft);
    border-radius: 99px;
    overflow: hidden;
}

.loader-bar span {
    display: block;
    height: 100%;
    width: 40%;
    background: var(--gradient);
    border-radius: 99px;
    animation: loadBar 1.2s ease-in-out infinite;
}

@keyframes loadBar {
    0% {
        transform: translateX(-100%);
    }

    100% {
        transform: translateX(350%);
    }
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.85;
        transform: scale(0.98);
    }
}

/* Header */
.site-header {
    position: fixed;
    top: var(--top-bar-h);
    left: 0;
    right: 0;
    z-index: 1003;
    height: var(--header-h);
    background: rgba(255, 255, 255, 0.98);
    border-bottom: 1px solid var(--border);
    box-shadow: 0 2px 12px rgba(11, 37, 58, 0.04);
}

.site-header .header {
    position: static;
    top: auto;
    left: auto;
    right: auto;
    z-index: auto;
    height: 100%;
    background: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    border-bottom: none;
    box-shadow: none;
}

.site-header .header.scrolled {
    background: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    box-shadow: none;
    border-bottom: none;
}

.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    height: var(--header-h);
    background: rgba(255, 255, 255, 0.88);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid transparent;
    transition:
        background var(--transition),
        backdrop-filter var(--transition),
        box-shadow var(--transition),
        border-color var(--transition);
}

.header.scrolled {
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(20px);
    box-shadow: var(--shadow-sm);
    border-bottom: 1px solid var(--border);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}

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

.logo {
    height: 38px;
    width: auto;
    max-width: 220px;
    object-fit: contain;
}

.nav {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    flex: 1;
    gap: 4px;
    min-width: 0;
}

.nav-link {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.82rem;
    font-weight: 500;
    padding: 8px 11px;
    border-radius: 8px;
    transition:
        color var(--transition),
        background var(--transition);
    white-space: nowrap;
}

.nav-link:hover,
.nav-link.active {
    color: var(--orange-dark);
    background: var(--orange-soft);
}

.nav-cta {
    margin-left: 8px;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.menu-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text);
    border-radius: 2px;
    transition: var(--transition);
}

.menu-toggle.open span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

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

.menu-toggle.open span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition:
        transform 0.25s,
        box-shadow 0.25s,
        background 0.25s;
    font-family: inherit;
}

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

.btn-primary {
    background: var(--gradient);
    color: #fff;
    box-shadow: var(--shadow-orange);
}

.btn-primary:hover {
    box-shadow: 0 12px 32px var(--orange-glow);
    filter: brightness(1.05);
}

.btn-glass {
    background: var(--gray-50);
    color: var(--text);
    border: 1px solid var(--border);
}

.btn-glass:hover {
    background: var(--orange-soft);
    border-color: var(--border-hover);
    color: var(--navy);
}

.btn-outline {
    background: transparent;
    color: var(--navy);
    border: 1.5px solid var(--navy);
}

.btn-outline:hover {
    background: var(--orange-soft);
    border-color: var(--orange);
    color: var(--orange-dark);
}

.btn-lg {
    padding: 16px 32px;
    font-size: 1rem;
}

.btn-sm {
    padding: 8px 18px;
    font-size: 0.85rem;
}

.w-full {
    width: 100%;
}

/* App / Page transitions */
.app {
    position: relative;
    z-index: 1;
    padding-top: calc(var(--top-bar-h) + var(--header-h));
    min-height: calc(100vh - var(--header-h) - var(--top-bar-h));
}

.page-view {
    animation: pageIn 0.55s cubic-bezier(0.22, 1, 0.36, 1) forwards;
    transform-origin: center top;
}

.page-view.exit {
    animation: pageOut 0.35s ease forwards;
}

@keyframes pageIn {
    from {
        opacity: 0;
        transform: perspective(1200px) rotateX(4deg) translateY(30px);
    }

    to {
        opacity: 1;
        transform: perspective(1200px) rotateX(0) translateY(0);
    }
}

@keyframes pageOut {
    to {
        opacity: 0;
        transform: perspective(1200px) rotateX(-2deg) translateY(-20px);
    }
}

/* Hero */
.hero {
    padding: 36px 0 28px;
    position: relative;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: var(--orange-soft);
    border: 1px solid rgba(241, 143, 34, 0.3);
    border-radius: 99px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--orange-dark);
    letter-spacing: 0.05em;
    margin-bottom: 24px;
}

.badge-gold {
    background: var(--orange-soft);
    border-color: rgba(241, 143, 34, 0.4);
    color: var(--orange-dark);
}

.hero h1 {
    font-family: var(--font-display);
    font-size: clamp(2.2rem, 4.5vw, 3.4rem);
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 20px;
}

.gradient-text {
    background: linear-gradient(135deg,
            var(--orange) 0%,
            var(--orange-dark) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-desc {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 32px;
    max-width: 520px;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 32px;
}

.hero-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.hero-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-muted);
    font-size: 0.95rem;
}

.hero-features i {
    color: var(--orange);
}

/* 3D Hero Card */
.hero-3d-card {
    position: relative;
    transform-style: preserve-3d;
    transition: transform 0.1s ease-out;
    will-change: transform;
}

.hero-card-glow {
    position: absolute;
    inset: -15%;
    background: radial-gradient(circle, var(--primary-glow) 0%, transparent 70%);
    filter: blur(50px);
    z-index: -1;
    animation: glowPulse 4s ease-in-out infinite;
}

@keyframes glowPulse {

    0%,
    100% {
        opacity: 0.6;
        transform: scale(1);
    }

    50% {
        opacity: 1;
        transform: scale(1.05);
    }
}

.hero-img {
    width: 100%;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    box-shadow: var(--shadow-3d);
    transform: translateZ(40px);
    background: #fff;
}

.floating-stat {
    position: absolute;
    padding: 12px 18px;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 12px;
    font-size: 0.85rem;
    color: var(--text-muted);
    box-shadow: var(--shadow-3d);
    animation: float 5s ease-in-out infinite;
}

.floating-stat span {
    display: block;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--orange);
    font-family: var(--font-display);
}

.stat-1 {
    top: 10%;
    left: -8%;
    animation-delay: 0s;
}

.stat-2 {
    bottom: 20%;
    right: -5%;
    animation-delay: 1.5s;
}

.stat-3 {
    top: 45%;
    left: -12%;
    animation-delay: 3s;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0) translateZ(20px);
    }

    50% {
        transform: translateY(-12px) translateZ(30px);
    }
}

/* Sections */
.section {
    padding: 48px 0;
    position: relative;
    width: 100%;
}

.section-compact {
    padding: 36px 0;
}

.section-alt {
    background: var(--bg-dark);
}

.page-view {
    width: 100%;
}

.page-view>section {
    width: 100%;
}

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

.section-header.center {
    text-align: center;
}

.section-header.center p {
    max-width: 640px;
    margin: 16px auto 0;
    color: var(--text-muted);
}

.section-tag {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--orange);
    margin-bottom: 12px;
}

.section h2 {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    font-weight: 700;
    line-height: 1.25;
}

/* Marquee */
.marquee-wrap {
    overflow: hidden;
    mask-image: linear-gradient(90deg,
            transparent,
            #000 10%,
            #000 90%,
            transparent);
}

.marquee-track {
    display: flex;
    gap: 20px;
    animation: marquee 30s linear infinite;
    width: max-content;
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.partner-chip {
    flex-shrink: 0;
    padding: 14px 28px;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 12px;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--text-muted);
    box-shadow: var(--shadow-sm);
    transition:
        border-color var(--transition),
        color var(--transition),
        box-shadow var(--transition);
}

.partner-chip:hover {
    border-color: var(--border-hover);
    color: var(--primary-dark);
    box-shadow: 0 4px 12px var(--primary-glow);
}

/* 3D Cards Grid */
.cards-3d-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 28px;
}

.card-3d {
    perspective: 1000px;
    height: 100%;
}

.card-3d-inner {
    height: 100%;
    padding: 36px 28px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition:
        transform 0.4s cubic-bezier(0.23, 1, 0.32, 1),
        border-color var(--transition),
        box-shadow var(--transition);
    transform-style: preserve-3d;
}

.card-3d:hover .card-3d-inner {
    border-color: var(--border-hover);
    box-shadow: var(--shadow-3d);
}

.card-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--orange-soft);
    border-radius: 14px;
    font-size: 1.4rem;
    color: var(--orange);
    margin-bottom: 20px;
}

.card-3d h3 {
    font-family: var(--font-display);
    font-size: 1.25rem;
    margin-bottom: 12px;
}

.card-3d p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 16px;
}

.card-tags {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.card-tags li {
    padding: 4px 12px;
    background: var(--gray-100);
    border-radius: 99px;
    font-size: 0.75rem;
    color: var(--text-muted);
}

/* Stats */
.stats-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-top: 64px;
}

.stat-box {
    text-align: center;
    padding: 40px 24px;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
}

.stat-num {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 800;
    color: var(--navy);
}

.stat-suffix {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--orange);
}

.stat-box p {
    margin-top: 12px;
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* Trial Banner */
.trial-card {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 48px;
    align-items: center;
    padding: 56px;
    background: linear-gradient(135deg, var(--primary-soft) 0%, #fff 100%);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
}

.trial-card h2 {
    font-family: var(--font-display);
    font-size: 2rem;
    margin: 16px 0;
}

.trial-card ul {
    list-style: none;
    margin: 24px 0;
}

.trial-card li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    color: var(--text-muted);
}

.trial-card li i {
    color: var(--primary);
}

.trial-visual img {
    width: 100%;
    border-radius: var(--radius);
    border: 1px solid var(--border);
    box-shadow: var(--shadow-3d);
}

/* Value props */
.value-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.value-item {
    padding: 36px;
    text-align: center;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition:
        transform var(--transition),
        border-color var(--transition),
        box-shadow var(--transition);
}

.value-item:hover {
    transform: translateY(-6px);
    border-color: var(--border-hover);
    box-shadow: var(--shadow-3d);
}

.value-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-soft);
    border-radius: 50%;
    font-size: 1.5rem;
    color: var(--primary);
}

.value-item h4 {
    font-family: var(--font-display);
    margin-bottom: 10px;
}

.value-item p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* CTA */
.cta-box {
    display: flex;
    align-items: center;
    gap: 48px;
    padding: 64px;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    position: relative;
    overflow: hidden;
}

.cta-globe {
    width: 200px;
    opacity: 0.8;
    animation: spinSlow 20s linear infinite;
}

@keyframes spinSlow {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.cta-box h2 {
    font-family: var(--font-display);
    font-size: 2rem;
    margin: 12px 0 16px;
}

.cta-box p {
    color: var(--text-muted);
    margin-bottom: 28px;
    max-width: 520px;
}

/* Page Hero (inner pages) */
.page-hero {
    padding: 32px 0 20px;
    text-align: center;
    width: 100%;
}

.page-hero-compact {
    padding: 28px 0 16px;
}

.page-hero h1 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 800;
    max-width: 800px;
    margin: 0 auto 16px;
}

.page-hero-desc {
    color: var(--text-muted);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

/* Feature showcase */
.feature-showcase {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.feature-showcase.reverse {
    direction: rtl;
}

.feature-showcase.reverse>* {
    direction: ltr;
}

.feature-list {
    list-style: none;
    margin: 24px 0 32px;
}

.feature-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    color: var(--text-muted);
    border-bottom: 1px solid var(--gray-200);
}

.feature-list i {
    color: var(--primary);
    width: 20px;
}

.feature-img {
    width: 100%;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
    background: #fff;
}

/* Pricing */
.pricing-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-top: 32px;
}

.toggle-label {
    font-weight: 500;
    color: var(--text-muted);
}

.toggle-label em {
    font-style: normal;
    color: var(--gold);
    font-size: 0.85rem;
    margin-left: 4px;
}

.toggle-switch {
    width: 56px;
    height: 30px;
    background: var(--gray-200);
    border: 1px solid var(--border);
    border-radius: 99px;
    cursor: pointer;
    position: relative;
    transition: background var(--transition);
}

.toggle-switch.yearly {
    background: var(--primary-soft);
}

.toggle-knob {
    position: absolute;
    top: 3px;
    left: 3px;
    width: 22px;
    height: 22px;
    background: var(--gradient);
    border-radius: 50%;
    transition: transform var(--transition);
    box-shadow: 0 2px 8px var(--primary-glow);
}

.toggle-switch.yearly .toggle-knob {
    transform: translateX(26px);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    align-items: start;
}

.pricing-card {
    position: relative;
    padding: 40px 32px;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition:
        transform var(--transition),
        border-color var(--transition),
        box-shadow var(--transition);
}

.pricing-card:hover {
    transform: translateY(-8px);
    border-color: var(--border-hover);
}

.pricing-card.featured {
    border-color: var(--primary);
    box-shadow: var(--shadow-3d);
    transform: scale(1.03);
}

.pricing-card.featured:hover {
    transform: scale(1.03) translateY(-8px);
}

.popular-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    padding: 6px 20px;
    background: var(--gradient);
    border-radius: 99px;
    font-size: 0.75rem;
    font-weight: 700;
    white-space: nowrap;
}

.pricing-card h3 {
    font-family: var(--font-display);
    font-size: 1.3rem;
    margin-bottom: 20px;
}

.price {
    margin-bottom: 12px;
}

.price .currency {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
    vertical-align: super;
}

.price .amount {
    font-family: var(--font-display);
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1;
}

.price .period {
    display: block;
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-top: 4px;
}

.plan-desc {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 8px;
}

.base-fee {
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 24px;
    font-size: 0.9rem;
}

.plan-features {
    list-style: none;
    margin-bottom: 32px;
}

.plan-features li {
    padding: 8px 0;
    font-size: 0.9rem;
    color: var(--text-muted);
    border-bottom: 1px solid var(--gray-100);
    padding-left: 20px;
    position: relative;
}

.plan-features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: 700;
}

/* Testimonials */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 28px;
}

.testimonial-card {
    padding: 36px;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition:
        transform var(--transition),
        border-color var(--transition),
        box-shadow var(--transition);
}

.testimonial-card:hover {
    transform: translateY(-4px);
    border-color: var(--border-hover);
    box-shadow: var(--shadow-3d);
}

.quote-icon {
    font-size: 1.5rem;
    color: var(--primary);
    opacity: 0.5;
    margin-bottom: 16px;
}

.testimonial-card p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-muted);
    margin-bottom: 24px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 14px;
}

.testimonial-author img {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--border);
}

.testimonial-author strong {
    display: block;
    font-size: 0.95rem;
}

.testimonial-author span {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* Blog */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.blog-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition:
        transform var(--transition),
        border-color var(--transition),
        box-shadow var(--transition);
}

.blog-card:hover {
    transform: translateY(-6px);
    border-color: var(--border-hover);
    box-shadow: var(--shadow-3d);
}

.blog-thumb {
    height: 180px;
    overflow: hidden;
}

.blog-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.blog-card:hover .blog-thumb img {
    transform: scale(1.05);
}

.blog-thumb-gradient {
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-soft), var(--gray-100));
    font-size: 3rem;
    color: var(--primary);
}

.blog-thumb-gradient.alt {
    background: linear-gradient(135deg, var(--gray-100), var(--primary-soft));
}

.blog-meta {
    display: flex;
    gap: 16px;
    padding: 20px 24px 0;
    font-size: 0.8rem;
    color: var(--primary);
}

.blog-card h3 {
    font-family: var(--font-display);
    font-size: 1.1rem;
    padding: 12px 24px;
    line-height: 1.4;
}

.blog-card p {
    padding: 0 24px;
    color: var(--text-muted);
    font-size: 0.9rem;
}

.read-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 20px 24px;
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: gap 0.25s;
}

.read-more:hover {
    gap: 12px;
}

/* FAQ */
.faq-section h2 {
    font-family: var(--font-display);
    text-align: center;
    margin-bottom: 40px;
}

.faq-list {
    max-width: 760px;
    margin: 0 auto;
}

.faq-item {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    margin-bottom: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.faq-item summary {
    padding: 20px 24px;
    cursor: pointer;
    font-weight: 600;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

.faq-item summary::after {
    content: "+";
    font-size: 1.2rem;
    color: var(--primary);
    transition: transform 0.25s;
}

.faq-item[open] summary::after {
    transform: rotate(45deg);
}

.faq-item p {
    padding: 0 24px 20px;
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* Contact & Forms */
.contact-grid,
.demo-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 48px;
    align-items: start;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contact-card {
    padding: 24px;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
}

.contact-card i {
    font-size: 1.2rem;
    color: var(--primary);
    margin-bottom: 8px;
}

.contact-card h4 {
    font-family: var(--font-display);
    margin-bottom: 6px;
}

.contact-card a {
    color: var(--primary);
    text-decoration: none;
}

.contact-card.highlight {
    background: var(--primary-soft);
    border-color: rgba(241, 143, 34, 0.35);
}

.contact-form,
.demo-form {
    padding: 40px;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
}

.contact-form h3,
.demo-form h3 {
    font-family: var(--font-display);
    font-size: 1.4rem;
    margin-bottom: 28px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 500;
    margin-bottom: 8px;
    color: var(--text-muted);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    background: var(--gray-50);
    border: 1px solid var(--border);
    border-radius: 10px;
    color: var(--text);
    font-family: inherit;
    font-size: 0.95rem;
    transition:
        border-color var(--transition),
        box-shadow var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px var(--primary-glow);
}

.demo-list {
    list-style: none;
    margin: 24px 0;
}

.demo-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    color: var(--text-muted);
}

.demo-list i {
    color: var(--primary);
}

.demo-trust img {
    width: 100%;
    max-width: 280px;
    margin-top: 24px;
    opacity: 0.9;
}

.form-note {
    text-align: center;
    margin-top: 16px;
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* Book demo page enhanced */
.demo-page-hero {
    padding: 48px 0 40px;
    text-align: center;
    background: linear-gradient(180deg, #fff 0%, #f4f7fb 55%, #fff 100%);
    border-bottom: 1px solid var(--border);
    position: relative;
    overflow: hidden;
}

.demo-page-hero::before {
    content: "";
    position: absolute;
    top: -60px;
    left: 50%;
    transform: translateX(-50%);
    width: 560px;
    height: 280px;
    background: radial-gradient(ellipse,
            rgba(241, 143, 34, 0.12) 0%,
            transparent 70%);
    pointer-events: none;
}

.demo-page-hero .badge-gold {
    margin-bottom: 14px;
}

.demo-page-hero h1 {
    max-width: 760px;
    margin-left: auto;
    margin-right: auto;
}

.demo-page-hero .gradient-text {
    background: linear-gradient(135deg, var(--orange) 0%, #ff9f43 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.demo-hero-stats {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 32px;
}

.demo-hero-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    min-width: 118px;
    padding: 14px 20px;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    transition: transform 0.25s, border-color 0.25s;
}

.demo-hero-stat:hover {
    transform: translateY(-3px);
    border-color: rgba(241, 143, 34, 0.35);
}

.demo-hero-stat strong {
    font-family: var(--font-display);
    font-size: 1.35rem;
    color: var(--orange);
    line-height: 1;
}

.demo-hero-stat span {
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-muted);
}

.demo-page-main {
    padding: 56px 0;
}

.demo-showcase-shell {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    align-items: stretch;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border);
    box-shadow: 0 24px 64px rgba(11, 37, 58, 0.1);
    background: #fff;
}

.demo-showcase-content {
    padding: 40px 36px;
    background: linear-gradient(160deg, var(--navy) 0%, #0d3048 100%);
    color: #fff;
    position: relative;
    overflow: hidden;
}

.demo-showcase-content::before {
    content: "";
    position: absolute;
    top: -80px;
    right: -80px;
    width: 240px;
    height: 240px;
    background: radial-gradient(circle,
            rgba(241, 143, 34, 0.2) 0%,
            transparent 70%);
    pointer-events: none;
}

.demo-content-badge {
    display: inline-block;
    font-size: 0.68rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--orange);
    margin-bottom: 12px;
    position: relative;
    z-index: 1;
}

.demo-showcase-content h2 {
    font-family: var(--font-display);
    font-size: clamp(1.35rem, 2.2vw, 1.75rem);
    line-height: 1.25;
    margin-bottom: 12px;
    position: relative;
    z-index: 1;
}

.demo-content-lead {
    font-size: 0.9rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.72);
    margin-bottom: 24px;
    position: relative;
    z-index: 1;
}

.demo-benefit-cards {
    list-style: none;
    margin: 0 0 28px;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
    position: relative;
    z-index: 1;
}

.demo-benefit-card {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 14px 16px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius);
    transition: background 0.25s, border-color 0.25s;
}

.demo-benefit-card:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(241, 143, 34, 0.35);
}

.demo-benefit-icon {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(241, 143, 34, 0.18);
    color: var(--orange);
    border-radius: 10px;
    font-size: 0.95rem;
}

.demo-benefit-card strong {
    display: block;
    font-size: 0.88rem;
    color: #fff;
    margin-bottom: 3px;
}

.demo-benefit-card span {
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.45;
}

.demo-preview-wrap {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
    position: relative;
    z-index: 1;
}

.demo-preview-device {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.25);
}

.demo-preview-device .laptop-chassis {
    width: 100%;
    padding: 8px;
}

.demo-preview-device .device-screenshot {
    max-height: 160px;
    width: 100%;
    object-fit: cover;
    object-position: top center;
}

.demo-testimonial-snippet {
    margin: 0;
    padding: 16px 18px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius);
    border-left: 3px solid var(--orange);
}

.demo-testimonial-stars {
    color: var(--orange);
    font-size: 0.72rem;
    margin-bottom: 8px;
    display: flex;
    gap: 3px;
}

.demo-testimonial-snippet p {
    font-size: 0.84rem;
    line-height: 1.55;
    color: rgba(255, 255, 255, 0.88);
    margin-bottom: 8px;
    font-style: italic;
}

.demo-testimonial-snippet cite {
    font-size: 0.72rem;
    font-style: normal;
    color: rgba(255, 255, 255, 0.55);
    font-weight: 600;
}

.demo-form-enhanced {
    padding: 40px 36px;
    background: #fff;
    border: none;
    border-radius: 0;
    box-shadow: none;
    align-self: stretch;
    display: flex;
    flex-direction: column;
}

.demo-form-head {
    margin-bottom: 28px;
}

.demo-form-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 5px 12px;
    background: var(--orange-soft);
    color: var(--orange);
    border-radius: 999px;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 12px;
}

.demo-form-enhanced h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--navy);
    margin-bottom: 8px;
}

.demo-form-head p {
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.5;
    margin: 0;
}

.demo-form-enhanced .form-group label {
    display: flex;
    align-items: center;
    gap: 7px;
    color: var(--navy);
    font-weight: 600;
}

.demo-form-enhanced .form-group label i {
    color: var(--orange);
    font-size: 0.78rem;
    width: 14px;
}

.demo-form-enhanced .form-group input,
.demo-form-enhanced .form-group select,
.demo-form-enhanced .form-group textarea {
    border-color: var(--border);
    background: var(--gray-50);
    transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
}

.demo-form-enhanced .form-group input:focus,
.demo-form-enhanced .form-group select:focus,
.demo-form-enhanced .form-group textarea:focus {
    background: #fff;
    border-color: var(--orange);
    box-shadow: 0 0 0 3px rgba(241, 143, 34, 0.12);
}

.demo-form-enhanced .form-note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 0.8rem;
}

.demo-form-enhanced .form-note i {
    color: var(--orange);
}

.demo-page-steps {
    padding: 56px 0 64px;
}

.demo-steps-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 8px;
}

.demo-step-card {
    position: relative;
    padding: 32px 24px 28px;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
}

.demo-step-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-3d);
}

.demo-step-num {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    font-family: var(--font-display);
    font-size: 0.72rem;
    font-weight: 800;
    color: var(--orange);
    background: #fff;
    border: 2px solid var(--orange-soft);
    padding: 2px 10px;
    border-radius: 999px;
}

.demo-step-icon {
    width: 56px;
    height: 56px;
    margin: 8px auto 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--orange-soft);
    color: var(--orange);
    border-radius: 50%;
    font-size: 1.2rem;
}

.demo-step-card h4 {
    font-family: var(--font-display);
    font-size: 1.05rem;
    color: var(--navy);
    margin-bottom: 8px;
}

.demo-step-card p {
    font-size: 0.84rem;
    color: var(--text-muted);
    line-height: 1.55;
    margin: 0;
}

@media (max-width: 1024px) {
    .demo-showcase-shell {
        grid-template-columns: 1fr;
    }

    .demo-steps-row {
        grid-template-columns: 1fr;
        gap: 32px;
    }
}

@media (max-width: 768px) {
    .demo-page-hero {
        padding: 36px 0 32px;
    }

    .demo-hero-stat {
        min-width: calc(50% - 8px);
        flex: 1;
        padding: 12px 14px;
    }

    .demo-showcase-content,
    .demo-form-enhanced {
        padding: 28px 22px;
    }

    .demo-page-main {
        padding: 40px 0;
    }
}

/* Contact page enhanced */
.contact-page-hero {
    padding: 48px 0 40px;
    text-align: center;
    background: linear-gradient(180deg, #fff 0%, #f4f7fb 55%, #fff 100%);
    border-bottom: 1px solid var(--border);
    position: relative;
    overflow: hidden;
}

.contact-page-hero::before {
    content: "";
    position: absolute;
    top: -60px;
    right: -80px;
    width: 420px;
    height: 320px;
    background: radial-gradient(circle,
            rgba(11, 37, 58, 0.06) 0%,
            transparent 70%);
    pointer-events: none;
}

.contact-page-hero::after {
    content: "";
    position: absolute;
    bottom: -80px;
    left: -60px;
    width: 360px;
    height: 260px;
    background: radial-gradient(circle,
            rgba(241, 143, 34, 0.1) 0%,
            transparent 70%);
    pointer-events: none;
}

.contact-page-hero h1 {
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
}

.contact-page-hero .gradient-text {
    background: linear-gradient(135deg, var(--orange) 0%, #ff9f43 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.contact-hero-stats {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 32px;
}

.contact-hero-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    min-width: 118px;
    padding: 14px 20px;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    transition: transform 0.25s, border-color 0.25s;
}

.contact-hero-stat:hover {
    transform: translateY(-3px);
    border-color: rgba(241, 143, 34, 0.35);
}

.contact-hero-stat strong {
    font-family: var(--font-display);
    font-size: 1.25rem;
    color: var(--orange);
    line-height: 1;
}

.contact-hero-stat span {
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-muted);
}

.contact-page-main {
    padding: 56px 0;
}

.contact-showcase-shell {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    align-items: stretch;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border);
    box-shadow: 0 24px 64px rgba(11, 37, 58, 0.1);
    background: #fff;
}

.contact-showcase-content {
    padding: 40px 36px;
    background: linear-gradient(160deg, var(--navy) 0%, #0d3048 100%);
    color: #fff;
    position: relative;
    overflow: hidden;
}

.contact-showcase-content::before {
    content: "";
    position: absolute;
    bottom: -60px;
    left: -60px;
    width: 220px;
    height: 220px;
    background: radial-gradient(circle,
            rgba(241, 143, 34, 0.18) 0%,
            transparent 70%);
    pointer-events: none;
}

.contact-content-badge {
    display: inline-block;
    font-size: 0.68rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--orange);
    margin-bottom: 12px;
    position: relative;
    z-index: 1;
}

.contact-showcase-content h2 {
    font-family: var(--font-display);
    font-size: clamp(1.3rem, 2.2vw, 1.65rem);
    line-height: 1.25;
    margin-bottom: 12px;
    position: relative;
    z-index: 1;
}

.contact-content-lead {
    font-size: 0.88rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.72);
    margin-bottom: 24px;
    position: relative;
    z-index: 1;
}

.contact-method-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.contact-method-card {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 14px 14px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius);
    text-decoration: none;
    color: inherit;
    transition: background 0.25s, border-color 0.25s, transform 0.25s;
}

.contact-method-card:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(241, 143, 34, 0.35);
    transform: translateY(-2px);
}

.contact-method-static {
    cursor: default;
}

.contact-method-static:hover {
    transform: none;
}

.contact-method-icon {
    width: 36px;
    height: 36px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(241, 143, 34, 0.18);
    color: var(--orange);
    border-radius: 9px;
    font-size: 0.85rem;
}

.contact-method-card strong {
    display: block;
    font-size: 0.82rem;
    color: #fff;
    margin-bottom: 2px;
}

.contact-method-card span {
    font-size: 0.74rem;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.35;
}

.contact-support-box {
    padding: 16px 18px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius);
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.contact-support-box h4 {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-display);
    font-size: 0.88rem;
    color: #fff;
    margin-bottom: 12px;
}

.contact-support-box h4 i {
    color: var(--orange);
}

.contact-topic-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
}

.contact-topic-list li {
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: 0.76rem;
    color: rgba(255, 255, 255, 0.78);
}

.contact-topic-list i {
    color: var(--orange);
    font-size: 0.65rem;
}

.contact-aside-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding-top: 4px;
    position: relative;
    z-index: 1;
}

.contact-aside-cta p {
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.75);
    margin: 0;
}

.contact-form-enhanced {
    padding: 40px 36px;
    background: #fff;
    border: none;
    border-radius: 0;
    box-shadow: none;
    align-self: stretch;
}

.contact-form-head {
    margin-bottom: 28px;
}

.contact-form-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 5px 12px;
    background: var(--orange-soft);
    color: var(--orange);
    border-radius: 999px;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 12px;
}

.contact-form-enhanced h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--navy);
    margin-bottom: 8px;
}

.contact-form-head p {
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.5;
    margin: 0;
}

.contact-form-enhanced .form-group label {
    display: flex;
    align-items: center;
    gap: 7px;
    color: var(--navy);
    font-weight: 600;
}

.contact-form-enhanced .form-group label i {
    color: var(--orange);
    font-size: 0.78rem;
    width: 14px;
}

.contact-form-enhanced .form-group input,
.contact-form-enhanced .form-group select,
.contact-form-enhanced .form-group textarea {
    border-color: var(--border);
    background: var(--gray-50);
    transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
}

.contact-form-enhanced .form-group input:focus,
.contact-form-enhanced .form-group select:focus,
.contact-form-enhanced .form-group textarea:focus {
    background: #fff;
    border-color: var(--orange);
    box-shadow: 0 0 0 3px rgba(241, 143, 34, 0.12);
}

.contact-form-enhanced .form-note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 0.8rem;
}

.contact-form-enhanced .form-note i {
    color: var(--orange);
}

.contact-page-help {
    padding: 56px 0 64px;
}

.contact-help-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 8px;
}

.contact-help-card {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 28px 24px;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    text-decoration: none;
    color: inherit;
    transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
}

.contact-help-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-3d);
    border-color: rgba(241, 143, 34, 0.35);
}

.contact-help-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--orange-soft);
    color: var(--orange);
    border-radius: 12px;
    font-size: 1.15rem;
    margin-bottom: 4px;
}

.contact-help-card strong {
    font-family: var(--font-display);
    font-size: 1.05rem;
    color: var(--navy);
}

.contact-help-card>span:not(.contact-help-icon) {
    font-size: 0.84rem;
    color: var(--text-muted);
    line-height: 1.5;
    flex: 1;
}

.contact-help-arrow {
    position: absolute;
    top: 24px;
    right: 22px;
    font-size: 0.8rem;
    color: var(--text-muted);
    transition: transform 0.25s, color 0.25s;
}

.contact-help-card:hover .contact-help-arrow {
    transform: translateX(4px);
    color: var(--orange);
}

@media (max-width: 1024px) {
    .contact-showcase-shell {
        grid-template-columns: 1fr;
    }

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

@media (max-width: 768px) {
    .contact-page-hero {
        padding: 36px 0 32px;
    }

    .contact-hero-stat {
        min-width: calc(50% - 8px);
        flex: 1;
        padding: 12px 14px;
    }

    .contact-showcase-content,
    .contact-form-enhanced {
        padding: 28px 22px;
    }

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

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

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

    .contact-page-main {
        padding: 40px 0;
    }
}

/* About page enhanced */
.about-page-hero {
    padding: 48px 0 40px;
    text-align: center;
    background: linear-gradient(180deg, #fff 0%, #f4f7fb 55%, #fff 100%);
    border-bottom: 1px solid var(--border);
    position: relative;
    overflow: hidden;
}

.about-page-hero::before {
    content: "";
    position: absolute;
    top: -80px;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 300px;
    background: radial-gradient(ellipse,
            rgba(241, 143, 34, 0.1) 0%,
            transparent 70%);
    pointer-events: none;
}

.about-page-hero h1 {
    max-width: 780px;
    margin-left: auto;
    margin-right: auto;
}

.about-page-hero .gradient-text {
    background: linear-gradient(135deg, var(--orange) 0%, #ff9f43 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.about-hero-stats {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 32px;
}

.about-hero-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    min-width: 118px;
    padding: 14px 20px;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    transition: transform 0.25s, border-color 0.25s;
}

.about-hero-stat:hover {
    transform: translateY(-3px);
    border-color: rgba(241, 143, 34, 0.35);
}

.about-hero-stat strong {
    font-family: var(--font-display);
    font-size: 1.35rem;
    color: var(--orange);
    line-height: 1;
}

.about-hero-stat span {
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-muted);
}

.about-page-mission {
    padding: 56px 0;
}

.about-showcase-shell {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
    padding: 48px;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    box-shadow: 0 24px 64px rgba(11, 37, 58, 0.08);
}

.about-content-badge {
    display: inline-block;
    font-size: 0.68rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--orange);
    margin-bottom: 12px;
}

.about-showcase-content h2 {
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 2.5vw, 2rem);
    color: var(--navy);
    line-height: 1.25;
    margin-bottom: 16px;
}

.about-showcase-content p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.65;
    margin-bottom: 14px;
}

.about-mission-points {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin: 24px 0;
}

.about-mission-point {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.88rem;
    color: var(--navy);
    font-weight: 500;
}

.about-mission-point i {
    color: var(--orange);
    font-size: 0.9rem;
}

.about-inline-stats {
    display: flex;
    gap: 0;
    padding: 18px 16px;
    background: var(--gray-50);
    border: 1px solid var(--border);
    border-radius: var(--radius);
}

.about-inline-stats div {
    flex: 1;
    text-align: center;
    padding: 0 12px;
    border-right: 1px solid var(--border);
}

.about-inline-stats div:last-child {
    border-right: none;
}

.about-inline-stats strong {
    display: block;
    font-family: var(--font-display);
    font-size: 1.2rem;
    color: var(--orange);
    line-height: 1;
    margin-bottom: 4px;
}

.about-inline-stats span {
    font-size: 0.72rem;
    color: var(--text-muted);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.about-showcase-visual {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.about-preview-device {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 20px 48px rgba(11, 37, 58, 0.15);
}

.about-preview-device .laptop-chassis {
    width: 100%;
    padding: 10px;
}

.about-preview-device .device-screenshot {
    max-height: 220px;
    width: 100%;
    object-fit: cover;
    object-position: top center;
}

.about-visual-caption {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    background: var(--orange-soft);
    border-radius: var(--radius);
    font-size: 0.82rem;
    color: var(--navy);
    font-weight: 500;
}

.about-visual-caption i {
    color: var(--orange);
}

.about-page-story {
    padding: 56px 0;
}

.about-timeline {
    position: relative;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 16px;
}

.about-timeline-line {
    position: absolute;
    top: 48px;
    left: 12%;
    right: 12%;
    height: 2px;
    background: linear-gradient(90deg, var(--orange), rgba(241, 143, 34, 0.2));
    z-index: 0;
}

.about-milestone {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 0 8px;
}

.about-milestone-year {
    display: inline-block;
    font-family: var(--font-display);
    font-size: 0.78rem;
    font-weight: 800;
    color: var(--orange);
    background: var(--orange-soft);
    padding: 4px 12px;
    border-radius: 999px;
    margin-bottom: 12px;
}

.about-milestone-dot {
    width: 14px;
    height: 14px;
    margin: 0 auto 16px;
    background: var(--orange);
    border: 3px solid #fff;
    border-radius: 50%;
    box-shadow: 0 0 0 2px var(--orange-soft);
}

.about-milestone h4 {
    font-family: var(--font-display);
    font-size: 1rem;
    color: var(--navy);
    margin-bottom: 8px;
}

.about-milestone p {
    font-size: 0.82rem;
    color: var(--text-muted);
    line-height: 1.55;
    margin: 0;
}

.about-page-pillars {
    padding: 56px 0;
}

.about-pillars-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 8px;
}

.about-pillar-card {
    padding: 32px 26px 28px;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    transition: transform 0.3s, box-shadow 0.3s;
}

.about-pillar-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-3d);
}

.about-pillar-featured {
    border-color: rgba(241, 143, 34, 0.4);
    background: linear-gradient(180deg, #fff 0%, rgba(241, 143, 34, 0.04) 100%);
    box-shadow: 0 8px 32px rgba(241, 143, 34, 0.1);
}

.about-pillar-icon {
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--orange-soft);
    color: var(--orange);
    border-radius: 14px;
    font-size: 1.2rem;
    margin-bottom: 18px;
}

.about-pillar-card h3 {
    font-family: var(--font-display);
    font-size: 1.15rem;
    color: var(--navy);
    margin-bottom: 10px;
}

.about-pillar-card>p {
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.55;
    margin-bottom: 16px;
}

.about-pillar-card ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.about-pillar-card li {
    font-size: 0.8rem;
    color: var(--navy);
    font-weight: 500;
    padding-left: 16px;
    position: relative;
}

.about-pillar-card li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 8px;
    width: 6px;
    height: 6px;
    background: var(--orange);
    border-radius: 50%;
}

.about-page-values .section-header h2,
.about-page-values .section-header p {
    color: #fff;
}

.about-page-values .section-tag {
    background: rgba(241, 143, 34, 0.15);
    color: var(--orange);
}

.about-page-team {
    padding: 56px 0;
}

.about-team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 8px;
}

.about-team-card {
    padding: 28px 22px;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
}

.about-team-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-3d);
    border-color: rgba(241, 143, 34, 0.3);
}

.about-team-avatar {
    width: 64px;
    height: 64px;
    margin: 0 auto 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--orange-soft);
    color: var(--orange);
    border-radius: 50%;
    font-size: 1.3rem;
    border: 3px solid #fff;
    box-shadow: 0 0 0 2px var(--orange-soft);
}

.about-team-card h4 {
    font-family: var(--font-display);
    font-size: 1.02rem;
    color: var(--navy);
    margin-bottom: 10px;
}

.about-team-card p {
    font-size: 0.82rem;
    color: var(--text-muted);
    line-height: 1.55;
    margin-bottom: 14px;
}

.about-team-tag {
    display: inline-block;
    font-size: 0.68rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--orange);
    background: var(--orange-soft);
    padding: 4px 10px;
    border-radius: 999px;
}

.about-page-trust {
    padding: 56px 0;
}

.about-trust-shell {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 48px;
    align-items: center;
    padding: 48px;
    background: linear-gradient(135deg, var(--navy) 0%, #0d3048 60%, #0a2235 100%);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-3d);
    overflow: hidden;
    position: relative;
}

.about-trust-shell::before {
    content: "";
    position: absolute;
    top: -80px;
    right: -80px;
    width: 280px;
    height: 280px;
    background: radial-gradient(circle,
            rgba(241, 143, 34, 0.15) 0%,
            transparent 70%);
    pointer-events: none;
}

.about-trust-content {
    position: relative;
    z-index: 1;
}

.about-trust-content .section-tag {
    background: rgba(241, 143, 34, 0.15);
    color: var(--orange);
    border: 1px solid rgba(241, 143, 34, 0.25);
}

.about-trust-content h2 {
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 2.5vw, 2rem);
    color: #fff;
    margin: 14px 0 12px;
    line-height: 1.2;
}

.about-trust-content>p {
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.92rem;
    line-height: 1.6;
    margin-bottom: 22px;
    max-width: 480px;
}

.about-trust-types {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 24px;
}

.about-trust-types span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 999px;
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.85);
    font-weight: 500;
}

.about-trust-types i {
    color: var(--orange);
    font-size: 0.75rem;
}

.about-trust-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    position: relative;
    z-index: 1;
}

.about-trust-stat {
    padding: 24px 20px;
    text-align: center;
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius-lg);
    transition: background 0.25s, transform 0.25s;
}

.about-trust-stat:hover {
    background: rgba(255, 255, 255, 0.11);
    transform: translateY(-3px);
}

.about-trust-stat strong {
    display: block;
    font-family: var(--font-display);
    font-size: 2rem;
    color: var(--orange);
    line-height: 1;
    margin-bottom: 6px;
}

.about-trust-stat span {
    font-size: 0.72rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: rgba(255, 255, 255, 0.65);
}

.about-page-cta {
    padding-bottom: 64px;
}

@media (max-width: 1024px) {
    .about-showcase-shell {
        grid-template-columns: 1fr;
        padding: 36px 32px;
    }

    .about-showcase-visual {
        order: -1;
    }

    .about-timeline {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
    }

    .about-timeline-line {
        display: none;
    }

    .about-pillars-grid {
        grid-template-columns: 1fr;
    }

    .about-team-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-trust-shell {
        grid-template-columns: 1fr;
        padding: 36px 32px;
    }
}

@media (max-width: 768px) {
    .about-page-hero {
        padding: 36px 0 32px;
    }

    .about-hero-stat {
        min-width: calc(50% - 8px);
        flex: 1;
        padding: 12px 14px;
    }

    .about-showcase-shell,
    .about-trust-shell {
        padding: 28px 22px;
    }

    .about-inline-stats {
        flex-wrap: wrap;
        gap: 12px;
    }

    .about-inline-stats div {
        border-right: none;
        flex: 1 1 30%;
    }

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

    .about-team-grid {
        grid-template-columns: 1fr;
    }

    .about-trust-stats {
        grid-template-columns: 1fr 1fr;
    }
}

/* Case studies page enhanced */
.case-page-hero {
    padding: 48px 0 40px;
    text-align: center;
    background: linear-gradient(180deg, #fff 0%, #f4f7fb 55%, #fff 100%);
    border-bottom: 1px solid var(--border);
    position: relative;
    overflow: hidden;
}

.case-page-hero::before {
    content: "";
    position: absolute;
    top: -80px;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 300px;
    background: radial-gradient(ellipse,
            rgba(241, 143, 34, 0.1) 0%,
            transparent 70%);
    pointer-events: none;
}

.case-page-hero h1 {
    max-width: 780px;
    margin-left: auto;
    margin-right: auto;
}

.case-page-hero .gradient-text {
    background: linear-gradient(135deg, var(--orange) 0%, #ff9f43 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.case-hero-stats {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 32px;
}

.case-hero-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    min-width: 118px;
    padding: 14px 20px;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    transition: transform 0.25s, border-color 0.25s;
}

.case-hero-stat:hover {
    transform: translateY(-3px);
    border-color: rgba(241, 143, 34, 0.35);
}

.case-hero-stat strong {
    font-family: var(--font-display);
    font-size: 1.35rem;
    color: var(--orange);
    line-height: 1;
}

.case-hero-stat span {
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-muted);
}

.case-page-featured {
    padding: 56px 0;
}

.case-featured-card {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 40px;
    align-items: stretch;
    padding: 48px;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    box-shadow: 0 24px 64px rgba(11, 37, 58, 0.08);
}

.case-featured-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.68rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--orange);
    background: rgba(241, 143, 34, 0.1);
    border: 1px solid rgba(241, 143, 34, 0.25);
    padding: 6px 14px;
    border-radius: 999px;
    margin-bottom: 16px;
}

.case-featured-content h2 {
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 2.5vw, 2rem);
    color: var(--navy);
    line-height: 1.25;
    margin-bottom: 16px;
}

.case-featured-content>p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.65;
    margin-bottom: 20px;
}

.case-featured-highlights {
    list-style: none;
    padding: 0;
    margin: 0 0 28px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.case-featured-highlights li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.88rem;
    color: var(--navy);
    font-weight: 500;
}

.case-featured-highlights i {
    color: var(--orange);
    font-size: 0.75rem;
}

.case-featured-author img {
    width: 52px;
    height: 52px;
    border: 2px solid var(--orange-soft);
}

.case-featured-metrics {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.case-metric-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 22px 16px;
    background: linear-gradient(135deg, var(--navy) 0%, #0d3048 100%);
    border-radius: var(--radius);
    color: #fff;
}

.case-metric-card strong {
    font-family: var(--font-display);
    font-size: 1.75rem;
    color: var(--orange);
    line-height: 1;
    margin-bottom: 4px;
}

.case-metric-card span {
    font-size: 0.78rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: rgba(255, 255, 255, 0.85);
}

.case-metric-card small {
    font-size: 0.68rem;
    color: rgba(255, 255, 255, 0.5);
    margin-top: 4px;
}

.case-metric-quote {
    grid-column: 1 / -1;
    align-items: flex-start;
    text-align: left;
    background: rgba(241, 143, 34, 0.08);
    border: 1px solid rgba(241, 143, 34, 0.2);
}

.case-metric-quote i {
    color: var(--orange);
    font-size: 1.1rem;
    margin-bottom: 8px;
    opacity: 0.6;
}

.case-metric-quote p {
    font-size: 0.88rem;
    line-height: 1.55;
    color: var(--navy);
    font-style: italic;
    margin: 0;
}

.case-page-grid-section {
    padding: 56px 0;
}

.case-studies-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-top: 40px;
    /* Never leave the list stuck invisible from .reveal */
    opacity: 1;
    transform: none;
}

.case-studies-grid.reveal {
    opacity: 1;
    transform: none;
}

.case-studies-grid-rich {
    grid-template-columns: repeat(3, 1fr);
}

.case-study-card {
    position: relative;
    padding: 32px 28px;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    transition: transform 0.3s, box-shadow 0.3s;
}

a.case-study-card-link {
    display: flex;
    flex-direction: column;
    padding: 0;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
}

.case-study-image-wrap {
    position: relative;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: var(--gray-100);
}

.case-study-image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.case-study-card-link:hover .case-study-image-wrap img {
    transform: scale(1.04);
}

.case-study-metric-badge {
    position: absolute;
    left: 14px;
    bottom: 14px;
    background: rgba(11, 31, 58, 0.92);
    color: #fff;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 6px 12px;
    border-radius: 999px;
}

.case-study-card-body {
    padding: 22px 22px 26px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.case-study-card-body h3 {
    font-size: 1.05rem;
    color: var(--navy);
    margin: 0 0 10px;
}

.case-study-loc {
    font-size: 0.72rem;
    font-weight: 600;
    color: var(--text-muted);
}

.case-study-read {
    margin-top: auto;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--orange);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.case-featured-image {
    border-radius: var(--radius);
    overflow: hidden;
    margin-bottom: 14px;
}

.case-featured-image img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    display: block;
}

.case-detail-hero {
    padding-bottom: 40px;
}

.case-breadcrumb {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 18px;
}

.case-breadcrumb a {
    color: var(--navy);
    text-decoration: none;
    font-weight: 600;
}

.case-breadcrumb a:hover {
    color: var(--orange);
}

.case-detail-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 16px 28px;
    margin-top: 18px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--navy);
}

.case-detail-meta i {
    color: var(--orange);
    margin-right: 6px;
}

.case-detail-section {
    padding-top: 20px;
}

.case-detail-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 300px;
    gap: 36px;
    align-items: start;
}

.case-detail-figure {
    margin: 0 0 28px;
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.case-detail-figure img {
    width: 100%;
    max-height: 420px;
    object-fit: cover;
    display: block;
}

.case-detail-quote {
    margin: 0 0 32px;
    padding: 24px 28px;
    background: var(--gray-100);
    border-left: 4px solid var(--orange);
    border-radius: 0 var(--radius) var(--radius) 0;
}

.case-detail-quote p {
    font-size: 1.05rem;
    font-style: italic;
    color: var(--navy);
    margin: 0 0 12px;
    line-height: 1.6;
}

.case-detail-quote footer {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-muted);
}

.case-detail-content h2 {
    font-size: 1.35rem;
    color: var(--navy);
    margin: 32px 0 14px;
}

.case-detail-content p {
    color: var(--text-muted);
    line-height: 1.75;
    margin: 0 0 16px;
}

.case-detail-content ul {
    margin: 0 0 20px;
    padding-left: 1.2rem;
    color: var(--text-muted);
    line-height: 1.7;
}

.case-detail-content li {
    margin-bottom: 8px;
}

.case-detail-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 36px;
    padding-top: 28px;
    border-top: 1px solid var(--border);
}

.case-aside-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 22px;
    margin-bottom: 18px;
    position: sticky;
    top: 100px;
}

.case-aside-card+.case-aside-card {
    position: static;
}

.case-aside-card h4 {
    margin: 0 0 14px;
    font-size: 0.95rem;
    color: var(--navy);
}

.case-aside-card ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.case-aside-card li {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    padding: 10px 0;
    border-bottom: 1px solid var(--border);
    font-size: 0.85rem;
}

.case-aside-card li:last-child {
    border-bottom: 0;
}

.case-aside-card strong {
    color: var(--text-muted);
    font-weight: 600;
}

.case-aside-card span {
    color: var(--navy);
    font-weight: 700;
    text-align: right;
}

.case-related-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.case-related-card {
    display: flex;
    gap: 12px;
    align-items: center;
    text-decoration: none;
    color: inherit;
    padding: 8px;
    border-radius: var(--radius);
    transition: background 0.2s;
}

.case-related-card:hover {
    background: var(--gray-100);
}

.case-related-card img {
    width: 64px;
    height: 48px;
    object-fit: cover;
    border-radius: 8px;
    flex-shrink: 0;
}

.case-related-card strong {
    display: block;
    font-size: 0.82rem;
    color: var(--navy);
    margin-bottom: 2px;
}

.case-related-card span {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--orange);
}

@media (max-width: 1024px) {
    .case-studies-grid-rich {
        grid-template-columns: repeat(2, 1fr);
    }

    .case-detail-layout {
        grid-template-columns: 1fr;
    }

    .case-aside-card {
        position: static;
    }
}

@media (max-width: 640px) {

    .case-studies-grid,
    .case-studies-grid-rich {
        grid-template-columns: 1fr;
    }
}

.case-study-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-3d);
}

.case-study-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 14px;
}

.case-study-type {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--navy);
    background: var(--gray-100);
    padding: 5px 12px;
    border-radius: 999px;
}

.case-study-type i {
    color: var(--orange);
    font-size: 0.7rem;
}

.case-study-metric {
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--orange);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.case-study-card .testimonial-stars {
    margin-bottom: 10px;
}

.case-study-card .quote-icon {
    position: absolute;
    top: 24px;
    right: 24px;
    font-size: 2rem;
    color: rgba(241, 143, 34, 0.15);
}

.case-study-card p {
    color: var(--text-muted);
    font-size: 0.92rem;
    line-height: 1.65;
    margin-bottom: 22px;
}

.case-study-card .testimonial-author img {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--orange-soft);
}

.case-page-results {
    padding: 56px 0;
}

.case-page-results .section-header h2 {
    color: #fff;
}

.case-page-results .section-header p {
    color: rgba(255, 255, 255, 0.65);
}

.case-page-results .section-tag {
    background: rgba(241, 143, 34, 0.15);
    color: var(--orange);
    border: 1px solid rgba(241, 143, 34, 0.25);
}

.case-page-types {
    padding: 56px 0;
}

.case-types-shell {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 48px;
    align-items: center;
    padding: 48px;
    background: linear-gradient(135deg, var(--navy) 0%, #0d3048 60%, #0a2235 100%);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-3d);
    overflow: hidden;
    position: relative;
}

.case-types-shell::before {
    content: "";
    position: absolute;
    top: -80px;
    right: -80px;
    width: 280px;
    height: 280px;
    background: radial-gradient(circle,
            rgba(241, 143, 34, 0.15) 0%,
            transparent 70%);
    pointer-events: none;
}

.case-types-content {
    position: relative;
    z-index: 1;
}

.case-types-content .section-tag {
    background: rgba(241, 143, 34, 0.15);
    color: var(--orange);
    border: 1px solid rgba(241, 143, 34, 0.25);
}

.case-types-content h2 {
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 2.5vw, 2rem);
    color: #fff;
    margin: 14px 0 12px;
    line-height: 1.2;
}

.case-types-content>p {
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.92rem;
    line-height: 1.6;
    margin-bottom: 22px;
    max-width: 480px;
}

.case-types-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.case-types-list span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.82rem;
    font-weight: 600;
    color: #fff;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    padding: 8px 16px;
    border-radius: 999px;
}

.case-types-list i {
    color: var(--orange);
    font-size: 0.78rem;
}

.case-types-visual {
    position: relative;
    z-index: 1;
}

.case-types-stat-stack {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.case-types-stat {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 20px 24px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius);
    transition: transform 0.25s, background 0.25s;
}

.case-types-stat:hover {
    transform: translateX(6px);
    background: rgba(255, 255, 255, 0.1);
}

.case-types-stat strong {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--orange);
    line-height: 1;
}

.case-types-stat span {
    font-size: 0.78rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: rgba(255, 255, 255, 0.65);
}

.case-page-cta {
    padding-bottom: 56px;
}

@media (max-width: 992px) {
    .case-featured-card {
        grid-template-columns: 1fr;
        padding: 32px;
    }

    .case-studies-grid {
        grid-template-columns: 1fr;
    }

    .case-types-shell {
        grid-template-columns: 1fr;
        padding: 32px;
    }
}

@media (max-width: 768px) {
    .case-page-hero {
        padding: 36px 0 32px;
    }

    .case-hero-stats {
        gap: 8px;
    }

    .case-hero-stat {
        min-width: calc(50% - 8px);
        flex: 1 1 calc(50% - 8px);
    }

    .case-featured-metrics {
        grid-template-columns: 1fr;
    }
}

/* Pricing page enhanced */
.pricing-page-hero {
    padding: 56px 0 48px;
    text-align: center;
    background:
        linear-gradient(180deg, #0b253a 0%, #12324c 42%, #1a4060 100%);
    border-bottom: none;
    position: relative;
    overflow: hidden;
    color: #fff;
}

.pricing-page-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 70% 55% at 50% -10%, rgba(241, 143, 34, 0.28), transparent 60%),
        radial-gradient(ellipse 40% 40% at 90% 80%, rgba(241, 143, 34, 0.12), transparent 55%),
        radial-gradient(ellipse 35% 35% at 8% 70%, rgba(255, 255, 255, 0.06), transparent 50%);
    pointer-events: none;
}

.pricing-hero-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(40px);
    pointer-events: none;
    opacity: 0.55;
    animation: pricingOrbFloat 10s ease-in-out infinite;
}

.pricing-hero-orb-1 {
    width: 220px;
    height: 220px;
    top: -40px;
    right: 8%;
    background: rgba(241, 143, 34, 0.35);
}

.pricing-hero-orb-2 {
    width: 160px;
    height: 160px;
    bottom: -30px;
    left: 10%;
    background: rgba(255, 255, 255, 0.12);
    animation-delay: -4s;
}

@keyframes pricingOrbFloat {

    0%,
    100% {
        transform: translateY(0) scale(1);
    }

    50% {
        transform: translateY(18px) scale(1.06);
    }
}

.pricing-page-hero .container {
    position: relative;
    z-index: 1;
}

.pricing-page-hero .badge-gold {
    margin-bottom: 14px;
    box-shadow: 0 8px 24px rgba(241, 143, 34, 0.35);
}

.pricing-page-hero .section-tag {
    color: rgba(255, 255, 255, 0.72);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.14);
}

.pricing-page-hero h1 {
    max-width: 780px;
    margin-left: auto;
    margin-right: auto;
    color: #fff;
}

.pricing-page-hero .page-hero-desc {
    color: rgba(255, 255, 255, 0.78);
}

.pricing-page-hero .gradient-text {
    background: linear-gradient(135deg, #ffb347 0%, #f18f22 45%, #ffd59a 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.pricing-billing-pill {
    display: inline-flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px 14px;
    margin: 18px auto 8px;
    padding: 12px 22px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 999px;
    backdrop-filter: blur(10px);
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.88rem;
    font-weight: 600;
}

.pricing-billing-pill i {
    color: var(--orange);
    margin-right: 6px;
}

.pricing-billing-dot {
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.35);
}

.pricing-trust-row {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px 22px;
    list-style: none;
    margin: 22px 0 0;
    padding: 0;
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.82rem;
    font-weight: 500;
}

.pricing-trust-row i {
    color: #4ade80;
    margin-right: 6px;
}

.pricing-hero-stats {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 32px;
}

.pricing-hero-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    min-width: 118px;
    padding: 14px 20px;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    transition: transform 0.25s, border-color 0.25s;
}

.pricing-hero-stat:hover {
    transform: translateY(-3px);
    border-color: rgba(241, 143, 34, 0.35);
}

.pricing-hero-stat strong {
    font-family: var(--font-display);
    font-size: 1.35rem;
    color: var(--orange);
    line-height: 1;
}

.pricing-hero-stat span {
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-muted);
}

.pricing-toggle-enhanced {
    display: inline-flex;
    align-items: center;
    gap: 16px;
    margin-top: 26px;
    padding: 10px 22px;
    background: #fff;
    border: 1px solid transparent;
    border-radius: 999px;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.18);
}

.pricing-toggle-enhanced .toggle-label {
    font-weight: 600;
    font-size: 0.88rem;
    color: var(--text-muted);
    transition: color 0.2s;
    cursor: default;
}

.pricing-toggle-enhanced .toggle-label.active {
    color: var(--navy);
}

.pricing-toggle-enhanced .toggle-label em {
    font-style: normal;
    color: #15803d;
    background: rgba(34, 197, 94, 0.12);
    font-size: 0.72rem;
    margin-left: 6px;
    font-weight: 700;
    padding: 3px 8px;
    border-radius: 999px;
}

.pricing-page-main {
    padding: 28px 0 64px;
    background:
        linear-gradient(180deg, #f3f6fa 0%, #fff 38%, #fff 100%);
    margin-top: -28px;
    position: relative;
    z-index: 2;
}

.pricing-platform-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.45fr) minmax(280px, 0.85fr);
    gap: 24px;
    align-items: start;
}

.pricing-hero-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
    background-size: 48px 48px;
    mask-image: radial-gradient(ellipse 70% 60% at 50% 40%, #000 20%, transparent 75%);
    pointer-events: none;
    opacity: 0.7;
}

.pricing-page-hero .pricing-hero-stats {
    margin-top: 28px;
}

.pricing-page-hero .pricing-hero-stat {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.14);
    box-shadow: none;
    backdrop-filter: blur(8px);
    min-width: 110px;
}

.pricing-page-hero .pricing-hero-stat strong {
    color: #ffb347;
}

.pricing-page-hero .pricing-hero-stat span {
    color: rgba(255, 255, 255, 0.7);
}

.pricing-platform-card,
.pricing-calculator-card {
    position: relative;
    background: #fff;
    border: 1px solid rgba(11, 37, 58, 0.08);
    border-radius: 22px;
    box-shadow: 0 10px 30px rgba(11, 37, 58, 0.06);
    overflow: hidden;
}

.pricing-platform-card {
    padding: 34px 32px 30px;
    background:
        radial-gradient(ellipse 80% 50% at 100% 0%, rgba(241, 143, 34, 0.08), transparent 55%),
        #fff;
}

.pricing-platform-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--orange-dark), var(--orange), #ffb347);
}

.pricing-plan-eyebrow {
    margin: 0 0 4px;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--orange);
}

.pricing-platform-card .pricing-plan-head h2 {
    margin: 0 0 4px;
    font-size: 1.45rem;
    color: var(--navy);
}

.pricing-rate-grid {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 12px;
    align-items: center;
    margin: 8px 0 16px;
    padding: 18px;
    border-radius: 16px;
    background: linear-gradient(180deg, #f7f9fc 0%, #fff 100%);
    border: 1px solid rgba(11, 37, 58, 0.06);
}

.pricing-rate-kicker {
    display: inline-block;
    margin-bottom: 6px;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--orange);
}

.pricing-rate-block .price-row {
    display: flex;
    align-items: flex-start;
    gap: 2px;
}

.pricing-rate-block .amount {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 800;
    letter-spacing: -0.03em;
    color: var(--navy);
    line-height: 1;
    transition: color 0.25s ease, transform 0.25s ease;
}

.pricing-page-main.is-yearly .pricing-rate-block .amount {
    color: #15803d;
}

.pricing-rate-block .currency {
    margin-top: 8px;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--orange);
}

.pricing-rate-label {
    display: block;
    margin-top: 8px;
    font-size: 0.84rem;
    font-weight: 600;
    color: var(--text-muted);
}

.pricing-rate-plus {
    display: flex;
    align-items: center;
    justify-content: center;
}

.pricing-rate-plus span {
    width: 36px;
    height: 36px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(241, 143, 34, 0.12);
    color: var(--orange-dark);
    font-size: 1.2rem;
    font-weight: 700;
}

.pricing-billing-banner {
    margin-bottom: 8px;
}

.pricing-billing-note {
    margin: 0 0 8px;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--navy);
}

.pricing-annual-example {
    margin: 0 0 10px;
    padding: 12px 14px;
    border-radius: 12px;
    background: rgba(22, 163, 74, 0.08);
    border: 1px solid rgba(22, 163, 74, 0.18);
    color: #166534;
    font-size: 0.9rem;
    line-height: 1.5;
}

.pricing-annual-example i {
    margin-right: 6px;
}

.pricing-platform-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin: 18px 0 28px;
}

.pricing-platform-actions .btn i {
    margin-right: 8px;
}

.pricing-includes-head {
    margin-bottom: 18px;
    padding-top: 8px;
    border-top: 1px solid rgba(11, 37, 58, 0.08);
}

.pricing-includes-head h3 {
    margin: 16px 0 6px;
    font-size: 1.2rem;
    color: var(--navy);
}

.pricing-includes-head p {
    margin: 0;
    color: var(--text-muted);
    font-size: 0.9rem;
}

.pricing-feature-groups {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.pricing-feature-group {
    padding: 16px 16px 8px;
    border-radius: 14px;
    background: #f7f9fc;
    border: 1px solid rgba(11, 37, 58, 0.05);
}

.pricing-feature-group h4 {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 0 0 8px;
    font-size: 0.88rem;
    color: var(--navy);
}

.pricing-feature-group h4 i {
    color: var(--orange);
}

.pricing-features-grid {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0 16px;
}

.pricing-features-grid li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 8px 0;
    border-bottom: 1px solid rgba(11, 37, 58, 0.05);
    font-size: 0.86rem;
    color: var(--navy-muted);
}

.pricing-features-grid li i {
    flex-shrink: 0;
    width: 18px;
    height: 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 1px;
    border-radius: 50%;
    background: rgba(241, 143, 34, 0.12);
    color: var(--orange-dark);
    font-size: 0.62rem;
}

.pricing-discount-note {
    margin: 18px 0 0;
    padding: 12px 14px;
    border-radius: 12px;
    background: rgba(241, 143, 34, 0.08);
    color: var(--orange-dark);
    font-size: 0.88rem;
    font-weight: 600;
    line-height: 1.45;
}

.pricing-discount-note i {
    margin-right: 6px;
}

.pricing-calculator-card {
    padding: 28px 24px 24px;
    position: sticky;
    top: 96px;
    background:
        linear-gradient(180deg, #fff8ef 0%, #fff 28%, #fff 100%);
    border-color: rgba(241, 143, 34, 0.22);
    box-shadow: 0 16px 40px rgba(241, 143, 34, 0.1);
}

.pricing-calculator-ribbon {
    position: absolute;
    top: 14px;
    right: 14px;
    padding: 5px 10px;
    border-radius: 999px;
    background: rgba(11, 37, 58, 0.08);
    color: var(--navy);
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.03em;
    text-transform: uppercase;
}

.pricing-page-main.is-yearly .pricing-calculator-ribbon {
    background: rgba(22, 163, 74, 0.12);
    color: #166534;
}

.pricing-calculator-head {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    margin: 12px 0 20px;
}

.pricing-calculator-head h3 {
    margin: 0 0 4px;
    font-size: 1.15rem;
    color: var(--navy);
}

.pricing-calculator-head p {
    margin: 0;
    font-size: 0.86rem;
    color: var(--text-muted);
    line-height: 1.45;
}

.pricing-calc-label {
    display: block;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--navy-muted);
    margin-bottom: 8px;
}

.pricing-calc-input-row {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 18px;
}

.pricing-calc-input-wrap {
    position: relative;
}

.pricing-calc-input-wrap i {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--orange);
}

.pricing-calc-input-wrap input {
    width: 100%;
    padding: 14px 16px 14px 40px;
    border: 1px solid rgba(11, 37, 58, 0.14);
    border-radius: 12px;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--navy);
    background: #fff;
}

.pricing-calc-input-wrap input:focus {
    outline: none;
    border-color: rgba(241, 143, 34, 0.55);
    box-shadow: 0 0 0 3px rgba(241, 143, 34, 0.15);
}

.pricing-calc-presets {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
}

.pricing-calc-preset {
    border: 1px solid rgba(11, 37, 58, 0.12);
    background: #fff;
    color: var(--navy);
    border-radius: 10px;
    padding: 8px 6px;
    font-weight: 700;
    font-size: 0.85rem;
    cursor: pointer;
    transition: border-color 0.2s, background 0.2s, color 0.2s, transform 0.2s;
}

.pricing-calc-preset:hover,
.pricing-calc-preset.is-active {
    border-color: rgba(241, 143, 34, 0.45);
    background: rgba(241, 143, 34, 0.1);
    color: var(--orange-dark);
}

.pricing-calc-preset.is-active {
    transform: translateY(-1px);
}

.pricing-calc-result {
    padding: 16px;
    border-radius: 14px;
    background: linear-gradient(165deg, #0b253a 0%, #12324c 55%, #1a4060 100%);
    color: #fff;
    margin-bottom: 16px;
}

.pricing-calc-hero-price {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding-bottom: 12px;
    margin-bottom: 4px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.pricing-calc-hero-price span {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.65);
}

.pricing-calc-hero-price strong {
    font-family: var(--font-display);
    font-size: 2.4rem;
    line-height: 1;
    color: #ffb347;
}

.pricing-calc-hero-price strong::after {
    content: "/mo";
    margin-left: 6px;
    font-size: 0.95rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.7);
}

.pricing-calc-row {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 12px;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.88rem;
}

.pricing-calc-row:last-of-type {
    border-bottom: none;
}

.pricing-calc-row span {
    color: rgba(255, 255, 255, 0.72);
}

.pricing-calc-row strong {
    font-size: 1.05rem;
    color: #fff;
}

.pricing-calc-save-row strong {
    color: #4ade80;
}

.pricing-calc-formula {
    margin: 10px 0 0;
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.4;
}

.pricing-calc-footnote {
    margin: 12px 0 0;
    text-align: center;
    font-size: 0.78rem;
    color: var(--text-muted);
}

.pricing-calc-footnote i {
    color: var(--orange);
    margin-right: 4px;
}

.pricing-platform-card .yearly-save-badge {
    top: 18px;
    right: 18px;
}

.pricing-toggle-enhanced .toggle-label {
    cursor: pointer;
}

/* Examples */
.pricing-examples-section {
    padding: 64px 0;
    background: linear-gradient(180deg, #fff 0%, #f4f7fb 100%);
}

.pricing-examples-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
    margin-top: 36px;
}

.pricing-example-card {
    position: relative;
    padding: 24px 20px;
    background: #fff;
    border: 1px solid rgba(11, 37, 58, 0.08);
    border-radius: 18px;
    box-shadow: 0 10px 28px rgba(11, 37, 58, 0.05);
    transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.pricing-example-card:hover {
    transform: translateY(-6px);
    border-color: rgba(241, 143, 34, 0.3);
    box-shadow: 0 18px 40px rgba(11, 37, 58, 0.1);
}

.pricing-example-card.is-featured {
    border-color: rgba(241, 143, 34, 0.45);
    background: linear-gradient(180deg, #fff8ef 0%, #fff 55%);
    box-shadow: 0 16px 36px rgba(241, 143, 34, 0.14);
}

.pricing-example-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    padding: 4px 9px;
    border-radius: 999px;
    background: var(--orange);
    color: #fff;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.pricing-example-rooms {
    display: block;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 10px;
}

.pricing-example-price {
    display: flex;
    align-items: baseline;
    gap: 4px;
    margin-bottom: 14px;
}

.pricing-example-price strong {
    font-family: var(--font-display);
    font-size: 2rem;
    color: var(--navy);
    line-height: 1;
}

.pricing-example-price span {
    color: var(--text-muted);
    font-weight: 600;
}

.pricing-example-card ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.pricing-example-card li {
    padding: 7px 0;
    border-top: 1px solid rgba(11, 37, 58, 0.06);
    font-size: 0.84rem;
    color: var(--navy-muted);
}

.pricing-example-card li.save {
    color: #15803d;
    font-weight: 700;
}

/* Billing how */
.pricing-billing-how {
    padding: 64px 0;
}

.pricing-billing-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    margin-top: 36px;
}

.pricing-billing-step {
    padding: 26px 22px;
    background: #fff;
    border: 1px solid rgba(11, 37, 58, 0.08);
    border-radius: 18px;
    box-shadow: 0 10px 28px rgba(11, 37, 58, 0.04);
}

.pricing-billing-step-num {
    display: inline-block;
    margin-bottom: 12px;
    font-family: var(--font-display);
    font-size: 0.85rem;
    font-weight: 800;
    color: var(--orange);
    letter-spacing: 0.06em;
}

.pricing-billing-step h4 {
    margin: 0 0 8px;
    color: var(--navy);
    font-size: 1.05rem;
}

.pricing-billing-step p {
    margin: 0;
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.55;
}

.pricing-formula-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    margin-top: 28px;
    padding: 28px 30px;
    border-radius: 20px;
    background: linear-gradient(135deg, #0b253a 0%, #1a4060 100%);
    color: #fff;
    box-shadow: 0 18px 44px rgba(11, 37, 58, 0.2);
}

.pricing-formula-card .section-tag {
    color: rgba(255, 255, 255, 0.7);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.12);
}

.pricing-formula-card h3 {
    margin: 10px 0 8px;
    color: #fff;
    font-size: 1.25rem;
}

.pricing-formula-card p {
    margin: 0;
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.92rem;
    max-width: 52ch;
}

.pricing-cta-list {
    list-style: none;
    margin: 16px 0 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 10px 18px;
}

.pricing-cta-list li {
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.85);
}

.pricing-cta-list i {
    color: #4ade80;
    margin-right: 6px;
}

.pricing-faq-help {
    padding: 24px;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
}

.pricing-faq-help h4 {
    margin: 12px 0 8px;
    color: var(--navy);
}

.pricing-faq-help p {
    margin: 0 0 16px;
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.55;
}

.pricing-faq-help .btn+.btn {
    margin-top: 10px;
}

.pricing-faq-trust {
    padding: 18px 20px;
    background: rgba(241, 143, 34, 0.06);
    border: 1px solid rgba(241, 143, 34, 0.16);
    border-radius: 14px;
}

.pricing-faq-trust p {
    margin: 0 0 8px;
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--navy);
}

.pricing-faq-trust p:last-child {
    margin-bottom: 0;
}

.pricing-faq-trust i {
    color: var(--orange);
    margin-right: 8px;
}

@media (max-width: 990px) {
    .pricing-platform-layout {
        grid-template-columns: 1fr;
    }

    .pricing-calculator-card {
        position: static;
    }

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

    .pricing-examples-grid,
    .pricing-billing-steps {
        grid-template-columns: 1fr 1fr;
    }

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

@media (max-width: 640px) {
    .pricing-rate-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .pricing-rate-block .price-row {
        justify-content: center;
    }

    .pricing-platform-actions {
        flex-direction: column;
    }

    .pricing-platform-actions .btn {
        width: 100%;
    }

    .pricing-examples-grid,
    .pricing-billing-steps {
        grid-template-columns: 1fr;
    }

    .pricing-page-hero .pricing-hero-stats {
        gap: 8px;
    }
}

.pricing-card-enhanced {
    display: flex;
    flex-direction: column;
    position: relative;
    padding: 34px 28px 28px;
    background: #fff;
    border: 1px solid rgba(11, 37, 58, 0.08);
    border-radius: 22px;
    box-shadow: 0 10px 30px rgba(11, 37, 58, 0.06);
    overflow: hidden;
    transition:
        transform 0.35s cubic-bezier(0.22, 1, 0.36, 1),
        box-shadow 0.35s ease,
        border-color 0.35s ease;
}

.pricing-card-enhanced::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #d7dee7, #d7dee7);
}

.pricing-card-enhanced:hover {
    transform: translateY(-10px);
    border-color: rgba(241, 143, 34, 0.35);
    box-shadow: 0 22px 48px rgba(11, 37, 58, 0.12);
}

.pricing-card-enhanced .popular-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    top: -1px;
    padding: 8px 18px;
    box-shadow: 0 8px 20px rgba(241, 143, 34, 0.35);
    z-index: 3;
}

.pricing-plan-head {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 18px;
}

.pricing-plan-icon {
    flex-shrink: 0;
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(145deg, rgba(241, 143, 34, 0.14), rgba(241, 143, 34, 0.05));
    color: var(--orange);
    border: 1px solid rgba(241, 143, 34, 0.18);
    border-radius: 14px;
    font-size: 1.2rem;
}

.pricing-card-enhanced.featured .pricing-plan-icon {
    background: linear-gradient(145deg, rgba(241, 143, 34, 0.28), rgba(241, 143, 34, 0.1));
    color: var(--orange-dark);
    box-shadow: 0 8px 18px rgba(241, 143, 34, 0.2);
}

.pricing-plan-head h3 {
    margin-bottom: 4px;
    font-size: 1.35rem;
}

.pricing-plan-tag {
    display: block;
    font-size: 0.72rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-muted);
}

.pricing-card-enhanced .price {
    margin-bottom: 14px;
    padding: 16px 18px;
    border-radius: 16px;
    background: linear-gradient(180deg, #f7f9fc 0%, #fff 100%);
    border: 1px solid rgba(11, 37, 58, 0.06);
}

.pricing-card-enhanced .price-row {
    display: flex;
    align-items: flex-start;
    gap: 2px;
}

.pricing-card-enhanced .price .amount {
    font-size: 3.6rem;
    letter-spacing: -0.03em;
    color: var(--navy);
    transition: color 0.25s ease, transform 0.25s ease;
}

.pricing-page-main.is-yearly .pricing-card-enhanced .price .amount {
    color: #15803d;
}

.pricing-card-enhanced .price .currency {
    margin-top: 10px;
    color: var(--orange);
}

.pricing-card-enhanced .price .period {
    margin-top: 6px;
    font-weight: 500;
}

.pricing-card-enhanced .plan-desc {
    min-height: 44px;
    margin-bottom: 12px;
    line-height: 1.55;
}

.pricing-card-enhanced .base-fee {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 18px;
    padding: 8px 12px;
    border-radius: 10px;
    background: rgba(241, 143, 34, 0.1);
    color: var(--orange-dark);
    font-size: 0.84rem;
    font-weight: 700;
}

.pricing-card-enhanced .base-fee i {
    font-size: 0.78rem;
}

.plan-features-label {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 10px;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--navy-muted);
}

.plan-features-label::after {
    content: "";
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, rgba(11, 37, 58, 0.12), transparent);
}

.pricing-card-enhanced .plan-features {
    flex: 1;
    margin-bottom: 16px;
}

.pricing-card-enhanced .plan-features::-webkit-scrollbar {
    width: 5px;
}

.pricing-card-enhanced .plan-features::-webkit-scrollbar-thumb {
    background: rgba(241, 143, 34, 0.4);
    border-radius: 99px;
}

.pricing-card-enhanced .plan-features li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 9px 0;
    padding-left: 0;
    border-bottom: 1px solid rgba(11, 37, 58, 0.05);
    font-size: 0.88rem;
    color: var(--navy-muted);
}

.pricing-card-enhanced .plan-features li::before {
    content: none;
}

.pricing-card-enhanced .plan-features li i {
    flex-shrink: 0;
    width: 18px;
    height: 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 1px;
    border-radius: 50%;
    background: rgba(241, 143, 34, 0.12);
    color: var(--orange-dark);
    font-size: 0.62rem;
}

.pricing-card-enhanced .plan-features li.excluded {
    opacity: 0.48;
}

.pricing-card-enhanced .plan-features li.excluded i {
    background: rgba(148, 163, 184, 0.18);
    color: #94a3b8;
}

.pricing-card-cta {
    margin-top: auto;
    font-weight: 700;
}

.pricing-card-enhanced.featured .pricing-card-cta {
    box-shadow: 0 10px 24px rgba(241, 143, 34, 0.28);
}

.yearly-save-badge {
    position: absolute;
    top: 18px;
    right: 18px;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: linear-gradient(135deg, #16a34a, #22c55e);
    color: #fff;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    padding: 6px 11px;
    border-radius: 999px;
    z-index: 2;
    box-shadow: 0 8px 18px rgba(22, 163, 74, 0.28);
    animation: pricingBadgePop 0.35s ease;
}

.pricing-card-enhanced.featured .yearly-save-badge {
    top: 48px;
}

@keyframes pricingBadgePop {
    from {
        transform: scale(0.85);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}

.pricing-card-enhanced.featured {
    border-color: rgba(241, 143, 34, 0.45);
    background:
        linear-gradient(180deg, #fff8ef 0%, #fff 42%, #fff 100%);
    box-shadow:
        0 18px 44px rgba(241, 143, 34, 0.16),
        0 0 0 1px rgba(241, 143, 34, 0.12);
    transform: translateY(-8px) scale(1.02);
    z-index: 1;
}

.pricing-card-enhanced.featured::before {
    height: 5px;
    background: linear-gradient(90deg, var(--orange-dark), var(--orange), #ffb347);
}

.pricing-card-enhanced.featured:hover {
    transform: translateY(-14px) scale(1.02);
    box-shadow:
        0 28px 56px rgba(241, 143, 34, 0.22),
        0 0 0 1px rgba(241, 143, 34, 0.18);
}

.pricing-assurance {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-top: 36px;
}

.pricing-assurance-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 18px 20px;
    background: #fff;
    border: 1px solid rgba(11, 37, 58, 0.08);
    border-radius: 16px;
    box-shadow: 0 8px 22px rgba(11, 37, 58, 0.04);
    transition: transform 0.25s ease, border-color 0.25s ease;
}

.pricing-assurance-item:hover {
    transform: translateY(-3px);
    border-color: rgba(241, 143, 34, 0.28);
}

.pricing-assurance-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    background: rgba(241, 143, 34, 0.12);
    color: var(--orange);
    font-size: 1.15rem;
    line-height: 1;
}

.pricing-assurance-icon i {
    display: block;
    font-style: normal;
    font-size: 1.15rem;
    line-height: 1;
    color: var(--orange);
    -webkit-font-smoothing: antialiased;
}

.pricing-assurance-copy {
    min-width: 0;
}

.pricing-assurance-item strong {
    display: block;
    color: var(--navy);
    font-size: 0.95rem;
    margin-bottom: 4px;
}

.pricing-assurance-copy p {
    margin: 0;
    color: var(--text-muted);
    font-size: 0.84rem;
    line-height: 1.45;
}

@media (max-width: 990px) {
    .pricing-assurance {
        grid-template-columns: 1fr;
    }

    .pricing-card-enhanced.featured {
        transform: none;
    }

    .pricing-card-enhanced.featured:hover {
        transform: translateY(-8px);
    }
}

@media (max-width: 640px) {
    .pricing-billing-pill {
        border-radius: 16px;
        gap: 8px 10px;
    }

    .pricing-billing-dot {
        display: none;
    }

    .pricing-page-hero {
        padding: 44px 0 40px;
    }

    .pricing-page-main {
        margin-top: -20px;
        padding-top: 20px;
    }
}

.pricing-page-compare {
    padding: 56px 0;
}

.pricing-compare-wrap {
    overflow-x: auto;
    margin-top: 40px;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    background: #fff;
    box-shadow: var(--shadow-sm);
}

.pricing-compare-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 640px;
}

.pricing-compare-table th,
.pricing-compare-table td {
    padding: 16px 20px;
    text-align: center;
    border-bottom: 1px solid var(--border);
    font-size: 0.88rem;
}

.pricing-compare-table th:first-child,
.pricing-compare-table td:first-child {
    text-align: left;
    font-weight: 600;
    color: var(--navy);
}

.pricing-compare-table thead th {
    font-family: var(--font-display);
    font-size: 0.95rem;
    color: var(--navy);
    background: var(--gray-100);
    padding: 18px 20px;
}

.pricing-compare-table thead th.col-featured {
    background: rgba(241, 143, 34, 0.12);
    color: var(--orange);
}

.pricing-compare-table tbody tr:last-child td {
    border-bottom: none;
}

.pricing-compare-table tbody tr:hover td {
    background: rgba(241, 143, 34, 0.03);
}

.pricing-compare-table td.col-featured {
    background: rgba(241, 143, 34, 0.04);
}

.pricing-compare-table .fa-check {
    color: var(--orange);
}

.pricing-compare-table .fa-minus {
    color: var(--gray-300, #d1d5db);
    font-size: 0.75rem;
}

.pricing-page-includes {
    padding: 56px 0;
}

.pricing-includes-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 40px;
}

.pricing-include-card {
    text-align: center;
    padding: 28px 20px;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    transition: transform 0.25s, box-shadow 0.25s;
}

.pricing-include-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-3d);
}

.pricing-include-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    margin-bottom: 14px;
    background: rgba(241, 143, 34, 0.1);
    color: var(--orange);
    border-radius: 14px;
    font-size: 1.2rem;
}

.pricing-include-card h4 {
    font-family: var(--font-display);
    font-size: 1rem;
    color: var(--navy);
    margin-bottom: 8px;
}

.pricing-include-card p {
    font-size: 0.82rem;
    color: var(--text-muted);
    line-height: 1.55;
    margin: 0;
}

.pricing-page-faq {
    padding: 56px 0;
    background: linear-gradient(180deg, #f4f7fb 0%, #fff 100%);
}

.pricing-faq-shell {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 28px;
    align-items: start;
    margin-top: 40px;
}

.pricing-faq-main {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.pricing-faq-item {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: border-color 0.25s, box-shadow 0.25s;
}

.pricing-faq-item:hover {
    border-color: rgba(241, 143, 34, 0.25);
}

.pricing-faq-item[open] {
    border-color: rgba(241, 143, 34, 0.35);
    box-shadow: 0 8px 28px rgba(11, 37, 58, 0.08);
}

.pricing-faq-item summary {
    padding: 20px 22px;
    cursor: pointer;
    font-weight: 600;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    color: var(--navy);
    transition: background 0.2s;
}

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

.pricing-faq-item summary::after {
    content: "+";
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    font-weight: 400;
    color: var(--orange);
    background: rgba(241, 143, 34, 0.1);
    border-radius: 50%;
    transition: transform 0.25s, background 0.25s;
}

.pricing-faq-item[open] summary::after {
    transform: rotate(45deg);
    background: rgba(241, 143, 34, 0.18);
}

.pricing-faq-item[open] summary {
    background: rgba(241, 143, 34, 0.04);
    border-bottom: 1px solid var(--border);
}

.pricing-faq-q {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.95rem;
    line-height: 1.4;
}

.pricing-faq-q i {
    flex-shrink: 0;
    width: 34px;
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(241, 143, 34, 0.1);
    color: var(--orange);
    border-radius: 10px;
    font-size: 0.82rem;
}

.pricing-faq-a {
    padding: 0 22px 20px 68px;
}

.pricing-faq-a p {
    margin: 16px 0 0;
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.65;
}

.pricing-faq-aside {
    display: flex;
    flex-direction: column;
    gap: 16px;
    position: sticky;
    top: calc(var(--header-h, 72px) + 24px);
}

.pricing-faq-glance {
    padding: 28px 24px;
    background: linear-gradient(135deg, var(--navy) 0%, #0d3048 60%, #0a2235 100%);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-3d);
    position: relative;
    overflow: hidden;
}

.pricing-faq-glance::before {
    content: "";
    position: absolute;
    top: -60px;
    right: -60px;
    width: 180px;
    height: 180px;
    background: radial-gradient(circle,
            rgba(241, 143, 34, 0.15) 0%,
            transparent 70%);
    pointer-events: none;
}

.pricing-faq-glance-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.68rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--orange);
    background: rgba(241, 143, 34, 0.15);
    border: 1px solid rgba(241, 143, 34, 0.25);
    padding: 5px 12px;
    border-radius: 999px;
    margin-bottom: 14px;
}

.pricing-faq-glance h3 {
    font-family: var(--font-display);
    font-size: 1.25rem;
    color: #fff;
    margin-bottom: 18px;
    line-height: 1.25;
    position: relative;
    z-index: 1;
}

.pricing-faq-glance-list {
    list-style: none;
    padding: 0;
    margin: 0;
    position: relative;
    z-index: 1;
}

.pricing-faq-glance-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 9px 0;
    font-size: 0.86rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.88);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.pricing-faq-glance-list li:last-child {
    border-bottom: none;
}

.pricing-faq-glance-list i {
    color: var(--orange);
    font-size: 0.72rem;
}

.pricing-faq-support {
    padding: 24px;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow-sm);
}

.pricing-faq-support-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    margin-bottom: 12px;
    background: rgba(241, 143, 34, 0.1);
    color: var(--orange);
    border-radius: 14px;
    font-size: 1.2rem;
}

.pricing-faq-support h4 {
    font-family: var(--font-display);
    font-size: 1.05rem;
    color: var(--navy);
    margin-bottom: 8px;
}

.pricing-faq-support p {
    font-size: 0.84rem;
    color: var(--text-muted);
    line-height: 1.55;
    margin-bottom: 16px;
}

.pricing-faq-foot {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 32px;
}

.pricing-faq-foot-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 22px;
    font-weight: 600;
    font-size: 0.88rem;
    color: var(--navy);
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 999px;
    transition: border-color 0.2s, color 0.2s, transform 0.2s, box-shadow 0.2s;
}

.pricing-faq-foot-link:hover {
    border-color: rgba(241, 143, 34, 0.4);
    color: var(--orange);
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
}

.pricing-faq-foot-link i {
    font-size: 0.82rem;
    color: var(--orange);
}

.pricing-faq-foot-link-alt {
    background: rgba(241, 143, 34, 0.08);
    border-color: rgba(241, 143, 34, 0.25);
}

.pricing-page-cta {
    padding-bottom: 56px;
}

/* Pricing modal */
body.modal-open {
    overflow: hidden;
}

.pricing-modal {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.25s, visibility 0.25s;
}

.pricing-modal.is-open {
    opacity: 1;
    visibility: visible;
}

.pricing-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(11, 37, 58, 0.65);
    backdrop-filter: blur(4px);
}

.pricing-modal-dialog {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 520px;
    max-height: calc(100vh - 48px);
    overflow-y: auto;
    background: #fff;
    border-radius: var(--radius-lg);
    box-shadow: 0 32px 80px rgba(11, 37, 58, 0.25);
    transform: translateY(16px) scale(0.98);
    transition: transform 0.25s;
}

.pricing-modal.is-open .pricing-modal-dialog {
    transform: translateY(0) scale(1);
}

.pricing-modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    z-index: 2;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--border);
    border-radius: 50%;
    background: #fff;
    color: var(--text-muted);
    cursor: pointer;
    transition: color 0.2s, border-color 0.2s, background 0.2s;
}

.pricing-modal-close:hover {
    color: var(--navy);
    border-color: rgba(241, 143, 34, 0.4);
    background: rgba(241, 143, 34, 0.06);
}

.pricing-modal-form {
    padding: 36px 32px 32px;
    border: none;
    box-shadow: none;
    background: transparent;
}

.pricing-card-enhanced .btn[type="button"] {
    margin-top: auto;
    cursor: pointer;
    font-family: inherit;
}

@media (max-width: 768px) {
    .pricing-modal {
        padding: 16px;
        align-items: flex-end;
    }

    .pricing-modal-dialog {
        max-height: calc(100vh - 32px);
        border-radius: var(--radius-lg) var(--radius-lg) 0 0;
    }

    .pricing-modal-form {
        padding: 28px 20px 24px;
    }
}

@media (max-width: 992px) {
    .pricing-includes-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

    .pricing-faq-aside {
        position: static;
        display: grid;
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .pricing-page-hero {
        padding: 36px 0 32px;
    }

    .pricing-hero-stats {
        gap: 8px;
    }

    .pricing-hero-stat {
        min-width: calc(50% - 8px);
        flex: 1 1 calc(50% - 8px);
    }

    .pricing-toggle-enhanced {
        flex-wrap: wrap;
        justify-content: center;
        border-radius: var(--radius-lg);
    }

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

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

    .pricing-faq-a {
        padding-left: 22px;
    }

    .pricing-faq-foot {
        flex-direction: column;
        align-items: stretch;
    }

    .pricing-faq-foot-link {
        justify-content: center;
    }
}

/* Footer */
.footer {
    position: relative;
    z-index: 1;
    margin-top: 0;
    padding: 0;
    background: none;
    border: none;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr repeat(4, 1fr);
    gap: 40px;
    padding-bottom: 48px;
}

.footer-logo {
    height: 32px;
    width: auto;
    max-width: 180px;
    object-fit: contain;
}

.footer-brand p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 20px;
    max-width: 280px;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 10px;
    color: var(--text-muted);
    text-decoration: none;
    transition:
        background var(--transition),
        color var(--transition),
        transform var(--transition),
        border-color var(--transition);
}

.footer-social a:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: #fff;
    transform: translateY(-2px);
}

.footer-col h4 {
    font-family: var(--font-display);
    margin-bottom: 16px;
    font-size: 0.95rem;
}

.footer-col a {
    display: block;
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.9rem;
    padding: 6px 0;
    transition: color var(--transition);
}

.footer-col a:hover {
    color: var(--primary);
}

.footer-contact p {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-muted);
    font-size: 0.9rem;
    padding: 6px 0;
}

.footer-contact i {
    color: var(--primary);
    width: 16px;
}

.footer-bottom {
    padding: 24px 0;
    border-top: 1px solid var(--border);
    text-align: center;
}

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

/* Cookie banner */
.cookie-banner {
    position: fixed;
    bottom: -120px;
    left: 0;
    right: 0;
    z-index: 9999;
    padding: 20px 32px;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(16px);
    border-top: 1px solid var(--border);
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
    transition: bottom 0.6s ease;
}

.cookie-banner.show {
    bottom: 0;
}

.cookie-banner p {
    color: var(--text-muted);
    font-size: 0.9rem;
    max-width: 600px;
}

.cookie-banner a {
    color: var(--primary);
}

.cookie-actions {
    display: flex;
    gap: 12px;
}

#declineCookies {
    background: #fff !important;
    color: var(--primary) !important;
    border: 1px solid var(--border);
}

/* Reveal animations */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition:
        opacity 0.7s ease,
        transform 0.7s ease;
}

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

.delay-1 {
    transition-delay: 0.1s;
}

.delay-2 {
    transition-delay: 0.2s;
}

/* Toast */
.toast {
    position: fixed;
    bottom: 100px;
    left: 50%;
    transform: translateX(-50%) translateY(20px);
    padding: 16px 28px;
    background: #fff;
    border: 1px solid var(--primary);
    border-radius: 12px;
    color: var(--text);
    font-weight: 500;
    z-index: 10001;
    opacity: 0;
    transition:
        opacity 0.3s,
        transform 0.3s;
    box-shadow: var(--shadow-3d);
}

.toast.show {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

/* Responsive */
@media (max-width: 1024px) {

    .hero-grid,
    .feature-showcase,
    .trial-card,
    .cta-box,
    .contact-grid,
    .demo-grid {
        grid-template-columns: 1fr;
    }

    .feature-showcase.reverse {
        direction: ltr;
    }

    .pricing-grid,
    .value-grid,
    .stats-row,
    .blog-grid {
        grid-template-columns: 1fr;
    }

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

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

    .cta-globe {
        display: none;
    }

    .floating-stat {
        display: none;
    }
}

@media (max-width: 768px) {
    .site-header {
        backdrop-filter: none !important;
        -webkit-backdrop-filter: none !important;
        background: #ffffff !important;
        overflow: visible;
    }

    .site-header .header {
        backdrop-filter: none !important;
        -webkit-backdrop-filter: none !important;
        overflow: visible;
    }

    .header {
        overflow: visible;
    }

    .header-inner {
        overflow: visible;
    }

    .nav {
        position: fixed;
        top: calc(var(--top-bar-h) + var(--header-h));
        left: 0;
        right: 0;
        bottom: 0;
        flex: none;
        min-width: 0;
        width: auto;
        height: auto;
        max-width: none;
        padding-left: 0;
        z-index: 1002;
        flex-direction: column;
        align-items: stretch;
        justify-content: flex-start;
        padding: 12px 16px 32px;
        background: #ffffff;
        background-color: #ffffff;
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
        overflow-x: hidden;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
        overscroll-behavior: contain;
        transform: translateX(100%);
        transition: transform 0.32s cubic-bezier(0.22, 1, 0.36, 1), visibility 0.32s;
        gap: 4px;
        border-left: 1px solid var(--border);
        box-shadow: -12px 0 40px rgba(11, 37, 58, 0.18);
        isolation: isolate;
        visibility: hidden;
        pointer-events: none;
    }

    .nav.open {
        transform: translateX(0);
        background: #ffffff;
        background-color: #ffffff;
        visibility: visible;
        pointer-events: auto;
    }

    body.nav-open {
        overflow: hidden;
    }

    .nav-mobile-backdrop {
        position: fixed;
        inset: 0;
        top: calc(var(--top-bar-h) + var(--header-h));
        z-index: 1001;
        background: rgba(11, 37, 58, 0.55);
        backdrop-filter: blur(3px);
        -webkit-backdrop-filter: blur(3px);
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transition: opacity 0.3s ease, visibility 0.3s;
    }

    body.nav-open .nav-mobile-backdrop {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
    }

    .nav .nav-link,
    .nav .nav-dropdown-toggle {
        color: var(--navy);
        background-color: #ffffff;
    }

    .nav .nav-link:hover,
    .nav .nav-link.active,
    .nav .nav-dropdown-toggle:hover,
    .nav .nav-dropdown.open .nav-dropdown-toggle {
        color: var(--orange-dark);
        background-color: var(--orange-soft);
    }

    .nav-link {
        width: 100%;
        padding: 14px 16px;
        font-size: 1rem;
        white-space: normal;
        color: var(--navy);
        background-color: #ffffff;
    }

    .nav-cta {
        margin: 12px 0 0;
        width: 100%;
        text-align: center;
    }

    .menu-toggle {
        display: flex;
        position: relative;
        z-index: 1003;
    }

    .header-inner {
        position: relative;
        z-index: 1003;
        background: #ffffff;
    }

    .header-light .header-inner {
        background: #ffffff;
    }

    .nav-dropdown {
        width: 100%;
    }

    .nav-dropdown-toggle {
        width: 100%;
        justify-content: space-between;
        padding: 14px 16px;
        font-size: 1rem;
        border-radius: 8px;
        color: var(--navy);
        background-color: #ffffff;
    }

    .nav .features-jumbo-foot-link {
        color: var(--navy);
        background: #ffffff;
        border: 1px solid var(--border);
    }

    .nav .features-jumbo-card {
        background: #ffffff;
    }

    .nav .features-jumbo-text strong {
        color: var(--navy);
    }

    .nav .features-jumbo-text small {
        color: var(--text-muted);
    }

    .hero {
        padding: 48px 0 64px;
    }

    .trial-card {
        padding: 32px 24px;
    }

    .cta-box {
        padding: 40px 24px;
    }

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

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

/* ── Enhanced UI Components ── */

.trust-strip {
    padding: 28px 0;
    background: #fff;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    position: relative;
    z-index: 1;
}

.trust-strip-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 12px 16px;
}

.trust-item i {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--orange-soft);
    color: var(--orange);
    border-radius: 12px;
    font-size: 1.1rem;
}

.trust-item strong {
    display: block;
    font-family: var(--font-display);
    font-size: 1.2rem;
    color: var(--navy);
}

.trust-item span {
    font-size: 0.8rem;
    color: var(--text-muted);
}

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

.step-card {
    position: relative;
    padding: 36px 28px;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition:
        transform var(--transition),
        box-shadow var(--transition);
}

.step-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-3d);
}

.step-num {
    position: absolute;
    top: 20px;
    right: 24px;
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--gray-100);
    line-height: 1;
}

.step-icon {
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--orange-soft);
    color: var(--orange);
    border-radius: 14px;
    font-size: 1.25rem;
    margin-bottom: 20px;
}

.step-card h3 {
    font-family: var(--font-display);
    margin-bottom: 10px;
    color: var(--navy);
}

.step-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.section-navy {
    background: var(--gradient-navy);
    color: #fff;
}

.section-navy h2,
.section-navy .section-header h2 {
    color: #fff;
}

.section-navy .section-tag {
    color: var(--orange);
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.why-card {
    padding: 28px 24px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius);
    transition:
        background var(--transition),
        transform var(--transition);
}

.section-navy .why-card {
    background: rgba(255, 255, 255, 0.06);
}

.why-section .why-card,
.compare-section+.why-section .why-card {
    background: rgba(255, 255, 255, 0.06);
}

.why-card:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-4px);
}

.why-card i {
    font-size: 1.5rem;
    color: var(--orange);
    margin-bottom: 16px;
}

.why-card h4 {
    font-family: var(--font-display);
    margin-bottom: 8px;
    color: #fff;
}

.why-card p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.55;
}

.compare-table {
    max-width: 800px;
    margin: 0 auto;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.compare-row {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr;
    align-items: center;
    padding: 16px 24px;
    border-bottom: 1px solid var(--gray-100);
    font-size: 0.95rem;
}

.compare-row:last-child {
    border-bottom: none;
}

.compare-head {
    background: var(--navy);
    color: #fff;
    font-weight: 600;
    font-family: var(--font-display);
}

.compare-head span:nth-child(3) {
    color: var(--orange);
}

.compare-row .yes {
    color: var(--orange);
    font-weight: 600;
    text-align: center;
}

.compare-row .no {
    color: var(--text-muted);
    text-align: center;
}

.compare-row .partial {
    color: var(--text-muted);
    text-align: center;
    font-size: 0.85rem;
}

.testimonials-preview {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
}

.section-cta {
    margin-top: 40px;
}

.section-cta.center {
    text-align: center;
}

.newsletter-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    padding: 48px 56px;
    background: var(--gradient-navy);
    border-radius: var(--radius-lg);
    color: #fff;
}

.newsletter-box h2 {
    color: #fff;
    font-family: var(--font-display);
    font-size: 1.75rem;
    margin: 8px 0 12px;
}

.newsletter-box p {
    color: rgba(255, 255, 255, 0.75);
    max-width: 420px;
}

.newsletter-form {
    display: flex;
    gap: 12px;
    flex-shrink: 0;
}

.newsletter-form input {
    padding: 14px 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    font-family: inherit;
    min-width: 260px;
}

.newsletter-form input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.newsletter-form input:focus {
    outline: none;
    border-color: var(--orange);
}

.footer-cta {
    background: var(--orange-soft);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 40px 0;
    position: relative;
    z-index: 1;
}

.footer-cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.footer-cta h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--navy);
    margin-bottom: 6px;
}

.footer-cta p {
    color: var(--text-muted);
}

.footer-bottom {
    padding: 24px 0;
    border-top: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
}

.footer-bottom-links {
    display: flex;
    gap: 20px;
}

.footer-bottom-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.85rem;
}

.footer-bottom-links a:hover {
    color: var(--orange);
}

.scroll-top {
    position: fixed;
    bottom: 28px;
    right: 28px;
    z-index: 999;
    width: 48px;
    height: 48px;
    border: none;
    border-radius: 12px;
    background: var(--gradient);
    color: #fff;
    cursor: pointer;
    box-shadow: var(--shadow-orange);
    opacity: 0;
    visibility: hidden;
    transform: translateY(12px);
    transition:
        opacity 0.3s,
        visibility 0.3s,
        transform 0.3s;
}

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

.scroll-top:hover {
    filter: brightness(1.08);
}

.integration-categories {
    display: flex;
    flex-direction: column;
    gap: 48px;
}

.integration-block h3 {
    font-family: var(--font-display);
    font-size: 1.3rem;
    margin-bottom: 24px;
    color: var(--navy);
    display: flex;
    align-items: center;
    gap: 12px;
}

.integration-block h3 i {
    color: var(--orange);
}

.integration-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 16px;
}

.integration-card {
    padding: 20px;
    text-align: center;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    font-weight: 600;
    color: var(--navy);
    transition:
        border-color var(--transition),
        box-shadow var(--transition),
        transform var(--transition);
}

.integration-card:hover {
    border-color: var(--orange);
    box-shadow: var(--shadow-3d);
    transform: translateY(-3px);
}

.integration-desc {
    color: var(--text-muted);
    margin-bottom: 20px;
    max-width: 560px;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-content h2 {
    font-family: var(--font-display);
    font-size: 2rem;
    margin-bottom: 20px;
    color: var(--navy);
}

.about-content p {
    color: var(--text-muted);
    margin-bottom: 16px;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-top: 32px;
    padding-top: 32px;
    border-top: 1px solid var(--border);
}

.about-stats strong {
    display: block;
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--orange);
}

.about-stats span {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-top: 40px;
}

.team-card {
    padding: 36px 28px;
    text-align: center;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
}

.team-avatar {
    width: 72px;
    height: 72px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--orange-soft);
    color: var(--orange);
    border-radius: 50%;
    font-size: 1.5rem;
}

.team-card h4 {
    font-family: var(--font-display);
    margin-bottom: 10px;
    color: var(--navy);
}

.team-card p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.faq-categories {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    max-width: 820px;
    margin: 0 auto;
}

.faq-group h3 {
    font-family: var(--font-display);
    color: var(--navy);
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--orange);
    display: inline-block;
}

.faq-cta {
    text-align: center;
    margin-top: 48px;
    padding: 32px;
    background: var(--bg-dark);
    border-radius: var(--radius-lg);
}

.faq-cta p {
    color: var(--text-muted);
    margin-bottom: 16px;
}

.legal-content {
    max-width: 780px;
    margin: 0 auto;
}

.legal-block {
    margin-bottom: 48px;
    padding: 36px;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
}

.legal-block h2 {
    font-family: var(--font-display);
    color: var(--navy);
    margin-bottom: 16px;
}

.legal-block h3 {
    font-family: var(--font-display);
    color: var(--navy);
    margin: 24px 0 10px;
    font-size: 1.05rem;
}

.legal-block p,
.legal-block li {
    color: var(--text-muted);
    line-height: 1.7;
}

.legal-block ul {
    padding-left: 20px;
    margin-top: 8px;
}

.legal-block a {
    color: var(--orange);
}

.trial-card {
    background: linear-gradient(135deg, var(--orange-soft) 0%, #fff 100%);
}

.value-icon {
    background: var(--orange-soft);
    color: var(--orange);
}

.hero-card-glow {
    background: radial-gradient(circle, var(--orange-glow) 0%, transparent 70%);
}

.price .currency {
    color: var(--orange);
}

.pricing-card.featured {
    border-color: var(--orange);
}

.popular-badge {
    background: var(--gradient);
}

.toggle-knob {
    background: var(--gradient);
}

.loader-bar {
    background: var(--gray-200);
}

.platform-metrics {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.metric-card {
    padding: 28px 20px;
    text-align: center;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
}

.metric-val {
    display: block;
    font-family: var(--font-display);
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--orange);
    margin-bottom: 6px;
}

.metric-label {
    font-size: 0.85rem;
    color: var(--text-muted);
}

@media (max-width: 1024px) {
    .platform-metrics {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 1100px) {
    .nav-link {
        font-size: 0.78rem;
        padding: 8px 8px;
    }

    .nav-cta {
        padding: 10px 16px !important;
        font-size: 0.82rem !important;
    }
}

@media (max-width: 1024px) {

    .trust-strip-grid,
    .steps-grid,
    .why-grid,
    .about-stats,
    .team-grid,
    .testimonials-preview {
        grid-template-columns: 1fr 1fr;
    }

    .newsletter-box {
        flex-direction: column;
        text-align: center;
        padding: 40px 32px;
    }

    .newsletter-form {
        width: 100%;
        flex-direction: column;
    }

    .newsletter-form input {
        min-width: 0;
        width: 100%;
    }

    .footer-cta-inner {
        flex-direction: column;
        text-align: center;
    }

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

    .feature-link-grid {
        grid-template-columns: 1fr 1fr;
    }

    .feature-hero-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .feature-hero-visual {
        max-width: 100%;
        margin-left: 0;
        padding: 4px 0 0;
    }

    .feature-device-base {
        width: 100%;
        height: 10px;
    }

    .feature-detail-grid {
        grid-template-columns: 1fr;
    }

    .stats-band .stats-row {
        grid-template-columns: 1fr 1fr;
    }
}

/* ── Top bar & Header v2 ── */
.top-bar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1001;
    height: var(--top-bar-h);
    background: linear-gradient(90deg, #071420 0%, #0b253a 45%, #0a2236 100%);
    color: rgba(255, 255, 255, 0.88);
    font-size: 0.76rem;
    border-bottom: 1px solid rgba(241, 143, 34, 0.22);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.12);
}

.top-bar::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg,
            transparent 0%,
            var(--orange) 35%,
            rgba(241, 143, 34, 0.5) 65%,
            transparent 100%);
    opacity: 0.85;
}

.top-bar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
    gap: 16px;
}

.top-bar-left,
.top-bar-right {
    display: flex;
    align-items: center;
    gap: 10px;
    min-width: 0;
}

.top-bar-left {
    flex: 1;
    flex-wrap: nowrap;
    overflow: hidden;
}

.top-bar-right {
    flex-shrink: 0;
}

.top-bar-chip {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: rgba(255, 255, 255, 0.82);
    text-decoration: none;
    white-space: nowrap;
    padding: 4px 0;
    transition: color 0.2s;
}

.top-bar-chip:hover {
    color: #fff;
}

.top-bar-chip:hover .top-bar-chip-icon {
    background: rgba(241, 143, 34, 0.22);
    color: var(--orange);
}

.top-bar-chip-static {
    cursor: default;
}

.top-bar-chip-icon {
    width: 22px;
    height: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 6px;
    font-size: 0.65rem;
    color: var(--orange);
    flex-shrink: 0;
    transition: background 0.2s, color 0.2s;
}

.top-bar-trust {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 5px 10px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.72rem;
    font-weight: 500;
    white-space: nowrap;
}

.top-bar-trust i {
    color: var(--orange);
    font-size: 0.65rem;
}

.top-bar-promo {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 5px 12px 5px 6px;
    background: linear-gradient(135deg, rgba(241, 143, 34, 0.18) 0%, rgba(241, 143, 34, 0.08) 100%);
    border: 1px solid rgba(241, 143, 34, 0.45);
    border-radius: 999px;
    text-decoration: none;
    overflow: hidden;
    transition: transform 0.25s, border-color 0.25s, box-shadow 0.25s;
}

.top-bar-promo:hover {
    transform: translateY(-1px);
    border-color: var(--orange);
    box-shadow: 0 4px 16px rgba(241, 143, 34, 0.25);
}

.top-bar-promo-glow {
    position: absolute;
    inset: 0;
    background: linear-gradient(105deg,
            transparent 30%,
            rgba(255, 255, 255, 0.12) 50%,
            transparent 70%);
    transform: translateX(-100%);
    animation: topBarShimmer 4s ease-in-out infinite;
}

@keyframes topBarShimmer {

    0%,
    100% {
        transform: translateX(-100%);
    }

    50% {
        transform: translateX(100%);
    }
}

.top-bar-promo-icon {
    width: 26px;
    height: 26px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--orange);
    color: #fff;
    border-radius: 50%;
    font-size: 0.68rem;
    flex-shrink: 0;
    position: relative;
    z-index: 1;
}

.top-bar-promo-text {
    display: flex;
    flex-direction: column;
    gap: 0;
    line-height: 1.2;
    position: relative;
    z-index: 1;
}

.top-bar-promo-text strong {
    font-size: 0.74rem;
    font-weight: 700;
    color: #fff;
}

.top-bar-promo-text small {
    font-size: 0.62rem;
    color: rgba(255, 255, 255, 0.65);
    font-weight: 500;
}

.top-bar-promo-arrow {
    font-size: 0.62rem;
    color: var(--orange);
    position: relative;
    z-index: 1;
    transition: transform 0.25s;
}

.top-bar-promo:hover .top-bar-promo-arrow {
    transform: translateX(3px);
}

.header {
    top: var(--top-bar-h);
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border);
    box-shadow: 0 2px 12px rgba(11, 37, 58, 0.04);
}

.site-header .header {
    top: auto;
    background: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    border-bottom: none;
    box-shadow: none;
}

.header.scrolled {
    box-shadow: 0 4px 20px rgba(11, 37, 58, 0.08);
}

.nav-dropdown {
    position: relative;
}

.nav-dropdown-toggle {
    background: none;
    border: none;
    cursor: pointer;
    font-family: inherit;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.nav-dropdown-toggle i {
    font-size: 0.65rem;
    transition: transform 0.25s;
}

.nav-dropdown.open .nav-dropdown-toggle i {
    transform: rotate(180deg);
}

.nav-dropdown-menu {
    position: absolute;
    top: calc(100% + 8px);
    left: 50%;
    transform: translateX(-50%) translateY(8px);
    min-width: 320px;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: var(--shadow-3d);
    padding: 12px;
    opacity: 0;
    visibility: hidden;
    transition:
        opacity 0.25s,
        transform 0.25s,
        visibility 0.25s;
    z-index: 100;
}

.nav-dropdown.open .nav-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

/* Simple Features submenu */
.nav-dropdown-menu.features-simple-menu {
    min-width: 320px;
    max-width: 380px;
    padding: 10px;
    left: 0;
    transform: translateX(0) translateY(8px);
}

.nav-dropdown.open .nav-dropdown-menu.features-simple-menu {
    transform: translateX(0) translateY(0);
}

.features-simple-list {
    display: flex;
    flex-direction: column;
    gap: 2px;
    max-height: min(70vh, 480px);
    overflow-y: auto;
}

.features-simple-link {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 10px 12px;
    border-radius: 10px;
    text-decoration: none;
    color: var(--navy) !important;
    transition: background 0.2s;
}

.features-simple-link:hover,
.features-simple-link:focus-visible {
    background: var(--orange-soft);
}

.features-simple-icon {
    width: 36px;
    height: 36px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 9px;
    background: var(--orange-soft);
    color: var(--orange);
    font-size: 0.9rem;
}

.features-simple-copy {
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 0;
}

.features-simple-copy strong {
    font-size: 0.88rem;
    font-weight: 650;
    line-height: 1.3;
}

.features-simple-copy small {
    font-size: 0.75rem;
    color: var(--text-muted);
    line-height: 1.35;
}

.features-simple-all {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    margin-top: 8px;
    padding: 11px 12px;
    border-top: 1px solid var(--border);
    font-size: 0.85rem;
    font-weight: 650;
    color: var(--orange) !important;
    text-decoration: none;
}

.features-simple-all:hover {
    color: var(--orange-dark) !important;
}

.int-logo.int-logo-fallback {
    border: none;
    padding: 0;
    font-family: var(--font-display);
    font-size: 1.05rem;
    font-weight: 800;
    color: #fff;
    letter-spacing: 0.02em;
    background: linear-gradient(135deg, #1e3a5f, #0f2744);
}

.int-logo.int-logo-icon {
    font-size: 1.15rem;
    color: var(--orange);
    background: var(--orange-soft);
}

@media (max-width: 768px) {
    .nav-dropdown-menu.features-simple-menu {
        position: static;
        left: auto;
        transform: none;
        min-width: 0;
        max-width: none;
        width: 100%;
        max-height: 0;
        overflow: hidden;
        opacity: 0;
        visibility: hidden;
        box-shadow: none;
        border: none;
        padding: 0;
        background: transparent;
    }

    .nav-dropdown.open .nav-dropdown-menu.features-simple-menu {
        max-height: 55vh;
        overflow: auto;
        opacity: 1;
        visibility: visible;
        transform: none;
        padding: 4px 0 8px;
        margin-top: 4px;
    }

    .features-simple-list {
        max-height: none;
    }

    .features-simple-link {
        background: #fff;
    }

    .features-simple-all {
        background: #fff;
        border: 1px solid var(--border);
        border-radius: 8px;
        margin-top: 6px;
    }
}

.dropdown-all {
    display: block;
    padding: 10px 12px;
    font-weight: 600;
    color: var(--orange) !important;
    text-decoration: none;
    border-bottom: 1px solid var(--border);
    margin-bottom: 8px;
    font-size: 0.85rem;
}

.dropdown-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2px;
}

.dropdown-grid a {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 9px 12px;
    font-size: 0.82rem;
    color: var(--navy) !important;
    text-decoration: none;
    border-radius: 8px;
    transition: background 0.2s;
}

.dropdown-grid a i {
    color: var(--orange);
    width: 16px;
    font-size: 0.8rem;
}

.dropdown-grid a:hover {
    background: var(--orange-soft);
}

.nav-dropdown.active>.nav-dropdown-toggle {
    color: var(--orange-dark);
    background: var(--orange-soft);
}

/* Features jumbo menu */
.features-jumbo-backdrop {
    position: fixed;
    inset: 0;
    top: calc(var(--top-bar-h) + var(--header-h));
    background: rgba(11, 37, 58, 0.5);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.32s ease, visibility 0.32s;
    z-index: 98;
    pointer-events: none;
}

.nav-dropdown.open .features-jumbo-backdrop {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

body.features-jumbo-open {
    overflow: hidden;
}

.nav-dropdown-menu.features-jumbo {
    position: fixed;
    left: 0;
    right: 0;
    top: calc(var(--top-bar-h) + var(--header-h));
    transform: none;
    min-width: 0;
    width: 100%;
    padding: 0;
    border: none;
    border-radius: 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    box-shadow: 0 28px 64px rgba(11, 37, 58, 0.16);
    background: linear-gradient(180deg, #fff 0%, #f8fafc 55%, #f4f7fb 100%);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-16px);
    transition:
        opacity 0.34s cubic-bezier(0.22, 1, 0.36, 1),
        transform 0.34s cubic-bezier(0.22, 1, 0.36, 1),
        visibility 0.34s;
    z-index: 100;
}

.nav-dropdown.open .nav-dropdown-menu.features-jumbo {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.features-jumbo-container {
    position: relative;
    padding-top: 32px;
    padding-bottom: 28px;
}

.features-jumbo-accent {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg,
            transparent 0%,
            var(--orange) 20%,
            #ff9f43 50%,
            var(--orange) 80%,
            transparent 100%);
}

.features-jumbo-inner {
    display: grid;
    grid-template-columns: minmax(240px, 280px) 1fr;
    gap: 32px;
    align-items: start;
}

.features-jumbo-aside {
    padding: 26px 24px;
    background: linear-gradient(145deg, var(--navy) 0%, #0d3048 55%, #0a2235 100%);
    border-radius: var(--radius-lg);
    color: #fff;
    position: relative;
    overflow: hidden;
    box-shadow: 0 16px 48px rgba(11, 37, 58, 0.2);
}

.features-jumbo-aside::before {
    content: "";
    position: absolute;
    top: -50px;
    right: -50px;
    width: 160px;
    height: 160px;
    background: radial-gradient(circle,
            rgba(241, 143, 34, 0.22) 0%,
            transparent 70%);
    pointer-events: none;
}

.features-jumbo-aside-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 14px;
    position: relative;
    z-index: 1;
}

.features-jumbo-logo {
    width: 36px;
    height: auto;
    filter: brightness(1.15);
}

.features-jumbo-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--orange);
    background: rgba(241, 143, 34, 0.12);
    border: 1px solid rgba(241, 143, 34, 0.25);
    padding: 5px 10px;
    border-radius: 999px;
}

.features-jumbo-aside h3 {
    font-family: var(--font-display);
    font-size: 1.3rem;
    line-height: 1.25;
    margin-bottom: 10px;
    position: relative;
    z-index: 1;
}

.features-jumbo-aside>p {
    font-size: 0.84rem;
    line-height: 1.55;
    color: rgba(255, 255, 255, 0.72);
    margin-bottom: 16px;
    position: relative;
    z-index: 1;
}

.features-jumbo-highlights {
    list-style: none;
    margin: 0 0 18px;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
    position: relative;
    z-index: 1;
}

.features-jumbo-highlights li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.88);
}

.features-jumbo-highlights i {
    color: var(--orange);
    font-size: 0.7rem;
}

.features-jumbo-aside-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.features-jumbo-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
    padding: 10px 6px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius);
    text-align: center;
}

.features-jumbo-stat strong {
    font-family: var(--font-display);
    font-size: 1rem;
    color: var(--orange);
    line-height: 1;
}

.features-jumbo-stat span {
    font-size: 0.58rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: rgba(255, 255, 255, 0.55);
}

.features-jumbo-aside-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    position: relative;
    z-index: 1;
}

.features-jumbo-aside-actions .btn-outline {
    border-color: rgba(255, 255, 255, 0.35);
    color: #fff;
}

.features-jumbo-aside-actions .btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #fff;
    color: #fff;
}

.features-jumbo-main-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 14px;
    padding-bottom: 14px;
    border-bottom: 1px solid var(--border);
}

.features-jumbo-main-head h4 {
    font-family: var(--font-display);
    font-size: 1.05rem;
    color: var(--navy);
    margin-bottom: 4px;
}

.features-jumbo-main-head p {
    font-size: 0.78rem;
    color: var(--text-muted);
    margin: 0;
}

.features-jumbo-count {
    flex-shrink: 0;
    font-size: 0.68rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--orange);
    background: rgba(241, 143, 34, 0.1);
    border: 1px solid rgba(241, 143, 34, 0.2);
    padding: 6px 12px;
    border-radius: 999px;
}

.features-jumbo-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

.features-jumbo-card {
    display: grid;
    grid-template-columns: auto auto 1fr auto;
    align-items: center;
    gap: 12px;
    padding: 16px 18px;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    text-decoration: none;
    color: inherit;
    transition:
        transform 0.28s ease,
        box-shadow 0.28s ease,
        border-color 0.28s ease,
        background 0.28s ease;
    position: relative;
    overflow: hidden;
}

.features-jumbo-card::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(180deg, var(--orange), #ff9f43);
    transform: scaleY(0);
    transform-origin: center;
    transition: transform 0.28s ease;
}

.features-jumbo-card.is-featured {
    border-color: rgba(241, 143, 34, 0.35);
    background: linear-gradient(135deg, #fff 0%, #fffbf5 100%);
}

.features-jumbo-card.is-featured::after {
    content: "Popular";
    position: absolute;
    top: 8px;
    right: 10px;
    font-size: 0.55rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--orange);
    background: rgba(241, 143, 34, 0.12);
    padding: 2px 7px;
    border-radius: 999px;
}

.features-jumbo-card:hover,
.features-jumbo-card.active {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(11, 37, 58, 0.1);
    border-color: rgba(241, 143, 34, 0.4);
}

.features-jumbo-card:hover::before,
.features-jumbo-card.active::before {
    transform: scaleY(1);
}

.features-jumbo-card.active {
    background: linear-gradient(135deg, #fff 0%, #fffbf5 100%);
}

.nav-dropdown.open .features-jumbo.is-revealed .features-jumbo-card {
    animation: features-jumbo-card-in 0.42s cubic-bezier(0.22, 1, 0.36, 1) backwards;
    animation-delay: calc(var(--jumbo-i, 0) * 0.04s + 0.06s);
}

@keyframes features-jumbo-card-in {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.features-jumbo-num {
    font-family: var(--font-display);
    font-size: 0.75rem;
    font-weight: 800;
    color: rgba(11, 37, 58, 0.12);
    line-height: 1;
}

.features-jumbo-icon-ring {
    flex-shrink: 0;
    padding: 3px;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(241, 143, 34, 0.15), rgba(241, 143, 34, 0.05));
    transition: background 0.28s;
}

.features-jumbo-card:hover .features-jumbo-icon-ring,
.features-jumbo-card.active .features-jumbo-icon-ring {
    background: linear-gradient(135deg, var(--orange), #ff9f43);
}

.features-jumbo-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    color: var(--orange);
    border-radius: 11px;
    font-size: 1rem;
    transition: background 0.28s, color 0.28s;
}

.features-jumbo-card:hover .features-jumbo-icon,
.features-jumbo-card.active .features-jumbo-icon {
    background: transparent;
    color: #fff;
}

.features-jumbo-text {
    display: flex;
    flex-direction: column;
    gap: 3px;
    min-width: 0;
    padding-right: 8px;
}

.features-jumbo-text strong {
    font-size: 0.9rem;
    color: var(--navy);
    line-height: 1.25;
}

.features-jumbo-text small {
    font-size: 0.72rem;
    color: var(--text-muted);
    line-height: 1.35;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.features-jumbo-go {
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--gray-100);
    color: var(--text-muted);
    font-size: 0.68rem;
    opacity: 0;
    transform: translateX(-8px) scale(0.9);
    transition:
        opacity 0.28s,
        transform 0.28s,
        background 0.28s,
        color 0.28s;
}

.features-jumbo-card:hover .features-jumbo-go,
.features-jumbo-card.active .features-jumbo-go {
    opacity: 1;
    transform: translateX(0) scale(1);
    background: var(--orange);
    color: #fff;
}

.features-jumbo-foot {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 22px;
    padding-top: 20px;
    border-top: 1px solid var(--border);
}

.features-jumbo-foot-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 9px 18px;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--navy);
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 999px;
    text-decoration: none;
    transition:
        border-color 0.25s,
        color 0.25s,
        transform 0.25s,
        box-shadow 0.25s,
        background 0.25s;
}

.features-jumbo-foot-link i {
    font-size: 0.75rem;
    color: var(--orange);
}

.features-jumbo-foot-link:hover {
    border-color: rgba(241, 143, 34, 0.4);
    color: var(--orange);
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
}

.features-jumbo-foot-link-cta {
    background: rgba(241, 143, 34, 0.08);
    border-color: rgba(241, 143, 34, 0.3);
    color: var(--orange);
}

.features-jumbo-foot-link-cta:hover {
    background: var(--orange);
    border-color: var(--orange);
    color: #fff;
}

.features-jumbo-foot-link-cta:hover i {
    color: #fff;
}

@media (prefers-reduced-motion: reduce) {
    .nav-dropdown.open .features-jumbo.is-revealed .features-jumbo-card {
        animation: none;
    }
}

/* ── Hero home ── */
.hero-home {
    overflow: hidden;
}

.hero-bg-shape {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 60% 80% at 100% 0%,
            rgba(241, 143, 34, 0.12),
            transparent),
        radial-gradient(ellipse 50% 60% at 0% 100%,
            rgba(11, 37, 58, 0.06),
            transparent);
    pointer-events: none;
}

.hero-trust-inline {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-top: 20px;
}

.hero-trust-inline span {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.85rem;
    color: var(--text-muted);
    font-weight: 500;
}

.hero-trust-inline i {
    color: var(--orange);
}

.hero-grid {
    gap: 40px;
}

.trial-card {
    padding: 36px 40px;
    gap: 32px;
}

.step-card {
    padding: 24px 20px;
}

.section-cta {
    margin-top: 20px;
}

/* ── Feature link grid ── */
.feature-link-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.feature-link-card {
    position: relative;
    display: block;
    padding: 22px 20px;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    text-decoration: none;
    color: inherit;
    transition:
        border-color 0.25s,
        box-shadow 0.25s,
        transform 0.25s;
    overflow: hidden;
}

.feature-link-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--orange);
    transform: scaleY(0);
    transition: transform 0.25s;
}

.feature-link-card:hover {
    border-color: rgba(241, 143, 34, 0.4);
    box-shadow: var(--shadow-3d);
    transform: translateY(-4px);
}

.feature-link-card:hover::before {
    transform: scaleY(1);
}

.flc-icon {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--orange-soft);
    color: var(--orange);
    border-radius: 10px;
    font-size: 1.1rem;
    margin-bottom: 14px;
}

.feature-link-card h3 {
    font-family: var(--font-display);
    font-size: 1.05rem;
    color: var(--navy);
    margin-bottom: 6px;
}

.feature-link-card p {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.45;
    padding-right: 24px;
}

.flc-arrow {
    position: absolute;
    bottom: 20px;
    right: 18px;
    color: var(--orange);
    opacity: 0;
    transform: translateX(-6px);
    transition:
        opacity 0.25s,
        transform 0.25s;
}

.feature-link-card:hover .flc-arrow {
    opacity: 1;
    transform: translateX(0);
}

/* ── Stats band ── */
.stats-band {
    background: var(--gradient-navy);
    padding: 28px 0;
}

.stats-band .stat-box {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.12);
    padding: 20px 16px;
}

.stats-band .stat-num {
    color: #fff;
}

.stats-band .stat-box p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.82rem;
    margin-top: 6px;
}

.stats-band .stats-row {
    margin-top: 0;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

/* ── Home CTA ── */
.home-cta-box {
    text-align: center;
    padding: 40px 32px;
    background: linear-gradient(135deg, var(--orange-soft), #fff);
    border: 1px solid rgba(241, 143, 34, 0.25);
    border-radius: var(--radius-lg);
}

.home-cta-box h2 {
    font-family: var(--font-display);
    font-size: 1.75rem;
    color: var(--navy);
    margin-bottom: 8px;
}

.home-cta-box p {
    color: var(--text-muted);
    margin-bottom: 20px;
}

/* ── Feature detail pages ── */
.feature-page-hero {
    padding: 28px 0 36px;
    background:
        radial-gradient(ellipse 60% 80% at 90% 20%, rgba(241, 143, 34, 0.08), transparent 55%),
        linear-gradient(180deg, var(--bg-dark) 0%, var(--bg-deep) 100%);
    border-bottom: 1px solid var(--border);
}

.back-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.88rem;
    margin-bottom: 20px;
    transition: color 0.2s;
}

.back-link:hover {
    color: var(--orange);
}

.feature-hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 1fr);
    gap: 40px;
    align-items: center;
}

.feature-hero-grid h1 {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 3.5vw, 2.4rem);
    color: var(--navy);
    margin: 8px 0 12px;
}

.feature-hero-desc {
    color: var(--text-muted);
    max-width: 540px;
    margin-bottom: 20px;
}

.feature-hero-icon {
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--orange-soft);
    border: 2px solid rgba(241, 143, 34, 0.25);
    border-radius: 24px;
    font-size: 2.5rem;
    color: var(--orange);
}

.feature-hero-visual {
    position: relative;
    width: 100%;
    max-width: 100%;
    margin-left: auto;
    aspect-ratio: auto;
    border-radius: 0;
    overflow: visible;
    border: none;
    box-shadow: none;
    background: transparent;
    padding: 4px 0 0;
}

.feature-device {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    filter: drop-shadow(0 22px 40px rgba(11, 37, 58, 0.22));
}

.feature-device-lid {
    width: 100%;
    background: linear-gradient(180deg, #1a2332 0%, #0d1520 100%);
    border-radius: 14px 14px 10px 10px;
    padding: 8px 6px 6px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.12),
        0 8px 24px rgba(11, 37, 58, 0.18);
}

.feature-device-camera {
    width: 6px;
    height: 6px;
    margin: 0 auto 6px;
    border-radius: 50%;
    background: radial-gradient(circle at 35% 35%, #4b5563, #111827 70%);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.15);
}

.feature-device-screen {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 10;
    border-radius: 4px;
    overflow: hidden;
    background: #0b253a;
    border: none;
}

.feature-device-shot {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    max-width: none;
    object-fit: fill;
    object-position: top center;
    display: block;
    filter: blur(0.2px);
    transform: none;
    user-select: none;
    pointer-events: none;
}

.feature-device-screen::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg,
            rgba(255, 255, 255, 0.06) 0%,
            transparent 28%,
            rgba(11, 37, 58, 0.08) 100%);
    pointer-events: none;
}

.feature-device-base {
    width: 100%;
    height: 12px;
    margin-top: -1px;
    background: linear-gradient(180deg, #2a3444 0%, #151c28 55%, #0c1118 100%);
    border-radius: 0 0 14px 14px;
    position: relative;
    box-shadow: 0 10px 18px rgba(11, 37, 58, 0.2);
}

.feature-device-notch {
    position: absolute;
    left: 50%;
    top: 2px;
    transform: translateX(-50%);
    width: 18%;
    height: 5px;
    border-radius: 0 0 6px 6px;
    background: #0a0e14;
}

.feature-detail-grid {
    display: grid;
    grid-template-columns: 1.4fr 0.8fr;
    gap: 32px;
    align-items: start;
}

.feature-detail-main h2 {
    font-family: var(--font-display);
    font-size: 1.25rem;
    color: var(--navy);
    margin: 0 0 14px;
}

.feature-detail-main h2:not(:first-child) {
    margin-top: 28px;
}

.feature-benefit-list,
.feature-point-list {
    list-style: none;
}

.feature-benefit-list li,
.feature-point-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 8px 0;
    color: var(--text-muted);
    font-size: 0.95rem;
    border-bottom: 1px solid var(--gray-100);
}

.feature-benefit-list i {
    color: var(--orange);
    margin-top: 3px;
}

.feature-point-list i {
    color: var(--navy);
    font-size: 0.5rem;
    margin-top: 8px;
}

.aside-card {
    padding: 24px;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    margin-bottom: 16px;
    box-shadow: var(--shadow-sm);
}

.aside-card h3 {
    font-family: var(--font-display);
    font-size: 1rem;
    color: var(--navy);
    margin-bottom: 10px;
}

.aside-card p {
    font-size: 0.88rem;
    color: var(--text-muted);
    margin-bottom: 16px;
}

.related-features {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.related-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    text-decoration: none;
    color: var(--navy);
    font-size: 0.88rem;
    border-radius: 8px;
    transition: background 0.2s;
}

.related-feature i:first-child {
    color: var(--orange);
    width: 18px;
}

.related-feature i:last-child {
    margin-left: auto;
    color: var(--text-muted);
    font-size: 0.75rem;
}

.related-feature:hover {
    background: var(--orange-soft);
}

.feature-cta-band {
    padding: 36px 0;
}

.feature-cta-inner {
    text-align: center;
}

.feature-cta-inner h2 {
    color: #fff;
    font-family: var(--font-display);
    font-size: 1.5rem;
    margin-bottom: 8px;
}

.feature-cta-inner p {
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 20px;
}

.feature-usecases-section {
    padding: 56px 0;
}

.feature-usecases-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 40px;
}

.feature-usecase-card {
    padding: 28px 24px;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    text-align: center;
    transition: transform 0.28s, box-shadow 0.28s, border-color 0.28s;
}

.feature-usecase-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-3d);
    border-color: rgba(241, 143, 34, 0.3);
}

.feature-usecase-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    margin-bottom: 14px;
    background: rgba(241, 143, 34, 0.1);
    color: var(--orange);
    border-radius: 14px;
    font-size: 1.2rem;
}

.feature-usecase-card h4 {
    font-family: var(--font-display);
    font-size: 1rem;
    color: var(--navy);
    margin-bottom: 8px;
}

.feature-usecase-card p {
    font-size: 0.84rem;
    color: var(--text-muted);
    line-height: 1.55;
    margin: 0;
}

.feature-outcomes-section {
    padding: 56px 0;
    background: linear-gradient(135deg,
            var(--navy) 0%,
            #0d3048 50%,
            #0a2235 100%);
}

.feature-outcomes-section .section-header h2 {
    color: #fff;
}

.feature-outcomes-section .section-header p {
    color: rgba(255, 255, 255, 0.65);
}

.feature-outcomes-section .section-tag {
    background: rgba(241, 143, 34, 0.15);
    color: var(--orange);
    border: 1px solid rgba(241, 143, 34, 0.25);
}

.feature-outcomes-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 40px;
}

.feature-outcome-card {
    text-align: center;
    padding: 28px 22px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    transition: transform 0.28s, background 0.28s;
}

.feature-outcome-card:hover {
    transform: translateY(-4px);
    background: rgba(255, 255, 255, 0.1);
}

.feature-outcome-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    margin-bottom: 14px;
    background: rgba(241, 143, 34, 0.15);
    color: var(--orange);
    border-radius: 12px;
    font-size: 1.1rem;
}

.feature-outcome-values {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 2px;
    margin-bottom: 8px;
    min-height: 2.5rem;
}

.feature-outcome-num {
    font-family: var(--font-display);
    font-size: 2.25rem;
    font-weight: 800;
    color: #fff;
    line-height: 1;
}

.feature-outcome-suffix {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 700;
    color: var(--orange);
}

.feature-outcome-text {
    font-family: var(--font-display);
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--orange);
    line-height: 1.1;
}

.feature-outcome-text small {
    display: block;
    font-size: 0.85rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.75);
    margin-top: 2px;
}

.feature-outcome-card h4 {
    font-family: var(--font-display);
    font-size: 0.95rem;
    color: #fff;
    margin-bottom: 8px;
}

.feature-outcome-card p {
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.5;
    margin: 0;
}

@media (max-width: 992px) {

    .feature-usecases-grid,
    .feature-outcomes-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .feature-usecases-grid {
        gap: 14px;
    }

    .feature-outcome-num {
        font-size: 1.85rem;
    }
}

/* ── Footer v2 ── */
.footer-main {
    background: linear-gradient(160deg, #1a2f42 0%, #0f2233 45%, #0a1929 100%);
    padding: 52px 0 40px;
    position: relative;
    z-index: 1;
    border-top: 3px solid var(--orange);
}

.footer-main::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 50% 60% at 100% 0%,
            rgba(241, 143, 34, 0.07) 0%,
            transparent 55%),
        radial-gradient(circle at 0% 100%,
            rgba(255, 255, 255, 0.03) 0%,
            transparent 40%);
    pointer-events: none;
}

.footer-main .footer-grid {
    padding-bottom: 0;
    position: relative;
    z-index: 1;
}

.footer-main .footer-brand p {
    color: rgba(255, 255, 255, 0.7);
}

.footer-logo-wrap {
    display: inline-block;
    background: #fff;
    padding: 12px 18px;
    border-radius: 12px;
    margin-bottom: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.footer-logo {
    height: 32px;
    width: auto;
    max-width: 180px;
    object-fit: contain;
    display: block;
}

.footer-main .footer-col h4 {
    color: #fff;
    font-family: var(--font-display);
}

.footer-main .footer-col a {
    color: rgba(255, 255, 255, 0.65);
}

.footer-main .footer-col a:hover {
    color: var(--orange);
}

.footer-main .footer-contact p {
    color: rgba(255, 255, 255, 0.65);
}

.footer-main .footer-contact i {
    color: var(--orange);
}

.footer-newsletter {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
    margin: 16px 0 20px;
}

.footer-newsletter input {
    flex: 1;
    padding: 10px 14px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
    font-family: inherit;
    font-size: 0.88rem;
}

.footer-newsletter input::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.footer-main .footer-social a {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: #fff;
}

.footer-main .footer-social a:hover {
    background: var(--orange);
    border-color: var(--orange);
}

.footer-bottom-bar {
    background: #071420;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-bottom-bar .footer-bottom p,
.footer-bottom-bar .footer-bottom-links a {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.82rem;
}

.footer-bottom-bar .footer-bottom-links a:hover {
    color: var(--orange);
}

@media (max-width: 1024px) {
    .features-jumbo-inner {
        grid-template-columns: 1fr;
    }

    .features-jumbo-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .features-jumbo-main-head {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 768px) {

    .top-bar-left .top-bar-chip-static,
    .top-bar-left .top-bar-chip:nth-child(2) {
        display: none;
    }

    .top-bar-trust {
        display: none;
    }

    .top-bar-left {
        flex: 0;
    }

    .top-bar-right {
        flex: 1;
        justify-content: flex-end;
        gap: 12px;
    }

    .top-bar-promo-text small {
        display: none;
    }

    .hero {
        padding: 28px 0 24px;
    }

    .feature-link-grid {
        grid-template-columns: 1fr;
    }

    .nav-dropdown-menu.features-jumbo {
        position: static !important;
        left: auto !important;
        right: auto !important;
        top: auto !important;
        width: 100% !important;
        min-width: 0 !important;
        max-height: none;
        transform: none !important;
        opacity: 1 !important;
        visibility: visible !important;
        box-shadow: none;
        border: 1px solid var(--border);
        border-radius: var(--radius);
        margin-top: 4px;
        display: none;
        background: #f8fafc;
        overflow: hidden;
    }

    .nav-dropdown.open .nav-dropdown-menu.features-jumbo {
        display: block;
    }

    .features-jumbo-backdrop {
        display: none !important;
    }

    body.features-jumbo-open {
        overflow: hidden;
    }

    .features-jumbo-container {
        padding: 12px 0 8px;
        max-width: 100%;
    }

    .features-jumbo-accent {
        display: none;
    }

    .features-jumbo-inner {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .features-jumbo-aside,
    .features-jumbo-main-head {
        display: none;
    }

    .features-jumbo-foot {
        display: flex;
        flex-direction: column;
        margin-top: 8px;
        padding-top: 10px;
        border-top: 1px solid var(--border);
        gap: 6px;
    }

    .features-jumbo-foot-link:not(:first-child) {
        display: none;
    }

    .features-jumbo-foot-link {
        justify-content: center;
        font-size: 0.8rem;
        padding: 10px 14px;
    }

    .features-jumbo-grid {
        grid-template-columns: 1fr;
        gap: 6px;
    }

    .features-jumbo-card {
        grid-template-columns: auto auto 1fr auto;
        padding: 12px 14px;
        border-radius: var(--radius);
    }

    .features-jumbo-go {
        opacity: 1;
        transform: none;
    }

    .features-jumbo-card.is-featured::after {
        display: none;
    }

    .nav-dropdown.open .features-jumbo.is-revealed .features-jumbo-card {
        animation: none;
    }

    .nav-dropdown-menu {
        position: static;
        transform: none;
        opacity: 1;
        visibility: visible;
        box-shadow: none;
        border: none;
        padding: 0;
        display: none;
        min-width: 0;
        width: 100%;
    }

    .nav-dropdown.open .nav-dropdown-menu {
        display: block;
    }

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

    .feature-hero-icon {
        display: none;
    }
}

/* ── Home hero slider, full-width background image ── */
.home-slider {
    position: relative;
    width: 100%;
    min-height: var(--section-viewport);
    height: var(--section-viewport);
    overflow: hidden;
    background: var(--navy);
    padding: 0;
}

.home-slider .slider-track {
    height: 100%;
}

.slider-track {
    position: relative;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.slider-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    visibility: hidden;
    transition:
        opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1),
        visibility 0.8s;
}

.slider-slide.is-active {
    opacity: 1;
    visibility: visible;
    z-index: 1;
}

/* Full-width background image, full image visible, no crop */
.slider-bg-image {
    position: absolute;
    inset: 0;
    z-index: 0;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    background: var(--navy);
}

.slider-bg-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    display: block;
}

.slider-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(90deg,
            rgba(11, 37, 58, 0.93) 0%,
            rgba(11, 37, 58, 0.78) 22%,
            rgba(11, 37, 58, 0.45) 40%,
            rgba(11, 37, 58, 0.12) 58%,
            transparent 72%);
    pointer-events: none;
}

.slider-inner {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    height: 100%;
    padding: 40px 0 72px;
}

.slider-caption {
    text-align: left;
    max-width: 600px;
    color: #fff;
}

.slider-caption-panel {
    padding: 28px 32px;
    background: rgba(11, 37, 58, 0.45);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-left: 4px solid var(--orange);
    border-radius: var(--radius-lg);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
}

.slider-caption .badge {
    margin-bottom: 16px;
    background: rgba(241, 143, 34, 0.18);
    border: 1px solid rgba(241, 143, 34, 0.45);
    color: #fff;
}

.slider-caption h1 {
    font-family: var(--font-display);
    font-size: clamp(1.75rem, 3.2vw, 2.65rem);
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 14px;
    color: #fff;
}

.slider-caption .gradient-text {
    background: linear-gradient(135deg, #ffb347 0%, var(--orange) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.slider-caption p {
    font-size: 1.02rem;
    color: rgba(255, 255, 255, 0.82);
    margin-bottom: 24px;
    line-height: 1.6;
}

.slider-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
}

.btn-outline-light {
    background: transparent;
    color: #fff;
    border: 1.5px solid rgba(255, 255, 255, 0.45);
    box-shadow: none;
}

.btn-outline-light:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.7);
    color: #fff;
}

.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 6;
    width: 48px;
    height: 48px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 8px 24px rgba(11, 37, 58, 0.2);
    color: var(--navy);
    cursor: pointer;
    transition:
        background 0.25s,
        transform 0.25s,
        color 0.25s,
        border-color 0.25s;
}

.slider-arrow:hover {
    background: var(--orange);
    border-color: var(--orange);
    color: #fff;
    transform: translateY(-50%) scale(1.08);
}

.slider-prev {
    left: 20px;
}

.slider-next {
    right: 20px;
}

.slider-controls {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 5;
    background: linear-gradient(180deg,
            transparent 0%,
            rgba(11, 37, 58, 0.92) 100%);
}

.slider-controls-inner {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 16px;
    padding: 20px 0 16px;
}

.slider-tabs-wrap {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.slider-tabs-label {
    font-size: 0.68rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: rgba(255, 255, 255, 0.45);
    padding-left: 4px;
}

.slider-dots {
    display: flex;
    gap: 10px;
    padding: 6px;
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
}

.slider-dot {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    min-height: 52px;
    padding: 8px 16px 8px 10px;
    border-radius: 12px;
    border: 1px solid transparent;
    background: transparent;
    color: rgba(255, 255, 255, 0.75);
    font-family: inherit;
    cursor: pointer;
    transition:
        background 0.3s ease,
        border-color 0.3s ease,
        box-shadow 0.3s ease,
        transform 0.3s ease;
    overflow: hidden;
}

.slider-dot::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 60%;
    height: 2px;
    background: var(--orange);
    border-radius: 2px;
    transition: transform 0.3s ease;
}

.slider-tab-icon,
.slider-tab-body {
    pointer-events: none;
}

.slider-tab-icon {
    width: 36px;
    height: 36px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    transition:
        background 0.3s,
        color 0.3s,
        transform 0.3s;
}

.slider-tab-body {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1px;
    text-align: left;
    line-height: 1.2;
}

.slider-tab-body strong {
    font-family: var(--font-display);
    font-size: 0.88rem;
    font-weight: 700;
    color: inherit;
}

.slider-tab-body small {
    font-size: 0.68rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.5);
    transition: color 0.3s;
}

.slider-dot.is-active {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(241, 143, 34, 0.45);
    color: #fff;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    transform: translateY(-2px);
}

.slider-dot.is-active::after {
    transform: translateX(-50%) scaleX(1);
}

.slider-dot.is-active .slider-tab-icon {
    background: var(--orange);
    color: #fff;
    box-shadow: 0 4px 12px rgba(241, 143, 34, 0.35);
}

.slider-dot.is-active .slider-tab-body small {
    color: rgba(255, 255, 255, 0.75);
}

.slider-dot:hover:not(.is-active) {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.15);
    color: #fff;
}

.slider-dot:hover:not(.is-active) .slider-tab-icon {
    background: rgba(241, 143, 34, 0.2);
    color: var(--orange);
}

.slider-counter {
    flex-shrink: 0;
    padding: 10px 16px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    font-family: var(--font-display);
    font-size: 0.82rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.5);
    letter-spacing: 0.06em;
}

.slider-counter span {
    color: var(--orange);
    font-size: 1.1rem;
}

.slider-progress {
    height: 3px;
    background: rgba(255, 255, 255, 0.1);
}

.hero-compact {
    padding: 32px 0 24px;
}

.hero-compact h2 {
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 2.8vw, 2rem);
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 12px;
    line-height: 1.25;
}

@media (max-width: 768px) {
    .home-slider {
        min-height: var(--section-viewport);
        height: var(--section-viewport);
    }

    .slider-bg-image img {
        object-fit: cover;
        object-position: center center;
    }

    .slider-inner {
        padding: 28px 0 88px;
        align-items: flex-end;
    }

    .slider-caption-panel {
        padding: 20px 18px;
    }

    .slider-caption {
        max-width: none;
    }

    .slider-overlay {
        background: linear-gradient(180deg,
                rgba(11, 37, 58, 0.2) 0%,
                rgba(11, 37, 58, 0.88) 50%,
                rgba(11, 37, 58, 0.96) 100%);
    }

    .slider-controls-inner {
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
    }

    .slider-tabs-wrap {
        width: 100%;
    }

    .slider-dots {
        flex-wrap: wrap;
        width: 100%;
        gap: 8px;
        padding: 5px;
    }

    .slider-dot {
        flex: 1;
        min-width: calc(33.333% - 6px);
        min-height: 48px;
        padding: 6px 8px 6px 6px;
        gap: 6px;
        justify-content: center;
    }

    .slider-tab-icon {
        width: 30px;
        height: 30px;
        font-size: 0.75rem;
    }

    .slider-tab-body small {
        display: none;
    }

    .slider-tab-body strong {
        font-size: 0.72rem;
    }

    .slider-counter {
        align-self: flex-end;
        padding: 8px 12px;
        font-size: 0.75rem;
    }

    .slider-caption h1 {
        font-size: 1.5rem;
    }

    .slider-caption p {
        font-size: 0.92rem;
    }

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

    .slider-actions .btn {
        width: 100%;
        justify-content: center;
    }

    .slider-arrow {
        width: 40px;
        height: 40px;
        font-size: 0.85rem;
    }
}

/* ══════════════════════════════════════════════════════════════
 ENHANCED HOME, Dark header, device showcase, sections
 ══════════════════════════════════════════════════════════════ */

/* Light header */
.site-header:has(> .header-light) {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    box-shadow: 0 2px 20px rgba(11, 37, 58, 0.06);
}

.header-light {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    box-shadow: 0 2px 20px rgba(11, 37, 58, 0.06);
}

.site-header:has(> .header-light) .header-light {
    background: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    border-bottom: none;
    box-shadow: none;
}

@media (max-width: 768px) {

    .site-header,
    .site-header:has(> .header-light),
    .header,
    .header-light,
    .header.scrolled,
    .header-light.scrolled {
        background: #ffffff !important;
        background-color: #ffffff !important;
        backdrop-filter: none !important;
        -webkit-backdrop-filter: none !important;
    }
}

.site-header:has(> .header-light.scrolled),
.header-light.scrolled {
    background: rgba(255, 255, 255, 0.99);
    box-shadow: 0 4px 28px rgba(11, 37, 58, 0.1);
}

.site-header:has(> .header-light.scrolled) .header-light.scrolled {
    background: transparent;
    box-shadow: none;
}

.header-light .nav-link {
    color: var(--navy);
}

.header-light .nav-link:hover,
.header-light .nav-link.active {
    color: var(--orange-dark);
    background: var(--orange-soft);
}

.header-light .menu-toggle span {
    background: var(--navy);
}

.header-light .logo {
    height: 40px;
}

/* Legacy dark header (unused) */
.header-dark {
    background: rgba(11, 37, 58, 0.97);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.18);
}

.header-dark.scrolled {
    background: rgba(11, 37, 58, 0.99);
    box-shadow: 0 6px 28px rgba(0, 0, 0, 0.22);
}

.header-dark .nav-link {
    color: rgba(255, 255, 255, 0.82);
}

.header-dark .nav-link:hover,
.header-dark .nav-link.active {
    color: #fff;
    background: rgba(241, 143, 34, 0.18);
}

.header-dark .menu-toggle span {
    background: #fff;
}

.logo-wrap-header {
    display: inline-flex;
    align-items: center;
    padding: 6px 12px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 10px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.15);
}

.logo-wrap-header .logo {
    height: 34px;
}

.header-dark .nav-dropdown-menu {
    background: #fff;
}

/* Platform showcase v2 */
.platform-showcase-v2 {
    padding: 72px 0;
    background: linear-gradient(180deg, #fff 0%, #f4f7fb 45%, #fff 100%);
    border-bottom: 1px solid var(--border);
    position: relative;
    overflow: hidden;
}

.platform-showcase-v2::before {
    content: "";
    position: absolute;
    top: -140px;
    right: -100px;
    width: 480px;
    height: 480px;
    background: radial-gradient(circle,
            rgba(241, 143, 34, 0.09) 0%,
            transparent 70%);
    pointer-events: none;
}

.platform-showcase-v2::after {
    content: "";
    position: absolute;
    bottom: -160px;
    left: -120px;
    width: 420px;
    height: 420px;
    background: radial-gradient(circle,
            rgba(11, 37, 58, 0.05) 0%,
            transparent 70%);
    pointer-events: none;
}

.platform-showcase-v2 .section-header {
    max-width: 720px;
    margin: 0 auto 40px;
}

.platform-showcase-shell {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: stretch;
    min-height: 540px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border);
    box-shadow:
        0 24px 64px rgba(11, 37, 58, 0.1),
        0 4px 16px rgba(11, 37, 58, 0.06);
    background: #fff;
    position: relative;
    z-index: 1;
}

.platform-content {
    display: flex;
    flex-direction: column;
    height: 100%;
    padding: 36px 40px;
    background: #fff;
    border-right: 1px solid var(--border);
}

.platform-content-kicker {
    font-family: var(--font-display);
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--navy);
    margin: 0 0 22px;
    padding-bottom: 16px;
    border-bottom: 2px solid var(--orange-soft);
}

.platform-content h2 {
    font-family: var(--font-display);
    font-size: clamp(1.65rem, 3vw, 2.35rem);
    color: var(--navy);
    line-height: 1.2;
    margin: 12px 0 14px;
}

.platform-lead {
    color: var(--text-muted);
    font-size: 1.02rem;
    line-height: 1.65;
    margin-bottom: 24px;
}

.platform-benefits {
    list-style: none;
    padding: 0;
    margin: 0 0 24px;
    display: flex;
    flex-direction: column;
    gap: 0;
    flex: 1;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    background: var(--gray-50);
}

.platform-stat {
    display: flex;
    flex-direction: column;
    gap: 2px;
    padding-right: 16px;
    border-right: 1px solid var(--border);
    flex: 1;
    min-width: 0;
    text-align: center;
}

.platform-stat:last-child {
    border-right: none;
}

.platform-stat strong {
    font-family: var(--font-display);
    font-size: 1.2rem;
    color: var(--orange);
}

.platform-stat span {
    font-size: 0.74rem;
    color: var(--text-muted);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.platform-benefits li {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 18px 20px;
    background: #fff;
    border-bottom: 1px solid var(--border);
    transition:
        background 0.25s,
        padding-left 0.25s;
    flex: 1;
}

.platform-benefits li:last-child {
    border-bottom: none;
}

.platform-benefits li:hover {
    background: rgba(241, 143, 34, 0.04);
    padding-left: 24px;
}

.platform-benefit-icon {
    width: 44px;
    height: 44px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--orange-soft);
    color: var(--orange);
    border-radius: 12px;
    font-size: 1.05rem;
}

.platform-benefits li div {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.platform-benefits li strong {
    font-size: 0.94rem;
    color: var(--navy);
}

.platform-benefits li span {
    font-size: 0.82rem;
    color: var(--text-muted);
    line-height: 1.45;
}

.platform-stats-row {
    display: flex;
    gap: 0;
    margin-bottom: 24px;
    flex-wrap: nowrap;
    padding: 18px 12px;
    background: var(--gray-50);
    border-radius: var(--radius);
    border: 1px solid var(--border);
}

.platform-actions {
    margin-top: auto;
    padding-top: 4px;
}

.platform-devices {
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
    min-height: 100%;
    padding: 36px 40px 32px;
    background: linear-gradient(160deg,
            var(--navy) 0%,
            #0a2236 55%,
            #0d3048 100%);
}

.platform-devices::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 90% 70% at 50% 0%,
            rgba(241, 143, 34, 0.14) 0%,
            transparent 55%),
        radial-gradient(circle at 85% 85%,
            rgba(255, 255, 255, 0.04) 0%,
            transparent 40%);
    pointer-events: none;
}

.platform-devices-header {
    position: relative;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    align-self: center;
    margin-bottom: 20px;
    padding: 6px 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    flex-shrink: 0;
}

.platform-live-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #4ade80;
    box-shadow: 0 0 0 3px rgba(74, 222, 128, 0.25);
    animation: platform-pulse 2s ease-in-out infinite;
}

@keyframes platform-pulse {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.7;
        transform: scale(0.85);
    }
}

.platform-showcase-v2 .device-stage {
    position: relative;
    z-index: 1;
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 0;
    margin-bottom: 20px;
}

.platform-showcase-v2 .device-laptop-wrap {
    width: min(100%, 540px);
}

.platform-showcase-v2 .laptop-chassis {
    width: 100%;
}

.platform-showcase-v2 .device-base {
    width: 108%;
}

.platform-showcase-v2 .device-hinge {
    width: 88%;
}

.platform-showcase-v2 .device-chassis {
    box-shadow:
        0 2px 0 rgba(255, 255, 255, 0.1) inset,
        0 -1px 0 rgba(0, 0, 0, 0.4) inset,
        0 32px 64px rgba(0, 0, 0, 0.42),
        0 0 40px rgba(241, 143, 34, 0.08);
}

.platform-showcase-v2 .laptop-chassis .device-screenshot {
    max-height: min(290px, 31vh);
}

.platform-showcase-v2 .tablet-chassis .device-screenshot {
    max-height: min(270px, 29vh);
}

.platform-showcase-v2 .phone-chassis .device-screenshot {
    max-height: min(310px, 36vh);
}

.platform-devices .device-tabs {
    position: relative;
    z-index: 1;
    margin-top: auto;
    flex-shrink: 0;
    gap: 8px;
}

.platform-devices .device-tab {
    flex: 1;
    justify-content: center;
    min-width: 0;
    padding: 11px 14px;
    background: rgba(255, 255, 255, 0.07);
    border-color: rgba(255, 255, 255, 0.14);
    color: rgba(255, 255, 255, 0.78);
    font-size: 0.82rem;
}

.platform-devices .device-tab:hover {
    border-color: rgba(241, 143, 34, 0.5);
    color: #fff;
    background: rgba(255, 255, 255, 0.12);
}

.platform-devices .device-tab.is-active {
    background: var(--orange);
    border-color: var(--orange);
    color: #fff;
    box-shadow: 0 4px 16px rgba(241, 143, 34, 0.35);
}

@media (max-width: 1024px) {
    .platform-showcase-shell {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .platform-content {
        border-right: none;
        border-bottom: 1px solid var(--border);
    }

    .platform-devices {
        order: -1;
    }

    .platform-showcase-v2 .device-stage {
        min-height: 320px;
    }
}

@media (max-width: 768px) {
    .platform-showcase-v2 {
        padding: 48px 0;
    }

    .platform-showcase-v2 .section-header {
        margin-bottom: 28px;
    }

    .platform-content,
    .platform-devices {
        padding: 24px 20px;
    }

    .platform-showcase-v2 .device-stage {
        min-height: 260px;
    }

    .platform-stats-row {
        flex-wrap: wrap;
        gap: 12px;
        padding: 14px 10px;
    }

    .platform-stat {
        padding-right: 0;
        border-right: none;
        flex: 1 1 30%;
        min-width: 80px;
    }

    .platform-devices .device-tab {
        padding: 10px 10px;
        font-size: 0.76rem;
    }

    .platform-devices .device-tab span,
    .platform-devices .device-tab {
        gap: 6px;
    }
}

/* Device stage */
.device-stage {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 380px;
    margin-bottom: 24px;
}

.device {
    position: absolute;
    opacity: 0;
    visibility: hidden;
    transform: scale(0.9) translateY(20px);
    transition:
        opacity 0.5s cubic-bezier(0.22, 1, 0.36, 1),
        transform 0.5s cubic-bezier(0.22, 1, 0.36, 1),
        visibility 0.5s;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

.device.is-active {
    opacity: 1;
    visibility: visible;
    transform: scale(1) translateY(0);
    position: relative;
    animation: device-float 5s ease-in-out infinite;
}

@keyframes device-float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-6px);
    }
}

.device-ambient {
    position: absolute;
    inset: 10% 8%;
    border-radius: 50%;
    background: radial-gradient(ellipse,
            rgba(241, 143, 34, 0.22) 0%,
            transparent 68%);
    filter: blur(28px);
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
    z-index: 0;
}

.device.is-active .device-ambient {
    opacity: 1;
}

.device-shadow {
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 72%;
    height: 18px;
    background: radial-gradient(ellipse, rgba(0, 0, 0, 0.45) 0%, transparent 72%);
    filter: blur(8px);
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
    z-index: 0;
}

.device.is-active .device-shadow {
    opacity: 0.85;
}

.device-laptop-wrap {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

.device-chassis {
    position: relative;
    z-index: 1;
    background:
        linear-gradient(165deg, rgba(255, 255, 255, 0.14) 0%, transparent 42%),
        linear-gradient(145deg, #3d4a5c 0%, #252f3d 38%, #151c28 100%);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 12px;
    box-shadow:
        0 2px 0 rgba(255, 255, 255, 0.08) inset,
        0 -1px 0 rgba(0, 0, 0, 0.35) inset,
        0 28px 56px rgba(0, 0, 0, 0.38),
        0 8px 20px rgba(11, 37, 58, 0.25);
}

.laptop-chassis {
    width: min(680px, 92vw);
    padding: 12px 12px 10px;
    border-radius: 16px 16px 6px 6px;
}

.tablet-chassis {
    width: min(340px, 70vw);
    padding: 16px;
    border-radius: 26px;
}

.phone-chassis {
    width: min(230px, 52vw);
    padding: 14px 11px 12px;
    border-radius: 36px;
}

.device-notch {
    position: absolute;
    top: 16px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    width: 92px;
    height: 26px;
    background: linear-gradient(180deg, #0f141c 0%, #1a2230 100%);
    border-radius: 0 0 18px 18px;
    margin: 0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.35);
    display: flex;
    align-items: center;
    justify-content: center;
}

.device-bezel-bar {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 8px;
    min-height: 10px;
}

.device-camera {
    width: 7px;
    height: 7px;
    background: radial-gradient(circle at 35% 35%, #6b7280, #1f2937);
    border-radius: 50%;
    box-shadow:
        0 0 0 1px rgba(255, 255, 255, 0.08),
        0 0 6px rgba(74, 158, 255, 0.35);
    flex-shrink: 0;
}

.device-speaker-grille {
    width: 36px;
    height: 4px;
    border-radius: 999px;
    background: repeating-linear-gradient(90deg,
            rgba(0, 0, 0, 0.45) 0,
            rgba(0, 0, 0, 0.45) 2px,
            rgba(255, 255, 255, 0.06) 2px,
            rgba(255, 255, 255, 0.06) 4px);
    opacity: 0.7;
}

.device-notch-cam {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: radial-gradient(circle at 35% 35%, #4b5563, #111827);
    box-shadow:
        0 0 0 2px rgba(255, 255, 255, 0.05),
        0 0 8px rgba(96, 165, 250, 0.25);
}

.device-side-btn {
    position: absolute;
    background: linear-gradient(180deg, #4b5563, #2d3748);
    border-radius: 2px;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.device-side-btn-vol {
    left: -3px;
    top: 28%;
    width: 3px;
    height: 28px;
}

.device-side-btn-vol::after {
    content: "";
    position: absolute;
    left: 0;
    top: 34px;
    width: 3px;
    height: 22px;
    background: inherit;
    border-radius: inherit;
    box-shadow: inherit;
}

.device-side-btn-power {
    right: -3px;
    top: 22%;
    width: 3px;
    height: 38px;
}

.device-screen {
    position: relative;
    background: #080c12;
    border-radius: 6px;
    overflow: hidden;
    border: 2px solid rgba(0, 0, 0, 0.55);
    box-shadow:
        0 0 0 1px rgba(255, 255, 255, 0.06) inset,
        0 0 24px rgba(241, 143, 34, 0.06) inset;
}

.laptop-chassis .device-screen {
    border-radius: 5px;
}

.tablet-chassis .device-screen {
    border-radius: 12px;
}

.phone-chassis .device-screen {
    border-radius: 26px;
}

.device-screen-shine {
    position: absolute;
    inset: 0;
    background: linear-gradient(125deg,
            rgba(255, 255, 255, 0.16) 0%,
            rgba(255, 255, 255, 0.04) 22%,
            transparent 45%,
            transparent 100%);
    pointer-events: none;
    z-index: 2;
}

.device-screenshot {
    display: block;
    width: 100%;
    height: auto;
    object-fit: contain;
    object-position: top center;
    background: #f5f7fa;
    position: relative;
    z-index: 1;
}

.laptop-chassis .device-screenshot {
    max-height: min(280px, 36vh);
}

.tablet-chassis .device-screenshot {
    max-height: min(260px, 34vh);
}

.phone-chassis .device-screenshot {
    max-height: min(340px, 44vh);
    width: 100%;
}

.device-hinge {
    width: min(520px, 78%);
    height: 6px;
    margin-top: -1px;
    background: linear-gradient(180deg, #1a2230, #3d4a5c 45%, #252f3d);
    border-radius: 0 0 3px 3px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.35);
    position: relative;
    z-index: 2;
}

.device-base {
    position: relative;
    z-index: 1;
    width: min(760px, 98vw);
    min-height: 42px;
    padding: 10px 0 12px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.1) 0%, transparent 35%),
        linear-gradient(180deg, #3a4555 0%, #222b38 55%, #1a2230 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-top: none;
    border-radius: 0 0 14px 14px;
    margin-top: -2px;
    box-shadow:
        0 12px 28px rgba(0, 0, 0, 0.32),
        0 2px 0 rgba(255, 255, 255, 0.06) inset;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 7px;
}

.device-keyboard {
    width: 68%;
    height: 5px;
    border-radius: 3px;
    background: repeating-linear-gradient(90deg,
            rgba(0, 0, 0, 0.35) 0,
            rgba(0, 0, 0, 0.35) 3px,
            rgba(255, 255, 255, 0.04) 3px,
            rgba(255, 255, 255, 0.04) 5px);
    opacity: 0.85;
}

.device-trackpad {
    width: 22%;
    height: 14px;
    border-radius: 4px;
    background: linear-gradient(180deg,
            rgba(255, 255, 255, 0.08),
            rgba(0, 0, 0, 0.2));
    border: 1px solid rgba(255, 255, 255, 0.06);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.25) inset;
}

.device-home-indicator {
    display: block;
    width: 36px;
    height: 4px;
    margin: 10px auto 2px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.35);
    box-shadow: 0 0 8px rgba(255, 255, 255, 0.15);
}

.device-home-indicator-phone {
    width: 28%;
    height: 3px;
    margin-top: 8px;
    background: rgba(255, 255, 255, 0.28);
}

@media (prefers-reduced-motion: reduce) {
    .device.is-active {
        animation: none;
    }
}

.device-label {
    margin-top: 14px;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 6px;
}

.device-label i {
    color: var(--orange);
}

.device-tabs {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
}

.device-tab {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    border: 1px solid var(--border);
    border-radius: 999px;
    background: #fff;
    color: var(--text-muted);
    font-family: inherit;
    font-size: 0.88rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.25s;
}

.device-tab:hover {
    border-color: rgba(241, 143, 34, 0.4);
    color: var(--navy);
}

.device-tab.is-active {
    background: var(--navy);
    border-color: var(--navy);
    color: #fff;
}

.device-tab.is-active i {
    color: var(--orange);
}

.device-hint {
    text-align: center;
    margin-top: 20px;
    font-size: 0.78rem;
    color: var(--text-muted);
}

.device-hint code {
    background: var(--gray-100);
    padding: 2px 6px;
    border-radius: 4px;
    font-size: 0.75rem;
}

/* Feature grid enhanced */
.feature-link-grid-enhanced {
    gap: 20px;
}

.features-section-home .section-header p {
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
}

.feature-link-grid-enhanced .feature-link-card {
    padding: 28px 24px 24px;
    border-radius: var(--radius-lg);
    min-height: 220px;
    background:
        linear-gradient(180deg, #fff 0%, #fbfcfe 100%);
    border: 1px solid rgba(11, 37, 58, 0.08);
    box-shadow: 0 10px 28px rgba(11, 37, 58, 0.04);
    transition:
        transform 0.3s ease,
        border-color 0.3s ease,
        box-shadow 0.3s ease;
}

.feature-link-grid-enhanced .feature-link-card:hover {
    transform: translateY(-8px);
    border-color: rgba(241, 143, 34, 0.35);
    box-shadow: 0 20px 44px rgba(11, 37, 58, 0.1);
}

.feature-link-grid-enhanced .flc-num {
    position: absolute;
    top: 16px;
    right: 18px;
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 800;
    color: rgba(11, 37, 58, 0.06);
    line-height: 1;
}

.feature-link-grid-enhanced .flc-icon {
    width: 52px;
    height: 52px;
    font-size: 1.25rem;
    border-radius: 14px;
    background: linear-gradient(145deg, rgba(241, 143, 34, 0.16), rgba(241, 143, 34, 0.06));
    color: var(--orange-dark);
    border: 1px solid rgba(241, 143, 34, 0.18);
}

.feature-link-grid-enhanced .feature-link-card h3 {
    margin-top: 14px;
    font-size: 1.08rem;
}

.feature-link-grid-enhanced .feature-link-card p {
    font-size: 0.88rem;
    line-height: 1.55;
    color: var(--text-muted);
}

.feature-link-grid-enhanced .flc-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 14px;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--orange);
    opacity: 0;
    transform: translateX(-6px);
    transition:
        opacity 0.25s,
        transform 0.25s;
}

.feature-link-grid-enhanced .feature-link-card:hover .flc-link {
    opacity: 1;
    transform: translateX(0);
}

/* Capabilities showcase */
.capabilities-section {
    padding: 64px 0;
    background:
        radial-gradient(ellipse 70% 50% at 50% 0%, rgba(241, 143, 34, 0.1), transparent 60%),
        linear-gradient(180deg, #f4f7fb 0%, #fff 55%, #fff 100%);
}

.capabilities-spotlight {
    text-align: center;
    max-width: 820px;
    margin: 0 auto 36px;
    padding: 32px 28px;
    border-radius: 22px;
    background:
        linear-gradient(145deg, #0b253a 0%, #12324c 55%, #1a4060 100%);
    color: #fff;
    box-shadow: 0 20px 48px rgba(11, 37, 58, 0.22);
    position: relative;
    overflow: hidden;
}

.capabilities-spotlight::before {
    content: "";
    position: absolute;
    inset: auto -20% -40% auto;
    width: 280px;
    height: 280px;
    background: radial-gradient(circle, rgba(241, 143, 34, 0.35), transparent 70%);
    pointer-events: none;
}

.capabilities-spotlight-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 14px;
    padding: 6px 12px;
    border-radius: 999px;
    background: rgba(241, 143, 34, 0.18);
    border: 1px solid rgba(241, 143, 34, 0.35);
    color: #ffb347;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    position: relative;
    z-index: 1;
}

.capabilities-spotlight h2 {
    margin: 0 0 12px;
    font-size: clamp(1.35rem, 2.6vw, 1.9rem);
    color: #fff;
    line-height: 1.25;
    position: relative;
    z-index: 1;
}

.capabilities-spotlight h2 span {
    background: linear-gradient(135deg, #ffb347 0%, #f18f22 45%, #ffd59a 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.capabilities-spotlight p {
    margin: 0 auto;
    max-width: 58ch;
    color: rgba(255, 255, 255, 0.78);
    font-size: 0.98rem;
    line-height: 1.6;
    position: relative;
    z-index: 1;
}

.capabilities-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-top: 8px;
}

.capability-card {
    padding: 22px 18px;
    background: #fff;
    border: 1px solid rgba(11, 37, 58, 0.08);
    border-radius: 16px;
    box-shadow: 0 10px 28px rgba(11, 37, 58, 0.04);
    text-align: center;
    transition:
        transform 0.28s ease,
        border-color 0.28s ease,
        box-shadow 0.28s ease;
}

.capability-card:hover {
    transform: translateY(-6px);
    border-color: rgba(241, 143, 34, 0.32);
    box-shadow: 0 18px 40px rgba(11, 37, 58, 0.1);
}

.capability-icon {
    width: 46px;
    height: 46px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    background: rgba(241, 143, 34, 0.12);
    color: var(--orange-dark);
    font-size: 1.15rem;
    margin: 0 auto 12px;
}

.capability-card h3 {
    margin: 0 0 6px;
    font-size: 0.98rem;
    color: var(--navy);
}

.capability-card p {
    margin: 0;
    font-size: 0.84rem;
    line-height: 1.5;
    color: var(--text-muted);
}

.why-grid-enhanced {
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.why-section-enhanced .section-header p {
    color: rgba(255, 255, 255, 0.72);
    max-width: 620px;
    margin-left: auto;
    margin-right: auto;
}

.why-section-enhanced .why-card {
    text-align: center;
    padding: 26px 22px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 18px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.why-section-enhanced .why-card:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(241, 143, 34, 0.35);
}

.why-section-enhanced .why-icon-ring {
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(241, 143, 34, 0.16);
    color: var(--orange);
    border-radius: 14px;
    font-size: 1.2rem;
    margin: 0 auto 14px;
    border: 1px solid rgba(241, 143, 34, 0.28);
}

.why-section-enhanced .why-card h4 {
    margin-bottom: 8px;
    font-size: 1.05rem;
    text-align: center;
}

.why-section-enhanced .why-card p {
    margin: 0;
    font-size: 0.88rem;
    line-height: 1.55;
    color: rgba(255, 255, 255, 0.72);
    text-align: center;
}

@media (max-width: 1024px) {

    .capabilities-grid,
    .why-grid-enhanced {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {

    .capabilities-grid,
    .why-grid-enhanced {
        grid-template-columns: 1fr;
    }
}

/* How it works enhanced */
.how-it-works-enhanced {
    padding: 56px 0;
}

.steps-timeline {
    position: relative;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-top: 12px;
}

.steps-line {
    position: absolute;
    top: 52px;
    left: 16%;
    right: 16%;
    height: 2px;
    background: linear-gradient(90deg, var(--orange), rgba(241, 143, 34, 0.2));
    z-index: 0;
}

.step-card-enhanced {
    position: relative;
    z-index: 1;
    padding: 32px 24px 28px;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    text-align: center;
    transition:
        transform 0.3s,
        box-shadow 0.3s;
}

.step-card-enhanced:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-3d);
}

.step-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--orange);
    color: #fff;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 0.78rem;
    padding: 4px 12px;
    border-radius: 999px;
}

.step-icon-ring {
    width: 64px;
    height: 64px;
    margin: 8px auto 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--orange-soft);
    color: var(--orange);
    border-radius: 50%;
    font-size: 1.4rem;
    border: 3px solid #fff;
    box-shadow: 0 0 0 2px var(--orange-soft);
}

.step-card-enhanced h3 {
    font-family: var(--font-display);
    font-size: 1.15rem;
    color: var(--navy);
    margin-bottom: 10px;
}

.step-card-enhanced p {
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.55;
    margin-bottom: 16px;
}

.step-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    justify-content: center;
    list-style: none;
    padding: 0;
    margin: 0;
}

.step-tags li {
    font-size: 0.72rem;
    font-weight: 600;
    padding: 4px 10px;
    background: var(--gray-100);
    color: var(--navy);
    border-radius: 999px;
}

/* Stats band enhanced */
.stats-band-enhanced {
    padding: 48px 0;
    background: linear-gradient(135deg,
            var(--navy) 0%,
            #0d3048 50%,
            #0a2235 100%);
}

.stats-band-enhanced .stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.stat-card-enhanced {
    text-align: center;
    padding: 28px 20px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    transition:
        transform 0.3s,
        background 0.3s;
}

.stat-card-enhanced:hover {
    transform: translateY(-4px);
    background: rgba(255, 255, 255, 0.1);
}

.stat-icon-wrap {
    width: 48px;
    height: 48px;
    margin: 0 auto 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(241, 143, 34, 0.15);
    color: var(--orange);
    border-radius: 12px;
    font-size: 1.2rem;
}

.stat-card-enhanced .stat-values {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 2px;
    margin-bottom: 8px;
}

.stat-card-enhanced .stat-num {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 800;
    color: #fff;
    line-height: 1;
}

.stat-card-enhanced .stat-suffix {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--orange);
}

.stat-card-enhanced h4 {
    font-family: var(--font-display);
    font-size: 0.95rem;
    color: #fff;
    margin-bottom: 6px;
}

.stat-card-enhanced p {
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.45;
}

/* Integrations enhanced */
.integrations-enhanced {
    padding: 56px 0;
}

.integration-logo-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
}

.integration-logo-grid>.integration-logo-card {
    flex: 0 1 calc((100% - 64px) / 5);
    min-width: 0;
    box-sizing: border-box;
}

.integration-logo-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 22px 14px;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    text-align: center;
    transition:
        transform 0.25s,
        box-shadow 0.25s,
        border-color 0.25s;
}

.integration-logo-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-sm);
    border-color: rgba(241, 143, 34, 0.35);
}

.int-logo {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: #f8fafc;
    border: 1px solid var(--border);
    padding: 8px;
    overflow: hidden;
}

.int-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.int-logo.int-placeholder {
    border: none;
    padding: 0;
    font-family: var(--font-display);
    font-size: 1.35rem;
    font-weight: 800;
    color: #fff;
    letter-spacing: 0.02em;
}

.int-mews {
    background: linear-gradient(135deg, #6366f1, #4f46e5);
}

.int-siteminder {
    background: linear-gradient(135deg, #0ea5e9, #0284c7);
}

.int-apaleo {
    background: linear-gradient(135deg, #10b981, #059669);
}

.int-webrez {
    background: linear-gradient(135deg, #f59e0b, #d97706);
}

.int-room {
    background: linear-gradient(135deg, #8b5cf6, #7c3aed);
}

.int-stay {
    background: linear-gradient(135deg, #ec4899, #db2777);
}

.int-ihotel {
    background: linear-gradient(135deg, #ef4444, #dc2626);
}

.int-google {
    background: linear-gradient(135deg, #4285f4, #34a853);
}

.int-think {
    background: linear-gradient(135deg, #14b8a6, #0d9488);
}

.int-front {
    background: linear-gradient(135deg, #64748b, #475569);
}

.int-mcloud {
    background: linear-gradient(135deg, #06b6d4, #0891b2);
}

.int-booking {
    background: linear-gradient(135deg, #003580, #0057b8);
}

.int-expedia {
    background: linear-gradient(135deg, #ffc72c, #f5a623);
    color: #1a1a1a;
}

.integration-logo-card strong {
    font-size: 0.82rem;
    color: var(--navy);
    line-height: 1.2;
}

.integration-logo-card span:last-child,
.integration-logo-card .int-type {
    font-size: 0.68rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: var(--text-muted);
}

/* Integrations page */
.integrations-page-hero {
    padding: 48px 0 40px;
    text-align: center;
    background: linear-gradient(180deg, #fff 0%, #f4f7fb 55%, #fff 100%);
    border-bottom: 1px solid var(--border);
    position: relative;
    overflow: hidden;
}

.integrations-page-hero .badge-gold {
    margin-bottom: 14px;
}

.integrations-page-hero h1 {
    max-width: none;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    white-space: nowrap;
    font-size: clamp(1.05rem, 2.6vw + 0.55rem, 2.35rem);
    letter-spacing: -0.02em;
    line-height: 1.2;
}

@media (max-width: 420px) {
    .integrations-page-hero h1 {
        font-size: clamp(0.92rem, 4.2vw, 1.15rem);
    }
}

.integrations-page-hero .gradient-text {
    background: linear-gradient(135deg, var(--orange) 0%, #ff9f43 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.integrations-page-hero::before {
    content: "";
    position: absolute;
    top: -80px;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 300px;
    background: radial-gradient(ellipse,
            rgba(241, 143, 34, 0.1) 0%,
            transparent 70%);
    pointer-events: none;
}

.integrations-hero-stats {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 32px;
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
}

.integrations-hero-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    padding: 14px 22px;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    min-width: 120px;
    box-shadow: var(--shadow-sm);
    transition:
        transform 0.25s,
        border-color 0.25s;
}

.integrations-hero-stat:hover {
    transform: translateY(-3px);
    border-color: rgba(241, 143, 34, 0.35);
}

.integrations-hero-stat strong {
    font-family: var(--font-display);
    font-size: 1.35rem;
    color: var(--orange);
    line-height: 1;
}

.integrations-hero-stat span {
    font-size: 0.72rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-muted);
}

.integrations-page-main {
    padding-top: 56px;
    padding-bottom: 56px;
}

.integration-filters {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 32px;
}

.integration-filter {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    border: 1px solid var(--border);
    border-radius: 999px;
    background: #fff;
    color: var(--text-muted);
    font-family: inherit;
    font-size: 0.88rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.25s;
}

.integration-filter:hover {
    border-color: rgba(241, 143, 34, 0.4);
    color: var(--navy);
}

.integration-filter.is-active {
    background: var(--navy);
    border-color: var(--navy);
    color: #fff;
    box-shadow: 0 4px 16px rgba(11, 37, 58, 0.2);
}

.integration-filter.is-active i {
    color: var(--orange);
}

.integration-page-grid {
    gap: 18px;
}

.integration-page-grid>.integration-logo-card {
    flex: 0 1 calc((100% - 54px) / 4);
}

.integration-logo-card.is-filtered-out {
    display: none;
}

.integration-grid-note {
    text-align: center;
    margin-top: 28px;
    font-size: 0.88rem;
    color: var(--text-muted);
}

.integration-grid-note i {
    color: var(--orange);
    margin-right: 6px;
}

.integration-grid-note a {
    color: var(--orange);
    font-weight: 600;
    text-decoration: none;
}

.integration-grid-note a:hover {
    text-decoration: underline;
}

.integrations-category-stats {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 28px;
}

.integrations-category-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    min-width: 110px;
    padding: 12px 18px;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
}

.integrations-category-stat strong {
    font-family: var(--font-display);
    font-size: 1.2rem;
    color: var(--orange);
    line-height: 1;
}

.integrations-category-stat span {
    font-size: 0.68rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-muted);
    text-align: center;
}

.integration-filter-meta {
    text-align: center;
    margin-bottom: 20px;
    font-size: 0.88rem;
    color: var(--text-muted);
}

.integration-filter-meta strong {
    color: var(--orange);
    font-family: var(--font-display);
    font-size: 1.1rem;
}

.integrations-grid-shell {
    padding: 24px;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
}

.integration-card-enhanced {
    position: relative;
    padding-top: 22px;
    overflow: hidden;
}

.integration-card-enhanced .int-logo {
    width: 72px;
    height: 72px;
}

.integration-card-enhanced .int-logo.int-placeholder {
    font-size: 1.5rem;
}

.integration-card-enhanced .int-sync-hint {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    font-size: 0.65rem;
    font-weight: 600;
    color: var(--orange);
    opacity: 0;
    transform: translateY(4px);
    transition: opacity 0.25s, transform 0.25s;
}

.integration-card-enhanced:hover .int-sync-hint {
    opacity: 1;
    transform: translateY(0);
}

.integrations-benefits-section {
    padding: 56px 0;
}

.integrations-benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 40px;
}

.integrations-benefit-card {
    padding: 28px 22px;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    text-align: center;
    transition: transform 0.25s, box-shadow 0.25s;
}

.integrations-benefit-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-3d);
}

.integrations-benefit-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    margin-bottom: 14px;
    background: rgba(241, 143, 34, 0.1);
    color: var(--orange);
    border-radius: 14px;
    font-size: 1.2rem;
}

.integrations-benefit-card h4 {
    font-family: var(--font-display);
    font-size: 1rem;
    color: var(--navy);
    margin-bottom: 8px;
}

.integrations-benefit-card p {
    font-size: 0.82rem;
    color: var(--text-muted);
    line-height: 1.55;
    margin: 0;
}

.integrations-sync-section {
    padding: 64px 0;
}

.integrations-hub {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 20px;
    align-items: center;
    max-width: 880px;
    margin: 0 auto 40px;
}

.integrations-hub-col {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.integrations-hub-sources {
    align-items: flex-end;
}

.integrations-hub-destinations {
    align-items: flex-start;
}

.integrations-hub-node {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 18px;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--navy);
    min-width: 148px;
    box-shadow: var(--shadow-sm);
    transition:
        transform 0.25s,
        border-color 0.25s;
}

.integrations-hub-sources .integrations-hub-node {
    flex-direction: row-reverse;
}

.integrations-hub-node i {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--orange-soft);
    color: var(--orange);
    border-radius: 8px;
    font-size: 0.85rem;
    flex-shrink: 0;
}

.integrations-hub-node:hover {
    transform: translateX(4px);
    border-color: rgba(241, 143, 34, 0.35);
}

.integrations-hub-sources .integrations-hub-node:hover {
    transform: translateX(-4px);
}

.integrations-hub-center {
    display: flex;
    align-items: center;
    gap: 0;
    position: relative;
}

.integrations-hub-core {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    padding: 28px 32px;
    background: linear-gradient(145deg, var(--navy) 0%, #0d3048 100%);
    border-radius: var(--radius-lg);
    border: 2px solid rgba(241, 143, 34, 0.35);
    box-shadow:
        0 16px 48px rgba(11, 37, 58, 0.25),
        0 0 40px rgba(241, 143, 34, 0.1);
    text-align: center;
    min-width: 160px;
    z-index: 1;
}

.integrations-hub-pulse {
    position: absolute;
    inset: -8px;
    border: 2px solid rgba(241, 143, 34, 0.35);
    border-radius: calc(var(--radius-lg) + 8px);
    animation: integrations-hub-pulse 2.5s ease-out infinite;
    pointer-events: none;
}

@keyframes integrations-hub-pulse {
    0% {
        transform: scale(1);
        opacity: 0.7;
    }

    100% {
        transform: scale(1.12);
        opacity: 0;
    }
}

.integrations-hub-logo {
    width: 52px;
    height: auto;
    filter: brightness(1.1);
}

.integrations-hub-core strong {
    font-family: var(--font-display);
    font-size: 1.05rem;
    color: #fff;
}

.integrations-hub-core span {
    font-size: 0.72rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--orange);
}

.integrations-hub-lines {
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--orange), transparent);
    position: relative;
}

.integrations-hub-lines::before,
.integrations-hub-lines::after {
    content: "";
    position: absolute;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--orange);
    top: 50%;
    transform: translateY(-50%);
}

.integrations-hub-lines-left::after {
    right: 0;
}

.integrations-hub-lines-right::before {
    left: 0;
}

.integrations-sync-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    max-width: 880px;
    margin: 0 auto;
}

.integrations-sync-feature {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 20px 22px;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    transition:
        transform 0.25s,
        box-shadow 0.25s;
}

.integrations-sync-feature:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-sm);
}

.integrations-sync-icon {
    width: 44px;
    height: 44px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--orange-soft);
    color: var(--orange);
    border-radius: 12px;
    font-size: 1rem;
}

.integrations-sync-feature strong {
    display: block;
    font-size: 0.92rem;
    color: var(--navy);
    margin-bottom: 4px;
}

.integrations-sync-feature span {
    font-size: 0.82rem;
    color: var(--text-muted);
    line-height: 1.45;
}

.integrations-setup-section {
    padding: 56px 0;
}

.integrations-steps {
    margin-top: 20px;
}

.integrations-custom-section {
    padding: 56px 0;
}

/* Integrations FAQ */
.integrations-page-faq {
    padding: 56px 0;
    background: linear-gradient(180deg, #f4f7fb 0%, #fff 100%);
}

.integrations-faq-shell {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 28px;
    align-items: start;
    margin-top: 40px;
}

.integrations-faq-main {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.integrations-faq-item {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: border-color 0.25s, box-shadow 0.25s;
}

.integrations-faq-item:hover {
    border-color: rgba(241, 143, 34, 0.25);
}

.integrations-faq-item[open] {
    border-color: rgba(241, 143, 34, 0.35);
    box-shadow: 0 8px 28px rgba(11, 37, 58, 0.08);
}

.integrations-faq-item summary {
    padding: 20px 22px;
    cursor: pointer;
    font-weight: 600;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    color: var(--navy);
}

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

.integrations-faq-item summary::after {
    content: "+";
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    color: var(--orange);
    background: rgba(241, 143, 34, 0.1);
    border-radius: 50%;
    transition: transform 0.25s;
}

.integrations-faq-item[open] summary::after {
    transform: rotate(45deg);
}

.integrations-faq-item[open] summary {
    background: rgba(241, 143, 34, 0.04);
    border-bottom: 1px solid var(--border);
}

.integrations-faq-q {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.95rem;
    line-height: 1.4;
}

.integrations-faq-q i {
    flex-shrink: 0;
    width: 34px;
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(241, 143, 34, 0.1);
    color: var(--orange);
    border-radius: 10px;
    font-size: 0.82rem;
}

.integrations-faq-a {
    padding: 0 22px 20px 68px;
}

.integrations-faq-a p {
    margin: 16px 0 0;
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.65;
}

.integrations-faq-aside {
    display: flex;
    flex-direction: column;
    gap: 16px;
    position: sticky;
    top: calc(var(--header-h, 72px) + 24px);
}

.integrations-faq-glance {
    padding: 28px 24px;
    background: linear-gradient(135deg, var(--navy) 0%, #0d3048 60%, #0a2235 100%);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-3d);
    position: relative;
    overflow: hidden;
}

.integrations-faq-glance::before {
    content: "";
    position: absolute;
    top: -60px;
    right: -60px;
    width: 180px;
    height: 180px;
    background: radial-gradient(circle,
            rgba(241, 143, 34, 0.15) 0%,
            transparent 70%);
    pointer-events: none;
}

.integrations-faq-glance-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.68rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--orange);
    background: rgba(241, 143, 34, 0.15);
    border: 1px solid rgba(241, 143, 34, 0.25);
    padding: 5px 12px;
    border-radius: 999px;
    margin-bottom: 14px;
}

.integrations-faq-glance h3 {
    font-family: var(--font-display);
    font-size: 1.25rem;
    color: #fff;
    margin-bottom: 18px;
    line-height: 1.25;
    position: relative;
    z-index: 1;
}

.integrations-faq-glance-list {
    list-style: none;
    padding: 0;
    margin: 0;
    position: relative;
    z-index: 1;
}

.integrations-faq-glance-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 9px 0;
    font-size: 0.86rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.88);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.integrations-faq-glance-list li:last-child {
    border-bottom: none;
}

.integrations-faq-glance-list i {
    color: var(--orange);
    font-size: 0.72rem;
}

.integrations-faq-support {
    padding: 24px;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow-sm);
}

.integrations-faq-support-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    margin-bottom: 12px;
    background: rgba(241, 143, 34, 0.1);
    color: var(--orange);
    border-radius: 14px;
    font-size: 1.2rem;
}

.integrations-faq-support h4 {
    font-family: var(--font-display);
    font-size: 1.05rem;
    color: var(--navy);
    margin-bottom: 8px;
}

.integrations-faq-support p {
    font-size: 0.84rem;
    color: var(--text-muted);
    line-height: 1.55;
    margin-bottom: 16px;
}

/* Integrations trust band */
.integrations-trust-section {
    padding: 56px 0;
}

.integrations-trust-shell {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 48px;
    align-items: center;
    padding: 48px;
    background: linear-gradient(135deg, var(--navy) 0%, #0d3048 60%, #0a2235 100%);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-3d);
    overflow: hidden;
    position: relative;
}

.integrations-trust-shell::before {
    content: "";
    position: absolute;
    top: -80px;
    right: -80px;
    width: 280px;
    height: 280px;
    background: radial-gradient(circle,
            rgba(241, 143, 34, 0.15) 0%,
            transparent 70%);
    pointer-events: none;
}

.integrations-trust-content {
    position: relative;
    z-index: 1;
}

.integrations-trust-content .section-tag {
    background: rgba(241, 143, 34, 0.15);
    color: var(--orange);
    border: 1px solid rgba(241, 143, 34, 0.25);
}

.integrations-trust-content h2 {
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 2.5vw, 2rem);
    color: #fff;
    margin: 14px 0 12px;
    line-height: 1.2;
}

.integrations-trust-content>p {
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.92rem;
    line-height: 1.6;
    margin-bottom: 22px;
    max-width: 480px;
}

.integrations-trust-types {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.integrations-trust-types span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.82rem;
    font-weight: 600;
    color: #fff;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    padding: 8px 16px;
    border-radius: 999px;
}

.integrations-trust-types i {
    color: var(--orange);
    font-size: 0.78rem;
}

.integrations-trust-stats {
    display: flex;
    flex-direction: column;
    gap: 14px;
    position: relative;
    z-index: 1;
}

.integrations-trust-stat {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 20px 24px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius);
    transition: transform 0.25s, background 0.25s;
}

.integrations-trust-stat:hover {
    transform: translateX(6px);
    background: rgba(255, 255, 255, 0.1);
}

.integrations-trust-stat strong {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--orange);
    line-height: 1;
}

.integrations-trust-stat span {
    font-size: 0.78rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: rgba(255, 255, 255, 0.65);
}

.integrations-custom-card {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 48px;
    align-items: center;
    padding: 48px;
    background: linear-gradient(135deg,
            var(--navy) 0%,
            #0d3048 60%,
            #0a2235 100%);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-3d);
    overflow: hidden;
    position: relative;
}

.integrations-custom-card::before {
    content: "";
    position: absolute;
    top: -60px;
    right: -60px;
    width: 280px;
    height: 280px;
    background: radial-gradient(circle,
            rgba(241, 143, 34, 0.15) 0%,
            transparent 70%);
    pointer-events: none;
}

.integrations-custom-content {
    position: relative;
    z-index: 1;
}

.integrations-custom-content .section-tag {
    background: rgba(241, 143, 34, 0.15);
    color: var(--orange);
    border: 1px solid rgba(241, 143, 34, 0.25);
}

.integrations-custom-content h2 {
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 2.5vw, 2rem);
    color: #fff;
    margin: 14px 0 12px;
    line-height: 1.2;
}

.integrations-custom-content p {
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.95rem;
    line-height: 1.65;
    margin-bottom: 20px;
    max-width: 480px;
}

.integrations-custom-list {
    list-style: none;
    padding: 0;
    margin: 0 0 28px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.integrations-custom-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.85);
}

.integrations-custom-list i {
    color: var(--orange);
    font-size: 0.8rem;
}

.integrations-custom-visual {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
}

.integrations-custom-orbit {
    position: relative;
    width: 220px;
    height: 220px;
}

.integrations-orbit-ring {
    position: absolute;
    inset: 20px;
    border: 2px dashed rgba(241, 143, 34, 0.3);
    border-radius: 50%;
    animation: integrations-orbit-spin 20s linear infinite;
}

@keyframes integrations-orbit-spin {
    to {
        transform: rotate(360deg);
    }
}

.integrations-orbit-core {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 72px;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--orange);
    color: #fff;
    border-radius: 50%;
    font-size: 1.6rem;
    box-shadow: 0 8px 32px rgba(241, 143, 34, 0.4);
}

.integrations-orbit-node {
    position: absolute;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    color: #fff;
    font-size: 1rem;
}

.integrations-orbit-node-1 {
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
}

.integrations-orbit-node-2 {
    bottom: 20px;
    left: 12px;
}

.integrations-orbit-node-3 {
    bottom: 20px;
    right: 12px;
}

.integrations-page-cta {
    padding-bottom: 64px;
}

@media (max-width: 1024px) {
    .integration-page-grid>.integration-logo-card {
        flex-basis: calc((100% - 36px) / 3);
    }

    .integrations-hub {
        grid-template-columns: 1fr;
        gap: 24px;
        text-align: center;
    }

    .integrations-hub-col {
        align-items: center !important;
    }

    .integrations-hub-sources .integrations-hub-node {
        flex-direction: row;
    }

    .integrations-hub-center {
        order: -1;
        flex-direction: column;
        gap: 16px;
    }

    .integrations-hub-lines {
        width: 2px;
        height: 24px;
        background: linear-gradient(180deg,
                transparent,
                var(--orange),
                transparent);
    }

    .integrations-hub-lines::before,
    .integrations-hub-lines::after {
        display: none;
    }

    .integrations-custom-card {
        grid-template-columns: 1fr;
        gap: 32px;
        padding: 36px 32px;
    }

    .integrations-custom-visual {
        order: -1;
    }

    .integrations-custom-orbit {
        width: 180px;
        height: 180px;
    }

    .integrations-benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .integrations-faq-shell {
        grid-template-columns: 1fr;
    }

    .integrations-faq-aside {
        position: static;
        display: grid;
        grid-template-columns: 1fr 1fr;
    }

    .integrations-trust-shell {
        grid-template-columns: 1fr;
        padding: 36px 32px;
    }
}

@media (max-width: 768px) {
    .integration-page-grid>.integration-logo-card {
        flex-basis: calc((100% - 18px) / 2);
    }

    .integrations-hero-stats {
        gap: 8px;
    }

    .integrations-hero-stat {
        min-width: calc(50% - 8px);
        flex: 1;
        padding: 12px 14px;
    }

    .integration-filters {
        gap: 8px;
    }

    .integration-filter {
        padding: 8px 14px;
        font-size: 0.8rem;
    }

    .integrations-sync-features {
        grid-template-columns: 1fr;
    }

    .integrations-hub-node {
        min-width: 0;
        width: 100%;
        max-width: 260px;
    }

    .integrations-custom-card {
        padding: 28px 22px;
    }

    .integrations-benefits-grid {
        grid-template-columns: 1fr;
    }

    .integrations-faq-aside {
        grid-template-columns: 1fr;
    }

    .integrations-faq-a {
        padding-left: 22px;
    }

    .integrations-grid-shell {
        padding: 16px;
    }

    .integrations-page-hero {
        padding: 36px 0 32px;
    }

    .integrations-category-stats {
        gap: 8px;
    }

    .integrations-category-stat {
        min-width: calc(50% - 8px);
        flex: 1 1 calc(50% - 8px);
    }
}

@media (prefers-reduced-motion: reduce) {
    .integrations-orbit-ring {
        animation: none;
    }

    .integrations-hub-pulse {
        animation: none;
        display: none;
    }
}

/* Why section enhanced */
.why-section-enhanced .why-icon-ring {
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(241, 143, 34, 0.16);
    color: var(--orange);
    border-radius: 14px;
    font-size: 1.2rem;
    margin: 0 auto 14px;
    border: 1px solid rgba(241, 143, 34, 0.28);
}

.why-section-enhanced .why-card {
    text-align: center;
    padding: 26px 22px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Compare enhanced */
.compare-section-enhanced {
    padding: 56px 0;
    background: linear-gradient(180deg, #fff 0%, #f8fafc 100%);
}

.compare-cards {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 24px;
    align-items: stretch;
    max-width: 900px;
    margin: 0 auto;
}

.compare-card {
    padding: 32px 28px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    background: #fff;
}

.compare-manual {
    opacity: 0.85;
}

.compare-hotelitix {
    border-color: rgba(241, 143, 34, 0.4);
    box-shadow: 0 12px 40px rgba(241, 143, 34, 0.12);
    background: linear-gradient(180deg, #fff 0%, #fffbf5 100%);
}

.compare-card-head {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 22px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--border);
}

.compare-card-head i {
    font-size: 1.75rem;
    color: #6b7280;
}

.compare-card-head h3 {
    font-family: var(--font-display);
    font-size: 1.2rem;
    color: var(--navy);
}

.compare-logo {
    height: 32px;
    width: auto;
    padding: 4px 8px;
    background: #fff;
    border-radius: 6px;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.08);
}

.compare-card ul {
    list-style: none;
    padding: 0;
    margin: 0 0 20px;
}

.compare-card li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 0;
    font-size: 0.9rem;
    border-bottom: 1px solid var(--gray-100);
}

.compare-card li:last-child {
    border-bottom: none;
}

.compare-card li.no i {
    color: #ef4444;
}

.compare-card li.yes i {
    color: var(--orange);
}

.compare-vs {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    align-self: center;
    background: var(--navy);
    color: #fff;
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 0.85rem;
    border-radius: 50%;
    flex-shrink: 0;
}

.compare-hotelitix .btn {
    width: 100%;
}

.w-full {
    width: 100%;
}

/* Trial enhanced */
.trial-enhanced .trial-card {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 40px;
    align-items: center;
    padding: 48px;
    background: linear-gradient(135deg, var(--navy) 0%, #0d3048 100%);
    border-radius: var(--radius-lg);
    color: #fff;
    overflow: hidden;
}

.trial-enhanced .trial-content h2 {
    font-family: var(--font-display);
    font-size: clamp(1.4rem, 2.5vw, 1.85rem);
    color: #fff;
    margin: 14px 0 10px;
}

.trial-enhanced .trial-content p {
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 16px;
}

.trial-list {
    list-style: none;
    padding: 0;
    margin: 0 0 22px;
}

.trial-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 6px 0;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.85);
}

.trial-list li i {
    color: var(--orange);
}

.trial-visual.device-mini {
    display: flex;
    justify-content: center;
}

.trial-visual .laptop-chassis {
    width: 100%;
    max-width: 380px;
    transform: perspective(800px) rotateY(-8deg);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.35);
}

/* Testimonials enhanced */
.testimonials-enhanced .testimonial-enhanced {
    position: relative;
    padding: 32px 28px;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    transition:
        transform 0.3s,
        box-shadow 0.3s;
}

.testimonials-enhanced .testimonial-enhanced:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-3d);
}

.testimonial-stars {
    display: flex;
    gap: 3px;
    margin-bottom: 12px;
    color: var(--orange);
    font-size: 0.85rem;
}

.testimonials-enhanced .quote-icon {
    position: absolute;
    top: 24px;
    right: 24px;
    font-size: 2rem;
    color: rgba(241, 143, 34, 0.15);
}

.testimonials-enhanced .testimonial-author img {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--orange-soft);
}

/* Home CTA enhanced */
.home-cta-enhanced .home-cta-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    text-align: left;
    padding: 48px 52px;
    background: linear-gradient(135deg, var(--navy) 0%, #0d3048 100%);
    border: none;
    border-radius: var(--radius-lg);
    color: #fff;
}

.home-cta-enhanced .home-cta-content h2 {
    color: #fff;
    font-size: clamp(1.4rem, 2.5vw, 1.85rem);
    margin: 10px 0 8px;
}

.home-cta-enhanced .home-cta-content p {
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 0;
}

.home-cta-enhanced .section-tag {
    background: rgba(241, 143, 34, 0.2);
    border-color: rgba(241, 143, 34, 0.4);
    color: var(--orange);
}

.home-cta-actions {
    display: flex;
    gap: 12px;
    flex-shrink: 0;
    flex-wrap: wrap;
}

/* Footer bottom bar enhanced */
.footer-bottom-bar .footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
    padding: 18px 0;
    text-align: left;
}

.footer-bottom-brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer-bottom-tagline {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.4);
    margin: 0;
}

/* Responsive, enhanced sections */
@media (max-width: 1024px) {
    .integration-logo-grid>.integration-logo-card {
        flex-basis: calc((100% - 32px) / 3);
    }

    .stats-band-enhanced .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .steps-timeline {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .steps-line {
        display: none;
    }
}

@media (max-width: 768px) {
    .platform-showcase {
        padding: 36px 0 32px;
    }

    .device-stage {
        min-height: 280px;
    }

    .feature-link-grid-enhanced,
    .feature-link-grid {
        grid-template-columns: 1fr;
    }

    .integration-logo-grid>.integration-logo-card {
        flex-basis: calc((100% - 16px) / 2);
    }

    .compare-cards {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .compare-vs {
        width: 36px;
        height: 36px;
        font-size: 0.72rem;
        margin: 0 auto;
    }

    .trial-enhanced .trial-card {
        grid-template-columns: 1fr;
        padding: 32px 24px;
    }

    .trial-visual {
        order: -1;
    }

    .home-cta-enhanced .home-cta-box {
        flex-direction: column;
        text-align: center;
        padding: 36px 24px;
    }

    .home-cta-actions {
        justify-content: center;
    }

    .footer-bottom-bar .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .footer-bottom-brand {
        justify-content: center;
    }

    .stats-band-enhanced .stats-grid {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }

    .stat-card-enhanced .stat-num {
        font-size: 2rem;
    }

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

/* ══════════════════════════════════════════════════════════════
 SLIDER ANIMATIONS + GLOBAL MOTION + FLOATING FREE TRIAL
 ══════════════════════════════════════════════════════════════ */

/* Slide content stagger animations */
.slider-slide .slider-anim {
    opacity: 0;
    transform: translateY(28px);
}

.slider-slide.is-animating .slider-anim-1 {
    animation: sliderFadeUp 0.55s 0.08s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.slider-slide.is-animating .slider-anim-2 {
    animation: sliderFadeUp 0.6s 0.18s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.slider-slide.is-animating .slider-anim-3 {
    animation: sliderFadeUp 0.6s 0.28s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.slider-slide.is-animating .slider-anim-4 {
    animation: sliderFadeUp 0.6s 0.38s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.slider-slide.is-animating .slider-anim-5 {
    animation: sliderFadeUp 0.55s 0.48s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.slider-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-top: 20px;
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.65);
}

.slider-trust span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.slider-trust i {
    color: var(--orange);
    font-size: 0.78rem;
}

.gradient-shimmer {
    background-size: 200% auto;
    animation: textShimmer 4s linear infinite;
}

.slider-image-frame {
    position: relative;
    z-index: 1;
}

/* Floating Free Trial — vertical tab, flush to right edge */
.floating-trial-wrap {
    position: fixed;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 998;
    animation: floatingTrialBob 3.6s ease-in-out infinite;
    transition:
        opacity 0.4s ease,
        visibility 0.4s ease,
        transform 0.4s ease;
    filter: drop-shadow(-6px 10px 22px rgba(11, 37, 58, 0.28));
}

.floating-trial-wrap.is-hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-50%) translateX(100%);
}

.floating-trial {
    position: relative;
    display: block;
    text-decoration: none;
    color: #fff;
}

.floating-trial-pulse {
    position: absolute;
    inset: -6px 0 -6px -6px;
    border-radius: 18px 0 0 18px;
    border: 2px solid rgba(241, 143, 34, 0.5);
    border-right: none;
    animation: trialRingPulse 2.4s ease-out infinite;
    pointer-events: none;
}

.floating-trial-pulse-delay {
    animation-delay: 1.1s;
    border-color: rgba(255, 179, 71, 0.35);
}

.floating-trial-body {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 14px;
    width: 56px;
    padding: 20px 10px 22px;
    background:
        linear-gradient(180deg, #163a58 0%, #0b253a 48%, #071a2a 100%);
    border-radius: 16px 0 0 16px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-right: none;
    box-shadow:
        0 2px 0 rgba(255, 255, 255, 0.12) inset,
        -8px 0 0 #061525,
        -12px 8px 24px rgba(0, 0, 0, 0.28),
        -4px 0 18px rgba(241, 143, 34, 0.2);
    overflow: hidden;
    transition:
        transform 0.3s cubic-bezier(0.22, 1, 0.36, 1),
        width 0.3s ease,
        box-shadow 0.3s ease;
}

.floating-trial-body::before {
    content: "";
    position: absolute;
    top: -40%;
    left: 0;
    width: 100%;
    height: 45%;
    background: linear-gradient(180deg,
            rgba(255, 255, 255, 0.16) 0%,
            transparent 100%);
    animation: btnShineVertical 3.2s ease-in-out infinite;
    pointer-events: none;
}

.floating-trial-body::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg,
            rgba(241, 143, 34, 0.2) 0%,
            transparent 40%,
            transparent 70%,
            rgba(241, 143, 34, 0.12) 100%);
    pointer-events: none;
}

.floating-trial-icon {
    position: relative;
    z-index: 1;
    width: 36px;
    height: 36px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(145deg, #ffb347 0%, var(--orange) 45%, #e05a1a 100%);
    border-radius: 11px;
    font-size: 0.95rem;
    color: #fff;
    box-shadow:
        0 2px 0 rgba(255, 255, 255, 0.35) inset,
        0 5px 0 #b84a12,
        0 8px 14px rgba(241, 143, 34, 0.4);
    animation: iconWiggle 5s ease-in-out infinite;
}

.floating-trial-text {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

.floating-trial-text strong {
    font-family: var(--font-display);
    font-size: 0.82rem;
    font-weight: 800;
    color: #fff;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    writing-mode: vertical-rl;
    text-orientation: mixed;
    transform: rotate(180deg);
    white-space: nowrap;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.35);
}

.floating-trial-text small,
.floating-trial-arrow,
.floating-trial-badge {
    display: none;
}

.floating-trial-close {
    position: absolute;
    top: -10px;
    left: -10px;
    z-index: 3;
    width: 24px;
    height: 24px;
    border: none;
    border-radius: 50%;
    background: #fff;
    color: var(--navy);
    font-size: 0.65rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow:
        0 3px 0 #d0d7e0,
        0 6px 12px rgba(11, 37, 58, 0.22);
    transition:
        background 0.2s,
        color 0.2s,
        transform 0.2s;
}

.floating-trial-close:hover {
    background: var(--orange);
    color: #fff;
    transform: scale(1.08);
}

.floating-trial-wrap:hover {
    animation-play-state: paused;
}

.floating-trial:hover .floating-trial-body {
    width: 62px;
    transform: translateX(-4px);
    box-shadow:
        0 2px 0 rgba(255, 255, 255, 0.16) inset,
        -10px 0 0 #061525,
        -16px 10px 28px rgba(0, 0, 0, 0.32),
        -6px 0 22px rgba(241, 143, 34, 0.32);
}

.floating-trial:active .floating-trial-body {
    transform: translateX(-1px);
    box-shadow:
        0 2px 0 rgba(255, 255, 255, 0.1) inset,
        -4px 0 0 #061525,
        -8px 6px 16px rgba(0, 0, 0, 0.28);
}

@keyframes badgeBounce {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-3px);
    }
}

.slider-progress-bar {
    display: block;
    height: 100%;
    width: 0;
    background: linear-gradient(90deg, var(--orange), #ffb347, var(--orange));
    background-size: 200% 100%;
    animation:
        sliderProgress 5.5s linear forwards,
        progressShimmer 2s linear infinite;
    box-shadow: 0 0 12px rgba(241, 143, 34, 0.5);
}

/* Global animation utilities */
.reveal-left {
    opacity: 0;
    transform: translateX(-36px);
    transition:
        opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1),
        transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal-right {
    opacity: 0;
    transform: translateX(36px);
    transition:
        opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1),
        transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal-scale {
    opacity: 0;
    transform: scale(0.92);
    transition:
        opacity 0.65s cubic-bezier(0.22, 1, 0.36, 1),
        transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal-left.visible,
.reveal-right.visible,
.reveal-scale.visible {
    opacity: 1;
    transform: translate(0) scale(1);
}

.delay-3 {
    transition-delay: 0.3s;
}

.delay-4 {
    transition-delay: 0.4s;
}

[data-stagger] .stagger-item {
    opacity: 0;
    transform: translateY(24px);
    animation: staggerIn 0.55s cubic-bezier(0.22, 1, 0.36, 1) forwards;
    animation-delay: calc(var(--stagger-i, 0) * 0.08s + 0.1s);
}

[data-stagger].reveal:not(.visible) .stagger-item {
    animation: none;
    opacity: 0;
}

[data-stagger].reveal.visible .stagger-item,
[data-stagger]:not(.reveal) .stagger-item {
    animation: staggerIn 0.55s cubic-bezier(0.22, 1, 0.36, 1) forwards;
    animation-delay: calc(var(--stagger-i, 0) * 0.08s + 0.1s);
}

.section-tag {
    animation: tagGlow 3s ease-in-out infinite;
}

.btn-shine {
    position: relative;
    overflow: hidden;
}

.btn-shine::after {
    content: "";
    position: absolute;
    top: -50%;
    left: -80%;
    width: 50%;
    height: 200%;
    background: linear-gradient(90deg,
            transparent,
            rgba(255, 255, 255, 0.35),
            transparent);
    transform: skewX(-20deg);
    animation: btnShine 3.5s ease-in-out infinite;
}

.feature-link-card,
.stat-card-enhanced,
.step-card-enhanced,
.integration-logo-card,
.testimonial-enhanced,
.why-card {
    transition:
        transform 0.35s cubic-bezier(0.22, 1, 0.36, 1),
        box-shadow 0.35s ease,
        border-color 0.35s ease;
}

.nav-link,
.btn {
    transition:
        transform 0.25s cubic-bezier(0.22, 1, 0.36, 1),
        box-shadow 0.25s ease,
        background 0.25s ease,
        color 0.25s ease;
}

.page-view>section:first-child {
    animation: sectionFadeIn 0.6s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

/* Keyframes */
@keyframes sliderFadeUp {
    from {
        opacity: 0;
        transform: translateY(28px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes sliderProgress {
    from {
        width: 0%;
    }

    to {
        width: 100%;
    }
}

@keyframes progressShimmer {
    from {
        background-position: 200% 0;
    }

    to {
        background-position: -200% 0;
    }
}

@keyframes orbFloat1 {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    50% {
        transform: translate(30px, -20px) scale(1.08);
    }
}

@keyframes orbFloat2 {

    0%,
    100% {
        transform: translate(0, 0);
    }

    50% {
        transform: translate(-20px, 25px);
    }
}

@keyframes orbFloat3 {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    50% {
        transform: translate(-25px, 15px) scale(1.05);
    }
}

@keyframes gridDrift {
    from {
        background-position: 0 0;
    }

    to {
        background-position: 48px 48px;
    }
}

@keyframes textShimmer {
    0% {
        background-position: 0% center;
    }

    100% {
        background-position: 200% center;
    }
}

@keyframes floatingTrialBob {

    0%,
    100% {
        transform: translateY(-50%);
    }

    50% {
        transform: translateY(calc(-50% - 8px));
    }
}

@keyframes btnShineVertical {

    0%,
    100% {
        opacity: 0.35;
        transform: translateY(0);
    }

    50% {
        opacity: 0.7;
        transform: translateY(12px);
    }
}

@keyframes trialRingPulse {
    0% {
        transform: scale(1);
        opacity: 0.6;
    }

    100% {
        transform: scale(1.15);
        opacity: 0;
    }
}

@keyframes iconWiggle {

    0%,
    100% {
        transform: rotate(0deg);
    }

    25% {
        transform: rotate(-8deg);
    }

    75% {
        transform: rotate(8deg);
    }
}

@keyframes btnShine {
    0% {
        left: -80%;
    }

    45% {
        left: 130%;
    }

    100% {
        left: 130%;
    }
}

@keyframes staggerIn {
    from {
        opacity: 0;
        transform: translateY(24px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes tagGlow {

    0%,
    100% {
        box-shadow: 0 0 0 rgba(241, 143, 34, 0);
    }

    50% {
        box-shadow: 0 0 12px rgba(241, 143, 34, 0.15);
    }
}

@keyframes sectionFadeIn {
    from {
        opacity: 0;
        transform: translateY(12px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    .floating-trial,
    .floating-trial-wrap {
        animation: none;
    }

    .floating-trial-wrap {
        transform: translateY(-50%);
    }

    [data-stagger] .stagger-item {
        opacity: 1;
        transform: none;
        animation: none;
    }
}

@media (max-width: 768px) {
    .floating-trial-wrap {
        right: 0;
        top: 50%;
        bottom: auto;
        transform: translateY(-50%);
        animation: floatingTrialBob 3.6s ease-in-out infinite;
    }

    .floating-trial-wrap.is-hidden {
        transform: translateY(-50%) translateX(100%);
    }

    .floating-trial-body {
        width: 48px;
        padding: 16px 8px 18px;
        gap: 12px;
    }

    .floating-trial-icon {
        width: 32px;
        height: 32px;
        font-size: 0.85rem;
    }

    .floating-trial-text strong {
        font-size: 0.72rem;
        letter-spacing: 0.12em;
    }

    .floating-trial-close {
        top: -8px;
        left: -8px;
    }

    .floating-trial:hover .floating-trial-body {
        width: 52px;
    }

    .slider-counter {
        display: none;
    }

    .slider-trust {
        gap: 10px;
        font-size: 0.75rem;
    }
}

@keyframes floatingTrialBobMobile {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-6px);
    }
}

/* ── Form validation, captcha, 3D notifications ── */
.form-group.is-invalid input,
.form-group.is-invalid select,
.form-group.is-invalid textarea,
.form-captcha.is-invalid .captcha-answer {
    border-color: #e05252;
    box-shadow:
        0 0 0 3px rgba(224, 82, 82, 0.18),
        inset 0 1px 2px rgba(224, 82, 82, 0.08);
}

.form-group.is-valid input,
.form-group.is-valid select,
.form-group.is-valid textarea {
    border-color: #2fbf71;
    box-shadow:
        0 0 0 3px rgba(47, 191, 113, 0.16),
        inset 0 1px 2px rgba(47, 191, 113, 0.06);
}

.field-error {
    margin: 8px 0 0;
    font-size: 0.82rem;
    font-weight: 600;
    color: #d64545;
}

.form-captcha .captcha-panel {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 14px;
    align-items: center;
    padding: 14px;
    border: 1px solid var(--border);
    border-radius: 12px;
    background: linear-gradient(145deg, #ffffff 0%, #f4f8fc 100%);
    box-shadow:
        0 10px 24px rgba(11, 37, 58, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.form-captcha.is-loading .captcha-panel {
    opacity: 0.65;
    pointer-events: none;
}

.captcha-image {
    flex-shrink: 0;
    line-height: 0;
    min-width: 120px;
    min-height: 48px;
}

.captcha-image.is-empty {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px;
    background: #f8fafc;
    border: 1px dashed #cbd5e1;
    border-radius: 8px;
    font-size: 0.72rem;
    line-height: 1.35;
    color: #64748b;
    text-align: center;
}

.captcha-image svg {
    display: block;
    border-radius: 10px;
    box-shadow: 0 6px 16px rgba(11, 37, 58, 0.12);
}

.captcha-label {
    margin: 0 0 10px;
    font-size: 0.82rem;
    color: var(--text-muted);
    line-height: 1.45;
}

.captcha-input-row {
    display: flex;
    gap: 8px;
    align-items: center;
}

.captcha-input-row .captcha-answer {
    flex: 1;
    min-width: 0;
}

.captcha-refresh {
    width: 44px;
    height: 44px;
    border: 1px solid var(--border);
    border-radius: 10px;
    background: #fff;
    color: var(--navy);
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
    box-shadow: 0 4px 10px rgba(11, 37, 58, 0.08);
}

.captcha-refresh:hover {
    transform: rotate(90deg);
    box-shadow: 0 6px 14px rgba(11, 37, 58, 0.12);
}

.footer-newsletter {
    flex-direction: column;
    align-items: stretch;
}

.footer-newsletter .form-captcha-compact {
    width: 100%;
    display: block;
}

.footer-newsletter-row {
    display: flex;
    gap: 8px;
}

.footer-newsletter .form-captcha {
    margin-top: 10px;
    margin-bottom: 0;
}

.footer-newsletter .form-captcha.form-captcha-compact label {
    color: rgba(255, 255, 255, 0.82);
    font-size: 0.78rem;
    margin-bottom: 6px;
}

.footer-newsletter .form-captcha-compact .captcha-panel {
    grid-template-columns: auto 1fr;
    gap: 8px;
    padding: 8px 10px;
    align-items: center;
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.14);
    box-shadow: none;
}

.footer-newsletter .form-captcha-compact .captcha-image {
    width: 168px;
    min-width: 168px;
    min-height: 50px;
    background: #ffffff;
    border-radius: 8px;
    overflow: hidden;
}

.footer-newsletter .form-captcha-compact .captcha-image svg {
    width: 168px;
    height: 50px;
    max-width: none;
    display: block;
}

.footer-newsletter .form-captcha-compact .captcha-label {
    display: block;
    margin: 0 0 6px;
    font-size: 0.72rem;
    color: rgba(255, 255, 255, 0.72);
    line-height: 1.3;
}

.footer-newsletter .form-captcha-compact .captcha-input-row {
    gap: 6px;
}

.footer-newsletter .form-captcha-compact .captcha-answer {
    padding: 9px 10px;
    font-size: 0.84rem;
    min-height: 0;
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.18);
    color: #fff;
}

.footer-newsletter .form-captcha-compact .captcha-answer::placeholder {
    color: rgba(255, 255, 255, 0.45);
}

.footer-newsletter .form-captcha-compact .captcha-refresh {
    width: 36px;
    height: 36px;
    flex-shrink: 0;
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.18);
    color: #fff;
}

.footer-newsletter .form-captcha-compact .captcha-refresh:hover {
    background: rgba(241, 143, 34, 0.22);
    border-color: rgba(241, 143, 34, 0.45);
    color: #fff;
}

.notify-stack {
    position: fixed;
    top: calc(var(--top-bar-h) + var(--header-h) + 16px);
    right: 16px;
    z-index: 10050;
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: min(380px, calc(100vw - 32px));
    pointer-events: none;
}

.notify-3d {
    position: relative;
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 12px;
    align-items: start;
    padding: 16px 14px;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.65);
    background: linear-gradient(160deg, #ffffff 0%, #f7fafc 100%);
    box-shadow:
        0 18px 36px rgba(11, 37, 58, 0.18),
        0 6px 0 rgba(11, 37, 58, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.95);
    transform: perspective(900px) rotateX(8deg) translateY(-12px) scale(0.96);
    opacity: 0;
    transition:
        transform 0.34s cubic-bezier(0.22, 1, 0.36, 1),
        opacity 0.34s ease;
    pointer-events: auto;
}

.notify-3d.is-visible {
    transform: perspective(900px) rotateX(0deg) translateY(0) scale(1);
    opacity: 1;
}

.notify-3d-icon {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    display: grid;
    place-items: center;
    font-size: 1.1rem;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.65),
        0 5px 12px rgba(11, 37, 58, 0.12);
}

.notify-3d-body {
    min-width: 0;
}

.notify-3d-body strong {
    display: block;
    font-size: 0.92rem;
    margin-bottom: 4px;
    color: var(--navy);
}

.notify-3d-body p {
    margin: 0;
    font-size: 0.84rem;
    line-height: 1.45;
    color: var(--text-muted);
}

.notify-3d-close {
    border: none;
    background: transparent;
    color: var(--text-muted);
    cursor: pointer;
    padding: 4px;
    font-size: 0.9rem;
}

.notify-success {
    border-color: rgba(47, 191, 113, 0.35);
    box-shadow:
        0 18px 36px rgba(24, 128, 74, 0.18),
        0 6px 0 rgba(24, 128, 74, 0.12),
        inset 0 1px 0 rgba(255, 255, 255, 0.95);
}

.notify-success .notify-3d-icon {
    background: linear-gradient(145deg, #eafff3, #c9f5dc);
    color: #16804a;
}

.notify-warning {
    border-color: rgba(241, 143, 34, 0.4);
    box-shadow:
        0 18px 36px rgba(180, 98, 16, 0.18),
        0 6px 0 rgba(180, 98, 16, 0.12),
        inset 0 1px 0 rgba(255, 255, 255, 0.95);
}

.notify-warning .notify-3d-icon {
    background: linear-gradient(145deg, #fff6ea, #ffe2bf);
    color: #b86210;
}

.notify-error,
.notify-required {
    border-color: rgba(224, 82, 82, 0.35);
    box-shadow:
        0 18px 36px rgba(160, 40, 40, 0.18),
        0 6px 0 rgba(160, 40, 40, 0.12),
        inset 0 1px 0 rgba(255, 255, 255, 0.95);
}

.notify-error .notify-3d-icon,
.notify-required .notify-3d-icon {
    background: linear-gradient(145deg, #fff0f0, #ffd6d6);
    color: #c03939;
}

@media (max-width: 768px) {
    .notify-stack {
        left: 16px;
        right: 16px;
        width: auto;
    }

    .footer-newsletter .form-captcha-compact .captcha-panel {
        grid-template-columns: auto 1fr !important;
    }

    .form-captcha:not(.form-captcha-compact) .captcha-panel {
        grid-template-columns: 1fr;
    }
}


/* Feature cards with photos */
.feature-link-card-media {
    overflow: hidden;
    padding-top: 0;
}

.feature-link-card-media .flc-media {
    margin: 0 -24px 18px;
    height: 140px;
    overflow: hidden;
    border-radius: 14px 14px 0 0;
    background: #0b253a;
}

.feature-link-card-media .flc-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.45s ease;
}

.feature-link-card-media:hover .flc-media img {
    transform: scale(1.06);
}

.feature-link-card-media .flc-num {
    position: static;
    display: inline-block;
    margin-bottom: 8px;
}

.feature-link-card-media {
    padding: 0 24px 28px;
}

.feature-link-card-media .flc-icon,
.feature-link-card-media h3,
.feature-link-card-media p,
.feature-link-card-media .flc-link {
    position: relative;
    z-index: 1;
}

/* Real partner logos */
.int-logo {
    background: #fff;
}

.int-logo img {
    object-fit: contain;
}

/* Pricing verified feature icons */
.pricing-card-enhanced .plan-features li i.fa-circle-check {
    background: rgba(34, 197, 94, 0.14);
    color: #16a34a;
}

.pricing-card-enhanced .plan-features li i.fa-circle-xmark {
    background: rgba(239, 68, 68, 0.1);
    color: #ef4444;
}

.pricing-card-enhanced .plan-features li.excluded {
    opacity: 0.55;
}

.pricing-card-enhanced .base-fee {
    width: 100%;
    justify-content: center;
    margin-top: 4px;
    margin-bottom: 18px;
}

/* Support & legal pages */
.support-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 36px;
}

.support-card {
    padding: 28px 24px;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 18px;
    box-shadow: var(--shadow-sm);
}

.support-card i {
    width: 46px;
    height: 46px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: rgba(241, 143, 34, 0.12);
    color: var(--orange);
    margin-bottom: 14px;
    font-size: 1.1rem;
}

.support-card h3 {
    margin-bottom: 8px;
    font-size: 1.1rem;
}

.support-card p {
    color: var(--text-muted);
    font-size: 0.92rem;
    line-height: 1.55;
    margin-bottom: 14px;
}

.legal-content {
    max-width: 860px;
    margin: 0 auto;
}

.legal-block {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 18px;
    padding: 36px 40px;
    margin-bottom: 28px;
    box-shadow: var(--shadow-sm);
}

.legal-block h2 {
    margin-bottom: 16px;
    font-size: 1.6rem;
}

.legal-block h3 {
    margin-top: 28px;
    margin-bottom: 10px;
    font-size: 1.15rem;
}

.legal-block h4 {
    margin-top: 18px;
    margin-bottom: 8px;
    font-size: 1rem;
}

.legal-block p,
.legal-block li {
    color: var(--text-muted);
    line-height: 1.7;
}

.legal-block ul {
    padding-left: 1.2rem;
    margin: 10px 0 16px;
}

.legal-block li {
    margin-bottom: 6px;
}

.calendly-embed-wrap {
    min-height: 700px;
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid var(--border);
    background: #fff;
    box-shadow: var(--shadow-sm);
}

.calendly-embed-wrap iframe {
    width: 100%;
    min-height: 700px;
    border: 0;
}

@media (max-width: 990px) {
    .support-grid {
        grid-template-columns: 1fr;
    }

    .legal-block {
        padding: 28px 22px;
    }
}

/* Integration logos - always light well, no black background */
.int-logo,
.int-logo.int-logo-dark {
    background: #fff !important;
    border: 1px solid var(--border);
    padding: 8px;
}

.int-logo img,
.int-logo.int-logo-dark img {
    object-fit: contain;
}

.integration-logo-card .int-logo {
    width: 72px;
    height: 72px;
}

.support-grid {
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

/* ===== Support page enhanced ===== */
.support-page-hero {
    text-align: center;
    padding: 56px 0 48px;
    background:
        radial-gradient(ellipse 70% 50% at 50% -10%, rgba(241, 143, 34, 0.18), transparent 60%),
        linear-gradient(180deg, #0b253a 0%, #12324c 55%, #1a4060 100%);
    color: #fff;
    border-bottom: none;
    position: relative;
    overflow: hidden;
}

.support-page-hero .section-tag {
    color: rgba(255, 255, 255, 0.75);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.14);
}

.support-page-hero h1 {
    color: #fff;
    max-width: 820px;
    margin-left: auto;
    margin-right: auto;
}

.support-page-hero .page-hero-desc {
    color: rgba(255, 255, 255, 0.78);
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
}

.support-page-hero .gradient-text {
    background: linear-gradient(135deg, #ffb347 0%, #f18f22 50%, #ffd59a 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.support-hero-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin-top: 28px;
}

.support-page-hero .btn-outline {
    border-color: rgba(255, 255, 255, 0.35);
    color: #fff;
}

.support-page-hero .btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #fff;
}

.support-hero-stats {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
    max-width: 900px;
    margin: 36px auto 0;
}

.support-hero-stat {
    padding: 16px 12px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(8px);
}

.support-hero-stat strong {
    display: block;
    font-family: var(--font-display);
    font-size: 1.35rem;
    color: #ffb347;
    line-height: 1.1;
    margin-bottom: 4px;
}

.support-hero-stat span {
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.7);
}

.support-topics-section {
    padding-top: 56px;
}

.support-grid-enhanced {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
    margin-top: 36px;
}

.support-card-enhanced {
    position: relative;
    display: flex;
    flex-direction: column;
    padding: 28px 24px 24px;
    background: #fff;
    border: 1px solid rgba(11, 37, 58, 0.08);
    border-radius: 20px;
    box-shadow: 0 10px 28px rgba(11, 37, 58, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    overflow: hidden;
}

.support-card-enhanced::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--orange-dark), var(--orange), #ffb347);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.support-card-enhanced:hover {
    transform: translateY(-6px);
    border-color: rgba(241, 143, 34, 0.35);
    box-shadow: 0 18px 40px rgba(11, 37, 58, 0.1);
}

.support-card-enhanced:hover::before {
    opacity: 1;
}

.support-card-num {
    position: absolute;
    top: 16px;
    right: 18px;
    font-family: var(--font-display);
    font-size: 0.78rem;
    font-weight: 800;
    color: rgba(11, 37, 58, 0.18);
}

.support-card-enhanced i {
    width: 48px;
    height: 48px;
    margin-bottom: 16px;
    border-radius: 14px;
    background: linear-gradient(145deg, rgba(241, 143, 34, 0.16), rgba(241, 143, 34, 0.06));
    color: var(--orange-dark);
}

.support-card-enhanced h3 {
    font-size: 1.12rem;
    margin-bottom: 10px;
    color: var(--navy);
    padding-right: 28px;
}

.support-card-enhanced p {
    flex: 1;
    margin-bottom: 14px;
}

.support-card-list {
    list-style: none;
    margin: 0 0 18px;
    padding: 0;
}

.support-card-list li {
    position: relative;
    padding: 6px 0 6px 18px;
    font-size: 0.84rem;
    color: var(--navy-muted);
    border-bottom: 1px solid rgba(11, 37, 58, 0.05);
}

.support-card-list li:last-child {
    border-bottom: none;
}

.support-card-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 12px;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--orange);
}

.support-card-enhanced .btn {
    margin-top: auto;
    align-self: flex-start;
}

.support-card-featured {
    background: linear-gradient(180deg, #fff8ef 0%, #fff 55%);
    border-color: rgba(241, 143, 34, 0.35);
}

.support-process {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 36px;
}

.support-process-step {
    position: relative;
    padding: 28px 24px;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 18px;
    box-shadow: var(--shadow-sm);
}

.support-process-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    margin-bottom: 14px;
    border-radius: 50%;
    background: var(--gradient);
    color: #fff;
    font-weight: 800;
    font-size: 0.95rem;
}

.support-process-step h3 {
    font-size: 1.05rem;
    margin-bottom: 8px;
    color: var(--navy);
}

.support-process-step p {
    color: var(--text-muted);
    font-size: 0.92rem;
    line-height: 1.55;
    margin: 0;
}

.support-channels {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-top: 36px;
}

.support-channel-card {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    padding: 22px 18px;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 16px;
    text-decoration: none;
    color: inherit;
    box-shadow: var(--shadow-sm);
    transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.support-channel-card:hover {
    transform: translateY(-4px);
    border-color: rgba(241, 143, 34, 0.4);
    box-shadow: 0 14px 32px rgba(11, 37, 58, 0.08);
}

.support-channel-card i {
    width: 42px;
    height: 42px;
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: rgba(241, 143, 34, 0.12);
    color: var(--orange);
}

.support-channel-card strong {
    display: block;
    color: var(--navy);
    margin-bottom: 2px;
}

.support-channel-card span {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--orange-dark);
    margin-bottom: 4px;
}

.support-channel-card small {
    display: block;
    font-size: 0.78rem;
    color: var(--text-muted);
    line-height: 1.4;
}

.support-faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
    margin-top: 32px;
}

.support-faq-grid .faq-item {
    margin: 0;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 4px 16px;
}

@media (max-width: 990px) {

    .support-hero-stats,
    .support-grid-enhanced,
    .support-process,
    .support-channels,
    .support-faq-grid {
        grid-template-columns: 1fr;
    }

    .support-hero-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .support-hero-actions .btn {
        width: 100%;
    }
}

@media (min-width: 991px) and (max-width: 1200px) {
    .support-grid-enhanced {
        grid-template-columns: repeat(2, 1fr);
    }

    .support-channels {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ===== Legal pages full width ===== */
.legal-page-section {
    padding-top: 40px;
    padding-bottom: 64px;
    background: linear-gradient(180deg, #f4f7fb 0%, #fff 28%, #fff 100%);
}

.container-wide {
    max-width: 1180px !important;
    width: 100%;
}

.legal-content.legal-content-full,
.legal-content-full {
    max-width: none !important;
    width: 100%;
    margin: 0 !important;
}

.legal-block.legal-block-full,
.legal-block-full {
    width: 100%;
    max-width: none;
    margin: 0;
    padding: 40px 48px 48px;
    border-radius: 20px;
    background: #fff;
    border: 1px solid rgba(11, 37, 58, 0.08);
    box-shadow: 0 12px 36px rgba(11, 37, 58, 0.05);
}

.legal-block-full h3:first-of-type {
    margin-top: 28px;
}

.legal-block-full h3 {
    padding-top: 8px;
    border-top: 1px solid rgba(11, 37, 58, 0.06);
}

.legal-block-full h3:first-of-type {
    border-top: none;
    padding-top: 0;
}

.legal-page-section .page-hero-desc,
.legal-page-section+.section {
    /* no-op keep cascade clean */
}

@media (max-width: 768px) {
    .legal-block-full {
        padding: 28px 20px 32px;
        border-radius: 16px;
    }

    .support-page-hero {
        padding: 44px 0 36px;
    }
}