/* =========================================
   AMA MARKETING - PREMIUM WEBSITE
   Cutting-Edge | Apple-Inspired | Dynamic
   ========================================= */

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

/* GPU acceleration for smoother animations on mobile */
.hero-video,
.nav,
.nav-menu,
.btn,
.card,
.service-card,
.package-card {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    will-change: transform;
}

:root {
    /* Cutting-Edge Color Palette */
    --primary: #000000;
    --gold: #c9a55a;
    --gold-bright: #f0d486;
    --accent: #2c2c2c;
    --surface: #ffffff;
    --surface-elevated: #fafafa;
    --surface-muted: #f5f5f5;
    --border: rgba(0,0,0,0.06);
    --border-strong: rgba(0,0,0,0.12);
    
    /* Text Colors */
    --text-primary: #000000;
    --text-secondary: #1d1d1f;
    --text-tertiary: #6e6e73;
    --text-muted: #86868b;
    
    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.04);
    --shadow-md: 0 8px 24px rgba(0,0,0,0.08);
    --shadow-lg: 0 16px 48px rgba(0,0,0,0.12);
    --shadow-xl: 0 24px 64px rgba(0,0,0,0.16);
    
    --font: -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'Inter', system-ui, sans-serif;
    --ease: cubic-bezier(0.4, 0.0, 0.2, 1);
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    -webkit-text-size-adjust: 100%;
    -webkit-tap-highlight-color: transparent;
}

body {
    font-family: var(--font);
    font-size: 17px;
    font-weight: 300;
    line-height: 1.7;
    color: var(--text-secondary);
    background: var(--surface);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
    overscroll-behavior-y: none;
    touch-action: pan-y;
}

h1, h2, h3, h4 {
    font-weight: 200;
    line-height: 1.08;
    letter-spacing: -0.03em;
    color: var(--text-primary);
}

h1 { font-size: 88px; }
h2 { font-size: 64px; }
h3 { font-size: 36px; font-weight: 300; }
h4 { font-size: 22px; font-weight: 400; }

a {
    color: var(--text-primary);
    text-decoration: none;
    transition: all 0.3s var(--ease);
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 64px;
}

.hide-mobile {
    display: inline;
}

/* Gradient Text */
.gradient-gold {
    background: linear-gradient(135deg, var(--gold), var(--gold-bright));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

.nav {
    position: relative;
    background: #000000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s var(--ease);
}

.nav.scrolled {
    background: #000000;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
}

.nav-content {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 64px;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo-img {
    height: 120px;
    width: auto;
    display: block;
    mix-blend-mode: screen;
    filter: brightness(1.2);
    transition: all 0.3s var(--ease);
}

.logo-img:hover {
    filter: brightness(1.4);
    transform: scale(1.05);
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 48px;
}

.nav-item {
    font-size: 15px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.8);
    position: relative;
}

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

.nav-item:hover {
    color: #ffffff;
}

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

.nav-cta {
    font-size: 15px;
    font-weight: 500;
    color: #000000;
    background: linear-gradient(135deg, var(--gold), var(--gold-bright));
    padding: 10px 24px;
    border-radius: 980px;
    transition: all 0.3s var(--ease);
}

.nav-cta:hover {
    background: linear-gradient(135deg, var(--gold-bright), var(--gold));
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(201, 165, 90, 0.4);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 12px;
    min-width: 44px;
    min-height: 44px;
    align-items: center;
    justify-content: center;
    -webkit-tap-highlight-color: transparent;
}

.nav-toggle span {
    width: 24px;
    height: 2px;
    background: #ffffff;
    border-radius: 2px;
    transition: all 0.3s var(--ease);
}

.nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translateY(8px);
}

.nav-toggle.active span:nth-child(2) {
    transform: rotate(-45deg) translateY(-8px);
}

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

.hero {
    position: relative;
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 50%, #000000 100%);
}

.hero-video-container {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
    opacity: 0;
    filter: brightness(0.6);
    transition: opacity 2s ease-in-out;
}

.hero-video.active {
    opacity: 0.5;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, transparent 0%, rgba(0,0,0,0.4) 100%);
    pointer-events: none;
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    max-width: 1100px;
    padding: 0 32px;
    animation: fadeInUp 1s var(--ease);
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 24px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 980px;
    font-size: 14px;
    font-weight: 500;
    color: var(--surface);
    margin-bottom: 32px;
    animation: pulse 2s ease-in-out infinite;
}

