
    /* MODERNIZED VARIABLES WITH HIGHER CONTRAST */
:root {
    --navy: #0a1a30;
    --navy-dark: #061224;
    --navy-light: #142849;
    --accent: #2563eb;
    --accent-light: #3b82f6;
    --accent-gradient: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    --light: #ffffff;
    --light-gray: #f1f5f9;
    --medium-gray: #475569;
    --dark-gray: #1e293b;
    --success: #10b981;
    --radius: 24px;
    --radius-sm: 16px;
    --shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 20px 50px rgba(0, 0, 0, 0.18);
    --shadow-xl: 0 30px 80px rgba(0, 0, 0, 0.22);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
    color: var(--dark-gray);
    background: var(--light);
    line-height: 1.6;
    overflow-x: hidden;
}

.page {
    max-width: 100%;
    overflow-x: hidden;
}

/* ENHANCED HEADER - HIGH CONTRAST */
.header {
    background: var(--navy);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    border-bottom: 2px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.25);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.header.scrolled {
    background: rgba(10, 26, 48, 0.98);
    backdrop-filter: blur(20px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.header-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 20px 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.brand {
    display: flex;
    align-items: center;
    gap: 20px;
    transition: transform 0.3s;
}

.brand:hover {
    transform: translateX(5px);
}

.brand-logo {
    width: 50px;
    height: 50px;
    background: var(--accent-gradient);
    color: white;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 800;
    box-shadow: 0 6px 20px rgba(37, 99, 235, 0.4);
    position: relative;
    overflow: hidden;
}

.brand-logo::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transform: translateX(-100%);
}

.brand-logo:hover::after {
    animation: shine 1s ease;
}

@keyframes shine {
    100% {
        transform: translateX(100%);
    }
}

.brand-text {
    display: flex;
    flex-direction: column;
}

.brand-name {
    font-size: 22px;
    font-weight: 800;
    color: white;
    letter-spacing: -0.3px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.brand-tagline {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.8);
    margin-top: 4px;
    letter-spacing: 0.5px;
}

/* NAVIGATION ENHANCEMENT */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    width: 40px;
    height: 40px;
    position: relative;
    cursor: pointer;
    z-index: 1001;
}

.mobile-menu-icon {
    display: block;
    width: 26px;
    height: 3px;
    background: white;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.3s;
    border-radius: 2px;
}

.mobile-menu-icon::before,
.mobile-menu-icon::after {
    content: '';
    position: absolute;
    width: 26px;
    height: 3px;
    background: white;
    left: 0;
    border-radius: 2px;
    transition: transform 0.3s;
}

.mobile-menu-icon::before {
    top: -9px;
}

.mobile-menu-icon::after {
    bottom: -9px;
}

.mobile-menu-btn.active .mobile-menu-icon {
    background: transparent;
}

.mobile-menu-btn.active .mobile-menu-icon::before {
    transform: rotate(45deg);
    top: 0;
}

.mobile-menu-btn.active .mobile-menu-icon::after {
    transform: rotate(-45deg);
    bottom: 0;
}

.nav-links {
    display: flex;
    gap: 40px;
}

.nav-links a {
    text-decoration: none;
    color: rgba(255, 255, 255, 0.9);
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s;
    padding: 10px 0;
    position: relative;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.nav-links a::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: var(--accent);
    border-radius: 2px;
    transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-links a:hover,
.nav-links a.active {
    color: white;
}

.nav-links a:hover::before,
.nav-links a.active::before {
    width: 100%;
}

/* DRAMATIC HERO SECTION - NAVY BLUE */
.hero {
    padding: 180px 32px 140px;
    /* Fundal solid de bază */
    background-color: var(--navy);
    color: white;
    position: relative;
    overflow: hidden;
    min-height: auto;
    display: flex;
    align-items: center;
    border-bottom: 8px solid var(--accent);
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    right: -50%;
    bottom: -50%;
    background:
            radial-gradient(circle at 20% 80%, rgba(37, 99, 235, 0.25) 0%, transparent 50%),
            radial-gradient(circle at 80% 20%, rgba(37, 99, 235, 0.2) 0%, transparent 50%),
            radial-gradient(circle at 40% 40%, rgba(37, 99, 235, 0.15) 0%, transparent 70%);
    animation: floatBackground 20s ease-in-out infinite alternate;
    pointer-events: none;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg,
    transparent 0%,
    rgba(255, 255, 255, 0.03) 50%,
    transparent 100%);
    pointer-events: none;
}

