/* === RESET & BASE === */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; scroll-behavior: auto !important; }
}
body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    color: #1a1a2e;
    line-height: 1.6;
    background: #fff;
    overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; }

/* === SKIP LINK (508/WCAG) === */
.skip-link {
    position: absolute;
    top: -100%;
    left: 16px;
    background: #0d1b2a;
    color: #fff;
    padding: 12px 24px;
    border-radius: 0 0 8px 8px;
    font-size: 14px;
    font-weight: 600;
    z-index: 10000;
    text-decoration: none;
    transition: top 0.2s;
}
.skip-link:focus {
    top: 0;
}

/* === FOCUS INDICATORS (508/WCAG) === */
:focus-visible {
    outline: 3px solid #6366f1;
    outline-offset: 2px;
}
.btn:focus-visible {
    outline: 3px solid #6366f1;
    outline-offset: 3px;
    box-shadow: 0 0 0 6px rgba(99, 102, 241, 0.2);
}
.nav-dropdown-menu a:focus-visible {
    background: #f4f6fb;
    color: #6366f1;
}

/* === LAYOUT === */
.container { max-width: 1100px; margin: 0 auto; padding: 0 24px; }
.section { padding: 100px 0; }
.section-alt { background: #f4f6fb; }
.section-title {
    font-size: 36px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 12px;
    color: #0d1b2a;
}
.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, #6366f1, #06d6a0);
    border-radius: 2px;
    margin: 14px auto 0;
}
.section-desc {
    text-align: center;
    color: #5a6178;
    font-size: 17px;
    max-width: 580px;
    margin: 20px auto 48px;
}

