/* Premium Tailor Management System Landing Page */
/* Luxury Fashion SaaS Design - Dark Navy, Gold Accents - GOAT Level Design */

:root {
    /* Luxury Color Palette - Enhanced */
    --navy-dark: #0a192f;
    --navy-medium: #112240;
    --navy-light: #233554;
    --gold-primary: #d4af37;
    --gold-light: #f4e4a6;
    --gold-dark: #b8941f;
    --gold-gradient: linear-gradient(135deg, #d4af37 0%, #f4e4a6 100%);
    --white: #ffffff;
    --off-white: #f8f9fa;
    --gray-light: #e9ecef;
    --gray-medium: #adb5bd;
    --gray-dark: #495057;
    --success: #28a745;
    --info: #17a2b8;
    --warning: #ffc107;
    --danger: #dc3545;
    --gradient-overlay: linear-gradient(135deg, rgba(10, 25, 47, 0.95) 0%, rgba(17, 34, 64, 0.95) 100%);

    /* Typography - Enhanced */
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-secondary: 'Playfair Display', Georgia, serif;
    --font-display: 'Playfair Display', Georgia, serif;

    /* Spacing - Enhanced */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 3rem;
    --spacing-xl: 5rem;
    --spacing-xxl: 8rem;
    --spacing-section: 6rem;

    /* Shadows & Effects - Premium */
    --shadow-sm: 0 2px 8px rgba(10, 25, 47, 0.08);
    --shadow-md: 0 8px 30px rgba(10, 25, 47, 0.12);
    --shadow-lg: 0 20px 60px rgba(10, 25, 47, 0.15);
    --shadow-xl: 0 30px 80px rgba(10, 25, 47, 0.2);
    --shadow-gold: 0 8px 30px rgba(212, 175, 55, 0.25);
    --shadow-gold-lg: 0 15px 50px rgba(212, 175, 55, 0.35);
    --glass-bg: rgba(255, 255, 255, 0.08);
    --glass-border: rgba(255, 255, 255, 0.15);
    --glass-blur: blur(20px);

    /* Transitions - Enhanced */
    --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 - Enhanced */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 30px;
    --radius-xxl: 40px;
}

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

html {
    scroll-behavior: smooth;
    height: 100%;
    overflow-y: auto;
}

body {
    font-family: var(--font-primary);
    background-color: var(--navy-dark);
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.6;
    overflow-x: hidden;
    overflow-y: auto;
    min-height: 100%;
    width: 100%;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    position: relative;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-secondary);
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 1.25rem;
    color: var(--white);
}

h1 {
    font-size: 3.5rem;
    letter-spacing: -0.02em;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

h2 {
    font-size: 2.5rem;
    position: relative;
    display: inline-block;
    margin-bottom: 2rem;
}

h2::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--gold-primary), var(--gold-light));
    border-radius: 2px;
}

h3 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
}

h4 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

h5 {
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
}

h6 {
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

p {
    margin-bottom: 1.25rem;
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.0625rem;
    line-height: 1.7;
}

.lead {
    font-size: 1.25rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: 2rem;
}

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

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

/* Layout */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

.section {
    padding: var(--spacing-xl) 0;
}

.section-lg {
    padding: var(--spacing-xxl) 0;
}

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

.section-dark h1,
.section-dark h2,
.section-dark h3,
.section-dark h4,
.section-dark h5,
.section-dark h6 {
    color: var(--white);
}

.section-dark p {
    color: rgba(255, 255, 255, 0.85);
}

.section-dark .lead {
    color: rgba(255, 255, 255, 0.8);
}

/* ========================================
   ANNOUNCEMENT BAR
   ======================================== */
.announcement-bar {
    background: linear-gradient(90deg, var(--navy-dark), rgba(212, 175, 55, 0.15), var(--navy-dark));
    padding: 0.5rem 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1002;
    overflow: hidden;
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.4s ease;
}

.announcement-bar.hidden {
    transform: translateY(-100%);
    opacity: 0;
}

.announcement-bar::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 200%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.08), transparent);
    animation: shimmer 4s infinite;
}

.announcement-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    color: var(--white);
    font-size: 0.8125rem;
    font-weight: 400;
    position: relative;
    z-index: 1;
}

.announcement-content i {
    color: var(--gold-primary);
    font-size: 0.875rem;
}

.announcement-content strong {
    color: var(--gold-primary);
    font-weight: 600;
}

.announcement-cta {
    color: var(--gold-primary);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.8125rem;
    margin-left: 0.5rem;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
}

.announcement-cta:hover {
    color: var(--gold-light);
    gap: 0.5rem;
}

/* ========================================
   NAVIGATION - PREMIUM REDESIGN
   ======================================== */
.navbar-premium {
    position: fixed;
    top: 36px;
    left: 0;
    right: 0;
    background: rgba(10, 25, 47, 0.88);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(212, 175, 55, 0.12);
    z-index: 1001;
    padding: 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.navbar-premium.scrolled {
    top: 0;
    background: rgba(10, 25, 47, 0.96);
    box-shadow:
        0 4px 20px rgba(0, 0, 0, 0.3),
        0 1px 3px rgba(0, 0, 0, 0.15);
    border-bottom-color: rgba(212, 175, 55, 0.2);
}

.navbar-premium.scrolled .nav-logo-icon {
    transform: scale(0.9);
    box-shadow: 0 2px 8px rgba(212, 175, 55, 0.3);
}

.navbar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 72px;
    transition: height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.navbar-premium.scrolled .navbar-content {
    height: 64px;
}

/* Logo */
.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    z-index: 1001;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-logo:hover {
    transform: scale(1.03);
}

.nav-logo-icon {
    width: 42px;
    height: 42px;
    background: linear-gradient(135deg, var(--gold-primary), var(--gold-dark));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.125rem;
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.25);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.nav-logo-icon::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent 40%, rgba(255, 255, 255, 0.15) 50%, transparent 60%);
    transition: transform 0.6s ease;
    transform: translateX(-100%);
}

.nav-logo:hover .nav-logo-icon::after {
    transform: translateX(100%);
}

.nav-logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.logo-name {
    font-size: 1.375rem;
    font-weight: 800;
    color: var(--white);
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.logo-tagline {
    font-size: 0.625rem;
    font-weight: 500;
    color: var(--gold-primary);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    line-height: 1;
    margin-top: 2px;
}

/* Desktop Navigation Menu */
.nav-menu {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.nav-menu-links {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.nav-link {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9375rem;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    position: relative;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.nav-link-icon {
    font-size: 0.75rem;
    color: var(--gold-primary);
    opacity: 0;
    transform: translateX(-4px);
    transition: all 0.3s ease;
}

.nav-link:hover .nav-link-icon {
    opacity: 1;
    transform: translateX(0);
}

.nav-link:hover {
    color: var(--gold-primary);
    background: rgba(212, 175, 55, 0.1);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--gold-gradient);
    border-radius: 1px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    transform: translateX(-50%);
}

.nav-link:hover::after {
    width: 60%;
}

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

.nav-link.active::after {
    width: 60%;
}

/* Mobile Menu Footer (hidden on desktop) */
.nav-menu-footer {
    display: none;
}

.nav-menu-actions {
    display: none;
}

/* Right Side Actions */
.nav-actions {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    z-index: 1001;
}

.nav-signin {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9375rem;
    padding: 0.5rem 0.75rem;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    transition: all 0.3s ease;
}

.nav-signin i {
    font-size: 0.875rem;
    color: var(--gold-primary);
}

.nav-signin:hover {
    color: var(--gold-primary);
    border-color: rgba(212, 175, 55, 0.3);
    background: rgba(212, 175, 55, 0.08);
}

.theme-toggle {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    background: rgba(255, 255, 255, 0.06);
    color: var(--gold-primary);
    cursor: pointer;
    transition: background var(--transition-normal), border-color var(--transition-normal), color var(--transition-normal), transform var(--transition-normal);
}

.theme-toggle:hover {
    background: rgba(212, 175, 55, 0.1);
    border-color: rgba(212, 175, 55, 0.3);
    transform: translateY(-2px);
}

.theme-icon {
    position: absolute;
    font-size: 1rem;
    transition: opacity var(--transition-fast), transform var(--transition-fast);
}

.theme-icon-light,
html[data-theme="light"] .theme-icon-dark {
    opacity: 0;
    transform: scale(0.75) rotate(-20deg);
}

.theme-icon-dark,
html[data-theme="light"] .theme-icon-light {
    opacity: 1;
    transform: scale(1) rotate(0);
}

.btn-nav {
    padding: 0.625rem 1.5rem;
    font-size: 0.875rem;
    font-weight: 600;
    border-radius: 10px;
    letter-spacing: 0.3px;
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.25);
}

.btn-nav:hover {
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.35);
    transform: translateY(-2px);
}

/* Hamburger Button (hidden on desktop) */
.nav-hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 44px;
    height: 44px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
    -webkit-tap-highlight-color: transparent;
}

.hamburger-line {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    transform-origin: center;
}

.hamburger-line-1 {
    transform: translateY(-6px);
}

.hamburger-line-3 {
    transform: translateY(6px);
}

/* Hamburger active state */
.nav-hamburger.active .hamburger-line-1 {
    transform: translateY(0) rotate(45deg);
    background: var(--gold-primary);
}

.nav-hamburger.active .hamburger-line-2 {
    opacity: 0;
    transform: scaleX(0);
}

.nav-hamburger.active .hamburger-line-3 {
    transform: translateY(0) rotate(-45deg);
    background: var(--gold-primary);
}

/* Mobile Overlay */
.nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(10, 25, 47, 0.5);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.35s ease;
}

.nav-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Body scroll lock when mobile menu is open */
body.menu-open {
    overflow: hidden !important;
    touch-action: none;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.875rem 2rem;
    font-weight: 600;
    border-radius: var(--radius-md);
    border: none;
    cursor: pointer;
    transition: var(--transition-normal);
    text-decoration: none;
    font-size: 1rem;
    gap: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--gold-primary), var(--gold-dark));
    color: var(--white);
    box-shadow: var(--shadow-gold);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(212, 175, 55, 0.4);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

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

.btn-light {
    background: var(--white);
    color: var(--navy-dark);
    border: 2px solid var(--white);
}

.btn-light:hover {
    background: transparent;
    color: var(--white);
    transform: translateY(-2px);
}

.btn-large {
    padding: 1.25rem 3rem;
    font-size: 1.125rem;
}

/* Hero Section - Professional Redesign */
.hero-premium {
    padding-top: 8.5rem;
    padding-bottom: 4rem;
    background: linear-gradient(160deg, #0a192f 0%, #112240 40%, #0d1b3e 100%);
    color: var(--white);
    position: relative;
    overflow: hidden;
    min-height: 92vh;
    display: flex;
    align-items: center;
}

/* Animated Background Elements */
.hero-bg-elements {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
}

.hero-grid-pattern {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(212, 175, 55, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(212, 175, 55, 0.03) 1px, transparent 1px);
    background-size: 60px 60px;
}

.hero-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
}

.hero-glow-1 {
    top: -20%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.12), transparent 70%);
}

.hero-glow-2 {
    bottom: -15%;
    left: -5%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(23, 162, 184, 0.08), transparent 70%);
}

.hero-particle {
    position: absolute;
    left: var(--x);
    top: var(--y);
    width: 4px;
    height: 4px;
    background: var(--gold-primary);
    border-radius: 50%;
    opacity: 0;
    animation: particle-float 6s var(--delay) infinite;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 3;
}

/* Hero Badge */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.25);
    border-radius: 100px;
    padding: 0.5rem 1rem;
    margin-bottom: 1.75rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.hero-badge:hover {
    background: rgba(212, 175, 55, 0.18);
    border-color: rgba(212, 175, 55, 0.4);
    transform: translateY(-1px);
}

.hero-badge-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    background: linear-gradient(135deg, var(--gold-primary), var(--gold-dark));
    border-radius: 50%;
    font-size: 0.65rem;
    color: var(--white);
}

.hero-badge-text {
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    color: var(--gold-light);
}

.hero-badge-arrow {
    font-size: 0.7rem;
    color: var(--gold-primary);
    transition: transform 0.3s ease;
}

.hero-badge:hover .hero-badge-arrow {
    transform: translateX(3px);
}

/* Hero Title */
.hero-title {
    font-family: var(--font-display);
    font-size: 3.8rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.hero-title-line {
    display: block;
    color: var(--white);
}

.hero-title-accent {
    background: linear-gradient(135deg, var(--gold-primary) 0%, var(--gold-light) 50%, var(--gold-primary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Hero Description */
.hero-description {
    font-size: 1.15rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 2rem;
    max-width: 520px;
}

/* Hero CTA Group */
.hero-cta-group {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2.5rem;
}

.btn-ghost {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--white);
    padding: 0.875rem 1.75rem;
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
}

.btn-ghost:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.35);
    transform: translateY(-2px);
}

.btn-content {
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.play-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    font-size: 0.7rem;
}

/* Hero Trust Section */
.hero-trust {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.hero-trust-avatars {
    display: flex;
}

.trust-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--navy-light), var(--navy-medium));
    border: 2px solid var(--navy-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    color: var(--gold-light);
    margin-left: calc(var(--i) * -8px);
}

