/* ============================================
   HOSV1TALITY - Bold Dark Edition
   Dramatic. Distinctive. Unforgettable.
   ============================================ */

:root {
    /* Dark Palette */
    --black: #0a0a0a;
    --black-light: #141414;
    --black-lighter: #1a1a1a;
    --gray-dark: #2a2a2a;
    --gray: #4a4a4a;
    --gray-light: #8a8a8a;
    --white: #f5f5f5;
    --white-dim: #c5c5c5;

    /* Accent */
    --gold: #d4af37;
    --gold-light: #e8c547;
    --gold-dark: #b8962e;

    /* Typography */
    --font-display: 'Instrument Serif', Georgia, serif;
    --font-body: 'Syne', sans-serif;

    /* Sizing */
    --text-xs: clamp(0.7rem, 0.65rem + 0.25vw, 0.8rem);
    --text-sm: clamp(0.8rem, 0.75rem + 0.25vw, 0.9rem);
    --text-base: clamp(0.95rem, 0.9rem + 0.25vw, 1.05rem);
    --text-lg: clamp(1.1rem, 1rem + 0.5vw, 1.3rem);
    --text-xl: clamp(1.3rem, 1.1rem + 1vw, 1.8rem);
    --text-2xl: clamp(1.8rem, 1.4rem + 2vw, 3rem);
    --text-3xl: clamp(2.5rem, 1.8rem + 3.5vw, 5rem);
    --text-4xl: clamp(3.5rem, 2.5rem + 5vw, 8rem);
    --text-5xl: clamp(4.5rem, 3rem + 7.5vw, 12rem);

    /* Spacing */
    --space-xs: 0.25rem;
    --space-sm: 0.5rem;
    --space-md: 1rem;
    --space-lg: 1.5rem;
    --space-xl: 2rem;
    --space-2xl: 3rem;
    --space-3xl: 5rem;
    --space-4xl: 8rem;
    --space-5xl: 12rem;

    /* Animation */
    --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-out-quart: cubic-bezier(0.25, 1, 0.5, 1);
    --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);

    /* Cursor */
    --cursor-size: 16px;
    --cursor-follower-size: 48px;
}

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

html {
    scroll-behavior: smooth;
    cursor: none;
}

body {
    font-family: var(--font-body);
    font-size: var(--text-base);
    line-height: 1.6;
    color: var(--white);
    background: var(--black);
    overflow-x: hidden;
    cursor: none;
    -webkit-font-smoothing: antialiased;
}

/* Custom Cursor */
.cursor, .cursor-follower {
    position: fixed;
    pointer-events: none;
    z-index: 10000;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: transform 0.1s ease, opacity 0.3s ease;
}

.cursor {
    width: var(--cursor-size);
    height: var(--cursor-size);
    background: var(--gold);
    mix-blend-mode: difference;
}

.cursor-follower {
    width: var(--cursor-follower-size);
    height: var(--cursor-follower-size);
    border: 1px solid var(--gold);
    opacity: 0.5;
    transition: transform 0.3s var(--ease-out-expo), width 0.3s var(--ease-out-expo), height 0.3s var(--ease-out-expo);
}

body:hover .cursor-follower {
    opacity: 1;
}

.cursor.hovering {
    transform: translate(-50%, -50%) scale(0.5);
}

.cursor-follower.hovering {
    width: 80px;
    height: 80px;
    border-color: var(--gold);
}

/* Hide cursor on touch devices */
@media (hover: none) {
    .cursor, .cursor-follower { display: none; }
    html, body, a, button { cursor: auto; }
}

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

/* Selection */
::selection {
    background: var(--gold);
    color: var(--black);
}

/* Links & Buttons base */
a, button {
    cursor: none;
}

/* ============================================
   NAVIGATION
   ============================================ */

.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--space-lg) var(--space-2xl);
    mix-blend-mode: difference;
}

.nav-logo {
    font-family: var(--font-display);
    font-size: var(--text-xl);
    color: var(--white);
    text-decoration: none;
    display: flex;
    align-items: baseline;
    letter-spacing: -0.02em;
}

.logo-h {
    font-size: 1.2em;
}

.logo-1 {
    color: var(--gold);
    font-style: italic;
}

.logo-rest {
    opacity: 0.9;
}

.nav-center {
    display: flex;
    gap: var(--space-2xl);
}

.nav-center a {
    color: var(--white);
    text-decoration: none;
    font-size: var(--text-sm);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    position: relative;
    padding: var(--space-sm) 0;
    overflow: hidden;
}

