/* 
 * Bettina Hoxha - Premium Copywriting Website
 * Main Stylesheet - Redesigned with Vitrapro-inspired aesthetics
 */

/* Advanced Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 0.8;
    }
    50% {
        transform: scale(1.05);
        opacity: 0.5;
    }
    100% {
        transform: scale(1);
        opacity: 0.8;
    }
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
    100% {
        transform: translateY(0px);
    }
}

@keyframes shimmer {
    0% {
        background-position: -100% 0;
    }
    100% {
        background-position: 200% 0;
    }
}

@keyframes typing {
    from { width: 0 }
    to { width: 100% }
}

@keyframes blink {
    50% { border-color: transparent }
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

@keyframes scaleIn {
    from {
        transform: scale(0.8);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

@keyframes gradientFlow {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

:root {
    /* Brand Colors - Premium Gold Theme */
    --dark-bg: #0A0C10; /* Dunkler Hintergrund */
    --dark-surface: #12151C; /* Dunklere Oberflächenfarbe */
    --dark-surface-2: #1A1F28; /* Leicht hellere Oberflächenfarbe für Kontrast */
    --gold: #D4AF37; /* Gold als Akzentfarbe */
    --gold-light: #F5DCA8; /* Helleres Gold für Hover-Effekte */
    --gold-dark: #B08C2F; /* Dunkleres Gold für Tiefe */
    --gold-gradient: linear-gradient(135deg, var(--gold-dark) 0%, var(--gold) 50%, var(--gold-light) 100%);
    --soft-white: #FFFFFF; /* Reines Weiß für maximalen Kontrast */
    --muted-white: #E8EAEF; /* Leicht gedämpftes Weiß für sekundäre Elemente */
    --text-secondary: #DDDDEE; /* Hellere Sekundärfarbe für bessere Lesbarkeit */
    --charcoal: #101010; /* Dunkleres Schwarz für Tiefe */
    --neon-blue: #00C2FF; /* Akzentfarbe für besondere Elemente */
    --neon-purple: #9D4EDD; /* Akzentfarbe für besondere Elemente */
    --glass-white: rgba(255, 255, 255, 0.2); /* Erhöhte Opazität für bessere Sichtbarkeit */
    --glass-dark: rgba(10, 12, 16, 0.9); /* Erhöhte Opazität für bessere Lesbarkeit */
    --glass-gold: rgba(212, 175, 55, 0.25); /* Erhöhte Opazität für bessere Sichtbarkeit */
    
    /* Functional Colors */
    --primary-color: var(--dark-bg);
    --secondary-color: var(--gold);
    --accent-color: var(--gold-light);
    --text-color: var(--soft-white); /* Reines Weiß für Haupttext */
    --text-muted: #CCCCDD; /* Helleres Grau für bessere Lesbarkeit */
    --text-highlight: var(--gold); /* Gold nur für Highlights */
    --background-light: var(--soft-white);
    --background-dark: var(--dark-bg);
    --card-bg: var(--dark-surface);
    --card-bg-hover: var(--dark-surface-2);
    --button-primary: var(--gold); /* Primäre Button-Farbe */
    --button-text: var(--dark-bg); /* Text auf Buttons */
    --link-color: var(--gold-light); /* Linkfarbe */
    --link-hover: #FFFFFF; /* Link-Hover-Farbe */
    
    /* Typography - Reduziert auf zwei Hauptschriftarten */
    --font-main: 'Inter', sans-serif; /* Klare Sans-Serif für Fließtext */
    --font-heading: 'Manrope', sans-serif; /* Sans-Serif für Überschriften */
    
    /* Font Sizes - Alle Größen erhöht für bessere Lesbarkeit */
    --font-size-xs: 0.875rem; /* 14px bei 16px Basis */
    --font-size-sm: 1rem;     /* 16px */
    --font-size-base: 1.0625rem; /* 17px */
    --font-size-md: 1.25rem;  /* 20px */
    --font-size-lg: 1.5rem;   /* 24px */
    --font-size-xl: 2rem;     /* 32px */
    --font-size-2xl: 2.5rem;  /* 40px */
    --font-size-3xl: 3rem;    /* 48px */
    
    /* Line Heights - Optimiert für bessere Lesbarkeit */
    --line-height-tight: 1.3; /* Erhöht für bessere Lesbarkeit bei Überschriften */
    --line-height-normal: 1.5; /* Exakt 1,5-facher Zeilenabstand */
    --line-height-relaxed: 1.7; /* Leicht reduziert für kompaktere Absätze */
    
    /* Font Weights */
    --weight-light: 300;
    --weight-regular: 400;
    --weight-medium: 500;
    --weight-semibold: 600;
    --weight-bold: 700;
    --weight-extrabold: 800;
    
    /* Spacing */
    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 1.5rem;
    --space-lg: 2.5rem;
    --space-xl: 4rem;
    --space-xxl: 6rem;
    
    /* Border Radius */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-full: 9999px;
    
    /* Shadows */
    --shadow-sm: 0 4px 6px rgba(0,0,0,0.05);
    --shadow-md: 0 6px 12px rgba(0,0,0,0.08);
    --shadow-lg: 0 10px 25px rgba(0,0,0,0.12);
    --shadow-gold: 0 5px 15px rgba(212, 175, 55, 0.2);
    --shadow-gold-lg: 0 8px 30px rgba(212, 175, 55, 0.3);
    --shadow-text: 0 2px 10px rgba(0,0,0,0.1);
    
    /* Transitions */
    --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-normal: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-bounce: 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    
    /* Border Radius */
    --border-radius-sm: 4px;
    --border-radius-md: 8px;
    --border-radius-lg: 12px;
    --border-radius-xl: 16px;
    --border-radius-pill: 50px;
    
    /* Layout */
    --container-width: 1280px;
    --section-spacing: 8rem;
    --element-spacing: 2.5rem;
    
    /* Z-index layers */
    --z-background: -1;
    --z-normal: 1;
    --z-overlay: 10;
    --z-dropdown: 20;
    --z-fixed: 30;
    --z-modal: 40;
    --z-tooltip: 50;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px; /* Basis-Schriftgröße beibehalten */
    height: 100%; /* Ensure full height */
}

body {
    font-family: var(--font-main);
    line-height: 1.5; /* Exakt 1,5-facher Zeilenabstand für besseren Lesefluss */
    color: #FFFFFF; /* Maximaler Kontrast mit reinem Weiß */
    background-color: var(--background-dark);
    overflow-x: hidden;
    font-weight: var(--weight-regular);
    transition: background-color 0.5s ease;
    font-size: 1.05rem; /* Mindestens 16px (bei Basis 16px = 1.05rem ≈ 16.8px) */
    letter-spacing: 0.01em; /* Leicht verbesserte Buchstabenabstände */
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(29, 38, 57, 0.5) 0%, transparent 60%),
        radial-gradient(circle at 80% 70%, rgba(41, 50, 65, 0.4) 0%, transparent 60%);
    background-attachment: fixed;
    min-height: 100%; /* Ensure body takes at least full height */
    display: flex;
    flex-direction: column; /* Stack children vertically */
}

::selection {
    background-color: var(--gold);
    color: var(--dark-bg);
}

.container {
    width: 90%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 var(--space-md);
    position: relative;
    z-index: var(--z-normal);
}

section {
    padding: var(--space-xxl) 0;
    position: relative;
    overflow: hidden;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    margin-bottom: var(--space-md);
    line-height: var(--line-height-tight);
    font-weight: var(--weight-semibold);
    color: var(--text-color); /* Reines Weiß für maximalen Kontrast */
    letter-spacing: -0.01em; /* Leicht reduziert für bessere Lesbarkeit */
}

h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: var(--weight-bold);
    margin-bottom: var(--space-lg);
}

h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: var(--space-lg);
    color: #FFFFFF; /* Maximaler Kontrast */
}

h3 {
    font-size: clamp(1.5rem, 3vw, 2rem);
    margin-bottom: var(--space-md);
    color: #FFFFFF; /* Maximaler Kontrast */
}

p {
    margin-bottom: var(--space-md);
    font-size: var(--font-size-base); /* Mindestens 16px */
    line-height: var(--line-height-normal); /* Exakt 1,5-facher Zeilenabstand */
    color: #CCCCDD; /* Helleres Grau für bessere Lesbarkeit */
    letter-spacing: 0.01em;
    font-weight: var(--weight-regular);
}

.section-description {
    font-size: var(--font-size-md);
    max-width: 800px;
    margin: 0 auto var(--space-lg);
    text-align: center;
    color: var(--text-secondary);
}

.important-text {
    color: var(--text-color);
    font-weight: var(--weight-medium);
}

strong {
    font-weight: var(--weight-semibold);
    color: var(--text-color);
}

/* Glassmorphism Card Styles */
.glass-card {
    background: rgba(18, 21, 28, 0.7);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    transition: all var(--transition-normal);
    overflow: hidden;
    position: relative;
}

.glass-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.3), transparent);
    opacity: 0;
    transition: opacity var(--transition-normal);
}

.glass-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3), 0 0 15px rgba(212, 175, 55, 0.1);
    border-color: rgba(212, 175, 55, 0.2);
}

.glass-card:hover::before {
    opacity: 1;
}

.card-glow {
    position: absolute;
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    z-index: -1;
    opacity: 0;
    transition: opacity var(--transition-normal);
}

.glass-card:hover .card-glow {
    opacity: 1;
    animation: float 3s ease-in-out infinite;
}

/* Header and Navigation - Premium Futuristic Style */
.glass-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: var(--z-fixed);
    background: rgba(10, 12, 16, 0.85);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
    transition: all var(--transition-normal);
}

.glass-header.scrolled {
    background: rgba(10, 12, 16, 0.95);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.25), 0 0 15px rgba(212, 175, 55, 0.05);
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
}

header nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.2rem 0;
    position: relative;
}

.logo {
    display: flex;
    align-items: center;
    position: relative;
    z-index: var(--z-dropdown);
}

.header-logo {
    height: 50px; /* Adjust height as needed */
    width: auto;
    object-fit: contain;
    transition: transform var(--transition-normal);
}

.logo:hover .header-logo {
    transform: scale(1.05);
}

.logo-text {
    font-family: var(--font-alt-heading);
    font-size: 1.5rem;
    color: var(--text-color);
    margin-right: 0.5rem;
    position: relative;
    transition: all var(--transition-normal);
    background: linear-gradient(to right, var(--text-color), var(--gold));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    letter-spacing: 0.5px;
    font-weight: var(--weight-bold);
    text-shadow: 0 2px 10px rgba(212, 175, 55, 0.1);
    display: inline-block;
}

.logo-text::before {
    content: '';
    position: absolute;
    top: -5px;
    left: -10px;
    width: calc(100% + 20px);
    height: calc(100% + 10px);
    background: radial-gradient(ellipse at center, rgba(212, 175, 55, 0.15) 0%, transparent 70%);
    opacity: 0;
    transition: opacity var(--transition-normal);
    z-index: -1;
    filter: blur(10px);
}

.logo-text::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold-gradient);
    transition: width var(--transition-normal);
}

.logo:hover .logo-text::after {
    width: 100%;
}

.logo:hover .logo-text::before {
    opacity: 1;
    animation: pulse 2s infinite;
}

.logo-icon {
    width: 36px;
    height: 36px;
    background: var(--gold-gradient);
    color: var(--dark-bg);
    border-radius: 50%;
    font-family: var(--font-alt-heading);
    font-size: 1rem;
    font-weight: var(--weight-bold);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-gold);
    transition: all var(--transition-normal);
}

.logo:hover .logo-icon {
    transform: rotate(10deg) scale(1.05);
    box-shadow: var(--shadow-gold-lg);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    align-items: center;
}

.nav-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: var(--weight-medium);
    transition: all var(--transition-normal);
    position: relative;
    padding: 0.5rem 0;
}

.nav-links a:not(.btn)::before {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 5px;
    height: 5px;
    background: var(--gold);
    border-radius: 50%;
    opacity: 0;
    transition: all var(--transition-normal);
}

.nav-links a:not(.btn)::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--gold-gradient);
    transition: all var(--transition-normal);
    border-radius: var(--radius-full);
}

.nav-links a:not(.btn):hover {
    color: var(--gold);
    transform: translateY(-2px);
}

.nav-links a:not(.btn):hover::before {
    opacity: 1;
    bottom: -8px;
}

.nav-links a:not(.btn):hover::after {
    width: 100%;
    left: 0;
    transform: none;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    cursor: pointer;
    border: none;
    font-weight: var(--weight-semibold);
    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden;
    font-size: var(--font-size-sm); /* Mindestens 16px */
    letter-spacing: 0.02em; /* Bessere Lesbarkeit */
    padding: 0.9rem 1.8rem; /* Größere Buttons für bessere Klickbarkeit */
    border-radius: var(--radius-full);
}

.btn-primary {
    background: var(--gold-gradient);
    color: var(--dark-bg);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3); /* Stärkerer Schatten */
    overflow: hidden;
    font-weight: var(--weight-bold); /* Fetter für bessere Lesbarkeit */
}

.btn-primary .btn-text {
    position: relative;
    z-index: 2;
    transition: all var(--transition-normal);
    display: inline-block;
}

.btn-primary .btn-icon {
    margin-left: 0.5rem;
    position: relative;
    z-index: 2;
    transition: all var(--transition-normal);
    display: inline-block;
}

.btn-primary:hover {
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 10px 25px rgba(212, 175, 55, 0.4), 0 0 15px rgba(212, 175, 55, 0.2);
}

.btn-primary:hover .btn-text {
    transform: translateY(-1px);
}

.btn-primary:hover .btn-icon {
    transform: translateX(5px);
    animation: pulse 1.5s infinite;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 50%, var(--gold-dark) 100%);
    opacity: 0;
    transition: opacity var(--transition-normal);
    z-index: 1;
    border-radius: var(--radius-full);
}

.btn-primary:hover::before {
    opacity: 1;
    animation: gradientFlow 3s ease infinite;
}

.btn-primary::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.5) 0%, transparent 60%);
    opacity: 0;
    transition: opacity var(--transition-normal);
    z-index: 1;
    pointer-events: none;
}

.btn-primary:hover::after {
    opacity: 0.8;
    animation: pulse 2s infinite;
}

/* Shine effect */
.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(
        to right,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0.3) 50%,
        rgba(255, 255, 255, 0) 100%
    );
    transform: skewX(-25deg);
    z-index: 2;
}

.btn-primary:hover::before {
    animation: shine 1.5s infinite;
}

@keyframes shine {
    100% {
        left: 150%;
    }
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 20px;
    cursor: pointer;
    position: relative;
    z-index: var(--z-dropdown);
    margin-right: 5px;
}

.mobile-menu-toggle span {
    display: block;
    width: 100%;
    height: 2px;
    background-color: var(--gold);
    transition: all var(--transition-normal);
    border-radius: var(--radius-full);
    box-shadow: 0 0 5px rgba(212, 175, 55, 0.3);
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
    background-color: var(--gold-light);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
    background-color: var(--gold-light);
}

@media (max-width: 992px) {
    .mobile-menu-toggle {
        display: flex;
    }
    
    .header-logo {
        height: 40px; /* Slightly smaller on tablets */
    }
    
    .nav-links {
        position: fixed;
        top: 70px;
        left: 0;
        width: 100%;
        background: rgba(10, 12, 16, 0.98);
        backdrop-filter: blur(15px);
        -webkit-backdrop-filter: blur(15px);
        flex-direction: column;
        gap: 0;
        height: 0;
        overflow: hidden;
        transition: height var(--transition-normal), opacity var(--transition-normal);
        z-index: var(--z-dropdown);
        opacity: 0;
        visibility: hidden;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    }
    
    .nav-links.active {
        height: calc(100vh - 70px);
        border-top: 1px solid rgba(212, 175, 55, 0.1);
        opacity: 1;
        visibility: visible;
    }
    
    .nav-links li {
        width: 100%;
        opacity: 0;
        transform: translateY(20px);
        transition: all var(--transition-normal);
        text-align: center;
    }
    
    .nav-links.active li {
        opacity: 1;
        transform: translateY(0);
    }
    
    .nav-links.active li:nth-child(1) { transition-delay: 0.1s; }
    .nav-links.active li:nth-child(2) { transition-delay: 0.2s; }
    .nav-links.active li:nth-child(3) { transition-delay: 0.3s; }
    .nav-links.active li:nth-child(4) { transition-delay: 0.4s; }
    .nav-links.active li:nth-child(5) { transition-delay: 0.5s; }
    .nav-links.active li:nth-child(6) { transition-delay: 0.6s; }
    
    .nav-links a {
        display: block;
        padding: 1.2rem 2rem;
        width: 100%;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        font-size: 1.1rem;
    }
    
    .nav-links a:not(.btn):hover::after {
        width: 0;
    }
    
    .nav-links a.btn {
        margin: 1.5rem auto;
        text-align: center;
        width: 80%;
        max-width: 250px;
    }
}

@media (max-width: 576px) {
    .header-logo {
        height: 35px; /* Even smaller on mobile phones */
    }
    
    nav {
        padding: 1rem 0;
    }
}

/* Section Titles and Typography Styles */
.section-title {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
}

.section-icon {
    font-size: 2.5rem;
    color: var(--gold);
    margin-bottom: 1.5rem;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s forwards 0.2s;
}

.section-icon i {
    background: rgba(212, 175, 55, 0.1);
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.15);
    transition: all var(--transition-normal);
}

.section-title:hover .section-icon i {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 12px 30px rgba(212, 175, 55, 0.25);
    background: rgba(212, 175, 55, 0.15);
}

.section-title h2 {
    position: relative;
    padding-bottom: 1.5rem;
    margin-bottom: 1.5rem;
}

.section-title h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--gold-gradient);
    border-radius: 3px;
}

.title-separator {
    width: 120px;
    height: 3px;
    background: linear-gradient(to right, transparent, var(--gold), transparent);
    margin: 0 auto 2rem;
    position: relative;
}

.title-separator::before {
    content: '';
    position: absolute;
    top: -3px;
    left: 50%;
    transform: translateX(-50%);
    width: 10px;
    height: 10px;
    background: var(--gold);
    border-radius: 50%;
}

.section-subtitle {
    font-size: 1.2rem;
    text-align: center;
    max-width: 700px;
    margin: 0 auto 3rem;
    color: var(--gold);
    font-weight: var(--weight-medium);
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* Utility Classes */
.text-gold {
    color: var(--gold);
}

.text-gradient {
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    display: inline-block;
}

.bg-dark {
    background-color: var(--dark-surface);
}

.bg-darker {
    background-color: var(--dark-bg);
}

.bg-light {
    background-color: var(--background-light);
    color: var(--dark-bg);
}

.text-center {
    text-align: center;
}

.text-left {
    text-align: left;
}

.text-right {
    text-align: right;
}

.max-width-sm {
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.max-width-md {
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.max-width-lg {
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.center {
    display: flex;
    align-items: center;
    justify-content: center;
}

.space-between {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.flex-column {
    display: flex;
    flex-direction: column;
}

.flex-row {
    display: flex;
    flex-direction: row;
}

.gap-sm {
    gap: var(--space-sm);
}

.gap-md {
    gap: var(--space-md);
}

.gap-lg {
    gap: var(--space-lg);
}

/* Links and Buttons */
a {
    color: var(--gold);
    text-decoration: none;
    transition: all var(--transition-normal);
    position: relative;
}

a:not(.btn):hover {
    color: var(--gold-light);
}

a:not(.btn)::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--gold-gradient);
    transition: width var(--transition-normal);
}

a:not(.btn):hover::after {
    width: 100%;
}

/* Button Variations */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    cursor: pointer;
    border: none;
    font-weight: var(--weight-semibold);
    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden;
    font-size: 1rem;
    letter-spacing: 0.5px;
}

.btn-lg {
    padding: 1rem 2rem;
    font-size: 1.1rem;
}

.btn-outline {
    background: transparent;
    color: var(--gold);
    border: 1px solid var(--gold);
    padding: 0.7rem 1.4rem;
    border-radius: var(--radius-full);
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.1);
}

.btn-outline:hover {
    background: rgba(212, 175, 55, 0.1);
    transform: translateY(-3px);
    box-shadow: 0 5px 20px rgba(212, 175, 55, 0.2);
}

.btn-sticky {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    background: var(--gold-gradient);
    color: var(--dark-bg);
    padding: 0.8rem 1.5rem;
    border-radius: var(--radius-full);
    box-shadow: var(--shadow-gold-lg);
    z-index: var(--z-fixed);
    transform: translateY(100px);
    opacity: 0;
    transition: all var(--transition-normal);
}

.btn-sticky.visible {
    transform: translateY(0);
    opacity: 1;
}

.btn-sticky:hover {
    transform: translateY(-5px) scale(1.05);
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4), 0 0 0 2px rgba(212, 175, 55, 0.2);
    background: var(--gold-gradient);
}

