/* ====================================
   AI AGENZ - MAIN STYLESHEET
   Clean, modular CSS for all pages
   ==================================== */

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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #1d1d1f;
    background: #0a0a0b;
    min-height: 100vh;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ====================================
   ANIMATED BACKGROUND COMPONENTS
   ==================================== */
.bg-animation {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: linear-gradient(45deg, #0a0a0b, #1a1a2e, #16213e);
    background-size: 400% 400%;
    animation: gradientShift 15s ease infinite;
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.floating-particles {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: -1;
}

.particle {
    position: absolute;
    background: rgba(102, 126, 234, 0.1);
    border-radius: 50%;
    animation: float 20s infinite linear;
}

.particle:nth-child(1) { width: 4px; height: 4px; left: 10%; animation-delay: 0s; }
.particle:nth-child(2) { width: 6px; height: 6px; left: 20%; animation-delay: 2s; }
.particle:nth-child(3) { width: 3px; height: 3px; left: 30%; animation-delay: 4s; }
.particle:nth-child(4) { width: 5px; height: 5px; left: 40%; animation-delay: 6s; }
.particle:nth-child(5) { width: 4px; height: 4px; left: 50%; animation-delay: 8s; }
.particle:nth-child(6) { width: 7px; height: 7px; left: 60%; animation-delay: 10s; }
.particle:nth-child(7) { width: 3px; height: 3px; left: 70%; animation-delay: 12s; }
.particle:nth-child(8) { width: 5px; height: 5px; left: 80%; animation-delay: 14s; }
.particle:nth-child(9) { width: 4px; height: 4px; left: 90%; animation-delay: 16s; }
.particle:nth-child(10) { width: 6px; height: 6px; left: 95%; animation-delay: 18s; }

@keyframes float {
    0% { transform: translateY(100vh) rotate(0deg); opacity: 0; }
    10% { opacity: 1; }
    90% { opacity: 1; }
    100% { transform: translateY(-100px) rotate(360deg); opacity: 0; }
}

/* ====================================
   HEADER & NAVIGATION
   ==================================== */
header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: saturate(180%) blur(20px);
    padding: 15px 0;
    border-bottom: 1px solid rgba(102, 126, 234, 0.2);
    position: sticky;
    top: 0;
    z-index: 100;
    transition: all 0.3s ease;
}

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

.logo {
    display: flex;
    align-items: center;
    font-size: 1.8rem;
    font-weight: 600;
    color: #1d1d1f;
}

.logo img {
    height: 120px;
    width: auto;
}

/* Navigation Menu - Main page style */
.nav-menu {
    display: flex;
    align-items: center;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 30px;
    margin: 0;
    padding: 0;
}

.nav-links li a {
    color: #1d1d1f;
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    transition: all 0.3s ease;
    position: relative;
    padding: 8px 0;
}

.nav-links li a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background: linear-gradient(135deg, #10b981, #059669);
    transition: width 0.3s ease;
}

.nav-links li a:hover::after {
    width: 100%;
}

.nav-links li a:hover {
    color: #10b981;
}

/* Hotels page navigation style (when needed) */
.nav-menu-alt {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav-menu-alt a {
    color: #1d1d1f;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    padding: 8px 16px;
    border-radius: 20px;
}

.nav-menu-alt a:hover {
    background: rgba(102, 126, 234, 0.1);
    color: #667eea;
}

.nav-menu-alt a.active {
    background: rgba(16, 185, 129, 0.1);
    color: #10b981;
    font-weight: 600;
}

/* Mobile menu toggle */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: #1d1d1f;
    cursor: pointer;
    padding: 5px;
}

/* ====================================
   HERO SECTION
   ==================================== */
.hero {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%);
    color: white;
    padding: 120px 0 160px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::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="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(102,126,234,0.1)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
    animation: gridMove 20s linear infinite;
}

@keyframes gridMove {
    0% { transform: translate(0, 0); }
    100% { transform: translate(10px, 10px); }
}

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

.hero h1 {
    font-size: 3.8rem;
    margin-bottom: 25px;
    font-weight: 800;
    letter-spacing: -0.04em;
    background: linear-gradient(135deg, #ffffff, #667eea);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: fadeInUp 1s ease-out;
}

.hero p {
    font-size: 1.5rem;
    margin-bottom: 40px;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 400;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 50px;
    animation: fadeInUp 1s ease-out 0.2s both;
}

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

/* ====================================
   CTA COMPONENTS
   ==================================== */
.hero-cta-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
    margin-top: 30px;
}

