/* Custom Fonts */
@font-face {
    font-family: 'HeaderFont';
    src: url('38184073029.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'BodyFont';
    src: url('31862445252.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

/* CSS Variables */
:root {
    --primary-blue: #0BA6EE;
    --primary-yellow: #FFC000;
    --dark-gray: #313030;
    --light-gray: #C7C9CB;
    --white: #ffffff;
    --black: #000000;
    --gray-50: #f9fafb;
    --gray-100: #f3f4f6;
    --gray-200: #e5e7eb;
    --gray-300: #d1d5db;
    --gray-400: #9ca3af;
    --gray-500: #6b7280;
    --gray-600: #4b5563;
    --gray-700: #374151;
    --gray-800: #1f2937;
    --gray-900: #111827;
    
    /* Typography */
    --font-family: 'BodyFont', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-family-headers: 'HeaderFont', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-size-xs: 0.75rem;
    --font-size-sm: 0.875rem;
    --font-size-base: 1rem;
    --font-size-lg: 1.125rem;
    --font-size-xl: 1.25rem;
    --font-size-2xl: 1.5rem;
    --font-size-3xl: 1.875rem;
    --font-size-4xl: 2.25rem;
    --font-size-5xl: 3rem;
    --font-size-6xl: 3.4375rem;
    
    /* Spacing */
    --spacing-1: 0.25rem;
    --spacing-2: 0.5rem;
    --spacing-3: 0.75rem;
    --spacing-4: 1rem;
    --spacing-5: 1.25rem;
    --spacing-6: 1.5rem;
    --spacing-8: 2rem;
    --spacing-10: 2.5rem;
    --spacing-12: 3rem;
    --spacing-16: 4rem;
    --spacing-20: 5rem;
    --spacing-24: 6rem;
    
    /* Border Radius */
    --radius-sm: 0.25rem;
    --radius-md: 0.375rem;
    --radius-lg: 0.5rem;
    --radius-xl: 0.75rem;
    --radius-2xl: 1rem;
    --radius-3xl: 1.5rem;
    --radius-full: 9999px;
    
    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    
    /* Transitions */
    --transition-fast: 150ms ease-in-out;
    --transition-normal: 300ms ease-in-out;
    --transition-slow: 500ms ease-in-out;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-family);
    line-height: 1.6;
    color: var(--gray-700);
    background-color: var(--white);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-4);
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-family-headers);
    font-weight: 700;
    line-height: 1.2;
    color: var(--gray-900);
}

h1 { font-size: var(--font-size-5xl); }
h2 { font-size: var(--font-size-4xl); }
h3 { font-size: var(--font-size-2xl); }
h4 { font-size: var(--font-size-xl); }

p {
    margin-bottom: var(--spacing-4);
    color: var(--gray-600);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: var(--spacing-3) var(--spacing-6);
    border: none;
    border-radius: var(--radius-xl);
    font-family: var(--font-family);
    font-size: var(--font-size-base);
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: var(--transition-normal);
    white-space: nowrap;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-blue), #0995d4);
    color: var(--white);
    box-shadow: var(--shadow-md);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    background: var(--white);
    color: var(--gray-900);
    border: 2px solid var(--gray-200);
    box-shadow: var(--shadow-sm);
}

.btn-secondary:hover {
    border-color: var(--primary-blue);
    color: var(--primary-blue);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-large {
    padding: var(--spacing-4) var(--spacing-8);
    font-size: var(--font-size-lg);
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: #000000 !important;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--gray-800);
    z-index: 1000;
    height: 80px; /* Set fixed height */
    display: flex;
    align-items: center;
    padding: var(--spacing-4) 0;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-4);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    display: flex;
    align-items: center;
}

.logo-img {
    height: 60px;
    width: auto;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: var(--spacing-8);
    align-items: center;
}

.nav-link {
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    font-family: var(--font-family);
    transition: var(--transition-fast);
    padding: var(--spacing-2) var(--spacing-3);
    border-radius: var(--radius-lg);
}

.nav-link:hover {
    color: var(--primary-blue);
    background: var(--gray-800);
}

/* Dropdown styles */
.dropdown {
    position: relative;
}

.dropdown .nav-link {
    display: flex;
    align-items: center;
    gap: var(--spacing-1);
}

.dropdown .nav-link i {
    font-size: 0.75rem;
    transition: var(--transition-fast);
}

.dropdown:hover .nav-link i {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: #000000;
    border: 1px solid var(--gray-600);
    border-radius: var(--radius-lg);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: var(--transition-fast);
    z-index: 1000;
    list-style: none;
    padding: var(--spacing-2) 0;
    margin: 0;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    margin: 0;
}

.dropdown-link {
    display: block;
    padding: var(--spacing-3) var(--spacing-4);
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    font-family: var(--font-family);
    transition: var(--transition-fast);
}

.dropdown-link:hover {
    color: var(--primary-blue);
    background: #1a1a1a;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    z-index: 1000;
}

.bar {
    width: 25px;
    height: 3px;
    background-color: var(--white);
    margin: 3px 0;
    transition: var(--transition-fast);
    border-radius: var(--radius-sm);
}

/* Hamburger Animation */
.hamburger.active .bar:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.hamburger.active .bar:nth-child(2) {
    opacity: 0;
}

.hamburger.active .bar:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}

/* Hide hamburger when mobile menu is active */
@media (max-width: 768px) {
    .hamburger.active {
        display: none !important;
    }
}

/* Hero Section - KEEPING EXACTLY AS IS */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-4);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-16);
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-content {
    color: var(--white);
}

.hero-title {
    font-size: var(--font-size-6xl);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: var(--spacing-8);
    color: var(--white);
}

.highlight-blue {
    color: #0BA6EE !important;
    font-weight: 800 !important;
    text-shadow: 0 2px 4px rgba(11, 166, 238, 0.3) !important;
}

.highlight-yellow {
    color: #FFC000 !important;
    font-weight: 800 !important;
    text-shadow: 0 2px 4px rgba(255, 192, 0, 0.3) !important;
}

.title-line {
    display: block;
    margin-bottom: var(--spacing-2);
}

.hero-subtitle {
    font-size: var(--font-size-lg);
    line-height: 1.6;
    color: var(--white);
    margin-bottom: var(--spacing-8);
    max-width: 500px;
}

.hero-buttons {
    display: flex;
    gap: var(--spacing-4);
}

.hero-visual {
    position: relative;
    height: 500px;
}

/* ===== MAIN HERO FLOATING CARDS - DESKTOP ===== */
.floating-elements {
    position: relative;
    width: 100%;
    height: 100%;
}

.floating-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: var(--spacing-6);
    border-radius: var(--radius-xl);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: var(--shadow-lg);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--spacing-3);
    animation: float 6s ease-in-out infinite;
    transition: var(--transition-normal);
    min-width: 120px;
    z-index: 10; /* Ensure cards are above background */
}

.floating-card:hover {
    transform: scale(1.1) translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.floating-card i {
    font-size: var(--font-size-3xl);
    color: var(--primary-blue);
}

.floating-card span {
    font-weight: 600;
    color: var(--dark-gray);
}

/* Proper positioning for desktop - no overlapping */
.card-1 {
    top: 15%;
    left: 5%;
    animation-delay: 0s;
}

.card-2 {
    top: 45%;
    right: 10%;
    animation-delay: 2s;
}

.card-3 {
    bottom: 15%;
    left: 25%;
    animation-delay: 4s;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.hero-background img,
.hero-background video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.3) contrast(1.2);
}

.hero-background::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(0,0,0,0.25) 0%, rgba(0,0,0,0.1) 100%);
}

/* Services Section - UPDATED ICON COLORS */
.services {
    padding: var(--spacing-24) 0;
    background: linear-gradient(135deg, var(--gray-50) 0%, var(--white) 100%);
}

.section-header {
    text-align: center;
    margin-bottom: var(--spacing-16);
}

.section-title {
    color: var(--gray-900);
    margin-bottom: var(--spacing-4);
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-blue), var(--primary-yellow));
    border-radius: var(--radius-full);
}

.section-subtitle {
    font-size: var(--font-size-lg);
    color: var(--gray-600);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: var(--spacing-8);
}

.service-card {
    background: var(--white);
    padding: var(--spacing-8);
    border-radius: var(--radius-3xl);
    box-shadow: var(--shadow-lg);
    transition: var(--transition-normal);
    border: 1px solid var(--gray-100);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-blue), var(--primary-yellow));
    border-radius: var(--radius-3xl) var(--radius-3xl) 0 0;
}

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

.service-icon {
    width: 80px;
    height: 80px;
    border-radius: var(--radius-2xl);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--spacing-6);
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

/* Alternating icon colors */
.service-card:nth-child(1) .service-icon {
    background: var(--primary-blue);
}

.service-card:nth-child(2) .service-icon {
    background: var(--primary-yellow);
}

.service-card:nth-child(3) .service-icon {
    background: var(--dark-gray);
}

.service-card:nth-child(4) .service-icon {
    background: var(--primary-blue);
}

.service-card:nth-child(5) .service-icon {
    background: var(--primary-yellow);
}

.service-card:nth-child(6) .service-icon {
    background: var(--dark-gray);
}

.service-icon i {
    font-size: var(--font-size-3xl);
    color: var(--white);
    position: relative;
    z-index: 1;
}

.service-card h3 {
    font-size: var(--font-size-2xl);
    margin-bottom: var(--spacing-4);
    color: var(--gray-900);
    font-weight: 700;
}

.service-card p {
    color: var(--gray-600);
    margin-bottom: var(--spacing-6);
    line-height: 1.6;
}

.aire-method {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-4);
    margin-top: var(--spacing-6);
}

.method-item {
    display: flex;
    align-items: center;
    gap: var(--spacing-3);
    padding: var(--spacing-4);
    background: var(--gray-50);
    border-radius: var(--radius-xl);
    transition: var(--transition-fast);
    border: 1px solid var(--gray-100);
}

.method-item:hover {
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-yellow));
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.method-letter {
    width: 32px;
    height: 32px;
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: var(--font-size-sm);
    box-shadow: var(--shadow-sm);
}

/* Alternating method letter colors */
.method-item:nth-child(1) .method-letter {
    background: var(--primary-blue);
    color: var(--white);
}

.method-item:nth-child(2) .method-letter {
    background: var(--primary-yellow);
    color: var(--black);
}

.method-item:nth-child(3) .method-letter {
    background: var(--dark-gray);
    color: var(--white);
}

.method-item:nth-child(4) .method-letter {
    background: var(--primary-blue);
    color: var(--white);
}

.method-item:hover .method-letter {
    background: var(--white);
    color: var(--primary-blue);
}

.method-text {
    font-size: var(--font-size-sm);
    font-weight: 600;
}

.coaching-features {
    list-style: none;
    margin-top: var(--spacing-6);
}

.coaching-features li {
    display: flex;
    align-items: center;
    gap: var(--spacing-3);
    margin-bottom: var(--spacing-3);
    color: var(--gray-600);
    padding: var(--spacing-2) 0;
}

.coaching-features i {
    font-size: var(--font-size-sm);
    width: 24px;
    height: 24px;
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Alternating check icon colors */
.coaching-features li:nth-child(1) i {
    background: var(--primary-blue);
    color: var(--white);
}

.coaching-features li:nth-child(2) i {
    background: var(--primary-yellow);
    color: var(--black);
}

.coaching-features li:nth-child(3) i {
    background: var(--dark-gray);
    color: var(--white);
}

.coaching-features li:nth-child(4) i {
    background: var(--primary-blue);
    color: var(--white);
}

/* About Section */
.about {
    padding: var(--spacing-24) 0;
    background: var(--white);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-16);
    align-items: center;
}

.about-text h2 {
    font-size: var(--font-size-4xl);
    margin-bottom: var(--spacing-6);
    color: var(--gray-900);
    position: relative;
}

.about-text h2::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-blue), var(--primary-yellow));
    border-radius: var(--radius-full);
}

.about-text p {
    font-size: var(--font-size-lg);
    line-height: 1.6;
    color: var(--gray-600);
    margin-bottom: var(--spacing-6);
}

.stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-6);
    margin-top: var(--spacing-8);
}

.stat-item {
    text-align: center;
    padding: var(--spacing-6);
    background: var(--gray-50);
    border-radius: var(--radius-2xl);
    box-shadow: var(--shadow-md);
    transition: var(--transition-normal);
    border: 1px solid var(--gray-100);
    position: relative;
    overflow: hidden;
}

.stat-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-blue), var(--primary-yellow));
}

.stat-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
}

.stat-number {
    display: block;
    font-size: var(--font-size-4xl);
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-yellow));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: var(--spacing-2);
}

