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

:root {
    --color-dark: #0a0e27;
    --color-dark-alt: #1a1f3a;
    --color-light: #f8f9fa;
    --color-white: #ffffff;
    --color-accent: #00d4ff;
    --color-accent-dark: #0099cc;
    --color-purple: #6b46c1;
    --color-purple-dark: #553c9a;
    --color-text-dark: #2d3748;
    --color-text-light: #e2e8f0;
    --color-gold: #ffd700;
}

html {
    scroll-behavior: auto;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.6;
    color: var(--color-text-dark);
    background: var(--color-white);
    overflow-x: hidden;
}

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

.container-full {
    width: 100%;
}

.navbar {
    background: var(--color-dark);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background: rgba(10, 14, 39, 0.95);
    backdrop-filter: blur(10px);
    padding: 0.7rem 0;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 2rem;
}

.nav-brand {
    display: flex;
    align-items: center;
    margin-right: 1rem;
}

.logo-link {
    display: flex;
    align-items: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.logo {
    height: 55px;
    width: auto;
    transition: opacity 0.3s ease;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
    image-rendering: high-quality;
    filter: brightness(1);
}

.logo-link:hover .logo {
    opacity: 0.85;
}

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

.nav-links a {
    color: var(--color-text-light);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    white-space: nowrap;
    font-size: 0.8rem;
}

.nav-dropdown-trigger {
    white-space: nowrap;
    font-size: 0.9rem !important;
}

.nav-links a:hover {
    color: var(--color-accent);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--color-accent);
    transition: width 0.3s ease;
}

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

.nav-cta {
    background: var(--color-accent);
    color: var(--color-dark) !important;
    padding: 0.6rem 1.5rem;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.nav-cta:hover {
    background: var(--color-white);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 212, 255, 0.4);
}

.pulse-cta {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(0, 212, 255, 0.7); }
    50% { box-shadow: 0 0 0 10px rgba(0, 212, 255, 0); }
}

/* New Navigation Styles */
.nav-highlight {
    display: flex !important;
    align-items: center;
    gap: 0.4rem;
    background: linear-gradient(90deg, rgba(59, 130, 246, 0.2), rgba(147, 51, 234, 0.2), rgba(59, 130, 246, 0.2));
    background-size: 200% 100%;
    color: #93c5fd !important;
    border: 1px solid rgba(96, 165, 250, 0.3);
    padding: 0.5rem 0.8rem !important;
    border-radius: 8px;
    font-size: 0.85rem !important;
    animation: nav-highlight-shimmer 3s ease-in-out infinite;
}

.nav-highlight:hover {
    border-color: rgba(96, 165, 250, 0.5);
    color: #fff !important;
}

.nav-highlight::after {
    display: none !important;
}

@keyframes nav-highlight-shimmer {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.sparkle-icon {
    width: 14px;
    height: 14px;
    flex-shrink: 0;
}

.nav-current {
    color: var(--color-white) !important;
    opacity: 0.8;
}

/* Contact Dropdown */
.nav-dropdown {
    position: relative;
}

.nav-dropdown-trigger {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    background: none;
    border: none;
    color: var(--color-text-light);
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    padding: 0.5rem 0;
    transition: color 0.3s ease;
    font-family: inherit;
}

.nav-dropdown-trigger:hover {
    color: var(--color-accent);
}

.chevron-icon {
    width: 16px;
    height: 16px;
    transition: transform 0.3s ease;
}

.nav-dropdown.open .chevron-icon {
    transform: rotate(180deg);
}

.nav-dropdown-menu {
    position: absolute;
    top: calc(100% + 0.5rem);
    right: 0;
    min-width: 220px;
    background: rgba(15, 23, 42, 0.98);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 0.5rem;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    z-index: 100;
}

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

.nav-dropdown-menu a {
    display: flex !important;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem !important;
    color: var(--color-text-light) !important;
    border-radius: 8px;
    transition: all 0.2s ease;
    font-size: 0.9rem !important;
}

.nav-dropdown-menu a:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--color-white) !important;
}

.nav-dropdown-menu a::after {
    display: none !important;
}

.user-icon {
    width: 16px;
    height: 16px;
    opacity: 0.7;
}

/* Schedule Call CTA Button */
.nav-cta-btn {
    display: flex !important;
    align-items: center;
    gap: 0.4rem;
    background: linear-gradient(135deg, #2563eb 0%, #3b82f6 100%);
    color: #fff !important;
    padding: 0.6rem 1rem !important;
    border-radius: 8px;
    font-weight: 600 !important;
    font-size: 0.85rem !important;
    margin-left: 0.5rem;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.35);
    transition: all 0.3s ease;
    white-space: nowrap;
}