.hero-email-input {
    padding: 15px 20px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 35px;
    font-size: 16px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    min-width: 280px;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.hero-email-input:focus {
    outline: none;
    border-color: #10b981;
    background: rgba(255, 255, 255, 0.15);
}

.hero-email-input::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.cta-button {
    display: inline-block;
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
    padding: 18px 45px;
    border: none;
    border-radius: 35px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.4s ease;
    box-shadow: 0 8px 30px rgba(16, 185, 129, 0.3);
    position: relative;
    overflow: hidden;
    animation: fadeInUp 1s ease-out 0.4s both;
    cursor: pointer;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.cta-button:hover::before {
    left: 100%;
}

.cta-button:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 12px 40px rgba(16, 185, 129, 0.5);
}

/* ====================================
   CONSULTATION BANNER
   ==================================== */
.consultation-banner {
    background: linear-gradient(135deg, #10b981, #059669, #047857);
    color: white;
    padding: 80px 40px;
    text-align: center;
    margin: 80px 0;
    border-radius: 25px;
    box-shadow: 0 20px 60px rgba(16, 185, 129, 0.3);
    position: relative;
    overflow: hidden;
    transform: translateY(50px);
    opacity: 0;
    animation: slideInUp 1s ease-out 0.6s forwards;
}

@keyframes slideInUp {
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.consultation-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
}

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

.consultation-banner h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    font-weight: 800;
    position: relative;
    z-index: 2;
}

.consultation-banner p {
    font-size: 1.3rem;
    margin-bottom: 35px;
    opacity: 0.95;
    position: relative;
    z-index: 2;
}

.consultation-benefits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin: 40px 0;
    text-align: left;
    position: relative;
    z-index: 2;
}

.consultation-benefits li {
    list-style: none;
    padding: 15px 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    border-left: 4px solid rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.consultation-benefits li:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
}

/* ====================================
   MAIN CONTENT SECTIONS
   ==================================== */
.main-content {
    background: rgba(15, 15, 20, 0.95);
    margin: 0;
    padding: 80px 40px;
    border-radius: 0;
    box-shadow: none;
    position: relative;
}

.section-title {
    font-size: 3rem;
    color: #ffffff;
    margin-bottom: 80px;
    text-align: center;
    font-weight: 800;
    letter-spacing: -0.03em;
    background: linear-gradient(135deg, #ffffff, #667eea);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ====================================
   USE CASES / SOLUTIONS GRID
   ==================================== */
.use-cases {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(420px, 1fr));
    gap: 50px;
    margin: 80px 0;
}

.use-case {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
    border: 1px solid rgba(102, 126, 234, 0.2);
    border-radius: 25px;
    padding: 45px;
    transition: all 0.4s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(20px);
}

.use-case::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #10b981, #667eea, #059669);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.use-case:hover::before {
    opacity: 1;
}

.use-case:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 25px 60px rgba(102, 126, 234, 0.2);
    border-color: rgba(102, 126, 234, 0.4);
}

.use-case h3 {
    color: #ffffff;
    font-size: 1.8rem;
    margin-bottom: 25px;
    font-weight: 700;
}

/* ====================================
   PROBLEM/SOLUTION/PERFECT-FOR CARDS
   ==================================== */
.problem {
    background: linear-gradient(135deg, rgba(255, 107, 107, 0.1), rgba(255, 107, 107, 0.05));
    border-left: 4px solid #ff6b6b;
    padding: 20px 25px;
    margin: 25px 0;
    border-radius: 12px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.problem:hover {
    transform: translateX(5px);
    background: linear-gradient(135deg, rgba(255, 107, 107, 0.15), rgba(255, 107, 107, 0.08));
}

.problem h4 {
    color: #ff8a80;
    font-size: 1.1rem;
    margin-bottom: 10px;
    font-weight: 700;
}

.problem p {
    color: rgba(255, 255, 255, 0.9);
}

.solution {
    background: linear-gradient(135deg, rgba(0, 184, 148, 0.1), rgba(0, 184, 148, 0.05));
    border-left: 4px solid #00b894;
    padding: 20px 25px;
    margin: 25px 0;
    border-radius: 12px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.solution:hover {
    transform: translateX(5px);
    background: linear-gradient(135deg, rgba(0, 184, 148, 0.15), rgba(0, 184, 148, 0.08));
}

.solution h4 {
    color: #4dd0e1;
    font-size: 1.1rem;
    margin-bottom: 10px;
    font-weight: 700;
}

.solution p {
    color: rgba(255, 255, 255, 0.9);
}

.perfect-for {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1), rgba(102, 126, 234, 0.05));
    border-left: 4px solid #667eea;
    padding: 20px 25px;
    margin: 25px 0;
    border-radius: 12px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.perfect-for:hover {
    transform: translateX(5px);
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.15), rgba(102, 126, 234, 0.08));
}

