/* =============================================
   NEXTWARDS - Brand Identity Stylesheet
   Colors: Deep Navy #0B1426, Nextwards Blue #0A66F5
   Secondary: Slate Gray #94A3B8, Cloud Gray #F1F5F9, Midnight Teal #0D9488
   Accent: Electric Violet #7C3AED
   Typography: Space Grotesk (Headlines), Inter (Body)
   ============================================= */

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

:root {
    --navy: #0B1426;
    --navy-light: #0F1D32;
    --navy-lighter: #152238;
    --blue: #0A66F5;
    --blue-light: #3B8AF7;
    --blue-dark: #0852C4;
    --teal: #0D9488;
    --violet: #7C3AED;
    --slate: #94A3B8;
    --slate-light: #B0BEC5;
    --cloud: #E2E8F0;
    --white: #FFFFFF;
    --text-body: #CBD5E1;
    --text-muted: #94A3B8;
    --gradient-forward: linear-gradient(135deg, #0A66F5, #7C3AED);
    --gradient-dark: linear-gradient(135deg, #0B1426, #1E293B);
    --shadow-sm: 0 2px 8px rgba(10, 102, 245, 0.1);
    --shadow-md: 0 4px 20px rgba(10, 102, 245, 0.15);
    --shadow-lg: 0 8px 40px rgba(10, 102, 245, 0.2);
    --radius: 12px;
    --radius-sm: 8px;
    --radius-lg: 20px;
}

html { scroll-behavior: smooth; }

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background-color: var(--navy);
    color: var(--text-body);
    line-height: 1.7;
    font-size: 16px;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    line-height: 1.2;
    color: var(--white);
}

a { color: var(--blue-light); text-decoration: none; transition: color 0.3s ease; }
a:hover { color: var(--blue); }
img { max-width: 100%; height: auto; display: block; }

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

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    border-radius: var(--radius-sm);
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 600;
    font-size: 15px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-primary {
    background: var(--gradient-forward);
    color: var(--white);
    box-shadow: var(--shadow-sm);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); color: var(--white); }

.btn-outline {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255,255,255,0.3);
}
.btn-outline:hover { border-color: var(--blue); color: var(--blue); background: rgba(10,102,245,0.05); }

.btn-lg { padding: 18px 42px; font-size: 17px; }
.btn-full { width: 100%; justify-content: center; }
/* NAVBAR */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 16px 0;
    background: rgba(11,20,38,0.85);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(10,102,245,0.1);
    transition: all 0.3s ease;
}

.navbar.scrolled {
    padding: 10px 0;
    background: rgba(11,20,38,0.95);
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

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

.logo-img {
    height: 42px;
    width: auto;
    object-fit: contain;
}

.nav-links {
    display: flex;
    align-items: center;
    list-style: none;
    gap: 8px;
    margin: 0;
    padding: 0;
}

.nav-links > li {
    list-style: none;
}

.nav-links > li > a {
    display: inline-flex;
    align-items: center;
    padding: 10px 16px;
    color: rgba(255,255,255,0.8);
    font-size: 15px;
    font-weight: 500;
    border-radius: var(--radius-sm);
    transition: all 0.3s ease;
    white-space: nowrap;
}

.nav-links > li > a:hover,
.nav-links > li > a.active {
    color: var(--white);
    background: rgba(10,102,245,0.1);
}

/* Hide mobile close button on desktop */
.mobile-close-btn {
    display: none;
}

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

.nav-dropdown > a::after {
    content: "";
    width: 7px;
    height: 7px;
    margin-left: 8px;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: rotate(45deg) translateY(-2px);
    opacity: 0.75;
}

.dropdown-menu {
    position: absolute;
    top: calc(100% + 12px);
    left: 50%;
    transform: translate(-50%, 8px);
    min-width: 245px;
    list-style: none;
    margin: 0;
    padding: 10px;
    background: rgba(15, 29, 50, 0.98);
    border: 1px solid rgba(10,102,245,0.18);
    border-radius: 14px;
    box-shadow: 0 18px 45px rgba(0,0,0,0.32);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    max-height: none;
    overflow: visible;
    z-index: 1200;
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
}

.dropdown-menu::before {
    content: "";
    position: absolute;
    top: -12px;
    left: 0;
    right: 0;
    height: 12px;
}

.nav-dropdown:hover .dropdown-menu,
.nav-dropdown:focus-within .dropdown-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translate(-50%, 0);
}