@keyframes floatBackground {
    0% {
        transform: translate(0, 0) rotate(0deg);
    }
    100% {
        transform: translate(5%, 5%) rotate(1deg);
    }
}

.hero-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 2;
}

.hero-label {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.hero-label span {
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(12px);
    padding: 14px 28px;
    border-radius: 100px;
    font-size: 15px;
    color: white;
    display: inline-block;
    border: 2px solid rgba(255, 255, 255, 0.2);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    font-weight: 600;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.hero-label span:first-child {
    background: var(--accent-gradient);
    border: 2px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 8px 30px rgba(37, 99, 235, 0.4);
    position: relative;
    overflow: hidden;
}

.hero-label span:first-child::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transform: rotate(45deg);
    animation: shineEffect 3s infinite;
}

@keyframes shineEffect {
    0% { transform: translateX(-100%) rotate(45deg); }
    100% { transform: translateX(100%) rotate(45deg); }
}

.hero-label span:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 255, 255, 0.4);
}

.hero-title {
    font-size: 72px;
    line-height: 1.1;
    margin-bottom: 32px;
    font-weight: 900;
    letter-spacing: -1.5px;
    background: linear-gradient(to right, #ffffff, #a5b4fc);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    position: relative;
    display: inline-block;
}

.hero-title::after {
    content: '';
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 6px;
    background: var(--accent-gradient);
    border-radius: 3px;
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.5);
}

.hero-subtitle {
    font-size: 22px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 50px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.hero-badges {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 60px;
}

.hero-badge {
    background: rgba(255, 255, 255, 0.1);
    padding: 14px 26px;
    border-radius: 100px;
    font-size: 15px;
    color: rgba(255, 255, 255, 0.95);
    border: 2px solid rgba(255, 255, 255, 0.15);
    display: flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s;
    font-weight: 500;
    backdrop-filter: blur(10px);
}

.hero-badge::before {
    content: '✓';
    color: var(--success);
    font-weight: bold;
    font-size: 18px;
}

.hero-badge:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-4px);
    border-color: rgba(255, 255, 255, 0.25);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.hero-checklist {
    list-style: none;
    margin-bottom: 60px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    background: rgba(255, 255, 255, 0.08);
    padding: 40px;
    border-radius: var(--radius);
    border: 2px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.hero-checklist li {
    padding-left: 40px;
    margin-bottom: 24px;
    position: relative;
    color: rgba(255, 255, 255, 0.95);
    text-align: left;
    font-size: 18px;
    font-weight: 500;
}

.hero-checklist li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 0;
    color: var(--success);
    font-weight: bold;
    font-size: 22px;
}

.hero-actions {
    display: flex;
    gap: 24px;
    justify-content: center;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.btn {
    padding: 20px 40px;
    border-radius: var(--radius);
    font-size: 17px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
    font-family: inherit;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    position: relative;
    overflow: hidden;
}

.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;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: var(--accent-gradient);
    color: white;
    box-shadow: 0 12px 40px rgba(37, 99, 235, 0.4);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-primary:hover {
    transform: translateY(-6px) scale(1.05);
    box-shadow: 0 20px 60px rgba(37, 99, 235, 0.6);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.15);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(15px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-6px);
    border-color: rgba(255, 255, 255, 0.35);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.3);
}

.hero-note {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 30px;
}

.hero-note a {
    color: #93c5fd;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    position: relative;
}

.hero-note a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: #93c5fd;
    transition: width 0.3s;
}

.hero-note a:hover {
    color: #bfdbfe;
}

.hero-note a:hover::after {
    width: 100%;
}

/* HIGH CONTRAST CONTENT SECTIONS */
.content-section {
    padding: 120px 32px;
    position: relative;
    transition: all 0.3s;
}