.stat-label {
    font-size: var(--font-size-sm);
    color: var(--gray-600);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.about-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: var(--radius-3xl);
    box-shadow: var(--shadow-xl);
    border: 4px solid var(--white);
}

/* Mobile About Section */
@media (max-width: 768px) {
    .about-content {
        grid-template-columns: 1fr;
        gap: var(--spacing-8);
    }
    
    .about-text h2 {
        font-size: var(--font-size-3xl);
        text-align: center;
    }
    
    .about-text h2::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .about-text p {
        font-size: var(--font-size-base);
        text-align: center;
    }
    
    .stats {
        grid-template-columns: repeat(3, 1fr);
        gap: var(--spacing-4);
    }
    
    .stat-item {
        padding: var(--spacing-4);
    }
    
    .stat-number {
        font-size: var(--font-size-2xl);
    }
    
    .stat-label {
        font-size: var(--font-size-xs);
    }
    
    .about-image {
        height: 300px;
        order: -1;
    }
}

@media (max-width: 480px) {
    .about {
        padding: var(--spacing-16) 0;
    }
    
    .about-text h2 {
        font-size: var(--font-size-2xl);
    }
    
    .stats {
        grid-template-columns: 1fr;
        gap: var(--spacing-3);
    }
    
    .about-image {
        height: 250px;
    }
}

/* Features Section - UPDATED ICON COLORS */
.features {
    padding: var(--spacing-24) 0;
    background: linear-gradient(135deg, var(--gray-50) 0%, var(--white) 100%);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-8);
}

.feature-item {
    text-align: center;
    padding: var(--spacing-8);
    background: var(--white);
    border-radius: var(--radius-3xl);
    box-shadow: var(--shadow-lg);
    transition: var(--transition-normal);
    border: 1px solid var(--gray-100);
    position: relative;
    overflow: hidden;
}

.feature-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-blue), var(--primary-yellow));
    border-radius: var(--radius-3xl) var(--radius-3xl) 0 0;
}

.feature-item:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-2xl);
}

.feature-icon {
    width: 80px;
    height: 80px;
    border-radius: var(--radius-2xl);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--spacing-6);
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

/* Alternating feature icon colors */
.feature-item:nth-child(1) .feature-icon {
    background: var(--primary-blue);
}

.feature-item:nth-child(2) .feature-icon {
    background: var(--primary-yellow);
}

.feature-item:nth-child(3) .feature-icon {
    background: var(--dark-gray);
}

.feature-item:nth-child(4) .feature-icon {
    background: var(--primary-blue);
}

.feature-item:nth-child(5) .feature-icon {
    background: var(--primary-yellow);
}

.feature-item:nth-child(6) .feature-icon {
    background: var(--dark-gray);
}

.feature-icon i {
    font-size: var(--font-size-3xl);
    color: var(--white);
    position: relative;
    z-index: 1;
}

.feature-item:nth-child(2) .feature-icon i,
.feature-item:nth-child(5) .feature-icon i {
    color: var(--black);
}

.feature-item h3 {
    font-size: var(--font-size-xl);
    margin-bottom: var(--spacing-4);
    color: var(--gray-900);
    font-weight: 700;
}

.feature-item p {
    color: var(--gray-600);
    font-size: var(--font-size-base);
    line-height: 1.6;
}

/* CTA Section */
.cta {
    padding: var(--spacing-24) 0;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-yellow) 100%);
    color: var(--white);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="white" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.cta-content {
    position: relative;
    z-index: 2;
}

.cta h2 {
    font-size: var(--font-size-4xl);
    margin-bottom: var(--spacing-6);
    color: var(--white);
    font-weight: 800;
}

.cta p {
    font-size: var(--font-size-lg);
    margin-bottom: var(--spacing-8);
    color: var(--white);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.cta .btn-primary {
    background: var(--white);
    color: var(--gray-900);
    font-weight: 700;
    padding: var(--spacing-4) var(--spacing-8);
    font-size: var(--font-size-lg);
    box-shadow: var(--shadow-xl);
}

.cta .btn-primary:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-2xl);
}

/* Contact Section - UPDATED ICON COLORS */
.contact {
    padding: var(--spacing-24) 0;
    background: var(--white);
}

.contact .section-header {
    margin-bottom: var(--spacing-16);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-16);
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-6);
}

.contact-item {
    display: flex;
    align-items: center;
    gap: var(--spacing-4);
    padding: var(--spacing-6);
    background: var(--gray-50);
    border-radius: var(--radius-2xl);
    transition: var(--transition-normal);
    border: 1px solid var(--gray-100);
}

.contact-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    background: var(--white);
}

.contact-item i {
    width: 60px;
    height: 60px;
    border-radius: var(--radius-xl);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: var(--font-size-xl);
    box-shadow: var(--shadow-md);
}

/* Alternating contact icon colors */
.contact-item:nth-child(1) i {
    background: var(--primary-blue);
    color: var(--white);
}

.contact-item:nth-child(2) i {
    background: var(--primary-yellow);
    color: var(--black);
}

.contact-item:nth-child(3) i {
    background: var(--dark-gray);
    color: var(--white);
}

.contact-item h4 {
    font-size: var(--font-size-lg);
    margin-bottom: var(--spacing-1);
    color: var(--gray-900);
    font-weight: 700;
}

.contact-item p {
    color: var(--gray-600);
    margin-bottom: 0;
    font-weight: 500;
}

.contact-form {
    background: var(--gray-50);
    padding: var(--spacing-12);
    border-radius: var(--radius-3xl);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--gray-100);
    min-height: 500px;
    display: flex;
    flex-direction: column;
    gap: var(--spacing-6);
}

.contact-form-header {
    display: flex;
    align-items: center;
    gap: var(--spacing-4);
    margin-bottom: var(--spacing-4);
}

.harmoni-avatar {
    flex-shrink: 0;
}

.avatar-image {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--primary-blue);
    box-shadow: var(--shadow-md);
}

.harmoni-text h3 {
    color: var(--gray-900);
    font-size: var(--font-size-xl);
    font-weight: 700;
    margin: 0;
    line-height: 1.3;
}

.contact-form-widget {
    flex: 1;
    min-height: 400px;
    border-radius: var(--radius-xl);
    overflow: hidden;
}

.form-group {
    margin-bottom: var(--spacing-6);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: var(--spacing-4);
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-xl);
    font-family: var(--font-family);
    font-size: var(--font-size-base);
    transition: var(--transition-fast);
    background: var(--white);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 4px rgba(11, 166, 238, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--gray-500);
}

.contact-form .btn-primary {
    width: 100%;
    padding: var(--spacing-4);
    font-size: var(--font-size-lg);
    font-weight: 700;
}

/* Contact form iframe styling */
.contact-form iframe {
    width: 100%;
    height: 100%;
    border: none;
    border-radius: var(--radius-xl);
}

/* Mobile Navigation Styles */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 0;
        flex-direction: column;
        background-color: #000000;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: var(--shadow-xl);
        padding-top: 80px;
        height: 100vh;
        z-index: 999;
        position: relative;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-menu li {
        margin: 1rem 0;
    }
    
    .nav-link {
        font-size: var(--font-size-lg);
        padding: var(--spacing-4);
        color: #ffffff;
        font-family: var(--font-family);
    }
    
    .dropdown-menu {
        position: static;
        background: transparent;
        box-shadow: none;
        opacity: 1;
        visibility: visible;
        transform: none;
        padding: 0;
        margin-top: var(--spacing-2);
    }
    
    .dropdown-link {
        padding: var(--spacing-2) var(--spacing-4);
        font-size: var(--font-size-base);
        color: #ffffff;
        font-family: var(--font-family);
    }
    
    .mobile-close-btn {
        position: fixed;
        top: 20px;
        right: 20px;
        background: none;
        border: none;
        color: #ffffff;
        font-size: 24px;
        cursor: pointer;
        z-index: 1001;
        padding: 10px;
        border-radius: 50%;
        transition: background-color 0.3s ease;
        display: none;
    }
    
    .mobile-close-btn:hover {
        background-color: rgba(255, 255, 255, 0.1);
    }
    
    /* Hide mobile close button by default and on desktop */
    .mobile-close-btn {
        display: none !important;
    }
    
    /* Show mobile close button only on mobile when menu is active */
    @media (max-width: 768px) {
        .mobile-close-btn.show {
            display: block !important;
        }
    }
}

/* Responsive contact form */
@media (max-width: 768px) {
    .contact-content {
        grid-template-columns: 1fr;
        gap: var(--spacing-8);
    }
    
    .contact-form {
        padding: var(--spacing-6);
        min-height: 400px;
    }
    
    .contact-form-header {
        flex-direction: column;
        text-align: center;
        gap: var(--spacing-3);
    }
    
    .harmoni-text h3 {
        font-size: var(--font-size-lg);
    }
}

@media (max-width: 480px) {
    .contact-form {
        padding: var(--spacing-4);
        min-height: 350px;
    }
    
    .contact-form-header {
        gap: var(--spacing-2);
    }
    
    .avatar-image {
        width: 65px;
        height: 65px;
    }
    
    .harmoni-text h3 {
        font-size: var(--font-size-base);
    }
}

/* Footer */
.footer {
    background: linear-gradient(135deg, var(--gray-900) 0%, var(--gray-800) 100%);
    color: var(--white);
    padding: var(--spacing-16) 0 var(--spacing-8);
    position: relative;
    overflow: hidden;
}

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

.footer-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: var(--spacing-8);
}

.footer-logo-img {
    height: 80px !important;
    width: auto !important;
    filter: brightness(0) invert(1);
    max-width: none !important;
    min-height: 80px !important;
}

.footer-tagline p {
    color: var(--gray-400);
    margin-bottom: 0;
    font-weight: 500;
}

.footer-bottom {
    text-align: center;
    padding-top: var(--spacing-8);
    border-top: 1px solid var(--gray-700);
    color: var(--gray-400);
    font-size: var(--font-size-sm);
}

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

/* Service Features */
.service-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-3);
    margin-bottom: var(--spacing-6);
}

.feature-tag {
    display: flex;
    align-items: center;
    gap: var(--spacing-2);
    padding: var(--spacing-2) var(--spacing-3);
    background: var(--gray-50);
    border-radius: var(--radius-lg);
    font-size: var(--font-size-sm);
    font-weight: 500;
    color: var(--gray-700);
    border: 1px solid var(--gray-100);
    transition: var(--transition-fast);
}

.feature-tag:hover {
    background: var(--gray-100);
    transform: translateY(-1px);
}

.feature-tag i {
    color: var(--primary-blue);
    font-size: var(--font-size-sm);
}

/* Service CTA Button */
.service-cta {
    width: 100%;
    margin-top: var(--spacing-4);
    padding: var(--spacing-3) var(--spacing-6);
    font-weight: 600;
    transition: var(--transition-normal);
}

.service-cta:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* How It Works Section */
.how-it-works {
    padding: var(--spacing-24) 0;
    background: var(--white);
}

.process-steps {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-12);
}

.process-step {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: var(--spacing-8);
    align-items: start;
}

.step-number {
    width: 60px;
    height: 60px;
    color: var(--white);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: var(--font-size-xl);
    font-weight: 700;
    box-shadow: var(--shadow-md);
}

/* Alternating step number colors */
.process-step:nth-child(1) .step-number {
    background: var(--primary-blue);
}

.process-step:nth-child(2) .step-number {
    background: var(--primary-yellow);
}

.process-step:nth-child(3) .step-number {
    background: var(--dark-gray);
}

.process-step:nth-child(4) .step-number {
    background: var(--primary-blue);
}

.step-content h3 {
    font-size: var(--font-size-2xl);
    margin-bottom: var(--spacing-4);
    color: var(--gray-900);
}

.step-content p {
    font-size: var(--font-size-lg);
    line-height: 1.6;
    color: var(--gray-600);
    margin-bottom: var(--spacing-6);
}

.step-features {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-3);
}

.step-feature {
    display: flex;
    align-items: center;
    gap: var(--spacing-3);
    color: var(--gray-700);
}

.step-feature i {
    color: var(--primary-blue);
    font-size: var(--font-size-sm);
}

/* Options Section */
.options {
    padding: var(--spacing-24) 0;
    background: var(--gray-50);
}

.options-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: var(--spacing-8);
}

.option-card {
    background: var(--white);
    border-radius: var(--radius-3xl);
    padding: var(--spacing-8);
    box-shadow: var(--shadow-lg);
    transition: var(--transition-normal);
    border: 1px solid var(--gray-100);
    position: relative;
    overflow: hidden;
}