.dropdown-menu li {
    list-style: none;
}

.dropdown-menu li a {
    display: block;
    width: 100%;
    padding: 11px 14px;
    color: rgba(255,255,255,0.78);
    font-size: 14px;
    line-height: 1.3;
    border-radius: 10px;
    white-space: nowrap;
}

.dropdown-menu li a:hover {
    background: rgba(10,102,245,0.13);
    color: var(--white);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.nav-toggle span {
    width: 24px;
    height: 2px;
    background: var(--white);
    transition: all 0.3s ease;
}
/* HERO */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 100px;
    overflow: hidden;
}
.hero-container { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.hero-content { position: relative; z-index: 2; }
.hero-tag { display: inline-block; color: var(--text-muted); font-size: 14px; font-weight: 500; letter-spacing: 2px; text-transform: uppercase; margin-bottom: 20px; }
.hero-title { font-size: clamp(2.5rem, 5vw, 4rem); margin-bottom: 16px; }
.gradient-text { background: var(--gradient-forward); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.hero-line { width: 60px; height: 4px; background: var(--gradient-forward); border-radius: 2px; margin: 24px 0; }
.hero-subtitle { font-size: 18px; color: var(--text-body); margin-bottom: 32px; max-width: 400px; }
.hero-buttons { display: flex; gap: 16px; margin-bottom: 40px; }
.hero-partner { color: var(--text-muted); font-size: 14px; }
.hero-partner strong { color: var(--white); }

.hero-slider { position: relative; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); border: 1px solid rgba(10,102,245,0.2); }
.slider-wrapper { position: relative; width: 100%; aspect-ratio: 16/10; }
.slide { position: absolute; top: 0; left: 0; width: 100%; height: 100%; opacity: 0; transition: opacity 0.8s ease; }
.slide.active { opacity: 1; }
.slide img { width: 100%; height: 100%; object-fit: cover; }
.slide-overlay { position: absolute; bottom: 0; left: 0; right: 0; padding: 30px; background: linear-gradient(transparent, rgba(11,20,38,0.9)); }
.slide-overlay h3 { font-size: 22px; margin-bottom: 4px; }
.slide-overlay p { color: var(--text-muted); font-size: 14px; }
.slider-dots { position: absolute; bottom: 16px; right: 20px; display: flex; gap: 8px; z-index: 5; }
.dot { width: 10px; height: 10px; border-radius: 50%; background: rgba(255,255,255,0.3); border: none; cursor: pointer; transition: all 0.3s ease; }
.dot.active { background: var(--blue); box-shadow: 0 0 10px rgba(10,102,245,0.5); }
.hero-bg-glow { position: absolute; top: -200px; right: -200px; width: 600px; height: 600px; background: radial-gradient(circle, rgba(10,102,245,0.08) 0%, transparent 70%); pointer-events: none; }

/* SECTIONS COMMON */
.section-header { text-align: center; margin-bottom: 50px; }
.section-dot { display: inline-block; width: 10px; height: 10px; background: var(--blue); border-radius: 50%; margin-bottom: 16px; }
.section-title { font-size: clamp(1.8rem, 3vw, 2.5rem); text-align: center; margin-bottom: 16px; }
.section-subtitle { text-align: center; color: var(--text-body); max-width: 600px; margin: 0 auto 40px; font-size: 16px; }

/* SERVICES */
.services { padding: 100px 0; background: var(--navy-light); }
.services-tabs { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-bottom: 50px; }
.service-tab {
    display: flex; flex-direction: column; align-items: center; gap: 10px;
    padding: 20px 16px; background: var(--navy);
    border: 1px solid rgba(10,102,245,0.1); border-radius: var(--radius-sm);
    color: var(--text-muted); font-size: 13px; font-weight: 500;
    cursor: pointer; transition: all 0.3s ease; text-align: center;
}
.service-tab svg { width: 28px; height: 28px; stroke: var(--text-muted); transition: stroke 0.3s ease; }
.service-tab:hover, .service-tab.active { background: rgba(10,102,245,0.1); border-color: var(--blue); color: var(--white); }
.service-tab:hover svg, .service-tab.active svg { stroke: var(--blue); }

.service-detail {
    display: none; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center;
    background: var(--navy); border: 1px solid rgba(10,102,245,0.1);
    border-radius: var(--radius); padding: 40px; animation: fadeIn 0.4s ease;
}
.service-detail.active { display: grid; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }
.service-detail-text h3 { font-size: 24px; margin-bottom: 16px; }
.service-detail-text p { color: var(--text-body); margin-bottom: 24px; line-height: 1.8; }
.service-detail-img { border-radius: var(--radius-sm); overflow: hidden; }
.service-detail-img img { width: 100%; border-radius: var(--radius-sm); }

/* ABOUT */
.about { padding: 100px 0; background: var(--navy); }
.about-container { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.about-image { border-radius: var(--radius); overflow: hidden; border: 1px solid rgba(10,102,245,0.15); }
.about-image img { width: 100%; }
.about-icon { width: 70px; height: 70px; margin-bottom: 20px; border-radius: 14px; }
.about-content h2 { font-size: 2rem; margin-bottom: 20px; }
.about-content p { color: var(--text-body); margin-bottom: 16px; line-height: 1.8; }
.about-content a { color: var(--blue-light); font-weight: 600; }

/* PARTNERS */
.partners { padding: 80px 0; background: var(--navy-lighter); border-top: 1px solid rgba(10,102,245,0.08); border-bottom: 1px solid rgba(10,102,245,0.08); }
.partners-grid { display: flex; justify-content: center; align-items: center; gap: 60px; flex-wrap: wrap; margin-top: 40px; }
.partner-logo { font-family: 'Space Grotesk', sans-serif; font-size: 28px; font-weight: 700; color: rgba(255,255,255,0.35); transition: color 0.3s ease; }
.partner-logo:hover { color: rgba(255,255,255,0.7); }

/* MARKETING */
.marketing { padding: 100px 0; background: var(--navy); }
.marketing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 50px; }
.marketing-card { background: var(--navy-light); border: 1px solid rgba(10,102,245,0.1); border-radius: var(--radius); padding: 40px 30px; text-align: center; transition: all 0.3s ease; }
.marketing-card:hover { transform: translateY(-4px); border-color: rgba(10,102,245,0.3); box-shadow: var(--shadow-md); }
.marketing-card.featured { background: rgba(10,102,245,0.08); border-color: var(--blue); }
.marketing-icon { display: inline-flex; align-items: center; justify-content: center; width: 64px; height: 64px; border-radius: 50%; background: rgba(10,102,245,0.1); margin-bottom: 20px; }
.marketing-icon svg { stroke: var(--blue); }
.marketing-card h3 { font-size: 20px; margin-bottom: 12px; }
.marketing-card p { color: var(--text-body); font-size: 14px; line-height: 1.7; }

/* WHY US */
.why-us { padding: 100px 0; background: var(--navy-light); }
.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.why-card { background: var(--navy); border: 1px solid rgba(10,102,245,0.1); border-radius: var(--radius); padding: 40px 30px; text-align: center; transition: all 0.3s ease; }
.why-card:hover { border-color: rgba(10,102,245,0.3); transform: translateY(-4px); }
.why-icon { display: inline-flex; align-items: center; justify-content: center; width: 72px; height: 72px; border-radius: 50%; background: rgba(10,102,245,0.08); margin-bottom: 20px; }
.why-icon svg { stroke: var(--blue); }
.why-card h3 { font-size: 20px; margin-bottom: 12px; }
.why-card p { color: var(--text-body); font-size: 14px; line-height: 1.7; }

/* STATS */
.stats { padding: 80px 0; background: var(--navy); border-top: 1px solid rgba(10,102,245,0.1); border-bottom: 1px solid rgba(10,102,245,0.1); }
.stats-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; text-align: center; }
.stat-item { padding: 30px; font-family: 'Space Grotesk', sans-serif; font-size: 3.5rem; font-weight: 700; color: var(--blue); }
.stat-number { display: inline; }
.stat-label { display: block; font-family: 'Inter', sans-serif; font-size: 15px; font-weight: 400; color: var(--text-muted); margin-top: 8px; }

