/* ========================================
   UpStyleVision — Landing Page Styles v3
   Full Overhaul — Trustworthy & Realistic
   ======================================== */

/* ---------- CSS Variables ---------- */
:root {
    --charcoal: #111111;
    --gold: #C0A985;
    --gold-light: #E5C591;
    --gold-dark: #a08a65;
    --parchment: #F2EBD9;
    --navy: #090a0f;
    --cognac: #8C5E35;
    --green: #354A36;

    --bg-dark: #090a0f;
    /* Midnight Space */
    --bg-section: #0d0f14;
    --bg-card: rgba(20, 24, 32, 0.4);
    --bg-card-hover: rgba(20, 24, 32, 0.7);

    --text-primary: #F2EBD9;
    --text-secondary: rgba(242, 235, 217, 0.7);
    --text-muted: rgba(242, 235, 217, 0.4);

    --border-subtle: rgba(255, 255, 255, 0.05);
    --border-gold: rgba(192, 169, 133, 0.25);

    --red-muted: #e85d5d;

    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 24px;
    --radius-xl: 32px;

    --shadow-card: inset 0 1px 0 rgba(255, 255, 255, 0.08), 0 8px 32px rgba(0, 0, 0, 0.4);
    --shadow-hover: inset 0 1px 0 rgba(255, 255, 255, 0.15), 0 12px 48px rgba(192, 169, 133, 0.15), 0 4px 16px rgba(0, 0, 0, 0.5);

    --transition: 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: var(--font-body);
    background: var(--bg-dark);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

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

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

ul {
    list-style: none;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ============================
   SCROLL PROGRESS BAR
   ============================ */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 3px;
    width: 0%;
    background: linear-gradient(90deg, var(--gold), var(--cognac), var(--gold));
    z-index: 10000;
    transition: width 0.1s linear;
    border-radius: 0 2px 2px 0;
    box-shadow: 0 0 10px rgba(192, 169, 133, 0.5);
}

/* ---------- Section Header ---------- */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-tag {
    display: inline-block;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.8rem;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--gold);
    background: rgba(192, 169, 133, 0.1);
    border: 1px solid var(--border-gold);
    padding: 6px 18px;
    border-radius: 50px;
    margin-bottom: 20px;
}

.section-header h2 {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.04em;
    margin-bottom: 14px;
}

.section-header p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 560px;
    margin: 0 auto;
}

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

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

/* ---------- Buttons ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1rem;
    padding: 14px 32px;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: var(--transition);
    border: none;
    outline: none;
    position: relative;
}

.btn-primary {
    background: linear-gradient(135deg, var(--gold), var(--cognac));
    color: var(--charcoal);
    box-shadow: 0 4px 20px rgba(192, 169, 133, 0.2);
    overflow: hidden;
}

.btn-primary::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.3) 50%, rgba(255, 255, 255, 0) 100%);
    transform: skewX(-20deg);
    transition: none;
}

.btn-primary:hover::after {
    left: 200%;
    transition: left 0.7s ease-in-out;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(192, 169, 133, 0.4);
}

/* Pulsing Glow on CTA */
.btn-glow {
    animation: btnPulse 2.5s ease-in-out infinite;
}

@keyframes btnPulse {

    0%,
    100% {
        box-shadow: 0 4px 20px rgba(192, 169, 133, 0.3);
    }

    50% {
        box-shadow: 0 4px 35px rgba(192, 169, 133, 0.55), 0 0 60px rgba(192, 169, 133, 0.15);
    }
}

.btn-glow:hover {
    animation: none;
    box-shadow: 0 8px 40px rgba(192, 169, 133, 0.5);
}

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

.btn-outline:hover {
    background: rgba(192, 169, 133, 0.1);
    border-color: var(--gold);
    transform: translateY(-2px);
}

.btn-full {
    width: 100%;
}

/* ============================
   FLOATING ORBS (Section BG)
   ============================ */
.floating-orb {
    position: absolute;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.06;
    pointer-events: none;
    z-index: 0;
}

.floating-orb-left {
    left: -150px;
    top: 20%;
    background: var(--gold);
    animation: floatOrb 12s ease-in-out infinite;
}