.nav-center a::before {
    content: attr(data-hover);
    position: absolute;
    top: 100%;
    left: 0;
    transition: transform 0.4s var(--ease-out-expo);
}

.nav-center a span {
    display: inline-block;
    transition: transform 0.4s var(--ease-out-expo);
}

.nav-center a:hover::before {
    transform: translateY(-100%);
}

.nav-center a:hover span {
    transform: translateY(-100%);
}

.nav-right {
    display: flex;
    align-items: center;
    gap: var(--space-xl);
}

.lang-switcher {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
}

.lang-btn {
    background: none;
    border: none;
    color: var(--gray-light);
    font-family: var(--font-body);
    font-size: var(--text-xs);
    font-weight: 600;
    letter-spacing: 0.1em;
    padding: var(--space-xs) var(--space-sm);
    cursor: none;
    transition: color 0.3s ease;
}

.lang-btn:hover {
    color: var(--white);
}

.lang-btn.active {
    color: var(--gold);
}

.lang-divider {
    color: var(--gray);
    font-size: var(--text-xs);
}

.nav-cta {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    color: var(--white);
    text-decoration: none;
    font-size: var(--text-sm);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: var(--space-sm) var(--space-lg);
    border: 1px solid var(--white);
    transition: all 0.4s var(--ease-out-expo);
}

.nav-cta:hover {
    background: var(--white);
    color: var(--black);
}

.nav-cta svg {
    transition: transform 0.4s var(--ease-out-expo);
}

.nav-cta:hover svg {
    transform: translate(3px, -3px);
}

@media (max-width: 768px) {
    .nav-center { display: none; }
    .nav { padding: var(--space-md) var(--space-lg); }
}

/* ============================================
   HERO SECTION
   ============================================ */

.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    padding: var(--space-5xl) var(--space-2xl) var(--space-3xl);
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-gradient {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 80% 50% at 50% -20%, rgba(212, 175, 55, 0.15) 0%, transparent 50%),
                radial-gradient(ellipse 60% 40% at 100% 100%, rgba(212, 175, 55, 0.08) 0%, transparent 40%);
}

.hero-lines {
    position: absolute;
    inset: 0;
    display: flex;
    justify-content: space-between;
    padding: 0 10%;
}

.hero-lines span {
    width: 1px;
    height: 100%;
    background: linear-gradient(to bottom, transparent, var(--gray-dark) 20%, var(--gray-dark) 80%, transparent);
    opacity: 0.3;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
}

.hero-label {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    margin-bottom: var(--space-2xl);
    font-size: var(--text-xs);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--gold);
    opacity: 0;
    animation: fadeInUp 1s var(--ease-out-expo) 0.2s forwards;
}

.label-line {
    width: 60px;
    height: 1px;
    background: var(--gold);
}

.hero-title {
    font-family: var(--font-display);
    font-size: var(--text-5xl);
    font-weight: 400;
    line-height: 0.95;
    letter-spacing: -0.03em;
    margin-bottom: var(--space-2xl);
}

.title-line {
    display: block;
    overflow: hidden;
}

.title-word {
    display: inline-block;
    opacity: 0;
    transform: translateY(100%);
    animation: revealWord 1s var(--ease-out-expo) forwards;
}

.title-word[data-delay="0"] { animation-delay: 0.3s; }
.title-word[data-delay="1"] { animation-delay: 0.4s; }
.title-word[data-delay="2"] { animation-delay: 0.5s; }
.title-word[data-delay="3"] { animation-delay: 0.6s; }
.title-word[data-delay="4"] { animation-delay: 0.7s; }
.title-word[data-delay="5"] { animation-delay: 0.8s; }

.title-italic {
    font-style: italic;
    color: var(--gold);
}

.title-outline {
    -webkit-text-stroke: 1px var(--white);
    -webkit-text-fill-color: transparent;
}

.hero-sub {
    font-size: var(--text-lg);
    color: var(--gray-light);
    max-width: 600px;
    line-height: 1.7;
    margin-bottom: var(--space-2xl);
    opacity: 0;
    animation: fadeInUp 1s var(--ease-out-expo) 0.9s forwards;
}

.hero-ctas {
    display: flex;
    gap: var(--space-lg);
    flex-wrap: wrap;
    opacity: 0;
    animation: fadeInUp 1s var(--ease-out-expo) 1s forwards;
}