.trust-avatar:first-child {
    margin-left: 0;
}

.hero-trust-text {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
}

.trust-stars {
    display: flex;
    gap: 2px;
    color: var(--gold-primary);
    font-size: 0.7rem;
}

.hero-trust-text span {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.6);
}

.hero-trust-text strong {
    color: var(--white);
}

/* Hero Visual / Mockup */
.hero-visual {
    position: relative;
}

.hero-mockup-wrapper {
    position: relative;
}

/* Floating Cards */
.floating-card {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: rgba(17, 34, 64, 0.9);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(212, 175, 55, 0.15);
    border-radius: 12px;
    padding: 0.75rem 1rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    z-index: 10;
    animation: float 4s ease-in-out infinite;
}

.floating-card-1 {
    top: 10%;
    right: -20px;
    animation-delay: 0s;
}

.floating-card-2 {
    bottom: 30%;
    left: -30px;
    animation-delay: 1.5s;
}

.floating-card-3 {
    bottom: 5%;
    right: 10%;
    animation-delay: 3s;
}

.floating-card-icon {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    background: linear-gradient(135deg, var(--gold-primary), var(--gold-dark));
    color: var(--white);
}

.floating-card-icon.success {
    background: linear-gradient(135deg, #28a745, #20863a);
}

.floating-card-icon.warning {
    background: linear-gradient(135deg, #ffc107, #e0a800);
    color: var(--navy-dark);
}

.floating-card-info {
    display: flex;
    flex-direction: column;
}

.floating-card-value {
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--white);
}

.floating-card-label {
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.6);
}

/* Dashboard Mockup - Professional Redesign */
.dashboard-mockup {
    background: linear-gradient(145deg, var(--navy-medium), var(--navy-light));
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(212, 175, 55, 0.12);
    box-shadow:
        0 25px 60px rgba(0, 0, 0, 0.4),
        0 0 0 1px rgba(212, 175, 55, 0.1);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.4s ease;
}

.dashboard-mockup:hover {
    transform: translateY(-5px);
    box-shadow:
        0 35px 70px rgba(0, 0, 0, 0.35),
        0 0 0 1px rgba(255, 255, 255, 0.15);
}

/* Dashboard Topbar */
.dashboard-topbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.dashboard-dots {
    display: flex;
    gap: 6px;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.dot-red { background: #ff5f57; }
.dot-yellow { background: #febc2e; }
.dot-green { background: #28c840; }

.dashboard-url {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    padding: 0.3rem 0.75rem;
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.5);
}

.dashboard-url i {
    font-size: 0.6rem;
    color: #28a745;
}

.dashboard-live {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.7rem;
    font-weight: 600;
    color: #28a745;
}

.live-dot {
    width: 6px;
    height: 6px;
    background: #28a745;
    border-radius: 50%;
    animation: pulse-gold 2s infinite;
}

/* Dashboard Body */
.dashboard-body {
    display: flex;
    min-height: 320px;
}

.dashboard-sidebar {
    width: 48px;
    background: var(--navy-dark);
    padding: 0.75rem 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.sidebar-item {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.75rem;
    cursor: pointer;
    transition: all 0.2s ease;
}

.sidebar-item.active {
    background: var(--gold-primary);
    color: var(--white);
}

.sidebar-item:hover {
    color: rgba(255, 255, 255, 0.8);
    background: rgba(255, 255, 255, 0.08);
}

/* Dashboard Main Content */
.dashboard-main {
    flex: 1;
    padding: 1rem;
    overflow: hidden;
}

.dashboard-stats-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.dash-stat-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 10px;
    padding: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    position: relative;
}

.dash-stat-icon {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    color: var(--white);
}

.dash-stat-icon.blue { background: linear-gradient(135deg, #4a90d9, #357abd); }
.dash-stat-icon.green { background: linear-gradient(135deg, #28a745, #20863a); }
.dash-stat-icon.gold { background: linear-gradient(135deg, var(--gold-primary), var(--gold-dark)); }

.dash-stat-info {
    display: flex;
    flex-direction: column;
}

.dash-stat-number {
    font-weight: 700;
    font-size: 0.85rem;
    color: var(--white);
}

.dash-stat-label {
    font-size: 0.6rem;
    color: rgba(255, 255, 255, 0.5);
}

.dash-stat-trend {
    position: absolute;
    top: 6px;
    right: 8px;
    font-size: 0.55rem;
    font-weight: 600;
}

.dash-stat-trend.up {
    color: #28a745;
}

/* Dashboard Chart Area */
.dashboard-chart-area {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 10px;
    padding: 0.75rem;
    margin-bottom: 0.75rem;
}

.chart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.75rem;
}

.chart-title {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--white);
}

.chart-period {
    font-size: 0.6rem;
    color: rgba(255, 255, 255, 0.5);
}

.chart-bars {
    display: flex;
    align-items: flex-end;
    gap: 6px;
    height: 80px;
}

.chart-bar {
    flex: 1;
    height: var(--height);
    background: linear-gradient(180deg, var(--gold-primary), rgba(212, 175, 55, 0.4));
    border-radius: 4px 4px 0 0;
    position: relative;
    transition: all 0.3s ease;
    min-height: 8px;
}

.chart-bar.active {
    background: linear-gradient(180deg, var(--gold-primary), var(--gold-dark));
    box-shadow: 0 0 12px rgba(212, 175, 55, 0.3);
}

.chart-bar span {
    position: absolute;
    bottom: -16px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.5rem;
    color: rgba(255, 255, 255, 0.4);
    white-space: nowrap;
}

/* Dashboard Recent Orders */
.dashboard-recent-orders {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 10px;
    padding: 0.75rem;
}

.recent-title {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 0.5rem;
    display: block;
}

.recent-order-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.recent-order-item:last-child {
    border-bottom: none;
}

.order-info {
    display: flex;
    flex-direction: column;
}

.order-name {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--white);
}

.order-customer {
    font-size: 0.6rem;
    color: rgba(255, 255, 255, 0.5);
}

.order-status {
    font-size: 0.6rem;
    font-weight: 600;
    padding: 0.2rem 0.5rem;
    border-radius: 100px;
}

.order-status.progress {
    background: rgba(23, 162, 184, 0.1);
    color: #17a2b8;
}

.order-status.pending {
    background: rgba(255, 193, 7, 0.1);
    color: #e0a800;
}

.order-status.completed {
    background: rgba(40, 167, 69, 0.1);
    color: #28a745;
}

/* Hero Bottom Stats */
.hero-bottom-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3rem;
    margin-top: 4rem;
    padding-top: 2.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    position: relative;
    z-index: 3;
}

.hero-stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
}

.hero-stat-number {
    font-family: var(--font-display);
    font-size: 2.25rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--white), var(--gold-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.hero-stat-suffix {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--white), var(--gold-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-stat-label {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
    font-weight: 500;
}

.hero-stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
}

/* ========================================
   Features Section - Professional Design
   ======================================== */
.features-section {
    position: relative;
    padding: 7rem 0;
    background: linear-gradient(180deg, var(--navy-dark) 0%, var(--navy-medium) 50%, var(--navy-dark) 100%);
    overflow: hidden;
}

.features-bg-decoration {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
}

.features-bg-circle {
    position: absolute;
    border-radius: 50%;
    opacity: 0.04;
}

.features-bg-circle-1 {
    width: 600px;
    height: 600px;
    background: var(--gold-primary);
    top: -200px;
    right: -150px;
}

.features-bg-circle-2 {
    width: 400px;
    height: 400px;
    background: var(--navy-dark);
    bottom: -100px;
    left: -100px;
}

.features-bg-circle-3 {
    width: 300px;
    height: 300px;
    background: var(--gold-primary);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.features-section .container {
    position: relative;
    z-index: 1;
}

/* Features Header */
.features-header {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 4rem;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.features-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1.25rem;
    background: rgba(212, 175, 55, 0.08);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 100px;
    color: var(--gold-dark);
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    margin-bottom: 1.5rem;
}

.features-badge i {
    font-size: 0.8rem;
}

.features-title {
    font-size: 3rem;
    font-weight: 800;
    color: var(--white);
    line-height: 1.15;
    margin-bottom: 1.25rem;
    letter-spacing: -0.02em;
    display: block;
}

.features-title::after {
    display: none;
}

.text-gradient-gold {
    background: linear-gradient(135deg, var(--gold-primary), var(--gold-dark), #b8860b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.features-subtitle {
    font-size: 1.125rem;
    color: var(--gray-light);
    line-height: 1.7;
    max-width: 600px;
    margin: 0 auto;
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

/* Feature Card */
.feature-card {
    position: relative;
    background: linear-gradient(145deg, var(--navy-medium), var(--navy-light));
    border-radius: 16px;
    padding: 2rem;
    border: 1px solid rgba(212, 175, 55, 0.1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.feature-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 8px 30px rgba(212, 175, 55, 0.12), 0 2px 8px rgba(0, 0, 0, 0.06);
    border-color: rgba(212, 175, 55, 0.25);
}

.feature-card-accent {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--gold-primary), var(--gold-dark));
    opacity: 0;
    transition: opacity 0.4s ease;
}

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

.feature-card-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1), rgba(212, 175, 55, 0.05));
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
    color: var(--gold-dark);
    font-size: 1.375rem;
    transition: all 0.4s ease;
    border: 1px solid rgba(212, 175, 55, 0.12);
}

.feature-card:hover .feature-card-icon {
    background: linear-gradient(135deg, var(--gold-primary), var(--gold-dark));
    color: var(--white);
    border-color: transparent;
    transform: scale(1.05);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.feature-card-content {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.feature-card-title {
    font-size: 1.1875rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 0.75rem;
    line-height: 1.3;
}

.feature-card-desc {
    font-size: 0.9375rem;
    color: var(--gray-light);
    line-height: 1.65;
    margin-bottom: 1.25rem;
    flex: 1;
}

.feature-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: auto;
}

.feature-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.35rem 0.75rem;
    background: rgba(212, 175, 55, 0.06);
    border: 1px solid rgba(212, 175, 55, 0.12);
    border-radius: 100px;
    font-size: 0.78rem;
    font-weight: 500;
    color: var(--gold-dark);
    transition: all 0.3s ease;
    white-space: nowrap;
}

.feature-tag i {
    font-size: 0.65rem;
    color: var(--gold-primary);
}

.feature-card:hover .feature-tag {
    background: rgba(212, 175, 55, 0.1);
    border-color: rgba(212, 175, 55, 0.2);
}

/* Benefits Section */
.benefits-section {
    position: relative;
    padding: 6rem 0;
    background: linear-gradient(180deg, var(--navy-medium) 0%, var(--navy-dark) 50%, var(--navy-medium) 100%);
    overflow: hidden;
}

.benefits-bg-decoration {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.benefits-bg-circle {
    position: absolute;
    border-radius: 50%;
    opacity: 0.04;
}

.benefits-bg-circle-1 {
    width: 500px;
    height: 500px;
    background: var(--gold-primary);
    top: -150px;
    right: -100px;
}

.benefits-bg-circle-2 {
    width: 400px;
    height: 400px;
    background: var(--navy-dark);
    bottom: -100px;
    left: -100px;
}

.benefits-header {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 4rem;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.benefits-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1.25rem;
    background: rgba(212, 175, 55, 0.08);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 100px;
    color: var(--gold-dark);
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    margin-bottom: 1.5rem;
}

.benefits-badge i {
    font-size: 0.8rem;
}

.benefits-title {
    font-size: 3rem;
    font-weight: 800;
    color: var(--white);
    line-height: 1.15;
    margin-bottom: 1.25rem;
    letter-spacing: -0.02em;
    display: block;
}

.benefits-title::after {
    display: none;
}

.benefits-subtitle {
    font-size: 1.125rem;
    color: var(--gray-light);
    line-height: 1.7;
    max-width: 600px;
    margin: 0 auto;
}

.benefits-stats {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    padding: 2rem;
    background: linear-gradient(145deg, var(--navy-medium), var(--navy-light));
    border-radius: 16px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(212, 175, 55, 0.12);
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.benefit-stat {
    text-align: center;
}

.benefit-stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
}

.benefit-stat-label {
    display: block;
    font-size: 0.8125rem;
    color: var(--gray-light);
    font-weight: 500;
    margin-top: 0.25rem;
}

.benefit-stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(212, 175, 55, 0.2);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.benefit-card {
    position: relative;
    background: linear-gradient(145deg, var(--navy-medium), var(--navy-light));
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(212, 175, 55, 0.1);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    overflow: hidden;
}

.benefit-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(10, 25, 47, 0.1);
    border-color: rgba(212, 175, 55, 0.15);
}

.benefit-card-accent {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gold-gradient);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.benefit-card:hover .benefit-card-accent {
    transform: scaleX(1);
}

.benefit-card-icon {
    width: 52px;
    height: 52px;
    border-radius: 12px;
    background: rgba(212, 175, 55, 0.08);
    border: 1px solid rgba(212, 175, 55, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    color: var(--gold-primary);
    margin-bottom: 1.25rem;
    transition: all 0.3s ease;
}

.benefit-card:hover .benefit-card-icon {
    background: rgba(212, 175, 55, 0.12);
    transform: scale(1.05);
}

.benefit-card-content {
    position: relative;
    z-index: 1;
}

.benefit-card-title {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 0.625rem;
}

.benefit-card-desc {
    font-size: 0.9375rem;
    color: var(--gray-light);
    line-height: 1.65;
}

/* Testimonials Section */
.testimonials-section {
    padding: 6rem 0;
    background: linear-gradient(180deg, var(--navy-dark) 0%, var(--navy-medium) 50%, var(--navy-dark) 100%);
    position: relative;
    overflow: hidden;
}

.testimonials-bg-decoration {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 0;
}

.testimonials-bg-circle {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.06), transparent 70%);
}

.testimonials-bg-circle:nth-child(1) {
    width: 400px;
    height: 400px;
    top: -100px;
    right: -100px;
}

.testimonials-bg-circle:nth-child(2) {
    width: 300px;
    height: 300px;
    bottom: -80px;
    left: -80px;
}

.testimonials-header {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 4rem;
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.testimonials-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1.25rem;
    background: rgba(212, 175, 55, 0.08);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 100px;
    color: var(--gold-dark);
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    margin-bottom: 1.5rem;
}

.testimonials-badge i {
    font-size: 0.8rem;
}

.testimonials-title {
    font-size: 3rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 1.25rem;
    line-height: 1.15;
    letter-spacing: -0.02em;
    display: block;
}

.testimonials-title::after {
    display: none;
}

.testimonials-subtitle {
    font-size: 1.125rem;
    color: var(--gray-light);
    line-height: 1.7;
    max-width: 600px;
    margin: 0 auto;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    position: relative;
    z-index: 1;
}

.testimonial-card {
    background: linear-gradient(145deg, var(--navy-medium), var(--navy-light));
    border-radius: var(--radius-lg);
    padding: 2rem;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(212, 175, 55, 0.1);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1),
                box-shadow 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.testimonial-card::before {
    content: '\201C';
    position: absolute;
    top: 12px;
    right: 20px;
    font-size: 5rem;
    font-family: 'Playfair Display', serif;
    color: var(--gold-primary);
    opacity: 0.08;
    line-height: 1;
    pointer-events: none;
}

.testimonial-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(10, 25, 47, 0.1);
}