.floating-orb-right {
    right: -150px;
    top: 30%;
    background: var(--cognac);
    animation: floatOrb 14s ease-in-out infinite reverse;
}

@keyframes floatOrb {

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

    50% {
        transform: translateY(-40px) scale(1.1);
    }
}

/* ============================
   NAVBAR
   ============================ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    background: rgba(13, 17, 23, 0.75);
    border-bottom: 1px solid var(--border-subtle);
    transition: var(--transition);
}

.navbar.scrolled {
    background: rgba(13, 17, 23, 0.95);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.4);
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 76px;
    padding-top: 4px;
    padding-bottom: 4px;
}

.logo {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: -0.5px;
}

/* Logo — monogram + text side-by-side */
.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.logo-img {
    height: 40px;
    width: auto;
    display: block;
    object-fit: contain;
}

.logo-text {
    font-family: 'Outfit', sans-serif;
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-primary);
    letter-spacing: 0.5px;
    white-space: nowrap;
}

.footer-logo-img {
    height: 48px;
}

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

.nav-links a {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-secondary);
    transition: var(--transition);
    position: relative;
}

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

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: var(--transition);
    border-radius: 2px;
}

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

.nav-cta {
    padding: 10px 22px !important;
    background: linear-gradient(135deg, var(--gold), var(--cognac));
    color: var(--navy) !important;
    border-radius: var(--radius-sm);
    font-weight: 600 !important;
}

.nav-cta::after {
    display: none !important;
}

.nav-cta:hover {
    box-shadow: 0 4px 20px rgba(192, 169, 133, 0.35);
    transform: translateY(-1px);
}

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

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

.hamburger.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

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

/* Particle Canvas */
.hero-particles {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
}

/* Hero Orbs */
.hero-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    pointer-events: none;
    z-index: 0;
}

.hero-orb-1 {
    width: 600px;
    height: 600px;
    top: -20%;
    left: 50%;
    transform: translateX(-50%);
    background: radial-gradient(circle, rgba(192, 169, 133, 0.1) 0%, transparent 70%);
    animation: pulseGlow 8s ease-in-out infinite;
}

.hero-orb-2 {
    width: 300px;
    height: 300px;
    bottom: 10%;
    left: 10%;
    background: radial-gradient(circle, rgba(140, 94, 53, 0.08) 0%, transparent 70%);
    animation: floatOrb 10s ease-in-out infinite;
}

.hero-orb-3 {
    width: 250px;
    height: 250px;
    top: 20%;
    right: 5%;
    background: radial-gradient(circle, rgba(53, 74, 54, 0.08) 0%, transparent 70%);
    animation: floatOrb 12s ease-in-out infinite reverse;
}

@keyframes pulseGlow {

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

    50% {
        opacity: 1;
        transform: translateX(-50%) scale(1.15);
    }
}

.hero-content {
    position: relative;
    text-align: center;
    max-width: 850px;
    margin: 0 auto;
    z-index: 1;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--gold);
    background: rgba(192, 169, 133, 0.08);
    border: 1px solid var(--border-gold);
    padding: 8px 20px;
    border-radius: 50px;
    margin-bottom: 28px;
    animation: fadeInUp 0.8s ease-out;
    position: relative;
}

.badge-pulse {
    width: 8px;
    height: 8px;
    background: var(--gold);
    border-radius: 50%;
    animation: livePulse 2s ease-in-out infinite;
    margin-right: 4px;
}

@keyframes livePulse {

    0%,
    100% {
        opacity: 1;
        box-shadow: 0 0 0 0 rgba(192, 169, 133, 0.6);
    }

    50% {
        opacity: 0.6;
        box-shadow: 0 0 0 8px rgba(192, 169, 133, 0);
    }
}

.hero h1 {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 5.5vw, 4rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
    animation: fadeInUp 0.8s ease-out 0.15s both;
}

.hero-sub {
    font-size: clamp(1rem, 2vw, 1.15rem);
    color: var(--text-secondary);
    max-width: 660px;
    margin: 0 auto 36px;
    animation: fadeInUp 0.8s ease-out 0.3s both;
    line-height: 1.7;
}

.hero-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 60px;
    animation: fadeInUp 0.8s ease-out 0.45s both;
}