/* VALUES & VISION */
.values-vision { padding: 100px 0; background: var(--navy-light); }
.values-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; }
.values-block, .vision-block { background: var(--navy); border: 1px solid rgba(10,102,245,0.1); border-radius: var(--radius); padding: 40px; }
.values-block h2, .vision-block h2 { font-size: 1.8rem; margin-bottom: 20px; position: relative; padding-bottom: 12px; }
.values-block h2::after, .vision-block h2::after { content: ''; position: absolute; bottom: 0; left: 0; width: 50px; height: 3px; background: var(--gradient-forward); border-radius: 2px; }
.values-block p, .vision-block p { color: var(--text-body); margin-bottom: 16px; line-height: 1.8; }

/* CTA */
.cta { padding: 100px 0; background: var(--gradient-forward); text-align: center; position: relative; overflow: hidden; }
.cta::before { content: ''; position: absolute; top: 0; left: 0; right: 0; bottom: 0; background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E"); }
.cta-container { position: relative; z-index: 2; }
.cta h2 { font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 12px; }
.cta p { font-size: 18px; color: rgba(255,255,255,0.9); margin-bottom: 32px; }
.cta .btn-primary { background: var(--white); color: var(--navy); }
.cta .btn-primary:hover { background: var(--cloud); }

/* CONTACT */
.contact { padding: 100px 0; background: var(--navy); }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; margin-top: 40px; }
.contact-info { display: flex; flex-direction: column; gap: 30px; }
.contact-item { display: flex; align-items: center; gap: 20px; }
.contact-icon { display: flex; align-items: center; justify-content: center; width: 56px; height: 56px; border-radius: 50%; background: rgba(10,102,245,0.1); flex-shrink: 0; }
.contact-icon svg { stroke: var(--blue); }
.contact-item strong { display: block; color: var(--white); font-size: 16px; margin-bottom: 4px; }
.contact-item p { color: var(--text-body); font-size: 14px; }
.contact-form { display: flex; flex-direction: column; gap: 16px; }
.contact-form input, .contact-form textarea {
    width: 100%; padding: 16px 20px; background: var(--navy-light);
    border: 1px solid rgba(10,102,245,0.15); border-radius: var(--radius-sm);
    color: var(--white); font-family: 'Inter', sans-serif; font-size: 15px;
    transition: border-color 0.3s ease; outline: none;
}
.contact-form input::placeholder, .contact-form textarea::placeholder { color: var(--text-muted); }
.contact-form input:focus, .contact-form textarea:focus { border-color: var(--blue); box-shadow: 0 0 0 3px rgba(10,102,245,0.1); }
.contact-form textarea { resize: vertical; min-height: 120px; }