.badge-dot {
    width: 8px;
    height: 8px;
    background: var(--gold-bright);
    border-radius: 50%;
    animation: blink 1.5s ease-in-out infinite;
}

.hero-title {
    font-size: 96px;
    font-weight: 100;
    line-height: 1.05;
    color: var(--surface);
    margin-bottom: 32px;
    letter-spacing: -0.04em;
}

.hero-subtitle {
    font-size: 21px;
    font-weight: 300;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 48px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 80px;
    margin-bottom: 56px;
}

.stat {
    text-align: center;
}

.stat-value {
    font-size: 56px;
    font-weight: 100;
    color: var(--surface);
    line-height: 1;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 15px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.5;
    margin-bottom: 10px;
    max-width: 300px;
}

.stat-source {
    font-size: 11px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.55);
    letter-spacing: 0.2px;
    line-height: 1.4;
    max-width: 300px;
}

.hero-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.scroll-hint {
    position: absolute;
    bottom: 48px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    color: rgba(255, 255, 255, 0.5);
    font-size: 13px;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 1px;
    animation: scrollMove 2s ease-in-out infinite;
}

.scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, transparent, rgba(255, 255, 255, 0.5));
}

/* =========================================
   BUTTONS
   ========================================= */

.btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 32px;
    font-size: 17px;
    font-weight: 500;
    border-radius: 980px;
    cursor: pointer;
    border: none;
    transition: all 0.3s var(--ease);
    white-space: nowrap;
    min-height: 44px;
    -webkit-tap-highlight-color: transparent;
    justify-content: center;
}

.btn-primary {
    background: var(--gold);
    color: var(--primary);
}

.btn-primary {
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn-primary:hover::before {
    width: 300px;
    height: 300px;
}

.btn-primary:hover {
    background: var(--gold-bright);
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(201, 165, 90, 0.4);
}

.btn-primary span,
.btn-primary i {
    position: relative;
    z-index: 1;
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.15);
    color: var(--surface);
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.4);
}

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

.btn-outline:hover {
    background: var(--primary);
    color: var(--surface);
    border-color: var(--primary);
}

.btn-lg {
    padding: 20px 40px;
    font-size: 19px;
}

.btn-block {
    width: 100%;
    justify-content: center;
}

/* =========================================
   SECTIONS
   ========================================= */

.section {
    position: relative;
    padding: 140px 0;
    overflow: hidden;
}

.section-animated-bg {
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(ellipse at 30% 40%, rgba(201, 165, 90, 0.08) 0%, transparent 60%),
        radial-gradient(ellipse at 70% 60%, rgba(240, 212, 134, 0.06) 0%, transparent 60%),
        radial-gradient(ellipse at 50% 80%, rgba(255, 255, 255, 0.02) 0%, transparent 70%);
    animation: subtleFloat 15s ease-in-out infinite;
    pointer-events: none;
}

@keyframes subtleFloat {
    0%, 100% {
        transform: translate(0, 0) scale(1);
        opacity: 0.6;
    }
    33% {
        transform: translate(3%, -3%) scale(1.05);
        opacity: 0.8;
    }
    66% {
        transform: translate(-2%, 4%) scale(1.02);
        opacity: 0.7;
    }
}

.section-head {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 96px;
}

.section-label {
    display: inline-block;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    color: var(--gold);
    margin-bottom: 20px;
}

.section-title {
    margin-bottom: 24px;
}

.section-desc {
    font-size: 21px;
    font-weight: 300;
    color: var(--text-tertiary);
    line-height: 1.6;
}

/* Grid Layouts */
.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

/* =========================================
   CARDS
   ========================================= */

.card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 24px;
    padding: 48px 40px;
    transition: all 0.4s var(--ease);
    position: relative;
}

.card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: var(--shadow-xl);
    border-color: var(--gold);
}

.card {
    animation: fadeInUp 0.6s ease-out;
}

.card-icon {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--surface-muted);
    border-radius: 16px;
    font-size: 28px;
    color: var(--gold);
    margin-bottom: 28px;
    transition: all 0.3s var(--ease);
}

.card:hover .card-icon {
    background: var(--gold);
    color: var(--surface);
    transform: scale(1.1);
}

.card h3 {
    margin-bottom: 16px;
    font-size: 28px;
}