.option-card.featured {
    border: 2px solid var(--primary-blue);
    transform: scale(1.02);
}

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

.option-card.featured:hover {
    transform: scale(1.02) translateY(-8px);
}

.option-header {
    text-align: center;
    margin-bottom: var(--spacing-6);
}

.option-icon {
    width: 80px;
    height: 80px;
    border-radius: var(--radius-2xl);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--spacing-4);
    box-shadow: var(--shadow-md);
}

/* Alternating option icon colors */
.option-card:nth-child(1) .option-icon {
    background: var(--primary-blue);
}

.option-card:nth-child(2) .option-icon {
    background: var(--primary-yellow);
}

.option-card:nth-child(3) .option-icon {
    background: var(--dark-gray);
}

.option-card:nth-child(4) .option-icon {
    background: var(--primary-blue);
}

.option-card:nth-child(5) .option-icon {
    background: var(--primary-yellow);
}

.option-card:nth-child(6) .option-icon {
    background: var(--dark-gray);
}

.option-icon i {
    font-size: var(--font-size-3xl);
    color: var(--white);
}

/* Yellow icons need dark text */
.option-card:nth-child(2) .option-icon i,
.option-card:nth-child(5) .option-icon i {
    color: var(--black);
}

.option-header h3 {
    font-size: var(--font-size-2xl);
    margin-bottom: var(--spacing-2);
    color: var(--gray-900);
}

.option-subtitle {
    color: var(--gray-600);
    font-size: var(--font-size-base);
}

.option-content p {
    color: var(--gray-600);
    line-height: 1.6;
    margin-bottom: var(--spacing-6);
}

.option-features {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-3);
    margin-bottom: var(--spacing-6);
}

.option-feature {
    display: flex;
    align-items: center;
    gap: var(--spacing-3);
    color: var(--gray-700);
}

.option-feature i {
    color: var(--primary-blue);
    font-size: var(--font-size-sm);
}

.option-card .btn {
    width: 100%;
}

/* Use Cases Section */
.use-cases {
    padding: var(--spacing-24) 0;
    background: var(--white);
}

.use-cases-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-8);
}

.use-case-item {
    text-align: center;
    padding: var(--spacing-8);
    background: var(--gray-50);
    border-radius: var(--radius-2xl);
    transition: var(--transition-normal);
    border: 1px solid var(--gray-100);
}

.use-case-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    background: var(--white);
}

.use-case-icon {
    width: 60px;
    height: 60px;
    background: var(--primary-blue);
    border-radius: var(--radius-xl);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--spacing-4);
}

.use-case-icon i {
    font-size: var(--font-size-2xl);
    color: var(--white);
}

.use-case-item h3 {
    font-size: var(--font-size-xl);
    margin-bottom: var(--spacing-4);
    color: var(--gray-900);
}

.use-case-item p {
    color: var(--gray-600);
    line-height: 1.6;
}

/* Benefits Section */
.benefits {
    padding: var(--spacing-24) 0;
    background: var(--gray-50);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-8);
}

.benefit-item {
    text-align: center;
    padding: var(--spacing-8);
    background: var(--white);
    border-radius: var(--radius-2xl);
    box-shadow: var(--shadow-md);
    transition: var(--transition-normal);
    border: 1px solid var(--gray-100);
}

.benefit-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
}

.benefit-icon {
    width: 60px;
    height: 60px;
    border-radius: var(--radius-xl);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--spacing-4);
}

/* Alternating benefit icon colors */
.benefit-item:nth-child(1) .benefit-icon {
    background: var(--primary-blue);
}

.benefit-item:nth-child(2) .benefit-icon {
    background: var(--primary-yellow);
}

.benefit-item:nth-child(3) .benefit-icon {
    background: var(--dark-gray);
}

.benefit-item:nth-child(4) .benefit-icon {
    background: var(--primary-blue);
}

.benefit-item:nth-child(5) .benefit-icon {
    background: var(--primary-yellow);
}

.benefit-item:nth-child(6) .benefit-icon {
    background: var(--dark-gray);
}

.benefit-icon i {
    font-size: var(--font-size-2xl);
    color: var(--white);
}

/* Yellow icons need dark text */
.benefit-item:nth-child(2) .benefit-icon i,
.benefit-item:nth-child(5) .benefit-icon i {
    color: var(--black);
}

.benefit-item h3 {
    font-size: var(--font-size-xl);
    margin-bottom: var(--spacing-4);
    color: var(--gray-900);
}

.benefit-item p {
    color: var(--gray-600);
    line-height: 1.6;
}

/* Method Cards for AIRE */
.method-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--spacing-8);
    justify-items: center; /* Center each card horizontally */
    max-width: 1200px; /* Limit maximum width for better centering */
    margin: 0 auto; /* Center the entire grid container */
}

/* Ensure cards have consistent width for better centering */
.method-card {
    background: var(--white);
    padding: var(--spacing-8);
    border-radius: var(--radius-2xl);
    box-shadow: var(--shadow-md);
    transition: var(--transition-normal);
    border: 1px solid var(--gray-100);
    width: 100%; /* Ensure full width within grid cell */
    max-width: 320px; /* Set maximum width for consistent card sizing */
}

/* Responsive adjustments for better centering */
@media (max-width: 768px) {
    .method-cards {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: var(--spacing-6);
        padding: 0 var(--spacing-4); /* Add some padding on mobile */
    }
    
    .method-card {
        max-width: 100%; /* Allow full width on mobile */
    }
}

@media (max-width: 480px) {
    .method-cards {
        grid-template-columns: 1fr; /* Single column on very small screens */
        gap: var(--spacing-4);
    }
}

.method-icon {
    width: 60px;
    height: 60px;
    background: var(--primary-blue);
    border-radius: var(--radius-xl);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--spacing-4);
}

.method-icon i {
    font-size: var(--font-size-2xl);
    color: var(--white);
}

.method-card h3 {
    font-size: var(--font-size-xl);
    margin-bottom: var(--spacing-4);
    color: var(--gray-900);
}

.method-card p {
    color: var(--gray-600);
    line-height: 1.6;
    margin-bottom: var(--spacing-4);
}

.method-features {
    list-style: none;
}

.method-features li {
    padding: var(--spacing-2) 0;
    color: var(--gray-700);
    position: relative;
    padding-left: var(--spacing-4);
}

.method-features li::before {
    content: '•';
    color: var(--primary-blue);
    font-weight: bold;
    position: absolute;
    left: 0;
}

/* CTA Buttons */
.cta-buttons {
    display: flex;
    gap: var(--spacing-4);
    justify-content: center;
    flex-wrap: wrap;
}

/* ===== RESPONSIVE FIXES - TABLET (768px) ===== */
@media (max-width: 768px) {
    /* Main Hero - Ensure no cutoff */
    .hero {
        padding-top: 90px; /* Space for fixed header */
        min-height: 80vh; /* Compact but not too small */
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
        padding-top: 1rem;
        min-height: 80vh;
    }
    
    .hero-title {
        font-size: var(--font-size-3xl);
        margin-bottom: 1rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .hero-buttons {
        justify-content: center;
        flex-wrap: wrap;
        gap: 1rem;
        margin-bottom: 2rem; /* Space before cards */
    }
    
    /* Main Hero Floating Cards - Grid layout with proper separation */
    .floating-elements {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
        max-width: 320px;
        margin: 0 auto;
        align-items: start;
        position: relative;
        z-index: 10;
    }
    
    .floating-card {
        position: relative; /* Change from absolute to relative */
        width: 100%;
        padding: 1rem;
        min-width: auto;
    }
    
    /* Staggered positioning for visual interest */
    .floating-card.card-1 {
        transform: translateY(0);
    }
    
    .floating-card.card-2 {
        transform: translateY(20px);
    }
    
    .floating-card.card-3 {
        transform: translateY(0);
    }
    
    /* Product Hero - Ensure no cutoff */
    .hero.product-hero {
        padding-top: 90px;
        min-height: 60vh;
    }
    
    .hero.product-hero .hero-container {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        text-align: center;
        padding: 1rem 0;
        min-height: 60vh;
    }
    
    .hero.product-hero .hero-title {
        font-size: 1.8rem;
        margin-bottom: 0.8rem;
    }
    
    .hero.product-hero .hero-subtitle {
        font-size: 0.9rem;
        margin-bottom: 1rem;
    }
    
    .hero.product-hero .hero-buttons {
        margin-bottom: 2rem; /* Space before cards */
        gap: 1rem;
    }
    
    /* Product Hero Floating Cards - Grid layout with proper separation */
    .hero.product-hero .floating-elements {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
        max-width: 320px;
        margin: 0 auto;
        align-items: start;
        position: relative;
        z-index: 10;
    }
    
    .hero.product-hero .floating-card {
        width: 100%;
        padding: 1rem;
        position: relative;
    }
    
    /* Staggered positioning for visual interest */
    .hero.product-hero .floating-card.card-1 {
        transform: translateY(0);
    }
    
    .hero.product-hero .floating-card.card-2 {
        transform: translateY(20px);
    }
    
    .hero.product-hero .floating-card.card-3 {
        transform: translateY(0);
    }
}

/* ===== RESPONSIVE FIXES - MOBILE (480px) ===== */
@media (max-width: 480px) {
    /* Main Hero - Even more compact */
    .hero {
        padding-top: 100px;
        min-height: 70vh;
    }
    
    .hero-container {
        min-height: 70vh;
        padding-top: 0.5rem;
        gap: 1.5rem;
    }
    
    .hero-title {
        font-size: var(--font-size-2xl);
        margin-bottom: 0.8rem;
    }
    
    .hero-subtitle {
        font-size: 0.9rem;
        margin-bottom: 1.2rem;
    }
    
    .hero-buttons {
        margin-bottom: 1.5rem;
        gap: 0.8rem;
    }
    
    /* Main Hero Floating Cards - Smaller gaps */
    .floating-elements {
        gap: 1rem;
        max-width: 280px;
    }
    
    .floating-card {
        padding: 0.8rem;
    }
    
    /* Product Hero - Even more compact */
    .hero.product-hero {
        padding-top: 100px;
        min-height: 50vh;
    }
    
    .hero.product-hero .hero-container {
        min-height: 50vh;
        padding: 0.5rem 0;
        gap: 1rem;
    }
    
    .hero.product-hero .hero-title {
        font-size: 1.5rem;
        margin-bottom: 0.6rem;
    }
    
    .hero.product-hero .hero-subtitle {
        font-size: 0.85rem;
        margin-bottom: 0.8rem;
    }
    
    .hero.product-hero .hero-buttons {
        margin-bottom: 1.5rem;
        gap: 0.8rem;
    }
    
    /* Product Hero Floating Cards - Smaller gaps */
    .hero.product-hero .floating-elements {
        gap: 1rem;
        max-width: 280px;
    }
    
    .hero.product-hero .floating-card {
        padding: 0.8rem;
    }
} 

/* Product Page Hero Styles */
.hero.product-hero {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
    overflow: hidden;
    min-height: 40vh; /* Much shorter than main hero */
}

.hero.product-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(11, 166, 238, 0.05) 0%, rgba(255, 192, 0, 0.05) 100%);
    z-index: 1;
}

.hero.product-hero .hero-container {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: center;
    min-height: 40vh; /* Much shorter than main hero */
    padding: 2rem 0;
}

.hero.product-hero .hero-content {
    max-width: 450px;
}

.hero.product-hero .hero-title {
    font-size: 2.2rem; /* Much smaller than main hero */
    line-height: 1.3;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.hero.product-hero .hero-subtitle {
    font-size: 1rem; /* Much smaller than main hero */
    line-height: 1.5;
    margin-bottom: 1.5rem;
    color: var(--text-secondary);
}

.hero.product-hero .hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.hero.product-hero .floating-elements {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    max-width: 250px;
    align-items: center;
}

.hero.product-hero .floating-card {
    background: white;
    border-radius: 12px;
    padding: 1.2rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(11, 166, 238, 0.1);
    width: 100%;
    position: relative;
}

.hero.product-hero .floating-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.hero.product-hero .floating-card i {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--brand-blue);
}

.hero.product-hero .floating-card span {
    font-weight: 600;
    color: var(--text-dark);
    font-size: 0.9rem;
}

.hero.product-hero .floating-card.card-1 {
    animation: float 10s ease-in-out infinite;
}

.hero.product-hero .floating-card.card-2 {
    animation: float 10s ease-in-out infinite 3s;
}

.hero.product-hero .floating-card.card-3 {
    animation: float 10s ease-in-out infinite 6s;
}

/* Keep background image for product pages but make it more subtle */
.hero.product-hero .hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
}