.btn:active {
    transform: translateY(-1px);
}

.btn::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(255,255,255,0.1), rgba(255,255,255,0.2));
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.btn:hover::after {
    transform: translateX(100%);
}

.btn-secondary {
    background: transparent;
}

/* Hero Section - Futuristic Style */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding: 8rem 0 5rem;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(10, 12, 16, 0.9) 0%, rgba(18, 21, 28, 0.8) 100%);
    z-index: var(--z-background);
}

.hero-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Removed the yellow wavy line for a cleaner look */
    background-image: none;
    z-index: var(--z-background);
    opacity: 0;
}

.particles-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: var(--z-background);
}

.hero-glow {
    position: absolute;
    top: 30%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60%;
    height: 300px;
    background: radial-gradient(ellipse, rgba(212, 175, 55, 0.15) 0%, transparent 70%);
    filter: blur(50px);
    z-index: var(--z-background);
    opacity: 0.7;
    animation: pulse 8s ease-in-out infinite;
}

.hero-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 3rem;
    position: relative;
    z-index: var(--z-normal);
}

.hero-content {
    flex: 1.2;
    max-width: 650px;
}

.hero-tagline {
    display: inline-block;
    background: rgba(212, 175, 55, 0.1);
    color: var(--gold);
    padding: 0.6rem 1.2rem;
    border-radius: var(--radius-full);
    font-weight: var(--weight-medium);
    margin-bottom: 2rem;
    border: 1px solid rgba(212, 175, 55, 0.2);
    font-size: 0.95rem;
    position: relative;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1), 0 0 5px rgba(212, 175, 55, 0.2);
    animation: float 3s ease-in-out infinite;
}

.typing-effect {
    position: relative;
    height: 24px;
    overflow: hidden;
}

.typing-text {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.5s forwards, fadeOut 0.5s forwards 3.5s;
}

.typing-text:nth-child(2) {
    animation-delay: 4s, 7.5s;
}

.typing-text:nth-child(3) {
    animation-delay: 8s, 11.5s;
}

@keyframes fadeOut {
    from {
        opacity: 1;
        transform: translateY(0);
    }
    to {
        opacity: 0;
        transform: translateY(-20px);
    }
}

.word-animation-container {
    position: relative;
    overflow: hidden;
}

.animated-heading {
    margin-bottom: 2rem;
    line-height: 1.1;
    font-size: clamp(2.8rem, 5vw, 4.2rem);
}

.headline-gradient {
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    display: inline-block;
    font-family: var(--font-alt-heading);
    font-weight: var(--weight-bold);
    position: relative;
    text-shadow: 0 5px 30px rgba(212, 175, 55, 0.2);
    letter-spacing: -0.02em;
}

.headline-gradient::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gold-gradient);
    border-radius: var(--radius-full);
    opacity: 0.5;
    animation: pulse 3s infinite;
}

.headline-normal {
    color: var(--text-color);
    font-family: var(--font-heading);
    font-weight: var(--weight-medium);
    font-size: 105%;
}

.hero-description {
    font-size: 1.35rem;
    color: var(--text-muted);
    margin-bottom: 3rem;
    max-width: 95%;
    line-height: 1.6;
}

.hero-cta-group {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-bottom: 3rem;
}

.hero-rating {
    display: flex;
    flex-direction: column;
}

.rating-stars {
    display: flex;
    gap: 0.2rem;
    margin-bottom: 0.5rem;
}

.rating-stars i {
    color: var(--gold);
}

.rating-text {
    display: flex;
    flex-direction: column;
}

.rating-score {
    font-weight: var(--weight-semibold);
    color: var(--text-color);
}

.rating-count {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.hero-brands {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.hero-brands p {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 0.5rem;
}

.brand-logos {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.brand-logo {
    opacity: 0.7;
    transition: all var(--transition-normal);
}

.brand-logo:hover {
    opacity: 1;
    transform: scale(1.05);
}

.hero-image-wrapper {
    flex: 1;
    max-width: 550px;
    position: relative;
}

.hero-device {
    position: relative;
    width: 100%;
    height: 450px;
}

.device-frame {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(18, 21, 28, 0.5);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(212, 175, 55, 0.2);
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3), 0 0 20px rgba(212, 175, 55, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transform: perspective(1000px) rotateY(-15deg) rotateX(5deg);
    transition: all var(--transition-normal);
}

.hero-device::before {
    content: '';
    position: absolute;
    top: -20px;
    right: -20px;
    width: 80%;
    height: 80%;
    border: 2px solid var(--gold);
    border-radius: var(--radius-lg);
    z-index: 0;
    opacity: 0.2;
    animation: float 6s ease-in-out infinite;
}

.hero-device::after {
    content: '';
    position: absolute;
    bottom: -30px;
    left: -30px;
    width: 60%;
    height: 60%;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.2) 0%, transparent 70%);
    filter: blur(30px);
    z-index: 0;
    animation: pulse 4s ease-in-out infinite alternate;
}

.hero-device:hover .device-frame {
    transform: perspective(1000px) rotateY(-5deg) rotateX(2deg) translateY(-15px);
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.4), 0 0 30px rgba(212, 175, 55, 0.3);
    border-color: rgba(212, 175, 55, 0.4);
}

.device-screen {
    position: relative;
    width: 100%;
    height: 100%;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.typing-animation {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.typing-line {
    position: relative;
    color: var(--gold);
    font-family: var(--font-modern);
    font-size: 1.5rem;
    overflow: hidden;
    white-space: nowrap;
    border-right: 3px solid var(--gold);
    width: 0;
    animation: typing 3s steps(30, end) forwards, blink 1s step-end infinite;
}

.typing-line:nth-child(1) {
    animation-delay: 0.5s;
}

.typing-line:nth-child(2) {
    animation-delay: 4s;
}

.typing-line:nth-child(3) {
    animation-delay: 7.5s;
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    z-index: var(--z-normal);
}

.mouse {
    width: 30px;
    height: 50px;
    border: 2px solid rgba(212, 175, 55, 0.5);
    border-radius: 20px;
    position: relative;
}

.wheel {
    width: 6px;
    height: 6px;
    background: var(--gold);
    border-radius: 50%;
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    animation: float 1.5s ease-in-out infinite;
}

.arrow-down {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
}

.arrow-down span {
    display: block;
    width: 10px;
    height: 10px;
    border-right: 2px solid var(--gold);
    border-bottom: 2px solid var(--gold);
    transform: rotate(45deg);
    animation: fadeInDown 1s ease-in-out infinite;
    opacity: 0;
}

.arrow-down span:nth-child(1) {
    animation-delay: 0s;
}

.arrow-down span:nth-child(2) {
    animation-delay: 0.2s;
}

.arrow-down span:nth-child(3) {
    animation-delay: 0.4s;
}

@media (max-width: 992px) {
    .hero-container {
        flex-direction: column;
        text-align: center;
        gap: 3rem;
    }
    
    .hero-content {
        max-width: 100%;
    }
    
    .hero-description {
        max-width: 100%;
    }
    
    .hero-cta-group {
        justify-content: center;
    }
    
    .hero-brands {
        align-items: center;
    }
    
    .hero-image-wrapper {
        max-width: 400px;
    }
}

/* Service Intro Section */
.service-intro {
    position: relative;
    background-color: var(--dark-surface);
    overflow: hidden;
}

.service-intro::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 10% 20%, rgba(212, 175, 55, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 90% 80%, rgba(212, 175, 55, 0.03) 0%, transparent 50%);
    z-index: var(--z-background);
}

.service-intro-container {
    display: flex;
    align-items: center;
    gap: 4rem;
    position: relative;
}

.service-intro-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    flex: 1;
}

.stat-card {
    background: rgba(18, 21, 28, 0.7);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden;
    height: 100%;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, transparent, rgba(212, 175, 55, 0.05), transparent);
    opacity: 0;
    transition: opacity var(--transition-normal);
}

.stat-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--gold-gradient);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s ease;
}

.stat-card:hover {
    transform: translateY(-8px) scale(1.03);
    border-color: rgba(212, 175, 55, 0.2);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.25), 0 0 20px rgba(212, 175, 55, 0.15);
    z-index: 2;
}

.stat-card:hover::before {
    opacity: 1;
    animation: gradientFlow 3s ease infinite;
}

.stat-card:hover::after {
    transform: scaleX(1);
}

.stat-icon {
    font-size: 2.5rem;
    color: var(--gold);
    margin-bottom: 1.5rem;
    background: rgba(212, 175, 55, 0.1);
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: all var(--transition-normal);
}

.stat-card:hover .stat-icon {
    transform: scale(1.1) rotate(5deg);
    background: rgba(212, 175, 55, 0.2);
    box-shadow: 0 10px 25px rgba(212, 175, 55, 0.2);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: var(--weight-bold);
    color: var(--text-color);
    margin-bottom: 0.5rem;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.stat-label {
    font-size: 1rem;
    color: var(--text-muted);
}

.service-intro-image {
    flex: 1;
    position: relative;
}

.image-frame {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3), 0 0 20px rgba(212, 175, 55, 0.1);
    transform: perspective(1000px) rotateY(5deg);
    transition: all var(--transition-normal);
}

.image-frame:hover {
    transform: perspective(1000px) rotateY(0deg) translateY(-10px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4), 0 0 30px rgba(212, 175, 55, 0.2);
}

.image-frame img {
    width: 100%;
    height: auto;
    display: block;
    transition: all var(--transition-normal);
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent, rgba(10, 12, 16, 0.7));
}

.experience-badge {
    position: absolute;
    bottom: 2rem;
    right: -2rem;
    background: var(--gold-gradient);
    color: var(--dark-bg);
    padding: 1rem 2rem;
    border-radius: var(--radius-full);
    font-weight: var(--weight-semibold);
    box-shadow: var(--shadow-gold-lg);
    display: flex;
    flex-direction: column;
    align-items: center;
    transform: rotate(-5deg);
}

.experience-years {
    font-size: 2rem;
    font-weight: var(--weight-bold);
    line-height: 1;
}

.experience-text {
    font-size: 0.9rem;
}

.section-wave-bottom {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    z-index: 2;
    display: none; /* Hide all wave dividers */
}

.section-wave-bottom svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 80px;
}

.section-wave-bottom .shape-fill {
    fill: var(--dark-bg);
    /* Ensure no gold color is used */
    opacity: 0.9;
}

@media (max-width: 992px) {
    .service-intro-container {
        flex-direction: column;
        gap: 3rem;
    }
    
    .service-intro-stats {
        width: 100%;
    }
    
    .service-intro-image {
        width: 100%;
        max-width: 500px;
        margin: 0 auto;
    }
    
    .experience-badge {
        right: 1rem;
    }
}

/* Strategy Steps Section */
.strategy-steps {
    position: relative;
    background-color: var(--dark-bg);
    overflow: hidden;
}

.strategy-steps::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23D4AF37' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.5;
}

.strategy-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
    position: relative;
}

/* Connecting line between strategy cards */
.strategy-cards::before {
    content: '';
    position: absolute;
    top: 40px;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(212, 175, 55, 0.2) 10%, 
        rgba(212, 175, 55, 0.2) 90%, 
        transparent 100%
    );
    z-index: 0;
    opacity: 0;
    transform: scaleX(0);
    transform-origin: left;
    transition: all 1s ease;
}

.strategy-cards.active::before {
    opacity: 1;
    transform: scaleX(1);
}

.strategy-card {
    padding: 3rem 2.5rem;
    text-align: center;
    position: relative;
    z-index: 1;
    transition: all var(--transition-normal);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 350px;
    background: rgba(18, 21, 28, 0.3);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.05);
    overflow: hidden;
}

.strategy-icon {
    font-size: 2.8rem;
    color: var(--gold);
    margin-bottom: 2rem;
    background: rgba(212, 175, 55, 0.1);
    width: 100px;
    height: 100px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-normal);
    position: relative;
    z-index: 2;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1), 0 0 15px rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.1);
}

.strategy-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.2) 0%, transparent 70%);
    opacity: 0;
    transform: scale(0.8);
    transition: all var(--transition-normal);
}

.strategy-icon::after {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    width: calc(100% + 10px);
    height: calc(100% + 10px);
    border-radius: 50%;
    border: 2px dashed var(--gold);
    opacity: 0;
    transform: scale(1.1) rotate(0deg);
    transition: all var(--transition-normal);
}

.strategy-card:hover .strategy-icon {
    transform: translateY(-15px);
    background: rgba(212, 175, 55, 0.15);
    box-shadow: 0 20px 40px rgba(212, 175, 55, 0.25), 0 0 20px rgba(212, 175, 55, 0.15);
}

.strategy-card:hover .strategy-icon::before {
    opacity: 1;
    transform: scale(1.2);
    animation: pulse 2s infinite;
}

.strategy-card:hover .strategy-icon::after {
    opacity: 0.5;
    transform: scale(1.2) rotate(45deg);
    animation: spin 10s linear infinite;
}

@keyframes spin {
    0% {
        transform: scale(1.2) rotate(0deg);
    }
    100% {
        transform: scale(1.2) rotate(360deg);
    }
}

.strategy-card h3 {
    margin-bottom: 1.2rem;
    font-weight: var(--weight-semibold);
    position: relative;
    z-index: 2;
    font-size: 1.5rem;
    transition: all var(--transition-normal);
}

.strategy-card p {
    color: var(--text-muted);
    margin-bottom: 0;
    position: relative;
    z-index: 2;
    transition: all var(--transition-normal);
}

.strategy-number {
    position: absolute;
    bottom: 1.5rem;
    right: 1.5rem;
    font-size: 5rem;
    font-weight: var(--weight-bold);
    color: rgba(212, 175, 55, 0.1);
    line-height: 1;
    transition: all var(--transition-normal);
}

.strategy-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, transparent 100%);
    opacity: 0;
    transition: all var(--transition-normal);
}

.strategy-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 3px;
    height: 0;
    background: var(--gold-gradient);
    transition: height 0.5s ease;
}

.strategy-card:hover {
    transform: translateY(-10px);
    border-color: rgba(212, 175, 55, 0.2);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2), 0 0 20px rgba(212, 175, 55, 0.1);
}

.strategy-card:hover::before {
    opacity: 1;
}

.strategy-card:hover::after {
    height: 100%;
}

.strategy-card:hover h3 {
    color: var(--gold);
    transform: translateY(-5px);
}

.strategy-card:hover p {
    transform: translateY(-3px);
}

.strategy-card:hover .strategy-number {
    color: rgba(212, 175, 55, 0.2);
    transform: scale(1.2) rotate(10deg);
}

@media (max-width: 768px) {
    .strategy-cards {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
    }
}

/* Feature Highlight Section */
.feature-highlight {
    position: relative;
    background-color: var(--dark-surface);
    overflow: hidden;
}

.soundwave-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: none;
    opacity: 0;
    z-index: var(--z-background);
    display: none; /* Hide completely */
}

.feature-container {
    display: flex;
    align-items: center;
    gap: 4rem;
}

.feature-content {
    flex: 1;
}

.feature-content .section-title {
    text-align: left;
}

.feature-content .section-title h2::after {
    left: 0;
    transform: none;
}

.feature-accordion {
    margin-bottom: 3rem;
}

.feature-item {
    margin-bottom: 1.5rem;
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: rgba(18, 21, 28, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all var(--transition-normal);
}

.feature-item:hover {
    border-color: rgba(212, 175, 55, 0.2);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2), 0 0 15px rgba(212, 175, 55, 0.05);
}

.feature-header {
    display: flex;
    align-items: center;
    padding: 1.5rem;
    cursor: pointer;
    position: relative;
    transition: all var(--transition-normal);
}

.feature-header:hover {
    background-color: rgba(212, 175, 55, 0.05);
}

.feature-icon {
    width: 40px;
    height: 40px;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    color: var(--soft-white); /* Changed from gold to white */
    transition: all var(--transition-normal);
}

.feature-item:hover .feature-icon,
.feature-header:hover .feature-icon {
    background: rgba(212, 175, 55, 0.2);
    transform: scale(1.1);
    color: var(--soft-white) !important; /* Force icon color to stay white on hover */
}

.feature-header h3 {
    flex: 1;
    margin-bottom: 0;
    font-size: 1.2rem;
}

.feature-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    position: relative;
}

.feature-toggle i {
    position: absolute;
    transition: all var(--transition-normal);
}

.feature-toggle .fa-plus {
    opacity: 1;
}

.feature-toggle .fa-minus {
    opacity: 0;
    transform: rotate(-90deg);
}

.feature-item.active .feature-toggle .fa-plus {
    opacity: 0;
    transform: rotate(90deg);
}

.feature-item.active .feature-toggle .fa-minus {
    opacity: 1;
    transform: rotate(0);
}

.feature-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-normal), padding var(--transition-normal), opacity 0.2s;
    padding: 0 1.5rem;
    opacity: 0;
}

.feature-item.active .feature-body {
    max-height: 300px; /* Increased to accommodate more text on smaller screens */
    padding-bottom: 1.5rem;
    opacity: 1;
    transition: max-height var(--transition-normal), padding var(--transition-normal), opacity 0.3s 0.1s;
}

.feature-image {
    flex: 1;
    position: relative;
}

.feature-image .image-frame {
    transform: perspective(1000px) rotateY(-5deg);
    position: relative;
    z-index: 2;
}

.feature-image .image-frame:hover {
    transform: perspective(1000px) rotateY(0deg) translateY(-10px);
}

.image-decoration {
    position: absolute;
    top: -20px;
    right: -20px;
    width: 80%;
    height: 80%;
    border: 2px solid var(--gold);
    border-radius: var(--radius-lg);
    z-index: 1;
    opacity: 0.3;
}

@media (max-width: 992px) {
    .feature-container {
        flex-direction: column-reverse;
        gap: 3rem;
    }
    
    .feature-content .section-title {
        text-align: center;
    }
    
    .feature-content .section-title h2::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .feature-accordion {
        margin-bottom: 2rem;
    }
    
    .feature-item {
        margin-bottom: 1rem;
    }
    
    .feature-header {
        padding: 1.2rem;
    }
    
    .feature-icon {
        width: 36px;
        height: 36px;
        margin-right: 0.8rem;
    }
    
    .feature-header h3 {
        font-size: 1.1rem;
    }
    
    .feature-image {
        max-width: 80%;
        margin: 0 auto;
    }
    
    .feature-image .image-frame {
        transform: perspective(1000px) rotateY(0deg);
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
    }
    
    .image-decoration {
        width: 90%;
        height: 90%;
        top: -10px;
        right: -10px;
    }
}

@media (max-width: 576px) {
    .feature-container {
        gap: 2rem;
    }
    
    .feature-content .section-title h2 {
        font-size: 1.8rem;
    }
    
    .feature-header {
        padding: 1rem;
        flex-wrap: wrap; /* Allow wrapping on very small screens */
    }
    
    .feature-icon {
        width: 32px;
        height: 32px;
        min-width: 32px; /* Prevent icon from shrinking */
    }
    
    .feature-header h3 {
        font-size: 1rem;
        margin-right: 0.5rem; /* Give some space for the toggle icon */
    }
    
    .feature-toggle {
        width: 20px;
        height: 20px;
        min-width: 20px; /* Prevent toggle from shrinking */
    }
    
    .feature-toggle i {
        font-size: 0.9rem;
    }
    
    .feature-body {
        padding: 0.8rem 1rem 1rem;
    }
    
    .feature-body p {
        font-size: 0.95rem;
        line-height: 1.4;
    }
    
    .feature-image {
        max-width: 100%;
    }
    
    .image-decoration {
        display: none; /* Hide decoration on very small screens for cleaner look */
    }
    
    .feature-image .image-frame img {
        border-radius: var(--radius-md);
    }
}
    
    .feature-image {
        width: 100%;
        max-width: 500px;
        margin: 0 auto;
    }
}

/* Pricing Section */
.pricing-section {
    position: relative;
    background-color: var(--dark-bg);
    overflow: hidden;
}

.pricing-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(212, 175, 55, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(212, 175, 55, 0.03) 0%, transparent 50%);
    z-index: var(--z-background);
}

.pricing-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 3rem;
    gap: 1rem;
}

.toggle-label {
    font-size: 1rem;
    color: var(--text-muted);
    cursor: pointer;
    transition: all var(--transition-normal);
}

.toggle-label.active {
    color: var(--gold);
    font-weight: var(--weight-semibold);
}

.switch {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 30px;
}

.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(255, 255, 255, 0.1);
    transition: all var(--transition-normal);
    border-radius: 30px;
}

.slider:before {
    position: absolute;
    content: "";
    height: 22px;
    width: 22px;
    left: 4px;
    bottom: 4px;
    background-color: var(--gold);
    transition: all var(--transition-normal);
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
}

input:checked + .slider {
    background-color: rgba(212, 175, 55, 0.2);
}

input:checked + .slider:before {
    transform: translateX(30px);
}

