/* ============================================
   APEX STRATEGY GROUP - AGGRESSIVE DESIGN
   Dark, Edgy, Professional Consulting Theme
   ============================================ */

/* ============================================
   CSS VARIABLES - AGGRESSIVE COLOR PALETTE
   ============================================ */
:root {
    /* Dark Backgrounds */
    --color-dark-navy: #0d1117;
    --color-charcoal: #14181f;
    --color-dark-blue: #1a1f2e;
    --color-darker: #0a0e14;
    
    /* Gold & Copper Accents */
    --color-gold: #D4AF37;
    --color-copper: #C9A961;
    --color-rose-gold: #B76E79;
    --color-metallic: #e8d7a8;
    
    /* Accent Colors */
    --color-electric-blue: #00d9ff;
    --color-bright-gold: #ffd700;
    
    /* Neutral Colors */
    --color-white: #ffffff;
    --color-light-gray: #e5e7eb;
    --color-gray: #9ca3af;
    --color-dark-gray: #4b5563;
    
    /* Gradients */
    --gradient-gold: linear-gradient(135deg, #D4AF37 0%, #C9A961 100%);
    --gradient-dark: linear-gradient(180deg, #0d1117 0%, #1a1f2e 100%);
    --gradient-metallic: linear-gradient(135deg, #D4AF37 0%, #e8d7a8 50%, #C9A961 100%);
    --gradient-hero: linear-gradient(135deg, #0a0e14 0%, #1a1f2e 50%, #0d1117 100%);
    
    /* Shadows */
    --shadow-gold: 0 0 30px rgba(212, 175, 55, 0.3);
    --shadow-deep: 0 20px 60px rgba(0, 0, 0, 0.8);
    --shadow-card: 0 10px 40px rgba(0, 0, 0, 0.5);
    --shadow-text: 0 2px 10px rgba(0, 0, 0, 0.8);
    
    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 6rem;
    
    /* Typography */
    --font-heading: 'Orbitron', sans-serif;
    --font-subheading: 'Rajdhani', sans-serif;
    --font-body: 'Inter', sans-serif;
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
}

/* ============================================
   RESET & BASE STYLES
   ============================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

body {
    font-family: var(--font-body);
    background: var(--color-dark-navy);
    color: var(--color-light-gray);
    line-height: 1.6;
    overflow-x: hidden;
}

/* ============================================
   TYPOGRAPHY
   ============================================ */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    color: var(--color-gold);
    text-transform: uppercase;
    letter-spacing: 1px;
}

h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    text-shadow: var(--shadow-text);
}

h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    text-shadow: var(--shadow-text);
}

h3 {
    font-size: clamp(1.5rem, 3vw, 2rem);
}

h4 {
    font-size: clamp(1.25rem, 2.5vw, 1.5rem);
}

p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.lead {
    font-size: 1.3rem;
    font-weight: 500;
    color: var(--color-metallic);
    line-height: 1.8;
}

strong {
    color: var(--color-gold);
    font-weight: 600;
}

a {
    color: var(--color-gold);
    text-decoration: none;
    transition: var(--transition-fast);
}

a:hover {
    color: var(--color-bright-gold);
}

/* ============================================
   CONTAINER & LAYOUT
   ============================================ */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

section {
    position: relative;
    padding: var(--spacing-xl) 0;
    overflow: hidden;
}

/* ============================================
   GEOMETRIC BACKGROUNDS
   ============================================ */
.section-geometric-bg,
.hero-geometric-bg,
.footer-geometric-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.03;
    background-image: 
        linear-gradient(30deg, var(--color-gold) 1px, transparent 1px),
        linear-gradient(120deg, var(--color-gold) 1px, transparent 1px),
        linear-gradient(60deg, var(--color-copper) 1px, transparent 1px);
    background-size: 80px 80px, 80px 80px, 80px 80px;
    background-position: 0 0, 0 0, 40px 40px;
    pointer-events: none;
    z-index: 1;
}

.hero-circuit-pattern {
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background-image: 
        repeating-linear-gradient(90deg, transparent, transparent 2px, var(--color-gold) 2px, var(--color-gold) 3px),
        repeating-linear-gradient(0deg, transparent, transparent 2px, var(--color-gold) 2px, var(--color-gold) 3px);
    background-size: 100px 100px;
    opacity: 0.05;
    pointer-events: none;
    z-index: 1;
}