/* Hero Stats — text-based benefits */
.hero-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    animation: fadeInUp 0.8s ease-out 0.6s both;
}

.stat {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
}

.stat-icon {
    font-size: 1.4rem;
}

.stat-label {
    font-size: 0.85rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: var(--border-gold);
}

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

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

/* ============================
   THE PROBLEM
   ============================ */
.problem {
    padding: 100px 0;
    background: var(--bg-section);
    position: relative;
}

.problem::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--border-gold), transparent);
}

.problem-content {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.problem-intro {
    font-size: 1.15rem;
    color: var(--text-secondary);
    margin-bottom: 36px;
}

.problem-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: minmax(100px, auto);
    gap: 20px;
    margin-bottom: 56px;
    text-align: left;
}

.problem-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    background: rgba(232, 93, 93, 0.03);
    border: 1px solid rgba(232, 93, 93, 0.1);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(10px);
    border-radius: var(--radius-lg);
    padding: 24px;
    font-size: 1.05rem;
    color: var(--text-primary);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.problem-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: rgba(232, 93, 93, 0.3);
    transition: var(--transition);
}

.problem-item-wide {
    grid-column: 1 / -1;
    background: rgba(232, 93, 93, 0.05);
}

.problem-item:hover {
    background: rgba(232, 93, 93, 0.06);
    border-color: rgba(232, 93, 93, 0.2);
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(232, 93, 93, 0.08);
}

.problem-item:hover::before {
    background: rgba(232, 93, 93, 0.8);
}

.problem-x {
    color: var(--red-muted);
    font-size: 1.1rem;
    font-weight: 700;
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(232, 93, 93, 0.1);
    border-radius: 50%;
    position: relative;
    margin-top: 2px;
}

.problem-x::after {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    border: 1px solid rgba(232, 93, 93, 0.2);
    animation: alertPulse 2s infinite;
}

@keyframes alertPulse {
    0% {
        transform: scale(0.95);
        opacity: 1;
    }

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

.problem-bottom {
    text-align: center;
}

.problem-callout {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 16px;
    line-height: 1.5;
}

.problem-empathy {
    font-size: 1.05rem;
    color: var(--gold);
    font-style: italic;
    font-weight: 500;
}

/* ============================
   THE SOLUTION
   ============================ */
.solution {
    padding: 100px 0;
    background: var(--bg-dark);
    position: relative;
    overflow: hidden;
}

.solution::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--border-gold), transparent);
}

.solution-content {
    max-width: 600px;
    margin: 0 auto;
}

.solution-intro {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 28px;
    text-align: center;
}

.solution-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 40px;
}

.solution-list li {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 1.05rem;
    color: var(--text-primary);
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-md);
    padding: 16px 22px;
    transition: var(--transition);
}

.solution-list li:hover {
    border-color: var(--border-gold);
    background: var(--bg-card-hover);
    transform: translateX(4px);
}

.solution-check {
    color: var(--gold);
    font-size: 1.2rem;
    font-weight: 700;
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(192, 169, 133, 0.12);
    border-radius: 50%;
}

.solution-bottom {
    text-align: center;
    padding: 32px;
    background: var(--bg-card);
    border: 1px solid var(--border-gold);
    border-radius: var(--radius-lg);
}

.solution-bottom p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.8;
}

.solution-bottom strong {
    color: var(--gold);
    font-weight: 700;
}

/* ============================
   FEATURES
   ============================ */
.features {
    padding: 100px 0;
    background: var(--bg-section);
    position: relative;
    overflow: hidden;
}

.features::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--border-gold), transparent);
}

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

/* ---------- Tilt Cards with Glow ---------- */
.tilt-card {
    transform-style: preserve-3d;
    perspective: 800px;
    position: relative;
    overflow: hidden;
}

.card-glow {
    position: absolute;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(192, 169, 133, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.3s ease;
    transform: translate(-50%, -50%);
    z-index: 0;
}

.tilt-card:hover .card-glow {
    opacity: 1;
}

.feature-card {
    background: var(--bg-card);
    backdrop-filter: blur(20px);
    border: 1px solid var(--border-subtle);
    box-shadow: var(--shadow-card);
    border-radius: var(--radius-lg);
    padding: 36px 28px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--gold), var(--cognac));
    opacity: 0;
    transition: var(--transition);
}