.testimonial-card-rating {
    display: flex;
    gap: 0.2rem;
    margin-bottom: 1.25rem;
}

.testimonial-card-rating i {
    color: #f59e0b;
    font-size: 0.9375rem;
}

.testimonial-card-content {
    font-size: 1.0625rem;
    font-style: italic;
    color: var(--gray-light);
    line-height: 1.75;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}

.testimonial-card-author {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding-top: 1.25rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.testimonial-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold-primary), var(--gold-dark));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: 700;
    font-size: 1rem;
    flex-shrink: 0;
    box-shadow: 0 2px 8px rgba(212, 175, 55, 0.3);
}

.testimonial-author-info {
    flex: 1;
}

.testimonial-author-info h5 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 0.2rem;
}

.testimonial-author-info p {
    font-size: 0.875rem;
    color: var(--gray-light);
    margin: 0;
}

.testimonial-verified {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    font-size: 0.75rem;
    color: #10b981;
    font-weight: 600;
    margin-top: 0.25rem;
}

.testimonial-verified i {
    font-size: 0.8125rem;
}

/* Pricing Section */
.pricing-section {
    padding: 6rem 0;
    background: linear-gradient(180deg, var(--navy-medium) 0%, var(--navy-dark) 50%, var(--navy-medium) 100%);
    position: relative;
    overflow: hidden;
}

.pricing-bg-decoration {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 0;
}

.pricing-bg-circle {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.05), transparent 70%);
}

.pricing-bg-circle:nth-child(1) {
    width: 500px;
    height: 500px;
    top: -150px;
    left: -150px;
}

.pricing-bg-circle:nth-child(2) {
    width: 350px;
    height: 350px;
    bottom: -100px;
    right: -100px;
}

.pricing-header {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 4rem;
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.pricing-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1.25rem;
    background: rgba(212, 175, 55, 0.08);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 100px;
    color: var(--gold-dark);
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    margin-bottom: 1.5rem;
}

.pricing-badge i {
    font-size: 0.8rem;
}

.pricing-title {
    font-size: 3rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 1.25rem;
    line-height: 1.15;
    letter-spacing: -0.02em;
    display: block;
}

.pricing-title::after {
    display: none;
}

.pricing-subtitle {
    font-size: 1.125rem;
    color: var(--gray-light);
    line-height: 1.7;
    max-width: 600px;
    margin: 0 auto;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1.5rem;
    align-items: stretch;
    position: relative;
    z-index: 1;
}

.pricing-trial-card {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    max-width: 920px;
    margin: 0 auto 2rem;
    padding: 1.5rem;
    border: 1px solid rgba(212, 175, 55, 0.28);
    border-radius: var(--radius-lg);
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.14), rgba(17, 34, 64, 0.88));
    box-shadow: 0 10px 32px rgba(10, 25, 47, 0.18);
    position: relative;
    z-index: 1;
}

.pricing-trial-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: var(--gold-gradient);
    color: var(--navy-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.35rem;
    flex-shrink: 0;
}

.pricing-trial-copy {
    flex: 1;
}

.pricing-trial-label {
    display: inline-flex;
    color: var(--gold-primary);
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 0.35rem;
}

.pricing-trial-copy h3 {
    color: var(--white);
    font-size: 1.5rem;
    margin-bottom: 0.35rem;
}

.pricing-trial-copy p {
    color: var(--gray-light);
    margin: 0;
}

.pricing-card {
    background: linear-gradient(145deg, var(--navy-medium), var(--navy-light));
    border-radius: var(--radius-lg);
    padding: 2.5rem 2rem;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.2);
    border: 2px solid rgba(212, 175, 55, 0.1);
    text-align: center;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1),
                box-shadow 0.4s cubic-bezier(0.4, 0, 0.2, 1),
                border-color 0.4s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

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

.pricing-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(10, 25, 47, 0.1);
    border-color: rgba(212, 175, 55, 0.15);
}

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

.pricing-card-featured {
    border-color: var(--gold-primary);
    box-shadow: 0 8px 32px rgba(212, 175, 55, 0.2);
    transform: scale(1.03);
    background: linear-gradient(145deg, rgba(212, 175, 55, 0.08), var(--navy-medium));
}

.pricing-card-featured::before {
    transform: scaleX(1);
}

.pricing-card-featured:hover {
    transform: scale(1.03) translateY(-6px);
    box-shadow: 0 16px 48px rgba(212, 175, 55, 0.2);
}

.pricing-popular-badge {
    position: absolute;
    top: 16px;
    right: -32px;
    background: var(--gold-gradient);
    color: var(--navy-dark);
    padding: 0.35rem 2.5rem;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    transform: rotate(45deg);
    box-shadow: 0 2px 8px rgba(212, 175, 55, 0.3);
}

.pricing-card-header {
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.pricing-card-plan {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 1rem;
}

.pricing-card-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.15rem;
    margin-bottom: 0.5rem;
}

.pricing-currency {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
    align-self: flex-start;
    margin-top: 0.5rem;
}

.pricing-amount {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.pricing-period {
    font-size: 1rem;
    color: var(--gray-light);
    font-weight: 400;
}

.pricing-card-desc {
    font-size: 0.9375rem;
    color: var(--gray-light);
    line-height: 1.5;
}

.pricing-card-features {
    text-align: left;
    margin: 1.5rem 0;
    flex: 1;
}

.pricing-card-features ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.pricing-card-features ul li {
    padding: 0.65rem 0;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--gray-light);
    font-size: 0.9375rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.pricing-card-features ul li:last-child {
    border-bottom: none;
}

.pricing-card-features ul li i {
    color: var(--gold-primary);
    flex-shrink: 0;
    font-size: 0.875rem;
}

.pricing-card-action {
    margin-top: auto;
    padding-top: 1.5rem;
}

.pricing-card-action .btn {
    width: 100%;
}

@media (max-width: 1200px) {
    .pricing-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

/* Outline Gold Button */
.btn-outline-gold {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.875rem 2rem;
    background: transparent;
    color: var(--gold-dark);
    border: 2px solid var(--gold-primary);
    border-radius: var(--radius-md);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
}

.btn-outline-gold:hover {
    background: var(--gold-primary);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.3);
}

/* Ghost Gold Button */
.btn-ghost-gold {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.875rem 2rem;
    background: rgba(212, 175, 55, 0.1);
    color: var(--gold-primary);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: var(--radius-md);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
}

.btn-ghost-gold:hover {
    background: rgba(212, 175, 55, 0.2);
    border-color: var(--gold-primary);
    transform: translateY(-2px);
}

/* Duplicate Benefits/Testimonials sections removed - consolidated above */

/* CTA Section */
.cta-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--navy-dark) 0%, #112240 50%, var(--navy-dark) 100%);
    position: relative;
    overflow: hidden;
}

.cta-bg-decoration {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 0;
}

.cta-bg-circle {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.08), transparent 70%);
}

.cta-bg-circle:nth-child(1) {
    width: 500px;
    height: 500px;
    top: -200px;
    right: -100px;
}

.cta-bg-circle:nth-child(2) {
    width: 400px;
    height: 400px;
    bottom: -150px;
    left: -100px;
}

.cta-bg-circle:nth-child(3) {
    width: 250px;
    height: 250px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.cta-content {
    max-width: 720px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.cta-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1.25rem;
    background: rgba(212, 175, 55, 0.08);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 100px;
    color: var(--gold-dark);
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    margin-bottom: 1.5rem;
}

.cta-badge i {
    font-size: 0.8rem;
}

.cta-title {
    font-size: 3rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 1.25rem;
    line-height: 1.15;
    letter-spacing: -0.02em;
    display: block;
}

.cta-title::after {
    display: none;
}

.cta-description {
    font-size: 1.125rem;
    color: var(--gray-light);
    line-height: 1.7;
    max-width: 600px;
    margin: 0 auto 2.5rem;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 2.5rem;
}

.cta-guarantee {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.cta-guarantee-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9375rem;
}

.cta-guarantee-item i {
    color: var(--gold-primary);
    font-size: 1rem;
}

.cta-guarantee-divider {
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
}

/* Footer */
.footer {
    background: linear-gradient(180deg, var(--navy-dark) 0%, #0a1626 100%);
    color: var(--white);
    padding: 0;
    position: relative;
    overflow: hidden;
}

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

.footer-top-accent {
    height: 3px;
    background: var(--gold-gradient);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 3rem;
    padding: 4rem 0 3rem;
}

.footer-brand {
    padding-right: 2rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.25rem;
    text-decoration: none;
}

.footer-logo-icon {
    width: 40px;
    height: 40px;
    background: var(--gold-gradient);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--navy-dark);
    font-size: 1.125rem;
    font-weight: 800;
    box-shadow: 0 2px 8px rgba(212, 175, 55, 0.3);
}

.footer-logo-text {
    font-size: 1.375rem;
    font-weight: 800;
    color: var(--white);
    letter-spacing: -0.5px;
}

.footer-description {
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.75;
    margin-bottom: 1.5rem;
    font-size: 0.9375rem;
}

.footer-social {
    display: flex;
    gap: 0.75rem;
}

.footer-social-link {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.7);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    font-size: 0.9375rem;
}

.footer-social-link:hover {
    background: var(--gold-primary);
    border-color: var(--gold-primary);
    color: var(--navy-dark);
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.3);
}

.footer-column-title {
    color: var(--gold-primary);
    margin-bottom: 1.5rem;
    font-size: 1.0625rem;
    font-weight: 700;
    position: relative;
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-column-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--gold-gradient);
    transition: width 0.3s ease;
}