.nav-cta-btn:hover {
    background: linear-gradient(135deg, #3b82f6 0%, #60a5fa 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(59, 130, 246, 0.45);
    color: #fff !important;
}

.nav-cta-btn::after {
    display: none !important;
}

.phone-icon {
    width: 16px;
    height: 16px;
}

.hero {
    position: relative;
    height: 90vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.parallax {
    transform: translateY(0) translateZ(0);
    will-change: transform;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(10, 14, 39, 0.9) 0%, rgba(107, 70, 193, 0.8) 100%);
    z-index: 2;
}

.particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--color-accent);
    border-radius: 50%;
    opacity: 0.6;
    animation: float 15s infinite;
    will-change: transform;
    transform: translateZ(0);
}

@keyframes float {
    0%, 100% { transform: translateY(0) translateX(0); opacity: 0; }
    10% { opacity: 0.6; }
    90% { opacity: 0.6; }
    100% { transform: translateY(-100vh) translateX(100px); opacity: 0; }
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    color: var(--color-white);
    max-width: 900px;
    padding: 2rem;
}

.hero-badge {
    display: inline-block;
    background: rgba(0, 212, 255, 0.2);
    border: 1px solid var(--color-accent);
    color: var(--color-accent);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-title {
    font-size: 5rem;
    font-weight: 900;
    margin-bottom: 1rem;
    line-height: 1;
    letter-spacing: -3px;
    text-shadow: 2px 2px 20px rgba(0, 0, 0, 0.5);
    background: linear-gradient(to right, #fff, var(--color-accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-tagline {
    font-size: 1.4rem;
    font-weight: 700;
    background: linear-gradient(90deg, #00d4ff, #64f0ff, #00d4ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    opacity: 1;
    animation: shimmer 3s ease-in-out infinite;
    filter: drop-shadow(0 0 20px rgba(0, 212, 255, 0.6));
}

@keyframes shimmer {
    0%, 100% { opacity: 0.95; }
    50% { opacity: 1; }
}

.hero-subtitle {
    font-size: 1.55rem;
    font-weight: 700;
    margin-bottom: 2.5rem;
    opacity: 1;
    letter-spacing: 1.8px;
    text-transform: uppercase;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.7);
    color: #ffffff;
    line-height: 1.4;
}

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

.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%) translateZ(0);
    transition: width 0.6s, height 0.6s;
}

.btn:hover::before {
    width: 300px;
    height: 300px;
}

.btn-large {
    padding: 1.2rem 3rem;
    font-size: 1.1rem;
}

.btn-xlarge {
    padding: 1.5rem 4rem;
    font-size: 1.3rem;
    font-weight: 800;
}

.btn-primary {
    background: var(--color-accent);
    color: var(--color-dark);
}

.btn-primary:hover {
    background: var(--color-white);
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(0, 212, 255, 0.5);
}

.btn-outline {
    background: transparent;
    color: var(--color-white);
    border: 2px solid var(--color-white);
}

.btn-outline:hover {
    background: var(--color-white);
    color: var(--color-dark);
    transform: translateY(-3px);
}

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

.btn-dark:hover {
    background: var(--color-dark-alt);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(10, 14, 39, 0.4);
}

.btn-light {
    background: var(--color-white);
    color: var(--color-dark);
}

.btn-light:hover {
    background: var(--color-accent);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255, 255, 255, 0.4);
}

.btn-accent {
    background: var(--color-accent);
    color: var(--color-dark);
    margin-top: 1.5rem;
}

.pulse-hover:hover {
    animation: pulse-scale 1s infinite;
}

@keyframes pulse-scale {
    0%, 100% { transform: scale(1) translateY(-3px); }
    50% { transform: scale(1.05) translateY(-3px); }
}

.glow-effect {
    box-shadow: 0 0 30px rgba(0, 212, 255, 0.6);
}

.glow-effect:hover {
    box-shadow: 0 0 50px rgba(0, 212, 255, 0.8);
}

.stats-section {
    background: linear-gradient(135deg, var(--color-dark) 0%, var(--color-dark-alt) 100%);
    padding: 4rem 0;
    border-top: 3px solid var(--color-accent);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
    text-align: center;
}

.stat-item {
    color: var(--color-white);
    animation: scale-in 0.6s ease-out forwards;
    opacity: 0;
}