/* FOOTER */
.footer { background: var(--navy-light); border-top: 1px solid rgba(10,102,245,0.1); padding-top: 60px; }
.footer-container { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 40px; }
.footer-logo { height: 38px; width: auto; margin-bottom: 16px; }
.footer-brand p { color: var(--text-body); font-size: 14px; line-height: 1.7; max-width: 300px; }
.footer-links h4 { font-size: 16px; margin-bottom: 16px; color: var(--white); }
.footer-links ul { list-style: none; }
.footer-links ul li { margin-bottom: 10px; }
.footer-links ul li a { color: var(--text-muted); font-size: 14px; transition: color 0.3s ease; }
.footer-links ul li a:hover { color: var(--blue-light); }
.footer-bottom { border-top: 1px solid rgba(10,102,245,0.08); padding: 20px 0; }
.footer-bottom .container { display: flex; justify-content: space-between; align-items: center; }
.footer-bottom p { color: var(--text-muted); font-size: 13px; }
.footer-bottom-links { display: flex; gap: 24px; }
.footer-bottom-links a { color: var(--text-muted); font-size: 13px; }
.footer-bottom-links a:hover { color: var(--blue-light); }

/* SERVICE PAGES */
.service-page-hero { padding: 140px 0 80px; background: var(--navy); position: relative; overflow: hidden; }
.service-page-hero::before { content: ''; position: absolute; top: -100px; right: -100px; width: 400px; height: 400px; background: radial-gradient(circle, rgba(10,102,245,0.08) 0%, transparent 70%); pointer-events: none; }
.service-hero-container { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.service-hero-content h1 { font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 20px; }
.service-hero-content p { color: var(--text-body); font-size: 18px; line-height: 1.8; margin-bottom: 30px; }
.service-hero-img { border-radius: var(--radius); overflow: hidden; border: 1px solid rgba(10,102,245,0.15); }
.service-hero-img img { width: 100%; }

.service-cards-section { padding: 100px 0; background: var(--navy-light); }
.service-cards-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 50px; }
.service-card { background: var(--navy); border: 1px solid rgba(10,102,245,0.1); border-radius: var(--radius); padding: 32px 24px; transition: all 0.3s ease; }
.service-card:hover { border-color: rgba(10,102,245,0.3); transform: translateY(-4px); box-shadow: var(--shadow-md); }
.service-card-icon { display: flex; align-items: center; justify-content: center; width: 56px; height: 56px; border-radius: var(--radius-sm); background: rgba(10,102,245,0.1); margin-bottom: 20px; }
.service-card-icon svg { stroke: var(--blue); }
.service-card h3 { font-size: 18px; margin-bottom: 12px; }
.service-card p { color: var(--text-body); font-size: 14px; line-height: 1.7; }