/* Primary Button */
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: var(--space-md);
    padding: var(--space-lg) var(--space-xl);
    background: var(--gold);
    color: var(--black);
    text-decoration: none;
    font-size: var(--text-sm);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    position: relative;
    overflow: hidden;
    transition: all 0.5s var(--ease-out-expo);
}

.btn-primary::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--black);
    transform: translateX(-101%);
    transition: transform 0.5s var(--ease-out-expo);
}

.btn-primary:hover::before {
    transform: translateX(0);
}

.btn-primary .btn-text,
.btn-primary .btn-icon {
    position: relative;
    z-index: 1;
    transition: color 0.5s var(--ease-out-expo);
}

.btn-primary:hover .btn-text,
.btn-primary:hover .btn-icon {
    color: var(--gold);
}

.btn-primary .btn-icon svg {
    transition: transform 0.5s var(--ease-out-expo);
}

.btn-primary:hover .btn-icon svg {
    transform: translate(4px, -4px);
}

/* Ghost Button */
.btn-ghost {
    display: inline-flex;
    align-items: center;
    padding: var(--space-lg) 0;
    color: var(--white);
    text-decoration: none;
    font-size: var(--text-sm);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    position: relative;
}

.btn-ghost::after {
    content: '';
    position: absolute;
    bottom: var(--space-md);
    left: 0;
    width: 100%;
    height: 1px;
    background: var(--white);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.5s var(--ease-out-expo);
}

.btn-ghost:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

/* Hero Scroll Indicator */
.hero-scroll {
    position: absolute;
    left: var(--space-2xl);
    bottom: var(--space-3xl);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-md);
    opacity: 0;
    animation: fadeIn 1s var(--ease-out-expo) 1.2s forwards;
}

.hero-scroll span {
    font-size: var(--text-xs);
    text-transform: uppercase;
    letter-spacing: 0.2em;
    writing-mode: vertical-rl;
    color: var(--gray-light);
}

.scroll-indicator {
    width: 1px;
    height: 80px;
    background: var(--gray-dark);
    position: relative;
    overflow: hidden;
}

.scroll-dot {
    width: 3px;
    height: 20px;
    background: var(--gold);
    border-radius: 2px;
    position: absolute;
    left: -1px;
    animation: scrollDown 2s var(--ease-in-out) infinite;
}

/* Hero Stats */
.hero-stats {
    position: absolute;
    right: var(--space-2xl);
    bottom: var(--space-3xl);
    display: flex;
    gap: var(--space-3xl);
    opacity: 0;
    animation: fadeIn 1s var(--ease-out-expo) 1.3s forwards;
}

.stat-item {
    text-align: right;
}

.stat-value {
    font-family: var(--font-display);
    font-size: var(--text-3xl);
    font-weight: 400;
    color: var(--white);
    line-height: 1;
}

.stat-unit {
    font-family: var(--font-display);
    font-size: var(--text-xl);
    color: var(--gold);
}

.stat-label {
    display: block;
    font-size: var(--text-xs);
    color: var(--gray-light);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-top: var(--space-xs);
}

@media (max-width: 1024px) {
    .hero-stats {
        position: relative;
        right: auto;
        bottom: auto;
        margin-top: var(--space-3xl);
        justify-content: flex-start;
    }

    .stat-item {
        text-align: left;
    }

    .hero-scroll {
        display: none;
    }
}

@media (max-width: 768px) {
    .hero {
        padding: var(--space-4xl) var(--space-lg) var(--space-2xl);
    }

    .hero-stats {
        flex-direction: column;
        gap: var(--space-xl);
    }
}

/* ============================================
   MARQUEE
   ============================================ */

.marquee-section {
    padding: var(--space-xl) 0;
    border-top: 1px solid var(--gray-dark);
    border-bottom: 1px solid var(--gray-dark);
    overflow: hidden;
}

.marquee {
    position: relative;
}

.marquee-track {
    display: flex;
    gap: var(--space-xl);
    animation: marquee 30s linear infinite;
    width: max-content;
}

.marquee-track span {
    font-family: var(--font-body);
    font-size: var(--text-sm);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--gray-light);
    white-space: nowrap;
}

.marquee-dot {
    width: 4px;
    height: 4px;
    background: var(--gold);
    border-radius: 50%;
    flex-shrink: 0;
    align-self: center;
}

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

/* ============================================
   SECTION HEADERS
   ============================================ */

.section-header {
    margin-bottom: var(--space-4xl);
    padding: 0 var(--space-2xl);
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}

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