.content-section:nth-child(odd):not(:first-child):not(:last-child) {
    background: var(--light);
    border-top: 8px solid var(--light-gray);
    border-bottom: 8px solid var(--light-gray);
}

.content-section:nth-child(even):not(:first-child):not(:last-child) {
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    border-top: 8px solid #e2e8f0;
    border-bottom: 8px solid #e2e8f0;
}

.section-inner {
    max-width: 1280px;
    margin: 0 auto;
}

.section-title {
    font-size: 56px;
    text-align: center;
    margin-bottom: 28px;
    color: var(--navy);
    font-weight: 900;
    letter-spacing: -1px;
    position: relative;
    padding-bottom: 24px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 6px;
    background: var(--accent-gradient);
    border-radius: 3px;
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3);
}

.section-subtitle {
    text-align: center;
    color: var(--medium-gray);
    font-size: 20px;
    margin-bottom: 80px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
    font-weight: 500;
}

/* ENHANCED CARDS DESIGN */
.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 40px;
    margin-top: 80px;
}

.card {
    background: var(--light);
    padding: 48px;
    border-radius: var(--radius);
    border: 3px solid #e2e8f0;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: var(--accent-gradient);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.6s ease;
}

.card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: var(--shadow-xl);
    border-color: var(--accent-light);
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
}

.card:hover::before {
    transform: scaleX(1);
}

.card-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
    color: var(--accent);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    margin-bottom: 32px;
    transition: all 0.5s;
    position: relative;
    box-shadow: 0 8px 25px rgba(37, 99, 235, 0.15);
}

.card-icon::after {
    content: '';
    position: absolute;
    top: -4px;
    left: -4px;
    right: -4px;
    bottom: -4px;
    background: var(--accent-gradient);
    border-radius: 24px;
    opacity: 0;
    transition: opacity 0.3s;
}

.card:hover .card-icon {
    transform: scale(1.15) rotate(8deg);
    color: white;
    box-shadow: 0 15px 40px rgba(37, 99, 235, 0.3);
}

.card:hover .card-icon::after {
    opacity: 1;
}

.card-icon i {
    position: relative;
    z-index: 1;
}

.card h3 {
    font-size: 28px;
    margin-bottom: 20px;
    color: var(--navy);
    font-weight: 800;
    line-height: 1.3;
}

.card p {
    color: var(--medium-gray);
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 24px;
}

.card-features {
    list-style: none;
    padding: 0;
    margin: 32px 0 0 0;
}

.card-features li {
    padding-left: 32px;
    margin-bottom: 16px;
    position: relative;
    color: var(--dark-gray);
    font-size: 16px;
    font-weight: 500;
}

.card-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success);
    font-weight: bold;
    font-size: 18px;
}

/* ENHANCED AREAS SECTION */
.areas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 36px;
    margin-top: 80px;
}

.area-card {
    background: var(--light);
    padding: 40px;
    border-radius: var(--radius);
    border: 3px solid #e2e8f0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: var(--shadow);
}

.area-card:hover {
    transform: translateY(-12px) scale(1.03);
    border-color: var(--accent-light);
    box-shadow: var(--shadow-xl);
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
}

.area-card h3 {
    font-size: 24px;
    margin-bottom: 24px;
    color: var(--navy);
    display: flex;
    align-items: center;
    gap: 16px;
    font-weight: 800;
}

.area-card p {
    color: var(--medium-gray);
    line-height: 1.8;
    margin-bottom: 20px;
    font-size: 16px;
}

.area-card strong {
    color: var(--navy);
    font-weight: 700;
    background: linear-gradient(135deg, #dbeafe 0%, #eff6ff 100%);
    padding: 4px 12px;
    border-radius: 8px;
    display: inline-block;
}

/* DRAMATIC TIPS SECTION */
.tips-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
    margin-top: 80px;
}

.tip-card {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    padding: 40px;
    border-radius: var(--radius);
    border-left: 6px solid var(--accent);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: var(--shadow);
    position: relative;
    overflow: hidden;
}

.tip-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.05) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.3s;
}

.tip-card:hover {
    transform: translateY(-10px) rotate(1deg);
    box-shadow: var(--shadow-xl);
    border-left: 6px solid var(--accent-light);
}