/* Angular Dividers */
.hero-angle-divider,
.section-angle-divider {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 80px;
    background: var(--color-dark-navy);
    clip-path: polygon(0 50%, 100% 0, 100% 100%, 0 100%);
    z-index: 2;
}

.nav-geometric-line {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--gradient-gold);
}

/* ============================================
   NAVIGATION
   ============================================ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(13, 17, 23, 0.95);
    backdrop-filter: blur(10px);
    padding: 1rem 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
}

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

.nav-brand {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.nav-logo {
    height: 60px;
    width: auto;
    background: rgba(255, 255, 255, 0.98);
    padding: 0.5rem 1.2rem;
    border-radius: 12px;
    box-shadow: 0 0 30px rgba(212, 175, 55, 0.5), 0 5px 20px rgba(0, 0, 0, 0.4);
    border: 2px solid rgba(212, 175, 55, 0.4);
    transition: var(--transition-normal);
}

.nav-logo:hover {
    box-shadow: 0 0 40px rgba(212, 175, 55, 0.7), 0 8px 25px rgba(0, 0, 0, 0.5);
    transform: scale(1.05);
    border-color: var(--color-gold);
}

.brand-text {
    display: flex;
    flex-direction: column;
}

.brand-name {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--color-gold);
    letter-spacing: 2px;
    text-shadow: var(--shadow-text);
}

.brand-tagline {
    font-family: var(--font-subheading);
    font-size: 0.75rem;
    color: var(--color-copper);
    letter-spacing: 1px;
    font-weight: 500;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-link {
    font-family: var(--font-subheading);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--color-light-gray);
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 0.5rem 1rem;
    position: relative;
    transition: var(--transition-fast);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--gradient-gold);
    transition: var(--transition-normal);
    transform: translateX(-50%);
}

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

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-link.cta-nav {
    background: var(--gradient-gold);
    color: var(--color-dark-navy);
    border-radius: 4px;
    padding: 0.75rem 1.5rem;
    font-weight: 700;
}

.nav-link.cta-nav::after {
    display: none;
}

.nav-link.cta-nav:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-gold);
}

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

.nav-toggle span {
    width: 30px;
    height: 3px;
    background: var(--color-gold);
    border-radius: 2px;
    transition: var(--transition-fast);
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-hero);
    position: relative;
    padding-top: 80px;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 50%, rgba(212, 175, 55, 0.1) 0%, transparent 50%);
    pointer-events: none;
    z-index: 1;
}

.hero-container {
    position: relative;
    z-index: 10;
    text-align: center;
}

.hero-logo {
    width: 500px;
    max-width: 90%;
    height: auto;
    margin-bottom: 3rem;
    background: rgba(255, 255, 255, 0.98);
    padding: 2.5rem 4rem;
    border-radius: 20px;
    box-shadow: 0 0 60px rgba(212, 175, 55, 0.6), 0 30px 80px rgba(0, 0, 0, 0.7);
    border: 3px solid var(--color-gold);
    animation: float 3s ease-in-out infinite;
}

.hero-logo:hover {
    box-shadow: 0 0 80px rgba(212, 175, 55, 0.8), 0 35px 90px rgba(0, 0, 0, 0.8);
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

.hero-title {
    margin-bottom: 1rem;
}

.title-line-1,
.title-line-2 {
    display: block;
    background: var(--gradient-metallic);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 900;
    letter-spacing: 4px;
    line-height: 1.1;
}

.hero-tagline {
    font-family: var(--font-subheading);
    font-size: clamp(1.2rem, 2.5vw, 1.8rem);
    color: var(--color-copper);
    font-weight: 600;
    letter-spacing: 3px;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.hero-subtitle {
    font-family: var(--font-subheading);
    font-size: clamp(1rem, 2vw, 1.3rem);
    color: var(--color-gold);
    font-weight: 500;
    letter-spacing: 2px;
    margin-bottom: 2rem;
}

.hero-description {
    max-width: 800px;
    margin: 0 auto 3rem;
    font-size: 1.2rem;
    color: var(--color-light-gray);
    line-height: 1.8;
}

.hero-cta {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin-bottom: 4rem;
}

.hero-metrics {
    display: flex;
    justify-content: center;
    gap: 4rem;
    flex-wrap: wrap;
}

.metric {
    text-align: center;
}

.metric-value {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    font-weight: 900;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.metric-label {
    font-family: var(--font-subheading);
    font-size: 1rem;
    color: var(--color-copper);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    font-family: var(--font-subheading);
    font-size: 1.1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden;
}

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

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

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

.btn-primary {
    background: var(--gradient-gold);
    color: var(--color-dark-navy);
    box-shadow: var(--shadow-gold);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 40px rgba(212, 175, 55, 0.5);
}

.btn-secondary {
    background: transparent;
    color: var(--color-gold);
    border: 2px solid var(--color-gold);
}

.btn-secondary:hover {
    background: var(--color-gold);
    color: var(--color-dark-navy);
    transform: translateY(-3px);
}

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

.btn-outline:hover {
    background: rgba(212, 175, 55, 0.1);
    transform: translateY(-3px);
    box-shadow: var(--shadow-gold);
}

.btn-premium {
    background: linear-gradient(135deg, #C9A961 0%, #D4AF37 50%, #e8d7a8 100%);
    color: var(--color-dark-navy);
    padding: 1.25rem 2.5rem;
    font-size: 1.2rem;
    box-shadow: var(--shadow-gold);
}

.btn-premium:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 0 50px rgba(212, 175, 55, 0.6);
}

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

/* ============================================
   SECTION HEADERS
   ============================================ */