.pricing-plans {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.pricing-plan {
    padding: 3rem 2rem;
    text-align: center;
    position: relative;
    transition: all var(--transition-normal);
    display: flex;
    flex-direction: column;
    height: 100%;
    background: rgba(18, 21, 28, 0.5);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.05);
    overflow: hidden;
}

.pricing-plan::before {
    content: '';
    position: absolute;
    top: -100%;
    left: -100%;
    width: 300%;
    height: 300%;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.05) 0%, transparent 70%);
    opacity: 0;
    transition: opacity var(--transition-normal);
    z-index: 0;
}

.pricing-plan:hover {
    transform: translateY(-10px);
    border-color: rgba(212, 175, 55, 0.2);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2), 0 0 20px rgba(212, 175, 55, 0.1);
}

.pricing-plan:hover::before {
    opacity: 1;
    animation: rotate 20s linear infinite;
}

.pricing-plan.featured {
    border-color: rgba(212, 175, 55, 0.3);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3), 0 0 30px rgba(212, 175, 55, 0.1);
    transform: translateY(-20px) scale(1.05);
    z-index: 2;
    background: linear-gradient(135deg, rgba(18, 21, 28, 0.8) 0%, rgba(26, 29, 37, 0.8) 100%);
    border-top: 5px solid transparent;
    background-clip: padding-box;
}

.pricing-plan.featured::before {
    content: '';
    position: absolute;
    top: -5px;
    left: 0;
    width: 100%;
    height: 5px;
    background: var(--gold-gradient);
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
    opacity: 1;
    z-index: 10;
    transform: translateY(0) !important;
}

.pricing-plan.featured::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(212, 175, 55, 0.1) 0%, transparent 30%);
    z-index: -1;
}

@keyframes rotate {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.plan-badge {
    position: absolute;
    top: -15px;
    right: 20px;
    background: var(--gold-gradient);
    color: var(--dark-bg);
    padding: 0.6rem 1.2rem;
    border-radius: var(--radius-full);
    font-weight: var(--weight-semibold);
    font-size: 0.9rem;
    box-shadow: 0 10px 25px rgba(212, 175, 55, 0.3);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transform: rotate(0deg);
    transition: all var(--transition-normal);
    z-index: 10;
}

.plan-badge i {
    font-size: 0.8rem;
    transition: all var(--transition-normal);
}

.pricing-plan.featured:hover .plan-badge {
    transform: translateY(-5px) rotate(-3deg);
    box-shadow: 0 15px 30px rgba(212, 175, 55, 0.4);
    border-color: var(--gold-light);
}

.pricing-plan.featured:hover .plan-badge i {
    transform: rotate(20deg) scale(1.2);
    animation: pulse 1.5s infinite;
}

.plan-header {
    margin-bottom: 2rem;
}

.plan-name {
    font-size: 1.7rem; /* Größere Schrift */
    font-weight: var(--weight-bold);
    margin-bottom: 1.2rem;
    color: #FFFFFF; /* Maximaler Kontrast */
    letter-spacing: 0.01em;
    text-transform: uppercase; /* Bessere Unterscheidung */
    font-size: 1.4rem;
}

.plan-price {
    font-size: 4rem; /* Größere Schrift */
    font-weight: var(--weight-bold);
    margin-bottom: 1.5rem;
    color: #FFFFFF; /* Reines Weiß statt Gradient für bessere Lesbarkeit */
    position: relative;
    display: inline-block;
    transition: all var(--transition-normal);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2); /* Schatten für bessere Lesbarkeit */
}

.pricing-plan:hover .plan-price {
    transform: scale(1.05);
    color: var(--gold); /* Gold nur beim Hover */
}

.plan-price::before {
    content: '€';
    position: absolute;
    top: 0.5rem;
    left: -1.2rem;
    font-size: 1.8rem;
    font-weight: var(--weight-bold); /* Fetter für bessere Lesbarkeit */
    color: var(--gold);
}

.plan-description {
    color: var(--text-secondary); /* Brighter color for better readability */
    margin-bottom: 2.5rem;
    font-size: var(--font-size-base);
    padding: 0 1.5rem;
    line-height: var(--line-height-normal);
    font-weight: var(--weight-medium); /* Slightly bolder */
}

.plan-features {
    margin-bottom: 2.5rem;
    flex-grow: 1;
    position: relative;
}

.plan-features::before {
    content: '';
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 2px;
    background: rgba(212, 175, 55, 0.3);
    border-radius: var(--radius-full);
}

.plan-feature {
    display: flex;
    align-items: center;
    margin-bottom: 1.2rem;
    padding: 0 1rem;
    transition: all var(--transition-normal);
}

.plan-feature:hover {
    transform: translateX(5px);
}

.plan-feature i {
    color: var(--gold);
    margin-right: 1rem;
    font-size: 1.1rem;
    transition: all var(--transition-normal);
}

.pricing-plan.featured .plan-feature i {
    background: rgba(212, 175, 55, 0.1);
    width: 25px;
    height: 25px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.plan-feature:hover i {
    transform: scale(1.2);
}

.plan-feature.disabled i {
    color: rgba(255, 255, 255, 0.3);
    background: none;
}

.plan-feature span {
    color: #FFFFFF; /* Maximaler Kontrast */
    font-size: var(--font-size-base);
    transition: all var(--transition-normal);
    font-weight: var(--weight-medium); /* Fetter für bessere Lesbarkeit */
    letter-spacing: 0.01em;
}

.plan-feature:hover span {
    color: var(--gold); /* Gold beim Hover */
    transform: translateX(3px); /* Leichte Bewegung */
}

.plan-feature.disabled span {
    color: rgba(255, 255, 255, 0.5); /* Helleres Grau für bessere Lesbarkeit */
    text-decoration: line-through;
    font-weight: var(--weight-regular);
}

.pricing-note {
    text-align: center;
    margin-top: 2rem;
}

.pricing-note p {
    color: var(--text-muted);
    font-size: 1rem;
}

@media (max-width: 992px) {
    .pricing-plans {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .pricing-plan.featured {
        transform: scale(1);
    }
}

/* Testimonials Section */
.testimonials-section {
    position: relative;
    background-color: var(--dark-surface);
    overflow: hidden;
}

.testimonials-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23D4AF37' fill-opacity='0.05' fill-rule='evenodd'%3E%3Ccircle cx='3' cy='3' r='3'/%3E%3Ccircle cx='13' cy='13' r='3'/%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.5;
    z-index: var(--z-background);
}

.testimonials-wrapper {
    position: relative;
    padding: 2rem 0;
    overflow: hidden;
}

.testimonials-carousel {
    display: flex;
    gap: 2rem;
    overflow-x: auto;
    padding: 2rem 0;
    scroll-behavior: smooth;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE and Edge */
}

.testimonials-carousel::-webkit-scrollbar {
    display: none; /* Chrome, Safari, Opera */
}

.testimonial {
    flex: 0 0 350px;
    background: rgba(18, 21, 28, 0.7);
    border-radius: var(--radius-lg);
    padding: 3rem;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all var(--transition-normal);
    min-height: 320px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.testimonial::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--gold-gradient);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s ease;
}

.testimonial::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: all var(--transition-normal);
}

.testimonial:hover {
    transform: translateY(-15px) scale(1.03);
    border-color: rgba(212, 175, 55, 0.2);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3), 0 0 30px rgba(212, 175, 55, 0.15);
    z-index: 2;
}

.testimonial:hover::before {
    transform: scaleX(1);
}

.testimonial:hover::after {
    opacity: 1;
    animation: pulse 3s infinite;
}

.quote-bg-icon {
    position: absolute;
    top: 20px;
    left: 20px;
    font-size: 3rem;
    color: rgba(212, 175, 55, 0.1);
    z-index: 1;
}

.testimonial-content {
    position: relative;
    z-index: 2;
    margin-bottom: 2.5rem; /* Mehr Abstand */
    flex-grow: 1;
    padding: 0 0.5rem; /* Seitenabstand für bessere Lesbarkeit */
}

.testimonial-content p {
    font-size: 1.1rem; /* Größere Schrift */
    line-height: 1.6; /* Optimaler Zeilenabstand */
    color: #FFFFFF; /* Maximaler Kontrast */
    font-weight: var(--weight-medium); /* Fetter für bessere Lesbarkeit */
    letter-spacing: 0.01em;
    font-style: italic; /* Hervorhebung als Zitat */
}

.testimonial-profile {
    display: flex;
    align-items: center;
    gap: 1rem;
    position: relative;
    z-index: 2;
}

.testimonial-avatar {
    width: 65px;
    height: 65px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid var(--gold);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2), 0 0 10px rgba(212, 175, 55, 0.2);
    transition: all var(--transition-normal);
    position: relative;
}

.testimonial-avatar::before {
    content: '';
    position: absolute;
    top: -3px;
    left: -3px;
    width: calc(100% + 6px);
    height: calc(100% + 6px);
    border-radius: 50%;
    border: 1px solid var(--gold);
    opacity: 0;
    transform: scale(1.1);
    transition: all var(--transition-normal);
}

.testimonial:hover .testimonial-avatar {
    transform: scale(1.1);
    border-width: 3px;
}

.testimonial:hover .testimonial-avatar::before {
    opacity: 0.5;
    transform: scale(1.2);
    animation: pulse 2s infinite;
}

.testimonial-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all var(--transition-normal);
}

.testimonial:hover .testimonial-avatar img {
    transform: scale(1.1);
}

.testimonial-info {
    flex: 1;
}

.testimonial-author {
    font-weight: var(--weight-bold); /* Fetter für bessere Lesbarkeit */
    color: #FFFFFF; /* Maximaler Kontrast */
    margin-bottom: 0.3rem;
    font-size: 1.1rem; /* Größere Schrift */
    letter-spacing: 0.01em;
}

.testimonial-role {
    font-size: 0.9rem; /* Größere Schrift */
    color: var(--gold);
    font-weight: var(--weight-medium); /* Fetter für bessere Lesbarkeit */
}

.linkedin-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 50%;
    color: var(--gold);
    font-size: 0.8rem;
    transition: all var(--transition-normal);
    margin-top: 0.5rem;
}

.linkedin-badge:hover {
    background: rgba(212, 175, 55, 0.3);
    transform: scale(1.1);
}

.testimonial-voice-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(212, 175, 55, 0.1);
    color: var(--gold);
    padding: 0.5rem 1rem;
    border-radius: var(--radius-full);
    font-size: 0.8rem;
    font-weight: var(--weight-medium);
    border: 1px solid rgba(212, 175, 55, 0.2);
    transition: all var(--transition-normal);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.testimonial:hover .testimonial-voice-badge {
    background: rgba(212, 175, 55, 0.2);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.2);
}

.testimonial-stars {
    display: flex;
    gap: 3px;
    margin-bottom: 1rem;
}

.testimonial-star {
    color: var(--gold);
    font-size: 1rem;
    opacity: 0;
    transform: translateY(10px);
    transition: all var(--transition-normal);
}

.testimonial.active .testimonial-star {
    opacity: 1;
    transform: translateY(0);
}

.testimonial.active .testimonial-star:nth-child(1) { transition-delay: 0.1s; }
.testimonial.active .testimonial-star:nth-child(2) { transition-delay: 0.2s; }
.testimonial.active .testimonial-star:nth-child(3) { transition-delay: 0.3s; }
.testimonial.active .testimonial-star:nth-child(4) { transition-delay: 0.4s; }
.testimonial.active .testimonial-star:nth-child(5) { transition-delay: 0.5s; }

.testimonial-star:nth-child(odd) {
    animation: float 3s ease-in-out infinite;
}

.testimonial-star:nth-child(even) {
    animation: float 3s ease-in-out infinite reverse;
}

@media (max-width: 768px) {
    .testimonials-carousel {
        padding-bottom: 3rem;
    }
    
    .testimonial {
        flex: 0 0 300px;
    }
}

/* FAQ Section */
.faq-section {
    position: relative;
    background-color: #000000; /* Dark black background as requested */
    overflow: hidden;
}

.faq-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Removed decorative gradients for a cleaner, minimalistic look */
    background-image: none;
    z-index: var(--z-background);
}

.faq-categories {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.faq-category {
    background: transparent;
    border: 1px solid rgba(212, 175, 55, 0.3);
    color: var(--text-muted);
    padding: 0.7rem 1.5rem;
    border-radius: var(--radius-full);
    font-size: 0.9rem;
    cursor: pointer;
    transition: all var(--transition-normal);
}

.faq-category:hover {
    background: rgba(212, 175, 55, 0.1);
    color: var(--gold);
}

.faq-category.active {
    background: var(--gold-gradient);
    color: var(--dark-bg);
    border-color: transparent;
    font-weight: var(--weight-semibold);
    box-shadow: var(--shadow-gold);
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 1.5rem;
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: #111111; /* Dark grey background for FAQ items */
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all var(--transition-normal);
}

.faq-item:hover {
    border-color: rgba(212, 175, 55, 0.2);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2), 0 0 15px rgba(212, 175, 55, 0.05);
}

.faq-question {
    display: flex;
    align-items: center;
    padding: 1.5rem;
    cursor: pointer;
    position: relative;
}

.faq-icon {
    width: 40px;
    height: 40px;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    color: var(--gold);
    transition: all var(--transition-normal);
    flex-shrink: 0;
}

.faq-item:hover .faq-icon {
    background: rgba(212, 175, 55, 0.2);
    transform: scale(1.1);
}

.faq-question span {
    flex: 1;
    font-weight: var(--weight-semibold);
    font-size: 1.1rem;
    color: #FFFFFF; /* White text for questions as requested */
}

.faq-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    position: relative;
    flex-shrink: 0;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 50%;
    transition: all var(--transition-normal);
}

.faq-toggle i {
    transition: all var(--transition-normal);
    font-size: 0.9rem;
}

.faq-toggle .fa-plus {
    display: block;
}

.faq-toggle .fa-minus {
    display: none;
    color: var(--gold);
}

.faq-item.active .faq-toggle {
    background: rgba(212, 175, 55, 0.2);
    transform: rotate(180deg);
}

.faq-item.active .faq-toggle .fa-plus {
    display: none;
}

.faq-item.active .faq-toggle .fa-minus {
    display: block;
}

.faq-toggle.animated {
    animation: pulse 0.3s;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    opacity: 1;
    transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s 0.2s;
}

.faq-item:hover .faq-toggle {
    transform: scale(1.1);
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.2);
}

.faq-item.active:hover .faq-toggle {
    transform: rotate(180deg) scale(1.1);
}

.faq-answer-inner {
    padding: 0 1.5rem 1.5rem 4.5rem;
}

.faq-answer-inner p {
    margin-bottom: 1rem;
    color: #CCCCCC; /* Light grey text for answers as requested */
}

.faq-answer-inner ul {
    list-style-type: disc;
    padding-left: 1.5rem;
    margin-bottom: 1rem;
}

.faq-answer-inner li {
    color: var(--text-muted);
    margin-bottom: 0.5rem;
}

@media (max-width: 768px) {
    .faq-categories {
        flex-wrap: wrap;
    }
    
    .faq-category {
        font-size: 0.8rem;
        padding: 0.5rem 1rem;
    }
    
    .faq-question {
        flex-wrap: wrap;
    }
    
    .faq-question span {
        font-size: 1rem;
    }
    
    .faq-answer-inner {
        padding: 0 1.5rem 1.5rem 1.5rem;
    }
}

/* Contact Section */
.contact-section {
    position: relative;
    background-color: var(--dark-surface);
    overflow: hidden;
    padding-bottom: 5rem; /* Add more padding at the bottom */
    margin-bottom: 0; /* Remove any margin at the bottom */
}

.contact-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23D4AF37' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.3;
    z-index: var(--z-background);
}

.contact-card {
    max-width: 800px;
    margin: 0 auto;
    background: rgba(18, 21, 28, 0.7);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3), 0 0 20px rgba(212, 175, 55, 0.1);
    padding: 3rem;
    position: relative;
    overflow: hidden;
}

.contact-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: var(--gold-gradient);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-row {
    display: flex;
    gap: 1.5rem;
}

.form-group {
    flex: 1;
    position: relative;
}

label {
    display: block;
    margin-bottom: 0.8rem;
    color: #FFFFFF; /* Maximaler Kontrast */
    font-size: var(--font-size-sm);
    font-weight: var(--weight-semibold); /* Fetter für bessere Lesbarkeit */
    letter-spacing: 0.02em;
    text-transform: uppercase; /* Bessere Unterscheidung */
    font-size: 0.85rem;
}

.required-field::after {
    content: " *";
    color: var(--gold);
    font-weight: var(--weight-bold);
}

.input-wrapper {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    margin-bottom: 1rem; /* Mehr Abstand zwischen Feldern */
}

.input-wrapper input,
.input-wrapper textarea {
    width: 100%;
    padding: 1.4rem 1.4rem 1.4rem 3.2rem; /* Größere Eingabefelder */
    background: rgba(255, 255, 255, 0.08); /* Leicht hellerer Hintergrund */
    border: 2px solid rgba(255, 255, 255, 0.2); /* Dickerer, sichtbarerer Rand */
    border-radius: var(--radius-md);
    color: #FFFFFF; /* Maximaler Kontrast */
    font-family: var(--font-main);
    font-size: var(--font-size-base);
    transition: all var(--transition-normal);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15); /* Stärkerer Schatten */
    letter-spacing: 0.01em;
    font-weight: var(--weight-medium); /* Fetter für bessere Lesbarkeit */
}

.input-wrapper textarea {
    resize: vertical;
    min-height: 150px;
}

.input-wrapper input:focus,
.input-wrapper textarea:focus {
    outline: none;
    border-color: var(--gold);
    background: rgba(212, 175, 55, 0.08); /* Leicht hellerer Hintergrund */
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2), 0 0 15px rgba(212, 175, 55, 0.3); /* Stärkerer Schatten */
    transform: translateY(-2px);
    color: #FFFFFF; /* Maximaler Kontrast */
}

.input-wrapper.focused input,
.input-wrapper.focused textarea {
    border-color: var(--gold);
    background: rgba(212, 175, 55, 0.08); /* Leicht hellerer Hintergrund */
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2), 0 0 15px rgba(212, 175, 55, 0.3); /* Stärkerer Schatten */
    transform: translateY(-2px);
    color: #FFFFFF; /* Maximaler Kontrast */
}

/* Verbesserte Validierungsstile */
.input-wrapper.has-error input,
.input-wrapper.has-error textarea {
    border-color: #FF4D4D; /* Rot für Fehler */
    background: rgba(255, 77, 77, 0.05);
}

.input-wrapper.has-success input,
.input-wrapper.has-success textarea {
    border-color: #4CAF50; /* Grün für Erfolg */
    background: rgba(76, 175, 80, 0.05);
}

.input-icon {
    position: absolute;
    top: 50%;
    left: 1rem;
    transform: translateY(-50%);
    color: var(--gold);
    font-size: 1rem;
    pointer-events: none;
}

textarea ~ .input-icon {
    top: 1.5rem;
}

.input-focus-ring {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: var(--radius-md);
    border: 2px solid var(--gold);
    opacity: 0;
    transition: all var(--transition-normal);
    pointer-events: none;
}

.input-wrapper.focused .input-focus-ring {
    opacity: 0.3;
}

.btn-submit {
    background: var(--dark-surface-2); /* Changed to dark background */
    color: var(--gold); /* Changed text color to gold */
    padding: 1.3rem 3rem; /* Größerer Button für bessere Sichtbarkeit */
    border-radius: var(--radius-full);
    font-weight: var(--weight-bold); /* Fetter für bessere Lesbarkeit */
    border: 2px solid var(--gold); /* Added gold border */
    cursor: pointer;
    font-size: 1.2rem; /* Größere Schrift */
    position: relative;
    overflow: hidden;
    transition: all var(--transition-normal);
    margin-top: 2.5rem; /* Mehr Abstand */
    align-self: center;
    letter-spacing: 0.5px;
    box-shadow: 0 8px 20px rgba(212, 175, 55, 0.2); /* Stärkerer Schatten */
    text-transform: uppercase; /* Hervorhebung */
}

.btn-submit::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to right,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0.4) 50%,
        rgba(255, 255, 255, 0) 100%
    );
    transform: skewX(-25deg);
    transition: all var(--transition-normal);
}

.btn-submit:hover {
    transform: translateY(-5px) scale(1.03);
    box-shadow: 0 15px 30px rgba(212, 175, 55, 0.3), 0 0 20px rgba(212, 175, 55, 0.2);
    background: var(--dark-surface); /* Slightly darker background on hover */
    border-color: var(--gold-light); /* Lighter gold border on hover */
    color: var(--gold-light); /* Lighter gold text on hover */
}

.btn-submit:hover::before {
    animation: shine 1.5s infinite;
}

.btn-submit:active {
    transform: translateY(-2px);
    background: var(--dark-bg); /* Darker background when pressed */
    border-color: var(--gold); /* Return to normal gold border */
}

