/* =========================================
   ETERNAL LIFESTYLE — Design System & Styles
   ========================================= */

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800;900&family=Playfair+Display:ital,wght@0,700;0,800;1,700&display=swap');

/* ── CSS Variables ── */
:root {
    --gold: #c9a84c;
    --gold-light: #e2c47a;
    --gold-dark: #a07830;
    --navy: #060c1a;
    --navy-2: #0b1428;
    --navy-3: #101e38;
    --purple: #1a0a2e;
    --purple-mid: #2d1060;
    --white: #ffffff;
    --off-white: #f0ece4;
    --text-muted: #8a96b0;
    --glass-bg: rgba(255, 255, 255, 0.04);
    --glass-border: rgba(201, 168, 76, 0.2);
    --glass-border-light: rgba(255, 255, 255, 0.08);
    --shadow-gold: 0 0 40px rgba(201, 168, 76, 0.2);
    --shadow-card: 0 8px 40px rgba(0, 0, 0, 0.4);
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 40px;
    --transition: all 0.35s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* ── Reset & Base ── */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Outfit', sans-serif;
    background-color: var(--navy);
    color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}

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

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

ul {
    list-style: none;
}

/* ── Scrollbar ── */
::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-track {
    background: var(--navy-2);
}

::-webkit-scrollbar-thumb {
    background: var(--gold-dark);
    border-radius: 3px;
}

/* ── Utility ── */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold);
    background: rgba(201, 168, 76, 0.1);
    border: 1px solid var(--glass-border);
    padding: 6px 16px;
    border-radius: 100px;
    margin-bottom: 20px;
}

.section-tag::before {
    content: '';
    width: 6px;
    height: 6px;
    background: var(--gold);
    border-radius: 50%;
    display: inline-block;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(32px, 4vw, 52px);
    font-weight: 800;
    line-height: 1.15;
    color: var(--white);
}

.section-title span {
    color: var(--gold);
}

.section-subtitle {
    font-size: 17px;
    color: var(--text-muted);
    max-width: 600px;
    margin-top: 14px;
    line-height: 1.8;
}

.gold-line {
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--gold), transparent);
    border-radius: 3px;
    margin: 20px 0;
}

/* ── Buttons ── */
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--navy);
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 15px;
    padding: 16px 36px;
    border-radius: 100px;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 4px 24px rgba(201, 168, 76, 0.35);
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.25), transparent);
    transition: left 0.5s ease;
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 36px rgba(201, 168, 76, 0.55);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: transparent;
    color: var(--white);
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    font-size: 15px;
    padding: 15px 36px;
    border-radius: 100px;
    border: 1px solid var(--glass-border);
    cursor: pointer;
    transition: var(--transition);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    border-color: var(--gold);
    color: var(--gold);
    transform: translateY(-3px);
    background: rgba(201, 168, 76, 0.07);
}

/* ── Noise Overlay ── */
.noise-overlay {
    position: fixed;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 0;
    opacity: 0.5;
}

/* ── NAVBAR ── */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 20px 0;
    transition: var(--transition);
}

.navbar.scrolled {
    background: rgba(6, 12, 26, 0.9);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--glass-border);
    padding: 12px 0;
}

.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.nav-logo-mark {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 18px;
    color: var(--navy);
}

.nav-logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.nav-logo-text .brand {
    font-size: 17px;
    font-weight: 800;
    color: var(--white);
}

.nav-logo-text .tagline {
    font-size: 10px;
    color: var(--gold);
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 500;
}

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

.nav-links a {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-muted);
    transition: var(--transition);
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--gold);
    transition: width 0.3s ease;
}

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

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

.nav-cta {
    display: flex;
    align-items: center;
    gap: 16px;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 4px;
}

.hamburger span {
    width: 24px;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: var(--transition);
}

/* ── HERO ── */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding-top: 80px;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: url('hero_bg.png') center/cover no-repeat;
    z-index: 0;
}

.hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg,
            rgba(6, 12, 26, 0.75) 0%,
            rgba(26, 10, 46, 0.5) 50%,
            rgba(6, 12, 26, 0.85) 100%);
}