.section-header {
    text-align: center;
    margin-bottom: var(--spacing-lg);
    position: relative;
    z-index: 10;
}

.section-subtitle {
    display: block;
    font-family: var(--font-subheading);
    font-size: 1rem;
    color: var(--color-copper);
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 600;
    margin-bottom: 1rem;
}

.section-title {
    margin-bottom: 1rem;
}

.section-title .highlight {
    background: var(--gradient-metallic);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-description {
    max-width: 700px;
    margin: 0 auto;
    font-size: 1.1rem;
    color: var(--color-gray);
}

/* ============================================
   ABOUT SECTION
   ============================================ */
.about {
    background: var(--color-charcoal);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
    position: relative;
    z-index: 10;
}

.about-text p {
    margin-bottom: 1.5rem;
}

.core-promise {
    display: flex;
    gap: 1.5rem;
    background: rgba(212, 175, 55, 0.05);
    border-left: 4px solid var(--color-gold);
    padding: 2rem;
    margin-top: 2rem;
    border-radius: 4px;
}

.promise-icon {
    font-size: 3rem;
    color: var(--color-gold);
    flex-shrink: 0;
}

.promise-content h3 {
    margin-bottom: 1rem;
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.feature-card {
    background: var(--color-dark-navy);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 8px;
    padding: 2rem;
    transition: var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 0;
    background: var(--gradient-gold);
    transition: var(--transition-normal);
}

.feature-card:hover {
    transform: translateX(10px);
    border-color: var(--color-gold);
    box-shadow: var(--shadow-gold);
}

.feature-card:hover::before {
    height: 100%;
}

.feature-icon {
    font-size: 2.5rem;
    color: var(--color-gold);
    margin-bottom: 1rem;
}

.feature-card h3 {
    margin-bottom: 0.75rem;
    font-size: 1.5rem;
}

.feature-card p {
    color: var(--color-gray);
    margin: 0;
}

/* ============================================
   OUR METHOD SECTION
   ============================================ */
.method {
    background: var(--color-dark-navy);
    position: relative;
}

.method-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 3rem;
    margin-bottom: 4rem;
    position: relative;
    z-index: 10;
}

@media (min-width: 1200px) {
    .method-steps {
        grid-template-columns: repeat(2, 1fr);
    }
}

.method-step {
    background: var(--color-charcoal);
    border: 2px solid rgba(212, 175, 55, 0.2);
    border-radius: 12px;
    padding: 3rem 2rem;
    position: relative;
    transition: var(--transition-normal);
}

.method-step::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: var(--gradient-gold);
    opacity: 0.05;
    transition: var(--transition-normal);
    border-radius: 12px;
}

.method-step:hover {
    transform: translateY(-10px);
    border-color: var(--color-gold);
    box-shadow: var(--shadow-card);
}