.hero.product-hero .hero-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 30%;
    filter: brightness(0.3) contrast(1.2);
}

.hero.product-hero .hero-background::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(0,0,0,0.4) 0%, rgba(0,0,0,0.2) 100%);
}

/* Responsive adjustments for product hero */
@media (max-width: 768px) {
    .hero.product-hero .hero-container {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        text-align: center;
        padding: 1.5rem 0;
    }
    
    .hero.product-hero .hero-title {
        font-size: 1.8rem;
    }
    
    .hero.product-hero .floating-elements {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        gap: 0.8rem;
    }
    
    .hero.product-hero .floating-card {
        flex: 1;
        min-width: 100px;
    }
} 
/* Fix for main hero being cut off by header */
@media (max-width: 768px) {
    .hero {
        padding-top: 70px; /* Reduced space for fixed header */
        min-height: 60vh; /* Much more compact height */
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 1rem; /* Reduced gap */
        padding-top: 0.5rem; /* Minimal padding */
        min-height: 60vh;
    }
    
    .hero-title {
        font-size: var(--font-size-2xl); /* Much smaller font */
        margin-bottom: 0.5rem; /* Minimal margin */
        line-height: 1.2;
    }
    
    .hero-subtitle {
        font-size: 0.9rem; /* Smaller font */
        margin-bottom: 1rem; /* Reduced margin */
        line-height: 1.4;
    }
    
    .hero-buttons {
        justify-content: center;
        flex-wrap: wrap;
        gap: 0.8rem;
        margin-bottom: 2rem; /* Significant space before cards */
    }
    
    /* Compact staggered floating elements for main hero */
    .floating-elements {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 0.6rem; /* Minimal gap */
        max-width: 260px;
        margin: 0 auto;
        align-items: start;
        position: relative;
        z-index: 1;
    }
    
    .floating-card {
        width: 100%;
        max-width: none;
        margin: 0;
        padding: 0.6rem; /* Minimal padding */
    }
    
    .floating-card.card-1 {
        transform: translateY(0);
    }
    
    .floating-card.card-2 {
        transform: translateY(25px); /* 25px stagger */
    }
    
    .floating-card.card-3 {
        transform: translateY(0); /* Same height as card 1 */
    }
}

/* Fix for product hero pages */
@media (max-width: 768px) {
    .hero.product-hero {
        padding-top: 70px; /* Reduced space for fixed header */
        min-height: 50vh; /* Much more compact height */
    }
    
    .hero.product-hero .hero-container {
        grid-template-columns: 1fr;
        gap: 1rem; /* Reduced gap */
        text-align: center;
        padding: 0.5rem 0; /* Minimal padding */
        min-height: 50vh;
    }
    
    .hero.product-hero .hero-title {
        font-size: 1.5rem; /* Much smaller font */
        margin-bottom: 0.5rem; /* Minimal margin */
        line-height: 1.2;
    }
    
    .hero.product-hero .hero-subtitle {
        font-size: 0.85rem; /* Smaller font */
        margin-bottom: 0.8rem; /* Reduced margin */
        line-height: 1.4;
    }
    
    .hero.product-hero .hero-buttons {
        margin-bottom: 2rem; /* Significant space before cards */
        gap: 0.8rem;
    }
    
    /* Compact staggered floating elements for product hero */
    .hero.product-hero .floating-elements {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 0.6rem; /* Minimal gap */
        max-width: 260px;
        margin: 0 auto;
        align-items: start;
        position: relative;
        z-index: 1;
    }
    
    .hero.product-hero .floating-card {
        width: 100%;
        max-width: none;
        margin: 0;
        flex: none;
        min-width: auto;
        padding: 0.6rem; /* Minimal padding */
    }
    
    .hero.product-hero .floating-card.card-1 {
        transform: translateY(0);
    }
    
    .hero.product-hero .floating-card.card-2 {
        transform: translateY(25px); /* 25px stagger */
    }
    
    .hero.product-hero .floating-card.card-3 {
        transform: translateY(0); /* Same height as card 1 */
    }
}

/* Additional fixes for very small screens */
@media (max-width: 480px) {
    .hero {
        padding-top: 80px; /* Slightly more space for very small screens */
        min-height: 55vh; /* Even more compact */
    }
    
    .hero.product-hero {
        padding-top: 80px;
        min-height: 45vh; /* Even more compact */
    }
    
    .hero.product-hero .hero-container {
        min-height: 45vh;
        padding: 0.3rem 0; /* Minimal padding */
    }
    
    .floating-elements {
        grid-template-columns: repeat(3, 1fr);
        gap: 0.5rem; /* Minimal gap */
        max-width: 240px;
    }
    
    .hero.product-hero .floating-elements {
        grid-template-columns: repeat(3, 1fr);
        gap: 0.5rem; /* Minimal gap */
        max-width: 240px;
    }
    
    .floating-card {
        padding: 0.5rem; /* Minimal padding */
    }
    
    .hero.product-hero .floating-card {
        padding: 0.5rem; /* Minimal padding */
    }
    
    /* Even smaller stagger for tiny screens */
    .floating-card.card-2 {
        transform: translateY(20px); /* 20px stagger */
    }
    
    .floating-card.card-3 {
        transform: translateY(0); /* Same height as card 1 */
    }
    
    .hero.product-hero .floating-card.card-2 {
        transform: translateY(20px); /* 20px stagger */
    }
    
    .hero.product-hero .floating-card.card-3 {
        transform: translateY(0); /* Same height as card 1 */
    }
} 

/* ===== Key Fixes for Button Overlap ===== */

/* ===== FIX FLOATING CARD OVERLAP ON MAIN LANDING PAGE ===== */

/* Adjust card-3 (AI Coaching and Role-Playing) positioning */
.card-3 {
    bottom: calc(15% - 65px) !important; /* Move down by 65px */
    left: 25%;
    animation-delay: 4s;
}

/* Ensure this only applies to main landing page (not product pages) */
.hero:not(.product-hero) .floating-card.card-3 {
    bottom: calc(15% - 65px) !important; /* Move down by 65px */
    left: 25% !important;
    animation-delay: 4s !important;
}

/* Alternative approach - use transform for more precise control */
.hero:not(.product-hero) .floating-card.card-3 {
    bottom: 15% !important;
    left: 25% !important;
    transform: translateY(65px) !important; /* Move down by 65px */
    animation-delay: 4s !important;
}

/* ===== FIX MAIN LANDING PAGE MOBILE VIEW ===== */

/* ===== TABLET/MOBILE MAIN HERO FIXES (≤ 768px) ===== */
@media (max-width: 768px) {
    /* Fix header overlap for main hero */
    .hero:not(.product-hero) {
        padding-top: 120px !important; /* Increased from 70px */
        min-height: 60vh !important;
    }
    
    .hero:not(.product-hero) .hero-container {
        grid-template-columns: 1fr !important;
        text-align: center !important;
        gap: 1rem !important;
        padding-top: 1rem !important; /* Increased from 0.5rem */
        min-height: 60vh !important;
    }
    
    .hero:not(.product-hero) .hero-title {
        font-size: var(--font-size-2xl) !important;
        margin-bottom: 0.8rem !important; /* Increased from 0.5rem */
        line-height: 1.2 !important;
    }
    
    .hero:not(.product-hero) .hero-subtitle {
        font-size: 0.9rem !important;
        margin-bottom: 1.2rem !important; /* Increased from 1rem */
        line-height: 1.4 !important;
    }
    
    .hero:not(.product-hero) .hero-buttons {
        justify-content: center !important;
        flex-wrap: wrap !important;
        gap: 0.8rem !important;
        margin-bottom: 2.5rem !important; /* Increased from 2rem */
    }
    
    /* Fix floating cards - align evenly on x-axis */
    .hero:not(.product-hero) .floating-elements {
        display: grid !important;
        grid-template-columns: repeat(3, 1fr) !important;
        gap: 1rem !important; /* Increased from 0.6rem */
        max-width: 300px !important; /* Increased from 260px */
        margin: 0 auto !important;
        align-items: center !important; /* Changed from start to center */
        position: relative !important;
        z-index: 1 !important;
    }
    
    .hero:not(.product-hero) .floating-card {
        width: 100% !important;
        max-width: none !important;
        margin: 0 !important;
        padding: 0.8rem !important; /* Increased from 0.6rem */
        position: relative !important;
        transform: none !important; /* Remove all transforms */
    }
    
    /* Remove stagger - align all cards on same x-axis */
    .hero:not(.product-hero) .floating-card.card-1,
    .hero:not(.product-hero) .floating-card.card-2,
    .hero:not(.product-hero) .floating-card.card-3 {
        transform: none !important; /* All cards at same height */
        margin-top: 0 !important;
    }
}

/* ===== MOBILE MAIN HERO FIXES (≤ 480px) ===== */
@media (max-width: 480px) {
    /* Fix header overlap for main hero */
    .hero:not(.product-hero) {
        padding-top: 130px !important; /* Increased from 80px */
        min-height: 55vh !important;
    }
    
    .hero:not(.product-hero) .hero-container {
        min-height: 55vh !important;
        padding-top: 0.8rem !important; /* Increased from 0.3rem */
        gap: 0.8rem !important;
    }
    
    .hero:not(.product-hero) .hero-title {
        font-size: 1.8rem !important; /* Increased from smaller size */
        margin-bottom: 0.6rem !important;
    }
    
    .hero:not(.product-hero) .hero-subtitle {
        font-size: 0.85rem !important;
        margin-bottom: 1rem !important;
    }
    
    .hero:not(.product-hero) .hero-buttons {
        margin-bottom: 2rem !important; /* Increased from smaller value */
        gap: 0.8rem !important;
    }
    
    /* Fix floating cards for mobile */
    .hero:not(.product-hero) .floating-elements {
        grid-template-columns: repeat(3, 1fr) !important;
        gap: 0.8rem !important; /* Increased from 0.5rem */
        max-width: 280px !important; /* Increased from 240px */
        align-items: center !important;
    }
    
    .hero:not(.product-hero) .floating-card {
        padding: 0.6rem !important; /* Increased from 0.5rem */
    }
    
    /* Ensure all cards are aligned */
    .hero:not(.product-hero) .floating-card.card-1,
    .hero:not(.product-hero) .floating-card.card-2,
    .hero:not(.product-hero) .floating-card.card-3 {
        transform: none !important;
        margin-top: 0 !important;
    }
}

/* ===== OVERRIDE ANY CONFLICTING RULES ===== */
/* Ensure these rules take absolute precedence for main landing page */
@media (max-width: 768px) {
    .hero:not(.product-hero) {
        padding-top: 120px !important;
    }
    
    .hero:not(.product-hero) .floating-elements {
        display: grid !important;
        grid-template-columns: repeat(3, 1fr) !important;
        align-items: center !important;
    }
    
    .hero:not(.product-hero) .floating-card {
        transform: none !important;
    }
}

@media (max-width: 480px) {
    .hero:not(.product-hero) {
        padding-top: 130px !important;
    }
    
    .hero:not(.product-hero) .floating-elements {
        align-items: center !important;
    }
    
    .hero:not(.product-hero) .floating-card {
        transform: none !important;
    }
}

/* ===== COMPACT FLOATING CARDS ON MAIN LANDING PAGE MOBILE ===== */

/* ===== TABLET/MOBILE MAIN HERO - COMPACT CARDS (≤ 768px) ===== */
@media (max-width: 768px) {
    /* Make floating cards more compact */
    .hero:not(.product-hero) .floating-elements {
        display: grid !important;
        grid-template-columns: repeat(3, 1fr) !important;
        gap: 0.4rem !important; /* Reduced from 1rem - much more compact */
        max-width: 240px !important; /* Reduced from 300px - tighter container */
        margin: 0 auto !important;
        align-items: center !important;
        position: relative !important;
        z-index: 1 !important;
    }
    
    .hero:not(.product-hero) .floating-card {
        width: 100% !important;
        max-width: none !important;
        margin: 0 !important;
        padding: 0.5rem !important; /* Reduced from 0.8rem - more compact */
        position: relative !important;
        transform: none !important;
    }
    
    /* Reduce card content spacing */
    .hero:not(.product-hero) .floating-card i {
        font-size: 1.2rem !important; /* Smaller icons */
        margin-bottom: 0.3rem !important; /* Reduced spacing */
    }
    
    .hero:not(.product-hero) .floating-card span {
        font-size: 0.7rem !important; /* Smaller text */
        font-weight: 600 !important;
        line-height: 1.2 !important; /* Tighter line height */
    }
    
    /* Remove stagger - align all cards on same x-axis */
    .hero:not(.product-hero) .floating-card.card-1,
    .hero:not(.product-hero) .floating-card.card-2,
    .hero:not(.product-hero) .floating-card.card-3 {
        transform: none !important;
        margin-top: 0 !important;
    }
}