.btn-sparkle {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.4) 0%, transparent 60%);
    opacity: 0;
    transition: opacity var(--transition-normal);
    pointer-events: none;
}

.btn-submit .btn-text {
    position: relative;
    z-index: 2;
    color: var(--gold); /* Ensure text is gold */
    transition: color var(--transition-normal);
}

.btn-submit:hover .btn-text {
    color: var(--gold-light); /* Lighter gold on hover */
}

.btn-submit:hover .btn-sparkle {
    opacity: 0.8;
    animation: pulse 2s infinite;
}

@keyframes shine {
    100% {
        left: 150%;
    }
}

.success-message {
    text-align: center;
    padding: 3rem;
    color: var(--gold);
    font-size: 1.2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.success-message i {
    font-size: 3rem;
    margin-bottom: 1rem;
}

@media (max-width: 768px) {
    .contact-card {
        padding: 2rem;
    }
    
    .form-row {
        flex-direction: column;
    }
}

/* Main content wrapper to push footer to bottom */
main, section {
    flex: 1 0 auto; /* Allow sections to grow but not shrink */
}

/* Footer */
.site-footer {
    background-color: var(--dark-bg);
    padding: 5rem 0 2rem;
    position: relative;
    overflow: hidden;
    flex-shrink: 0; /* Prevent footer from shrinking */
    margin-top: 0; /* No margin at the top */
    border-top: 1px solid rgba(212, 175, 55, 0.1); /* Subtle border for separation */
}

.site-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    opacity: 0.3;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    gap: 4rem;
    margin-bottom: 4rem;
}

.footer-brand {
    flex: 1;
    max-width: 400px;
}

.footer-logo {
    margin-bottom: 1.5rem;
}

.logo-text {
    font-family: var(--font-alt-heading);
    font-size: 1.8rem;
    color: var(--text-color);
    display: block;
    margin-bottom: 0.5rem;
}

.logo-tagline {
    font-size: 1rem;
    color: var(--gold);
    font-weight: var(--weight-medium);
}

.footer-description {
    color: var(--text-muted);
    margin-bottom: 2rem;
    font-size: 0.95rem;
    line-height: 1.7;
}

.footer-social {
    display: flex;
    gap: 1.2rem;
}

.social-icon {
    width: 45px;
    height: 45px;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden;
    font-size: 1.2rem;
}

.social-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gold-gradient);
    opacity: 0;
    transition: opacity var(--transition-normal);
    z-index: 0;
}

.social-icon i {
    position: relative;
    z-index: 1;
    transition: all var(--transition-normal);
}

.social-icon:hover {
    transform: translateY(-8px) scale(1.1);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2), 0 0 15px rgba(212, 175, 55, 0.2);
}

.social-icon:hover::before {
    opacity: 1;
}

.social-icon:hover i {
    color: var(--dark-bg);
    transform: scale(1.2);
}

.footer-links {
    display: flex;
    gap: 4rem;
    flex: 1;
}

.footer-links-column {
    flex: 1;
}

.footer-links-column h3 {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    color: var(--text-color);
    position: relative;
    padding-bottom: 0.5rem;
}

.footer-links-column h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--gold);
}

.footer-links-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links-column li {
    margin-bottom: 0.8rem;
}

.footer-links-column a {
    color: var(--text-muted);
    transition: all var(--transition-normal);
    font-size: 0.95rem;
    position: relative;
    padding-left: 1.2rem;
}

.footer-links-column a::before {
    content: '→';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    color: var(--gold);
    opacity: 0;
    transition: all var(--transition-normal);
}

.footer-links-column a:hover {
    color: var(--text-color);
    padding-left: 1.5rem;
}

.footer-links-column a:hover::before {
    opacity: 1;
}

.footer-newsletter {
    flex: 1.5;
}

.footer-newsletter h3 {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    color: var(--text-color);
    position: relative;
    padding-bottom: 0.5rem;
}

.footer-newsletter h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--gold);
}

.footer-newsletter p {
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.newsletter-form {
    display: flex;
    gap: 0.5rem;
}

.newsletter-form .input-wrapper {
    flex: 1;
}

.newsletter-form input {
    padding: 1rem 1rem 1rem 3rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md);
    color: var(--text-color);
    width: 100%;
    font-family: var(--font-main);
    font-size: 0.95rem;
    transition: all var(--transition-normal);
}

.newsletter-form input:focus {
    outline: none;
    border-color: var(--gold);
    background: rgba(212, 175, 55, 0.05);
}

.btn-newsletter {
    background: var(--gold-gradient);
    color: var(--dark-bg);
    width: 50px;
    height: 50px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    cursor: pointer;
    transition: all var(--transition-normal);
}

.btn-newsletter:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-gold);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
}

.footer-bottom::before {
    content: '';
    position: absolute;
    top: -1px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 1px;
    background: var(--gold-gradient);
}

.copyright {
    color: var(--text-muted);
    font-size: 0.9rem;
    transition: all var(--transition-normal);
}

.copyright:hover {
    color: var(--text-color);
}

.copyright span {
    color: var(--gold);
    font-weight: var(--weight-medium);
}

.footer-signature {
    color: var(--text-muted);
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all var(--transition-normal);
}

.footer-signature:hover {
    color: var(--text-color);
}

.footer-signature i {
    color: var(--gold);
    transition: all var(--transition-normal);
}

.footer-signature:hover i {
    transform: scale(1.2) rotate(10deg);
}

.copyright-center {
    text-align: center;
    color: var(--text-muted);
    font-size: 0.85rem;
    padding-top: 2rem;
    width: 100%;
    opacity: 0.7;
}

@media (max-width: 992px) {
    .footer-content {
        flex-direction: column;
        gap: 3rem;
    }
    
    .footer-brand {
        max-width: 100%;
    }
    
    .footer-links {
        flex-wrap: wrap;
        gap: 2rem;
    }
    
    .footer-links-column {
        flex: 0 0 calc(50% - 1rem);
    }
    
    .footer-newsletter {
        width: 100%;
    }
}

@media (max-width: 576px) {
    .footer-links-column {
        flex: 0 0 100%;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
}

/* Global Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.05);
        opacity: 0.8;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

@keyframes float {
    0% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
    100% {
        transform: translateY(0);
    }
}

@keyframes gradientFlow {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

@keyframes typing {
    from {
        width: 0;
    }
    to {
        width: 100%;
    }
}

@keyframes blink {
    from, to {
        border-color: transparent;
    }
    50% {
        border-color: var(--gold);
    }
}

/* Scroll Reveal Animation Classes */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.reveal-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.8s ease;
}

.reveal-left.active {
    opacity: 1;
    transform: translateX(0);
}

.reveal-right {
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.8s ease;
}

.reveal-right.active {
    opacity: 1;
    transform: translateX(0);
}

.reveal-delay-1 {
    transition-delay: 0.1s;
}

.reveal-delay-2 {
    transition-delay: 0.2s;
}

.reveal-delay-3 {
    transition-delay: 0.3s;
}

.reveal-delay-4 {
    transition-delay: 0.4s;
}

.reveal-delay-5 {
    transition-delay: 0.5s;
}
    color: var(--gold);
    border: 2px solid var(--gold);
    box-shadow: none;
}

.btn-secondary:hover {
    background-color: var(--gold);
    color: var(--navy);
    box-shadow: 0 4px 15px rgba(245, 220, 168, 0.2);
}

.btn-dark {
    background: var(--navy);
    color: var(--gold);
}

.btn-dark:hover {
    background: var(--navy-light);
    color: var(--gold);
    box-shadow: 0 8px 25px rgba(18, 23, 42, 0.3);
}

.btn-sticky {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 999;
    display: none;
    padding: 1rem 1.8rem;
    border-radius: var(--border-radius-pill);
    box-shadow: 0 8px 25px rgba(0,0,0,0.25);
    background: var(--gold);
    color: var(--navy);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.btn-sticky:hover {
    transform: translateY(-5px);
    background: var(--gold-dark);
    box-shadow: 0 12px 30px rgba(245, 220, 168, 0.4), 0 0 0 4px rgba(245, 220, 168, 0.2);
}

@media (max-width: 768px) {
    .btn-sticky {
        display: inline-block;
    }
}

/* Header & Navigation */
header {
    background-color: rgba(18, 23, 42, 0.9);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    transition: all var(--transition-normal);
    padding: 1.5rem 0;
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(245, 220, 168, 0.1);
}

header.sticky {
    padding: 0.8rem 0;
    background-color: rgba(18, 23, 42, 0.95);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.25);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.logo {
    font-size: 2rem;
    font-weight: 600;
    color: var(--gold);
    font-family: var(--font-alt-heading);
    letter-spacing: -0.02em;
    transition: all var(--transition-normal);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.logo:hover {
    color: var(--gold-light);
    transform: scale(1.02);
    text-shadow: 0 2px 15px rgba(245, 220, 168, 0.3);
}

.nav-links {
    display: flex;
    list-style: none;
    transition: all var(--transition-normal);
}

.nav-links li {
    margin-left: 2.5rem;
}

.nav-links a {
    color: var(--muted-white);
    font-weight: 500;
    position: relative;
    font-size: 1rem;
    letter-spacing: 0.5px;
    transition: all var(--transition-normal);
    padding: 0.5rem 0;
}

.nav-links a:not(.btn)::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -2px;
    left: 0;
    background-color: var(--gold);
    transition: width var(--transition-normal);
    opacity: 0.8;
}

.nav-links a:not(.btn):hover::after {
    width: 100%;
}

.nav-links a:hover {
    color: var(--gold);
}

.nav-links .btn {
    padding: 0.8rem 1.8rem;
    font-size: 0.9rem;
    background: var(--gold);
    color: var(--navy);
    font-weight: 600;
    border-radius: var(--border-radius-pill);
    box-shadow: 0 5px 15px rgba(245, 220, 168, 0.2);
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.nav-links .btn:hover {
    background: var(--gold-dark);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(245, 220, 168, 0.3);
}

.nav-links {
    display: flex;
    list-style: none;
    transition: all var(--transition-normal);
}

.nav-links li {
    margin-left: 2.5rem;
}

.nav-links a {
    color: var(--muted-white);
    font-weight: 500;
    position: relative;
    font-size: 1rem;
    letter-spacing: 0.5px;
    transition: all var(--transition-normal);
}

.nav-links a:not(.btn)::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: var(--gold);
    transition: width var(--transition-normal);
}

.nav-links a:not(.btn):hover::after {
    width: 100%;
}

.nav-links a:hover {
    color: var(--gold);
}

.nav-links .btn {
    padding: 0.7rem 1.5rem;
    margin-left: 1rem;
}

/* Mobile Navigation */
.mobile-nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    cursor: pointer;
    z-index: 1001;
}

.mobile-nav-toggle span {
    display: block;
    height: 2px;
    width: 100%;
    background-color: var(--gold);
    border-radius: 3px;
    transition: all var(--transition-normal);
}

.mobile-nav-toggle.active span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}

.mobile-nav-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-nav-toggle.active span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

@media (max-width: 768px) {
    .mobile-nav-toggle {
        display: flex;
    }
    
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        height: 100vh;
        background-color: var(--navy-dark);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        box-shadow: -5px 0 25px rgba(0,0,0,0.3);
        transition: right var(--transition-normal);
        padding: 2rem;
    }
    
    .nav-links.active {
        right: 0;
    }
    
    .nav-links li {
        margin: 1.5rem 0;
        width: 100%;
        text-align: center;
    }
    
    .nav-links a {
        font-size: 1.2rem;
        display: block;
        padding: 0.5rem 0;
    }
    
    .nav-links .btn {
        margin-top: 1.5rem;
        width: 100%;
        text-align: center;
    }
}

/* Hero Section */
.hero {
    background-color: var(--navy);
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding: 0;
}

.hero-overlay {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, #12172A 40%, rgba(18, 23, 42, 0.85) 100%);
    z-index: 1;
    animation: gradientShift 15s ease infinite alternate;
}

@keyframes gradientShift {
    0% {
        background: linear-gradient(to bottom, #12172A 40%, rgba(18, 23, 42, 0.85) 100%);
    }
    50% {
        background: linear-gradient(to bottom, rgba(18, 23, 42, 0.95) 40%, rgba(26, 35, 64, 0.85) 100%);
    }
    100% {
        background: linear-gradient(to bottom, #12172A 40%, rgba(18, 23, 42, 0.85) 100%);
    }
}

.hero-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: none;
    opacity: 0.7;
    z-index: 2;
    animation: patternShimmer 20s ease infinite;
}

@keyframes patternShimmer {
    0% {
        background-position: 0% 0%;
        opacity: 0.5;
    }
    25% {
        opacity: 0.7;
    }
    50% {
        background-position: 100% 100%;
        opacity: 0.6;
    }
    75% {
        opacity: 0.7;
    }
    100% {
        background-position: 0% 0%;
        opacity: 0.5;
    }
}

.hero-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8rem 0;
    position: relative;
    z-index: 3;
    gap: 5rem;
}

.hero-content {
    flex: 1;
    max-width: 600px;
    text-align: left;
    position: relative;
    z-index: 3;
    background: rgba(18, 23, 42, 0.6);
    padding: 3.5rem;
    border-radius: var(--border-radius-lg);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(245, 220, 168, 0.15);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.hero-image {
    flex: 1;
    max-width: 550px;
    position: relative;
    perspective: 1000px;
    transform-style: preserve-3d;
}

.hero-image img {
    width: 100%;
    border-radius: var(--border-radius-lg);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3), 0 10px 15px rgba(0, 0, 0, 0.2);
    position: relative;
    z-index: 2;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 3px solid rgba(255, 255, 255, 0.15);
    object-fit: cover;
    object-position: center top;
    max-height: 650px;
    transform: translateZ(20px);
    filter: brightness(1.05);
}

.hero-image:hover img {
    transform: translateZ(30px) scale(1.02);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(245, 220, 168, 0.3);
    filter: brightness(1.1);
}

.hero-image::before {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    background: rgba(245, 220, 168, 0.03);
    border-radius: var(--border-radius-lg);
    z-index: 0;
    transform: translateZ(-5px);
    filter: blur(10px);
}

.hero-image::after {
    content: '';
    position: absolute;
    top: 20px;
    right: -20px;
    width: 100%;
    height: 100%;
    border: 3px solid var(--gold);
    border-radius: var(--border-radius-lg);
    z-index: 1;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 5px 15px rgba(245, 220, 168, 0.1);
    animation: floatFrame 6s ease-in-out infinite;
}

@keyframes floatFrame {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

.hero-image:hover::after {
    top: 15px;
    right: -25px;
    border-color: var(--gold-light);
    box-shadow: 0 8px 25px rgba(245, 220, 168, 0.2);
}

.hero h1 {
    font-size: 4.2rem;
    margin-bottom: 2rem;
    color: var(--white);
    line-height: 1.05;
    opacity: 0;
    transform: translateX(-30px);
    animation: fadeInLeft 1.2s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards 0.3s;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    font-family: var(--font-alt-heading);
    letter-spacing: -0.02em;
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.headline-primary {
    display: block;
    color: var(--gold);
    font-size: 1em;
    margin-bottom: 0.5rem;
    position: relative;
    text-shadow: 0 2px 15px rgba(245, 220, 168, 0.3);
}

.headline-secondary {
    display: block;
    font-size: 0.9em;
}

.headline-primary::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 0;
    height: 3px;
    background: var(--gold);
    border-radius: 3px;
    animation: lineGrow 1.5s ease forwards 1.2s;
}

@keyframes lineGrow {
    from {
        width: 0;
    }
    to {
        width: 100px;
    }
}

.hero p {
    font-size: 1.4rem;
    margin-bottom: 3rem;
    color: var(--muted-white);
    font-weight: 300;
    opacity: 0;
    transform: translateX(-20px);
    animation: fadeInLeft 1s forwards 0.8s;
    max-width: 90%;
    line-height: 1.6;
}

.btn-hero {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 1s forwards 1.2s;
    padding: 1.5rem 3.5rem;
    font-size: 1.1rem;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    color: var(--navy);
    font-weight: 600;
    border-radius: var(--border-radius-pill);
    box-shadow: 0 8px 25px rgba(245, 220, 168, 0.3);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 2px solid transparent;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 100%);
    z-index: -1;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.btn-hero:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 35px rgba(245, 220, 168, 0.5), 0 0 0 4px rgba(245, 220, 168, 0.2);
}

.btn-hero:hover::before {
    opacity: 1;
}

.btn-hero::after {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold-dark) 100%);
    z-index: -2;
    border-radius: var(--border-radius-pill);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.btn-hero:hover::after {
    opacity: 1;
    animation: glowPulse 2s infinite;
}

@keyframes glowPulse {
    0%, 100% {
        opacity: 0.5;
    }
    50% {
        opacity: 1;
    }
}

@media (max-width: 992px) {
    .hero-container {
        flex-direction: column-reverse;
        text-align: center;
        padding: 8rem 0 4rem;
        gap: 3rem;
    }
    
    .hero-content {
        max-width: 100%;
        padding: 2.5rem 2rem;
    }
    
    .hero-image {
        max-width: 85%;
    }
    
    .hero-image img {
        max-height: 450px;
    }
    
    .hero h1 {
        font-size: 3.2rem;
    }
    
    .headline-primary::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .hero p {
        max-width: 100%;
        font-size: 1.2rem;
    }
    
    .btn-hero {
        padding: 1.3rem 2.5rem;
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .hero-content {
        padding: 2rem 1.5rem;
    }
    
    .hero h1 {
        font-size: 2.8rem;
    }
    
    .hero p {
        font-size: 1.1rem;
        margin-bottom: 2rem;
    }
    
    .btn-hero {
        width: 100%;
        padding: 1.2rem;
    }
}

/* Sections */
section {
    padding: 5rem 0;
}

section:nth-child(even) {
    background-color: var(--light-gray);
}

/* Why Copy Matters Section */
#why-copy-matters {
    position: relative;
    overflow: hidden;
}

#why-copy-matters::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(245, 220, 168, 0.05) 0%, rgba(18, 23, 42, 0.95) 100%);
    z-index: 0;
}

/* Explanation Text */
.explanation-text {
    max-width: 900px;
    margin: 0 auto 5rem;
    padding: 2rem;
    text-align: center;
    position: relative;
    z-index: 1;
    background: rgba(26, 35, 64, 0.7);
    border-radius: var(--border-radius-lg);
    border: 1px solid rgba(245, 220, 168, 0.1);
    box-shadow: var(--shadow-md);
}

.explanation-text p {
    font-size: 1.3rem;
    line-height: 1.8;
    margin-bottom: 1.8rem;
    color: var(--muted-white);
    font-weight: 400;
}

.explanation-text p:last-child {
    margin-bottom: 0;
}

.explanation-text strong {
    font-weight: 600;
    font-size: 1.35rem;
}

/* Benefits Cards */
.benefits {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 2.5rem;
    margin: 0 auto;
    max-width: 1200px;
    position: relative;
    z-index: 1;
}

.benefit-card {
    flex: 1;
    min-width: 300px;
    background-color: var(--navy-light);
    padding: 3.5rem 2.5rem;
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-md);
    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden;
    z-index: 1;
    border: 1px solid rgba(245, 220, 168, 0.1);
    display: flex;
    flex-direction: column;
}

.benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: var(--gold);
    transition: height var(--transition-normal);
    z-index: -1;
}

.benefit-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2), 0 0 0 1px rgba(245, 220, 168, 0.2);
    border-color: rgba(245, 220, 168, 0.3);
}

.benefit-card:hover::before {
    height: 8px;
}

.benefit-icon {
    width: 80px;
    height: 80px;
    background-color: rgba(245, 220, 168, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    transition: all var(--transition-normal);
    align-self: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.benefit-icon i {
    font-size: 2.2rem;
    color: var(--gold);
}

.benefit-card:hover .benefit-icon {
    transform: scale(1.1);
    background-color: rgba(245, 220, 168, 0.2);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15), 0 0 0 2px rgba(245, 220, 168, 0.2);
}

.benefit-card h3 {
    color: var(--gold);
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
    text-align: center;
    font-family: var(--font-alt-heading);
}

.benefit-card p {
    color: var(--muted-white);
    font-size: 1.1rem;
    line-height: 1.7;
    text-align: center;
}

@media (max-width: 992px) {
    .benefit-card {
        min-width: 100%;
    }
}

/* Timeline Process */
.timeline-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
}