.method-step:hover::before {
    width: 100%;
}

.step-number {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    font-family: var(--font-heading);
    font-size: 4rem;
    font-weight: 900;
    color: rgba(212, 175, 55, 0.1);
    line-height: 1;
}

.step-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    box-shadow: var(--shadow-gold);
}

.step-icon i {
    font-size: 2.5rem;
    color: var(--color-dark-navy);
}

.method-step h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--color-gold);
}

.method-step > p {
    color: var(--color-light-gray);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.step-deliverables {
    list-style: none;
    margin-top: 1.5rem;
}

.step-deliverables li {
    padding: 0.75rem 0;
    color: var(--color-gray);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
}

.step-deliverables li:last-child {
    border-bottom: none;
}

.step-deliverables i {
    color: var(--color-gold);
    font-size: 1.1rem;
    flex-shrink: 0;
}

.method-cta {
    text-align: center;
    background: rgba(212, 175, 55, 0.05);
    border: 2px solid var(--color-gold);
    border-radius: 12px;
    padding: 3rem 2rem;
    position: relative;
    z-index: 10;
}

.method-highlight {
    font-family: var(--font-subheading);
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--color-gold);
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.method-highlight i {
    font-size: 1.6rem;
    animation: pulse 2s infinite;
}

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

/* ============================================
   CLIENTS SECTION
   ============================================ */
.clients {
    background: var(--color-dark-navy);
}

.clients-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    position: relative;
    z-index: 10;
}

.client-card {
    background: var(--color-charcoal);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 8px;
    padding: 2.5rem;
    text-align: center;
    transition: var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.client-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 0;
    background: var(--gradient-gold);
    opacity: 0.05;
    transition: var(--transition-normal);
}

.client-card:hover {
    transform: translateY(-10px);
    border-color: var(--color-gold);
    box-shadow: var(--shadow-card);
}

.client-card:hover::before {
    height: 100%;
}

.client-icon {
    font-size: 3rem;
    color: var(--color-gold);
    margin-bottom: 1.5rem;
}

.client-card h3 {
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.client-card p {
    color: var(--color-gray);
    margin: 0;
}

/* ============================================
   SERVICES SECTION
   ============================================ */
.services {
    background: var(--color-charcoal);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
    position: relative;
    z-index: 10;
}

.service-card {
    background: var(--color-dark-navy);
    border: 2px solid rgba(212, 175, 55, 0.2);
    border-radius: 8px;
    padding: 2.5rem;
    transition: var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: var(--transition-slow);
}

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

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

.service-card.featured {
    border: 3px solid var(--color-gold);
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.05) 0%, var(--color-dark-navy) 100%);
}

.service-badge {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: var(--gradient-gold);
    color: var(--color-dark-navy);
    padding: 0.5rem 1rem;
    font-family: var(--font-heading);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1px;
    border-radius: 4px;
    box-shadow: var(--shadow-gold);
}

.service-number {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 900;
    color: rgba(212, 175, 55, 0.15);
    position: absolute;
    top: 1rem;
    left: 1.5rem;
    line-height: 1;
}

.service-icon {
    font-size: 3rem;
    color: var(--color-gold);
    margin-bottom: 1.5rem;
}

.service-card h3 {
    margin-bottom: 1rem;
    font-size: 1.8rem;
}

.service-intro {
    color: var(--color-copper);
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.service-features {
    list-style: none;
    margin-bottom: 2rem;
}

.service-features li {
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
    display: flex;
    align-items: center;
    gap: 1rem;
    color: var(--color-light-gray);
}

.service-features li i {
    color: var(--color-gold);
    font-size: 1.2rem;
}

.service-deliverables {
    background: rgba(212, 175, 55, 0.05);
    border-left: 3px solid var(--color-gold);
    padding: 1rem 1.5rem;
    border-radius: 4px;
}

.service-deliverables strong {
    display: block;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.service-deliverables span {
    color: var(--color-gray);
    font-size: 0.95rem;
}

/* ============================================
   PREMIUM OFFERING
   ============================================ */
.premium {
    background: linear-gradient(135deg, #0a0e14 0%, #1a1f2e 50%, #0d1117 100%);
    position: relative;
}

.premium::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 50%, rgba(212, 175, 55, 0.15) 0%, transparent 70%);
    pointer-events: none;
    z-index: 1;
}

.premium-content {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 10;
    background: var(--color-dark-navy);
    border: 2px solid var(--color-gold);
    border-radius: 16px;
    padding: 4rem;
    box-shadow: var(--shadow-deep);
}

.premium-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: var(--gradient-gold);
    color: var(--color-dark-navy);
    padding: 0.75rem 2rem;
    border-radius: 50px;
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 2rem;
    box-shadow: var(--shadow-gold);
}