.card p {
    font-size: 16px;
    color: var(--text-tertiary);
    line-height: 1.7;
}

/* =========================================
   PROBLEM SECTION
   ========================================= */

.problem-section {
    background: var(--surface-muted);
}

.card-problem {
    position: relative;
}

.metric-badge {
    display: inline-block;
    padding: 8px 16px;
    background: rgba(201, 165, 90, 0.12);
    color: var(--gold);
    font-size: 14px;
    font-weight: 600;
    border-radius: 8px;
    margin: 16px 0;
}

.source {
    margin-top: 20px;
    font-size: 12px;
    font-weight: 500;
    color: var(--text-muted);
    letter-spacing: 0.2px;
    line-height: 1.4;
}

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

.card-service {
    text-align: left;
}

.service-number {
    position: absolute;
    top: 24px;
    right: 32px;
    font-size: 52px;
    font-weight: 100;
    color: rgba(0, 0, 0, 0.03);
    line-height: 1;
}

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

.feature-list li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 12px;
    font-size: 15px;
    color: var(--text-tertiary);
}

.feature-list li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--gold);
    font-weight: 600;
}

/* =========================================
   VIDEO SHOWCASE SECTION
   ========================================= */

.video-section {
    position: relative;
    background: var(--surface);
    overflow: hidden;
}

.video-animated-bg {
    position: absolute;
    inset: 0;
    background: 
        linear-gradient(135deg, transparent 0%, rgba(201, 165, 90, 0.03) 50%, transparent 100%);
    animation: videoShine 8s ease-in-out infinite;
}

@keyframes videoShine {
    0%, 100% {
        transform: translateX(-50%);
        opacity: 0.5;
    }
    50% {
        transform: translateX(50%);
        opacity: 0.8;
    }
}

.video-container {
    max-width: 1100px;
    margin: 0 auto;
}

.video-wrapper {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    background: var(--primary);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    margin-bottom: 48px;
    transition: all 0.4s var(--ease);
}

.video-wrapper:hover {
    transform: translateY(-8px);
    box-shadow: 0 32px 80px rgba(0, 0, 0, 0.2);
}

.video-wrapper iframe,
.video-wrapper video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.video-wrapper video {
    object-fit: cover;
}

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

.video-feature {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 32px;
    background: var(--surface-muted);
    border: 1px solid var(--border);
    border-radius: 20px;
    transition: all 0.3s var(--ease);
}

.video-feature:hover {
    transform: translateY(-4px);
    border-color: var(--gold);
    box-shadow: var(--shadow-md);
}

.video-feature .feature-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gold);
    color: var(--primary);
    border-radius: 12px;
    font-size: 22px;
}

.video-feature .feature-text h4 {
    font-size: 19px;
    font-weight: 600;
    margin-bottom: 6px;
}

.video-feature .feature-text p {
    font-size: 15px;
    color: var(--text-tertiary);
    margin: 0;
}

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

.packages-section {
    position: relative;
    background: var(--surface-elevated);
}

.offer-banner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 32px;
    padding: 24px 48px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    border-radius: 20px;
    margin-bottom: 64px;
    color: var(--surface);
    font-size: 17px;
}

.offer-banner i {
    font-size: 24px;
    color: var(--gold-bright);
}

.spots-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 20px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 980px;
    font-size: 15px;
    font-weight: 600;
    animation: urgentPulse 2s ease-in-out infinite;
}

@keyframes urgentPulse {
    0%, 100% {
        transform: scale(1);
        background: rgba(255, 255, 255, 0.15);
    }
    50% {
        transform: scale(1.05);
        background: rgba(201, 165, 90, 0.3);
    }
}

#spotsLeft {
    animation: blink 1.5s ease-in-out infinite;
}

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

.package-card {
    background: var(--surface);
    border: 2px solid var(--border);
    border-radius: 28px;
    padding: 48px 40px;
    transition: all 0.4s var(--ease);
    position: relative;
}

.package-card:hover {
    transform: translateY(-16px) scale(1.03);
    box-shadow: var(--shadow-xl);
    border-color: var(--gold);
}

.package-card {
    animation: fadeInUp 0.8s ease-out;
}

.package-card.featured {
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    border-color: var(--gold);
    color: var(--surface);
    transform: scale(1.05);
}

.package-card.featured:hover {
    transform: translateY(-12px) scale(1.05);
}