.hero-orbs {
    position: absolute;
    inset: 0;
    overflow: hidden;
    z-index: 1;
}

.orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    animation: floatOrb 8s ease-in-out infinite;
}

.orb-1 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(201, 168, 76, 0.15), transparent 70%);
    top: -100px;
    right: -100px;
    animation-delay: 0s;
}

.orb-2 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(45, 16, 96, 0.4), transparent 70%);
    bottom: -80px;
    left: -80px;
    animation-delay: -3s;
}

.orb-3 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(201, 168, 76, 0.08), transparent 70%);
    top: 50%;
    left: 40%;
    animation-delay: -5s;
}

@keyframes floatOrb {

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

    33% {
        transform: translate(30px, -30px) scale(1.05);
    }

    66% {
        transform: translate(-20px, 20px) scale(0.95);
    }
}

.hero-content {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    padding: 80px 0;
}

.hero-left {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(201, 168, 76, 0.1);
    border: 1px solid var(--glass-border);
    color: var(--gold-light);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 8px 18px;
    border-radius: 100px;
    margin-bottom: 28px;
    width: fit-content;
    animation: fadeSlideUp 0.8s ease forwards;
}

.hero-badge .pulse {
    width: 8px;
    height: 8px;
    background: var(--gold);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {

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

    50% {
        opacity: 0.5;
        transform: scale(1.4);
    }
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(40px, 5.5vw, 72px);
    font-weight: 800;
    line-height: 1.1;
    color: var(--white);
    animation: fadeSlideUp 0.8s 0.1s ease both;
}

.hero-title .gradient-text {
    background: linear-gradient(135deg, var(--gold-light), var(--gold), var(--gold-dark));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 18px;
    color: var(--text-muted);
    line-height: 1.8;
    margin-top: 24px;
    max-width: 500px;
    animation: fadeSlideUp 0.8s 0.2s ease both;
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 40px;
    animation: fadeSlideUp 0.8s 0.3s ease both;
}

.hero-stats {
    display: flex;
    gap: 40px;
    margin-top: 60px;
    padding-top: 40px;
    border-top: 1px solid var(--glass-border-light);
    animation: fadeSlideUp 0.8s 0.4s ease both;
}

.stat-item .stat-number {
    font-size: 32px;
    font-weight: 800;
    color: var(--white);
    line-height: 1;
}

.stat-item .stat-number span {
    color: var(--gold);
}

.stat-item .stat-label {
    font-size: 13px;
    color: var(--text-muted);
    margin-top: 6px;
}

.hero-right {
    position: relative;
    animation: fadeSlideUp 0.8s 0.3s ease both;
}

.hero-card-stack {
    position: relative;
}

.floating-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border-light);
    border-radius: var(--radius-lg);
    padding: 28px;
    backdrop-filter: blur(20px);
    position: relative;
    z-index: 2;
}

.floating-card .card-header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 24px;
}

.card-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
}

.card-title {
    font-size: 16px;
    font-weight: 700;
}

.card-sub {
    font-size: 12px;
    color: var(--text-muted);
}

.metric-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid var(--glass-border-light);
}

.metric-row:last-child {
    border-bottom: none;
}

.metric-name {
    font-size: 13px;
    color: var(--text-muted);
}

.metric-value {
    font-size: 15px;
    font-weight: 700;
}

.metric-value.positive {
    color: #4ade80;
}

.metric-value.gold {
    color: var(--gold);
}

.metric-bar {
    height: 4px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 2px;
    margin-top: 14px;
    overflow: hidden;
}

.metric-bar-fill {
    height: 100%;
    border-radius: 2px;
    background: linear-gradient(90deg, var(--gold), var(--gold-light));
    width: 0%;
    transition: width 1.5s ease 0.5s;
}

.floating-pill {
    position: absolute;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 100px;
    padding: 10px 18px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 600;
    backdrop-filter: blur(12px);
    white-space: nowrap;
    animation: floatPill 4s ease-in-out infinite;
}

.floating-pill.pill-1 {
    top: -20px;
    right: -20px;
    animation-delay: 0s;
}

.floating-pill.pill-2 {
    bottom: -20px;
    left: -20px;
    animation-delay: -2s;
}