/* ===== MOBILE MAIN HERO - ULTRA COMPACT CARDS (≤ 480px) ===== */
@media (max-width: 480px) {
    /* Make floating cards ultra compact */
    .hero:not(.product-hero) .floating-elements {
        grid-template-columns: repeat(3, 1fr) !important;
        gap: 0.3rem !important; /* Even more compact */
        max-width: 200px !important; /* Smaller container */
        align-items: center !important;
    }
    
    .hero:not(.product-hero) .floating-card {
        padding: 0.4rem !important; /* Even more compact */
    }
    
    /* Ultra compact card content */
    .hero:not(.product-hero) .floating-card i {
        font-size: 1rem !important; /* Smaller icons */
        margin-bottom: 0.2rem !important; /* Minimal spacing */
    }
    
    .hero:not(.product-hero) .floating-card span {
        font-size: 0.65rem !important; /* Smaller text */
        font-weight: 600 !important;
        line-height: 1.1 !important; /* Very tight line height */
    }
    
    /* Ensure all cards are aligned */
    .hero:not(.product-hero) .floating-card.card-1,
    .hero:not(.product-hero) .floating-card.card-2,
    .hero:not(.product-hero) .floating-card.card-3 {
        transform: none !important;
        margin-top: 0 !important;
    }
}

/* ===== FORCE COMPACT LAYOUT ===== */
/* Ensure these rules take absolute precedence */
@media (max-width: 768px) {
    .hero:not(.product-hero) .floating-elements {
        gap: 0.4rem !important;
        max-width: 240px !important;
    }
    
    .hero:not(.product-hero) .floating-card {
        padding: 0.5rem !important;
    }
    
    .hero:not(.product-hero) .floating-card i {
        font-size: 1.2rem !important;
        margin-bottom: 0.3rem !important;
    }
    
    .hero:not(.product-hero) .floating-card span {
        font-size: 0.7rem !important;
        line-height: 1.2 !important;
    }
}

@media (max-width: 480px) {
    .hero:not(.product-hero) .floating-elements {
        gap: 0.3rem !important;
        max-width: 200px !important;
    }
    
    .hero:not(.product-hero) .floating-card {
        padding: 0.4rem !important;
    }
    
    .hero:not(.product-hero) .floating-card i {
        font-size: 1rem !important;
        margin-bottom: 0.2rem !important;
    }
    
    .hero:not(.product-hero) .floating-card span {
        font-size: 0.65rem !important;
        line-height: 1.1 !important;
    }
}

## **✅ FLOATING CARDS ON MAIN LANDING PAGE MOBILE ===== */

/* ===== MOVE FLOATING CARDS UP CLOSER TO CTA BUTTONS ON MOBILE ===== */

/* ===== TABLET/MOBILE MAIN HERO - BRING CARDS UP (≤ 768px) ===== */
@media (max-width: 768px) {
    /* Reduce space between buttons and floating cards */
    .hero:not(.product-hero) .hero-buttons {
        justify-content: center !important;
        flex-wrap: wrap !important;
        gap: 0.8rem !important;
        margin-bottom: 1rem !important; /* Reduced from 2.5rem - much closer */
    }
    
    /* Move floating cards up closer to buttons */
    .hero:not(.product-hero) .floating-elements {
        display: grid !important;
        grid-template-columns: repeat(3, 1fr) !important;
        gap: 0.4rem !important;
        max-width: 240px !important;
        margin: 0 auto !important;
        margin-top: 0.5rem !important; /* Reduced from default - closer to buttons */
        align-items: center !important;
        position: relative !important;
        z-index: 1 !important;
    }
    
    .hero:not(.product-hero) .floating-card {
        width: 100% !important;
        max-width: none !important;
        margin: 0 !important;
        padding: 0.5rem !important;
        position: relative !important;
        transform: none !important;
    }
    
    /* Reduce card content spacing */
    .hero:not(.product-hero) .floating-card i {
        font-size: 1.2rem !important;
        margin-bottom: 0.3rem !important;
    }
    
    .hero:not(.product-hero) .floating-card span {
        font-size: 0.7rem !important;
        font-weight: 600 !important;
        line-height: 1.2 !important;
    }
    
    /* Remove stagger - align all cards on same x-axis */
    .hero:not(.product-hero) .floating-card.card-1,
    .hero:not(.product-hero) .floating-card.card-2,
    .hero:not(.product-hero) .floating-card.card-3 {
        transform: none !important;
        margin-top: 0 !important;
    }
}

/* ===== MOBILE MAIN HERO - BRING CARDS UP (≤ 480px) ===== */
@media (max-width: 480px) {
    /* Reduce space between buttons and floating cards even more */
    .hero:not(.product-hero) .hero-buttons {
        margin-bottom: 0.8rem !important; /* Reduced from 2rem - very close */
        gap: 0.8rem !important;
    }
    
    /* Move floating cards up very close to buttons */
    .hero:not(.product-hero) .floating-elements {
        grid-template-columns: repeat(3, 1fr) !important;
        gap: 0.3rem !important;
        max-width: 200px !important;
        margin-top: 0.3rem !important; /* Very close to buttons */
        align-items: center !important;
    }
    
    .hero:not(.product-hero) .floating-card {
        padding: 0.4rem !important;
    }
    
    /* Ultra compact card content */
    .hero:not(.product-hero) .floating-card i {
        font-size: 1rem !important;
        margin-bottom: 0.2rem !important;
    }
    
    .hero:not(.product-hero) .floating-card span {
        font-size: 0.65rem !important;
        font-weight: 600 !important;
        line-height: 1.1 !important;
    }
    
    /* Ensure all cards are aligned */
    .hero:not(.product-hero) .floating-card.card-1,
    .hero:not(.product-hero) .floating-card.card-2,
    .hero:not(.product-hero) .floating-card.card-3 {
        transform: none !important;
        margin-top: 0 !important;
    }
}

/* ===== FORCE CARDS UP CLOSER TO BUTTONS ===== */
/* Ensure these rules take absolute precedence */
@media (max-width: 768px) {
    .hero:not(.product-hero) .hero-buttons {
        margin-bottom: 1rem !important;
    }
    
    .hero:not(.product-hero) .floating-elements {
        margin-top: 0.5rem !important;
        gap: 0.4rem !important;
        max-width: 240px !important;
    }
    
    .hero:not(.product-hero) .floating-card {
        padding: 0.5rem !important;
    }
    
    .hero:not(.product-hero) .floating-card i {
        font-size: 1.2rem !important;
        margin-bottom: 0.3rem !important;
    }
    
    .hero:not(.product-hero) .floating-card span {
        font-size: 0.7rem !important;
        line-height: 1.2 !important;
    }
}

@media (max-width: 480px) {
    .hero:not(.product-hero) .hero-buttons {
        margin-bottom: 0.8rem !important;
    }
    
    .hero:not(.product-hero) .floating-elements {
        margin-top: 0.3rem !important;
        gap: 0.3rem !important;
        max-width: 200px !important;
    }
    
    .hero:not(.product-hero) .floating-card {
        padding: 0.4rem !important;
    }
    
    .hero:not(.product-hero) .floating-card i {
        font-size: 1rem !important;
        margin-bottom: 0.2rem !important;
    }
    
    .hero:not(.product-hero) .floating-card span {
        font-size: 0.65rem !important;
        line-height: 1.1 !important;
    }
}

/* ===== COMPREHENSIVE MOBILE HERO COMPACT FIX ===== */

/* ===== TABLET/MOBILE MAIN HERO - ULTRA COMPACT (≤ 768px) ===== */
@media (max-width: 768px) {
    /* Ultra compact hero section */
    .hero:not(.product-hero) {
        padding-top: 100px !important; /* Reduced from 120px */
        min-height: 45vh !important; /* Reduced from 60vh */
        padding-bottom: 1rem !important;
    }
    
    .hero:not(.product-hero) .hero-container {
        grid-template-columns: 1fr !important;
        text-align: center !important;
        gap: 0.6rem !important; /* Reduced from 1rem */
        padding-top: 0.5rem !important; /* Reduced from 1rem */
        min-height: 45vh !important;
    }
    
    .hero:not(.product-hero) .hero-title {
        font-size: 1.6rem !important; /* Reduced from var(--font-size-2xl) */
        margin-bottom: 0.5rem !important; /* Reduced from 0.8rem */
        line-height: 1.2 !important;
    }
    
    .hero:not(.product-hero) .hero-subtitle {
        font-size: 0.8rem !important; /* Reduced from 0.9rem */
        margin-bottom: 0.8rem !important; /* Reduced from 1.2rem */
        line-height: 1.3 !important;
    }
    
    /* Minimal space between buttons and cards */
    .hero:not(.product-hero) .hero-buttons {
        justify-content: center !important;
        flex-wrap: wrap !important;
        gap: 0.6rem !important;
        margin-bottom: 0.8rem !important; /* Drastically reduced from 2.5rem */
    }
    
    /* Compact floating cards positioned close to buttons */
    .hero:not(.product-hero) .floating-elements {
        display: grid !important;
        grid-template-columns: repeat(3, 1fr) !important;
        gap: 0.3rem !important; /* Very compact */
        max-width: 220px !important; /* Smaller container */
        margin: 0 auto !important;
        margin-top: 0.3rem !important; /* Very close to buttons */
        align-items: center !important;
        position: relative !important;
        z-index: 1 !important;
    }
    
    .hero:not(.product-hero) .floating-card {
        width: 100% !important;
        max-width: none !important;
        margin: 0 !important;
        padding: 0.4rem !important; /* Very compact */
        position: relative !important;
        transform: none !important;
    }
    
    /* Ultra compact card content */
    .hero:not(.product-hero) .floating-card i {
        font-size: 1rem !important; /* Smaller icons */
        margin-bottom: 0.2rem !important; /* Minimal spacing */
    }
    
    .hero:not(.product-hero) .floating-card span {
        font-size: 0.6rem !important; /* Very small text */
        font-weight: 600 !important;
        line-height: 1.1 !important; /* Very tight line height */
    }
    
    /* All cards aligned */
    .hero:not(.product-hero) .floating-card.card-1,
    .hero:not(.product-hero) .floating-card.card-2,
    .hero:not(.product-hero) .floating-card.card-3 {
        transform: none !important;
        margin-top: 0 !important;
    }
}

/* ===== MOBILE MAIN HERO - ULTRA COMPACT (≤ 480px) ===== */
@media (max-width: 480px) {
    /* Even more compact hero section */
    .hero:not(.product-hero) {
        padding-top: 90px !important; /* Reduced from 130px */
        min-height: 40vh !important; /* Reduced from 55vh */
        padding-bottom: 0.5rem !important;
    }
    
    .hero:not(.product-hero) .hero-container {
        min-height: 40vh !important;
        padding-top: 0.3rem !important; /* Minimal padding */
        gap: 0.4rem !important; /* Very tight spacing */
    }
    
    .hero:not(.product-hero) .hero-title {
        font-size: 1.4rem !important; /* Smaller */
        margin-bottom: 0.4rem !important; /* Minimal margin */
    }
    
    .hero:not(.product-hero) .hero-subtitle {
        font-size: 0.75rem !important; /* Smaller */
        margin-bottom: 0.6rem !important; /* Minimal margin */
    }
    
    /* Minimal space between buttons and cards */
    .hero:not(.product-hero) .hero-buttons {
        margin-bottom: 0.5rem !important; /* Very minimal space */
        gap: 0.6rem !important;
    }
    
    /* Ultra compact floating cards */
    .hero:not(.product-hero) .floating-elements {
        grid-template-columns: repeat(3, 1fr) !important;
        gap: 0.2rem !important; /* Very minimal gap */
        max-width: 180px !important; /* Smaller container */
        margin-top: 0.2rem !important; /* Very close to buttons */
        align-items: center !important;
    }
    
    .hero:not(.product-hero) .floating-card {
        padding: 0.3rem !important; /* Very compact */
    }
    
    /* Ultra compact card content */
    .hero:not(.product-hero) .floating-card i {
        font-size: 0.9rem !important; /* Smaller icons */
        margin-bottom: 0.1rem !important; /* Minimal spacing */
    }
    
    .hero:not(.product-hero) .floating-card span {
        font-size: 0.55rem !important; /* Very small text */
        font-weight: 600 !important;
        line-height: 1.0 !important; /* Very tight line height */
    }
    
    /* All cards aligned */
    .hero:not(.product-hero) .floating-card.card-1,
    .hero:not(.product-hero) .floating-card.card-2,
    .hero:not(.product-hero) .floating-card.card-3 {
        transform: none !important;
        margin-top: 0 !important;
    }
}