.perfect-for h4 {
    color: #9c88ff;
    font-size: 1.1rem;
    margin-bottom: 10px;
    font-weight: 700;
}

.perfect-for p {
    color: rgba(255, 255, 255, 0.9);
}

/* ====================================
   BENEFITS & STATS SECTIONS
   ==================================== */
.why-section,
.stats-section {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
    padding: 80px;
    border-radius: 25px;
    margin: 120px 0;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(102, 126, 234, 0.2);
    backdrop-filter: blur(20px);
    position: relative;
    overflow: hidden;
}

.why-section::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, #10b981, #667eea, #059669, #667eea);
    border-radius: 25px;
    z-index: -1;
    animation: borderGlow 3s ease-in-out infinite alternate;
}

@keyframes borderGlow {
    0% { opacity: 0.5; }
    100% { opacity: 0.8; }
}

.benefits-grid,
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 50px;
    margin-top: 60px;
}

.benefit,
.stat {
    text-align: center;
    padding: 30px;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.01));
    border-radius: 20px;
    transition: all 0.4s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.benefit:hover,
.stat:hover {
    transform: translateY(-10px);
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
    box-shadow: 0 20px 40px rgba(102, 126, 234, 0.1);
}

.benefit-icon {
    font-size: 3.5rem;
    margin-bottom: 20px;
    display: block;
    filter: drop-shadow(0 0 10px rgba(102, 126, 234, 0.3));
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: #10b981;
    margin-bottom: 10px;
    display: block;
}

.benefit h4,
.stat h4 {
    color: #ffffff;
    margin-bottom: 15px;
    font-weight: 700;
    font-size: 1.2rem;
}

.benefit p,
.stat p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

/* ====================================
   FAQ SECTION
   ==================================== */
.faq-section {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
    padding: 80px;
    border-radius: 25px;
    margin: 80px 0;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(102, 126, 234, 0.2);
    backdrop-filter: blur(20px);
}

.faq-item {
    margin-bottom: 35px;
    padding-bottom: 25px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

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

.faq-item:hover {
    padding-left: 15px;
}

.faq-item h4 {
    color: #ffffff;
    font-size: 1.3rem;
    margin-bottom: 12px;
    font-weight: 700;
}

.faq-item p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
}

/* ====================================
   FORMS & CONTACT
   ==================================== */
.contact-form-section {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
    padding: 80px 40px;
    border-radius: 25px;
    margin: 80px 0;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(102, 126, 234, 0.2);
    backdrop-filter: blur(20px);
}

.form-header {
    text-align: center;
    margin-bottom: 50px;
}

.form-header h2 {
    font-size: 2.5rem;
    color: #ffffff;
    margin-bottom: 20px;
    font-weight: 800;
}

.form-header p {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.8);
}

.form-group {
    margin-bottom: 30px;
}

.form-group label {
    display: block;
    margin-bottom: 10px;
    font-weight: 600;
    color: #ffffff;
    font-size: 1.1rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid rgba(102, 126, 234, 0.3);
    border-radius: 12px;
    font-size: 16px;
    font-family: inherit;
    transition: all 0.3s ease;
    box-sizing: border-box;
    background: rgba(255, 255, 255, 0.05);
    color: #ffffff;
    backdrop-filter: blur(10px);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #10b981;
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 20px rgba(16, 185, 129, 0.2);
}

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

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

.submit-btn {
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
    padding: 18px 45px;
    border: none;
    border-radius: 35px;
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.4s ease;
    width: 100%;
    margin-top: 30px;
    position: relative;
    overflow: hidden;
}

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

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

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(16, 185, 129, 0.4);
}

.form-note {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1), rgba(102, 126, 234, 0.05));
    border-left: 4px solid #667eea;
    padding: 25px;
    margin: 30px 0;
    border-radius: 12px;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
}

.contact-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 100px 40px;
    border-radius: 25px;
    text-align: center;
    margin-top: 120px;
    position: relative;
    overflow: hidden;
}

.contact-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    animation: rotate 25s linear infinite;
}