@keyframes floatPill {

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

    50% {
        transform: translateY(-8px);
    }
}

.pill-icon {
    font-size: 16px;
}

.pill-up {
    color: #4ade80;
    font-size: 11px;
}

@keyframes fadeSlideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ── TRUSTED BY ── */
.trusted-section {
    padding: 50px 0;
    border-top: 1px solid var(--glass-border-light);
    border-bottom: 1px solid var(--glass-border-light);
    background: var(--navy-2);
    overflow: hidden;
}

.trusted-label {
    text-align: center;
    font-size: 12px;
    color: var(--text-muted);
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 30px;
}

.logos-track {
    display: flex;
    gap: 60px;
    align-items: center;
    animation: scrollLogos 25s linear infinite;
    width: max-content;
}

.logos-track:hover {
    animation-play-state: paused;
}

.logo-item {
    font-size: 16px;
    font-weight: 700;
    color: var(--text-muted);
    opacity: 0.5;
    transition: var(--transition);
    white-space: nowrap;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.logo-item:hover {
    opacity: 1;
    color: var(--gold-light);
}

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

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

/* ── SERVICES ── */
.services-section {
    padding: 120px 0;
    position: relative;
}

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

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.service-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border-light);
    border-radius: var(--radius-lg);
    padding: 36px;
    position: relative;
    overflow: hidden;
    transition: var(--transition);
    cursor: default;
}

.service-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(201, 168, 76, 0.05), transparent);
    opacity: 0;
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-6px);
    border-color: var(--glass-border);
}

.service-card:hover::before {
    opacity: 1;
}

.service-card:hover .service-icon {
    transform: scale(1.1);
}

.service-card.featured {
    background: linear-gradient(135deg, rgba(201, 168, 76, 0.08), rgba(201, 168, 76, 0.02));
    border-color: var(--glass-border);
    grid-column: span 1;
}

.service-number {
    font-size: 11px;
    color: var(--gold);
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.service-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, rgba(201, 168, 76, 0.2), rgba(201, 168, 76, 0.05));
    border: 1px solid var(--glass-border);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    margin-bottom: 24px;
    transition: var(--transition);
}

.service-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--white);
}

.service-desc {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.8;
}

.service-features {
    margin-top: 24px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.service-features li {
    font-size: 13px;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 8px;
}

.service-features li::before {
    content: '✓';
    color: var(--gold);
    font-size: 11px;
    font-weight: 700;
    flex-shrink: 0;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--gold);
    font-size: 13px;
    font-weight: 600;
    margin-top: 28px;
    transition: var(--transition);
}

.service-link:hover {
    gap: 10px;
}

/* ── AI SECTION ── */
.ai-section {
    padding: 120px 0;
    background: var(--navy-2);
    position: relative;
    overflow: hidden;
}

.ai-bg-pattern {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 80% 50%, rgba(45, 16, 96, 0.3) 0%, transparent 60%);
    pointer-events: none;
}

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

.ai-visual {
    position: relative;
}

.ai-terminal {
    background: #0d1117;
    border: 1px solid rgba(201, 168, 76, 0.2);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-card);
}

.terminal-bar {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 14px 20px;
    background: rgba(255, 255, 255, 0.03);
    border-bottom: 1px solid rgba(201, 168, 76, 0.1);
}

.terminal-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.terminal-dot.red {
    background: #ff5f57;
}

.terminal-dot.yellow {
    background: #febc2e;
}

.terminal-dot.green {
    background: #28c840;
}

.terminal-title {
    font-size: 12px;
    color: var(--text-muted);
    margin-left: auto;
    margin-right: auto;
    letter-spacing: 1px;
}

.terminal-body {
    padding: 24px;
    font-family: 'Courier New', monospace;
    font-size: 13px;
    line-height: 2;
}

.terminal-line {
    display: flex;
    gap: 10px;
}

.t-prompt {
    color: var(--gold);
}

.t-cmd {
    color: #e2e8f0;
}

.t-comment {
    color: #64748b;
}

.t-output {
    color: #4ade80;
    margin-left: 20px;
}