.stat-item:nth-child(1) { animation-delay: 0.1s; }
.stat-item:nth-child(2) { animation-delay: 0.2s; }
.stat-item:nth-child(3) { animation-delay: 0.3s; }
.stat-item:nth-child(4) { animation-delay: 0.4s; }

@keyframes scale-in {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.stat-number {
    font-size: 4rem;
    font-weight: 900;
    color: var(--color-accent);
    margin-bottom: 0.5rem;
    line-height: 1;
}

.stat-label {
    font-size: 1rem;
    font-weight: 500;
    color: var(--color-text-light);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.section {
    padding: 7rem 0;
}

.section-light {
    background: var(--color-light);
}

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

.section-title {
    font-size: 3rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 4rem;
    color: var(--color-text-dark);
    letter-spacing: -1px;
    line-height: 1.2;
}

.section-title-white {
    font-size: 3.2rem;
    font-weight: 900;
    margin-bottom: 4rem;
    color: var(--color-white);
    letter-spacing: -1.5px;
    line-height: 1.15;
    text-align: center;
}

.challenge-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

.challenge-item {
    background: var(--color-white);
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    border-left: 5px solid var(--color-purple);
    position: relative;
}

.challenge-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: block;
    animation: bounce-icon 2s ease-in-out infinite;
}

@keyframes bounce-icon {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.card-hover-glow:hover {
    box-shadow: 0 20px 50px rgba(107, 70, 193, 0.2), 0 0 30px rgba(0, 212, 255, 0.2);
}

.challenge-item:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 15px 40px rgba(107, 70, 193, 0.3);
    border-left-color: var(--color-accent);
}

.challenge-number {
    display: inline-block;
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, var(--color-purple), var(--color-purple-dark));
    color: var(--color-white);
    border-radius: 50%;
    text-align: center;
    line-height: 45px;
    font-weight: 800;
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.challenge-item h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--color-dark);
}

.challenge-item p {
    font-size: 1.05rem;
    color: var(--color-text-dark);
    line-height: 1.7;
}

.text-center {
    text-align: center;
    margin-top: 3rem;
}

.two-col-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.col-image {
    position: relative;
}

.image-frame {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 50px rgba(0, 212, 255, 0.4);
}

.feature-image {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

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

.image-badge {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: rgba(0, 212, 255, 0.95);
    color: var(--color-dark);
    padding: 0.8rem 1.5rem;
    border-radius: 8px;
    font-weight: 700;
    font-size: 0.9rem;
}

.intro-text {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--color-white);
    line-height: 1.6;
}

.intro-text-white {
    font-size: 1.3rem;
    font-weight: 400;
    margin-bottom: 3rem;
    color: var(--color-text-light);
    text-align: center;
    opacity: 0.95;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    letter-spacing: 0.3px;
}

.body-text {
    font-size: 1.1rem;
    margin-bottom: 1.2rem;
    color: var(--color-text-light);
    line-height: 1.9;
}

.section-benefits {
    padding: 0;
}

.benefit-block {
    position: relative;
    min-height: 500px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.benefit-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.benefit-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(10, 14, 39, 0.92) 0%, rgba(10, 14, 39, 0.88) 100%);
    z-index: 2;
}

.benefit-overlay-alt {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to left, rgba(107, 70, 193, 0.92) 0%, rgba(107, 70, 193, 0.88) 100%);
    z-index: 2;
}

.benefit-content {
    position: relative;
    z-index: 3;
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem;
    color: var(--color-white);
}

.benefit-title {
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    letter-spacing: -1px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.4);
}

.benefit-text {
    font-size: 1.25rem;
    line-height: 1.9;
    max-width: 800px;
    opacity: 0.98;
    margin-bottom: 1.5rem;
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.3);
}

.benefit-list {
    list-style: none;
    margin-top: 2rem;
    max-width: 700px;
}

.benefit-list li {
    padding: 0.8rem 0;
    padding-left: 2rem;
    position: relative;
    font-size: 1.1rem;
    opacity: 0.9;
}

.benefit-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--color-accent);
    font-weight: bold;
    font-size: 1.3rem;
}

.section-subtitle {
    font-size: 1.3rem;
    margin-bottom: 4rem;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 600;
    line-height: 1.9;
}

.case-studies-hero {
    padding: 6rem 0;
}

.case-studies-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-bottom: 4rem;
}

.case-study-card {
    background: linear-gradient(135deg, rgba(26, 31, 58, 0.85) 0%, rgba(0, 212, 255, 0.08) 100%);
    border: 2px solid var(--color-accent);
    padding: 1.8rem;
    border-radius: 20px;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: 0 8px 32px rgba(0, 212, 255, 0.15);
    min-width: 0;
}