.timeline-line {
    position: absolute;
    top: 40px;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(to right, var(--navy), var(--navy-dark), var(--navy));
    z-index: 1;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.timeline-steps {
    display: flex;
    justify-content: space-between;
    width: 100%;
    margin-bottom: 5rem;
    position: relative;
    z-index: 2;
    gap: 2rem;
}

.timeline-step {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 0 1rem;
    max-width: 300px;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s forwards;
    position: relative;
}

.timeline-step:nth-child(1) {
    animation-delay: 0.1s;
}

.timeline-step:nth-child(2) {
    animation-delay: 0.3s;
}

.timeline-step:nth-child(3) {
    animation-delay: 0.5s;
}

.timeline-step::after {
    content: '';
    position: absolute;
    top: 40px;
    right: -1rem;
    width: 2rem;
    height: 3px;
    background-color: var(--navy);
    z-index: 0;
}

.timeline-step:last-child::after {
    display: none;
}

.timeline-number {
    width: 80px;
    height: 80px;
    background-color: var(--gold);
    color: var(--navy);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 2rem;
    box-shadow: var(--shadow-md);
    border: 2px solid var(--navy);
    font-family: var(--font-alt-heading);
    transition: all var(--transition-normal);
    position: relative;
    z-index: 2;
}

.timeline-step:hover .timeline-number {
    transform: scale(1.1);
    box-shadow: var(--shadow-lg), 0 0 0 4px rgba(245, 220, 168, 0.3);
}

.timeline-content {
    background-color: var(--white);
    padding: 2.5rem;
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-md);
    height: 100%;
    transition: all var(--transition-normal);
    border-top: 4px solid var(--navy);
    position: relative;
    overflow: hidden;
}

.timeline-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(245, 220, 168, 0.05) 0%, rgba(255, 255, 255, 0) 100%);
    z-index: 0;
}

.timeline-step:hover .timeline-content {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-top-color: var(--gold);
}

.timeline-content h3 {
    color: var(--navy);
    margin-bottom: 1.2rem;
    font-size: 1.7rem;
    position: relative;
    z-index: 1;
    font-family: var(--font-alt-heading);
}

.timeline-content p {
    color: var(--text-color);
    font-size: 1.1rem;
    line-height: 1.7;
    position: relative;
    z-index: 1;
}

.process-image {
    width: 100%;
    max-width: 600px;
    margin-top: 2rem;
    position: relative;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s forwards 0.7s;
}

.process-image img {
    width: 100%;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-lg);
    border: 3px solid var(--white);
    transition: all var(--transition-normal);
}

.process-image:hover img {
    transform: scale(1.02);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

@media (max-width: 992px) {
    .timeline-line {
        display: none;
    }
    
    .timeline-steps {
        flex-direction: column;
        align-items: center;
        gap: 4rem;
    }
    
    .timeline-step {
        max-width: 100%;
        width: 100%;
    }
    
    .timeline-step::after {
        display: none;
    }
}

/* Testimonials */
.testimonials {
    background-color: var(--background-light);
    position: relative;
    overflow: hidden;
}

.testimonials::before {
    content: '"';
    position: absolute;
    top: 2rem;
    left: 2rem;
    font-size: 15rem;
    color: rgba(245, 220, 168, 0.1);
    font-family: var(--font-alt-heading);
    line-height: 0.8;
}

.testimonials-carousel {
    display: flex;
    gap: 2.5rem;
    margin-top: 3rem;
    overflow-x: auto;
    padding: 2rem 0;
    scroll-snap-type: x mandatory;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE and Edge */
}

.testimonials-carousel::-webkit-scrollbar {
    display: none; /* Chrome, Safari, Opera */
}

.testimonials-carousel .testimonial {
    scroll-snap-align: center;
    min-width: 350px;
    max-width: 350px;
    flex: 0 0 auto;
}

.testimonial {
    flex: 1;
    min-width: 300px;
    background-color: var(--white);
    padding: 3rem 2.5rem;
    border-radius: var(--border-radius-md);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    position: relative;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: flex;
    flex-direction: column;
    opacity: 0;
    transform: translateY(30px) rotate(0deg);
    animation: fadeInUp 0.8s forwards;
    border: 1px solid rgba(245, 220, 168, 0.1);
    height: 100%;
    perspective: 1000px;
    transform-style: preserve-3d;
}

.testimonial::before {
    content: '"';
    position: absolute;
    bottom: 20px;
    right: 20px;
    font-size: 12rem;
    color: rgba(245, 220, 168, 0.05);
    font-family: var(--font-alt-heading);
    line-height: 0.8;
    z-index: 0;
}

.testimonial:nth-child(1) {
    animation-delay: 0.1s;
}

.testimonial:nth-child(2) {
    animation-delay: 0.3s;
}

.testimonial:nth-child(3) {
    animation-delay: 0.5s;
}

.testimonial:hover {
    transform: translateY(-8px) rotate(1deg);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    border-color: rgba(245, 220, 168, 0.3);
}

.testimonial-image-wrapper {
    display: flex;
    justify-content: center;
    margin-bottom: 1.5rem;
    margin-top: -5rem;
}

.testimonial-image {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--gold);
    box-shadow: var(--shadow-md);
    position: relative;
    z-index: 2;
    background-color: var(--white);
}

.testimonial-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all var(--transition-normal);
}

.testimonial:hover .testimonial-image {
    transform: scale(1.05);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1), 0 0 0 3px rgba(245, 220, 168, 0.3);
}

.testimonial-rating {
    color: var(--gold);
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

.testimonial-content {
    flex-grow: 1;
    margin-bottom: 2rem;
    position: relative;
}

.testimonial-content p {
    font-style: italic;
    line-height: 1.7;
    position: relative;
    padding: 0 0.5rem;
    color: var(--text-color);
    font-size: 1.05rem;
    font-family: var(--font-heading);
    font-weight: 400;
    text-align: center;
}

.testimonial-content p::before,
.testimonial-content p::after {
    content: '"';
    font-family: var(--font-alt-heading);
    font-size: 1.5rem;
    color: var(--gold);
    position: absolute;
}

.testimonial-content p::before {
    top: -0.5rem;
    left: -0.5rem;
}

.testimonial-content p::after {
    bottom: -1.5rem;
    right: -0.5rem;
}

.testimonial-profile {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: auto;
    text-align: center;
}

.testimonial-info {
    text-align: center;
}

.testimonial-author {
    font-weight: 700;
    color: var(--navy);
    margin: 0;
    font-size: 1.3rem;
    font-family: var(--font-alt-heading);
    letter-spacing: -0.01em;
    position: relative;
    display: inline-block;
}

.testimonial-author::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: width 0.3s ease;
}

.testimonial:hover .testimonial-author::after {
    width: 100%;
}

.testimonial-role {
    color: var(--gold-dark);
    margin: 0;
    font-size: 0.95rem;
    font-weight: 500;
    font-family: var(--font-main);
    margin-top: 0.5rem;
}

/* For Whom Section */
.target-audience {
    display: flex;
    align-items: flex-start;
    gap: 4rem;
    margin: 3rem 0;
    flex-wrap: wrap;
}

.target-content {
    flex: 3;
    min-width: 300px;
}

.target-cards {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.target-card {
    background-color: var(--white);
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-md);
    padding: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(30px);
}

.target-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: linear-gradient(to bottom, var(--primary-color), var(--accent-pink));
    transition: width var(--transition-normal);
    z-index: 0;
}

.target-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.target-card:hover::before {
    width: 8px;
}

.target-card-content {
    flex: 3;
    z-index: 1;
}

.target-card-content h3 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    color: var(--text-color);
}

.target-card-content p {
    font-size: 0.95rem;
    margin-bottom: 0;
    color: var(--dark-gray);
}

.target-card-icon {
    flex: 1;
    font-size: 2.5rem;
    color: var(--primary-color);
    text-align: right;
    z-index: 1;
    transition: transform var(--transition-normal);
}

.target-card:hover .target-card-icon {
    transform: scale(1.1);
}

.target-summary {
    background-color: var(--light-gray);
    padding: 1.5rem 2rem;
    border-radius: var(--border-radius-md);
    border-left: 5px solid var(--primary-color);
    margin-top: 2rem;
}

.target-summary p {
    font-size: 1.1rem;
    margin-bottom: 0;
}

.target-image {
    flex: 2;
    min-width: 300px;
    position: relative;
}

.target-image::after {
    content: '';
    position: absolute;
    bottom: -15px;
    right: -15px;
    width: 70%;
    height: 70%;
    border: 3px solid var(--accent-pink);
    border-radius: var(--border-radius-md);
    z-index: -1;
}

.target-image img {
    width: 100%;
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-lg);
    transition: transform var(--transition-normal);
}

.target-image:hover img {
    transform: translate(-5px, -5px);
}

/* FAQ Section */
.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 1.5rem;
    background-color: var(--white);
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
    transition: all var(--transition-normal);
}

.faq-item:hover {
    box-shadow: var(--shadow-md);
}

.faq-question {
    padding: 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    font-size: 1.1rem;
    color: var(--text-color);
    transition: background-color var(--transition-normal);
}

.faq-question:hover {
    background-color: rgba(106, 90, 205, 0.05);
}

.faq-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    position: relative;
    color: var(--primary-color);
}

.faq-toggle .fa-minus {
    display: none;
}

.faq-item.active .faq-toggle .fa-plus {
    display: none;
}

.faq-item.active .faq-toggle .fa-minus {
    display: block;
}

.faq-item.active .faq-question {
    background-color: rgba(106, 90, 205, 0.08);
    color: var(--primary-color);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-normal);
    padding: 0 1.5rem;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 1.5rem 1.5rem;
}

.faq-answer p {
    margin-bottom: 1rem;
}

.faq-answer p:last-child {
    margin-bottom: 0;
}

/* About Section */
#about {
    background-color: var(--light-gray);
}

.subtitle {
    text-align: center;
    font-size: 1.2rem;
    margin-top: -1rem;
    margin-bottom: 3rem;
    color: var(--primary-color);
    font-weight: 500;
}

.about-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 900px;
    margin: 0 auto;
}

.about-portrait {
    width: 250px;
    height: 250px;
    border-radius: 50%;
    overflow: hidden;
    margin-bottom: 3rem;
    border: 5px solid var(--white);
    box-shadow: var(--shadow-lg);
    position: relative;
}

.about-portrait::after {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    border-radius: 50%;
    border: 2px solid var(--primary-color);
    opacity: 0.5;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 0.5;
    }
    50% {
        transform: scale(1.05);
        opacity: 0.3;
    }
    100% {
        transform: scale(1);
        opacity: 0.5;
    }
}

.about-portrait img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-content {
    text-align: center;
}

.about-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    max-width: 800px;
}

.about-quote {
    background: linear-gradient(135deg, rgba(106, 90, 205, 0.1), rgba(232, 62, 140, 0.1));
    padding: 2rem;
    border-radius: var(--border-radius-md);
    margin: 2.5rem 0;
    position: relative;
    font-family: var(--font-alt-heading);
}

.about-quote::before {
    content: '"';
    position: absolute;
    top: -30px;
    left: 20px;
    font-size: 5rem;
    color: var(--primary-color);
    opacity: 0.2;
    font-family: var(--font-alt-heading);
}

.about-quote p {
    font-size: 1.5rem;
    font-style: italic;
    color: var(--primary-color);
    margin-bottom: 0;
}

/* CTA Section */
.cta {
    background: linear-gradient(135deg, var(--primary-color), var(--dark-purple));
    color: var(--white);
    text-align: center;
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}

.cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 30% 70%, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
}

.cta h2 {
    color: var(--white);
    margin-bottom: 1rem;
}

.cta h2:after {
    background: var(--white);
    left: 50%;
    transform: translateX(-50%);
}

.cta-subtitle {
    font-size: 1.3rem;
    margin-bottom: 3rem;
    color: rgba(255, 255, 255, 0.9);
}

/* Contact Card */
.contact-card {
    max-width: 600px;
    margin: 0 auto 2rem;
    background-color: var(--white);
    padding: 2.5rem;
    border-radius: var(--border-radius-lg);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
    position: relative;
    z-index: 1;
}

/* Contact Form */
.contact-form {
    text-align: left;
}

.form-row {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.form-row .form-group {
    flex: 1;
}

.contact-form label {
    color: var(--text-color);
    font-weight: 600;
    margin-bottom: 0.5rem;
    display: block;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 1rem;
    border: 1px solid var(--medium-gray);
    border-radius: var(--border-radius-sm);
    font-family: var(--font-main);
    font-size: 1rem;
    transition: all var(--transition-normal);
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(106, 90, 205, 0.2);
    outline: none;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: #aaa;
}

.btn-contact {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-pink));
    width: 100%;
    margin-top: 1rem;
    padding: 1.2rem;
    font-size: 1.1rem;
    transition: all var(--transition-normal);
}

.btn-contact:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.contact-alternative {
    margin-top: 2rem;
    font-size: 1rem;
    position: relative;
    z-index: 1;
}

.contact-alternative a {
    color: var(--white);
    text-decoration: underline;
    font-weight: bold;
    transition: all var(--transition-normal);
}

.contact-alternative a:hover {
    color: var(--secondary-color);
    text-decoration: none;
}

@media (max-width: 768px) {
    .form-row {
        flex-direction: column;
        gap: 0;
        margin-bottom: 0;
    }
    
    .contact-card {
        padding: 2rem;
        margin: 0 1rem 2rem;
    }
}

/* Footer */
footer {
    background-color: var(--text-color);
    color: var(--white);
    padding: 4rem 0 2rem;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: 3rem;
}

.footer-column {
    flex: 1;
    min-width: 200px;
    margin-bottom: 2rem;
}

.footer-column h4 {
    color: var(--white);
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.footer-column h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background-color: var(--primary-color);
}

.footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-column ul li {
    margin-bottom: 0.8rem;
}

.footer-column a {
    color: var(--medium-gray);
    text-decoration: none;
    transition: all var(--transition-normal);
}

.footer-column a:hover {
    color: var(--white);
    padding-left: 5px;
}

.footer-logo {
    font-family: var(--font-alt-heading);
    font-size: 1.8rem;
    color: var(--white);
    margin-bottom: 1.5rem;
}

.social-icons {
    display: flex;
    gap: 1rem;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: var(--white);
    font-size: 1.2rem;
    transition: all var(--transition-normal);
}

.social-icon:hover {
    background-color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    color: var(--medium-gray);
}

.footer-bottom a {
    color: var(--secondary-color);
    text-decoration: none;
    transition: color var(--transition-normal);
}

.footer-bottom a:hover {
    color: var(--white);
}

@media (max-width: 768px) {
    .footer-content {
        flex-direction: column;
    }
    
    .footer-column {
        margin-bottom: 2.5rem;
    }
    
    .footer-column:last-child {
        margin-bottom: 0;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes zoomIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
    100% {
        transform: translateY(0px);
    }
}

.benefit-card, .step, .testimonial, .about-image, .target-card {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease, box-shadow 0.3s ease;
}

.benefit-card.animate, .step.animate, .testimonial.animate, .about-image.animate, .target-card.animate {
    opacity: 1;
    transform: translateY(0);
}

/* Stagger animations for benefit cards */
.benefit-card:nth-child(1) {
    transition-delay: 0.1s;
}

.benefit-card:nth-child(2) {
    transition-delay: 0.3s;
}

.benefit-card:nth-child(3) {
    transition-delay: 0.5s;
}

/* Stagger animations for steps */
.step:nth-child(1) {
    transition-delay: 0.1s;
}

.step:nth-child(2) {
    transition-delay: 0.3s;
}

.step:nth-child(3) {
    transition-delay: 0.5s;
}

/* Stagger animations for target cards */
.target-card:nth-child(1) {
    transition-delay: 0.1s;
}

.target-card:nth-child(2) {
    transition-delay: 0.2s;
}

.target-card:nth-child(3) {
    transition-delay: 0.3s;
}

.target-card:nth-child(4) {
    transition-delay: 0.4s;
}

/* Floating animation for specific elements */
.process-image img, .target-image img, .about-portrait {
    animation: float 6s ease-in-out infinite;
}

/* Section entrance animations */
.section-title {
    opacity: 0;
    animation: fadeInUp 1s forwards;
}

.explanation-text {
    opacity: 0;
    animation: fadeInUp 1s forwards 0.3s;
}

.process-intro, .target-audience, .about-container, .contact-card {
    opacity: 0;
    animation: fadeIn 1s forwards 0.5s;
}

/* Hover effects */
.btn, .benefit-card, .step-content, .testimonial, .target-card, .social-icon {
    transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
}

.section-title h2, .footer-logo {
    position: relative;
    display: inline-block;
}

.section-title h2::before, .footer-logo::before {
    content: '';
    position: absolute;
    width: 100%;
    transform: scaleX(0);
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: var(--primary-color);
    transform-origin: bottom right;
    transition: transform 0.3s ease-out;
}

.section-title h2:hover::before, .footer-logo:hover::before {
    transform: scaleX(1);
    transform-origin: bottom left;
}

/* Form Styles */
.form-group {
    margin-bottom: 1.5rem;
}

label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

input, textarea, select {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid var(--medium-gray);
    border-radius: 4px;
    font-family: var(--font-main);
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

input:focus, textarea:focus, select:focus {
    outline: none;
    border-color: var(--primary-color);
}

input.error, textarea.error, select.error {
    border-color: #e74c3c;
}

.success-message {
    background-color: #d4edda;
    color: #155724;
    padding: 1rem;
    border-radius: 4px;
    margin-bottom: 1rem;
    text-align: center;
}

/* Responsive Design */
@media (max-width: 768px) {
    h1 {
        font-size: 2.2rem;
    }
    
    h2 {
        font-size: 1.8rem;
    }
    
    .hero {
        padding: 6rem 0 4rem;
    }
    
    .benefit-card {
        min-width: 100%;
    }
    
    .step {
        padding-left: 3rem;
    }
    
    .step::before {
        width: 2.5rem;
        height: 2.5rem;
        font-size: 1.2rem;
    }
    
    .about {
        flex-direction: column;
    }
    
    .about-image, .about-text {
        min-width: 100%;
    }
    
    .process-intro, .target-audience {
        flex-direction: column;
    }
    
    .process-text, .process-image, .target-content, .target-image {
        min-width: 100%;
    }
    
    .process-image, .target-image {
        order: -1; /* Show images first on mobile */
        margin-bottom: 2rem;
    }
    
    .image-feature {
        margin: 2rem 0;
    }
}

@media (max-width: 480px) {
    .container {
        width: 95%;
    }
    
    h1 {
        font-size: 1.8rem;
    }
    
    h2 {
        font-size: 1.5rem;
    }
    
    .hero p {
        font-size: 1.1rem;
    }
    
    .btn {
        padding: 0.8rem 1.5rem;
    }
}

/* Utility Classes */
.text-gold {
    color: var(--gold) !important;
}

.text-underline {
    position: relative;
    z-index: 1;
}

.text-underline::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 8px;
    background-color: rgba(245, 220, 168, 0.3);
    z-index: -1;
}

/* Why Copy Matters Section */
.explanation-text {
    max-width: 800px;
    margin: 0 auto 4rem;
    text-align: center;
    background: rgba(18, 23, 42, 0.5);
    padding: 2.5rem;
    border-radius: var(--border-radius-lg);
    border: 1px solid rgba(245, 220, 168, 0.1);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
    transition: all var(--transition-normal);
}

.glassmorphism {
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    background: rgba(18, 23, 42, 0.6);
    border: 1px solid rgba(245, 220, 168, 0.15);
}

.explanation-text::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(245, 220, 168, 0.05) 0%, rgba(18, 23, 42, 0) 100%);
    z-index: 0;
}

.explanation-text:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border-color: rgba(245, 220, 168, 0.2);
}

.explanation-text p {
    position: relative;
    z-index: 1;
    color: var(--muted-white);
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.explanation-text p:last-child {
    margin-bottom: 0;
}

.lightbulb-animation {
    position: absolute;
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 60px;
    background: rgba(245, 220, 168, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 3;
    border: 2px solid rgba(245, 220, 168, 0.2);
}

.lightbulb-animation i {
    font-size: 1.8rem;
    color: var(--gold);
    animation: pulse 2s infinite;
}

.lightbulb-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(245, 220, 168, 0.6) 0%, rgba(245, 220, 168, 0) 70%);
    border-radius: 50%;
    z-index: 1;
    filter: blur(10px);
    animation: pulse 2s infinite alternate;
}

.highlight-text {
    position: relative;
    color: var(--gold-light);
    font-weight: 600;
}

.stat-highlight {
    background: rgba(245, 220, 168, 0.1);
    border-radius: var(--border-radius-md);
    padding: 1.5rem;
    margin-top: 2rem;
    position: relative;
    z-index: 2;
    border: 1px solid rgba(245, 220, 168, 0.2);
    display: inline-block;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--gold);
    line-height: 1;
    margin-bottom: 0.5rem;
    font-family: var(--font-alt-heading);
}

.percent {
    font-size: 2rem;
    vertical-align: super;
}

.stat-text {
    font-size: 1.1rem;
    color: var(--muted-white);
}

.benefits {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 4rem;
}

.benefit-card {
    flex: 1;
    min-width: 300px;
    background-color: rgba(26, 35, 64, 0.6);
    padding: 2.5rem;
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-md);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(245, 220, 168, 0.1);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    opacity: 0;
    transform: translateY(30px);
    transform-style: preserve-3d;
    perspective: 1000px;
}