.feature-card:hover {
    background: var(--bg-card-hover);
    border-color: var(--border-gold);
    transform: translateY(-6px);
    box-shadow: var(--shadow-hover);
}

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

.feature-icon {
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(192, 169, 133, 0.1);
    border-radius: var(--radius-sm);
    margin-bottom: 20px;
    color: var(--gold);
    position: relative;
    z-index: 1;
}

.feature-icon svg {
    width: 24px;
    height: 24px;
}

.feature-card h3 {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 600;
    margin-bottom: 10px;
    position: relative;
    z-index: 1;
}

.feature-card p {
    font-size: 0.92rem;
    color: var(--text-secondary);
    line-height: 1.65;
    position: relative;
    z-index: 1;
}

/* ============================
   PACKAGES
   ============================ */
.packages {
    padding: 100px 0;
    background: var(--bg-dark);
    position: relative;
    overflow: hidden;
}

.packages::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--border-gold), transparent);
}

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

.package-card {
    background: var(--bg-card);
    backdrop-filter: blur(20px);
    border: 1px solid var(--border-subtle);
    box-shadow: var(--shadow-card);
    border-radius: var(--radius-lg);
    padding: 36px 28px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.package-card:hover {
    background: var(--bg-card-hover);
    border-color: var(--border-gold);
    transform: translateY(-6px);
    box-shadow: var(--shadow-hover);
}

.package-card-featured {
    border: 1px solid transparent;
    background: var(--bg-card);
    position: relative;
    z-index: 1;
}

.package-card-featured::before {
    content: '';
    position: absolute;
    inset: -1px;
    z-index: -1;
    border-radius: inherit;
    background: conic-gradient(from var(--angle), var(--gold-dark), var(--gold-light), var(--cognac), var(--gold-dark));
    animation: rotateGradient 4s linear infinite;
}

.package-card-featured::after {
    content: '';
    position: absolute;
    inset: 1px;
    z-index: -1;
    background: rgba(13, 15, 20, 0.95);
    border-radius: inherit;
}

@property --angle {
    syntax: '<angle>';
    initial-value: 0deg;
    inherits: false;
}

@keyframes rotateGradient {
    0% {
        --angle: 0deg;
    }

    100% {
        --angle: 360deg;
    }
}

.package-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    background: linear-gradient(135deg, var(--gold), var(--cognac));
    color: var(--navy);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.75rem;
    padding: 5px 14px;
    border-radius: 50px;
    letter-spacing: 0.5px;
    z-index: 2;
}

.package-tier {
    font-family: var(--font-heading);
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--gold);
    margin-bottom: 8px;
    position: relative;
    z-index: 1;
}

.package-card h3 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 12px;
    position: relative;
    z-index: 1;
}

.package-desc {
    font-size: 0.92rem;
    color: var(--text-secondary);
    line-height: 1.65;
    margin-bottom: 24px;
    position: relative;
    z-index: 1;
}

.package-features {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 24px;
    flex: 1;
    position: relative;
    z-index: 1;
}

.package-features li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.88rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

.pkg-check {
    color: var(--gold);
    font-weight: 700;
    flex-shrink: 0;
    margin-top: 1px;
}

.package-best-for {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 20px;
    padding-top: 16px;
    border-top: 1px solid var(--border-subtle);
    line-height: 1.5;
    position: relative;
    z-index: 1;
}

.package-best-for strong {
    color: var(--text-secondary);
}

.package-card .btn {
    position: relative;
    z-index: 1;
    margin-top: auto;
}

.packages-cta {
    text-align: center;
    padding: 40px;
    background: var(--bg-card);
    border: 1px solid var(--border-gold);
    border-radius: var(--radius-lg);
}

.packages-cta p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 24px;
}

.packages-cta strong {
    color: var(--gold);
}

/* ============================
   HOW IT WORKS
   ============================ */
.how-it-works {
    padding: 100px 0;
    background: var(--bg-dark);
    position: relative;
    overflow: hidden;
}

.how-it-works::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--border-gold), transparent);
}

.steps-timeline {
    max-width: 700px;
    margin: 0 auto;
    position: relative;
}