.footer-column:hover .footer-column-title::after {
    width: 100%;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

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

.footer-links a {
    color: rgba(255, 255, 255, 0.65);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.9375rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-links a:hover {
    color: var(--gold-primary);
    transform: translateX(4px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 1.75rem 0;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-bottom-content p {
    color: rgba(255, 255, 255, 0.5);
    margin: 0;
    font-size: 0.875rem;
}

.footer-legal {
    display: flex;
    gap: 1.5rem;
}

.footer-legal a {
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 0.875rem;
}

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

/* Responsive Design */
@media (max-width: 768px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .hero-cta-group {
        justify-content: center;
        flex-wrap: wrap;
    }

    .hero-bottom-stats {
        flex-wrap: wrap;
        gap: 1.5rem;
    }

    .hero-stat-divider {
        display: none;
    }

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

    /* Benefits */
    .benefits-section {
        padding: 5rem 0;
    }

    .benefits-header {
        margin-bottom: 3rem;
    }

    .benefits-title {
        font-size: 2.25rem;
    }

    .benefits-subtitle {
        font-size: 1rem;
    }

    .benefits-stats {
        flex-wrap: wrap;
        gap: 1.5rem;
    }

    .benefit-stat-divider {
        display: none;
    }

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

    /* Testimonials */
    .testimonials-section {
        padding: 5rem 0;
    }

    .testimonials-header {
        margin-bottom: 3rem;
    }

    .testimonials-title {
        font-size: 2.25rem;
    }

    .testimonials-subtitle {
        font-size: 1rem;
    }

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

    /* Pricing */
    .pricing-section {
        padding: 5rem 0;
    }

    .pricing-header {
        margin-bottom: 3rem;
    }

    .pricing-title {
        font-size: 2.25rem;
    }

    .pricing-subtitle {
        font-size: 1rem;
    }

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

    .pricing-trial-card {
        align-items: stretch;
        flex-direction: column;
        text-align: center;
    }

    .pricing-trial-icon {
        margin: 0 auto;
    }

    .pricing-card-featured {
        transform: none;
    }

    /* CTA */
    .cta-section {
        padding: 5rem 0;
    }

    .cta-title {
        font-size: 2.25rem;
    }

    .cta-description {
        font-size: 1rem;
    }

    /* Footer */
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-brand {
        padding-right: 0;
    }

    .footer-social {
        justify-content: center;
    }

    .footer-column-title::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
    }

    .footer-legal {
        justify-content: center;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 85%;
        max-width: 360px;
        height: 100vh;
        height: 100dvh;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 100px 2rem 2rem;
        transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 1000;
        overflow-y: auto;
        box-shadow: -10px 0 40px rgba(10, 25, 47, 0.1);
    }

    .nav-menu.active {
        right: 0;
    }

    .nav-menu-links {
        flex-direction: column;
        gap: 0.25rem;
        width: 100%;
    }

    .nav-link {
        padding: 1rem 1.25rem;
        font-size: 1.0625rem;
        border-radius: 12px;
        width: 100%;
    }

    .nav-link-icon {
        opacity: 1;
        transform: translateX(0);
        font-size: 0.875rem;
    }

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

    .nav-menu-footer {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 1rem;
        margin-top: auto;
        padding-top: 2rem;
        border-top: 1px solid rgba(255, 255, 255, 0.08);
    }

    .nav-menu-social {
        display: flex;
        gap: 0.75rem;
    }

    .nav-social-link {
        width: 40px;
        height: 40px;
        border-radius: 10px;
        background: rgba(255, 255, 255, 0.06);
        display: flex;
        align-items: center;
        justify-content: center;
        color: rgba(255, 255, 255, 0.7);
        text-decoration: none;
        font-size: 0.875rem;
        transition: all 0.3s ease;
    }

    .nav-social-link:hover {
        background: var(--gold-primary);
        color: var(--navy-dark);
    }

    .nav-menu-copyright {
        font-size: 0.75rem;
        color: rgba(255, 255, 255, 0.4);
    }

    .nav-hamburger {
        display: flex;
    }

    .nav-signin span {
        display: none;
    }

    .nav-signin {
        padding: 0.5rem;
    }

    .theme-toggle {
        width: 40px;
        height: 40px;
    }

    .btn-nav {
        padding: 0.5rem 1rem;
        font-size: 0.8125rem;
    }

    .btn-nav span {
        display: none;
    }

    .btn-nav i {
        font-size: 1rem;
    }

    .announcement-bar {
        display: none;
    }

    .navbar-premium {
        top: 0;
    }

    .navbar-content {
        height: 64px;
    }

    .navbar-premium.scrolled .navbar-content {
        height: 56px;
    }

    .nav-logo-icon {
        width: 38px;
        height: 38px;
    }

    .logo-name {
        font-size: 1.25rem;
    }

    .logo-tagline {
        display: none;
    }

    .auth-buttons {
        flex-direction: column;
        width: 100%;
    }

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

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .cta-buttons .btn {
        width: 100%;
        max-width: 300px;
    }

    .cta-guarantee {
        flex-direction: column;
        gap: 0.75rem;
    }

    .cta-guarantee-divider {
        display: none;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.5rem;
    }

    .section {
        padding: var(--spacing-md) 0;
    }

    .section-lg {
        padding: var(--spacing-lg) 0;
    }

    .pricing-amount {
        font-size: 2.5rem;
    }

    .pricing-currency {
        font-size: 1.25rem;
    }

    .benefits-header,
    .testimonials-header,
    .pricing-header {
        margin-bottom: 2rem;
    }

    .benefits-title,
    .testimonials-title,
    .pricing-title {
        font-size: 1.75rem;
    }

    .benefits-subtitle,
    .testimonials-subtitle,
    .pricing-subtitle {
        font-size: 0.9375rem;
    }

    .cta-title {
        font-size: 1.75rem;
    }

    .cta-description {
        font-size: 0.9375rem;
    }

    .benefit-stat-number {
        font-size: 1.75rem;
    }
}

/* Animation Utilities */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease-out;
}

.animate-on-scroll.animated {
    opacity: 1;
    transform: translateY(0);
}

/* Hover Effects */
.hover-lift {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hover-lift:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

/* Gold Accent Effects */
.gold-accent {
    color: var(--gold-primary);
}

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

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

/* Text Utilities */
.text-white {
    color: var(--white) !important;
}

.text-white-75 {
    color: rgba(255, 255, 255, 0.75) !important;
}

.text-white-50 {
    color: rgba(255, 255, 255, 0.5) !important;
}

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

.text-navy {
    color: var(--navy-dark) !important;
}

.text-success {
    color: var(--success) !important;
}

.text-warning {
    color: var(--warning) !important;
}

.text-danger {
    color: var(--danger) !important;
}

/* Background Utilities */
.bg-navy {
    background: var(--navy-dark) !important;
}

.bg-gold {
    background: var(--gold-primary) !important;
}

/* Border Utilities */
.border-gold {
    border-color: var(--gold-primary) !important;
}

/* Shadow Utilities */
.shadow-gold {
    box-shadow: var(--shadow-gold) !important;
}

/* Additional Utility Classes */
.mb-1 { margin-bottom: 0.5rem !important; }
.mb-2 { margin-bottom: 1rem !important; }
.mb-3 { margin-bottom: 1.5rem !important; }
.mb-4 { margin-bottom: 2rem !important; }
.mb-5 { margin-bottom: 3rem !important; }
.mb-6 { margin-bottom: 4rem !important; }

.mt-1 { margin-top: 0.5rem !important; }
.mt-2 { margin-top: 1rem !important; }
.mt-3 { margin-top: 1.5rem !important; }
.mt-4 { margin-top: 2rem !important; }
.mt-5 { margin-top: 3rem !important; }

.me-1 { margin-right: 0.5rem !important; }
.me-2 { margin-right: 1rem !important; }
.me-3 { margin-right: 1.5rem !important; }

.ms-1 { margin-left: 0.5rem !important; }
.ms-2 { margin-left: 1rem !important; }
.ms-3 { margin-left: 1.5rem !important; }

.text-center { text-align: center !important; }
.text-left { text-align: left !important; }
.text-right { text-align: right !important; }

.d-flex { display: flex !important; }
.align-items-center { align-items: center !important; }
.justify-content-center { justify-content: center !important; }
.justify-content-between { justify-content: space-between !important; }
.flex-wrap { flex-wrap: wrap !important; }

/* ========================================
   GOAT LEVEL ENHANCEMENTS - ULTRA PREMIUM
   ======================================== */

/* Advanced Animation Keyframes */
@keyframes float {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    33% {
        transform: translateY(-15px) rotate(1deg);
    }
    66% {
        transform: translateY(-8px) rotate(-1deg);
    }
}

@keyframes pulse-gold {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.4);
    }
    50% {
        box-shadow: 0 0 0 25px rgba(212, 175, 55, 0);
    }
}

@keyframes shimmer {
    0% {
        background-position: -200% 0;
        opacity: 0.8;
    }
    50% {
        background-position: 0% 0;
        opacity: 1;
    }
    100% {
        background-position: 200% 0;
        opacity: 0.8;
    }
}

@keyframes gradient-shift {
    0% {
        background-position: 0% 50%;
        filter: hue-rotate(0deg);
    }
    50% {
        background-position: 100% 50%;
        filter: hue-rotate(5deg);
    }
    100% {
        background-position: 0% 50%;
        filter: hue-rotate(0deg);
    }
}

@keyframes slide-up {
    from {
        opacity: 0;
        transform: translateY(60px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes fade-in {
    from {
        opacity: 0;
        filter: blur(4px);
    }
    to {
        opacity: 1;
        filter: blur(0);
    }
}

@keyframes scale-in {
    from {
        opacity: 0;
        transform: scale(0.85) rotate(-2deg);
    }
    to {
        opacity: 1;
        transform: scale(1) rotate(0deg);
    }
}

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

@keyframes bounce-subtle {
    0%, 100% { transform: translateY(0); }
    30% { transform: translateY(-8px); }
    60% { transform: translateY(-3px); }
}

@keyframes glow {
    0%, 100% {
        box-shadow: 0 0 20px rgba(212, 175, 55, 0.3);
    }
    50% {
        box-shadow: 0 0 40px rgba(212, 175, 55, 0.6);
    }
}

@keyframes text-shimmer {
    0% {
        background-position: -200% center;
        background-size: 200% 100%;
    }
    100% {
        background-position: 200% center;
        background-size: 200% 100%;
    }
}

@keyframes border-flow {
    0% {
        background-position: 0% 0%;
        opacity: 0.7;
    }
    50% {
        background-position: 100% 100%;
        opacity: 1;
    }
    100% {
        background-position: 0% 0%;
        opacity: 0.7;
    }
}

@keyframes particle-float {
    0% {
        transform: translate(0, 0) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 0.8;
    }
    90% {
        opacity: 0.8;
    }
    100% {
        transform: translate(var(--tx, 100px), var(--ty, -100px)) rotate(360deg);
        opacity: 0;
    }
}

@keyframes wave {
    0%, 100% {
        transform: translateX(0) translateY(0);
    }
    25% {
        transform: translateX(5px) translateY(-3px);
    }
    50% {
        transform: translateX(-3px) translateY(5px);
    }
    75% {
        transform: translateX(3px) translateY(-2px);
    }
}

@keyframes morph {
    0% {
        border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    }
    50% {
        border-radius: 30% 60% 70% 40% / 50% 60% 30% 60%;
    }
    100% {
        border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    }
}

/* Micro-interaction Classes */
.hover-lift {
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1),
                box-shadow 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.hover-lift:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(10, 25, 47, 0.15);
}

.hover-glow {
    transition: box-shadow 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.hover-glow:hover {
    box-shadow: 0 0 30px rgba(212, 175, 55, 0.4);
}

.hover-shimmer {
    position: relative;
    overflow: hidden;
}

.hover-shimmer::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg,
                transparent,
                rgba(255, 255, 255, 0.2),
                transparent);
    transition: left 0.6s ease;
}

.hover-shimmer:hover::after {
    left: 100%;
}

.hover-scale {
    transition: transform 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.hover-scale:hover {
    transform: scale(1.05);
}

.hover-rotate {
    transition: transform 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.hover-rotate:hover {
    transform: rotate(3deg);
}

.hover-border-glow {
    position: relative;
    border: 2px solid transparent;
    background-clip: padding-box;
}

.hover-border-glow:hover {
    border: 2px solid transparent;
    background: linear-gradient(var(--navy-dark), var(--navy-dark)) padding-box,
                var(--gold-gradient) border-box;
}

/* Staggered Animation Classes */
.stagger-item {
    opacity: 0;
    animation: slide-up 0.6s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

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

/* Scroll-triggered Animations */
.reveal-on-scroll {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1),
                transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

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

/* Premium Loading States */
.loading-shimmer {
    background: linear-gradient(90deg,
                rgba(255, 255, 255, 0) 0%,
                rgba(255, 255, 255, 0.2) 50%,
                rgba(255, 255, 255, 0) 100%);
    background-size: 200% 100%;
    animation: shimmer 2s infinite;
}

/* Enhanced Focus States */
.focus-glow:focus {
    outline: none;
    box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.3);
}

.focus-scale:focus {
    transform: scale(1.02);
}

/* Premium Transitions */
.transition-all-premium {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.transition-transform-premium {
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.transition-opacity-premium {
    transition: opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.transition-color-premium {
    transition: color 0.3s cubic-bezier(0.4, 0, 0.2, 1),
                background-color 0.3s cubic-bezier(0.4, 0, 0.2, 1),
                border-color 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Enhanced Hero Section - Professional Redesign */
.hero-premium {
    background: linear-gradient(160deg, #0a192f 0%, #112240 40%, #0d1b3e 100%);
    background-size: 200% 200%;
    animation: gradient-shift 15s ease infinite;
}

.hero-premium::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 150px;
    background: linear-gradient(to top, var(--navy-dark), transparent);
    pointer-events: none;
    z-index: 2;
}

.hero-title {
    animation: slide-up 0.8s ease-out;
}

.hero-description {
    animation: slide-up 0.8s ease-out 0.15s backwards;
}

.hero-cta-group {
    animation: slide-up 0.8s ease-out 0.3s backwards;
}

.hero-trust {
    animation: slide-up 0.8s ease-out 0.4s backwards;
}

.hero-visual {
    animation: scale-in 1s ease-out 0.5s backwards;
}

.hero-bottom-stats {
    animation: slide-up 0.8s ease-out 0.6s backwards;
}

/* Enhanced Dashboard Mockup */
.dashboard-mockup {
    background: linear-gradient(145deg, var(--navy-medium), var(--navy-light));
    box-shadow:
        var(--shadow-xl),
        0 0 0 1px rgba(212, 175, 55, 0.15) inset;
    animation: float 6s ease-in-out infinite;
}

.dashboard-mockup:hover {
    box-shadow:
        var(--shadow-xl),
        0 0 40px rgba(212, 175, 55, 0.2);
}

/* Enhanced Feature Cards - Professional */
.feature-card {
    background: linear-gradient(145deg, var(--navy-medium), var(--navy-light));
}

.feature-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.06), transparent);
    transition: left 0.7s ease;
    z-index: 0;
}

.feature-card:hover::after {
    left: 100%;
}

.feature-card-content {
    position: relative;
    z-index: 1;
}

.feature-card-icon {
    position: relative;
    z-index: 1;
}

.feature-card-accent {
    z-index: 1;
}

.feature-tags {
    position: relative;
    z-index: 1;
}

/* Enhanced Pricing Cards - Professional Redesign */
.pricing-card {
    background: linear-gradient(145deg, var(--navy-medium), var(--navy-light));
}

.pricing-card-featured {
    background: linear-gradient(145deg, rgba(212, 175, 55, 0.08), var(--navy-medium));
}

.pricing-card-featured .pricing-amount {
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Enhanced Testimonial Cards - Professional Redesign */
.testimonial-card {
    background: linear-gradient(145deg, var(--navy-medium), var(--navy-light));
}

.testimonial-card:hover .testimonial-avatar {
    transform: scale(1.08);
    box-shadow: 0 4px 16px rgba(212, 175, 55, 0.35);
}

.testimonial-avatar {
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1),
                box-shadow 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Enhanced Buttons */
.btn-primary {
    background: var(--gold-gradient);
    background-size: 200% 200%;
    animation: gradient-shift 3s ease infinite;
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s ease;
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.4);
}

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

.btn-secondary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: var(--navy-dark);
    transition: width 0.3s ease;
    z-index: -1;
}

.btn-secondary:hover::before {
    width: 100%;
}

/* Enhanced Navigation */
/* Enhanced Navigation - Consolidated in main Navigation section above */

/* Enhanced Footer - Professional Redesign */
/* Footer enhancements are now consolidated in the main Footer section above */

/* Premium Glassmorphism Effects */
.glass-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-lg);
}

.glass-card-dark {
    background: rgba(10, 25, 47, 0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
}

/* Enhanced Typography */
.text-gradient {
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.text-gradient-navy {
    background: linear-gradient(135deg, var(--navy-dark), var(--navy-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Premium Section Dividers */
.section-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold-primary), transparent);
    margin: var(--spacing-xl) 0;
    opacity: 0.5;
}

/* Enhanced Stats */
.stat-item {
    background: linear-gradient(145deg, var(--navy-medium), var(--navy-light));
    border: 1px solid rgba(212, 175, 55, 0.1);
    transition: var(--transition-bounce);
}

.stat-item:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: var(--shadow-gold);
}

.stat-value {
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Premium Badge */
.badge-premium {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background: var(--gold-gradient);
    color: var(--navy-dark);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: 20px;
    box-shadow: var(--shadow-gold);
}

/* Enhanced Scroll Animations */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.animate-on-scroll.animated {
    opacity: 1;
    transform: translateY(0);
}

.animate-on-scroll.delay-1 { transition-delay: 0.1s; }
.animate-on-scroll.delay-2 { transition-delay: 0.2s; }
.animate-on-scroll.delay-3 { transition-delay: 0.3s; }
.animate-on-scroll.delay-4 { transition-delay: 0.4s; }
.animate-on-scroll.delay-5 { transition-delay: 0.5s; }

/* Premium Hover Effects */
.hover-glow {
    transition: all 0.3s ease;
}

.hover-glow:hover {
    box-shadow: 0 0 30px rgba(212, 175, 55, 0.4);
}

.hover-shine {
    position: relative;
    overflow: hidden;
}

.hover-shine::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        to bottom right,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0) 40%,
        rgba(255, 255, 255, 0.2) 50%,
        rgba(255, 255, 255, 0) 60%,
        rgba(255, 255, 255, 0) 100%
    );
    transform: rotate(45deg) translate(-100%, -100%);
    transition: transform 0.6s ease;
}

.hover-shine:hover::after {
    transform: rotate(45deg) translate(100%, 100%);
}

/* Enhanced CTA Section - Professional Redesign */
/* CTA enhancements are now consolidated in the main CTA section above */

/* Premium Loading Animation */
@keyframes spin {
    to { transform: rotate(360deg); }
}

.loading-spinner {
    width: 40px;
    height: 40px;
    border: 3px solid rgba(212, 175, 55, 0.2);
    border-top-color: var(--gold-primary);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

/* ========================================
   GOAT LEVEL MOBILE RESPONSIVENESS
   ======================================== */

/* Enhanced Touch Interactions */
@media (hover: none) and (pointer: coarse) {
    .hover-lift:hover,
    .hover-scale:hover,
    .hover-rotate:hover {
        transform: none;
    }

    .feature-card:hover,
    .pricing-card:hover,
    .testimonial-card:hover {
        transform: none;
    }

    .btn-primary:hover,
    .btn-secondary:hover,
    .btn-light:hover {
        transform: none;
        box-shadow: var(--shadow-gold);
    }

    /* Enhanced touch targets */
    .btn,
    .nav-link,
    .footer-social-link,
    .nav-signin,
    .theme-toggle,
    .nav-hamburger {
        min-height: 44px;
        min-width: 44px;
    }

    /* Remove hover animations on touch devices */
    .hover-shimmer::after,
    .hover-border-glow:hover {
        display: none;
    }
}

/* Tablet Breakpoint (768px and below) */
@media (max-width: 768px) {
    /* Typography Scaling */
    :root {
        --spacing-section: 4rem;
        --spacing-xl: 3rem;
        --spacing-xxl: 5rem;
    }

    .hero-premium {
        min-height: auto;
        padding-top: 6rem;
        padding-bottom: 3rem;
    }

    .hero-title {
        font-size: 2.8rem;
        line-height: 1.1;
    }

    .hero-description {
        font-size: 1.05rem;
        line-height: 1.6;
        max-width: 90%;
        margin-left: auto;
        margin-right: auto;
    }

    .hero-cta-group {
        flex-wrap: wrap;
        justify-content: center;
        gap: 0.75rem;
    }

    .hero-visual {
        margin-top: 1rem;
    }

    .hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .hero-text {
        max-width: 100%;
        padding: 0 1rem;
    }

    .hero-badge {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-trust {
        justify-content: center;
    }

    .hero-bottom-stats {
        gap: 1.5rem;
        margin-top: 3rem;
        padding-top: 2rem;
        flex-wrap: wrap;
    }

    .hero-stat-number {
        font-size: 1.75rem;
    }

    .hero-stat-suffix {
        font-size: 1.25rem;
    }

    .hero-stat-divider {
        display: none;
    }

    /* Floating Cards - hide on tablet */
    .floating-card {
        display: none;
    }

    /* Dashboard Mockup Optimization */
    .dashboard-mockup {
        max-width: 95%;
        margin: 0 auto;
    }

    .dashboard-body {
        min-height: 260px;
    }

    .dashboard-stats-row {
        grid-template-columns: repeat(3, 1fr);
        gap: 0.5rem;
    }

    .dash-stat-card {
        padding: 0.5rem;
        flex-direction: column;
        text-align: center;
        gap: 0.25rem;
    }

    .dash-stat-trend {
        position: static;
        font-size: 0.5rem;
    }

    .mockup-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
    }

    .stat-item {
        padding: 0.75rem;
    }

    .stat-value {
        font-size: 1.25rem;
    }

    /* Feature Cards Optimization */
    .features-section {
        padding: 5rem 0;
    }

    .features-header {
        margin-bottom: 3rem;
    }

    .features-title {
        font-size: 2.25rem;
    }

    .features-subtitle {
        font-size: 1rem;
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .feature-card {
        padding: 1.5rem;
    }

    .feature-card:hover {
        transform: translateY(-4px);
    }

    .feature-card-icon {
        width: 48px;
        height: 48px;
        font-size: 1.25rem;
    }

    .feature-card-title {
        font-size: 1.0625rem;
    }

    .feature-card-desc {
        font-size: 0.875rem;
    }

    .feature-tag {
        font-size: 0.72rem;
        padding: 0.3rem 0.6rem;
    }

    /* Navigation - Mobile Menu Active */
    .nav-menu {
        right: -100%;
    }

    .nav-menu.active {
        right: 0;
    }

    .nav-logo-icon {
        width: 36px;
        height: 36px;
    }

    .logo-name {
        font-size: 1.125rem;
    }

    /* Section Spacing */
    .section {
        padding: var(--spacing-xl) 0;
    }

    .section-lg {
        padding: var(--spacing-xxl) 0;
    }

    /* Pricing Cards */
    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        max-width: 400px;
        margin: 0 auto;
    }

    .pricing-card-featured {
        transform: scale(1.02);
        margin: 1rem 0;
    }

    /* Testimonials */
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0 1rem;
    }

    .testimonial-card {
        padding: 1.5rem;
    }

    .testimonial-card:hover {
        transform: translateY(-5px);
    }

    /* Benefits */
    .benefits-header {
        margin-bottom: 3rem;
    }

    .benefits-title {
        font-size: 2.25rem;
    }

    .benefits-subtitle {
        font-size: 1rem;
    }

    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .benefits-stats {
        flex-wrap: wrap;
        gap: 1.5rem;
        justify-content: center;
    }

    .benefit-stat-divider {
        display: none;
    }

    /* Testimonials Header */
    .testimonials-header {
        margin-bottom: 3rem;
    }

    .testimonials-title {
        font-size: 2.25rem;
    }

    .testimonials-subtitle {
        font-size: 1rem;
    }

    /* Pricing Header */
    .pricing-header {
        margin-bottom: 3rem;
    }

    .pricing-title {
        font-size: 2.25rem;
    }

    .pricing-subtitle {
        font-size: 1rem;
    }

    /* CTA Section */
    .cta-content {
        padding: 3rem 1.5rem;
    }

    .cta-title {
        font-size: 2.25rem;
    }

    .cta-description {
        font-size: 1rem;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .cta-guarantee {
        flex-wrap: wrap;
        justify-content: center;
    }

    /* Footer Optimization */
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }

    .footer-column {
        text-align: center;
    }

    .footer-column-title::after {
        left: 50%;
        transform: translateX(-50%);
    }

    /* Utility Classes for Mobile */
    .mobile-stack {
        flex-direction: column !important;
    }

    .mobile-center {
        text-align: center !important;
    }

    .mobile-full-width {
        width: 100% !important;
        max-width: 100% !important;
    }

    .mobile-hide {
        display: none !important;
    }

    .mobile-show {
        display: block !important;
    }

    .mobile-order-1 { order: 1; }
    .mobile-order-2 { order: 2; }
    .mobile-order-3 { order: 3; }
}

/* Mobile Breakpoint (480px and below) */
@media (max-width: 480px) {
    /* Hero Typography */
    .hero-title {
        font-size: 2.2rem;
        line-height: 1.1;
        margin-bottom: 1rem;
    }

    .hero-description {
        font-size: 1rem;
        line-height: 1.5;
    }

    .hero-badge {
        padding: 0.4rem 0.75rem;
        margin-bottom: 1.25rem;
    }

    .hero-badge-text {
        font-size: 0.7rem;
    }

    .hero-cta-group {
        flex-direction: column;
        gap: 0.75rem;
        width: 100%;
    }

    .hero-cta-group .btn {
        width: 100%;
        justify-content: center;
    }

    .hero-bottom-stats {
        gap: 1rem;
        margin-top: 2rem;
        padding-top: 1.5rem;
    }

    .hero-stat-item {
        min-width: 70px;
    }

    .hero-stat-number {
        font-size: 1.5rem;
    }

    .hero-stat-suffix {
        font-size: 1rem;
    }

    .hero-stat-label {
        font-size: 0.7rem;
    }

    .hero-trust {
        flex-direction: column;
        gap: 0.5rem;
    }

    h2 {
        font-size: 1.75rem;
        margin-bottom: 1.5rem;
    }

    h3 {
        font-size: 1.5rem;
    }

    h4 {
        font-size: 1.25rem;
    }

    /* Buttons */
    .btn {
        padding: 0.875rem 1.75rem;
        font-size: 0.95rem;
        min-height: 48px;
    }

    .btn-large {
        padding: 1rem 2.25rem;
        font-size: 1.05rem;
        min-height: 52px;
    }

    .btn-group {
        flex-direction: column;
        gap: 0.75rem;
    }

    .btn-group .btn {
        width: 100%;
    }

    /* Layout */
    .container {
        padding: 0 1rem;
    }

    .section {
        padding: 3rem 0;
    }

    .section-lg {
        padding: 4rem 0;
    }

    /* Dashboard Mockup */
    .dashboard-mockup {
        transform: none;
    }

    .dashboard-body {
        min-height: 220px;
    }

    .dashboard-sidebar {
        width: 36px;
    }

    .sidebar-item {
        width: 24px;
        height: 24px;
        font-size: 0.6rem;
    }

    .dashboard-stats-row {
        grid-template-columns: 1fr;
        gap: 0.5rem;
    }

    .dash-stat-card {
        flex-direction: row;
    }

    .chart-bars {
        height: 60px;
    }

    .dashboard-recent-orders {
        display: none;
    }

    /* Feature Cards */
    .features-section {
        padding: 3.5rem 0;
    }

    .features-header {
        margin-bottom: 2rem;
    }

    .features-title {
        font-size: 1.75rem;
    }

    .features-subtitle {
        font-size: 0.9375rem;
    }

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

    .feature-card {
        padding: 1.25rem;
    }

    .feature-card-icon {
        width: 44px;
        height: 44px;
        font-size: 1.125rem;
    }

    .feature-card-title {
        font-size: 1rem;
    }

    .feature-card-desc {
        font-size: 0.875rem;
    }

    .feature-tags {
        gap: 0.4rem;
    }

    .feature-tag {
        font-size: 0.7rem;
        padding: 0.25rem 0.55rem;
    }

    /* Navigation */
    .nav-menu {
        width: 92%;
        padding: 90px 1.5rem 1.5rem;
    }

    .nav-link {
        padding: 0.875rem 1rem;
        font-size: 1rem;
    }

    .nav-logo-icon {
        width: 34px;
        height: 34px;
    }

    .logo-name {
        font-size: 1.0625rem;
    }

    .navbar-content {
        height: 56px;
    }

    /* Footer */
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        text-align: center;
    }

    .footer-logo {
        justify-content: center;
    }

    .footer-social {
        justify-content: center;
    }

    /* Testimonials */
    .testimonial-card-author {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }

    .testimonial-avatar {
        margin: 0 auto;
    }

    /* Pricing */
    .pricing-card-features {
        text-align: left;
        padding-left: 1rem;
    }

    /* Benefits */
    .benefits-header {
        margin-bottom: 2rem;
    }

    .benefits-title {
        font-size: 1.75rem;
    }

    .benefits-subtitle {
        font-size: 0.9375rem;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .benefits-stats {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }

    .benefit-stat {
        text-align: center;
    }

    /* Testimonials Header */
    .testimonials-header {
        margin-bottom: 2rem;
    }

    .testimonials-title {
        font-size: 1.75rem;
    }

    .testimonials-subtitle {
        font-size: 0.9375rem;
    }

    /* Pricing Header */
    .pricing-header {
        margin-bottom: 2rem;
    }

    .pricing-title {
        font-size: 1.75rem;
    }

    .pricing-subtitle {
        font-size: 0.9375rem;
    }

    /* CTA Section */
    .cta-content {
        padding: 2rem 1rem;
    }

    .cta-title {
        font-size: 1.75rem;
    }

    .cta-description {
        font-size: 0.9375rem;
    }

    .cta-guarantee {
        flex-direction: column;
        align-items: center;
        gap: 0.75rem;
    }

    .cta-guarantee-divider {
        display: none;
    }
}

/* Small Mobile Breakpoint (360px and below) */
@media (max-width: 360px) {
    .hero-title {
        font-size: 1.9rem;
    }

    .hero-description {
        font-size: 0.95rem;
    }

    .hero-bottom-stats {
        gap: 0.75rem;
    }

    .hero-stat-number {
        font-size: 1.25rem;
    }

    .btn {
        padding: 0.75rem 1.5rem;
        font-size: 0.9rem;
    }

    .container {
        padding: 0 0.75rem;
    }

    .feature-card,
    .testimonial-card,
    .pricing-card,
    .benefit-card {
        padding: 1rem;
    }

    .features-badge,
    .benefits-badge,
    .testimonials-badge,
    .pricing-badge,
    .cta-badge {
        padding: 0.4rem 1rem;
        font-size: 0.8rem;
    }

    .features-title,
    .benefits-title,
    .testimonials-title,
    .pricing-title {
        font-size: 1.5rem;
    }

    .cta-title {
        font-size: 1.5rem;
    }

    .pricing-amount {
        font-size: 2rem;
    }

    .footer-logo-text {
        font-size: 1.25rem;
    }
}

/* Landscape Orientation Optimization */
@media (max-height: 500px) and (orientation: landscape) {
    .hero-premium {
        padding-top: 5rem;
        padding-bottom: 2rem;
        min-height: auto;
    }

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

    .hero-description {
        font-size: 0.9rem;
        margin-bottom: 1rem;
    }

    .hero-cta-group {
        margin-bottom: 1rem;
    }

    .hero-bottom-stats {
        margin-top: 1.5rem;
        padding-top: 1rem;
    }

    .dashboard-mockup {
        max-height: 200px;
        overflow-y: auto;
    }

    .hero-content {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }
}

/* High DPI Screens Optimization */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .hero-title {
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
    }

    .feature-card-icon,
    .nav-logo-icon {
        image-rendering: -webkit-optimize-contrast;
        image-rendering: crisp-edges;
    }
}