.contact-section h2 {
    font-size: 3rem;
    margin-bottom: 25px;
    font-weight: 800;
    position: relative;
    z-index: 2;
}

.contact-section p {
    font-size: 1.3rem;
    margin-bottom: 35px;
    opacity: 0.95;
    position: relative;
    z-index: 2;
}

.contact-details {
    background: rgba(255, 255, 255, 0.15);
    padding: 40px;
    border-radius: 20px;
    margin-top: 50px;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
    z-index: 2;
}

.contact-details a {
    color: #ffffff;
    text-decoration: none;
    transition: all 0.3s ease;
}

.contact-details a:hover {
    color: #10b981;
    text-shadow: 0 0 10px rgba(16, 185, 129, 0.5);
}

/* ====================================
   TOAST NOTIFICATIONS
   ==================================== */
.toast {
    position: fixed;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
    padding: 15px 25px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(16, 185, 129, 0.3);
    z-index: 1000;
    opacity: 0;
    transform: translateX(100%);
    transition: all 0.3s ease;
}

.toast.show {
    opacity: 1;
    transform: translateX(0);
}

/* ====================================
   SCROLL ANIMATIONS
   ==================================== */
.scroll-reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

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

/* ====================================
   RESPONSIVE DESIGN
   ==================================== */
@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        gap: 15px;
        align-items: stretch;
    }
    
    .logo img {
        height: 80px;
        margin: 0 auto;
    }
    
    .mobile-menu-toggle {
        display: block;
        position: absolute;
        top: 20px;
        right: 20px;
    }
    
    .nav-menu {
        width: 100%;
        flex-direction: column;
        gap: 15px;
    }
    
    .nav-links {
        position: relative;
        top: auto;
        left: auto;
        right: auto;
        background: transparent;
        backdrop-filter: none;
        flex-direction: column;
        padding: 0;
        gap: 15px;
        box-shadow: none;
        border: none;
        transform: none;
        opacity: 1;
        visibility: visible;
        transition: none;
        width: 100%;
        justify-content: center;
        display: none;
    }
    
    .nav-links.active {
        display: flex;
    }
    
    .nav-links li {
        text-align: center;
    }
    
    /* Alternative nav style for hotels page */
    .nav-menu-alt {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 20px;
        border-top: 1px solid rgba(102, 126, 234, 0.2);
        gap: 15px;
        width: 100%;
    }
    
    .nav-menu-alt.mobile-open {
        display: flex;
    }
    
    .hero {
        padding: 80px 0 120px 0;
    }
    
    .hero h1 {
        font-size: 2.2rem;
        line-height: 1.2;
    }
    
    .hero p {
        font-size: 1.1rem;
        padding: 0 20px;
    }
    
    .hero-cta-container {
        flex-direction: column;
        gap: 15px;
        padding: 0 20px;
    }
    
    .hero-email-input {
        min-width: 100%;
        max-width: 100%;
    }
    
    .cta-button {
        width: 100%;
        padding: 16px 30px;
    }
    
    .consultation-banner {
        margin: 50px 20px;
        padding: 50px 20px;
    }
    
    .consultation-banner h2 {
        font-size: 1.8rem;
        line-height: 1.2;
    }
    
    .consultation-banner p {
        font-size: 1.1rem;
    }
    
    .consultation-benefits {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .main-content {
        padding: 50px 20px;
    }
    
    .use-cases {
        grid-template-columns: 1fr;
        gap: 30px;
        margin: 50px 0;
    }
    
    .use-case {
        padding: 25px;
        min-width: auto;
    }
    
    .contact-form-section {
        padding: 60px 20px;
        margin: 50px 20px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .why-section,
    .faq-section,
    .stats-section {
        padding: 50px 20px;
        margin: 50px 20px;
    }
    
    .benefits-grid,
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .section-title {
        font-size: 2rem;
        margin-bottom: 40px;
    }
    
    .contact-section {
        margin: 50px 20px 20px 20px;
        padding: 60px 20px;
    }
    
    .contact-section h2 {
        font-size: 2rem;
    }
    
    .contact-section p {
        font-size: 1.1rem;
    }
}

/* Extra small screens */
@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero h1 {
        font-size: 1.8rem;
    }
    
    .consultation-banner h2 {
        font-size: 1.5rem;
    }
    
    .section-title {
        font-size: 1.7rem;
    }
    
    .use-case h3 {
        font-size: 1.4rem;
    }
    
    .contact-section h2 {
        font-size: 1.7rem;
    }
}