.package-card.featured * {
    color: var(--surface) !important;
}

.package-badge {
    position: absolute;
    top: -16px;
    left: 50%;
    transform: translateX(-50%);
    padding: 8px 24px;
    background: var(--gold);
    color: var(--primary);
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 980px;
}

.package-head {
    text-align: center;
    margin-bottom: 32px;
    padding-bottom: 32px;
    border-bottom: 1px solid var(--border);
}

.package-card.featured .package-head {
    border-bottom-color: rgba(255, 255, 255, 0.15);
}

.package-head h3 {
    font-size: 36px;
    margin-bottom: 8px;
}

.package-head p {
    font-size: 16px;
    color: var(--text-tertiary);
}

.package-price {
    text-align: center;
    margin-bottom: 32px;
}

.price-old {
    font-size: 18px;
    color: var(--text-muted);
    text-decoration: line-through;
    margin-bottom: 8px;
}

.price-new {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 8px;
}

.price-amount {
    font-size: 64px;
    font-weight: 100;
    line-height: 1;
}

.price-period {
    font-size: 20px;
    font-weight: 300;
    color: var(--text-tertiary);
}

.price-note {
    font-size: 14px;
    color: var(--gold);
    font-weight: 600;
    margin-top: 8px;
}

.package-for {
    text-align: center;
    padding: 16px 24px;
    background: var(--surface-muted);
    border-radius: 12px;
    margin-bottom: 32px;
    font-size: 15px;
}

.package-card.featured .package-for {
    background: rgba(255, 255, 255, 0.1);
}

.package-features {
    margin-bottom: 32px;
}

.feature-group {
    margin-bottom: 24px;
}

.feature-group h4 {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 17px;
    font-weight: 600;
    margin-bottom: 12px;
}

.feature-group i {
    color: var(--gold);
    font-size: 18px;
}

.feature-group ul {
    list-style: none;
    padding-left: 30px;
}

.feature-group ul li {
    font-size: 15px;
    color: var(--text-tertiary);
    margin-bottom: 8px;
    position: relative;
}

.feature-group ul li::before {
    content: '•';
    position: absolute;
    left: -16px;
    color: var(--gold);
}

.package-note {
    text-align: center;
    font-size: 15px;
    color: var(--text-tertiary);
    max-width: 700px;
    margin: 0 auto;
}

/* =========================================
   RESULTS SECTION
   ========================================= */

.results-section {
    background: var(--surface);
}

.result-card {
    background: var(--surface-muted);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 48px 32px;
    text-align: center;
    transition: all 0.4s var(--ease);
}

.result-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.result-card.highlight {
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    color: var(--surface);
    border-color: var(--gold);
}

.result-card.highlight * {
    color: var(--surface) !important;
}

.result-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(201, 165, 90, 0.15);
    border-radius: 50%;
    font-size: 24px;
    color: var(--gold);
    margin: 0 auto 24px;
}

.result-card.highlight .result-icon {
    background: rgba(255, 255, 255, 0.15);
    color: var(--gold-bright);
}

.result-value {
    font-size: 56px;
    font-weight: 100;
    line-height: 1;
    margin-bottom: 12px;
}

.result-label {
    font-size: 15px;
    font-weight: 500;
    color: var(--text-secondary);
    margin-bottom: 12px;
    line-height: 1.5;
    min-height: 42px;
}

.result-source {
    font-size: 12px;
    font-weight: 400;
    color: var(--text-muted);
    letter-spacing: 0.2px;
    line-height: 1.4;
}

/* =========================================
   CTA SECTION
   ========================================= */

.cta-section {
    position: relative;
    padding: 160px 0;
    text-align: center;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    overflow: hidden;
}

.cta-animated-bg {
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(circle at 40% 40%, rgba(201, 165, 90, 0.25) 0%, transparent 50%),
        radial-gradient(circle at 60% 60%, rgba(240, 212, 134, 0.2) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.05) 0%, transparent 60%);
    animation: ctaPulse 8s ease-in-out infinite;
}

@keyframes ctaPulse {
    0%, 100% {
        transform: scale(1) rotate(0deg);
        opacity: 0.4;
    }
    33% {
        transform: scale(1.12) rotate(2deg);
        opacity: 0.6;
    }
    66% {
        transform: scale(1.08) rotate(-2deg);
        opacity: 0.5;
    }
}