.case-study-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--color-accent) 0%, var(--color-purple) 100%);
}

.case-study-card:hover {
    transform: translateY(-12px);
    background: linear-gradient(135deg, rgba(26, 31, 58, 0.95) 0%, rgba(0, 212, 255, 0.15) 100%);
    border-color: var(--color-accent);
    box-shadow: 0 20px 60px rgba(0, 212, 255, 0.35);
}

.case-study-badge {
    display: inline-block;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.25), rgba(107, 70, 193, 0.15));
    color: var(--color-accent);
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-size: 0.8rem;
    font-weight: 800;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    border: 1px solid rgba(0, 212, 255, 0.3);
}

.case-study-title {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--color-white);
    margin-bottom: 1rem;
    line-height: 1.3;
    letter-spacing: -0.5px;
}

.case-study-text {
    font-size: 0.9rem;
    line-height: 1.7;
    color: #ffffff;
    opacity: 0.92;
    margin-bottom: 1.5rem;
    flex-grow: 1;
    font-weight: 500;
}

.case-study-highlight {
    background: linear-gradient(90deg, rgba(0, 212, 255, 0.2), rgba(107, 70, 193, 0.1));
    border-left: 5px solid var(--color-accent);
    padding: 1.2rem 1.3rem;
    border-radius: 8px;
    font-style: italic;
    color: var(--color-accent);
    margin-bottom: 1.5rem;
    font-size: 0.93rem;
    font-weight: 600;
    line-height: 1.7;
}

.case-study-metric {
    font-size: 0.85rem;
    color: var(--color-accent);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding-top: 1rem;
    border-top: 1px solid rgba(0, 212, 255, 0.2);
}

.case-study-philosophy {
    background: linear-gradient(135deg, rgba(26, 31, 58, 0.95) 0%, rgba(0, 212, 255, 0.2) 100%);
    border: 2px solid var(--color-accent);
    padding: 3.5rem;
    border-radius: 20px;
    text-align: center;
    margin-top: 2rem;
    box-shadow: 0 12px 48px rgba(0, 212, 255, 0.2);
}

.case-study-philosophy h3 {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--color-white);
    margin-bottom: 1.5rem;
    letter-spacing: -0.5px;
}

.case-study-philosophy p {
    font-size: 1.05rem;
    color: #ffffff;
    opacity: 0.95;
    line-height: 2;
    margin-bottom: 1.8rem;
}

.case-study-philosophy p:last-child {
    margin-bottom: 0;
}

.philosophy-accent {
    color: var(--color-accent);
    font-weight: 700;
    font-size: 1.15rem;
    display: block;
    margin-top: 0;
    padding: 0;
    border-top: none;
    border-bottom: none;
    line-height: 1.8;
}

.results-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
}

.result-card {
    background: var(--color-white);
    padding: 3rem;
    border-radius: 16px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    border-top: 4px solid var(--color-accent);
}

.result-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 212, 255, 0.2);
}

.card-glow:hover {
    box-shadow: 0 15px 40px rgba(0, 212, 255, 0.3), 0 0 20px rgba(107, 70, 193, 0.2);
}

.result-quote {
    font-size: 1.15rem;
    line-height: 1.8;
    color: var(--color-text-dark);
    font-style: italic;
    margin-bottom: 1.5rem;
    position: relative;
}

.result-quote::before {
    content: '';
    font-size: 4rem;
    position: absolute;
    top: -20px;
    left: -10px;
    color: var(--color-accent);
    opacity: 0;
}

.result-author {
    font-weight: 700;
    color: var(--color-dark);
    font-size: 0.95rem;
}

.section-guarantee {
    background: linear-gradient(135deg, var(--color-dark) 0%, var(--color-purple-dark) 100%);
    padding: 6rem 0;
    position: relative;
}

.guarantee-wrapper {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.guarantee-badge {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    background: rgba(0, 212, 255, 0.2);
    border: 2px solid var(--color-accent);
    padding: 1rem 2rem;
    border-radius: 50px;
    margin-bottom: 2rem;
}

.badge-icon {
    width: 50px;
    height: 50px;
    background: var(--color-accent);
    color: var(--color-dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: bold;
    position: relative;
}

.badge-icon::before {
    content: '';
    width: 20px;
    height: 10px;
    border-left: 3px solid var(--color-dark);
    border-bottom: 3px solid var(--color-dark);
    transform: rotate(-45deg) translateY(-3px);
}

.badge-text {
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--color-white);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.guarantee-content {
    margin: 3rem auto;
}

.guarantee-text {
    font-size: 1.3rem;
    line-height: 2;
    margin-bottom: 1.5rem;
    color: var(--color-text-light);
}

.guarantee-text-bold {
    font-size: 1.5rem;
    font-weight: 800;
    line-height: 1.8;
    margin-bottom: 2.5rem;
    color: var(--color-accent);
}

.performance-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
    margin-top: 3rem;
}

.performance-item {
    background: rgba(255, 255, 255, 0.08);
    padding: 3rem;
    border-radius: 16px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.4s ease;
}

.performance-item:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 15px 40px rgba(0, 212, 255, 0.3);
}