.card-tilt {
    transform-style: preserve-3d;
    transform: perspective(1000px);
}

.benefit-card:nth-child(1) {
    animation: fadeInLeft 0.8s forwards 0.3s;
}

.benefit-card:nth-child(2) {
    animation: fadeInUp 0.8s forwards 0.5s;
}

.benefit-card:nth-child(3) {
    animation: fadeInRight 0.8s forwards 0.7s;
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(to right, var(--gold-dark), var(--gold), var(--gold-dark));
    opacity: 0.7;
    transition: height 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-10px) scale(1.03);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border-color: rgba(245, 220, 168, 0.2);
}

.benefit-card:hover::before {
    height: 8px;
}

.card-shine {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        135deg,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0.03) 40%,
        rgba(255, 255, 255, 0.05) 50%,
        rgba(255, 255, 255, 0.03) 60%,
        rgba(255, 255, 255, 0) 100%
    );
    transform: translateY(100%);
    transition: transform 0.6s ease;
    z-index: 2;
    pointer-events: none;
}

.benefit-card:hover .card-shine {
    transform: translateY(-100%);
}

.benefit-icon {
    width: 80px;
    height: 80px;
    background: rgba(245, 220, 168, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: all var(--transition-normal);
    border: 1px solid rgba(245, 220, 168, 0.2);
    position: relative;
    z-index: 2;
}

.animated-icon {
    position: relative;
    overflow: hidden;
}

.animated-icon::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(245, 220, 168, 0.3) 0%, rgba(245, 220, 168, 0) 70%);
    border-radius: 50%;
    z-index: 1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.benefit-card:hover .animated-icon::after {
    opacity: 1;
    animation: pulse 2s infinite;
}

.benefit-icon i {
    font-size: 2rem;
    color: var(--gold);
    transition: all var(--transition-normal);
    position: relative;
    z-index: 2;
}

.benefit-card:hover .benefit-icon {
    transform: scale(1.1) rotate(5deg);
    background: rgba(245, 220, 168, 0.2);
    box-shadow: 0 10px 25px rgba(245, 220, 168, 0.2);
}

.benefit-card:hover .benefit-icon i {
    transform: scale(1.1);
    color: var(--gold-light);
    animation: bounce 0.5s ease;
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

.benefit-card h3 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    color: var(--gold);
    position: relative;
    z-index: 1;
    font-family: var(--font-alt-heading);
    transform: translateZ(20px);
}

.benefit-card p {
    color: var(--muted-white);
    font-size: 1.05rem;
    line-height: 1.7;
    position: relative;
    z-index: 1;
    transform: translateZ(10px);
}

/* For Whom Section */
#for-whom {
    position: relative;
    overflow: hidden;
}

#for-whom::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(245, 220, 168, 0.05) 0%, rgba(18, 23, 42, 0.95) 100%);
    z-index: 0;
}

.target-audience {
    position: relative;
    z-index: 1;
    margin: 3rem 0;
}

.target-content {
    width: 100%;
}

.target-cards {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.target-card {
    background-color: var(--navy-light);
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-md);
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(30px);
    border: 1px solid rgba(245, 220, 168, 0.1);
    height: 100%;
}

.target-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: var(--gold);
    transition: height var(--transition-normal);
    z-index: 0;
}

.target-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2), 0 0 0 1px rgba(245, 220, 168, 0.2);
    border-color: rgba(245, 220, 168, 0.3);
}

.target-card:hover::before {
    height: 8px;
}

.target-card-icon {
    width: 80px;
    height: 80px;
    background-color: rgba(245, 220, 168, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    transition: all var(--transition-normal);
    align-self: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    z-index: 1;
}

.target-card-icon i {
    font-size: 2.2rem;
    color: var(--gold);
}

.target-card:hover .target-card-icon {
    transform: scale(1.1);
    background-color: rgba(245, 220, 168, 0.2);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15), 0 0 0 2px rgba(245, 220, 168, 0.2);
}

.target-card-content {
    z-index: 1;
    flex-grow: 1;
}

.target-card-content h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--gold);
    text-align: center;
    font-family: var(--font-alt-heading);
}

.target-card-check {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.target-card-check i {
    color: var(--gold);
    margin-right: 0.8rem;
    margin-top: 0.3rem;
    font-size: 0.9rem;
}

.target-card-check p {
    font-size: 1rem;
    margin-bottom: 0;
    color: var(--muted-white);
    line-height: 1.5;
}

.target-summary {
    background-color: rgba(245, 220, 168, 0.05);
    padding: 2.5rem;
    border-radius: var(--border-radius-md);
    text-align: center;
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(245, 220, 168, 0.1);
    max-width: 800px;
    margin: 0 auto;
}

.target-summary p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    color: var(--muted-white);
}

.target-summary .btn {
    margin: 0 auto;
}

@media (max-width: 992px) {
    .target-card {
        min-width: 100%;
    }
}

/* Process Timeline Section */
.timeline-container {
    position: relative;
    padding: 2rem 0;
    max-width: 1000px;
    margin: 0 auto;
}

.timeline-line {
    position: absolute;
    top: 0;
    left: 50%;
    width: 4px;
    height: 0;
    background: linear-gradient(to bottom, var(--navy), var(--navy-light));
    transform: translateX(-50%);
    z-index: 1;
    animation: lineGrow 2s forwards 0.5s;
}

@keyframes lineGrow {
    from {
        height: 0;
    }
    to {
        height: 80%;
    }
}

.timeline-steps {
    display: flex;
    justify-content: space-between;
    position: relative;
    z-index: 2;
    margin-bottom: 4rem;
}

.timeline-step {
    flex: 1;
    max-width: 300px;
    position: relative;
    opacity: 0;
    transform: translateX(-50px);
}

.timeline-step:nth-child(1) {
    animation: fadeInRight 0.8s forwards 0.3s;
}

.timeline-step:nth-child(2) {
    animation: fadeInRight 0.8s forwards 0.6s;
}

.timeline-step:nth-child(3) {
    animation: fadeInRight 0.8s forwards 0.9s;
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.timeline-number {
    width: 60px;
    height: 60px;
    background: var(--navy);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 3;
    box-shadow: 0 8px 25px rgba(18, 23, 42, 0.3);
    border: 3px solid var(--gold);
    transition: all var(--transition-normal);
}

.timeline-number span {
    color: var(--gold);
    font-size: 2rem;
    font-weight: 700;
    font-family: var(--font-alt-heading);
}

.timeline-step:hover .timeline-number {
    transform: scale(1.1);
    box-shadow: 0 12px 30px rgba(18, 23, 42, 0.4);
    background: var(--navy-dark);
}

.timeline-content {
    background: var(--white);
    border-radius: var(--border-radius-md);
    padding: 2rem;
    box-shadow: var(--shadow-md);
    position: relative;
    z-index: 2;
    transition: all var(--transition-normal);
    border-top: 3px solid transparent;
}

.timeline-icon {
    position: absolute;
    top: -20px;
    right: 20px;
    width: 40px;
    height: 40px;
    background: var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--navy);
    font-size: 1.2rem;
    box-shadow: 0 5px 15px rgba(245, 220, 168, 0.3);
    transition: all var(--transition-normal);
}

.timeline-step:hover .timeline-icon {
    transform: scale(1.1) rotate(10deg);
    box-shadow: 0 8px 20px rgba(245, 220, 168, 0.4);
}

/* Particles and Modern Effects */
.particles-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 3;
    pointer-events: none;
}

.parallax-element {
    transition: transform 0.2s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.animated-heading span {
    display: inline-block;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s forwards;
}

.animated-heading .headline-primary {
    animation-delay: 0.3s;
}

.animated-heading .headline-secondary {
    animation-delay: 0.6s;
}

.animated-text {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s forwards 0.9s;
}

.hero-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    height: 80%;
    background: radial-gradient(circle, rgba(245, 220, 168, 0.1) 0%, rgba(18, 23, 42, 0) 70%);
    opacity: 0.7;
    z-index: 2;
    filter: blur(50px);
    animation: pulse 8s infinite ease-in-out;
}

.hero-image-wrapper {
    position: relative;
}

.image-glow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(245, 220, 168, 0.3) 0%, rgba(18, 23, 42, 0) 70%);
    filter: blur(20px);
    z-index: 1;
    opacity: 0;
    animation: fadeIn 1s forwards 0.5s;
}

.word-animation-container {
    overflow: hidden;
}

.word-wrapper {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 0.5rem;
}

.headline-word {
    display: inline-block;
    opacity: 0;
    transform: translateY(30px);
    margin-right: 0.5rem;
    animation: fadeInUp 0.8s forwards;
}

.word-wrapper:nth-child(1) .headline-word:nth-child(1) {
    animation-delay: 0.1s;
}

.word-wrapper:nth-child(1) .headline-word:nth-child(2) {
    animation-delay: 0.2s;
}

.word-wrapper:nth-child(1) .headline-word:nth-child(3) {
    animation-delay: 0.3s;
}

.word-wrapper:nth-child(2) .headline-word:nth-child(1) {
    animation-delay: 0.5s;
}

.word-wrapper:nth-child(2) .headline-word:nth-child(2) {
    animation-delay: 0.6s;
}

.word-wrapper:nth-child(2) .headline-word:nth-child(3) {
    animation-delay: 0.7s;
}

.word-wrapper:nth-child(2) .headline-word:nth-child(4) {
    animation-delay: 0.8s;
}

.word-wrapper:nth-child(2) .headline-word:nth-child(5) {
    animation-delay: 0.9s;
}

.btn-hero {
    position: relative;
    overflow: hidden;
}

.btn-hero .btn-text {
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
}

.btn-hero .btn-icon {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%) scale(0);
    opacity: 0;
    transition: all 0.3s ease;
    z-index: 2;
}

.btn-hero:hover .btn-text {
    transform: translateX(-10px);
}

.btn-hero:hover .btn-icon {
    transform: translateY(-50%) scale(1);
    opacity: 1;
}

.btn-glow {
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    background: radial-gradient(circle, rgba(245, 220, 168, 0.8) 0%, rgba(245, 220, 168, 0) 70%);
    border-radius: var(--border-radius-pill);
    z-index: 1;
    opacity: 0;
    filter: blur(10px);
    transition: opacity 0.5s ease;
}

.btn-hero:hover .btn-glow {
    opacity: 0.5;
    animation: pulse 2s infinite;
}

/* Section Transitions */
.section-wave-top {
    position: absolute;
    top: -1px;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    display: none; /* Hide all wave dividers */
}

.section-wave-bottom {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    transform: rotate(180deg);
    display: none; /* Hide all wave dividers */
}

.section-wave-top svg,
.section-wave-bottom svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 70px;
}

.section-wave-top .shape-fill,
.section-wave-bottom .shape-fill {
    fill: var(--dark-bg);
}

.bg-navy .section-wave-top .shape-fill,
.bg-navy .section-wave-bottom .shape-fill {
    fill: var(--navy);
}




/* FAQ Section Enhancements */
.faq-categories {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin: 2rem 0;
    flex-wrap: wrap;
}

.faq-category {
    background: rgba(18, 23, 42, 0.05);
    border: 1px solid rgba(18, 23, 42, 0.1);
    color: var(--navy);
    padding: 0.6rem 1.2rem;
    border-radius: var(--border-radius-pill);
    cursor: pointer;
    transition: all var(--transition-normal);
    font-weight: 500;
    font-size: 0.9rem;
}

.faq-category.active {
    background: var(--gold);
    color: var(--navy);
    border-color: var(--gold);
    box-shadow: 0 5px 15px rgba(245, 220, 168, 0.3);
}

.faq-category:hover:not(.active) {
    background: rgba(245, 220, 168, 0.2);
    border-color: rgba(245, 220, 168, 0.3);
}

.faq-container {
    max-width: 900px;
    margin: 3rem auto 0;
}

.faq-item {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.5s ease, transform 0.5s ease, display 0.3s ease;
}

.faq-item:not(.visible) {
    opacity: 0;
    transform: translateY(20px);
}

.faq-steps {
    display: flex;
    justify-content: space-between;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(18, 23, 42, 0.1);
}

.faq-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.step-number {
    width: 30px;
    height: 30px;
    background: var(--gold);
    color: var(--navy);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.step-text {
    font-size: 0.9rem;
    color: var(--navy);
}

.timeline-info {
    margin-top: 1.5rem;
    background: rgba(245, 220, 168, 0.1);
    border-radius: var(--border-radius-md);
    padding: 1.5rem;
}

.timeline-item {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(18, 23, 42, 0.1);
}

.timeline-item:last-child {
    border-bottom: none;
}

.timeline-label {
    font-weight: 600;
    color: var(--navy);
}

.timeline-duration {
    color: var(--gold-dark);
    font-weight: 500;
}

.pricing-table {
    margin-top: 1.5rem;
    background: rgba(245, 220, 168, 0.1);
    border-radius: var(--border-radius-md);
    padding: 1rem;
}

.pricing-item {
    display: flex;
    justify-content: space-between;
    padding: 0.75rem;
    border-bottom: 1px solid rgba(18, 23, 42, 0.1);
}

.pricing-item:last-child {
    border-bottom: none;
}

.pricing-service {
    font-weight: 600;
    color: var(--navy);
}

.pricing-value {
    color: var(--gold-dark);
    font-weight: 700;
}

.faq-answer-inner {
    padding: 0 1rem;
}

/* Enhanced Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.05);
        opacity: 0.8;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes shimmer {
    0% {
        background-position: -100% 0;
    }
    100% {
        background-position: 100% 0;
    }
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
    100% {
        transform: translateY(0px);
    }
}

/* Testimonial Enhancements */
.testimonial-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 3;
    opacity: 0.8;
    transition: all var(--transition-normal);
}

.testimonial:hover .testimonial-badge {
    transform: scale(1.1);
    opacity: 1;
}

.client-logo {
    height: 20px;
    border-radius: 3px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

/* Testimonial Controls */
.testimonial-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 2rem;
    gap: 2rem;
}

.testimonial-dots {
    display: flex;
    gap: 0.5rem;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(18, 23, 42, 0.2);
    cursor: pointer;
    transition: all var(--transition-normal);
}

.dot.active {
    background: var(--gold);
    transform: scale(1.2);
}

.testimonial-arrows {
    display: flex;
    gap: 1rem;
}

.arrow-prev,
.arrow-next {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--white);
    border: 1px solid rgba(18, 23, 42, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all var(--transition-normal);
    color: var(--navy);
}

.arrow-prev:hover,
.arrow-next:hover {
    background: var(--gold);
    color: var(--navy);
    box-shadow: 0 5px 15px rgba(245, 220, 168, 0.3);
}

/* Enhanced Contact Form */
.input-wrapper {
    position: relative;
    width: 100%;
}

.input-icon {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--gold);
    font-size: 1rem;
    z-index: 2;
    opacity: 0.7;
    transition: all var(--transition-normal);
}

.input-wrapper textarea + .input-icon {
    top: 25px;
}

.input-wrapper input,
.input-wrapper select,
.input-wrapper textarea {
    padding-left: 45px;
    width: 100%;
    transition: all var(--transition-normal);
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(245, 220, 168, 0.3);
    border-radius: var(--border-radius-md);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.input-wrapper input:focus,
.input-wrapper select:focus,
.input-wrapper textarea:focus {
    background: white;
    border-color: var(--gold);
    box-shadow: 0 8px 20px rgba(245, 220, 168, 0.2);
    outline: none;
}

.input-wrapper:focus-within .input-icon {
    color: var(--neon-blue);
    opacity: 1;
    transform: translateY(-50%) scale(1.1);
}

.input-focus-ring {
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    border-radius: var(--border-radius-md);
    background: radial-gradient(
        circle, 
        rgba(0, 194, 255, 0.3) 0%, 
        rgba(245, 220, 168, 0.2) 50%, 
        rgba(245, 220, 168, 0) 70%
    );
    opacity: 0;
    z-index: 1;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.input-wrapper:focus-within .input-focus-ring {
    opacity: 0.5;
    animation: pulse 2s infinite;
}

.contact-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: var(--border-radius-lg);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    overflow: hidden;
    position: relative;
}

.contact-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(0, 194, 255, 0.05) 0%,
        rgba(245, 220, 168, 0.05) 50%,
        rgba(255, 255, 255, 0) 100%
    );
    z-index: 1;
    pointer-events: none;
}

.contact-form {
    position: relative;
    z-index: 2;
}

.form-row {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

@media (max-width: 768px) {
    .form-row {
        flex-direction: column;
        gap: 1rem;
    }
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: var(--weight-medium);
    color: var(--navy);
}

.btn-submit {
    background: linear-gradient(
        135deg,
        var(--gold-dark) 0%,
        var(--gold) 50%,
        var(--gold-light) 100%
    );
    color: var(--navy);
    font-weight: var(--weight-semibold);
    border: none;
    padding: 1rem 2rem;
    border-radius: var(--border-radius-pill);
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(245, 220, 168, 0.3);
}

.btn-submit:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 15px 40px rgba(245, 220, 168, 0.4);
}

.btn-submit {
    position: relative;
    overflow: hidden;
}

.btn-submit .btn-text {
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
}

.btn-submit .btn-icon {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%) scale(0);
    opacity: 0;
    transition: all 0.3s ease;
    z-index: 2;
}

.btn-submit:hover .btn-text {
    transform: translateX(-10px);
}

.btn-submit:hover .btn-icon {
    transform: translateY(-50%) scale(1);
    opacity: 1;
}

.btn-sparkle {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0.4) 50%,
        rgba(255, 255, 255, 0) 100%
    );
    z-index: 1;
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.btn-submit:hover .btn-sparkle {
    transform: translateX(100%);
}

/* Enhanced Testimonials Section */
.testimonials-wrapper {
    position: relative;
    overflow: hidden;
    padding: 2rem 0;
}

.testimonials-carousel {
    display: flex;
    gap: 2rem;
    overflow-x: auto;
    padding: 2rem 1rem;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE and Edge */
}

.testimonials-carousel::-webkit-scrollbar {
    display: none; /* Chrome, Safari, Opera */
}

.testimonial {
    flex: 0 0 350px;
    background: var(--white);
    border-radius: var(--border-radius-lg);
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
    scroll-snap-align: start;
    transition: all 0.3s ease;
    transform-style: preserve-3d;
    transform: perspective(1000px);
    opacity: 0;
    animation: fadeInUp 0.8s forwards;
    animation-delay: calc(var(--i, 0) * 0.2s);
}

.testimonial:nth-child(1) {
    --i: 1;
}

.testimonial:nth-child(2) {
    --i: 2;
}

.testimonial:nth-child(3) {
    --i: 3;
}

.testimonial:nth-child(4) {
    --i: 4;
}

.testimonial:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.quote-bg-icon {
    position: absolute;
    top: 1.5rem;
    left: 1.5rem;
    font-size: 5rem;
    color: var(--gold);
    opacity: 0.1;
    z-index: 1;
    transform: translateZ(10px);
}

.testimonial-voice-badge {
    position: absolute;
    bottom: 1rem;
    right: 1rem;
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
    color: var(--gold);
    font-size: 0.8rem;
    padding: 0.3rem 0.8rem;
    border-radius: var(--border-radius-pill);
    z-index: 3;
    transform: translateZ(20px);
}

.testimonial-content {
    position: relative;
    z-index: 2;
    margin-bottom: 1.5rem;
    transform: translateZ(15px);
}

.testimonial-content p {
    position: relative;
    font-style: italic;
    line-height: 1.6;
    color: var(--navy);
}

.testimonial-profile {
    display: flex;
    align-items: center;
    position: relative;
    z-index: 2;
    transform: translateZ(15px);
}

.testimonial-info {
    position: relative;
}

.testimonial-author {
    font-weight: var(--weight-bold);
    color: var(--navy);
    margin-bottom: 0.2rem;
}

.testimonial-role {
    font-size: 0.9rem;
    color: var(--navy-light);
    opacity: 0.8;
}

.linkedin-badge {
    position: absolute;
    right: -2rem;
    top: 0;
    background: #0077B5;
    color: white;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    cursor: pointer;
    transition: all 0.3s ease;
    transform: translateZ(20px);
}

.linkedin-badge:hover {
    transform: translateZ(20px) scale(1.2);
}

/* Enhanced About Section */
.about-portrait {
    position: relative;
    transition: all var(--transition-normal);
}

.portrait-frame {
    position: relative;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    transition: all var(--transition-normal);
}

.portrait-frame img {
    display: block;
    width: 100%;
    height: auto;
    transition: transform 0.5s ease;
}

.portrait-frame:hover img {
    transform: scale(1.05);
}

.portrait-glow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(245, 220, 168, 0.3) 0%, rgba(245, 220, 168, 0) 70%);
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
}

.portrait-frame:hover .portrait-glow {
    opacity: 1;
}

.trust-badges {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 1.5rem;
}