.tip-card:hover::before {
    opacity: 1;
}

.tip-card h3 {
    font-size: 22px;
    margin-bottom: 20px;
    color: var(--navy);
    font-weight: 800;
    position: relative;
    z-index: 1;
}

.tip-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
    position: relative;
    z-index: 1;
}

.tip-card li {
    padding: 14px 0;
    color: var(--dark-gray);
    border-bottom: 2px dashed #e2e8f0;
    font-size: 16px;
    font-weight: 500;
}

.tip-card li:last-child {
    border-bottom: none;
}

/* DRAMATIC CTA SECTIONS */
.cta-section {
    padding: 140px 32px;
    background: linear-gradient(135deg,
    var(--navy) 0%,
    #0c1f3c 25%,
    #0e2448 50%,
    #112955 75%,
    var(--navy-light) 100%);
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
    border-top: 8px solid var(--accent);
    border-bottom: 8px solid var(--accent);
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
            radial-gradient(circle at 20% 80%, rgba(37, 99, 235, 0.3) 0%, transparent 50%),
            radial-gradient(circle at 80% 20%, rgba(37, 99, 235, 0.25) 0%, transparent 50%);
    animation: pulseBackground 10s ease-in-out infinite;
    pointer-events: none;
}

@keyframes pulseBackground {
    0%, 100% { opacity: 0.8; }
    50% { opacity: 1; }
}

.cta-inner {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.cta-title {
    font-size: 56px;
    margin-bottom: 32px;
    font-weight: 900;
    letter-spacing: -1px;
    background: linear-gradient(to right, #ffffff, #a5b4fc);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    position: relative;
}

.cta-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 6px;
    background: var(--accent-gradient);
    border-radius: 3px;
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.5);
}

.cta-subtitle {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 60px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.cta-buttons {
    display: flex;
    gap: 28px;
    justify-content: center;
    margin-top: 60px;
    flex-wrap: wrap;
}

.btn-large {
    padding: 24px 48px;
    font-size: 18px;
    border-radius: var(--radius);
    font-weight: 700;
    min-width: 280px;
}

/* ENHANCED TESTIMONIALS */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 36px;
    margin-top: 80px;
}

.testimonial-card {
    background: var(--light);
    padding: 40px;
    border-radius: var(--radius);
    border: 3px solid #e2e8f0;
    box-shadow: var(--shadow);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 120px;
    color: rgba(37, 99, 235, 0.08);
    font-family: Georgia, serif;
    line-height: 1;
    transition: all 0.3s;
}

.testimonial-card:hover {
    transform: translateY(-12px);
    box-shadow: var(--shadow-xl);
    border-color: var(--accent-light);
}

.testimonial-card:hover::before {
    color: rgba(37, 99, 235, 0.15);
    transform: scale(1.1);
}

.testimonial-rating {
    color: #fbbf24;
    font-size: 20px;
    margin-bottom: 24px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.testimonial-quote {
    color: var(--dark-gray);
    font-style: italic;
    line-height: 1.8;
    margin-bottom: 32px;
    font-size: 17px;
    position: relative;
    z-index: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 20px;
    position: relative;
    z-index: 1;
}

.author-avatar {
    width: 56px;
    height: 56px;
    background: var(--accent-gradient);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 20px;
    box-shadow: 0 6px 20px rgba(37, 99, 235, 0.3);
    transition: transform 0.3s;
}

.testimonial-card:hover .author-avatar {
    transform: scale(1.1);
}

.author-info h4 {
    font-size: 18px;
    color: var(--navy);
    margin-bottom: 6px;
    font-weight: 800;
}

.author-info p {
    font-size: 15px;
    color: var(--medium-gray);
}

/* DRAMATIC FOOTER */
.footer {
    background: linear-gradient(135deg, #061224 0%, var(--navy) 100%);
    color: rgba(255, 255, 255, 0.85);
    padding: 100px 32px 50px;
    position: relative;
    border-top: 8px solid var(--accent);
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.15), transparent);
}

.footer-inner {
    max-width: 1280px;
    margin: 0 auto;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 60px;
}