.cta-animated-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: 
        linear-gradient(45deg, transparent 30%, rgba(201, 165, 90, 0.1) 50%, transparent 70%);
    animation: shimmer 3s ease-in-out infinite;
}

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

.cta-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, transparent 0%, rgba(0,0,0,0.5) 100%);
}

.cta-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
    color: var(--surface);
}

.cta-icon {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    font-size: 32px;
    color: var(--gold-bright);
    margin: 0 auto 32px;
    animation: pulse 2s ease-in-out infinite;
}

.cta-content h2 {
    font-size: 56px;
    font-weight: 200;
    color: var(--surface);
    margin-bottom: 24px;
}

.cta-content p {
    font-size: 19px;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 40px;
    line-height: 1.6;
}

.cta-note {
    font-size: 15px !important;
    color: rgba(255, 255, 255, 0.6) !important;
    margin-top: 24px !important;
}

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

.contact-section {
    background: var(--surface-muted);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 64px;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-form {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 24px;
    padding: 56px 48px;
}

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

.form-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.form-group label {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 16px 20px;
    font-size: 16px;
    font-family: var(--font);
    background: var(--surface-muted);
    border: 1px solid var(--border);
    border-radius: 12px;
    transition: all 0.3s var(--ease);
    color: var(--text-primary);
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    min-height: 44px;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--gold);
    background: var(--surface);
    box-shadow: 0 0 0 4px rgba(201, 165, 90, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-privacy {
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: center;
    font-size: 14px;
    color: var(--text-muted);
    margin-top: 24px;
}

.form-privacy i {
    color: var(--gold);
}

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

.info-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 32px 28px;
}

.info-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--surface-muted);
    border-radius: 12px;
    font-size: 20px;
    color: var(--gold);
    margin-bottom: 20px;
}

.info-card h4 {
    font-size: 19px;
    font-weight: 600;
    margin-bottom: 12px;
}

.info-card a {
    color: var(--gold);
    font-weight: 500;
}

.info-card a:hover {
    text-decoration: underline;
}

.info-card p {
    font-size: 15px;
    color: var(--text-tertiary);
}

.info-card ul {
    list-style: none;
}

.info-card ul li {
    position: relative;
    padding-left: 20px;
    font-size: 15px;
    color: var(--text-tertiary);
    margin-bottom: 8px;
}

.info-card ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--gold);
    font-weight: 600;
}

.form-success {
    text-align: center;
    padding: 80px 32px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 24px;
}

.success-icon {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gold);
    border-radius: 50%;
    font-size: 36px;
    color: var(--primary);
    margin: 0 auto 24px;
}

.form-success h3 {
    font-size: 32px;
    margin-bottom: 16px;
}

.form-success p {
    font-size: 17px;
    color: var(--text-tertiary);
}

/* =========================================
   CERTIFICATIONS
   ========================================= */

.certifications-section {
    background: var(--surface-muted);
    padding: 80px 0;
}

.certifications-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 48px;
    max-width: 1000px;
    margin: 0 auto;
}

.certification-card {
    background: var(--surface);
    border-radius: 20px;
    padding: 32px;
    box-shadow: var(--shadow-md);
    transition: all 0.3s var(--ease);
    display: flex;
    align-items: center;
    justify-content: center;
}

.certification-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.cert-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 12px;
}

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

.footer {
    background: var(--primary);
    color: var(--surface);
    padding: 80px 0 40px;
}

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

.footer-logo {
    height: 140px;
    width: auto;
    display: block;
    mix-blend-mode: screen;
    filter: brightness(1.2);
    margin-bottom: 24px;
}

.footer-tagline {
    font-size: 21px;
    font-weight: 300;
    color: var(--surface);
    margin-bottom: 12px;
}

.footer-desc {
    font-size: 15px;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.7;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer-links h4 {
    font-size: 17px;
    font-weight: 600;
    color: var(--surface);
    margin-bottom: 8px;
}

.footer-links a {
    font-size: 15px;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.7);
}

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

.footer-bottom {
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
}

.footer-address {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.4);
    font-style: normal;
}