/* ===== FORCE ULTRA COMPACT LAYOUT ===== */
/* Ensure these rules take absolute precedence */
@media (max-width: 768px) {
    .hero:not(.product-hero) {
        padding-top: 100px !important;
        min-height: 45vh !important;
    }
    
    .hero:not(.product-hero) .hero-buttons {
        margin-bottom: 0.8rem !important;
    }
    
    .hero:not(.product-hero) .floating-elements {
        margin-top: 0.3rem !important;
        gap: 0.3rem !important;
        max-width: 220px !important;
    }
    
    .hero:not(.product-hero) .floating-card {
        padding: 0.4rem !important;
    }
    
    .hero:not(.product-hero) .floating-card i {
        font-size: 1rem !important;
        margin-bottom: 0.2rem !important;
    }
    
    .hero:not(.product-hero) .floating-card span {
        font-size: 0.6rem !important;
        line-height: 1.1 !important;
    }
}

@media (max-width: 480px) {
    .hero:not(.product-hero) {
        padding-top: 90px !important;
        min-height: 40vh !important;
    }
    
    .hero:not(.product-hero) .hero-buttons {
        margin-bottom: 0.5rem !important;
    }
    
    .hero:not(.product-hero) .floating-elements {
        margin-top: 0.2rem !important;
        gap: 0.2rem !important;
        max-width: 180px !important;
    }
    
    .hero:not(.product-hero) .floating-card {
        padding: 0.3rem !important;
    }
    
    .hero:not(.product-hero) .floating-card i {
        font-size: 0.9rem !important;
        margin-bottom: 0.1rem !important;
    }
    
    .hero:not(.product-hero) .floating-card span {
        font-size: 0.55rem !important;
        line-height: 1.0 !important;
    }
}

/* ===== FIX MAIN HERO FLOATING CARDS POSITION ON MOBILE ===== */

/* ===== TABLET/MOBILE MAIN HERO - REDUCE GAP (≤ 768px) ===== */
@media (max-width: 768px) {
    /* Main Hero - Reduce gaps for better visual cohesion */
    .hero:not(.product-hero) {
        padding-top: 90px !important;
        min-height: 80vh !important;
    }
    
    .hero:not(.product-hero) .hero-container {
        grid-template-columns: 1fr !important;
        text-align: center !important;
        gap: 1rem !important; /* REDUCED from 2rem */
        padding-top: 0.5rem !important;
        min-height: 80vh !important;
    }
    
    .hero:not(.product-hero) .hero-title {
        font-size: var(--font-size-3xl) !important;
        margin-bottom: 1rem !important;
    }
    
    .hero:not(.product-hero) .hero-subtitle {
        font-size: 1rem !important;
        margin-bottom: 1.5rem !important;
    }
    
    /* Reduce space between buttons and floating cards */
    .hero:not(.product-hero) .hero-buttons {
        justify-content: center !important;
        flex-wrap: wrap !important;
        gap: 1rem !important;
        margin-bottom: 1.5rem !important; /* REDUCED from 2rem */
    }
    
    /* Main Hero Floating Cards - Closer to buttons */
    .hero:not(.product-hero) .floating-elements {
        display: grid !important;
        grid-template-columns: repeat(3, 1fr) !important;
        gap: 1.5rem !important;
        max-width: 320px !important;
        margin: 0 auto !important;
        align-items: start !important;
        position: relative !important;
        z-index: 10 !important;
        margin-top: 0 !important; /* REMOVE any extra top margin */
    }
    
    .hero:not(.product-hero) .floating-card {
        position: relative !important;
        width: 100% !important;
        padding: 1rem !important;
        min-width: auto !important;
    }
    
    /* Staggered positioning for visual interest */
    .hero:not(.product-hero) .floating-card.card-1 {
        transform: translateY(0) !important;
    }
    
    .hero:not(.product-hero) .floating-card.card-2 {
        transform: translateY(20px) !important;
    }
    
    .hero:not(.product-hero) .floating-card.card-3 {
        transform: translateY(0) !important;
    }
}

/* ===== MOBILE MAIN HERO - REDUCE GAP (≤ 480px) ===== */
@media (max-width: 480px) {
    /* Main Hero - Even tighter spacing */
    .hero:not(.product-hero) {
        padding-top: 100px !important;
        min-height: 70vh !important;
    }
    
    .hero:not(.product-hero) .hero-container {
        min-height: 70vh !important;
        padding-top: 0.5rem !important;
        gap: 1.5rem !important;
    }
    
    .hero:not(.product-hero) .hero-title {
        font-size: var(--font-size-2xl) !important;
        margin-bottom: 0.8rem !important;
    }
    
    .hero:not(.product-hero) .hero-subtitle {
        font-size: 0.9rem !important;
        margin-bottom: 1.2rem !important;
    }
    
    /* Reduce space between buttons and floating cards even more */
    .hero:not(.product-hero) .hero-buttons {
        margin-bottom: 1rem !important; /* REDUCED even more on very small screens */
        gap: 0.8rem !important;
    }
    
    /* Main Hero Floating Cards - Smaller gaps */
    .hero:not(.product-hero) .floating-elements {
        gap: 1rem !important;
        max-width: 280px !important;
        margin-top: 0 !important; /* Ensure no extra spacing */
    }
    
    .hero:not(.product-hero) .floating-card {
        padding: 0.8rem !important;
    }
}

/* ===== ALTERNATIVE APPROACH - TIGHTER LAYOUT ===== */
/* Uncomment this section if you want the cards even closer to the buttons */
/*
@media (max-width: 768px) {
    .hero:not(.product-hero) .hero-container {
        gap: 0.5rem !important; /* Even tighter spacing */
    }
    
    .hero:not(.product-hero) .hero-buttons {
        margin-bottom: 1rem !important; /* Minimal space below buttons */
    }
    
    .hero:not(.product-hero) .floating-elements {
        margin-top: -0.5rem !important; /* Slightly overlap the spacing */
    }
}
*/

/* ===== FORCE REDUCED GAPS ===== */
/* Ensure these rules take absolute precedence */
@media (max-width: 768px) {
    .hero:not(.product-hero) .hero-container {
        gap: 1rem !important;
    }
    
    .hero:not(.product-hero) .hero-buttons {
        margin-bottom: 1.5rem !important;
    }
    
    .hero:not(.product-hero) .floating-elements {
        margin-top: 0 !important;
    }
}

@media (max-width: 480px) {
    .hero:not(.product-hero) .hero-buttons {
        margin-bottom: 1rem !important;
    }
    
    .hero:not(.product-hero) .floating-elements {
        margin-top: 0 !important;
    }
}

/* ===== EMERGENCY FIX - PREVENT FLOATING CARD OVERLAP ===== */

/* ===== CRITICAL: Ensure buttons are always clickable ===== */
@media (max-width: 768px) {
    /* Force buttons to highest z-index */
    .hero-buttons {
        z-index: 9999 !important;
        position: relative !important;
        margin-bottom: 3rem !important; /* Increased space below buttons */
    }
    
    /* Ensure individual buttons are clickable */
    .hero-buttons .btn {
        position: relative !important;
        z-index: 10000 !important; /* Even higher than button container */
    }
    
    /* Force floating cards to stay below buttons */
    .floating-elements {
        position: relative !important;
        z-index: 1 !important; /* Much lower than buttons */
        margin-top: 1rem !important; /* Add space above cards */
    }
    
    .floating-card {
        position: relative !important;
        z-index: 1 !important; /* Much lower than buttons */
    }
}

@media (max-width: 480px) {
    /* Even more space on mobile */
    .hero-buttons {
        z-index: 9999 !important;
        position: relative !important;
        margin-bottom: 2.5rem !important;
    }
    
    .hero-buttons .btn {
        position: relative !important;
        z-index: 10000 !important;
    }
    
    .floating-elements {
        position: relative !important;
        z-index: 1 !important;
        margin-top: 0.8rem !important;
    }
    
    .floating-card {
        position: relative !important;
        z-index: 1 !important;
    }
}

/* ===== ALTERNATIVE: Reorganize layout structure ===== */
@media (max-width: 768px) {
    /* Ensure proper stacking order */
    .hero-container {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        gap: 1rem !important;
        text-align: center !important;
    }
    
    .hero-content {
        order: 1 !important; /* Title and subtitle first */
    }
    
    .hero-buttons {
        order: 2 !important; /* Buttons second */
        margin: 1.5rem 0 !important; /* Space above and below */
        z-index: 9999 !important;
        position: relative !important;
    }
    
    .hero-visual {
        order: 3 !important; /* Cards last */
        margin-top: 1rem !important; /* Ensure separation */
    }
    
    .floating-elements {
        position: relative !important;
        z-index: 1 !important;
        display: grid !important;
        grid-template-columns: repeat(3, 1fr) !important;
        gap: 0.8rem !important;
        max-width: 280px !important;
        margin: 0 auto !important;
    }
    
    .floating-card {
        position: relative !important;
        transform: none !important; /* Remove any absolute positioning */
        z-index: 1 !important;
    }
}

/* ===== FORCE OVERRIDE ALL CONFLICTING RULES ===== */
/* These rules take absolute precedence */
@media (max-width: 768px) {
    .hero-buttons,
    .hero-buttons .btn {
        z-index: 9999 !important;
        position: relative !important;
    }
    
    .floating-elements,
    .floating-card {
        z-index: 1 !important;
        position: relative !important;
    }
}

@media (max-width: 480px) {
    .hero-buttons,
    .hero-buttons .btn {
        z-index: 9999 !important;
        position: relative !important;
    }
    
    .floating-elements,
    .floating-card {
        z-index: 1 !important;
        position: relative !important;
    }
}

/* ===== COMPLETE LAYOUT REORGANIZATION - FIX FLOATING CARD OVERLAP ===== */

/* ===== TABLET/MOBILE MAIN HERO - REORGANIZE LAYOUT (≤ 768px) ===== */
@media (max-width: 768px) {
    /* Reorganize hero container to use flexbox with proper ordering */
    .hero:not(.product-hero) .hero-container {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        text-align: center !important;
        gap: 1rem !important;
        padding-top: 0.5rem !important;
        min-height: 80vh !important;
    }
    
    /* Hero content first */
    .hero:not(.product-hero) .hero-content {
        order: 1 !important;
        width: 100% !important;
    }
    
    .hero:not(.product-hero) .hero-title {
        font-size: var(--font-size-3xl) !important;
        margin-bottom: 1rem !important;
    }
    
    .hero:not(.product-hero) .hero-subtitle {
        font-size: 1rem !important;
        margin-bottom: 1.5rem !important;
    }
    
    /* Buttons second - ensure they're clickable */
    .hero:not(.product-hero) .hero-buttons {
        order: 2 !important;
        justify-content: center !important;
        flex-wrap: wrap !important;
        gap: 1rem !important;
        margin: 1.5rem 0 !important; /* Space above and below */
        position: relative !important;
        z-index: 1000 !important; /* High z-index */
        width: 100% !important;
    }
    
    .hero:not(.product-hero) .hero-buttons .btn {
        position: relative !important;
        z-index: 1001 !important; /* Even higher */
    }
    
    /* Floating cards third - completely separate from buttons */
    .hero:not(.product-hero) .hero-visual {
        order: 3 !important;
        width: 100% !important;
        margin-top: 1rem !important; /* Ensure separation from buttons */
    }
    
    .hero:not(.product-hero) .floating-elements {
        display: grid !important;
        grid-template-columns: repeat(3, 1fr) !important;
        gap: 1rem !important;
        max-width: 300px !important;
        margin: 0 auto !important;
        align-items: start !important;
        position: relative !important;
        z-index: 1 !important; /* Low z-index */
    }
    
    .hero:not(.product-hero) .floating-card {
        position: relative !important;
        width: 100% !important;
        padding: 1rem !important;
        min-width: auto !important;
        transform: none !important; /* Remove any transforms */
        z-index: 1 !important; /* Low z-index */
    }
    
    /* Remove any absolute positioning */
    .hero:not(.product-hero) .floating-card.card-1,
    .hero:not(.product-hero) .floating-card.card-2,
    .hero:not(.product-hero) .floating-card.card-3 {
        position: relative !important;
        transform: none !important;
        bottom: auto !important;
        left: auto !important;
        right: auto !important;
        top: auto !important;
    }
}