.t-value {
    color: #818cf8;
}

.ai-automations-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 40px;
}

.automation-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 20px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border-light);
    border-radius: var(--radius-md);
    transition: var(--transition);
}

.automation-item:hover {
    border-color: var(--glass-border);
    transform: translateX(6px);
}

.automation-icon {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, rgba(201, 168, 76, 0.2), rgba(201, 168, 76, 0.05));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}

.automation-info .automation-title {
    font-size: 15px;
    font-weight: 600;
}

.automation-info .automation-desc {
    font-size: 13px;
    color: var(--text-muted);
    margin-top: 4px;
}

/* ── PROCESS ── */
.process-section {
    padding: 120px 0;
}

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

.process-grid::before {
    content: '';
    position: absolute;
    top: 28px;
    left: 12%;
    right: 12%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--glass-border), var(--gold), var(--glass-border), transparent);
    z-index: 0;
}

.process-card {
    text-align: center;
    position: relative;
    z-index: 1;
}

.process-step {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 800;
    color: var(--navy);
    margin: 0 auto 24px;
    position: relative;
}

.process-step::after {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    border: 1px solid var(--glass-border);
}

.process-card h3 {
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 10px;
}

.process-card p {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.7;
}

/* ── TESTIMONIALS ── */
.testimonials-section {
    padding: 120px 0;
    background: var(--navy-2);
    overflow: hidden;
}

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

.testimonial-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border-light);
    border-radius: var(--radius-lg);
    padding: 36px;
    transition: var(--transition);
}

.testimonial-card:hover {
    transform: translateY(-6px);
    border-color: var(--glass-border);
}

.stars {
    font-size: 14px;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.testimonial-text {
    font-size: 15px;
    color: var(--off-white);
    line-height: 1.8;
    font-style: italic;
    margin-bottom: 28px;
}

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

.author-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 700;
    color: var(--navy);
    flex-shrink: 0;
    font-family: 'Playfair Display', serif;
}

.author-name {
    font-size: 15px;
    font-weight: 700;
}

.author-role {
    font-size: 12px;
    color: var(--text-muted);
    margin-top: 2px;
}

/* ── PRICING ── */
.pricing-section {
    padding: 120px 0;
}

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

.pricing-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border-light);
    border-radius: var(--radius-lg);
    padding: 40px;
    transition: var(--transition);
    position: relative;
}

.pricing-card:hover {
    transform: translateY(-6px);
}

.pricing-card.popular {
    background: linear-gradient(160deg, rgba(201, 168, 76, 0.12), rgba(201, 168, 76, 0.03));
    border-color: var(--gold);
    transform: scale(1.04);
}

.pricing-card.popular:hover {
    transform: scale(1.04) translateY(-6px);
}

.popular-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--navy);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 6px 20px;
    border-radius: 100px;
    white-space: nowrap;
}