.service-how-it-works { padding: 100px 0; background: var(--navy); }
.steps-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; margin-top: 50px; }
.step-card { text-align: center; padding: 40px 24px; }
.step-number { display: inline-flex; align-items: center; justify-content: center; width: 60px; height: 60px; border-radius: 50%; background: var(--gradient-forward); color: var(--white); font-family: 'Space Grotesk', sans-serif; font-size: 24px; font-weight: 700; margin-bottom: 20px; }
.step-card h3 { font-size: 18px; margin-bottom: 12px; }
.step-card p { color: var(--text-body); font-size: 14px; line-height: 1.7; }

.service-cta { padding: 80px 0; background: var(--gradient-forward); text-align: center; }
.service-cta h2 { font-size: 2rem; margin-bottom: 16px; }
.service-cta p { color: rgba(255,255,255,0.9); margin-bottom: 30px; font-size: 16px; }
.service-cta .btn { background: var(--white); color: var(--navy); }
.service-cta .btn:hover { background: var(--cloud); }

/* RESPONSIVE */
@media (max-width: 1024px) {
    .hero-container { grid-template-columns: 1fr; gap: 40px; }
    .hero-slider { max-width: 600px; }
    .services-tabs { grid-template-columns: repeat(2, 1fr); }
    .about-container { grid-template-columns: 1fr; }
    .marketing-grid { grid-template-columns: repeat(2, 1fr); }
    .why-grid { grid-template-columns: repeat(2, 1fr); }
    .values-grid { grid-template-columns: 1fr; }
    .footer-container { grid-template-columns: 1fr 1fr; }
    .service-hero-container { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 290px;
        height: 100vh;
        background: var(--navy-light);
        flex-direction: column;
        align-items: stretch;
        padding: 82px 24px 30px;
        transition: right 0.3s ease;
        border-left: 1px solid rgba(10,102,245,0.15);
        gap: 6px;
        overflow-y: auto;
    }

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

    .nav-links > li > a {
        width: 100%;
        justify-content: space-between;
        padding: 12px 14px;
    }

    .nav-toggle {
        display: flex;
    }

    .mobile-close-btn {
        display: block;
        position: absolute;
        top: 18px;
        right: 18px;
    }

    .mobile-close-btn button {
        width: 38px;
        height: 38px;
        background: rgba(255,255,255,0.06);
        border: 1px solid rgba(255,255,255,0.1);
        border-radius: 10px;
        color: #fff;
        font-size: 2rem;
        cursor: pointer;
        line-height: 1;
    }

    .dropdown-menu {
        position: static;
        min-width: 100%;
        margin-top: 4px;
        padding: 0 0 0 12px;
        background: transparent;
        border: none;
        box-shadow: none;
        border-radius: 0;
        opacity: 1;
        visibility: hidden;
        pointer-events: none;
        transform: none;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease, visibility 0.3s ease;
    }

    .dropdown-menu::before {
        display: none;
    }

    .dropdown-menu.open {
        visibility: visible;
        pointer-events: auto;
        max-height: 500px;
    }

    .nav-dropdown:hover .dropdown-menu {
        visibility: hidden;
        pointer-events: none;
        max-height: 0;
    }

    .nav-dropdown:hover .dropdown-menu.open {
        visibility: visible;
        pointer-events: auto;
        max-height: 500px;
    }

    .dropdown-menu li a {
        padding: 10px 12px;
        font-size: 14px;
        white-space: normal;
        color: rgba(255,255,255,0.72);
    }

    .hero {
        min-height: auto;
        padding: 120px 0 60px;
    }

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

    .services-tabs {
        grid-template-columns: 1fr 1fr;
    }

    .service-detail {
        grid-template-columns: 1fr;
        padding: 24px;
    }

    .marketing-grid,
    .why-grid,
    .contact-grid,
    .service-cards-grid,
    .steps-grid,
    .footer-container {
        grid-template-columns: 1fr;
    }

    .stats-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .footer-bottom .container {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }
}

/* FIX: Mobile Services submenu alignment */
@media (max-width: 768px) {
    .nav-links .nav-dropdown {
        width: 100%;
    }

    .nav-links .nav-dropdown .dropdown-menu {
        position: static !important;
        top: auto !important;
        left: auto !important;
        right: auto !important;
        transform: none !important;

        width: 100% !important;
        min-width: 0 !important;
        max-width: 100% !important;

        margin: 6px 0 0 0 !important;
        padding: 6px 0 6px 12px !important;

        background: transparent !important;
        border: 0 !important;
        box-shadow: none !important;
        border-left: 1px solid rgba(255,255,255,0.12);

        list-style: none;
        overflow: hidden;
    }

    .nav-links .nav-dropdown .dropdown-menu.open {
        max-height: 500px !important;
        visibility: visible !important;
        opacity: 1 !important;
        pointer-events: auto !important;
    }

    .nav-links .nav-dropdown .dropdown-menu li {
        width: 100%;
        list-style: none;
    }

    .nav-links .nav-dropdown .dropdown-menu li a {
        width: 100%;
        display: block;
        padding: 10px 12px !important;
        margin: 0;
        white-space: normal;
        text-align: left;
        font-size: 14px;
        line-height: 1.35;
    }
}