.performance-number {
    display: inline-block;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--color-accent), var(--color-accent-dark));
    color: var(--color-dark);
    border-radius: 50%;
    text-align: center;
    line-height: 60px;
    font-weight: 900;
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
}

.performance-item h4 {
    font-size: 1.4rem;
    color: var(--color-white);
    margin-bottom: 1rem;
    font-weight: 700;
}

.performance-item p {
    font-size: 1.1rem;
    color: var(--color-text-light);
    line-height: 1.8;
}

.section-final-cta {
    position: relative;
    padding: 8rem 0;
    overflow: hidden;
}

.cta-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.cta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(10, 14, 39, 0.95) 0%, rgba(107, 70, 193, 0.9) 100%);
    z-index: 2;
}

.cta-box {
    position: relative;
    z-index: 3;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    color: var(--color-white);
}

.cta-title {
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--color-white);
    margin-bottom: 1.5rem;
    letter-spacing: -2px;
    line-height: 1.1;
}

.cta-text {
    font-size: 1.4rem;
    color: var(--color-text-light);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.cta-features {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin: 2.5rem 0;
    flex-wrap: wrap;
}

.cta-feature {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--color-accent);
}

.cta-subtext {
    margin-top: 1.5rem;
    font-size: 1rem;
    color: var(--color-text-light);
    opacity: 0.8;
}