.footer-trust {
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-trust i {
    color: var(--gold);
}

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

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

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-60px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(60px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

@keyframes blink {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.3;
    }
}

@keyframes scrollMove {
    0%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    50% {
        transform: translateX(-50%) translateY(10px);
    }
}

.fade-in {
    animation: fadeInUp 0.8s var(--ease) forwards;
}

.fade-in-left {
    animation: fadeInLeft 0.8s var(--ease) forwards;
}

.fade-in-right {
    animation: fadeInRight 0.8s var(--ease) forwards;
}

.scale-in {
    animation: scaleIn 0.6s var(--ease) forwards;
}

/* Stagger animation delays */
.card:nth-child(1) { animation-delay: 0.1s; }
.card:nth-child(2) { animation-delay: 0.2s; }
.card:nth-child(3) { animation-delay: 0.3s; }
.card:nth-child(4) { animation-delay: 0.4s; }
.card:nth-child(5) { animation-delay: 0.5s; }
.card:nth-child(6) { animation-delay: 0.6s; }

.result-card:nth-child(1) { animation-delay: 0.1s; }
.result-card:nth-child(2) { animation-delay: 0.2s; }
.result-card:nth-child(3) { animation-delay: 0.3s; }
.result-card:nth-child(4) { animation-delay: 0.4s; }
.result-card:nth-child(5) { animation-delay: 0.5s; }
.result-card:nth-child(6) { animation-delay: 0.6s; }

/* =========================================
   RESPONSIVE
   ========================================= */

@media (max-width: 1024px) {
    .container {
        padding: 0 40px;
    }
    
    .nav-content {
        padding: 0 40px;
    }
    
    h1 { font-size: 72px; }
    h2 { font-size: 52px; }
    
    .hero-title {
        font-size: 76px;
    }
    
    .grid-3 {
        grid-template-columns: 1fr;
    }
    
    .video-features {
        grid-template-columns: 1fr;
    }
    
    .certifications-grid {
        grid-template-columns: 1fr;
        gap: 32px;
        max-width: 600px;
    }
    
    .certification-card {
        padding: 24px;
    }
    
    .cert-image {
        border-radius: 8px;
    }
    
    .packages-grid {
        grid-template-columns: 1fr;
    }
    
    .package-card.featured {
        transform: scale(1);
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .footer-logo {
        height: 120px;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 24px;
    }
    
    .nav-content {
        padding: 0 24px;
        height: 64px;
    }
    
    .logo-img {
        height: 96px;
    }
    
    .nav-menu {
        position: fixed;
        top: 64px;
        left: 0;
        right: 0;
        flex-direction: column;
        gap: 0;
        background: #000000;
        padding: 32px 24px;
        box-shadow: var(--shadow-lg);
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s var(--ease);
        max-height: calc(100vh - 64px);
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
    }
    
    .nav-menu.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    
    .nav-item {
        padding: 20px 16px;
        width: 100%;
        text-align: center;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        color: rgba(255, 255, 255, 0.8);
        font-size: 18px;
        min-height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .nav-item:last-of-type {
        border-bottom: none;
    }
    
    .nav-cta {
        margin-top: 24px;
        width: 100%;
        text-align: center;
        padding: 16px 32px;
        font-size: 18px;
        min-height: 44px;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    h1 { font-size: 48px; }
    h2 { font-size: 40px; }
    h3 { font-size: 28px; }
    
    .hero {
        min-height: 100vh;
        height: auto;
        padding: 120px 0 80px;
    }
    
    .hero-content {
        padding: 0 24px;
    }
    
    .hero-badge {
        font-size: 13px;
        padding: 8px 20px;
        margin-bottom: 24px;
    }
    
    .hero-title {
        font-size: 48px;
        margin-bottom: 20px;
        line-height: 1.1;
    }
    
    .hero-subtitle {
        font-size: 17px;
        margin-bottom: 36px;
        line-height: 1.5;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 40px;
        margin-bottom: 40px;
    }
    
    .stat {
        padding: 0 20px;
    }
    
    .stat-value {
        font-size: 48px;
    }
    
    .stat-label {
        font-size: 16px;
        max-width: 100%;
        padding: 0 10px;
    }
    
    .stat-source {
        font-size: 12px;
        max-width: 100%;
        padding: 0 10px;
        line-height: 1.5;
    }
    
    .hero-actions {
        flex-direction: column;
    }
    
    .hide-mobile {
        display: none;
    }
    
    .scroll-hint {
        display: none;
    }
    
    .section {
        padding: 80px 0;
    }
    
    .section-head {
        margin-bottom: 56px;
    }
    
    .section-desc {
        font-size: 18px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-logo {
        height: 110px;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 20px;
    }
    
    .nav-content {
        padding: 0 20px;
    }
    
    .logo-img {
        height: 84px;
    }
    
    .hero {
        min-height: 100vh;
        height: auto;
        padding: 100px 0 60px;
    }
    
    .hero-content {
        padding: 0 20px;
    }
    
    .hero-badge {
        font-size: 11px;
        padding: 6px 14px;
        margin-bottom: 16px;
        white-space: nowrap;
    }
    
    .badge-dot {
        width: 6px;
        height: 6px;
    }
    
    .hero-title {
        font-size: 36px;
        margin-bottom: 16px;
        line-height: 1.15;
    }
    
    .hero-subtitle {
        font-size: 15px;
        margin-bottom: 28px;
        line-height: 1.5;
    }
    
    .hero-stats {
        gap: 32px;
        margin-bottom: 32px;
    }
    
    .stat {
        padding: 0 10px;
    }
    
    .stat-value {
        font-size: 40px;
    }
    
    .stat-label {
        font-size: 14px;
        line-height: 1.4;
    }
    
    .stat-source {
        font-size: 10px;
        line-height: 1.4;
    }
    
    .btn {
        padding: 14px 24px;
        font-size: 15px;
    }
    
    .btn-lg {
        padding: 16px 32px;
        font-size: 17px;
    }
    
    .card {
        padding: 32px 24px;
    }
    
    .contact-form {
        padding: 32px 24px;
    }
    
    .footer-logo {
        height: 96px;
    }
    
    h1 { font-size: 36px; }
    h2 { font-size: 32px; }
}

/* =========================================
   ADDITIONAL SERVICES PAGE STYLES
   ========================================= */

/* Services Section */
.services-section {
    padding: 120px 0;
    background: var(--surface);
}

.section-header {
    text-align: center;
    margin-bottom: 80px;
}

.section-tag {
    display: inline-block;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 16px;
}

.section-title {
    font-size: 56px;
    font-weight: 200;
    line-height: 1.1;
    letter-spacing: -0.02em;
    margin-bottom: 16px;
}

.section-subtitle {
    font-size: 20px;
    color: var(--text-tertiary);
    max-width: 600px;
    margin: 0 auto;
}

.text-gold {
    color: var(--gold);
}

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

.service-card {
    background: var(--surface-elevated);
    border: 1px solid var(--border);
    border-radius: 24px;
    padding: 48px;
    transition: all 0.4s var(--ease);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, var(--gold), var(--gold-bright));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s var(--ease);
}

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

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

.service-number {
    font-size: 14px;
    font-weight: 600;
    color: var(--gold);
    margin-bottom: 24px;
    letter-spacing: 0.05em;
}

.service-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--gold), var(--gold-bright));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    transition: all 0.4s var(--ease);
}

.service-icon i {
    font-size: 28px;
    color: #000000;
}

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

.service-card h3 {
    font-size: 26px;
    font-weight: 500;
    margin-bottom: 16px;
    color: var(--text-primary);
}

.service-card p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-tertiary);
}