/* ===== MOBILE MAIN HERO - REORGANIZE LAYOUT (≤ 480px) ===== */
@media (max-width: 480px) {
    .hero:not(.product-hero) {
        padding-top: 100px !important;
        min-height: 70vh !important;
    }
    
    .hero:not(.product-hero) .hero-container {
        min-height: 70vh !important;
        gap: 0.8rem !important;
    }
    
    .hero:not(.product-hero) .hero-title {
        font-size: var(--font-size-2xl) !important;
        margin-bottom: 0.8rem !important;
    }
    
    .hero:not(.product-hero) .hero-subtitle {
        font-size: 0.9rem !important;
        margin-bottom: 1.2rem !important;
    }
    
    .hero:not(.product-hero) .hero-buttons {
        margin: 1rem 0 !important;
        gap: 0.8rem !important;
    }
    
    .hero:not(.product-hero) .floating-elements {
        gap: 0.8rem !important;
        max-width: 280px !important;
    }
    
    .hero:not(.product-hero) .floating-card {
        padding: 0.8rem !important;
    }
}

/* ===== OVERRIDE ANY CONFLICTING RULES ===== */
@media (max-width: 768px) {
    /* Force remove any absolute positioning that might still be applied */
    .hero:not(.product-hero) .floating-card {
        position: relative !important;
        transform: none !important;
        bottom: auto !important;
        left: auto !important;
        right: auto !important;
        top: auto !important;
        z-index: 1 !important;
    }
    
    /* Ensure buttons are always on top */
    .hero:not(.product-hero) .hero-buttons {
        z-index: 1000 !important;
        position: relative !important;
    }
    
    .hero:not(.product-hero) .hero-buttons .btn {
        z-index: 1001 !important;
        position: relative !important;
    }
}

/* ===== CENTER AIRE METHOD CARDS - 2X2 GRID WITH BIGGER CARDS ===== */

/* Method Cards for AIRE - 2x2 centered grid with bigger cards */
.method-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* Force 2 columns */
    gap: var(--spacing-8);
    justify-items: center; /* Center each card horizontally */
    max-width: 900px; /* Limit width for better centering */
    margin: 0 auto; /* Center the entire grid container */
}

/* Bigger method cards */
.method-card {
    background: var(--white);
    padding: var(--spacing-10); /* Increased padding for bigger cards */
    border-radius: var(--radius-2xl);
    box-shadow: var(--shadow-md);
    transition: var(--transition-normal);
    border: 1px solid var(--gray-100);
    width: 100%; /* Full width within grid cell */
    max-width: 400px; /* Increased max-width for bigger cards */
    min-height: 350px; /* Set minimum height for consistent sizing */
}

/* Bigger method icons */
.method-icon {
    width: 80px; /* Increased from 60px */
    height: 80px; /* Increased from 60px */
    background: var(--primary-blue);
    border-radius: var(--radius-xl);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--spacing-6); /* Increased margin */
}

.method-icon i {
    font-size: var(--font-size-4xl); /* Increased from 2xl */
    color: var(--white);
}

/* Bigger method card text */
.method-card h3 {
    font-size: var(--font-size-2xl); /* Increased from xl */
    margin-bottom: var(--spacing-5); /* Increased margin */
    color: var(--gray-900);
}

.method-card p {
    color: var(--gray-600);
    line-height: 1.6;
    margin-bottom: var(--spacing-6); /* Increased margin */
    font-size: var(--font-size-lg); /* Increased font size */
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .method-cards {
        grid-template-columns: 1fr; /* Single column on mobile */
        gap: var(--spacing-6);
        padding: 0 var(--spacing-4);
    }
    
    .method-card {
        max-width: 100%;
        min-height: auto; /* Remove fixed height on mobile */
        padding: var(--spacing-8); /* Slightly reduced padding on mobile */
    }
    
    .method-icon {
        width: 70px; /* Slightly smaller on mobile */
        height: 70px;
    }
    
    .method-icon i {
        font-size: var(--font-size-3xl);
    }
}

@media (max-width: 480px) {
    .method-cards {
        gap: var(--spacing-4);
    }
    
    .method-card {
        padding: var(--spacing-6);
    }
    
    .method-icon {
        width: 60px;
        height: 60px;
    }
    
    .method-icon i {
        font-size: var(--font-size-2xl);
    }
}

/* ===== CENTERED 2X2 GRID WITH SQUARE CARDS ===== */

/* Method Cards for AIRE - Centered 2x2 grid with square cards */
.method-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* 2 columns */
    gap: var(--spacing-8);
    justify-content: center; /* Center the entire grid */
    max-width: 800px; /* Limit width for better centering */
    margin: 0 auto; /* Center the grid container */
    width: fit-content; /* Allow grid to size to content */
}

/* Square method cards */
.method-card {
    background: var(--white);
    padding: var(--spacing-8);
    border-radius: var(--radius-2xl);
    box-shadow: var(--shadow-md);
    transition: var(--transition-normal);
    border: 1px solid var(--gray-100);
    width: 300px; /* Fixed width */
    height: 300px; /* Fixed height to make squares */
    display: flex;
    flex-direction: column;
    justify-content: space-between; /* Distribute content evenly */
}

/* Method icon container */
.method-icon {
    width: 70px;
    height: 70px;
    background: var(--primary-blue);
    border-radius: var(--radius-xl);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--spacing-4);
    flex-shrink: 0; /* Prevent icon from shrinking */
}

.method-icon i {
    font-size: var(--font-size-3xl);
    color: var(--white);
}

/* Method card content */
.method-card h3 {
    font-size: var(--font-size-xl);
    margin-bottom: var(--spacing-3);
    color: var(--gray-900);
    flex-shrink: 0; /* Prevent title from shrinking */
}

.method-card p {
    color: var(--gray-600);
    line-height: 1.5;
    margin-bottom: var(--spacing-4);
    font-size: var(--font-size-base);
    flex-grow: 1; /* Allow description to take remaining space */
    overflow: hidden; /* Hide overflow text */
    display: -webkit-box;
    -webkit-line-clamp: 3; /* Limit to 3 lines */
    -webkit-box-orient: vertical;
}

/* Method features list */
.method-features {
    list-style: none;
    flex-shrink: 0; /* Prevent list from shrinking */
}

.method-features li {
    padding: var(--spacing-1) 0;
    color: var(--gray-700);
    position: relative;
    padding-left: var(--spacing-3);
    font-size: var(--font-size-sm);
}

.method-features li::before {
    content: '•';
    color: var(--primary-blue);
    font-weight: bold;
    position: absolute;
    left: 0;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .method-cards {
        grid-template-columns: 1fr; /* Single column on mobile */
        gap: var(--spacing-6);
        padding: 0 var(--spacing-4);
    }
    
    .method-card {
        width: 280px; /* Slightly smaller on mobile */
        height: 280px;
        padding: var(--spacing-6);
    }
    
    .method-icon {
        width: 60px;
        height: 60px;
    }
    
    .method-icon i {
        font-size: var(--font-size-2xl);
    }
}

@media (max-width: 480px) {
    .method-cards {
        gap: var(--spacing-4);
    }
    
    .method-card {
        width: 260px;
        height: 260px;
        padding: var(--spacing-5);
    }
    
    .method-icon {
        width: 50px;
        height: 50px;
    }
    
    .method-icon i {
        font-size: var(--font-size-xl);
    }
}

/* ===== CENTER ENTIRE AIRE METHOD SECTION ===== */

/* Center the entire AIRE method section */
.aire-method {
    display: flex;
    justify-content: center; /* Center the grid horizontally */
    align-items: center; /* Center vertically if needed */
    width: 100%;
    padding: var(--spacing-8) 0;
}

/* Method Cards for AIRE - Centered 2x2 grid */
.method-cards {
    display: grid;
    grid-template-columns: repeat(2, 300px); /* Fixed width columns */
    gap: var(--spacing-8);
    justify-content: center; /* Center the grid */
    align-items: start; /* Align cards to top */
    width: fit-content; /* Allow grid to size to content */
    margin: 0 auto; /* Center the grid container */
}

/* Square method cards */
.method-card {
    background: var(--white);
    padding: var(--spacing-8);
    border-radius: var(--radius-2xl);
    box-shadow: var(--shadow-md);
    transition: var(--transition-normal);
    border: 1px solid var(--gray-100);
    width: 300px; /* Fixed width */
    height: 300px; /* Fixed height to make squares */
    display: flex;
    flex-direction: column;
    justify-content: space-between; /* Distribute content evenly */
}

/* Method icon container */
.method-icon {
    width: 70px;
    height: 70px;
    background: var(--primary-blue);
    border-radius: var(--radius-xl);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--spacing-4);
    flex-shrink: 0; /* Prevent icon from shrinking */
}

.method-icon i {
    font-size: var(--font-size-3xl);
    color: var(--white);
}

/* Method card content */
.method-card h3 {
    font-size: var(--font-size-xl);
    margin-bottom: var(--spacing-3);
    color: var(--gray-900);
    flex-shrink: 0; /* Prevent title from shrinking */
}

.method-card p {
    color: var(--gray-600);
    line-height: 1.5;
    margin-bottom: var(--spacing-4);
    font-size: var(--font-size-base);
    flex-grow: 1; /* Allow description to take remaining space */
    overflow: hidden; /* Hide overflow text */
    display: -webkit-box;
    -webkit-line-clamp: 3; /* Limit to 3 lines */
    -webkit-box-orient: vertical;
}

/* Method features list */
.method-features {
    list-style: none;
    flex-shrink: 0; /* Prevent list from shrinking */
}

.method-features li {
    padding: var(--spacing-1) 0;
    color: var(--gray-700);
    position: relative;
    padding-left: var(--spacing-3);
    font-size: var(--font-size-sm);
}

.method-features li::before {
    content: '•';
    color: var(--primary-blue);
    font-weight: bold;
    position: absolute;
    left: 0;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .method-cards {
        grid-template-columns: 1fr; /* Single column on mobile */
        gap: var(--spacing-6);
        padding: 0 var(--spacing-4);
    }
    
    .method-card {
        width: 280px; /* Slightly smaller on mobile */
        height: 280px;
        padding: var(--spacing-6);
    }
    
    .method-icon {
        width: 60px;
        height: 60px;
    }
    
    .method-icon i {
        font-size: var(--font-size-2xl);
    }
}

@media (max-width: 480px) {
    .method-cards {
        gap: var(--spacing-4);
    }
    
    .method-card {
        width: 260px;
        height: 260px;
        padding: var(--spacing-5);
    }
    
    .method-icon {
        width: 50px;
        height: 50px;
    }
    
    .method-icon i {
        font-size: var(--font-size-xl);
    }
}

/* ===== LARGER AIRE METHOD CARDS ===== */

/* Method Cards for AIRE - Larger centered 2x2 grid */
.method-cards {
    display: grid;
    grid-template-columns: repeat(2, 400px); /* Increased from 300px to 400px */
    gap: var(--spacing-10); /* Increased gap for better spacing */
    justify-content: center; /* Center the grid */
    align-items: start; /* Align cards to top */
    width: fit-content; /* Allow grid to size to content */
    margin: 0 auto; /* Center the grid container */
}

/* Larger square method cards */
.method-card {
    background: var(--white);
    padding: var(--spacing-10); /* Increased from spacing-8 to spacing-10 */
    border-radius: var(--radius-2xl);
    box-shadow: var(--shadow-md);
    transition: var(--transition-normal);
    border: 1px solid var(--gray-100);
    width: 400px; /* Increased from 300px to 400px */
    height: 400px; /* Increased from 300px to 400px */
    display: flex;
    flex-direction: column;
    justify-content: space-between; /* Distribute content evenly */
}

/* Larger method icons */
.method-icon {
    width: 90px; /* Increased from 70px to 90px */
    height: 90px; /* Increased from 70px to 90px */
    background: var(--primary-blue);
    border-radius: var(--radius-xl);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--spacing-6); /* Increased margin */
    flex-shrink: 0; /* Prevent icon from shrinking */
}

.method-icon i {
    font-size: var(--font-size-4xl); /* Increased from 3xl to 4xl */
    color: var(--white);
}

/* Larger method card text */
.method-card h3 {
    font-size: var(--font-size-2xl); /* Increased from xl to 2xl */
    margin-bottom: var(--spacing-4); /* Increased margin */
    color: var(--gray-900);
    flex-shrink: 0; /* Prevent title from shrinking */
}

.method-card p {
    color: var(--gray-600);
    line-height: 1.6; /* Increased line height */
    margin-bottom: var(--spacing-6); /* Increased margin */
    font-size: var(--font-size-lg); /* Increased from base to lg */
    flex-grow: 1; /* Allow description to take remaining space */
    overflow: hidden; /* Hide overflow text */
    display: -webkit-box;
    -webkit-line-clamp: 4; /* Increased from 3 to 4 lines */
    -webkit-box-orient: vertical;
}