.footer {
    background: var(--color-dark);
    padding: 3rem 0;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer p {
    color: var(--color-text-light);
    font-size: 0.95rem;
}

.animate-fade-in {
    animation: fadeIn 1s ease-out;
}

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

.animate-on-scroll {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

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

@media (max-width: 968px) {
    .hero-title {
        font-size: 3.5rem;
    }

    .hero-subtitle {
        font-size: 1.4rem;
    }

    .two-col-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .benefit-content {
        padding: 3rem 2rem;
    }

    .benefit-title {
        font-size: 2.2rem;
    }

    .section-title,
    .section-title-white {
        font-size: 2.5rem;
    }

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

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

    .cta-features {
        flex-direction: column;
        gap: 1rem;
    }
}

@media (max-width: 1600px) {
    .case-studies-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 1400px) {
    .case-studies-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 968px) {
    .performance-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .case-studies-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .case-study-card {
        padding: 1.5rem;
    }

    .case-study-title {
        font-size: 1.15rem;
    }

    .case-study-text {
        font-size: 0.9rem;
    }

    .case-study-philosophy {
        padding: 2rem 1.5rem;
    }

    .case-study-philosophy h3 {
        font-size: 1.3rem;
    }

    .case-study-philosophy p {
        font-size: 0.95rem;
    }

    .philosophy-accent {
        font-size: 1rem;
        padding: 0.75rem 0;
    }

    .section-title-white {
        font-size: 1.75rem;
    }

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

    .logo {
        height: 42px;
    }
}

@media (max-width: 640px) {
    .container {
        padding: 0 1.25rem;
    }

    .hero {
        height: auto;
        min-height: 85vh;
        padding: 2rem 0;
    }

    .hero-content {
        padding: 1.5rem;
    }

    .hero-title {
        font-size: 2rem;
        line-height: 1.15;
        margin-bottom: 0.75rem;
    }

    .hero-tagline {
        font-size: 1rem;
        margin-bottom: 0.5rem;
    }

    .hero-subtitle {
        font-size: 0.85rem;
        margin-bottom: 1.5rem;
        letter-spacing: 0.5px;
    }

    .hero-badge {
        font-size: 0.7rem;
        padding: 0.4rem 0.8rem;
        margin-bottom: 1rem;
    }

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

    .btn, .btn-large, .btn-xlarge {
        width: 100%;
        padding: 0.9rem 1.25rem;
        font-size: 0.95rem;
    }

    .section {
        padding: 2.5rem 0;
    }

    .section-title,
    .section-title-white {
        font-size: 1.5rem;
        margin-bottom: 1.5rem;
        line-height: 1.3;
    }

    .challenge-grid,
    .performance-grid,
    .results-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .challenge-item {
        padding: 1.25rem;
    }

    .challenge-item h3 {
        font-size: 1rem;
    }

    .challenge-item p {
        font-size: 0.9rem;
    }

    .challenge-icon {
        font-size: 1.5rem;
    }

    .benefit-block {
        min-height: 300px;
    }

    .benefit-content {
        padding: 1.5rem;
    }

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

    .benefit-text {
        font-size: 0.9rem;
    }

    .benefit-list li {
        font-size: 0.85rem;
        padding-left: 1.25rem;
    }

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

    .stat-item {
        padding: 1rem;
    }

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

    .stat-label {
        font-size: 0.75rem;
    }

    .intro-text,
    .intro-text-white {
        font-size: 1rem;
    }

    .body-text {
        font-size: 0.9rem;
    }

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

    .cta-text {
        font-size: 0.95rem;
    }

    .cta-features {
        flex-direction: column;
        gap: 0.5rem;
    }

    .cta-feature {
        font-size: 0.85rem;
        padding: 0.5rem 1rem;
    }

    .cta-box {
        padding: 1.5rem;
    }

    .result-card {
        padding: 1.25rem;
    }

    .result-quote {
        font-size: 1rem;
    }

    .result-author {
        font-size: 0.85rem;
    }

    .case-studies-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-bottom: 2.5rem;
    }

    .case-study-card {
        padding: 1.8rem;
    }

    .case-study-title {
        font-size: 1.15rem;
    }

    .case-study-text {
        font-size: 0.9rem;
    }

    .case-study-philosophy {
        padding: 1.8rem;
    }

    .case-study-philosophy h3 {
        font-size: 1.3rem;
    }

    .case-study-philosophy p {
        font-size: 0.95rem;
    }

    .performance-item {
        padding: 1.5rem;
    }

    .performance-item h4 {
        font-size: 1.1rem;
    }

    .performance-item p {
        font-size: 0.9rem;
    }

    .performance-number {
        width: 50px;
        height: 50px;
        line-height: 50px;
        font-size: 1.5rem;
    }

    .guarantee-badge {
        flex-direction: column;
        gap: 0.5rem;
    }

    .guarantee-text {
        font-size: 1.1rem;
    }

    .guarantee-text-bold {
        font-size: 1.2rem;
    }

    .image-badge {
        font-size: 0.75rem;
        padding: 0.6rem 1rem;
    }

    .section-final-cta {
        padding: 4rem 0;
    }
}

@media (max-width: 480px) {
    .case-studies-grid {
        grid-template-columns: 1fr;
        gap: 1.2rem;
    }

    .case-study-card {
        padding: 1.2rem;
    }

    .case-study-title {
        font-size: 1rem;
        margin-bottom: 0.8rem;
    }

    .case-study-text {
        font-size: 0.85rem;
        line-height: 1.7;
        margin-bottom: 1rem;
    }

    .case-study-badge {
        font-size: 0.7rem;
        padding: 0.4rem 0.8rem;
    }

    .case-study-highlight {
        font-size: 0.85rem;
        padding: 0.8rem 1rem;
        margin-bottom: 1rem;
    }

    .case-study-metric {
        font-size: 0.75rem;
        padding-top: 0.8rem;
    }

    .case-study-philosophy {
        padding: 2rem;
        margin-top: 1.5rem;
    }

    .case-study-philosophy h3 {
        font-size: 1.2rem;
        margin-bottom: 1rem;
    }

    .case-study-philosophy p {
        font-size: 0.9rem;
        line-height: 1.8;
        margin-bottom: 1rem;
    }

    .philosophy-accent {
        font-size: 1rem;
        padding: 1rem 0;
    }

    .logo {
        height: 38px;
    }

    .hero {
        min-height: 80vh;
    }

    .hero-title {
        font-size: 1.75rem;
        letter-spacing: -0.5px;
    }

    .hero-tagline {
        font-size: 0.9rem;
    }

    .hero-subtitle {
        font-size: 0.8rem;
    }

    .container {
        padding: 0 1rem;
    }

    .section-title,
    .section-title-white {
        font-size: 1.4rem;
    }

    .btn, .btn-large, .btn-xlarge {
        padding: 0.9rem 1.2rem;
        font-size: 0.9rem;
    }

    .challenge-number {
        width: 40px;
        height: 40px;
        line-height: 40px;
        font-size: 1.1rem;
    }

    .stats-grid {
        gap: 1rem;
    }

    .stat-number {
        font-size: 2rem;
    }

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

    .cta-text {
        font-size: 0.95rem;
    }

    .cta-features {
        flex-direction: column;
        gap: 1rem;
    }
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}

.hamburger-line {
    width: 24px;
    height: 3px;
    background: var(--color-accent);
    border-radius: 2px;
    transition: all 0.3s ease;
    margin: 2px 0;
}

.mobile-menu-toggle.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-toggle.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Footer Styles */
.footer {
    background: var(--color-dark);
    padding: 2rem 0;
    border-top: 1px solid rgba(0, 212, 255, 0.2);
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    text-align: center;
}

.footer-main p {
    color: var(--color-text-light);
    font-size: 0.9rem;
    margin: 0;
}

.footer-links {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.footer-link {
    color: var(--color-accent);
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: var(--color-white);
    text-decoration: underline;
}

.footer-divider {
    color: rgba(255, 255, 255, 0.3);
}

/* Privacy Modal */
.privacy-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(10, 14, 39, 0.95) !important;
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    z-index: 9999;
    justify-content: center;
    align-items: center;
    padding: 2rem;
    overflow: auto;
}

.privacy-modal.active {
    display: flex !important;
    animation: modalFadeIn 0.4s ease;
}

@keyframes modalFadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

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

.privacy-modal-content {
    background: #0d1233 !important;
    background: linear-gradient(160deg, #0d1233 0%, #1a1f4a 50%, #0d1233 100%) !important;
    border-radius: 24px;
    width: 100%;
    max-width: 680px;
    max-height: 85vh;
    overflow-y: auto;
    padding: 0;
    position: relative;
    border: 2px solid rgba(0, 212, 255, 0.4);
    box-shadow: 
        0 30px 80px rgba(0, 0, 0, 0.8),
        0 0 60px rgba(0, 212, 255, 0.2);
    animation: modalSlideUp 0.5s ease;
}

.privacy-header {
    padding: 2.5rem 3rem 2rem;
    background: linear-gradient(180deg, rgba(0, 212, 255, 0.08) 0%, transparent 100%);
    border-bottom: 1px solid rgba(0, 212, 255, 0.15);
    position: relative;
}

.privacy-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--color-accent), transparent);
    border-radius: 3px;
}