/* Process Section */
.process-section {
    padding: 120px 0;
    background: var(--surface-muted);
}

.process-timeline {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
}

.process-timeline::before {
    content: '';
    position: absolute;
    left: 30px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, var(--gold) 0%, var(--gold-bright) 100%);
}

.process-step {
    display: flex;
    gap: 40px;
    margin-bottom: 60px;
    position: relative;
}

.process-step:last-child {
    margin-bottom: 0;
}

.step-number {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--gold), var(--gold-bright));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 700;
    color: #000000;
    position: relative;
    z-index: 2;
}

.step-content {
    flex: 1;
    padding-top: 8px;
}

.step-content h3 {
    font-size: 28px;
    font-weight: 500;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.step-content p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-tertiary);
}

/* CTA Section */
.cta-section {
    position: relative;
    padding: 160px 0;
    overflow: hidden;
}

.cta-video-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.cta-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.75);
    z-index: 1;
}

.cta-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.cta-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--gold), var(--gold-bright));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 32px;
}

.cta-icon i {
    font-size: 32px;
    color: #000000;
}

.cta-content h2 {
    font-size: 48px;
    font-weight: 300;
    color: #ffffff;
    margin-bottom: 24px;
}

.cta-content > p {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 40px;
    line-height: 1.6;
}