.section-header-light {
    color: var(--white);
}

.section-number {
    display: inline-block;
    font-size: var(--text-xs);
    font-weight: 600;
    color: var(--gold);
    letter-spacing: 0.2em;
    margin-bottom: var(--space-lg);
    padding: var(--space-sm) var(--space-md);
    border: 1px solid var(--gold);
}

.section-title {
    font-family: var(--font-display);
    font-size: var(--text-4xl);
    font-weight: 400;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.section-title span {
    display: block;
}

.section-title em {
    font-style: italic;
    color: var(--gold);
}

/* ============================================
   WORK SECTION
   ============================================ */

.work-section {
    padding: var(--space-5xl) 0;
    background: var(--black);
}

.work-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-xl);
    padding: 0 var(--space-2xl);
    max-width: 1400px;
    margin: 0 auto;
}

.work-card {
    background: var(--black-light);
    border: 1px solid var(--gray-dark);
    position: relative;
    overflow: hidden;
    transition: border-color 0.5s var(--ease-out-expo);
}

.work-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.5s var(--ease-out-expo);
}

.work-card:hover {
    border-color: var(--gold);
}

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

.work-card-wide {
    grid-column: span 2;
}

.work-card-inner {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    min-height: 350px;
}

.work-card-wide .work-card-inner {
    grid-template-columns: 1fr 2fr;
}

.work-card-visual {
    background: var(--black-lighter);
    padding: var(--space-2xl);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    overflow: hidden;
}

.work-icon {
    width: 60px;
    height: 60px;
    color: var(--gold);
}

.work-icon svg {
    width: 100%;
    height: 100%;
}

.work-metric {
    position: relative;
    z-index: 1;
}

.metric-value {
    font-family: var(--font-display);
    font-size: var(--text-3xl);
    color: var(--white);
    line-height: 1;
}

.metric-label {
    display: block;
    font-size: var(--text-xs);
    color: var(--gray-light);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-top: var(--space-xs);
}

.work-card-content {
    padding: var(--space-2xl);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.work-card-content h3 {
    font-family: var(--font-display);
    font-size: var(--text-2xl);
    font-weight: 400;
    margin-bottom: var(--space-md);
}

.work-card-content p {
    color: var(--gray-light);
    margin-bottom: var(--space-lg);
    max-width: 400px;
}

.work-tag {
    display: inline-block;
    font-size: var(--text-xs);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--gold);
    padding: var(--space-sm) var(--space-md);
    border: 1px solid var(--gold);
    align-self: flex-start;
}

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

    .work-card-wide {
        grid-column: span 1;
    }

    .work-card-inner,
    .work-card-wide .work-card-inner {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   SERVICES SECTION
   ============================================ */

.services-section {
    padding: var(--space-5xl) 0;
    background: var(--black-lighter);
    position: relative;
    overflow: hidden;
}

.services-bg {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 100% 100% at 0% 0%, rgba(212, 175, 55, 0.08) 0%, transparent 50%);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-xl);
    padding: 0 var(--space-2xl);
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.service-col {
    display: flex;
}

.service-card {
    background: var(--black);
    border: 1px solid var(--gray-dark);
    padding: var(--space-2xl);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    flex: 1;
    transition: all 0.5s var(--ease-out-expo);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--gold);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s var(--ease-out-expo);
}

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

.service-card:hover::before {
    transform: scaleX(1);
}

.service-number {
    font-size: var(--text-xs);
    font-weight: 600;
    color: var(--gold);
    letter-spacing: 0.2em;
    margin-bottom: var(--space-xl);
}

.service-title {
    font-family: var(--font-display);
    font-size: var(--text-2xl);
    font-weight: 400;
    margin-bottom: var(--space-md);
}

.service-desc {
    color: var(--gray-light);
    margin-bottom: var(--space-xl);
    line-height: 1.7;
}

.service-list {
    list-style: none;
    margin-bottom: var(--space-2xl);
    flex: 1;
}

.service-list li {
    font-size: var(--text-sm);
    color: var(--white-dim);
    padding: var(--space-sm) 0;
    border-bottom: 1px solid var(--gray-dark);
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

.service-list li::before {
    content: '';
    width: 4px;
    height: 4px;
    background: var(--gold);
    border-radius: 50%;
}

.service-visual {
    width: 100%;
    height: 150px;
    color: var(--gold);
    opacity: 0.3;
    transition: opacity 0.5s var(--ease-out-expo);
}

.service-card:hover .service-visual {
    opacity: 0.6;
}

.service-visual svg {
    width: 100%;
    height: 100%;
}

@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: 1fr;
        max-width: 600px;
    }
}