.privacy-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--color-accent) 0%, var(--color-purple) 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
    font-size: 1.8rem;
    box-shadow: 0 10px 30px rgba(0, 212, 255, 0.3);
}

.privacy-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    width: 44px;
    height: 44px;
    font-size: 1.6rem;
    cursor: pointer;
    color: var(--color-text-light);
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.privacy-close:hover {
    background: rgba(255, 100, 100, 0.2);
    border-color: rgba(255, 100, 100, 0.4);
    color: #ff6b6b;
    transform: scale(1.1);
}

.privacy-modal-content h2 {
    color: var(--color-white);
    margin-bottom: 0.5rem;
    font-size: 1.9rem;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.privacy-modal-content .privacy-subtitle {
    color: var(--color-text-light);
    font-size: 0.9rem;
    opacity: 0.6;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.privacy-subtitle::before {
    content: '';
    width: 8px;
    height: 8px;
    background: var(--color-accent);
    border-radius: 50%;
}

.privacy-body {
    padding: 2rem 3rem 3rem;
}

.privacy-text h3 {
    color: var(--color-accent);
    margin-top: 1.75rem;
    margin-bottom: 0.75rem;
    font-size: 1.1rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.privacy-text h3:first-child {
    margin-top: 0;
}

.privacy-text h3::before {
    content: '';
    width: 28px;
    height: 28px;
    background: rgba(0, 212, 255, 0.15);
    border: 1px solid rgba(0, 212, 255, 0.3);
    border-radius: 8px;
    flex-shrink: 0;
}

.privacy-text p {
    color: var(--color-text-light);
    line-height: 1.85;
    margin-bottom: 1rem;
    font-size: 0.95rem;
    padding-left: 2.75rem;
    opacity: 0.9;
}

.privacy-text strong {
    color: var(--color-accent);
    font-weight: 600;
}

.privacy-contact {
    margin-top: 2.5rem;
    padding: 1.75rem;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.12) 0%, rgba(107, 70, 193, 0.12) 100%);
    border-radius: 16px;
    border: 1px solid rgba(0, 212, 255, 0.25);
    position: relative;
    overflow: hidden;
}

.privacy-contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--color-accent), var(--color-purple));
}

.privacy-contact h3 {
    margin-top: 0;
    margin-bottom: 0.75rem;
}