.premium-content h2 {
    font-size: clamp(2rem, 4vw, 3.5rem);
    margin-bottom: 1rem;
}

.premium-subtitle {
    font-size: 1.3rem;
    color: var(--color-copper);
    margin-bottom: 3rem;
}

.premium-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
    text-align: left;
}

.premium-feature {
    display: flex;
    gap: 1.5rem;
    align-items: start;
}

.premium-feature i {
    font-size: 2.5rem;
    color: var(--color-gold);
    flex-shrink: 0;
}

.premium-feature h4 {
    color: var(--color-gold);
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.premium-feature p {
    color: var(--color-gray);
    margin: 0;
}

.premium-cta {
    background: rgba(212, 175, 55, 0.05);
    border: 1px solid var(--color-gold);
    border-radius: 8px;
    padding: 2rem;
    margin-top: 3rem;
}

.premium-cta p {
    font-size: 1.2rem;
    color: var(--color-metallic);
    margin-bottom: 1.5rem;
}

/* ============================================
   PROOF/RESULTS SECTION
   ============================================ */
.results {
    background: var(--color-charcoal);
}

.results-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
    margin-bottom: 5rem;
    position: relative;
    z-index: 10;
}

@media (min-width: 1400px) {
    .results-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 1000px) and (max-width: 1399px) {
    .results-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.result-card {
    background: var(--color-dark-navy);
    border: 2px solid rgba(212, 175, 55, 0.2);
    border-radius: 12px;
    padding: 2.5rem;
    transition: var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.result-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-gold);
}

.result-card:hover {
    transform: translateY(-10px);
    border-color: var(--color-gold);
    box-shadow: var(--shadow-card);
}

.result-badge {
    display: inline-block;
    background: rgba(212, 175, 55, 0.15);
    color: var(--color-gold);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-family: var(--font-subheading);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
}

.result-stats {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid rgba(212, 175, 55, 0.2);
}

.stat {
    text-align: center;
}

.stat-value {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 900;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-family: var(--font-subheading);
    font-size: 0.9rem;
    color: var(--color-copper);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.result-card h3 {
    font-size: 1.6rem;
    margin-bottom: 1.5rem;
    color: var(--color-gold);
}

.result-challenge,
.result-solution {
    margin-bottom: 1.25rem;
    line-height: 1.7;
    color: var(--color-light-gray);
}

.result-challenge strong,
.result-solution strong {
    color: var(--color-gold);
    font-weight: 600;
}

.result-outcomes {
    margin-top: 2rem;
    background: rgba(212, 175, 55, 0.05);
    border-left: 3px solid var(--color-gold);
    padding: 1.5rem;
    border-radius: 4px;
}

.outcome-item {
    display: flex;
    align-items: start;
    gap: 1rem;
    padding: 0.75rem 0;
    color: var(--color-light-gray);
}

.outcome-item i {
    color: var(--color-gold);
    font-size: 1.2rem;
    margin-top: 0.2rem;
    flex-shrink: 0;
}

/* Testimonials */
.testimonials {
    position: relative;
    z-index: 10;
}

.testimonials-title {
    text-align: center;
    font-size: 2rem;
    color: var(--color-gold);
    margin-bottom: 3rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
}

@media (min-width: 1200px) {
    .testimonials-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.testimonial-card {
    background: var(--color-dark-navy);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 12px;
    padding: 2.5rem;
    transition: var(--transition-normal);
    position: relative;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    border-color: var(--color-gold);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.2);
}

.testimonial-quote {
    margin-bottom: 2rem;
}

.testimonial-quote i {
    font-size: 2rem;
    color: var(--color-gold);
    opacity: 0.3;
    margin-bottom: 1rem;
    display: block;
}

.testimonial-quote p {
    color: var(--color-light-gray);
    font-size: 1.05rem;
    line-height: 1.8;
    font-style: italic;
    margin: 0;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
}

.author-info {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.author-info strong {
    color: var(--color-gold);
    font-size: 1.1rem;
    font-weight: 600;
}

.author-info span {
    color: var(--color-gray);
    font-size: 0.9rem;
}

/* ============================================
   PRICING SECTION
   ============================================ */
.pricing {
    background: var(--color-dark-navy);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    position: relative;
    z-index: 10;
}

.pricing-card {
    background: var(--color-charcoal);
    border: 2px solid rgba(212, 175, 55, 0.2);
    border-radius: 12px;
    padding: 3rem 2rem;
    transition: var(--transition-normal);
    position: relative;
}

.pricing-card:hover {
    transform: translateY(-10px);
    border-color: var(--color-gold);
    box-shadow: var(--shadow-card);
}

.pricing-card.featured {
    border: 3px solid var(--color-gold);
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.08) 0%, var(--color-charcoal) 100%);
    transform: scale(1.05);
}