/* Reduced Motion Support */
@media (prefers-reduced-motion: reduce) {
    .hero-premium,
    .feature-card,
    .pricing-card,
    .testimonial-card,
    .benefit-card {
        animation: none !important;
        transition: none !important;
    }

    .hero-title,
    .hero-description,
    .hero-cta-group,
    .hero-trust,
    .hero-visual,
    .hero-bottom-stats {
        animation: fade-in 0.5s ease-out !important;
    }

    .hero-particle,
    .floating-card {
        animation: none !important;
    }

    .hover-lift:hover,
    .hover-scale:hover,
    .hover-rotate:hover {
        transform: none !important;
    }

    .benefit-card:hover,
    .testimonial-card:hover,
    .pricing-card:hover {
        transform: none !important;
    }

    .benefit-card::before,
    .pricing-card::before {
        transform: none !important;
    }

    .cta-bg-decoration,
    .testimonials-bg-decoration,
    .pricing-bg-decoration,
    .benefits-bg-decoration {
        animation: none !important;
    }

    /* Navigation Reduced Motion */
    .announcement-bar::before {
        animation: none !important;
    }

    .nav-logo-icon::after {
        animation: none !important;
        transform: none !important;
    }

    .nav-link::after {
        transition: none !important;
    }

    .nav-link-icon {
        transition: none !important;
    }

    .nav-menu {
        transition: none !important;
    }

    .nav-overlay {
        transition: none !important;
    }

    .hamburger-line {
        transition: none !important;
    }

    .navbar-premium {
        transition: none !important;
    }

    .navbar-content {
        transition: none !important;
    }
}