/* ============================================
   APPROACH SECTION
   ============================================ */

.approach-section {
    padding: var(--space-5xl) 0;
    background: var(--black);
}

.approach-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: var(--space-4xl);
    padding: 0 var(--space-2xl);
    max-width: 1400px;
    margin: 0 auto;
}

.approach-lead {
    font-family: var(--font-display);
    font-size: var(--text-xl);
    font-weight: 400;
    line-height: 1.6;
    color: var(--white-dim);
}

.approach-steps {
    display: flex;
    flex-direction: column;
}

.approach-step {
    display: flex;
    gap: var(--space-xl);
    padding: var(--space-xl) 0;
    opacity: 0.4;
    transition: opacity 0.5s var(--ease-out-expo);
}

.approach-step:hover,
.approach-step.active {
    opacity: 1;
}

.step-marker {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-md);
}

.step-number {
    font-size: var(--text-xs);
    font-weight: 600;
    color: var(--gold);
    width: 40px;
    height: 40px;
    border: 1px solid var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.step-line {
    width: 1px;
    flex: 1;
    background: linear-gradient(to bottom, var(--gold), transparent);
    min-height: 60px;
}

.step-content h4 {
    font-family: var(--font-display);
    font-size: var(--text-xl);
    font-weight: 400;
    margin-bottom: var(--space-sm);
}

.step-content p {
    color: var(--gray-light);
    line-height: 1.7;
}

@media (max-width: 1024px) {
    .approach-content {
        grid-template-columns: 1fr;
        gap: var(--space-3xl);
    }
}

/* ============================================
   PACKAGES SECTION
   ============================================ */

.packages-section {
    padding: var(--space-5xl) 0;
    background: var(--black-lighter);
}

.packages-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-xl);
    padding: 0 var(--space-2xl);
    max-width: 1400px;
    margin: 0 auto;
    align-items: start;
}

.package-card {
    background: var(--black);
    border: 1px solid var(--gray-dark);
    padding: var(--space-2xl);
    position: relative;
    transition: all 0.5s var(--ease-out-expo);
}

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

.package-card-featured {
    border-color: var(--gold);
    background: linear-gradient(135deg, var(--black) 0%, rgba(212, 175, 55, 0.05) 100%);
}

.package-badge {
    position: absolute;
    top: calc(-1 * var(--space-sm));
    left: var(--space-xl);
    background: var(--gold);
    color: var(--black);
    font-size: var(--text-xs);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: var(--space-xs) var(--space-md);
}

.package-header {
    margin-bottom: var(--space-lg);
}

.package-tier {
    font-size: var(--text-xs);
    font-weight: 600;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 0.15em;
}

.package-name {
    font-family: var(--font-display);
    font-size: var(--text-2xl);
    font-weight: 400;
    margin-top: var(--space-sm);
}

.package-desc {
    color: var(--gray-light);
    margin-bottom: var(--space-xl);
    line-height: 1.7;
}

.package-features {
    list-style: none;
    margin-bottom: var(--space-2xl);
}

.package-features li {
    font-size: var(--text-sm);
    color: var(--white-dim);
    padding: var(--space-sm) 0;
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

.package-features li::before {
    content: '✓';
    color: var(--gold);
    font-weight: 600;
}

.package-cta {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    color: var(--gold);
    text-decoration: none;
    font-size: var(--text-sm);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: var(--space-md) 0;
    border-bottom: 1px solid var(--gold);
    transition: all 0.4s var(--ease-out-expo);
}

.package-cta:hover {
    gap: var(--space-md);
}

.package-cta svg {
    transition: transform 0.4s var(--ease-out-expo);
}

.package-cta:hover svg {
    transform: translate(3px, -3px);
}

@media (max-width: 1024px) {
    .packages-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
    }

    .package-card-featured {
        order: -1;
    }
}

/* ============================================
   TESTIMONIAL SECTION
   ============================================ */

.testimonial-section {
    padding: var(--space-5xl) var(--space-2xl);
    background: var(--black);
    border-top: 1px solid var(--gray-dark);
    border-bottom: 1px solid var(--gray-dark);
}

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

.testimonial-text {
    font-family: var(--font-display);
    font-size: var(--text-2xl);
    font-weight: 400;
    line-height: 1.5;
    color: var(--white);
    margin-bottom: var(--space-2xl);
}