.step {
    display: flex;
    align-items: flex-start;
    gap: 24px;
    position: relative;
}

.step-number {
    flex-shrink: 0;
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--navy);
    background: linear-gradient(135deg, var(--gold), var(--cognac));
    border-radius: 50%;
    position: relative;
    z-index: 2;
    box-shadow: 0 0 20px rgba(192, 169, 133, 0.2);
}

.step-content {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-md);
    padding: 24px 28px;
    flex: 1;
    transition: var(--transition);
}

.step-content:hover {
    border-color: var(--border-gold);
    background: var(--bg-card-hover);
    box-shadow: var(--shadow-card);
}

.step-icon {
    font-size: 1.5rem;
    margin-bottom: 8px;
}

.step-content h3 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 6px;
}

.step-content p {
    font-size: 0.92rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

.step-connector {
    width: 2px;
    height: 32px;
    background: linear-gradient(to bottom, var(--gold), rgba(192, 169, 133, 0.2));
    margin-left: 25px;
}

.steps-closing {
    text-align: center;
    max-width: 560px;
    margin: 40px auto 0;
    font-size: 1.05rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* ============================
   ABOUT / FOUNDER
   ============================ */
.about {
    padding: 100px 0;
    background: var(--bg-dark);
    position: relative;
    overflow: hidden;
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--border-gold), transparent);
}

.about-wrapper {
    max-width: 720px;
    margin: 0 auto;
}

.about-content .section-tag {
    display: inline-block;
    margin-bottom: 20px;
}

.about-content h2 {
    font-family: var(--font-heading);
    font-size: clamp(1.8rem, 3vw, 2.4rem);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 28px;
}

.about-content p {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 18px;
}

.about-close {
    font-size: 1.05rem;
    color: var(--text-primary);
    font-weight: 500;
    margin-bottom: 32px;
}

.about-content .btn {
    margin-top: 8px;
}

/* ============================
   INDUSTRIES
   ============================ */
.industries {
    padding: 100px 0;
    background: var(--bg-section);
    position: relative;
}

.industries::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--border-gold), transparent);
}

.industries-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.industry-card {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    padding: 32px 20px;
    text-align: center;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.industry-card:hover {
    background: var(--bg-card-hover);
    border-color: var(--border-gold);
    transform: translateY(-4px);
    box-shadow: var(--shadow-hover);
}

.industry-icon {
    font-size: 2.2rem;
    margin-bottom: 12px;
}

.industry-card h3 {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 600;
    position: relative;
    z-index: 1;
}

/* ============================
   PRICING
   ============================ */
/* ============================
   TYPING ANIMATION (Hero)
   ============================ */
.typing-wrapper {
    display: inline-flex;
    align-items: baseline;
}

.typing-text {
    color: var(--gold);
    font-weight: 600;
    min-width: 2ch;
}

.typing-cursor {
    color: var(--gold);
    font-weight: 300;
    animation: blink 0.7s step-end infinite;
    margin-left: 2px;
}

@keyframes blink {
    50% {
        opacity: 0;
    }
}

/* ============================
   CTA SECTION
   ============================ */
.cta-section {
    padding: 100px 0;
    background: var(--bg-dark);
    position: relative;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--border-gold), transparent);
}

.cta-card {
    max-width: 720px;
    margin: 0 auto;
    background: var(--bg-card);
    backdrop-filter: blur(14px);
    border-radius: var(--radius-xl);
    border: 1px solid var(--border-subtle);
    padding: 60px 48px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at top, rgba(192, 169, 133, 0.06) 0%, transparent 60%);
    pointer-events: none;
    border-radius: var(--radius-xl);
}

.cta-card .section-tag {
    position: relative;
    z-index: 1;
}

.cta-card h2 {
    position: relative;
    z-index: 1;
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    margin-bottom: 20px;
}

.cta-body {
    font-size: 1.05rem;
    color: var(--text-secondary);
    line-height: 1.7;
    max-width: 560px;
    margin: 0 auto 12px;
    position: relative;
    z-index: 1;
}

.cta-body-bold {
    color: var(--text-primary);
    font-weight: 500;
    margin-bottom: 32px;
}

.cta-card .btn {
    position: relative;
    z-index: 1;
}