.cta-note {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    margin-top: 24px;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 32px;
    font-size: 16px;
    font-weight: 500;
    border-radius: 980px;
    transition: all 0.3s var(--ease);
    cursor: pointer;
    text-decoration: none;
}

.btn-gold {
    background: linear-gradient(135deg, var(--gold), var(--gold-bright));
    color: #000000;
    box-shadow: 0 4px 16px rgba(201, 165, 90, 0.3);
}

.btn-gold:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(201, 165, 90, 0.4);
}

.btn-xl {
    padding: 20px 40px;
    font-size: 18px;
}

/* Mobile Optimizations for Additional Services */
@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .service-card {
        padding: 40px;
    }
    
    .section-title {
        font-size: 48px;
    }
    
    .process-timeline::before {
        left: 24px;
    }
    
    .step-number {
        width: 48px;
        height: 48px;
        font-size: 16px;
    }
    
    .process-step {
        gap: 32px;
    }
}

@media (max-width: 768px) {
    .services-section {
        padding: 80px 0;
    }
    
    .section-header {
        margin-bottom: 56px;
    }
    
    .section-title {
        font-size: 36px;
    }
    
    .section-subtitle {
        font-size: 18px;
    }
    
    .service-card {
        padding: 32px 24px;
    }
    
    .service-icon {
        width: 56px;
        height: 56px;
        border-radius: 12px;
    }
    
    .service-icon i {
        font-size: 24px;
    }
    
    .service-card h3 {
        font-size: 22px;
    }
    
    .service-card p {
        font-size: 15px;
    }
    
    .process-section {
        padding: 80px 0;
    }
    
    .process-timeline::before {
        left: 20px;
    }
    
    .process-step {
        gap: 24px;
        margin-bottom: 48px;
    }
    
    .step-number {
        width: 40px;
        height: 40px;
        font-size: 14px;
    }
    
    .step-content h3 {
        font-size: 22px;
    }
    
    .step-content p {
        font-size: 15px;
    }
    
    .cta-section {
        padding: 100px 0;
    }
    
    .cta-icon {
        width: 64px;
        height: 64px;
        margin-bottom: 24px;
    }
    
    .cta-icon i {
        font-size: 28px;
    }
    
    .cta-content h2 {
        font-size: 36px;
    }
    
    .cta-content > p {
        font-size: 18px;
    }
}

@media (max-width: 480px) {
    .services-section {
        padding: 60px 0;
    }
    
    .section-header {
        margin-bottom: 40px;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .section-subtitle {
        font-size: 16px;
    }
    
    .service-card {
        padding: 24px 20px;
        border-radius: 16px;
    }
    
    .service-number {
        font-size: 12px;
        margin-bottom: 16px;
    }
    
    .service-icon {
        width: 48px;
        height: 48px;
        border-radius: 10px;
        margin-bottom: 16px;
    }
    
    .service-icon i {
        font-size: 20px;
    }
    
    .service-card h3 {
        font-size: 20px;
        margin-bottom: 12px;
    }
    
    .service-card p {
        font-size: 14px;
        line-height: 1.6;
    }
    
    .process-section {
        padding: 60px 0;
    }
    
    .process-timeline::before {
        left: 16px;
    }
    
    .process-step {
        gap: 20px;
        margin-bottom: 40px;
    }
    
    .step-number {
        width: 32px;
        height: 32px;
        font-size: 12px;
    }
    
    .step-content {
        padding-top: 4px;
    }
    
    .step-content h3 {
        font-size: 20px;
        margin-bottom: 8px;
    }
    
    .step-content p {
        font-size: 14px;
        line-height: 1.6;
    }
    
    .cta-section {
        padding: 80px 0;
    }
    
    .cta-icon {
        width: 56px;
        height: 56px;
        margin-bottom: 20px;
    }
    
    .cta-icon i {
        font-size: 24px;
    }
    
    .cta-content h2 {
        font-size: 28px;
        margin-bottom: 16px;
    }
    
    .cta-content > p {
        font-size: 16px;
        margin-bottom: 32px;
    }
    
    .btn {
        padding: 14px 24px;
        font-size: 15px;
        gap: 8px;
    }
    
    .btn-xl {
        padding: 16px 28px;
        font-size: 16px;
    }
    
    .cta-note {
        font-size: 13px;
        margin-top: 16px;
    }
}