.privacy-contact h3::before {
    display: none;
}

.privacy-contact p {
    margin-bottom: 0;
    padding-left: 0;
}

.privacy-contact a {
    color: var(--color-accent);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    padding: 0.25rem 0.5rem;
    margin: -0.25rem -0.5rem;
    border-radius: 6px;
}

.privacy-contact a:hover {
    background: rgba(0, 212, 255, 0.2);
    color: var(--color-white);
}

/* Mobile Menu Responsive */
@media (max-width: 900px) {
    .mobile-menu-toggle {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 300px;
        height: 100vh;
        background: linear-gradient(180deg, var(--color-dark) 0%, #0d1233 100%);
        flex-direction: column;
        justify-content: flex-start;
        padding: 100px 2rem 2rem;
        gap: 0;
        transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: -10px 0 40px rgba(0, 0, 0, 0.5);
        z-index: 1000;
        border-left: 1px solid rgba(0, 212, 255, 0.2);
    }

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

    .nav-links > a,
    .nav-links > .nav-dropdown {
        font-size: 1rem !important;
        padding: 1rem 0 !important;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
        display: block !important;
        white-space: normal !important;
        color: var(--color-text-light);
        transition: all 0.3s ease;
    }

    .nav-links > a:hover {
        color: var(--color-accent);
        padding-left: 0.5rem !important;
    }

    .nav-links a::after {
        display: none;
    }

    /* Mobile highlight link */
    .nav-links .nav-highlight {
        background: linear-gradient(90deg, rgba(59, 130, 246, 0.15), rgba(147, 51, 234, 0.15));
        border: 1px solid rgba(96, 165, 250, 0.25);
        padding: 1rem !important;
        border-radius: 8px;
        margin-bottom: 0.5rem;
        display: flex !important;
        align-items: center;
        gap: 0.5rem;
    }

    /* Mobile dropdown */
    .nav-dropdown {
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    }

    .nav-dropdown-trigger {
        width: 100%;
        padding: 1rem 0 !important;
        justify-content: space-between;
    }

    .nav-dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        background: rgba(255, 255, 255, 0.05);
        border: none;
        border-radius: 8px;
        margin-top: 0.5rem;
        margin-bottom: 0.5rem;
        padding: 0.5rem;
        box-shadow: none;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease, padding 0.3s ease;
        padding: 0;
    }

    .nav-dropdown.open .nav-dropdown-menu {
        max-height: 300px;
        padding: 0.5rem;
    }

    .nav-dropdown-menu a {
        padding: 0.75rem 1rem !important;
        font-size: 0.9rem !important;
    }

    /* Mobile CTA button */
    .nav-cta-btn {
        margin: 1rem 0 0 0 !important;
        justify-content: center;
        width: 100%;
        padding: 1rem !important;
    }

    .nav-cta {
        margin-top: 1.5rem !important;
        text-align: center;
        padding: 1rem 2rem !important;
        border-radius: 8px;
        background: var(--color-accent) !important;
        color: var(--color-dark) !important;
        font-weight: 600;
        border-bottom: none !important;
    }

    .nav-cta:hover {
        background: var(--color-white) !important;
        padding-left: 2rem !important;
    }

    .navbar {
        padding: 0.75rem 0;
    }

    .navbar .container {
        padding: 0 1.25rem;
    }

    .logo {
        height: 45px;
    }

    /* Mobile menu overlay */
    .nav-links::before {
        content: 'Menu';
        position: absolute;
        top: 40px;
        left: 2rem;
        font-size: 0.8rem;
        text-transform: uppercase;
        letter-spacing: 2px;
        color: var(--color-accent);
        font-weight: 600;
    }
}

@media (max-width: 480px) {
    .privacy-modal {
        padding: 1rem;
    }

    .privacy-modal-content {
        border-radius: 20px;
    }

    .privacy-header {
        padding: 2rem 1.5rem 1.5rem;
    }

    .privacy-body {
        padding: 1.5rem;
    }

    .privacy-icon {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }

    .privacy-modal-content h2 {
        font-size: 1.5rem;
    }

    .privacy-text h3 {
        font-size: 1rem;
    }

    .privacy-text h3::before {
        width: 22px;
        height: 22px;
    }

    .privacy-text p {
        padding-left: 2.25rem;
        font-size: 0.9rem;
    }

    .privacy-contact {
        padding: 1.25rem;
    }

    .footer-links {
        flex-direction: column;
        gap: 0.5rem;
    }

    .footer-divider {
        display: none;
    }
}