.pricing-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient-gold);
    color: var(--color-dark-navy);
    padding: 0.5rem 1.5rem;
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 1px;
    border-radius: 50px;
    box-shadow: var(--shadow-gold);
}

.pricing-header {
    text-align: center;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid rgba(212, 175, 55, 0.2);
}

.pricing-header h3 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
}

.pricing-value {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.price-range {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 900;
    color: var(--color-gold);
}

.price-label {
    font-family: var(--font-subheading);
    font-size: 1rem;
    color: var(--color-copper);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.pricing-description {
    text-align: center;
    color: var(--color-gray);
    margin-bottom: 2rem;
    min-height: 60px;
}

.pricing-features {
    list-style: none;
    margin-bottom: 2rem;
}

.pricing-features li {
    padding: 1rem 0;
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
    display: flex;
    align-items: center;
    gap: 1rem;
    color: var(--color-light-gray);
}

.pricing-features li i {
    color: var(--color-gold);
    font-size: 1.2rem;
}

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

.pricing-note {
    max-width: 900px;
    margin: 3rem auto 0;
    padding: 2rem;
    background: rgba(212, 175, 55, 0.05);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 8px;
    display: flex;
    gap: 1rem;
    align-items: start;
    position: relative;
    z-index: 10;
}

.pricing-note i {
    color: var(--color-gold);
    font-size: 1.5rem;
    flex-shrink: 0;
}

.pricing-note p {
    margin: 0;
    color: var(--color-gray);
}

/* ============================================
   WHY CHOOSE SECTION
   ============================================ */
.why-choose {
    background: var(--color-charcoal);
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    position: relative;
    z-index: 10;
}

.why-card {
    background: var(--color-dark-navy);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 8px;
    padding: 2.5rem;
    text-align: center;
    transition: var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.why-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 0;
    background: var(--gradient-gold);
    opacity: 0.05;
    transition: var(--transition-normal);
}

.why-card:hover {
    transform: translateY(-10px);
    border-color: var(--color-gold);
    box-shadow: var(--shadow-card);
}

.why-card:hover::before {
    height: 100%;
}

.why-icon {
    font-size: 3.5rem;
    color: var(--color-gold);
    margin-bottom: 1.5rem;
}

.why-card h3 {
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.why-card p {
    color: var(--color-gray);
    margin: 0;
}

/* ============================================
   CONTACT SECTION
   ============================================ */
.contact {
    background: var(--color-dark-navy);
    padding-bottom: 0;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
    position: relative;
    z-index: 10;
}

.contact-info h2 {
    margin-bottom: 1.5rem;
}

.contact-intro {
    font-size: 1.2rem;
    color: var(--color-gray);
    margin-bottom: 3rem;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 3rem;
}

.contact-method {
    display: flex;
    gap: 1.5rem;
    align-items: start;
}

.method-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-gold);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--color-dark-navy);
    flex-shrink: 0;
    box-shadow: var(--shadow-gold);
}

.method-details h4 {
    color: var(--color-gold);
    margin-bottom: 0.5rem;
}

.method-details a {
    color: var(--color-light-gray);
    font-size: 1.1rem;
}