.pricing-tier {
    font-size: 12px;
    color: var(--gold);
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.pricing-price {
    font-size: 48px;
    font-weight: 800;
    color: var(--white);
    line-height: 1;
}

.pricing-price span {
    font-size: 20px;
    color: var(--text-muted);
    font-weight: 400;
}

.pricing-desc {
    font-size: 14px;
    color: var(--text-muted);
    margin-top: 10px;
    margin-bottom: 30px;
    line-height: 1.6;
}

.pricing-line {
    height: 1px;
    background: var(--glass-border-light);
    margin-bottom: 28px;
}

.pricing-features {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 36px;
}

.pricing-features li {
    font-size: 14px;
    color: var(--off-white);
    display: flex;
    align-items: center;
    gap: 10px;
}

.pricing-features li::before {
    content: '✓';
    color: var(--gold);
    font-weight: 800;
    flex-shrink: 0;
}

.pricing-features li.disabled {
    color: var(--text-muted);
}

.pricing-features li.disabled::before {
    content: '×';
    color: rgba(255, 255, 255, 0.2);
}

/* ── CTA SECTION ── */
.cta-section {
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

.cta-bg {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, rgba(201, 168, 76, 0.12), transparent 70%);
}

.cta-inner {
    position: relative;
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.cta-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 40px;
    flex-wrap: wrap;
}

/* ── FOOTER ── */
.footer {
    background: var(--navy-2);
    border-top: 1px solid var(--glass-border-light);
    padding: 80px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 60px;
    padding-bottom: 60px;
}

.footer-desc {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.8;
    margin-top: 16px;
    max-width: 300px;
}

.footer-col h4 {
    font-size: 13px;
    font-weight: 700;
    color: var(--white);
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.footer-col ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-col ul li a {
    font-size: 14px;
    color: var(--text-muted);
    transition: var(--transition);
}

.footer-col ul li a:hover {
    color: var(--gold-light);
}

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

.social-link {
    width: 38px;
    height: 38px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border-light);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    transition: var(--transition);
}

.social-link:hover {
    border-color: var(--gold);
    transform: translateY(-3px);
}

.footer-bottom {
    border-top: 1px solid var(--glass-border-light);
    padding: 24px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
}

.footer-copy {
    font-size: 13px;
    color: var(--text-muted);
}

.footer-legal {
    display: flex;
    gap: 24px;
}

.footer-legal a {
    font-size: 13px;
    color: var(--text-muted);
    transition: var(--transition);
}

.footer-legal a:hover {
    color: var(--gold);
}

/* ── LEGAL PAGES ── */
.legal-hero {
    padding: 160px 0 80px;
    background: var(--navy-2);
    border-bottom: 1px solid var(--glass-border-light);
    text-align: center;
}

.legal-content {
    padding: 80px 0 120px;
    max-width: 860px;
    margin: 0 auto;
}

.legal-content h2 {
    font-size: 22px;
    font-weight: 700;
    color: var(--white);
    margin: 40px 0 16px;
    padding-top: 40px;
    border-top: 1px solid var(--glass-border-light);
}

.legal-content h2:first-child {
    border-top: none;
    padding-top: 0;
    margin-top: 0;
}

.legal-content p {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.9;
    margin-bottom: 16px;
}

.legal-content ul {
    list-style: disc;
    margin-left: 24px;
    margin-bottom: 16px;
}

.legal-content ul li {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.9;
    margin-bottom: 8px;
}

.legal-content a {
    color: var(--gold);
}

.legal-content a:hover {
    color: var(--gold-light);
}

.legal-date {
    font-size: 13px;
    color: var(--text-muted);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 16px;
}

/* ── MOBILE NAV ── */
.mobile-menu {
    position: fixed;
    inset: 0;
    background: rgba(6, 12, 26, 0.97);
    backdrop-filter: blur(20px);
    z-index: 999;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 32px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.mobile-menu.open {
    opacity: 1;
    pointer-events: all;
}

.mobile-menu a {
    font-size: 28px;
    font-weight: 700;
    color: var(--white);
    transition: var(--transition);
}

.mobile-menu a:hover {
    color: var(--gold);
}

.mobile-close {
    position: absolute;
    top: 24px;
    right: 24px;
    font-size: 28px;
    color: var(--text-muted);
    cursor: pointer;
    transition: var(--transition);
}

.mobile-close:hover {
    color: var(--white);
}

/* ── ANIMATIONS & SCROLL ── */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

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

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

    .hero-left {
        align-items: center;
    }

    .hero-stats {
        justify-content: center;
    }

    .hero-badge,
    .hero-actions {
        justify-content: center;
    }

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

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

    .process-grid::before {
        display: none;
    }

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

    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 440px;
        margin-left: auto;
        margin-right: auto;
    }

    .pricing-card.popular {
        transform: scale(1);
    }

    .pricing-card.popular:hover {
        transform: translateY(-6px);
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {

    .nav-links,
    .nav-cta {
        display: none;
    }

    .hamburger {
        display: flex;
    }

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

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

    .hero-stats {
        flex-wrap: wrap;
        gap: 24px;
    }

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

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

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .footer-legal {
        flex-wrap: wrap;
        justify-content: center;
        gap: 12px;
    }
}

@media (max-width: 480px) {
    .process-grid {
        grid-template-columns: 1fr;
    }

    .hero-actions {
        flex-direction: column;
        align-items: center;
    }
}