/* Larger method features list */
.method-features {
    list-style: none;
    flex-shrink: 0; /* Prevent list from shrinking */
}

.method-features li {
    padding: var(--spacing-2) 0; /* Increased padding */
    color: var(--gray-700);
    position: relative;
    padding-left: var(--spacing-4); /* Increased padding */
    font-size: var(--font-size-base); /* Increased from sm to base */
    line-height: 1.5; /* Added line height */
}

.method-features li::before {
    content: '•';
    color: var(--primary-blue);
    font-weight: bold;
    position: absolute;
    left: 0;
    font-size: var(--font-size-lg); /* Increased bullet size */
}

/* Responsive adjustments for larger cards */
@media (max-width: 900px) {
    .method-cards {
        grid-template-columns: repeat(2, 350px); /* Slightly smaller on medium screens */
        gap: var(--spacing-8);
    }
    
    .method-card {
        width: 350px;
        height: 350px;
        padding: var(--spacing-8);
    }
    
    .method-icon {
        width: 80px;
        height: 80px;
    }
    
    .method-icon i {
        font-size: var(--font-size-3xl);
    }
}

@media (max-width: 768px) {
    .method-cards {
        grid-template-columns: 1fr; /* Single column on mobile */
        gap: var(--spacing-6);
        padding: 0 var(--spacing-4);
    }
    
    .method-card {
        width: 320px; /* Larger than before on mobile */
        height: 320px;
        padding: var(--spacing-7);
    }
    
    .method-icon {
        width: 70px;
        height: 70px;
    }
    
    .method-icon i {
        font-size: var(--font-size-2xl);
    }
}

@media (max-width: 480px) {
    .method-cards {
        gap: var(--spacing-4);
    }
    
    .method-card {
        width: 280px; /* Larger than before on small mobile */
        height: 280px;
        padding: var(--spacing-6);
    }
    
    .method-icon {
        width: 60px;
        height: 60px;
    }
    
    .method-icon i {
        font-size: var(--font-size-xl);
    }
}

/* ===== LARGER AIRE METHOD CARDS ON MOBILE ===== */

/* Responsive adjustments for larger cards on mobile */
@media (max-width: 768px) {
    .method-cards {
        grid-template-columns: 1fr; /* Single column on mobile */
        gap: var(--spacing-8); /* Increased gap */
        padding: 0 var(--spacing-6); /* Increased side padding */
        max-width: 100%; /* Allow full width */
    }
    
    .method-card {
        width: 100%; /* Full width on mobile */
        max-width: 400px; /* But limit maximum width */
        height: auto; /* Allow height to adjust to content */
        min-height: 350px; /* Set minimum height */
        padding: var(--spacing-8); /* Increased padding */
        margin: 0 auto; /* Center the card */
    }
    
    .method-icon {
        width: 80px; /* Larger icon */
        height: 80px;
        margin-bottom: var(--spacing-5); /* Increased margin */
    }
    
    .method-icon i {
        font-size: var(--font-size-3xl);
    }
    
    .method-card h3 {
        font-size: var(--font-size-xl);
        margin-bottom: var(--spacing-4);
        line-height: 1.3;
    }
    
    .method-card p {
        font-size: var(--font-size-base);
        line-height: 1.6;
        margin-bottom: var(--spacing-5);
        -webkit-line-clamp: 4; /* Allow more lines */
    }
    
    .method-features {
        margin-top: var(--spacing-4);
    }
    
    .method-features li {
        padding: var(--spacing-2) 0;
        padding-left: var(--spacing-4);
        font-size: var(--font-size-base);
        line-height: 1.5;
        margin-bottom: var(--spacing-1); /* Add space between list items */
    }
    
    .method-features li::before {
        font-size: var(--font-size-base);
        top: 0; /* Align bullet with text */
    }
}

@media (max-width: 480px) {
    .method-cards {
        gap: var(--spacing-6);
        padding: 0 var(--spacing-4); /* Reduced side padding on very small screens */
    }
    
    .method-card {
        max-width: 100%; /* Full width on very small screens */
        min-height: 320px;
        padding: var(--spacing-7); /* Slightly reduced padding */
    }
    
    .method-icon {
        width: 70px;
        height: 70px;
        margin-bottom: var(--spacing-4);
    }
    
    .method-icon i {
        font-size: var(--font-size-2xl);
    }
    
    .method-card h3 {
        font-size: var(--font-size-lg);
        margin-bottom: var(--spacing-3);
    }
    
    .method-card p {
        font-size: var(--font-size-sm);
        margin-bottom: var(--spacing-4);
    }
    
    .method-features li {
        padding: var(--spacing-1) 0;
        padding-left: var(--spacing-3);
        font-size: var(--font-size-sm);
        margin-bottom: var(--spacing-1);
    }
    
    .method-features li::before {
        font-size: var(--font-size-sm);
    }
}

/* Extra small screens */
@media (max-width: 375px) {
    .method-cards {
        padding: 0 var(--spacing-3);
    }
    
    .method-card {
        padding: var(--spacing-6);
        min-height: 300px;
    }
    
    .method-icon {
        width: 60px;
        height: 60px;
        margin-bottom: var(--spacing-3);
    }
    
    .method-icon i {
        font-size: var(--font-size-xl);
    }
}

/* ===== ALIGN PRODUCT PAGE FLOATING CARDS WITH LANDING PAGE ===== */

/* Product hero floating cards - same positioning as landing page */
.hero.product-hero .floating-card.card-1 {
    top: 15% !important;
    left: 5% !important;
    animation-delay: 0s !important;
    position: absolute !important;
}

.hero.product-hero .floating-card.card-2 {
    top: 45% !important;
    right: 10% !important;
    animation-delay: 2s !important;
    position: absolute !important;
}

.hero.product-hero .floating-card.card-3 {
    bottom: 15% !important;
    left: 25% !important;
    animation-delay: 4s !important;
    position: absolute !important;
}

/* Ensure product hero floating elements container has proper positioning */
.hero.product-hero .floating-elements {
    position: relative !important;
    width: 100% !important;
    height: 100% !important;
    display: block !important; /* Override any grid/flex display */
}

/* Ensure product hero floating cards have proper styling */
.hero.product-hero .floating-card {
    position: absolute !important;
    background: white !important;
    border-radius: 12px !important;
    padding: 1.2rem !important;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08) !important;
    text-align: center !important;
    transition: all 0.3s ease !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
    backdrop-filter: blur(10px) !important;
    -webkit-backdrop-filter: blur(10px) !important;
    z-index: 10 !important;
    max-width: 200px !important;
    min-width: 150px !important;
}

/* Responsive adjustments for product hero floating cards */
@media (max-width: 768px) {
    /* Product hero floating cards on mobile - same as landing page */
    .hero.product-hero .floating-elements {
        display: grid !important;
        grid-template-columns: repeat(3, 1fr) !important;
        gap: 0.6rem !important;
        max-width: 260px !important;
        margin: 0 auto !important;
        align-items: start !important;
        position: relative !important;
        z-index: 1 !important;
    }
    
    .hero.product-hero .floating-card {
        position: relative !important;
        width: 100% !important;
        max-width: none !important;
        margin: 0 !important;
        padding: 0.6rem !important;
        top: auto !important;
        left: auto !important;
        right: auto !important;
        bottom: auto !important;
    }
    
    .hero.product-hero .floating-card.card-1 {
        transform: translateY(0) !important;
    }
    
    .hero.product-hero .floating-card.card-2 {
        transform: translateY(25px) !important;
    }
    
    .hero.product-hero .floating-card.card-3 {
        transform: translateY(0) !important;
    }
}

@media (max-width: 480px) {
    .hero.product-hero .floating-elements {
        gap: 0.4rem !important;
        max-width: 240px !important;
    }
    
    .hero.product-hero .floating-card {
        padding: 0.5rem !important;
    }
}

/* ===== REMOVE FLOATING CARDS FROM PRODUCT PAGE MOBILE VIEW ===== */

/* Hide floating cards on product pages for mobile */
@media (max-width: 768px) {
    .hero.product-hero .floating-elements {
        display: none !important; /* Completely hide floating cards on mobile */
    }
}

/* Ensure this applies to all mobile sizes */
@media (max-width: 480px) {
    .hero.product-hero .floating-elements {
        display: none !important;
    }
}

@media (max-width: 375px) {
    .hero.product-hero .floating-elements {
        display: none !important;
    }
}

/* ===== COMPACT PRODUCT HERO SECTIONS ON MOBILE ===== */

/* Make product hero sections more compact on mobile since floating cards are removed */
@media (max-width: 768px) {
    .hero.product-hero {
        padding-top: 100px !important; /* Increased from 70px to prevent header cutoff */
        min-height: 35vh !important; /* Reduced from 50vh - much more compact */
        padding-bottom: 2rem !important; /* Add bottom padding */
    }
    
    .hero.product-hero .hero-container {
        grid-template-columns: 1fr !important;
        gap: 1rem !important; /* Reduced gap */
        text-align: center !important;
        padding: 1rem 0 !important; /* Reduced padding */
        min-height: 35vh !important; /* Match hero height */
    }
    
    .hero.product-hero .hero-title {
        font-size: 1.6rem !important; /* Slightly smaller */
        margin-bottom: 0.5rem !important; /* Reduced margin */
        line-height: 1.2 !important;
    }
    
    .hero.product-hero .hero-subtitle {
        font-size: 0.9rem !important; /* Slightly smaller */
        margin-bottom: 1rem !important; /* Reduced margin */
        line-height: 1.4 !important;
    }
    
    .hero.product-hero .hero-buttons {
        margin-bottom: 1rem !important; /* Reduced margin since no floating cards */
        gap: 0.8rem !important;
    }
    
    /* Floating cards are hidden with display: none */
    .hero.product-hero .floating-elements {
        display: none !important;
    }
}

@media (max-width: 480px) {
    .hero.product-hero {
        padding-top: 90px !important; /* Slightly less on very small screens */
        min-height: 30vh !important; /* Even more compact */
    }
    
    .hero.product-hero .hero-container {
        min-height: 30vh !important;
        padding: 0.8rem 0 !important;
        gap: 0.8rem !important;
    }
    
    .hero.product-hero .hero-title {
        font-size: 1.4rem !important;
        margin-bottom: 0.4rem !important;
    }
    
    .hero.product-hero .hero-subtitle {
        font-size: 0.85rem !important;
        margin-bottom: 0.8rem !important;
    }
    
    .hero.product-hero .hero-buttons {
        margin-bottom: 0.8rem !important;
        gap: 0.6rem !important;
    }
}

@media (max-width: 375px) {
    .hero.product-hero {
        padding-top: 85px !important;
        min-height: 25vh !important; /* Very compact */
    }
    
    .hero.product-hero .hero-container {
        min-height: 25vh !important;
        padding: 0.6rem 0 !important;
    }
    
    .hero.product-hero .hero-title {
        font-size: 1.3rem !important;
    }
    
    .hero.product-hero .hero-subtitle {
        font-size: 0.8rem !important;
    }
}

/* ===== MOBILE NAVIGATION OVERRIDE - HIGH PRIORITY ===== */
@media (max-width: 768px) {
    /* Force hamburger to show */
    .hamburger {
        display: flex !important;
        z-index: 1000 !important;
    }
    
    /* Force mobile navigation */
    .nav-menu {
        position: fixed !important;
        left: -100% !important;
        top: 0 !important;
        flex-direction: column !important;
        background-color: var(--white) !important;
        width: 100% !important;
        text-align: center !important;
        transition: 0.3s !important;
        box-shadow: var(--shadow-xl) !important;
        padding-top: 80px !important;
        height: 100vh !important;
        z-index: 999 !important;
        display: flex !important;
    }
    
    .nav-menu.active {
        left: 0 !important;
    }
    
    .nav-menu li {
        margin: 1rem 0 !important;
        display: block !important;
    }
    
    .nav-link {
        font-size: var(--font-size-lg) !important;
        padding: var(--spacing-4) !important;
        display: block !important;
    }
    
    .dropdown-menu {
        position: static !important;
        background: transparent !important;
        box-shadow: none !important;
        opacity: 1 !important;
        visibility: visible !important;
        transform: none !important;
        padding: 0 !important;
        margin-top: var(--spacing-2) !important;
        display: block !important;
    }
    
    .dropdown-link {
        padding: var(--spacing-2) var(--spacing-4) !important;
        font-size: var(--font-size-base) !important;
        display: block !important;
    }
    
    /* Hide desktop navigation */
    .nav-container {
        justify-content: space-between !important;
    }
}
 