.trust-badge {
    background: var(--white);
    border-radius: var(--border-radius-pill);
    padding: 0.5rem 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all var(--transition-normal);
}

.trust-badge:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(245, 220, 168, 0.3);
}

.trust-badge i {
    color: var(--gold);
}

.trust-badge span {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--navy);
}

.about-intro {
    font-size: 1.3rem;
    font-weight: 500;
    color: var(--navy);
    margin-bottom: 1.5rem;
}

.about-quote {
    position: relative;
    background: rgba(245, 220, 168, 0.1);
    border-left: 4px solid var(--gold);
    padding: 2rem;
    margin: 2rem 0;
    border-radius: 0 var(--border-radius-md) var(--border-radius-md) 0;
    font-style: italic;
}

.quote-icon {
    position: absolute;
    top: 1rem;
    left: 1rem;
    font-size: 1.5rem;
    color: var(--gold);
    opacity: 0.3;
}

.quote-signature {
    text-align: right;
    margin-top: 1rem;
    font-weight: 600;
    color: var(--gold-dark);
    font-style: normal;
}

/* Hero Section - Vitrapro Style */
.hero {
    position: relative;
    min-height: 100vh;
    background-color: var(--dark-bg);
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: 8rem 0 6rem;
    perspective: 1000px;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(15, 17, 22, 0.9) 0%, rgba(15, 17, 22, 0.7) 100%);
    z-index: 1;
}

.hero-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('data:image/svg+xml;utf8,<svg width="20" height="20" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg"><rect width="1" height="1" fill="%23E6A9A9" fill-opacity="0.05"/></svg>');
    background-size: 20px 20px;
    opacity: 0.3;
    z-index: 2;
    animation: patternFloat 30s infinite linear;
}

@keyframes patternFloat {
    0% {
        background-position: 0 0;
    }
    100% {
        background-position: 100px 100px;
    }
}

.particles-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 3;
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-content {
    position: relative;
    z-index: 4;
}

.hero-tagline {
    font-family: var(--font-modern);
    font-size: 1.1rem;
    font-weight: var(--weight-medium);
    color: var(--rose-gold);
    margin-bottom: 1.5rem;
    letter-spacing: 1px;
    opacity: 0;
    animation: fadeInUp 0.8s forwards 0.2s;
    position: relative;
}

.hero-tagline::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 40px;
    height: 2px;
    background: linear-gradient(to right, var(--rose-gold), transparent);
}

.animated-heading {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    display: flex;
    flex-direction: column;
}

.headline-gradient {
    background: linear-gradient(to right, var(--rose-gold), var(--amber));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    font-weight: var(--weight-bold);
    display: block;
    opacity: 0;
    animation: fadeInUp 0.8s forwards 0.4s;
}

.headline-normal {
    color: var(--text-color);
    font-weight: var(--weight-medium);
    display: block;
    opacity: 0;
    animation: fadeInUp 0.8s forwards 0.6s;
}

.hero-description {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
    max-width: 90%;
    opacity: 0;
    animation: fadeInUp 0.8s forwards 0.8s;
}

.hero-cta-group {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-bottom: 3rem;
    opacity: 0;
    animation: fadeInUp 0.8s forwards 1s;
}

.btn-lg {
    padding: 0.8rem 2rem;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.btn-icon {
    opacity: 0;
    transform: translateX(-10px);
    transition: all var(--transition-normal);
}

.btn-primary:hover .btn-icon {
    opacity: 1;
    transform: translateX(0);
}

.hero-rating {
    display: flex;
    flex-direction: column;
}

.rating-stars {
    color: var(--amber);
    font-size: 1.2rem;
    margin-bottom: 0.3rem;
}

.rating-text {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.rating-score {
    font-weight: var(--weight-bold);
    color: var(--text-color);
}

.rating-count {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.hero-brands {
    opacity: 0;
    animation: fadeInUp 0.8s forwards 1.2s;
}

.hero-brands p {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 1rem;
}

.brand-logos {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.brand-logo {
    color: var(--text-muted);
    font-size: 0.9rem;
    opacity: 0.7;
    transition: all var(--transition-normal);
}

.brand-logo:hover {
    opacity: 1;
    color: var(--text-color);
}

/* Hero Device Animation */
.hero-image-wrapper {
    position: relative;
    z-index: 4;
    opacity: 0;
    animation: fadeInUp 0.8s forwards 1s;
}

.hero-device {
    position: relative;
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
}

.device-frame {
    position: relative;
    width: 100%;
    padding-top: 200%;
    background: linear-gradient(135deg, var(--dark-surface-2) 0%, var(--dark-surface) 100%);
    border-radius: 30px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
    overflow: hidden;
    transform-style: preserve-3d;
    transform: perspective(1000px) rotateY(-15deg) rotateX(5deg);
    transition: all var(--transition-normal);
}

.device-frame::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(230, 169, 169, 0.1) 0%, rgba(255, 190, 92, 0.05) 100%);
    z-index: 1;
    pointer-events: none;
}

.device-frame::after {
    content: '';
    position: absolute;
    top: 15px;
    left: 50%;
    transform: translateX(-50%);
    width: 30%;
    height: 15px;
    background: var(--dark-surface-2);
    border-radius: 10px;
    z-index: 2;
}

.device-screen {
    position: absolute;
    top: 40px;
    left: 10px;
    right: 10px;
    bottom: 40px;
    background: var(--dark-bg);
    border-radius: 10px;
    overflow: hidden;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.typing-animation {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.typing-line {
    position: relative;
    color: var(--rose-gold);
    font-family: var(--font-modern);
    font-size: 1.2rem;
    overflow: hidden;
    white-space: nowrap;
    border-right: 2px solid var(--rose-gold);
    animation: typing 3s steps(30, end) infinite, blink-caret 0.75s step-end infinite;
    width: 0;
}

.typing-line:nth-child(1) {
    animation-delay: 0s;
}

.typing-line:nth-child(2) {
    animation-delay: 3s;
}

.typing-line:nth-child(3) {
    animation-delay: 6s;
}

@keyframes typing {
    0% {
        width: 0;
    }
    30% {
        width: 100%;
    }
    80% {
        width: 100%;
    }
    90% {
        width: 0;
    }
    100% {
        width: 0;
    }
}

@keyframes blink-caret {
    from, to {
        border-color: transparent;
    }
    50% {
        border-color: var(--rose-gold);
    }
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 5;
    opacity: 0;
    animation: fadeIn 1s forwards 1.5s;
}

.mouse {
    width: 30px;
    height: 50px;
    border: 2px solid var(--text-muted);
    border-radius: 20px;
    position: relative;
    margin-bottom: 10px;
}

.wheel {
    width: 6px;
    height: 6px;
    background: var(--rose-gold);
    border-radius: 50%;
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll 2s infinite;
}

@keyframes scroll {
    0% {
        opacity: 1;
        top: 10px;
    }
    100% {
        opacity: 0;
        top: 30px;
    }
}

.arrow-down {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
}

.arrow-down span {
    display: block;
    width: 10px;
    height: 10px;
    border-bottom: 2px solid var(--text-muted);
    border-right: 2px solid var(--text-muted);
    transform: rotate(45deg);
    animation: arrow 2s infinite;
}

.arrow-down span:nth-child(2) {
    animation-delay: 0.2s;
}

.arrow-down span:nth-child(3) {
    animation-delay: 0.4s;
}

@keyframes arrow {
    0% {
        opacity: 0;
        transform: rotate(45deg) translate(-5px, -5px);
    }
    50% {
        opacity: 1;
    }
    100% {
        opacity: 0;
        transform: rotate(45deg) translate(5px, 5px);
    }
}

@media (max-width: 992px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .hero {
        min-height: auto;
        padding-bottom: 3rem;
    }
    
    .hero-image-wrapper {
        order: -1;
    }
    
    .hero-device {
        max-width: 300px;
    }
    
    .animated-heading {
        font-size: 2.5rem;
    }
}

/* Service Intro Section */
.service-intro {
    background-color: var(--dark-surface);
    position: relative;
    overflow: hidden;
}

.section-title {
    text-align: left;
    margin-bottom: 4rem;
    position: relative;
}

.section-title.center {
    text-align: center;
}

.section-subtitle {
    display: inline-block;
    font-family: var(--font-modern);
    font-size: 1rem;
    font-weight: var(--weight-medium);
    color: var(--rose-gold);
    margin-bottom: 1rem;
    letter-spacing: 1px;
    position: relative;
}

.section-subtitle::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 30px;
    height: 2px;
    background: linear-gradient(to right, var(--rose-gold), transparent);
}

.section-title.center .section-subtitle::after {
    left: 50%;
    transform: translateX(-50%);
}

.section-title h2 {
    font-size: 2.5rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    max-width: 800px;
}

.section-title.center h2 {
    margin-left: auto;
    margin-right: auto;
}

.title-separator {
    width: 60px;
    height: 3px;
    background: linear-gradient(to right, var(--rose-gold), var(--amber));
    margin-bottom: 1.5rem;
}

.section-title.center .title-separator {
    margin-left: auto;
    margin-right: auto;
}

.service-intro-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.service-intro-image {
    position: relative;
}

.image-frame {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.image-frame img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.image-frame:hover img {
    transform: scale(1.05);
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(15, 17, 22, 0.8) 0%, rgba(15, 17, 22, 0) 50%);
}

.experience-badge {
    position: absolute;
    bottom: -20px;
    right: 30px;
    background: linear-gradient(135deg, var(--rose-gold-dark) 0%, var(--rose-gold) 100%);
    color: var(--dark-bg);
    padding: 1rem;
    border-radius: var(--radius-lg);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 20px rgba(230, 169, 169, 0.3);
}

.experience-years {
    font-size: 2rem;
    font-weight: var(--weight-bold);
    line-height: 1;
}

.experience-text {
    font-size: 0.9rem;
    font-weight: var(--weight-medium);
}

.service-intro-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.stat-card {
    background: var(--dark-surface-2);
    border-radius: var(--radius-lg);
    padding: 2rem;
    text-align: center;
    transition: all var(--transition-normal);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    border-color: rgba(230, 169, 169, 0.1);
}

.stat-icon {
    font-size: 2rem;
    color: var(--rose-gold);
    margin-bottom: 1rem;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: var(--weight-bold);
    color: var(--text-color);
    margin-bottom: 0.5rem;
    font-family: var(--font-modern);
}

.stat-label {
    font-size: 1rem;
    color: var(--text-muted);
}

@media (max-width: 992px) {
    .service-intro-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .service-intro-stats {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .section-title h2 {
        font-size: 2rem;
    }
}

@media (max-width: 576px) {
    .service-intro-stats {
        grid-template-columns: 1fr;
    }
}

/* Strategy Steps Section */
.strategy-steps {
    background-color: var(--dark-bg);
    position: relative;
    overflow: hidden;
}

.strategy-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    position: relative;
}

.strategy-cards::before {
    content: '';
    position: absolute;
    top: 35px;
    left: 10%;
    right: 10%;
    height: 2px;
    background: linear-gradient(to right, var(--rose-gold-dark), var(--rose-gold), var(--amber));
    z-index: 1;
    opacity: 0.3;
}

@media (max-width: 992px) {
    .strategy-cards::before {
        display: none;
    }
}

.strategy-card {
    padding: 2.5rem;
    position: relative;
    overflow: hidden;
    transition: all var(--transition-normal);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.strategy-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    border-color: rgba(230, 169, 169, 0.2);
}

.strategy-icon {
    font-size: 2.5rem;
    color: var(--rose-gold);
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 2;
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, rgba(230, 169, 169, 0.1) 0%, rgba(255, 190, 92, 0.05) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1), inset 0 0 15px rgba(230, 169, 169, 0.2);
    transition: all var(--transition-normal);
}

.strategy-card:hover .strategy-icon {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15), inset 0 0 20px rgba(230, 169, 169, 0.3);
    color: var(--rose-gold-light);
}

.strategy-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    position: relative;
    z-index: 2;
}

.strategy-card p {
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 2;
    flex-grow: 1;
}

.strategy-number {
    position: absolute;
    bottom: 1.5rem;
    right: 1.5rem;
    font-size: 3rem;
    font-weight: var(--weight-bold);
    color: rgba(255, 255, 255, 0.03);
    font-family: var(--font-modern);
    z-index: 1;
}

.card-glow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(
        circle at 50% 50%,
        rgba(230, 169, 169, 0.1) 0%,
        rgba(255, 190, 92, 0.05) 50%,
        rgba(0, 0, 0, 0) 70%
    );
    opacity: 0;
    transition: opacity var(--transition-normal);
    z-index: 1;
}

.strategy-card:hover .card-glow {
    opacity: 1;
}

/* Feature Highlight Section */
.feature-highlight {
    background-color: var(--dark-surface);
    position: relative;
    overflow: hidden;
}

.soundwave-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: none;
    opacity: 0;
    display: none; /* Hide completely */
}

.soundwave-bg::before,
.soundwave-bg::after {
    display: none; /* Hide completely */
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 0;
    height: 0;
    border: none;
    animation: none;
}

.soundwave-bg::after {
    display: none; /* Hide completely */
}

@keyframes soundwave {
    0% {
        width: 0;
        height: 0;
        opacity: 1;
    }
    100% {
        width: 1000px;
        height: 1000px;
        opacity: 0;
    }
}

.feature-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.feature-accordion {
    margin-bottom: 2.5rem;
}

.feature-item {
    background: var(--dark-surface-2);
    border-radius: var(--radius-lg);
    margin-bottom: 1rem;
    overflow: hidden;
    transition: all var(--transition-normal);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.feature-item:hover {
    border-color: rgba(230, 169, 169, 0.1);
}

.feature-header {
    display: flex;
    align-items: center;
    padding: 1.5rem;
    cursor: pointer;
    position: relative;
}

.feature-icon {
    width: 40px;
    height: 40px;
    background: rgba(230, 169, 169, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--rose-gold);
    margin-right: 1rem;
    transition: all var(--transition-normal);
}

.feature-item.active .feature-icon,
.feature-header:hover .feature-icon {
    background: linear-gradient(135deg, var(--rose-gold-dark) 0%, var(--rose-gold) 100%);
    color: var(--dark-bg);
    box-shadow: 0 5px 15px rgba(230, 169, 169, 0.3);
}

.feature-header h3 {
    font-size: 1.2rem;
    margin-bottom: 0;
    flex-grow: 1;
}

.feature-toggle {
    position: relative;
    width: 24px;
    height: 24px;
}

.feature-toggle i {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-normal);
}

.feature-toggle .fa-plus {
    opacity: 1;
    transform: rotate(0deg);
}

.feature-toggle .fa-minus {
    opacity: 0;
    transform: rotate(-90deg);
}

.feature-item.active .feature-toggle .fa-plus {
    opacity: 0;
    transform: rotate(90deg);
}

.feature-item.active .feature-toggle .fa-minus {
    opacity: 1;
    transform: rotate(0deg);
}

.feature-body {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: all var(--transition-normal);
}

.feature-item.active .feature-body {
    padding: 0 1.5rem 1.5rem;
    max-height: 200px;
}

.feature-body p {
    color: var(--text-muted);
}

.feature-image {
    position: relative;
}

.image-decoration {
    position: absolute;
    top: -20px;
    left: -20px;
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--rose-gold) 0%, var(--amber) 100%);
    opacity: 0.1;
    border-radius: var(--radius-lg);
    z-index: 1;
}

@media (max-width: 992px) {
    .feature-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .feature-image {
        order: -1;
    }
}

/* Pricing Section */
.pricing-section {
    background-color: var(--dark-bg);
    position: relative;
    overflow: hidden;
}

.pricing-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 3rem;
}

.toggle-label {
    font-size: 1rem;
    color: var(--text-muted);
    margin: 0 1rem;
    cursor: pointer;
    transition: all var(--transition-normal);
}

.toggle-label.active {
    color: var(--text-color);
    font-weight: var(--weight-medium);
}

.switch {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 30px;
}

.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--dark-surface-2);
    transition: all var(--transition-normal);
    border-radius: 30px;
}

.slider:before {
    position: absolute;
    content: "";
    height: 22px;
    width: 22px;
    left: 4px;
    bottom: 4px;
    background: linear-gradient(135deg, var(--rose-gold-dark) 0%, var(--rose-gold) 100%);
    transition: all var(--transition-normal);
    border-radius: 50%;
}

input:checked + .slider {
    background-color: var(--dark-surface-2);
}

input:checked + .slider:before {
    transform: translateX(30px);
}

.pricing-plans {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.pricing-plan {
    padding: 3rem 2rem;
    display: flex;
    flex-direction: column;
    position: relative;
    transition: all var(--transition-normal);
    height: 100%;
}

.pricing-plan.featured {
    border-color: rgba(230, 169, 169, 0.3);
    transform: scale(1.05);
}

.pricing-plan:hover {
    transform: translateY(-10px);
}

.pricing-plan.featured:hover {
    transform: translateY(-10px) scale(1.05);
}

.pricing-plan.featured:hover::before {
    transform: translateY(0) !important;
}

.plan-badge {
    position: absolute;
    top: -10px;
    right: 20px;
    background: transparent;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: var(--radius-full);
    font-size: 0.9rem;
    font-weight: var(--weight-semibold);
    border: 2px solid var(--gold);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    animation: badge-pulse 2s infinite;
}

.plan-badge i {
    font-size: 0.8rem;
    color: var(--gold);
    animation: star-twinkle 1.5s infinite;
}

@keyframes badge-pulse {
    0% {
        box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
    }
    50% {
        box-shadow: 0 5px 25px rgba(212, 175, 55, 0.5);
    }
    100% {
        box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
    }
}

@keyframes star-twinkle {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.7;
        transform: scale(1.2);
    }
}

.plan-header {
    text-align: center;
    margin-bottom: 2rem;
}

.plan-name {
    font-size: 1.5rem;
    font-weight: var(--weight-bold);
    margin-bottom: 1rem;
}

.plan-price {
    font-size: 2.5rem;
    font-weight: var(--weight-bold);
    color: var(--rose-gold);
    margin-bottom: 0.5rem;
}