/* === FADE-IN ANIMATION === */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* === NAV === */
.nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    z-index: 100;
    border-bottom: 1px solid rgba(0,0,0,0.06);
    transition: box-shadow 0.3s;
}
.nav.scrolled { box-shadow: 0 2px 24px rgba(0,0,0,0.1); }
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 68px; }
.logo {
    font-size: 22px; font-weight: 700;
    background: linear-gradient(135deg, #6366f1, #06d6a0);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    background-clip: text;
}
.nav-links { display: flex; align-items: center; gap: 32px; }
.nav-links > a, .nav-dropdown-toggle { font-size: 14px; font-weight: 500; color: #555; transition: color 0.2s; position: relative; cursor: pointer; }
.nav-links > a:not(.btn):hover, .nav-dropdown-toggle:hover { color: #0d1b2a; }
.nav-links > a:not(.btn)::after, .nav-dropdown-toggle::after {
    content: ''; position: absolute; bottom: -4px; left: 0;
    width: 0; height: 2px; background: #6366f1; transition: width 0.3s;
}
.nav-links > a:not(.btn):hover::after,
.nav-dropdown:hover .nav-dropdown-toggle::after,
.nav-dropdown:focus-within .nav-dropdown-toggle::after { width: 100%; }

/* === NAV DROPDOWN === */
.nav-dropdown { position: relative; display: inline-block; }
.nav-dropdown-toggle { display: inline-flex; align-items: center; gap: 4px; user-select: none; }
.nav-dropdown-toggle .chevron { font-size: 10px; transition: transform 0.2s; opacity: 0.7; }
.nav-dropdown:hover .nav-dropdown-toggle .chevron,
.nav-dropdown:focus-within .nav-dropdown-toggle .chevron { transform: rotate(180deg); }
.nav-dropdown-menu {
    position: absolute; top: calc(100% + 12px); left: 50%; transform: translateX(-50%) translateY(-8px);
    background: #fff; border: 1px solid #e4e7f0; border-radius: 12px;
    box-shadow: 0 12px 36px rgba(0,0,0,0.12);
    min-width: 240px; padding: 8px; opacity: 0; pointer-events: none;
    transition: opacity 0.2s ease, transform 0.2s ease; z-index: 200;
}
.nav-dropdown::before {
    content: ''; position: absolute; top: 100%; left: 0; right: 0; height: 16px;
}
.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu { opacity: 1; pointer-events: auto; transform: translateX(-50%) translateY(0); }
.nav-dropdown-menu a {
    display: flex; align-items: center; gap: 10px;
    padding: 10px 14px; border-radius: 8px;
    font-size: 14px; font-weight: 500; color: #1a1a2e;
    transition: background 0.15s, color 0.15s;
}
.nav-dropdown-menu a:hover { background: #f4f6fb; color: #6366f1; }
.nav-dropdown-menu a::after { display: none; }
.nav-dropdown-menu .dd-icon { font-size: 16px; opacity: 0.85; flex-shrink: 0; }

/* === TECH MARQUEE === */
.tech-marquee {
    background: #0d1b2a;
    padding: 20px 0;
    overflow: hidden;
    position: relative;
    border-top: 1px solid rgba(255,255,255,0.06);
    border-bottom: 1px solid rgba(255,255,255,0.06);
}
.tech-marquee::before, .tech-marquee::after {
    content: ''; position: absolute; top: 0; bottom: 0; width: 120px; z-index: 2; pointer-events: none;
}
.tech-marquee::before { left: 0; background: linear-gradient(90deg, #0d1b2a 0%, transparent 100%); }
.tech-marquee::after { right: 0; background: linear-gradient(270deg, #0d1b2a 0%, transparent 100%); }
.marquee-track {
    display: flex; gap: 56px; width: max-content;
    animation: marqueeScroll 40s linear infinite;
}
.tech-marquee:hover .marquee-track { animation-play-state: paused; }
.marquee-item {
    font-size: 16px; font-weight: 600; color: rgba(255,255,255,0.65);
    white-space: nowrap; letter-spacing: 0.3px;
    transition: color 0.2s ease;
    display: flex; align-items: center; gap: 8px;
}
.marquee-item:hover { color: #06d6a0; }
.marquee-item .dot { width: 4px; height: 4px; border-radius: 50%; background: #6366f1; }
@keyframes marqueeScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* === ANIMATED COUNTER === */
.counter-number {
    background: linear-gradient(135deg, #6366f1, #06d6a0);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    background-clip: text; font-weight: 700;
}

/* === SERVICE PRICING GRID === */
.service-pricing-grid {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 40px;
}
.service-price-card {
    background: #fff; border: 1px solid #e4e7f0; border-radius: 14px;
    padding: 24px; transition: all 0.3s ease;
    display: flex; flex-direction: column; text-align: left;
    position: relative; overflow: hidden;
}
.service-price-card::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
    background: linear-gradient(90deg, #6366f1, #06d6a0);
    opacity: 0; transition: opacity 0.3s ease;
}
.service-price-card:hover { box-shadow: 0 10px 32px rgba(99,102,241,0.12); transform: translateY(-3px); border-color: #6366f1; }
.service-price-card:hover::before { opacity: 1; }
.service-price-icon { font-size: 26px; margin-bottom: 10px; }
.service-price-card h4 { font-size: 16px; font-weight: 700; color: #0d1b2a; margin-bottom: 6px; }
.service-price-card .sp-tagline { font-size: 13px; color: #888; margin-bottom: 16px; line-height: 1.5; min-height: 36px; }
.service-price-card .sp-range {
    font-size: 22px; font-weight: 700; color: #6366f1; margin-bottom: 4px;
}
.service-price-card .sp-from { font-size: 12px; color: #888; margin-bottom: 16px; text-transform: uppercase; letter-spacing: 0.5px; }
.service-price-card .sp-link {
    margin-top: auto; font-size: 13px; font-weight: 600; color: #0d1b2a;
    transition: color 0.2s, transform 0.2s; display: inline-block;
}
.service-price-card:hover .sp-link { color: #6366f1; transform: translateX(3px); }
.mobile-toggle { display: none; background: none; border: none; font-size: 26px; cursor: pointer; color: #333; min-width: 44px; min-height: 44px; }

/* === BUTTONS === */
.btn {
    display: inline-block; padding: 14px 32px; border-radius: 10px;
    font-size: 14px; font-weight: 600; transition: all 0.3s; cursor: pointer; border: none;
}
.btn-sm { padding: 10px 20px; font-size: 13px; border-radius: 8px; }
.btn-primary {
    background: linear-gradient(135deg, #6366f1, #8b5cf6); color: #fff;
    box-shadow: 0 4px 14px rgba(99,102,241,0.35);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 6px 24px rgba(99,102,241,0.45); }
.btn-outline { border: 2px solid #6366f1; color: #6366f1; background: transparent; }
.btn-outline:hover { background: #6366f1; color: #fff; transform: translateY(-2px); }
.nav-links .btn-sm {
    background: linear-gradient(135deg, #f97316, #fb923c); color: #fff;
    box-shadow: 0 2px 10px rgba(249,115,22,0.3);
}
.nav-links .btn-sm:hover { box-shadow: 0 4px 16px rgba(249,115,22,0.4); transform: translateY(-1px); }

/* === HERO === */
.hero {
    padding: 180px 0 120px; text-align: center;
    background: linear-gradient(135deg, #0d1b2a 0%, #1b2838 30%, #2a3f5f 60%, #6366f1 100%);
    color: #fff; position: relative; overflow: hidden;
}
.hero::before {
    content: ''; position: absolute; top: -50%; left: -50%; width: 200%; height: 200%;
    background: radial-gradient(circle at 30% 50%, rgba(99,102,241,0.2) 0%, transparent 50%),
                radial-gradient(circle at 70% 80%, rgba(6,214,160,0.1) 0%, transparent 40%);
    animation: heroGlow 8s ease-in-out infinite alternate;
}
@keyframes heroGlow { 0% { transform: translate(0,0) scale(1); } 100% { transform: translate(-2%,-1%) scale(1.05); } }
.hero .container { position: relative; z-index: 1; }
.hero h1 { font-size: 52px; font-weight: 700; line-height: 1.12; margin-bottom: 22px; letter-spacing: -0.5px; }
.hero-sub { font-size: 19px; color: rgba(255,255,255,0.8); max-width: 640px; margin: 0 auto 36px; line-height: 1.7; }
.hero-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.hero .btn-primary {
    background: linear-gradient(135deg, #f97316, #fb923c); color: #fff;
    box-shadow: 0 4px 20px rgba(249,115,22,0.4);
}
.hero .btn-primary:hover { box-shadow: 0 6px 28px rgba(249,115,22,0.5); transform: translateY(-2px); }
.hero .btn-outline { border-color: rgba(255,255,255,0.4); color: #fff; }
.hero .btn-outline:hover { background: rgba(255,255,255,0.12); border-color: #fff; }

/* === FEATURED PARTNERSHIP === */
.featured-project {
    padding: 80px 0;
    background: linear-gradient(135deg, #0a1628 0%, #122140 40%, #1a3358 70%, #1e3a5f 100%);
    color: #fff;
    position: relative;
    overflow: hidden;
}
.featured-project::before {
    content: '';
    position: absolute;
    top: -40%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(6,214,160,0.12) 0%, transparent 60%);
    pointer-events: none;
}
.fp-label {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #06d6a0;
    border: 1px solid rgba(6,214,160,0.4);
    padding: 6px 16px;
    border-radius: 999px;
    margin-bottom: 32px;
}
.fp-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: start;
}
.fp-title {
    font-size: 42px;
    font-weight: 800;
    letter-spacing: 1px;
    margin-bottom: 12px;
    line-height: 1.1;
}
.fp-reg {
    font-size: 18px;
    vertical-align: super;
    font-weight: 400;
    opacity: 0.6;
}
.fp-tagline {
    font-size: 18px;
    color: rgba(255,255,255,0.85);
    margin-bottom: 16px;
    line-height: 1.6;
}
.fp-desc {
    font-size: 15px;
    color: rgba(255,255,255,0.65);
    line-height: 1.7;
    margin-bottom: 28px;
}
.fp-desc a {
    color: #06d6a0;
    text-decoration: underline;
    text-underline-offset: 2px;
}
.fp-desc a:hover {
    color: #34edb5;
}
.fp-stats {
    display: flex;
    gap: 32px;
    margin-bottom: 32px;
}
.fp-stat {
    display: flex;
    flex-direction: column;
}
.fp-stat-num {
    font-size: 36px;
    font-weight: 800;
    color: #06d6a0;
    line-height: 1;
}
.fp-stat-label {
    font-size: 12px;
    color: rgba(255,255,255,0.55);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 6px;
}
.fp-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}
.fp-btn {
    background: linear-gradient(135deg, #06d6a0, #059669) !important;
    color: #fff !important;
    box-shadow: 0 4px 20px rgba(6,214,160,0.35);
}
.fp-btn:hover {
    box-shadow: 0 6px 28px rgba(6,214,160,0.5) !important;
    transform: translateY(-2px);
}
.fp-btn-outline {
    border-color: rgba(255,255,255,0.3) !important;
    color: #fff !important;
}
.fp-btn-outline:hover {
    background: rgba(255,255,255,0.1) !important;
    border-color: #fff !important;
}
.fp-highlights {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.fp-highlight {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 12px;
    padding: 20px;
    transition: background 0.2s;
}
.fp-highlight:hover {
    background: rgba(255,255,255,0.1);
}
.fp-hi-icon {
    font-size: 24px;
    flex-shrink: 0;
    width: 40px;
    text-align: center;
}
.fp-highlight h4 {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 4px;
    color: #fff;
}
.fp-highlight p {
    font-size: 13px;
    color: rgba(255,255,255,0.6);
    line-height: 1.6;
}

@media (max-width: 768px) {
    .fp-content { grid-template-columns: 1fr; gap: 32px; }
    .fp-title { font-size: 32px; }
    .fp-stats { gap: 24px; }
    .fp-stat-num { font-size: 28px; }
    .featured-project { padding: 60px 0; }
}

/* === SERVICES === */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.service {
    background: #fff; border: 1px solid #e4e7f0; border-radius: 14px;
    padding: 28px; transition: all 0.3s ease; position: relative; text-align: center;
}
.service-icon { font-size: 32px; margin-bottom: 12px; }
.service::before {
    content: ''; position: absolute; top: 0; left: 0;
    width: 4px; height: 0;
    background: linear-gradient(180deg, #6366f1, #06d6a0);
    border-radius: 4px 0 0 4px; transition: height 0.4s ease;
}
.service:hover { box-shadow: 0 8px 32px rgba(99,102,241,0.1); transform: translateY(-3px); }
.service:hover::before { height: 100%; }
.service h4 { font-size: 17px; font-weight: 600; color: #0d1b2a; margin-bottom: 8px; }
.service p { font-size: 14px; color: #5a6178; line-height: 1.65; }

/* === WHY US === */
.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; margin-top: 40px; }
.why-item {
    text-align: center;
    background: #fff;
    border: 1px solid #e4e7f0;
    border-radius: 14px;
    padding: 36px 28px;
    transition: all 0.3s ease;
}
.why-item:hover { box-shadow: 0 10px 36px rgba(99,102,241,0.1); transform: translateY(-4px); }
.why-icon { font-size: 40px; margin-bottom: 16px; display: block; }
.why-item h4 { font-size: 18px; font-weight: 700; color: #0d1b2a; margin-bottom: 10px; }
.why-item p { font-size: 14px; color: #5a6178; line-height: 1.7; }

/* === PRICING === */
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 40px; }
.pricing-card {
    background: #fff; border: 1px solid #e4e7f0; border-radius: 16px;
    padding: 32px 28px; text-align: center; position: relative;
    transition: all 0.3s ease; display: flex; flex-direction: column;
}
.pricing-card:hover { box-shadow: 0 12px 40px rgba(99,102,241,0.1); transform: translateY(-4px); }
.pricing-featured {
    border: 2px solid #6366f1;
    box-shadow: 0 8px 32px rgba(99,102,241,0.15);
}
.pricing-badge {
    position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
    background: linear-gradient(135deg, #f97316, #fb923c);
    color: #fff; font-size: 11px; font-weight: 700; padding: 4px 14px;
    border-radius: 20px; letter-spacing: 0.5px; text-transform: uppercase;
}
.pricing-tier { font-size: 20px; font-weight: 700; color: #0d1b2a; margin-bottom: 8px; }
.pricing-range { font-size: 26px; font-weight: 700; color: #0d1b2a; margin-bottom: 4px; }
.pricing-rate { font-size: 12px; color: #888; margin-bottom: 20px; }
.pricing-list { list-style: none; text-align: left; margin-bottom: 24px; flex: 1; }
.pricing-list li {
    font-size: 13px; color: #555; padding: 6px 0;
    border-bottom: 1px solid #f0f0f5; padding-left: 20px; position: relative;
}
.pricing-list li::before {
    content: '✓'; position: absolute; left: 0;
    color: #06d6a0; font-weight: 700; font-size: 12px;
}
.pricing-note { text-align: center; font-size: 14px; color: #5a6178; margin-top: 28px; }
.pricing-note a { color: #6366f1; font-weight: 600; }

/* === PORTFOLIO === */
.portfolio-item {
    background: #fff; border: 1px solid #e4e7f0; border-radius: 16px;
    padding: 36px 32px; margin-bottom: 24px;
    transition: all 0.3s ease; position: relative; overflow: hidden;
}
.portfolio-item::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0;
    height: 4px; background: linear-gradient(90deg, #6366f1, #06d6a0);
}
.portfolio-item:hover { box-shadow: 0 12px 40px rgba(99,102,241,0.1); transform: translateY(-3px); }
.portfolio-info h3 { font-size: 22px; font-weight: 700; color: #0d1b2a; margin-bottom: 4px; }
.portfolio-tag { font-size: 13px; color: #888; font-style: italic; margin-bottom: 12px; }
.portfolio-info p { font-size: 14px; color: #5a6178; line-height: 1.7; margin-bottom: 12px; }
.card-tech { font-size: 11px; color: #aaa; margin-bottom: 16px; letter-spacing: 0.3px; }
.portfolio-item .btn-sm {
    background: linear-gradient(135deg, #6366f1, #8b5cf6); color: #fff;
    box-shadow: 0 2px 10px rgba(99,102,241,0.25);
}
.portfolio-item .btn-sm:hover { box-shadow: 0 4px 16px rgba(99,102,241,0.35); }

/* === CTA SECTION === */
.cta-section {
    background: linear-gradient(135deg, #0d1b2a 0%, #1b2838 40%, #6366f1 100%); color: #fff;
}
.cta-section .section-title { color: #fff; }
.cta-section .section-title::after { background: linear-gradient(90deg, #06d6a0, #fff); }
.cta-section .contact-info p { color: rgba(255,255,255,0.8); font-size: 18px; margin-bottom: 12px; }
.cta-section .btn-primary.btn-lg {
    padding: 16px 36px; font-size: 18px;
    background: linear-gradient(135deg, #f97316, #fb923c); color: #fff;
    box-shadow: 0 4px 20px rgba(249,115,22,0.4); margin: 16px 0; display: inline-block;
}
.cta-section .btn-primary.btn-lg:hover { box-shadow: 0 6px 28px rgba(249,115,22,0.5); transform: translateY(-2px); }
.cta-section .contact-location { color: rgba(255,255,255,0.5); }

/* === ABOUT === */
.about-content { max-width: 720px; margin: 28px auto 0; text-align: center; }
.about-content p { font-size: 16px; color: #5a6178; margin-bottom: 16px; line-height: 1.75; }

/* === MISSION & VISION === */
.mission-vision {
    display: grid; grid-template-columns: 1fr 1fr; gap: 28px;
    margin-top: 48px; max-width: 900px; margin-left: auto; margin-right: auto;
}
.mv-card {
    background: #fff; border: 1px solid #e4e7f0; border-radius: 14px;
    padding: 32px 28px; position: relative; overflow: hidden;
    transition: all 0.3s ease;
}
.mv-card::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0;
    height: 4px; background: linear-gradient(90deg, #6366f1, #06d6a0);
}
.mv-card:hover { box-shadow: 0 10px 32px rgba(99,102,241,0.1); transform: translateY(-3px); }
.mv-card h3 { font-size: 20px; font-weight: 700; color: #0d1b2a; margin-bottom: 12px; }
.mv-card p { font-size: 14px; color: #5a6178; line-height: 1.75; }

/* === VALUES === */
.values-block {
    max-width: 720px; margin: 48px auto 0; text-align: center;
    background: #fff; border: 1px solid #e4e7f0; border-radius: 14px;
    padding: 36px 32px;
}
.values-block h3 { font-size: 20px; font-weight: 700; color: #0d1b2a; margin-bottom: 14px; }
.values-block p { font-size: 15px; color: #5a6178; line-height: 1.8; }

/* === CONTACT === */
.contact-info { text-align: center; padding: 20px 0; }
.contact-location { font-size: 14px; color: #888; margin-top: 4px; }

/* === FOOTER === */
.footer { padding: 28px 0; text-align: center; font-size: 13px; color: #aaa; border-top: 1px solid #eee; background: #f8f9fc; }

.site-footer { background: #0d1b2a; color: #94a3b8; padding: 56px 0 0; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 40px; }
.footer-logo { font-size: 20px; font-weight: 700; background: linear-gradient(135deg, #6366f1, #06d6a0); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.footer-tagline { font-size: 14px; color: #64748b; margin-top: 10px; line-height: 1.6; }
.footer-social { display: flex; gap: 12px; margin-top: 16px; }
.footer-social a { color: #64748b; transition: color 0.2s; }
.footer-social a:hover { color: #6366f1; }
.footer-col h4 { font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px; color: #e2e8f0; margin-bottom: 14px; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 8px; }
.footer-col ul a { font-size: 14px; color: #94a3b8; transition: color 0.2s; }
.footer-col ul a:hover { color: #fff; }
.footer-bottom { margin-top: 40px; padding: 20px 0; border-top: 1px solid #1e293b; text-align: center; font-size: 13px; color: #475569; }

/* === RESPONSIVE === */
@media (max-width: 768px) {
    .hero { padding: 140px 0 80px; }
    .hero h1 { font-size: 34px; }
    .hero-sub { font-size: 16px; }
    .section { padding: 70px 0; }
    .section-title { font-size: 28px; }
    .services-grid { grid-template-columns: 1fr; max-width: 480px; margin-left: auto; margin-right: auto; }
    .service { text-align: center; }
    .service::before {
        top: 0; left: 0; right: 0;
        width: 100%; height: 3px;
        background: linear-gradient(90deg, #6366f1, #06d6a0);
        border-radius: 4px 4px 0 0;
    }
    .service:hover::before { height: 3px; }
    .why-grid { grid-template-columns: 1fr; }
    .mission-vision { grid-template-columns: 1fr; }
    .pricing-grid { grid-template-columns: 1fr; }
    .nav-links {
        display: none; position: absolute; top: 68px; left: 0; right: 0;
        background: rgba(255,255,255,0.98); backdrop-filter: blur(12px);
        flex-direction: column; align-items: center; text-align: center;
        padding: 20px 24px; gap: 0;
        border-bottom: 1px solid #eee; box-shadow: 0 8px 24px rgba(0,0,0,0.08);
    }
    .nav-links.open { display: flex; }
    .nav-links > a, .nav-links > .nav-dropdown { padding: 12px 0; }
    .mobile-toggle { display: block; }
    .nav-dropdown { width: 100%; text-align: center; }
    .nav-dropdown-toggle { justify-content: center; width: 100%; }
    .nav-dropdown-menu {
        position: static !important;
        left: auto !important;
        right: auto !important;
        transform: none !important;
        opacity: 1 !important;
        pointer-events: auto !important;
        box-shadow: none !important;
        border: none !important;
        padding: 0 !important;
        background: transparent !important;
        min-width: 0 !important;
        width: 100% !important;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }
    .nav-dropdown.open .nav-dropdown-menu { max-height: 400px; }
    .nav-dropdown-menu .dd-icon { display: none !important; }
    .nav-dropdown-menu a {
        display: block !important;
        width: 100% !important;
        padding: 10px 0 !important;
        font-size: 13px !important;
        text-align: center !important;
        border-radius: 0 !important;
    }
    .service-pricing-grid { grid-template-columns: 1fr; }
    .marquee-item { font-size: 14px; }
    .marquee-track { gap: 36px; animation-duration: 30s; }
    .cta-section .btn-primary.btn-lg { font-size: 15px; padding: 14px 24px; }
    .footer-grid { grid-template-columns: 1fr; gap: 32px; }
}
@media (max-width: 480px) {
    .hero h1 { font-size: 28px; }
    .container { padding: 0 16px; }
}

/* === UTILITY CLASSES (replaces all inline style= attributes) === */
.u-text-center { text-align: center; }
.u-color-dark { color: #1a3a5c; }
.u-color-muted { color: #666; }
.u-bg-white { background: #fff; color: #1a3a5c; }
.u-mt-16 { margin-top: 16px; }
.u-mt-24 { margin-top: 24px; }
.u-mb-40 { margin-bottom: 40px; }
.u-fs-48 { font-size: 48px; }
.u-fs-72 { font-size: 72px; margin-bottom: 8px; }
.u-fs-20-light { font-size: 20px; color: #cbd5e1; margin-bottom: 32px; }
.u-label-dark { color: #1a3a5c; font-weight: 600; font-size: 13px; }
.u-label-dark-ml { color: #1a3a5c; font-weight: 600; font-size: 13px; margin-left: 16px; }
.u-label-dark-bold { color: #1a3a5c; font-weight: 600; }
.u-section-desc { text-align: center; color: #666; max-width: 580px; margin: 0 auto 32px; }
.u-section-desc-sm { text-align: center; color: #666; max-width: 580px; margin: 0 auto 20px; }
.u-section-desc-lg { text-align: center; color: #666; max-width: 640px; margin: 0 auto 32px; }
.u-section-desc-lg-sm { text-align: center; color: #666; max-width: 640px; margin: 0 auto 16px; }
.u-section-desc-lg-0 { text-align: center; color: #666; max-width: 640px; margin: 0 auto; }
.u-desc-narrow { color: #666; max-width: 480px; margin: 0 auto 24px; }
.u-desc-600 { text-align: center; max-width: 600px; }
.u-desc-muted { color: #666; margin-top: 12px; }
.u-border-white { border-color: rgba(255,255,255,0.3); color: #fff; }
.u-badge-orange { font-size: 12px; background: rgba(249,115,22,0.15); color: #c2410c; padding: 4px 10px; border-radius: 999px; }
.u-list-clean { list-style: none; font-size: 14px; line-height: 2; }
.u-flex-center { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.u-grid-2col { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 24px; text-align: left; }
.u-flex-center-max { justify-content: center; max-width: 720px; margin: 0 auto; }
.u-badge-pill { font-size: 14px; color: #6366f1; text-transform: uppercase; letter-spacing: 0.5px; }
.u-padding-hero { padding: 120px 0 60px; }
.u-badge-orange-bold { font-size: 12px; background: rgba(249,115,22,0.15); color: #c2410c; padding: 4px 10px; border-radius: 999px; font-weight: 600; margin-left: 10px; vertical-align: middle; }
.u-badge-pill-sm { font-size: 14px; color: #6366f1; text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 8px; }

/* === MILCONNECT BADGE === */
.milconnect-badge {
    display: inline-flex;
    margin-top: 16px;
    text-decoration: none;
}
.milconnect-badge-inner {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    background: rgba(6, 214, 160, 0.08);
    border: 1px solid rgba(6, 214, 160, 0.3);
    border-radius: 10px;
    transition: background 0.2s, border-color 0.2s, transform 0.2s;
}
.milconnect-badge:hover .milconnect-badge-inner {
    background: rgba(6, 214, 160, 0.15);
    border-color: rgba(6, 214, 160, 0.55);
    transform: translateY(-1px);
}
.milconnect-badge-icon {
    color: #06d6a0;
    flex-shrink: 0;
    display: flex;
    align-items: center;
}
.milconnect-badge-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.milconnect-badge-label {
    font-size: 9px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #06d6a0;
    line-height: 1;
}
.milconnect-badge-name {
    font-size: 13px;
    font-weight: 700;
    color: #fff;
    letter-spacing: 0.3px;
    line-height: 1.2;
}
.milconnect-badge-arrow {
    font-size: 13px;
    color: rgba(255,255,255,0.4);
    margin-left: 2px;
    transition: color 0.2s;
}
.milconnect-badge:hover .milconnect-badge-arrow {
    color: #06d6a0;
}