/* Performance Optimizations */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Print Styles */
@media print {
    .announcement-bar,
    .navbar-premium,
    .nav-overlay,
    .hero-cta-group,
    .hero-bottom-stats,
    .cta-section,
    .footer {
        display: none;
    }

    body {
        background: white;
        color: black;
    }
}

/* Focus States for Accessibility */
.btn:focus,
.nav-link:focus,
.footer-social-link:focus,
.nav-signin:focus,
.theme-toggle:focus,
.nav-hamburger:focus {
    outline: 2px solid var(--gold-primary);
    outline-offset: 2px;
}

/* High Contrast Mode Support */
@media (prefers-contrast: high) {
    :root {
        --gold-primary: #ffd700;
        --navy-dark: #000000;
        --navy-medium: #1a1a1a;
    }

    .btn-primary {
        border: 2px solid var(--gold-primary);
    }
}

/* Dark Mode Support */
@media (prefers-color-scheme: dark) {
    body {
        background-color: var(--navy-dark);
        color: var(--white);
    }

    .feature-card,
    .testimonial-card,
    .pricing-card {
        background: linear-gradient(145deg, var(--navy-medium), var(--navy-light));
        border-color: rgba(255, 255, 255, 0.1);
    }

    .feature-card-title {
        color: var(--white);
    }

    .feature-card-desc {
        color: var(--gray-light);
    }

    .feature-tag {
        background: rgba(212, 175, 55, 0.12);
        border-color: rgba(212, 175, 55, 0.2);
        color: var(--gold-primary);
    }

    .feature-card-icon {
        background: rgba(212, 175, 55, 0.15);
        border-color: rgba(212, 175, 55, 0.25);
        color: var(--gold-primary);
    }

    .features-section {
        background: linear-gradient(180deg, var(--navy-dark) 0%, var(--navy-medium) 50%, var(--navy-dark) 100%);
    }

    .features-title {
        color: var(--white);
    }

    .features-subtitle {
        color: var(--gray-light);
    }

    .features-badge {
        background: rgba(212, 175, 55, 0.12);
        border-color: rgba(212, 175, 55, 0.25);
        color: var(--gold-primary);
    }

    .testimonial-author-info h5,
    .pricing-amount {
        color: var(--white);
    }

    .testimonial-card-content,
    .testimonial-author-info p {
        color: var(--gray-light);
    }

    /* Benefits Dark Mode */
    .benefit-card {
        background: linear-gradient(145deg, var(--navy-medium), var(--navy-light));
        border-color: rgba(255, 255, 255, 0.1);
    }

    .benefit-card-icon {
        background: rgba(212, 175, 55, 0.15);
        border-color: rgba(212, 175, 55, 0.25);
        color: var(--gold-primary);
    }

    .benefit-card-title {
        color: var(--white);
    }

    .benefit-card-desc {
        color: var(--gray-light);
    }

    .benefits-section {
        background: linear-gradient(180deg, var(--navy-dark) 0%, var(--navy-medium) 50%, var(--navy-dark) 100%);
    }

    .benefits-title {
        color: var(--white);
    }

    .benefits-subtitle {
        color: var(--gray-light);
    }

    .benefits-badge {
        background: rgba(212, 175, 55, 0.12);
        border-color: rgba(212, 175, 55, 0.25);
        color: var(--gold-primary);
    }

    .benefit-stat-number {
        color: var(--gold-primary);
    }

    .benefit-stat-label {
        color: var(--gray-light);
    }

    /* Testimonials Dark Mode */
    .testimonials-section {
        background: linear-gradient(180deg, var(--navy-dark) 0%, var(--navy-medium) 50%, var(--navy-dark) 100%);
    }

    .testimonials-title {
        color: var(--white);
    }

    .testimonials-subtitle {
        color: var(--gray-light);
    }

    .testimonials-badge {
        background: rgba(212, 175, 55, 0.12);
        border-color: rgba(212, 175, 55, 0.25);
        color: var(--gold-primary);
    }

    .testimonial-verified {
        color: var(--gold-primary);
    }

    /* Pricing Dark Mode */
    .pricing-section {
        background: linear-gradient(180deg, var(--navy-dark) 0%, var(--navy-medium) 50%, var(--navy-dark) 100%);
    }

    .pricing-title {
        color: var(--white);
    }

    .pricing-subtitle {
        color: var(--gray-light);
    }

    .pricing-badge {
        background: rgba(212, 175, 55, 0.12);
        border-color: rgba(212, 175, 55, 0.25);
        color: var(--gold-primary);
    }

    .pricing-card-plan {
        color: var(--gray-light);
    }

    .pricing-currency,
    .pricing-period {
        color: var(--gray-light);
    }

    .pricing-card-desc {
        color: var(--gray-light);
    }

    .pricing-card-features li {
        color: var(--gray-light);
    }

    .pricing-card-features li::before {
        color: var(--gold-primary);
    }

    .pricing-card-featured {
        background: linear-gradient(145deg, rgba(212, 175, 55, 0.1), var(--navy-medium));
        border-color: rgba(212, 175, 55, 0.3);
    }

    .pricing-popular-badge {
        background: var(--gold-gradient);
    }

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

    .btn-outline-gold:hover {
        background: var(--gold-primary);
        color: var(--navy-dark);
    }

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

    .btn-ghost-gold:hover {
        background: rgba(212, 175, 55, 0.1);
        color: var(--gold-primary);
    }

    /* CTA Dark Mode */
    .cta-section {
        background: linear-gradient(180deg, var(--navy-dark) 0%, var(--navy-medium) 50%, var(--navy-dark) 100%);
    }

    .cta-title {
        color: var(--white);
    }

    .cta-description {
        color: var(--gray-light);
    }

    .cta-badge {
        background: rgba(212, 175, 55, 0.12);
        border-color: rgba(212, 175, 55, 0.25);
        color: var(--gold-primary);
    }

    .cta-guarantee-item {
        color: var(--gray-light);
    }

    .cta-guarantee-item i {
        color: var(--gold-primary);
    }

    /* Footer Dark Mode */
    .footer {
        background: var(--navy-dark);
        border-top-color: rgba(255, 255, 255, 0.1);
    }

    .footer-top-accent {
        background: var(--gold-gradient);
    }

    .footer-description {
        color: var(--gray-light);
    }

    .footer-social-link {
        background: rgba(255, 255, 255, 0.05);
        border-color: rgba(255, 255, 255, 0.1);
        color: var(--gray-light);
    }

    .footer-social-link:hover {
        background: var(--gold-primary);
        color: var(--navy-dark);
        border-color: var(--gold-primary);
    }

    .footer-column-title {
        color: var(--white);
    }

    .footer-column-title::after {
        background: var(--gold-gradient);
    }

    .footer-links a {
        color: var(--gray-light);
    }

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

    .footer-bottom {
        border-top-color: rgba(255, 255, 255, 0.1);
    }

    .footer-legal {
        color: var(--gray-light);
    }

    /* Navigation Dark Mode */
    .announcement-bar {
        background: linear-gradient(90deg, var(--navy-medium), rgba(212, 175, 55, 0.2), var(--navy-medium));
        border-bottom-color: rgba(212, 175, 55, 0.15);
    }

    .announcement-bar::before {
        background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.15), transparent);
    }

    .announcement-content {
        color: var(--gray-light);
    }

    .announcement-content strong {
        color: var(--gold-primary);
    }

    .announcement-cta {
        color: var(--gold-primary);
    }

    .announcement-cta:hover {
        color: var(--white);
    }

    .navbar-premium {
        background: rgba(10, 25, 47, 0.95);
        border-bottom-color: rgba(212, 175, 55, 0.1);
    }

    .navbar-premium.scrolled {
        background: rgba(10, 25, 47, 0.98);
        box-shadow: 0 4px 30px rgba(0, 0, 0, 0.4);
    }

    .nav-logo-icon {
        background: rgba(212, 175, 55, 0.15);
        border-color: rgba(212, 175, 55, 0.25);
        color: var(--gold-primary);
    }

    .logo-name {
        color: var(--white);
    }

    .logo-tagline {
        color: var(--gray-light);
    }

    .nav-link {
        color: var(--gray-light);
    }

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

    .nav-link::after {
        background: var(--gold-gradient);
    }

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

    .nav-signin {
        color: var(--gray-light);
        border-color: rgba(255, 255, 255, 0.15);
    }

    .nav-signin:hover {
        color: var(--gold-primary);
        border-color: rgba(212, 175, 55, 0.3);
        background: rgba(212, 175, 55, 0.05);
    }

    .nav-hamburger {
        color: var(--gray-light);
    }

    .hamburger-line {
        background: var(--gray-light);
    }

    .nav-hamburger.active .hamburger-line {
        background: var(--gold-primary);
    }

    .nav-menu {
        background: rgba(10, 25, 47, 0.98);
        border-left-color: rgba(212, 175, 55, 0.15);
    }

    .nav-menu-footer {
        border-top-color: rgba(255, 255, 255, 0.1);
    }

    .nav-social-link {
        color: var(--gray-light);
        border-color: rgba(255, 255, 255, 0.1);
    }

    .nav-social-link:hover {
        color: var(--gold-primary);
        border-color: rgba(212, 175, 55, 0.3);
        background: rgba(212, 175, 55, 0.1);
    }

    .nav-menu-copyright {
        color: var(--gray-light);
    }

    .nav-overlay {
        background: rgba(0, 0, 0, 0.6);
    }
}