.plan-description {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.plan-features {
    margin-bottom: 2rem;
    flex-grow: 1;
}

.plan-feature {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.plan-feature i {
    color: var(--rose-gold);
    margin-right: 1rem;
    font-size: 1rem;
}

.plan-feature.disabled i {
    color: var(--text-muted);
}

.plan-feature.disabled span {
    color: var(--text-muted);
    text-decoration: line-through;
}

.btn-outline {
    background: transparent;
    color: var(--rose-gold);
    border: 1px solid var(--rose-gold);
    padding: 0.8rem 2rem;
    border-radius: var(--radius-full);
    font-weight: var(--weight-semibold);
    transition: all var(--transition-normal);
    text-align: center;
    display: inline-block;
    text-decoration: none;
}

.btn-outline:hover {
    background: rgba(230, 169, 169, 0.1);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(230, 169, 169, 0.2);
}

.pricing-note {
    text-align: center;
    color: var(--text-muted);
    font-size: 0.9rem;
}

.pricing-note a {
    color: var(--rose-gold);
    text-decoration: none;
    transition: all var(--transition-normal);
}

.pricing-note a:hover {
    color: var(--rose-gold-light);
    text-decoration: underline;
}

@media (max-width: 992px) {
    .pricing-plans {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .pricing-plan.featured {
        transform: scale(1);
    }
    
    .pricing-plan.featured:hover {
        transform: translateY(-10px);
    }
    
    .pricing-plan.featured:hover::before {
        transform: translateY(0) !important;
    }
}

/* FAQ Section */
.faq-section {
    background-color: var(--dark-surface);
    position: relative;
    overflow: hidden;
}

.faq-categories {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 3rem;
}

.faq-category {
    background: var(--dark-surface-2);
    border: 1px solid rgba(255, 255, 255, 0.05);
    color: var(--text-muted);
    padding: 0.6rem 1.5rem;
    border-radius: var(--radius-full);
    cursor: pointer;
    transition: all var(--transition-normal);
    font-size: 0.9rem;
}

.faq-category:hover {
    background: rgba(230, 169, 169, 0.1);
    color: var(--text-color);
}

.faq-category.active {
    background: linear-gradient(135deg, var(--rose-gold-dark) 0%, var(--rose-gold) 100%);
    color: var(--dark-bg);
    border-color: transparent;
    box-shadow: 0 5px 15px rgba(230, 169, 169, 0.3);
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--dark-surface-2);
    border-radius: var(--radius-lg);
    margin-bottom: 1.5rem;
    overflow: hidden;
    transition: all var(--transition-normal);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.faq-item:hover {
    border-color: rgba(230, 169, 169, 0.1);
}

.faq-question {
    display: flex;
    align-items: center;
    padding: 1.5rem;
    cursor: pointer;
    position: relative;
}

.faq-icon {
    width: 40px;
    height: 40px;
    background: rgba(230, 169, 169, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--rose-gold);
    margin-right: 1rem;
    transition: all var(--transition-normal);
}

.faq-item.active .faq-icon,
.faq-question:hover .faq-icon {
    background: linear-gradient(135deg, var(--rose-gold-dark) 0%, var(--rose-gold) 100%);
    color: var(--dark-bg);
    box-shadow: 0 5px 15px rgba(230, 169, 169, 0.3);
}

.faq-question span {
    font-size: 1.1rem;
    font-weight: var(--weight-medium);
    flex-grow: 1;
}

.faq-toggle {
    position: relative;
    width: 24px;
    height: 24px;
}

.faq-toggle i {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-normal);
}

.faq-toggle .fa-chevron-down {
    opacity: 1;
    transform: rotate(0deg);
}

.faq-toggle .fa-chevron-up {
    opacity: 0;
    transform: rotate(-90deg);
}

.faq-item.active .faq-toggle .fa-chevron-down {
    opacity: 0;
    transform: rotate(90deg);
}

.faq-item.active .faq-toggle .fa-chevron-up {
    opacity: 1;
    transform: rotate(0deg);
}

.faq-toggle.animated i {
    animation: pulse 0.3s;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: all var(--transition-normal);
}

.faq-item.active .faq-answer {
    max-height: 1000px;
}

.faq-answer-inner {
    padding: 0 1.5rem 1.5rem 4rem;
    color: var(--text-muted);
}

.faq-answer-inner p {
    margin-bottom: 1rem;
}

.faq-answer-inner ul {
    margin-left: 1.5rem;
}

.faq-answer-inner li {
    margin-bottom: 0.5rem;
}

@media (max-width: 768px) {
    .faq-categories {
        flex-wrap: nowrap;
        overflow-x: auto;
        padding-bottom: 1rem;
        justify-content: flex-start;
    }
    
    .faq-category {
        flex: 0 0 auto;
    }
}

/* Contact Section */
.contact-section {
    background-color: var(--dark-bg);
    position: relative;
    overflow: hidden;
}

.contact-card {
    background: var(--dark-surface-2);
    border-radius: var(--radius-lg);
    padding: 3rem;
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}

.contact-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(
        circle at top right,
        rgba(230, 169, 169, 0.1) 0%,
        rgba(0, 0, 0, 0) 70%
    );
    pointer-events: none;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.input-wrapper {
    position: relative;
}

.input-wrapper input,
.input-wrapper textarea {
    width: 100%;
    background: var(--dark-surface);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-lg);
    padding: 1rem 1rem 1rem 3rem;
    color: var(--text-color);
    font-family: var(--font-modern);
    font-size: 1rem;
    transition: all var(--transition-normal);
}

.input-wrapper input:focus,
.input-wrapper textarea:focus {
    outline: none;
    border-color: var(--rose-gold);
    background: rgba(230, 169, 169, 0.05);
}

.input-icon {
    position: absolute;
    top: 50%;
    left: 1rem;
    transform: translateY(-50%);
    color: var(--text-muted);
    transition: all var(--transition-normal);
}

.input-wrapper input:focus ~ .input-icon,
.input-wrapper textarea:focus ~ .input-icon {
    color: var(--rose-gold);
}

.input-wrapper textarea ~ .input-icon {
    top: 1.5rem;
}

@media (max-width: 768px) {
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .contact-card {
        padding: 2rem;
    }
}

.btn-submit {
    background: linear-gradient(135deg, var(--rose-gold-dark) 0%, var(--rose-gold) 100%);
    color: var(--dark-bg);
    font-weight: var(--weight-semibold);
    border: none;
    padding: 1rem 2rem;
    border-radius: var(--radius-full);
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(230, 169, 169, 0.3);
    display: inline-block;
    text-align: center;
    width: auto;
}

.btn-submit:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 15px 40px rgba(230, 169, 169, 0.4);
}

.btn-sparkle {
    position: absolute;
    top: -100%;
    left: -100%;
    width: 300%;
    height: 300%;
    background: linear-gradient(
        to right,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0.3) 50%,
        rgba(255, 255, 255, 0) 100%
    );
    transform: rotate(45deg) translateX(-100%);
    animation: sparkle 3s infinite;
}

@keyframes sparkle {
    0% {
        transform: rotate(45deg) translateX(-100%);
    }
    20% {
        transform: rotate(45deg) translateX(100%);
    }
    100% {
        transform: rotate(45deg) translateX(100%);
    }
}

.btn-submit:hover .btn-sparkle {
    animation-duration: 1.5s;
}

/* Footer */
.site-footer {
    background-color: var(--dark-surface-2);
    color: var(--text-muted);
    padding: 5rem 0 2rem;
    position: relative;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    margin-bottom: 3rem;
}

.footer-brand {
    display: flex;
    flex-direction: column;
}

.footer-logo {
    margin-bottom: 1.5rem;
}

.logo-text {
    font-family: var(--font-alt-heading);
    font-size: 1.8rem;
    color: var(--text-color);
    display: block;
    margin-bottom: 0.5rem;
}

.logo-tagline {
    font-size: 0.9rem;
    color: var(--rose-gold);
    letter-spacing: 1px;
}

.footer-description {
    margin-bottom: 2rem;
    line-height: 1.6;
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.social-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--dark-surface);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    transition: all var(--transition-normal);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.social-icon:hover {
    background: linear-gradient(135deg, var(--rose-gold-dark) 0%, var(--rose-gold) 100%);
    color: var(--dark-bg);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(230, 169, 169, 0.3);
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.footer-links-column h3 {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    color: var(--text-color);
}

.footer-links-column ul {
    list-style: none;
    padding: 0;
}

.footer-links-column li {
    margin-bottom: 0.8rem;
}

.footer-links-column a {
    color: var(--text-muted);
    text-decoration: none;
    transition: all var(--transition-normal);
    position: relative;
}

.footer-links-column a::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--rose-gold);
    transition: width var(--transition-normal);
}

.footer-links-column a:hover {
    color: var(--rose-gold);
}

.footer-links-column a:hover::after {
    width: 100%;
}

.footer-newsletter p {
    margin-bottom: 1.5rem;
}

.newsletter-form {
    display: flex;
    gap: 0.5rem;
}

.newsletter-form .input-wrapper {
    flex-grow: 1;
}

.btn-newsletter {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--rose-gold-dark) 0%, var(--rose-gold) 100%);
    color: var(--dark-bg);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all var(--transition-normal);
    box-shadow: 0 5px 15px rgba(230, 169, 169, 0.2);
}

.btn-newsletter:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(230, 169, 169, 0.3);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 0.9rem;
}

.footer-signature {
    color: var(--text-muted);
}

.footer-signature i {
    color: var(--rose-gold);
    margin: 0 0.3rem;
    animation: heartbeat 1.5s infinite;
}

@keyframes heartbeat {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.2);
    }
    100% {
        transform: scale(1);
    }
}

@media (max-width: 992px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .footer-brand {
        text-align: center;
    }
    
    .footer-social {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .footer-links {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-links-column {
        text-align: center;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
}

/* Enhanced Animations and Effects */

/* Hero Device Animation */
.hero-device {
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0% {
        transform: perspective(1000px) rotateY(-10deg) rotateX(5deg) translateY(0px);
    }
    50% {
        transform: perspective(1000px) rotateY(-8deg) rotateX(3deg) translateY(-15px);
    }
    100% {
        transform: perspective(1000px) rotateY(-10deg) rotateX(5deg) translateY(0px);
    }
}

.device-frame::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(
        to right,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0.1) 50%,
        rgba(255, 255, 255, 0) 100%
    );
    transform: skewX(-25deg);
    animation: reflection 8s ease-in-out infinite;
}

@keyframes reflection {
    0% {
        left: -100%;
    }
    30%, 100% {
        left: 200%;
    }
}

/* Typing Effect for Hero Tagline */
.typing-effect {
    display: flex;
    position: relative;
    height: 30px;
    overflow: hidden;
}

.typing-text {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transform: translateY(20px);
    animation: typingAnimation 9s infinite;
}

.typing-text:nth-child(1) {
    animation-delay: 0s;
}

.typing-text:nth-child(2) {
    animation-delay: 3s;
}

.typing-text:nth-child(3) {
    animation-delay: 6s;
}

@keyframes typingAnimation {
    0%, 10% {
        opacity: 0;
        transform: translateY(20px);
    }
    15%, 25% {
        opacity: 1;
        transform: translateY(0);
    }
    30%, 33% {
        opacity: 0;
        transform: translateY(-20px);
    }
    100% {
        opacity: 0;
    }
}

/* Stat Card Hover Glow */
.stat-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(230, 169, 169, 0.3);
    border-color: rgba(230, 169, 169, 0.2);
}

.stat-card:hover .stat-icon {
    transform: scale(1.1);
    color: var(--rose-gold-light);
}

.stat-icon {
    transition: all var(--transition-normal);
}

/* Feature Accordion Glow */
.feature-item.active {
    box-shadow: 0 10px 30px rgba(230, 169, 169, 0.15);
    border-color: rgba(230, 169, 169, 0.2);
}

.feature-item.active::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(
        circle at center,
        rgba(230, 169, 169, 0.1) 0%,
        rgba(0, 0, 0, 0) 70%
    );
    opacity: 0;
    animation: ripple 1s forwards;
    border-radius: var(--radius-lg);
    pointer-events: none;
}

@keyframes ripple {
    0% {
        opacity: 0;
        transform: scale(0.8);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

/* Pricing Checkmarks Animation */
.plan-feature i {
    animation: checkmark-appear 0.5s backwards;
}

.pricing-plan:nth-child(1) .plan-feature:nth-child(1) i { animation-delay: 0.1s; }
.pricing-plan:nth-child(1) .plan-feature:nth-child(2) i { animation-delay: 0.2s; }
.pricing-plan:nth-child(1) .plan-feature:nth-child(3) i { animation-delay: 0.3s; }
.pricing-plan:nth-child(1) .plan-feature:nth-child(4) i { animation-delay: 0.4s; }
.pricing-plan:nth-child(1) .plan-feature:nth-child(5) i { animation-delay: 0.5s; }

.pricing-plan:nth-child(2) .plan-feature:nth-child(1) i { animation-delay: 0.15s; }
.pricing-plan:nth-child(2) .plan-feature:nth-child(2) i { animation-delay: 0.25s; }
.pricing-plan:nth-child(2) .plan-feature:nth-child(3) i { animation-delay: 0.35s; }
.pricing-plan:nth-child(2) .plan-feature:nth-child(4) i { animation-delay: 0.45s; }
.pricing-plan:nth-child(2) .plan-feature:nth-child(5) i { animation-delay: 0.55s; }

.pricing-plan:nth-child(3) .plan-feature:nth-child(1) i { animation-delay: 0.2s; }
.pricing-plan:nth-child(3) .plan-feature:nth-child(2) i { animation-delay: 0.3s; }
.pricing-plan:nth-child(3) .plan-feature:nth-child(3) i { animation-delay: 0.4s; }
.pricing-plan:nth-child(3) .plan-feature:nth-child(4) i { animation-delay: 0.5s; }
.pricing-plan:nth-child(3) .plan-feature:nth-child(5) i { animation-delay: 0.6s; }

@keyframes checkmark-appear {
    0% {
        opacity: 0;
        transform: scale(0) rotate(-45deg);
    }
    100% {
        opacity: 1;
        transform: scale(1) rotate(0);
    }
}

/* Form Input Focus Glow */
.input-wrapper input:focus ~ .input-focus-ring,
.input-wrapper textarea:focus ~ .input-focus-ring {
    opacity: 1;
    transform: scale(1);
}

.input-focus-ring {
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    border-radius: var(--radius-lg);
    border: 2px solid var(--rose-gold);
    opacity: 0;
    transform: scale(0.95);
    transition: all var(--transition-normal);
    pointer-events: none;
    box-shadow: 0 0 15px rgba(230, 169, 169, 0.3);
}

/* FAQ Improvements */
.faq-item.active .faq-question {
    background-color: rgba(230, 169, 169, 0.05);
}

.faq-container {
    position: relative;
}

.faq-container::after {
    content: "Noch Fragen? Schreib mir direkt.";
    display: block;
    text-align: center;
    margin-top: 3rem;
    color: var(--text-muted);
    font-size: 0.9rem;
}

.faq-container::before {
    content: '';
    position: absolute;
    bottom: -50px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
    background: var(--dark-surface-2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--rose-gold);
    font-size: 1.2rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    z-index: 1;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(230, 169, 169, 0.4);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(230, 169, 169, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(230, 169, 169, 0);
    }
}

/* Enhanced Testimonials Section */
.testimonials-section {
    background-color: var(--dark-bg);
    position: relative;
    overflow: hidden;
}

.testimonials-wrapper {
    position: relative;
    padding: 2rem 0;
}

.testimonials-carousel {
    display: flex;
    gap: 2rem;
    overflow-x: auto;
    padding: 1rem 0.5rem;
    scroll-snap-type: x mandatory;
    scrollbar-width: none; /* Firefox */
}

.testimonials-carousel::-webkit-scrollbar {
    display: none; /* Chrome, Safari, Edge */
}

.testimonial {
    flex: 0 0 calc(33.333% - 1.5rem);
    min-width: 300px;
    background: var(--dark-surface-2);
    border-radius: var(--radius-lg);
    padding: 2rem;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all var(--transition-normal);
    scroll-snap-align: start;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.testimonial:hover {
    transform: translateY(-10px);
    border-color: rgba(230, 169, 169, 0.1);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.quote-bg-icon {
    position: absolute;
    top: 1.5rem;
    left: 1.5rem;
    font-size: 4rem;
    color: rgba(230, 169, 169, 0.05);
    z-index: 1;
}

.testimonial-content {
    position: relative;
    z-index: 2;
    margin-bottom: 2rem;
}

.testimonial-content p {
    font-style: italic;
    color: var(--text-muted);
    line-height: 1.6;
}

.testimonial-profile {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.testimonial-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid var(--rose-gold);
    box-shadow: 0 5px 15px rgba(230, 169, 169, 0.2);
}

.testimonial-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-info {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.testimonial-author {
    font-weight: var(--weight-semibold);
    margin-bottom: 0.2rem;
}

.testimonial-role {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.linkedin-badge {
    width: 30px;
    height: 30px;
    background: rgba(230, 169, 169, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--rose-gold);
    transition: all var(--transition-normal);
}

.linkedin-badge:hover {
    background: var(--rose-gold);
    color: var(--dark-bg);
    transform: translateY(-3px);
}

.testimonial-voice-badge {
    position: absolute;
    bottom: -10px;
    right: 20px;
    background: linear-gradient(135deg, var(--dark-surface) 0%, var(--dark-surface-2) 100%);
    color: var(--text-muted);
    padding: 0.3rem 0.8rem;
    border-radius: var(--radius-full);
    font-size: 0.7rem;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

@media (max-width: 992px) {
    .testimonial {
        flex: 0 0 calc(50% - 1rem);
    }
}

@media (max-width: 768px) {
    .testimonial {
        flex: 0 0 100%;
    }
}

/* Futuristic Word Animation */
.word-animation-container {
    overflow: hidden;
}

.word-wrapper {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 0.5rem;
}

.headline-word {
    display: inline-block;
    opacity: 0;
    transform: translateY(30px);
    margin-right: 0.5rem;
    animation: fadeInUp 0.8s forwards;
    color: var(--gold);
    text-shadow: 0 0 10px rgba(245, 220, 168, 0.3);
    font-family: var(--font-heading);
    font-weight: var(--weight-bold);
}

.word-wrapper:nth-child(1) .headline-word:nth-child(1) {
    animation-delay: 0.1s;
}

.word-wrapper:nth-child(1) .headline-word:nth-child(2) {
    animation-delay: 0.2s;
}

.word-wrapper:nth-child(1) .headline-word:nth-child(3) {
    animation-delay: 0.3s;
}

.word-wrapper:nth-child(2) .headline-word:nth-child(1) {
    animation-delay: 0.5s;
}

.word-wrapper:nth-child(2) .headline-word:nth-child(2) {
    animation-delay: 0.6s;
}

.word-wrapper:nth-child(2) .headline-word:nth-child(3) {
    animation-delay: 0.7s;
}

/* Comprehensive Mobile Responsiveness */
@media (max-width: 768px) {
    /* Global adjustments */
    html {
        font-size: 15px;
    }
    
    body {
        font-size: 1rem;
    }
    
    .container {
        width: 95%;
        padding: 0 var(--space-sm);
    }
    
    section {
        padding: var(--space-xl) 0;
    }
    
    /* Typography adjustments */
    h1 {
        font-size: clamp(2rem, 8vw, 2.5rem);
        margin-bottom: var(--space-md);
    }
    
    h2 {
        font-size: clamp(1.6rem, 6vw, 2rem);
        margin-bottom: var(--space-md);
    }
    
    h3 {
        font-size: clamp(1.3rem, 5vw, 1.5rem);
        margin-bottom: var(--space-sm);
    }
    
    p {
        font-size: 1rem;
        margin-bottom: var(--space-sm);
    }
    
    /* Button adjustments */
    .btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.95rem;
    }
    
    .btn-lg {
        padding: 0.9rem 1.8rem;
        font-size: 1rem;
    }
    
    /* Header adjustments */
    .glass-header {
        padding: 0.5rem 0;
    }
    
    header nav {
        padding: 0.8rem 0;
    }
    
    .nav-links.active {
        height: calc(100vh - 60px);
        top: 60px;
    }
    
    /* Hero section adjustments */
    .hero-container {
        padding: 1rem 0;
    }
    
    .hero-content {
        padding: 2rem 1rem;
        text-align: center;
        width: 100%;
        max-width: 600px;
        margin: 0 auto;
    }
    
    .hero-description {
        font-size: 1rem;
        margin: 0 auto 1.5rem;
        max-width: 100%;
    }
    
    .hero-cta-group {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-rating {
        margin-top: 1.5rem;
        margin-left: 0;
    }
    
    /* Hide the phone device on mobile */
    .hero-image-wrapper {
        display: none;
        transition: opacity 0.3s ease, transform 0.3s ease;
    }
    
    /* Animation stopper for resize events */
    .resize-animation-stopper * {
        animation: none !important;
        transition: none !important;
    }
    
    /* Service section adjustments */
    .service-intro-stats {
        grid-template-columns: 1fr 1fr;
        gap: 1rem;
    }
    
    .stat-card {
        padding: 1.2rem;
    }
    
    .stat-number {
        font-size: 1.8rem;
    }
    
    /* Strategy section adjustments */
    .strategy-card {
        padding: 1.5rem;
    }
    
    /* Feature section adjustments */
    .feature-item {
        padding: 1rem;
    }
    
    .feature-header h3 {
        font-size: 1.2rem;
    }
    
    /* Testimonial section adjustments */
    .testimonial {
        padding: 1.5rem;
    }
    
    /* Contact section adjustments */
    .contact-card {
        padding: 1.5rem;
    }
    
    .input-wrapper {
        margin-bottom: 1rem;
    }
    
    /* Footer adjustments */
    .footer-content {
        padding: 2rem 0;
    }
    
    .footer-links {
        gap: 1.5rem;
    }
}

/* Extra small devices */
@media (max-width: 576px) {
    /* Global adjustments */
    html {
        font-size: 14px;
    }
    
    .container {
        width: 100%;
        padding: 0 1rem;
    }
    
    section {
        padding: var(--space-lg) 0;
    }
    
    /* Header adjustments */
    .header-logo {
        height: 35px;
    }
    
    /* Hero section adjustments */
    .hero {
        min-height: 100vh;
        height: auto;
        padding-top: 80px;
        padding-bottom: 2rem;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .hero-overlay {
        opacity: 0.7;
    }
    
    .hero-tagline {
        font-size: 1rem;
    }
    
    .animated-heading {
        font-size: 1.8rem;
        margin-bottom: 1.5rem;
    }
    
    .hero-cta-group .btn {
        width: 100%;
    }
    
    .scroll-indicator {
        bottom: 10px;
    }
    
    /* Service section adjustments */
    .service-intro-stats {
        grid-template-columns: 1fr;
    }
    
    /* Strategy section adjustments */
    .strategy-number {
        font-size: 2rem;
    }
    
    /* Feature section adjustments */
    .feature-accordion {
        margin-top: 1.5rem;
    }
    
    /* Pricing section adjustments */
    .pricing-plan {
        padding: 1.5rem;
    }
    
    /* Contact section adjustments */
    .form-row {
        flex-direction: column;
    }
    
    .form-group {
        width: 100%;
    }
    
    /* Sticky button adjustments */
    .btn-sticky {
        padding: 0.7rem 1.2rem;
        font-size: 0.9rem;
        right: 10px;
        bottom: 10px;
    }
}

.word-wrapper:nth-child(2) .headline-word:nth-child(4) {
    animation-delay: 0.8s;
}

.word-wrapper:nth-child(2) .headline-word:nth-child(5) {
    animation-delay: 0.9s;
}