.btn-lg {
    padding: 18px 40px;
    font-size: 1.05rem;
}

.cta-note {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-top: 16px;
    position: relative;
    z-index: 1;
    font-style: italic;
}

/* ============================
   CONTACT
   ============================ */
.contact {
    padding: 100px 0;
    background: var(--bg-section);
    position: relative;
    overflow: hidden;
}

.contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--border-gold), transparent);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.contact-info h2 {
    font-family: var(--font-heading);
    font-size: clamp(1.8rem, 3vw, 2.4rem);
    font-weight: 700;
    margin-bottom: 16px;
    line-height: 1.2;
}

.contact-info>p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin-bottom: 16px;
    line-height: 1.7;
}

.contact-reassurance {
    font-size: 1rem;
    color: var(--text-primary);
    font-weight: 500;
    margin-bottom: 28px;
    line-height: 1.6;
}

/* Audit benefits checklist */
.audit-benefits {
    margin-bottom: 28px;
    padding: 24px;
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-md);
}

.audit-benefits h4 {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 14px;
}

.audit-benefits ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.audit-benefits li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.92rem;
    color: var(--text-secondary);
}

.audit-check {
    color: var(--gold);
    font-weight: 700;
    font-size: 1rem;
    flex-shrink: 0;
}

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

.contact-detail {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.contact-detail svg {
    width: 20px;
    height: 20px;
    color: var(--gold);
    flex-shrink: 0;
}

.contact-detail a {
    transition: var(--transition);
}

.contact-detail a:hover {
    color: var(--gold);
}

/* Form */
.contact-form-container {
    position: relative;
}

.contact-form {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-xl);
    padding: 40px;
    position: relative;
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.ghl-form-wrapper {
    background: transparent;
    border: none;
    padding: 0;
}

.contact-form.hidden {
    opacity: 0;
    transform: translateY(-20px);
    pointer-events: none;
    position: absolute;
    width: 100%;
}

.calendar-embed {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-xl);
    padding: 24px;
    position: relative;
    overflow: hidden;
    display: none;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.calendar-embed.active {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

.calendar-embed iframe {
    border-radius: var(--radius-sm);
}

.calendar-header {
    text-align: center;
    margin-bottom: 24px;
}

.calendar-header .success-icon {
    width: 50px;
    height: 50px;
    background: rgba(76, 175, 80, 0.15);
    border: 2px solid #4CAF50;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #4CAF50;
    margin-bottom: 12px;
}

.calendar-header h3 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    color: var(--text-primary);
}

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

/* Audit Form Card */
.audit-form {
    background: var(--bg-card);
    backdrop-filter: blur(20px);
    border: 1px solid var(--border-subtle);
    box-shadow: var(--shadow-card);
    border-radius: var(--radius-xl);
    padding: 40px 36px;
}

/* Checkbox */
.form-group-checkbox {
    margin-top: 4px;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    cursor: pointer;
    font-size: 0.82rem;
    line-height: 1.5;
    color: var(--text-muted);
}

.checkbox-label input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.checkbox-custom {
    width: 20px;
    height: 20px;
    min-width: 20px;
    border: 1.5px solid var(--border-gold);
    border-radius: 4px;
    background: rgba(13, 17, 23, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    margin-top: 1px;
}

.checkbox-label input[type="checkbox"]:checked+.checkbox-custom {
    background: linear-gradient(135deg, var(--gold), var(--cognac));
    border-color: var(--gold);
}

.checkbox-label input[type="checkbox"]:checked+.checkbox-custom::after {
    content: '✓';
    color: var(--navy);
    font-size: 0.75rem;
    font-weight: 700;
}

.checkbox-label input[type="checkbox"]:focus+.checkbox-custom {
    box-shadow: 0 0 0 3px rgba(192, 169, 133, 0.15);
}

.checkbox-text {
    flex: 1;
}

/* Form validation error state */
.form-group.error input,
.form-group.error select {
    border-color: var(--red-muted);
    box-shadow: 0 0 0 3px rgba(232, 93, 93, 0.1);
}

.form-group.error .checkbox-custom {
    border-color: var(--red-muted);
}

/* Button loading state */
.btn.loading {
    pointer-events: none;
    opacity: 0.7;
}

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

label {
    display: block;
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-secondary);
    margin-bottom: 8px;
}

.optional {
    color: var(--text-muted);
    font-weight: 400;
}

input,
select,
textarea {
    width: 100%;
    padding: 14px 16px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--parchment);
    background: rgba(13, 17, 23, 0.6);
    border: 1.5px solid var(--border-subtle);
    border-radius: var(--radius-sm);
    outline: none;
    transition: var(--transition);
}