html[data-theme="dark"] {
    color-scheme: dark;
}

html[data-theme="dark"] .nav-menu {
    background: rgba(10, 25, 47, 0.98);
    border-left-color: rgba(212, 175, 55, 0.15);
}

html[data-theme="dark"] .nav-menu-footer {
    border-top-color: rgba(255, 255, 255, 0.1);
}

html[data-theme="dark"] .nav-social-link {
    color: var(--gray-light);
    border-color: rgba(255, 255, 255, 0.1);
}

html[data-theme="dark"] .nav-menu-copyright {
    color: var(--gray-light);
}

html[data-theme="light"] {
    color-scheme: light;
}

html[data-theme="light"] body {
    background-color: #f6f3ec;
    color: #172033;
}

html[data-theme="light"] body,
html[data-theme="light"] .features-section,
html[data-theme="light"] .benefits-section,
html[data-theme="light"] .testimonials-section,
html[data-theme="light"] .pricing-section,
html[data-theme="light"] .cta-section {
    background: linear-gradient(180deg, #fffaf0 0%, #f4efe3 50%, #ffffff 100%);
}

html[data-theme="light"] .hero-premium {
    background: linear-gradient(160deg, #fffaf0 0%, #f1e7d2 48%, #ffffff 100%);
    color: var(--navy-dark);
}

html[data-theme="light"] .hero-premium::after {
    background: linear-gradient(to top, rgba(255, 250, 240, 0.96), transparent);
}

html[data-theme="light"] .announcement-bar {
    background: linear-gradient(90deg, #fffaf0, rgba(212, 175, 55, 0.2), #fffaf0);
    border-bottom-color: rgba(10, 25, 47, 0.08);
}

html[data-theme="light"] .announcement-content,
html[data-theme="light"] .nav-link,
html[data-theme="light"] .nav-signin,
html[data-theme="light"] .logo-name,
html[data-theme="light"] .footer-logo-text {
    color: var(--navy-dark);
}

html[data-theme="light"] .logo-tagline,
html[data-theme="light"] .announcement-cta,
html[data-theme="light"] .nav-link:hover,
html[data-theme="light"] .nav-link.active,
html[data-theme="light"] .nav-link-icon {
    color: var(--gold-dark);
}

html[data-theme="light"] .navbar-premium {
    background: rgba(255, 250, 240, 0.9);
    border-bottom-color: rgba(10, 25, 47, 0.08);
}

html[data-theme="light"] .navbar-premium.scrolled {
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 4px 30px rgba(10, 25, 47, 0.12);
}

html[data-theme="light"] .nav-logo-icon,
html[data-theme="light"] .footer-logo-icon {
    color: var(--navy-dark);
}

html[data-theme="light"] .nav-signin,
html[data-theme="light"] .theme-toggle,
html[data-theme="light"] .nav-social-link,
html[data-theme="light"] .footer-social-link {
    background: rgba(255, 255, 255, 0.76);
    border-color: rgba(10, 25, 47, 0.12);
}

html[data-theme="light"] .nav-signin:hover,
html[data-theme="light"] .theme-toggle:hover,
html[data-theme="light"] .nav-social-link:hover,
html[data-theme="light"] .footer-social-link:hover {
    background: rgba(212, 175, 55, 0.14);
    border-color: rgba(184, 148, 31, 0.35);
    color: var(--gold-dark);
}

html[data-theme="light"] .hamburger-line {
    background: var(--navy-dark);
}

html[data-theme="light"] .nav-hamburger.active .hamburger-line {
    background: var(--gold-dark);
}

html[data-theme="light"] .nav-menu {
    background: rgba(255, 255, 255, 0.98);
    border-left-color: rgba(10, 25, 47, 0.08);
}

html[data-theme="light"] .nav-menu-footer,
html[data-theme="light"] .footer-bottom {
    border-top-color: rgba(10, 25, 47, 0.1);
}

html[data-theme="light"] h1,
html[data-theme="light"] h2,
html[data-theme="light"] h3,
html[data-theme="light"] h4,
html[data-theme="light"] h5,
html[data-theme="light"] h6,
html[data-theme="light"] .hero-title,
html[data-theme="light"] .features-title,
html[data-theme="light"] .benefits-title,
html[data-theme="light"] .testimonials-title,
html[data-theme="light"] .pricing-title,
html[data-theme="light"] .cta-title,
html[data-theme="light"] .feature-card-title,
html[data-theme="light"] .benefit-card-title,
html[data-theme="light"] .testimonial-author-info h5,
html[data-theme="light"] .pricing-amount,
html[data-theme="light"] .footer-column-title {
    color: var(--navy-dark);
}

html[data-theme="light"] p,
html[data-theme="light"] .hero-description,
html[data-theme="light"] .features-subtitle,
html[data-theme="light"] .benefits-subtitle,
html[data-theme="light"] .testimonials-subtitle,
html[data-theme="light"] .pricing-subtitle,
html[data-theme="light"] .feature-card-desc,
html[data-theme="light"] .benefit-card-desc,
html[data-theme="light"] .testimonial-card-content,
html[data-theme="light"] .testimonial-author-info p,
html[data-theme="light"] .pricing-card-plan,
html[data-theme="light"] .pricing-currency,
html[data-theme="light"] .pricing-period,
html[data-theme="light"] .pricing-card-desc,
html[data-theme="light"] .pricing-card-features li,
html[data-theme="light"] .cta-description,
html[data-theme="light"] .cta-guarantee-item,
html[data-theme="light"] .footer-description,
html[data-theme="light"] .footer-links a,
html[data-theme="light"] .footer-bottom-content p,
html[data-theme="light"] .footer-legal,
html[data-theme="light"] .nav-menu-copyright {
    color: rgba(10, 25, 47, 0.72);
}

html[data-theme="light"] .feature-card,
html[data-theme="light"] .benefit-card,
html[data-theme="light"] .testimonial-card,
html[data-theme="light"] .pricing-card,
html[data-theme="light"] .stat-item,
html[data-theme="light"] .dashboard-mockup,
html[data-theme="light"] .glass-card-dark,
html[data-theme="light"] .card-depth {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.94), rgba(255, 250, 240, 0.88));
    border-color: rgba(10, 25, 47, 0.1);
    box-shadow: 0 18px 45px rgba(10, 25, 47, 0.1);
}

html[data-theme="light"] .pricing-card-featured {
    background: linear-gradient(145deg, rgba(212, 175, 55, 0.16), rgba(255, 255, 255, 0.94));
    border-color: rgba(212, 175, 55, 0.45);
}

html[data-theme="light"] .feature-tag,
html[data-theme="light"] .features-badge,
html[data-theme="light"] .benefits-badge,
html[data-theme="light"] .testimonials-badge,
html[data-theme="light"] .pricing-badge,
html[data-theme="light"] .cta-badge,
html[data-theme="light"] .hero-badge {
    background: rgba(212, 175, 55, 0.14);
    border-color: rgba(184, 148, 31, 0.26);
    color: var(--gold-dark);
}

html[data-theme="light"] .feature-card-icon,
html[data-theme="light"] .benefit-card-icon {
    background: rgba(212, 175, 55, 0.16);
    border-color: rgba(184, 148, 31, 0.26);
    color: var(--gold-dark);
}

html[data-theme="light"] .footer {
    background: #fffaf0;
    border-top-color: rgba(10, 25, 47, 0.1);
}

html[data-theme="light"] .blob-premium {
    opacity: 0.14;
}

html[data-theme="light"] .nav-overlay {
    background: rgba(10, 25, 47, 0.32);
}

@media (max-width: 768px) {
    .navbar-content {
        gap: 0.75rem;
    }

    .nav-logo {
        min-width: 0;
    }

    .nav-actions {
        gap: 0.5rem;
        flex-shrink: 0;
    }

    .navbar-premium .nav-signin,
    .navbar-premium .btn-nav {
        display: none !important;
    }

    .navbar-premium .theme-toggle,
    .navbar-premium .nav-hamburger {
        display: flex !important;
        width: 44px;
        min-width: 44px;
        height: 44px;
        min-height: 44px;
        padding: 0;
        flex-shrink: 0;
    }

    .nav-menu {
        top: 0;
        right: 0;
        left: auto;
        width: min(86vw, 360px);
        max-width: none;
        height: 100vh;
        height: 100dvh;
        padding: 5.5rem 1.5rem 1.5rem;
        display: flex;
        align-items: stretch;
        justify-content: flex-start;
        gap: 1.25rem;
        transform: translateX(100%);
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.25s ease, visibility 0.25s ease;
        box-shadow: -18px 0 44px rgba(10, 25, 47, 0.22);
    }

    .nav-menu.active {
        right: 0;
        transform: translateX(0);
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
    }

    .nav-menu-links {
        align-items: stretch;
        gap: 0.5rem;
    }

    .nav-link {
        min-height: 48px;
        justify-content: flex-start;
        color: var(--gray-light);
        background: rgba(255, 255, 255, 0.04);
        border: 1px solid rgba(255, 255, 255, 0.08);
    }

    .nav-link:hover,
    .nav-link:focus {
        color: var(--gold-primary);
        background: rgba(212, 175, 55, 0.1);
        border-color: rgba(212, 175, 55, 0.22);
    }

    .nav-menu-footer {
        width: 100%;
    }

    .nav-menu-actions {
        display: grid;
        gap: 0.75rem;
        width: 100%;
        margin-top: auto;
        padding-top: 1rem;
    }

    .nav-menu-action {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 0.5rem;
        min-height: 48px;
        border-radius: 12px;
        font-size: 0.9375rem;
        font-weight: 700;
        text-decoration: none;
        transition: background var(--transition-normal), border-color var(--transition-normal), color var(--transition-normal), transform var(--transition-normal);
    }

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

    .nav-menu-action-secondary {
        color: var(--gray-light);
        border: 1px solid rgba(255, 255, 255, 0.12);
        background: rgba(255, 255, 255, 0.05);
    }

    .nav-menu-action:hover,
    .nav-menu-action:focus {
        transform: translateY(-1px);
    }

    html[data-theme="light"] .nav-link {
        color: var(--navy-dark);
        background: rgba(10, 25, 47, 0.035);
        border-color: rgba(10, 25, 47, 0.08);
    }

    html[data-theme="light"] .nav-link:hover,
    html[data-theme="light"] .nav-link:focus {
        color: var(--gold-dark);
        background: rgba(212, 175, 55, 0.14);
        border-color: rgba(184, 148, 31, 0.26);
    }

    html[data-theme="light"] .nav-menu-action-secondary {
        color: var(--navy-dark);
        border-color: rgba(10, 25, 47, 0.1);
        background: rgba(10, 25, 47, 0.035);
    }
}

@media (max-width: 480px) {
    .nav-menu {
        width: min(92vw, 340px);
        padding: 5rem 1rem 1.25rem;
    }

    .nav-actions {
        gap: 0.375rem;
    }

    .theme-toggle,
    .nav-hamburger {
        width: 40px;
        min-width: 40px;
        height: 40px;
        min-height: 40px;
        padding: 0;
    }
}

/* ========================================
   PREMIUM VISUAL ELEMENTS - GOAT LEVEL
   ======================================== */

/* Premium Background Patterns */
.premium-bg-pattern {
    position: relative;
    overflow: hidden;
}

.premium-bg-pattern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        radial-gradient(circle at 20% 80%, rgba(212, 175, 55, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(212, 175, 55, 0.03) 0%, transparent 50%);
    pointer-events: none;
    z-index: -1;
}

/* Premium Gradient Borders */
.gradient-border {
    position: relative;
    background: linear-gradient(var(--navy-dark), var(--navy-dark)) padding-box,
                var(--gold-gradient) border-box;
    border: 2px solid transparent;
    border-radius: var(--radius-lg);
}

.gradient-border-thick {
    border-width: 4px;
}

.gradient-border-glow {
    box-shadow: 0 0 30px rgba(212, 175, 55, 0.2);
}

/* Premium Badges */
.badge-premium-glow {
    display: inline-block;
    padding: 0.5rem 1.25rem;
    background: var(--gold-gradient);
    color: var(--navy-dark);
    font-size: 0.875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 50px;
    box-shadow: var(--shadow-gold);
    position: relative;
    overflow: hidden;
}

.badge-premium-glow::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s ease;
}