.footer-logo {
    width: 50px;
    height: 50px;
    background: var(--accent-gradient);
    color: white;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 24px;
    box-shadow: 0 8px 25px rgba(37, 99, 235, 0.4);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 60px;
    margin: 60px 0;
}

.footer-column h4 {
    color: white;
    margin-bottom: 30px;
    font-size: 18px;
    font-weight: 800;
    position: relative;
    padding-bottom: 12px;
}

.footer-column h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--accent);
    border-radius: 2px;
}

.footer-column p, .footer-column a {
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 18px;
    display: block;
    text-decoration: none;
    transition: all 0.3s;
    font-size: 16px;
    position: relative;
    padding-left: 0;
}

.footer-column a::before {
    content: '→';
    position: absolute;
    left: 0;
    opacity: 0;
    transform: translateX(-20px);
    transition: all 0.3s;
}

.footer-column a:hover {
    color: white;
    transform: translateX(10px);
    padding-left: 20px;
}

.footer-column a:hover::before {
    opacity: 1;
    transform: translateX(0);
}

.footer-copyright {
    text-align: center;
    margin-top: 80px;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
    font-size: 15px;
    line-height: 1.8;
}

/* ENHANCED ANIMATIONS */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(60px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(2deg);
    }
}

.animate-in {
    animation: fadeInUp 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.float-animation {
    animation: float 6s ease-in-out infinite;
}

/* RESPONSIVE DESIGN WITH HIGH CONTRAST */
@media (max-width: 1200px) {
    .hero-title {
        font-size: 64px;
    }

    .section-title, .cta-title {
        font-size: 48px;
    }

    .cards-grid {
        grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    }
}

@media (max-width: 992px) {
    .hero {
        padding: 160px 28px 120px;
    }

    .hero-title {
        font-size: 56px;
    }

    .section-title, .cta-title {
        font-size: 42px;
    }

    .cards-grid,
    .areas-grid,
    .tips-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .content-section, .cta-section {
        padding: 100px 28px;
    }

    .card, .area-card, .tip-card, .testimonial-card {
        padding: 40px 32px;
    }
}

@media (max-width: 768px) {
    .header-inner {
        padding: 18px 24px;
    }

    .mobile-menu-btn {
        display: block;
    }

    .nav-links {
        position: fixed;
        top: 90px;
        left: 24px;
        right: 24px;
        background: rgba(10, 26, 48, 0.98);
        backdrop-filter: blur(25px);
        padding: 36px 32px;
        flex-direction: column;
        gap: 28px;
        transform: translateY(-150%);
        opacity: 0;
        transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 999;
        box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4);
        border: 2px solid rgba(255, 255, 255, 0.15);
        border-radius: var(--radius);
    }

    .nav-links.active {
        transform: translateY(0);
        opacity: 1;
    }

    .hero {
        padding: 140px 24px 100px;
        min-height: auto;
    }

    .hero-title {
        font-size: 48px;
    }

    .hero-subtitle {
        font-size: 20px;
    }

    .hero-checklist {
        padding: 32px;
    }

    .hero-actions, .cta-buttons {
        flex-direction: column;
        gap: 20px;
    }

    .btn, .btn-large {
        width: 100%;
        text-align: center;
    }

    .section-title, .cta-title {
        font-size: 38px;
    }

    .card-icon {
        width: 70px;
        height: 70px;
        font-size: 32px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 50px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 42px;
    }

    .section-title, .cta-title {
        font-size: 34px;
    }

    .hero-label span {
        padding: 12px 24px;
        font-size: 14px;
    }

    .hero-badge {
        padding: 12px 20px;
        font-size: 14px;
    }

    .card, .area-card, .tip-card, .testimonial-card {
        padding: 32px 24px;
    }

    .content-section, .cta-section {
        padding: 80px 24px;
    }

    .footer {
        padding: 80px 24px 40px;
    }
}

/* CUSTOM SCROLLBAR */
::-webkit-scrollbar {
    width: 12px;
}

::-webkit-scrollbar-track {
    background: #f1f5f9;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, var(--accent), var(--accent-light));
    border-radius: 6px;
    border: 3px solid #f1f5f9;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, var(--accent-light), #60a5fa);
}