input::placeholder,
textarea::placeholder {
    color: var(--text-muted);
}

input:focus,
select:focus,
textarea:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(192, 169, 133, 0.1);
}

select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23C0A985' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
    cursor: pointer;
}

select option {
    background: var(--navy);
    color: var(--parchment);
}

textarea {
    resize: vertical;
    min-height: 80px;
}

/* Form note under submit */
.form-note {
    text-align: center;
    font-size: 0.82rem;
    color: var(--text-muted);
    margin-top: 12px;
    font-style: italic;
}

/* Form Success */
.form-success {
    display: none;
    text-align: center;
    padding: 30px;
}

.form-success.active {
    display: block;
    animation: fadeInUp 0.5s ease-out;
}

.success-icon {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--gold), var(--cognac));
    color: var(--navy);
    font-size: 1.8rem;
    font-weight: 700;
    border-radius: 50%;
    margin: 0 auto 16px;
    animation: successPop 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

@keyframes successPop {
    0% {
        transform: scale(0);
    }

    100% {
        transform: scale(1);
    }
}

.form-success h3 {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.form-success p {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

/* ============================
   FOOTER
   ============================ */
.footer {
    padding: 60px 0 30px;
    background: var(--charcoal);
    border-top: 1px solid var(--border-subtle);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-brand p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-top: 14px;
    max-width: 360px;
    line-height: 1.65;
}

.footer-links h4 {
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--gold);
    margin-bottom: 16px;
    letter-spacing: 0.5px;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    font-size: 0.88rem;
    color: var(--text-secondary);
    transition: var(--transition);
}

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

.footer-bottom {
    padding-top: 24px;
    border-top: 1px solid var(--border-subtle);
    text-align: center;
}

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

/* ============================
   SCROLL REVEAL
   ============================ */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease-out, transform 0.7s ease-out;
}

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

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

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

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

    .packages-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

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

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

@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 76px;
        left: 0;
        right: 0;
        background: rgba(13, 17, 23, 0.97);
        backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 24px;
        gap: 0;
        border-bottom: 1px solid var(--border-subtle);
        transform: translateY(-110%);
        transition: var(--transition);
        opacity: 0;
    }

    .nav-links.active {
        transform: translateY(0);
        opacity: 1;
    }

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

    .nav-links a {
        display: block;
        padding: 14px 0;
        font-size: 1rem;
        border-bottom: 1px solid var(--border-subtle);
    }

    .nav-links a::after {
        display: none;
    }

    .nav-cta {
        text-align: center;
        margin-top: 10px;
        border-bottom: none !important;
    }

    .hamburger {
        display: flex;
    }

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

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

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

    .cta-card {
        padding: 40px 24px;
    }

    .packages-cta {
        padding: 28px 20px;
    }

    .about-content h2 {
        font-size: 1.6rem;
    }

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

    .audit-form {
        padding: 32px 24px;
    }

    .checkbox-label {
        font-size: 0.78rem;
    }

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

    /* Logo sizing for mobile */
    .logo-img {
        height: 32px;
    }

    .logo-text {
        font-size: 1.05rem;
    }

    /* Disable tilt on mobile for performance */
    .tilt-card {
        transform: none !important;
    }
}

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

    .hero h1 {
        font-size: 2rem;
    }

    .contact-form {
        padding: 28px 20px;
    }

    .audit-form {
        padding: 24px 18px;
    }

    .checkbox-label {
        gap: 10px;
        font-size: 0.75rem;
    }

    /* Logo sizing for small mobile */
    .logo-img {
        height: 28px;
    }

    .logo-text {
        font-size: 0.95rem;
    }
}

/* Reduced motion preference */
@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    .hero-particles {
        display: none;
    }

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