.badge-premium-glow:hover::before {
    left: 100%;
}

/* Premium Icons */
.premium-icon-wrapper {
    position: relative;
    display: inline-block;
}

.premium-icon-wrapper::before {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    background: var(--gold-gradient);
    border-radius: 50%;
    opacity: 0.1;
    z-index: -1;
    animation: pulse-gold 3s infinite;
}

/* Premium Section Headers */
.section-header-premium {
    position: relative;
    text-align: center;
    margin-bottom: var(--spacing-xl);
}

.section-header-premium::before {
    content: '';
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--gold-gradient);
    border-radius: 2px;
}

/* Premium Cards with Depth */
.card-depth {
    background: linear-gradient(145deg, var(--navy-medium), var(--navy-light));
    border-radius: var(--radius-lg);
    border: 1px solid rgba(212, 175, 55, 0.1);
    box-shadow:
        0 10px 30px rgba(0, 0, 0, 0.3),
        0 1px 3px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
    position: relative;
    overflow: hidden;
}

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

/* Premium Stats */
.stat-counter-premium {
    font-size: 3rem;
    font-weight: 800;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    display: inline-block;
}

/* Premium Separators */
.separator-premium {
    height: 1px;
    background: linear-gradient(90deg,
        transparent,
        var(--gold-primary),
        transparent);
    margin: var(--spacing-lg) 0;
    position: relative;
}

/* Premium Loading Spinners */
.loading-spinner-premium {
    width: 50px;
    height: 50px;
    border: 3px solid rgba(212, 175, 55, 0.1);
    border-top-color: var(--gold-primary);
    border-right-color: var(--gold-light);
    border-radius: 50%;
    animation: spin 1s linear infinite, pulse-gold 2s ease-in-out infinite;
}

/* Premium Text Effects */
.text-glow {
    text-shadow: 0 0 20px rgba(212, 175, 55, 0.5),
                 0 0 40px rgba(212, 175, 55, 0.3);
}

.text-shimmer {
    background: linear-gradient(90deg,
        var(--gold-primary),
        var(--gold-light),
        var(--gold-primary));
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: text-shimmer 3s linear infinite;
}

/* Premium Form Elements */
.input-premium {
    background: rgba(255, 255, 255, 0.9);
    border: 2px solid rgba(10, 25, 47, 0.1);
    border-radius: var(--radius-md);
    padding: 0.875rem 1rem;
    font-size: 1rem;
    transition: all 0.3s ease;
    width: 100%;
}

.input-premium:focus {
    outline: none;
    border-color: var(--gold-primary);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
    background: rgba(255, 255, 255, 1);
}

/* Premium Notification Badges */
.notification-badge-premium {
    position: absolute;
    top: -8px;
    right: -8px;
    width: 20px;
    height: 20px;
    background: var(--gold-gradient);
    color: var(--navy-dark);
    font-size: 0.75rem;
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-gold);
    animation: pulse-gold 2s infinite;
}

/* Premium Image Frames */
.image-frame-premium {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.image-frame-premium::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border: 2px solid transparent;
    background: linear-gradient(var(--white), var(--white)) padding-box,
                var(--gold-gradient) border-box;
    border-radius: var(--radius-lg);
    pointer-events: none;
    z-index: 1;
}

/* Premium Background Blobs */
.blob-premium {
    position: absolute;
    border-radius: 50%;
    filter: blur(40px);
    opacity: 0.1;
    z-index: -1;
    animation: morph 20s infinite alternate ease-in-out;
}

.blob-premium-1 {
    width: 300px;
    height: 300px;
    background: var(--gold-gradient);
    top: 10%;
    left: 10%;
}

.blob-premium-2 {
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, var(--navy-light), var(--navy-dark));
    bottom: 20%;
    right: 15%;
    animation-delay: 5s;
}

/* Premium Quote Marks */
.quote-mark-premium {
    position: absolute;
    top: -20px;
    left: -10px;
    font-size: 5rem;
    color: var(--gold-primary);
    opacity: 0.2;
    font-family: 'Playfair Display', serif;
    z-index: 0;
}

/* Premium Scroll Indicators */
.scroll-indicator-premium {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 50px;
    border: 2px solid var(--gold-primary);
    border-radius: 15px;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.scroll-indicator-premium::before {
    content: '';
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 10px;
    background: var(--gold-primary);
    border-radius: 2px;
    animation: bounce-subtle 2s infinite;
}

/* ========================================
   PERFORMANCE OPTIMIZATION - GOAT LEVEL
   ======================================== */

/* Will-change optimizations for smooth animations */
.animate-transform {
    will-change: transform;
}

.animate-opacity {
    will-change: opacity;
}

.animate-all {
    will-change: transform, opacity;
}

/* Containment for performance */
.contain-layout {
    contain: layout style paint;
}

.contain-content {
    contain: content;
}

.contain-strict {
    contain: strict;
}

/* Hardware acceleration for animations */
.hardware-accelerate {
    transform: translateZ(0);
    backface-visibility: hidden;
    perspective: 1000px;
}

/* Optimized image rendering */
.image-optimized {
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
    image-rendering: pixelated;
}

/* Reduced motion alternatives */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }

    .hero-premium {
        animation: none !important;
        background-size: cover !important;
    }

    .feature-card,
    .pricing-card,
    .testimonial-card,
    .benefit-card {
        animation: none !important;
        transition: none !important;
    }

    .hover-lift:hover,
    .hover-scale:hover,
    .hover-rotate:hover {
        transform: none !important;
    }
}

/* Content-visibility for offscreen content */
.offscreen-content {
    content-visibility: auto;
    contain-intrinsic-size: 0 500px;
}

/* Optimized font loading */
.font-optimized {
    font-display: swap;
    font-feature-settings: 'kern' 1, 'liga' 1, 'calt' 1;
}

/* Optimized background images */
.bg-optimized {
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    image-rendering: -webkit-optimize-contrast;
}

/* Optimized gradients */
.gradient-optimized {
    background-attachment: scroll;
    background-repeat: no-repeat;
}

/* Optimized shadows */
.shadow-optimized {
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

/* Optimized transitions */
.transition-optimized {
    transition-property: transform, opacity, background-color, color;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 200ms;
}

/* Optimized animations */
.animation-optimized {
    animation-duration: 0.3s;
    animation-fill-mode: both;
    animation-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}

/* Optimized flexbox/grid */
.layout-optimized {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
}

/* Optimized text rendering */
.text-optimized {
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Optimized border rendering */
.border-optimized {
    border-style: solid;
    border-width: 1px;
    border-image-slice: 1;
}

/* Optimized z-index layering */
.z-optimized {
    isolation: isolate;
    position: relative;
    z-index: 1;
}

/* Optimized overflow handling */
.overflow-optimized {
    overflow: hidden;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    scrollbar-color: var(--gold-primary) transparent;
}

.overflow-optimized::-webkit-scrollbar {
    width: 6px;
    height: 6px;
}

.overflow-optimized::-webkit-scrollbar-track {
    background: transparent;
}

.overflow-optimized::-webkit-scrollbar-thumb {
    background: var(--gold-primary);
    border-radius: 3px;
}

/* Optimized print styles */
@media print {
    * {
        background: transparent !important;
        color: #000 !important;
        box-shadow: none !important;
        text-shadow: none !important;
    }

    .navbar-premium,
    .announcement-bar,
    .nav-overlay,
    .nav-hamburger,
    .hero-cta-group,
    .hero-bottom-stats,
    .cta-section,
    .footer,
    .scroll-indicator-premium {
        display: none !important;
    }

    a,
    a:visited {
        text-decoration: underline;
    }

    a[href]::after {
        content: " (" attr(href) ")";
    }

    abbr[title]::after {
        content: " (" attr(title) ")";
    }

    pre,
    blockquote {
        border: 1px solid #999;
        page-break-inside: avoid;
    }

    thead {
        display: table-header-group;
    }

    tr,
    img {
        page-break-inside: avoid;
    }

    img {
        max-width: 100% !important;
    }

    p,
    h2,
    h3 {
        orphans: 3;
        widows: 3;
    }

    h2,
    h3 {
        page-break-after: avoid;
    }
}

/* Optimized dark mode transitions */
@media (prefers-color-scheme: dark) {
    .dark-transition-optimized {
        transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
    }
}

/* Optimized focus styles for accessibility */
.focus-optimized:focus {
    outline: 2px solid var(--gold-primary);
    outline-offset: 2px;
    box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.1);
}

/* Optimized touch targets */
.touch-optimized {
    min-height: 44px;
    min-width: 44px;
    padding: 0.75rem 1rem;
}

/* Optimized loading states */
.loading-optimized {
    background: linear-gradient(90deg,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0.1) 50%,
        rgba(255, 255, 255, 0) 100%);
    background-size: 200% 100%;
    animation: shimmer 2s infinite;
}

/* Optimized aspect ratios */
.aspect-optimized {
    aspect-ratio: 16 / 9;
    object-fit: cover;
}

/* Optimized CSS custom properties */
:root {
    /* Performance optimized variables */
    --perf-transition-fast: 150ms;
    --perf-transition-normal: 250ms;
    --perf-transition-slow: 350ms;
    --perf-animation-duration: 0.3s;
    --perf-shadow-optimized: 0 2px 8px rgba(10, 25, 47, 0.08);
}

/* Optimized media queries */
@media (max-width: 768px) {
    .mobile-perf-optimized {
        contain: content;
        will-change: transform;
    }
}

/* Final mobile nav stabilization after shared utility classes */
@media (max-width: 768px) {
    .navbar-premium .nav-signin,
    .navbar-premium .btn-nav {
        display: none !important;
    }

    .navbar-premium .theme-toggle,
    .navbar-premium .nav-hamburger {
        display: flex !important;
    }
}

@media (max-width: 480px) {
    .navbar-premium .theme-toggle,
    .navbar-premium .nav-hamburger {
        width: 40px;
        min-width: 40px;
        height: 40px;
        min-height: 40px;
        padding: 0;
    }
}

/* Final performance note */
/*
   This CSS file has been optimized for performance with:
   - Will-change hints for animations
   - Containment for layout stability
   - Reduced motion support
   - Optimized transitions and animations
   - Hardware acceleration where needed
   - Print styles for better printing
   - Accessibility optimizations
   - Touch target optimizations
*/