.contact-cta-box {
    background: rgba(212, 175, 55, 0.05);
    border: 2px solid var(--color-gold);
    border-radius: 8px;
    padding: 2rem;
}

.contact-cta-box h3 {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.contact-cta-box p {
    color: var(--color-gray);
    margin: 0;
}

.contact-form-wrapper {
    background: var(--color-charcoal);
    border: 2px solid rgba(212, 175, 55, 0.2);
    border-radius: 12px;
    padding: 3rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-family: var(--font-subheading);
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-gold);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.form-group input,
.form-group select,
.form-group textarea {
    background: var(--color-dark-navy);
    border: 2px solid rgba(212, 175, 55, 0.2);
    border-radius: 4px;
    padding: 1rem;
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--color-light-gray);
    transition: var(--transition-fast);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-gold);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

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

.form-message {
    padding: 1rem;
    border-radius: 4px;
    margin-top: 1rem;
    display: none;
}

.form-message.success {
    display: block;
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid #10b981;
    color: #10b981;
}

.form-message.error {
    display: block;
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid #ef4444;
    color: #ef4444;
}

/* What Happens Next */
.what-happens-next {
    margin-top: 3rem;
    padding: 2rem;
    background: rgba(212, 175, 55, 0.05);
    border: 2px solid rgba(212, 175, 55, 0.3);
    border-radius: 8px;
}