.testimonial-text em {
    font-style: italic;
    color: var(--gold);
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    gap: var(--space-xs);
}

.author-name {
    font-size: var(--text-sm);
    font-weight: 600;
    color: var(--white);
}

.author-company {
    font-size: var(--text-sm);
    color: var(--gray-light);
}

/* ============================================
   CONTACT SECTION
   ============================================ */

.contact-section {
    padding: var(--space-5xl) var(--space-2xl);
    background: var(--black-lighter);
    position: relative;
    overflow: hidden;
    min-height: 80vh;
    display: flex;
    align-items: center;
}

.contact-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.contact-shape {
    position: absolute;
    border-radius: 50%;
    border: 1px solid var(--gold);
    opacity: 0.1;
}

.contact-shape-1 {
    width: 800px;
    height: 800px;
    top: -400px;
    right: -200px;
    animation: rotate 60s linear infinite;
}

.contact-shape-2 {
    width: 600px;
    height: 600px;
    bottom: -300px;
    left: -100px;
    animation: rotate 45s linear infinite reverse;
}

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

.contact-title {
    font-family: var(--font-display);
    font-size: var(--text-4xl);
    font-weight: 400;
    line-height: 1.1;
    margin-bottom: var(--space-lg);
}

.contact-title-line {
    display: block;
}

.contact-title-accent {
    font-style: italic;
    color: var(--gold);
}

.contact-sub {
    font-size: var(--text-lg);
    color: var(--gray-light);
    margin-bottom: var(--space-3xl);
}

.contact-email {
    display: inline-flex;
    align-items: center;
    gap: var(--space-xl);
    padding: var(--space-xl) var(--space-2xl);
    background: var(--black);
    border: 1px solid var(--gray-dark);
    text-decoration: none;
    transition: all 0.5s var(--ease-out-expo);
    margin-bottom: var(--space-2xl);
}

.contact-email:hover {
    border-color: var(--gold);
    transform: translateY(-4px);
    box-shadow: 0 20px 60px rgba(212, 175, 55, 0.15);
}

.email-text {
    font-family: var(--font-display);
    font-size: var(--text-xl);
    color: var(--gold);
}

.email-icon {
    color: var(--gold);
    transition: transform 0.5s var(--ease-out-expo);
}

.contact-email:hover .email-icon {
    transform: translate(4px, -4px);
}

.contact-note {
    font-size: var(--text-sm);
    color: var(--gray-light);
}

/* ============================================
   FOOTER
   ============================================ */

.footer {
    padding: var(--space-3xl) var(--space-2xl);
    background: var(--black);
    border-top: 1px solid var(--gray-dark);
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: var(--space-xl);
}

.footer-logo {
    font-family: var(--font-display);
    font-size: var(--text-xl);
    color: var(--white);
}

.footer-logo span {
    color: var(--gold);
    font-style: italic;
}

.footer-brand p {
    font-size: var(--text-sm);
    color: var(--gray-light);
    margin-top: var(--space-xs);
}

.footer-links {
    display: flex;
    gap: var(--space-xl);
}

.footer-links a {
    font-size: var(--text-sm);
    color: var(--gray-light);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.footer-copy {
    width: 100%;
    text-align: center;
    padding-top: var(--space-xl);
    border-top: 1px solid var(--gray-dark);
    margin-top: var(--space-xl);
}

.footer-copy p {
    font-size: var(--text-xs);
    color: var(--gray);
}

@media (max-width: 768px) {
    .footer-content {
        flex-direction: column;
        text-align: center;
    }

    .footer-links {
        flex-wrap: wrap;
        justify-content: center;
    }
}

/* ============================================
   ANIMATIONS
   ============================================ */

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

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

@keyframes revealWord {
    from {
        opacity: 0;
        transform: translateY(100%);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes scrollDown {
    0% {
        transform: translateY(-100%);
        opacity: 0;
    }
    30% {
        opacity: 1;
    }
    70% {
        opacity: 1;
    }
    100% {
        transform: translateY(400%);
        opacity: 0;
    }
}

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

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

/* Scroll Reveal */
.reveal-up {
    opacity: 0;
    transform: translateY(60px);
    transition: opacity 0.8s var(--ease-out-expo), transform 0.8s var(--ease-out-expo);
}

.reveal-up.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* Magnetic Effect Class */
.magnetic {
    transition: transform 0.3s var(--ease-out-expo);
}