.what-happens-next h4 {
    color: var(--color-gold);
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.next-steps {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.next-step {
    display: flex;
    gap: 1.25rem;
    align-items: start;
}

.step-icon-small {
    width: 45px;
    height: 45px;
    background: var(--gradient-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.step-icon-small i {
    color: var(--color-dark-navy);
    font-size: 1.2rem;
}

.next-step strong {
    display: block;
    color: var(--color-gold);
    font-size: 1.05rem;
    margin-bottom: 0.25rem;
}

.next-step p {
    color: var(--color-gray);
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

.next-note {
    color: var(--color-copper);
    font-size: 0.95rem;
    text-align: center;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.next-note i {
    color: var(--color-gold);
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: var(--color-darker);
    padding: var(--spacing-lg) 0 var(--spacing-md);
    position: relative;
}

.footer-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
    position: relative;
    z-index: 10;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-logo {
    width: 200px;
    height: auto;
    background: rgba(255, 255, 255, 0.98);
    padding: 1rem 2rem;
    border-radius: 12px;
    box-shadow: 0 0 25px rgba(212, 175, 55, 0.4), 0 5px 20px rgba(0, 0, 0, 0.3);
    border: 2px solid rgba(212, 175, 55, 0.3);
    margin-bottom: 1rem;
}

.footer-brand h3 {
    font-size: 1.5rem;
    margin: 0;
}

.footer-tagline {
    font-family: var(--font-subheading);
    color: var(--color-copper);
    font-size: 0.9rem;
    letter-spacing: 1px;
    margin: 0;
}

.footer-description {
    color: var(--color-gray);
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

.footer-column h4 {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 0.75rem;
}

.footer-column ul li a {
    color: var(--color-gray);
    font-size: 1rem;
    transition: var(--transition-fast);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-column ul li a:hover {
    color: var(--color-gold);
    transform: translateX(5px);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
    position: relative;
    z-index: 10;
}

.footer-bottom p {
    color: var(--color-gray);
    margin: 0;
}

.footer-bottom-links {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.footer-bottom-links a {
    color: var(--color-gray);
    font-size: 0.9rem;
}

.footer-bottom-links span {
    color: var(--color-dark-gray);
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */
@media (max-width: 1200px) {
    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }
}

@media (max-width: 992px) {
    .nav-toggle {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: rgba(13, 17, 23, 0.98);
        backdrop-filter: blur(10px);
        flex-direction: column;
        justify-content: start;
        padding: 2rem;
        gap: 0;
        transition: var(--transition-normal);
        border-top: 2px solid var(--color-gold);
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-menu li {
        width: 100%;
        text-align: center;
        padding: 1rem 0;
        border-bottom: 1px solid rgba(212, 175, 55, 0.1);
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .method-steps {
        grid-template-columns: 1fr;
    }
    
    .results-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .hero-cta {
        flex-direction: column;
        align-items: stretch;
    }
    
    .hero-metrics {
        gap: 2rem;
    }
    
    .brand-name {
        font-size: 1rem;
    }
    
    .nav-logo {
        height: 50px;
        padding: 0.4rem 1rem;
    }
    
    .services-grid,
    .clients-grid,
    .pricing-grid,
    .why-grid,
    .method-steps,
    .results-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .premium-content {
        padding: 2.5rem 2rem;
    }
    
    .premium-features {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
}

@media (max-width: 576px) {
    html {
        font-size: 14px;
    }
    
    .container {
        padding: 0 1rem;
    }
    
    section {
        padding: var(--spacing-lg) 0;
    }
    
    .brand-text {
        display: none;
    }
    
    .hero-logo {
        width: 320px;
        padding: 2rem 2.5rem;
    }
    
    .service-card,
    .pricing-card,
    .contact-form-wrapper {
        padding: 2rem 1.5rem;
    }
    
    .btn {
        padding: 0.875rem 1.5rem;
        font-size: 1rem;
    }
}

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

.fade-in-up {
    animation: fadeInUp 0.8s ease forwards;
}

/* Scroll animations - applied via JavaScript */
.scroll-reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease;
}

.scroll-reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================
   UTILITY CLASSES
   ============================================ */
.text-center {
    text-align: center;
}

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

.bg-dark {
    background: var(--color-dark-navy);
}

.bg-charcoal {
    background: var(--color-charcoal);
}

.mb-1 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 2rem; }
.mb-3 { margin-bottom: 3rem; }

.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mt-3 { margin-top: 3rem; }

/* ============================================
   LEGAL PAGES (Privacy & Terms)
   ============================================ */
.legal-content {
    background: var(--color-charcoal);
    padding: 8rem 0 4rem;
    min-height: 100vh;
}

.legal-header {
    text-align: center;
    margin-bottom: 4rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid rgba(212, 175, 55, 0.3);
}

.legal-header h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    color: var(--color-gold);
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.last-updated {
    font-family: var(--font-subheading);
    color: var(--color-copper);
    font-size: 1rem;
    font-weight: 500;
}

.legal-body {
    max-width: 900px;
    margin: 0 auto;
    background: var(--color-dark-navy);
    padding: 3rem;
    border-radius: 12px;
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.legal-body h2 {
    color: var(--color-gold);
    font-size: 1.8rem;
    margin-top: 3rem;
    margin-bottom: 1.5rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
}

.legal-body h2:first-of-type {
    margin-top: 0;
    padding-top: 0;
    border-top: none;
}

.legal-body h3 {
    color: var(--color-copper);
    font-size: 1.3rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.legal-body p {
    color: var(--color-light-gray);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.legal-body ul,
.legal-body ol {
    color: var(--color-light-gray);
    margin-left: 2rem;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.legal-body li {
    margin-bottom: 0.75rem;
}

.legal-body a {
    color: var(--color-gold);
    text-decoration: underline;
}

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

.legal-body strong {
    color: var(--color-gold);
    font-weight: 600;
}

.contact-box {
    background: rgba(212, 175, 55, 0.05);
    border-left: 3px solid var(--color-gold);
    padding: 1.5rem;
    margin: 2rem 0;
    border-radius: 4px;
}

.contact-box p {
    margin-bottom: 0.5rem;
}

.consent-notice {
    background: rgba(212, 175, 55, 0.08);
    border: 2px solid rgba(212, 175, 55, 0.3);
    border-radius: 8px;
    padding: 1.5rem;
    margin-top: 3rem;
    display: flex;
    align-items: start;
    gap: 1rem;
}

.consent-notice i {
    color: var(--color-gold);
    font-size: 1.5rem;
    flex-shrink: 0;
    margin-top: 0.25rem;
}

.consent-notice p {
    margin: 0;
    color: var(--color-copper);
}

.legal-footer {
    text-align: center;
    margin-top: 4rem;
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Legal Page Responsive */
@media (max-width: 768px) {
    .legal-content {
        padding: 6rem 0 3rem;
    }
    
    .legal-body {
        padding: 2rem 1.5rem;
    }
    
    .legal-footer {
        flex-direction: column;
        align-items: stretch;
    }
    
    .legal-footer .btn {
        width: 100%;
    }
}