/* ========== CSS VARIABLES ========== */
:root {
    --navy: #0a1628;
    --navy-light: #111d33;
    --blue: #1a5cff;
    --blue-glow: #3b7dff;
    --red: #e63946;
    --red-dark: #c1121f;
    --white: #f8f9fa;
    --gray-100: #e9ecef;
    --gray-200: #dee2e6;
    --gray-300: #ced4da;
    --gray-400: #adb5bd;
    --gray-500: #6c757d;
    --gray-800: #343a40;
    --gold: #f4a623;
    --font-display: 'Bebas Neue', sans-serif;
    --font-body: 'Barlow', sans-serif;
    --font-condensed: 'Barlow Condensed', sans-serif;
}

/* ========== RESET & BASE ========== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
    font-family: var(--font-body);
    background: var(--navy);
    color: var(--white);
    overflow-x: hidden;
    line-height: 1.6;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }

/* ========== UTILITY ========== */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section-label {
    font-family: var(--font-condensed);
    font-weight: 600;
    font-size: 0.85rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--blue);
    margin-bottom: 12px;
}
.section-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5vw, 4rem);
    line-height: 1;
    letter-spacing: 2px;
    margin-bottom: 20px;
}
.accent { color: var(--red); }
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 36px;
    font-family: var(--font-condensed);
    font-weight: 700;
    font-size: 1rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}
.btn-primary {
    background: var(--red);
    color: var(--white);
    clip-path: polygon(0 0, calc(100% - 14px) 0, 100% 14px, 100% 100%, 14px 100%, 0 calc(100% - 14px));
}
.btn-primary:hover {
    background: var(--red-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(230, 57, 70, 0.4);
}
.btn-outline {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--blue);
    clip-path: polygon(0 0, calc(100% - 14px) 0, 100% 14px, 100% 100%, 14px 100%, 0 calc(100% - 14px));
}
.btn-outline:hover {
    background: var(--blue);
    transform: translateY(-2px);
}

/* ========== GRAIN OVERLAY ========== */
body::after {
    content: '';
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 9999;
    opacity: 0.5;
}

/* ========== NAVIGATION ========== */
.nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    padding: 16px 0;
    transition: all 0.4s ease;
    background: transparent;
}
.nav.scrolled {
    background: rgba(10, 22, 40, 0.95);
    backdrop-filter: blur(20px);
    padding: 10px 0;
    border-bottom: 1px solid rgba(26, 92, 255, 0.15);
}
.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}
.nav-logo {
    display: flex;
    align-items: center;
    gap: 14px;
}
.nav-logo img {
    height: 50px;
    width: auto;
    border-radius: 4px;
}
.nav-logo-text {
    font-family: var(--font-display);
    font-size: 1.4rem;
    letter-spacing: 3px;
    line-height: 1.1;
}
.nav-logo-text span { color: var(--red); }
.nav-links {
    display: flex;
    align-items: center;
    gap: 36px;
    list-style: none;
}
.nav-links a {
    font-family: var(--font-condensed);
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gray-300);
    transition: color 0.3s;
    position: relative;
}
.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--red);
    transition: width 0.3s;
}
.nav-links a:hover { color: var(--white); }
.nav-links a:hover::after { width: 100%; }
.nav-links a.active { color: var(--blue-glow); }
.nav-phone {
    font-family: var(--font-condensed);
    font-weight: 700;
    font-size: 1.1rem;
    letter-spacing: 1px;
    color: var(--blue-glow);
    display: flex;
    align-items: center;
    gap: 8px;
}
.nav-phone svg { width: 18px; height: 18px; }

/* Mobile Nav Toggle */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 5px;
}
.nav-toggle span {
    width: 28px;
    height: 3px;
    background: var(--white);
    border-radius: 2px;
    transition: all 0.3s;
}

/* ========== HERO ========== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}
.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}
.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.3);
}
.hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(10, 22, 40, 0.95) 0%,
        rgba(10, 22, 40, 0.7) 40%,
        rgba(10, 22, 40, 0.4) 100%
    );
}
.hero-content {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
    padding: 140px 24px 100px;
}
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    background: rgba(26, 92, 255, 0.15);
    border: 1px solid rgba(26, 92, 255, 0.3);
    border-radius: 100px;
    font-family: var(--font-condensed);
    font-weight: 600;
    font-size: 0.8rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--blue-glow);
    margin-bottom: 30px;
    animation: fadeInUp 0.8s ease forwards;
}
.hero h1 {
    font-family: var(--font-display);
    font-size: clamp(3.5rem, 8vw, 7rem);
    line-height: 0.95;
    letter-spacing: 3px;
    margin-bottom: 24px;
    animation: fadeInUp 0.8s ease 0.15s forwards;
    opacity: 0;
}
.hero h1 .line2 { color: var(--gray-300); }
.hero h1 .highlight {
    color: var(--red);
    position: relative;
}
.hero-sub {
    font-family: var(--font-body);
    font-size: 1.2rem;
    font-weight: 300;
    color: var(--gray-400);
    max-width: 520px;
    line-height: 1.7;
    margin-bottom: 40px;
    animation: fadeInUp 0.8s ease 0.3s forwards;
    opacity: 0;
}
.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease 0.45s forwards;
    opacity: 0;
}
.hero-stats {
    display: flex;
    gap: 48px;
    margin-top: 80px;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    animation: fadeInUp 0.8s ease 0.6s forwards;
    opacity: 0;
}
.hero-stat h3 {
    font-family: var(--font-display);
    font-size: 2.8rem;
    color: var(--white);
    line-height: 1;
}
.hero-stat p {
    font-family: var(--font-condensed);
    font-size: 0.85rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gray-500);
    margin-top: 4px;
}

/* ========== SERVICES ========== */
.services {
    padding: 120px 0;
    background: var(--navy);
    position: relative;
}
.services::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--blue), transparent);
    opacity: 0.3;
}
.services-header {
    text-align: center;
    margin-bottom: 72px;
}
.services-header .section-title { color: var(--white); }
.services-header p {
    color: var(--gray-400);
    max-width: 560px;
    margin: 0 auto;
    font-weight: 300;
    font-size: 1.05rem;
}
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.service-card {
    background: var(--navy-light);
    border: 1px solid rgba(255, 255, 255, 0.05);
    overflow: hidden;
    position: relative;
    transition: all 0.4s ease;
    cursor: pointer;
    clip-path: polygon(0 0, calc(100% - 20px) 0, 100% 20px, 100% 100%, 20px 100%, 0 calc(100% - 20px));
}
.service-card:hover {
    transform: translateY(-8px);
    border-color: rgba(26, 92, 255, 0.3);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4), 0 0 40px rgba(26, 92, 255, 0.1);
}
.service-card-img {
    height: 220px;
    overflow: hidden;
}
.service-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}
.service-card:hover .service-card-img img {
    transform: scale(1.08);
}
.service-card-body {
    padding: 28px;
}
.service-card-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(26, 92, 255, 0.12);
    border: 1px solid rgba(26, 92, 255, 0.2);
    margin-bottom: 16px;
    clip-path: polygon(0 0, calc(100% - 8px) 0, 100% 8px, 100% 100%, 8px 100%, 0 calc(100% - 8px));
}
.service-card-icon svg {
    width: 22px;
    height: 22px;
    stroke: var(--blue-glow);
    fill: none;
    stroke-width: 2;
}
.service-card h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    letter-spacing: 2px;
    margin-bottom: 10px;
}
.service-card p {
    color: var(--gray-400);
    font-size: 0.95rem;
    font-weight: 300;
    line-height: 1.6;
}
.service-card-cta {
    display: inline-block;
    margin-top: 12px;
    font-family: var(--font-condensed);
    font-weight: 600;
    font-size: 0.85rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--blue-glow);
    transition: color 0.3s;
}
.service-card-cta:hover { color: var(--white); }

/* ========== ABOUT / WHY US ========== */
.about {
    padding: 120px 0;
    background: linear-gradient(180deg, var(--navy) 0%, var(--navy-light) 100%);
    position: relative;
}
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}
.about-image {
    position: relative;
}
.about-image img {
    width: 100%;
    clip-path: polygon(0 0, calc(100% - 30px) 0, 100% 30px, 100% 100%, 30px 100%, 0 calc(100% - 30px));
}
.about-image-accent {
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 200px;
    height: 200px;
    border: 2px solid var(--blue);
    opacity: 0.2;
    clip-path: polygon(0 0, calc(100% - 20px) 0, 100% 20px, 100% 100%, 20px 100%, 0 calc(100% - 20px));
}
.about-content .section-title { margin-bottom: 24px; }
.about-text {
    color: var(--gray-400);
    font-weight: 300;
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 40px;
}
.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}
.about-feature {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 16px;
    background: rgba(26, 92, 255, 0.05);
    border: 1px solid rgba(26, 92, 255, 0.1);
}
.about-feature-icon {
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--red);
    clip-path: polygon(0 0, calc(100% - 6px) 0, 100% 6px, 100% 100%, 6px 100%, 0 calc(100% - 6px));
}
.about-feature-icon svg {
    width: 18px; height: 18px;
    stroke: white; fill: none; stroke-width: 2;
}
.about-feature h4 {
    font-family: var(--font-condensed);
    font-weight: 700;
    font-size: 0.95rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 2px;
}
.about-feature p {
    font-size: 0.85rem;
    color: var(--gray-500);
    font-weight: 300;
}

/* ========== TESTIMONIALS ========== */
.testimonials {
    padding: 120px 0;
    background: var(--navy);
    position: relative;
}
.testimonials::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--red), transparent);
    opacity: 0.3;
}
.testimonials-header {
    text-align: center;
    margin-bottom: 64px;
}
.testimonials-header .stars {
    display: flex;
    justify-content: center;
    gap: 4px;
    margin-bottom: 20px;
}
.testimonials-header .stars svg {
    width: 28px; height: 28px;
    fill: var(--gold);
}
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.testimonial-card {
    padding: 36px;
    background: var(--navy-light);
    border: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
    transition: all 0.3s;
}
.testimonial-card:hover {
    border-color: rgba(244, 166, 35, 0.2);
    transform: translateY(-4px);
}
.testimonial-card::before {
    content: '\201C';
    font-family: var(--font-display);
    font-size: 5rem;
    color: var(--blue);
    opacity: 0.15;
    position: absolute;
    top: 10px;
    left: 24px;
    line-height: 1;
}
.testimonial-stars {
    display: flex;
    gap: 3px;
    margin-bottom: 16px;
}
.testimonial-stars svg {
    width: 16px; height: 16px;
    fill: var(--gold);
}
.testimonial-text {
    color: var(--gray-300);
    font-size: 0.95rem;
    font-weight: 300;
    line-height: 1.7;
    margin-bottom: 24px;
    font-style: italic;
}
.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}
.testimonial-avatar {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, var(--blue), var(--red));
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 1.1rem;
    clip-path: polygon(0 0, calc(100% - 8px) 0, 100% 8px, 100% 100%, 8px 100%, 0 calc(100% - 8px));
}
.testimonial-name {
    font-family: var(--font-condensed);
    font-weight: 700;
    font-size: 0.95rem;
    letter-spacing: 1px;
}
.testimonial-verified {
    font-size: 0.75rem;
    color: var(--gray-500);
}

/* ========== HOURS & CONTACT ========== */
.contact {
    padding: 120px 0;
    background: linear-gradient(180deg, var(--navy) 0%, #060d18 100%);
    position: relative;
}
.contact::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--blue), transparent);
    opacity: 0.3;
}
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 48px;
}
.contact-info h3 {
    font-family: var(--font-display);
    font-size: 1.8rem;
    letter-spacing: 2px;
    margin-bottom: 20px;
}
.contact-detail {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 20px;
}
.contact-detail-icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(26, 92, 255, 0.12);
    border: 1px solid rgba(26, 92, 255, 0.2);
}
.contact-detail-icon svg {
    width: 20px; height: 20px;
    stroke: var(--blue-glow);
    fill: none;
    stroke-width: 2;
}
.contact-detail h4 {
    font-family: var(--font-condensed);
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--gray-500);
    margin-bottom: 2px;
}
.contact-detail p {
    font-size: 1rem;
    color: var(--white);
}
.contact-detail a {
    color: var(--blue-glow);
    transition: color 0.3s;
}
.contact-detail a:hover { color: var(--white); }
.hours h3 {
    font-family: var(--font-display);
    font-size: 1.8rem;
    letter-spacing: 2px;
    margin-bottom: 20px;
}
.hours-list { list-style: none; }
.hours-item {
    display: flex;
    justify-content: space-between;
    padding: 14px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 0.95rem;
}
.hours-item .day { color: var(--gray-400); font-weight: 400; }
.hours-item .time { color: var(--white); font-weight: 600; }
.hours-item.closed .time { color: var(--red); }
.contact-map {
    position: relative;
    overflow: hidden;
    clip-path: polygon(0 0, calc(100% - 20px) 0, 100% 20px, 100% 100%, 20px 100%, 0 calc(100% - 20px));
}
.contact-map iframe {
    width: 100%;
    height: 100%;
    min-height: 320px;
    border: none;
    filter: grayscale(0.3) contrast(1.1) brightness(0.85);
}

/* ========== CTA BANNER ========== */
.cta {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--red) 0%, var(--red-dark) 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}
.cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(
        -45deg,
        transparent,
        transparent 40px,
        rgba(0,0,0,0.05) 40px,
        rgba(0,0,0,0.05) 80px
    );
}
.cta-content { position: relative; z-index: 1; }
.cta h2 {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5vw, 4rem);
    letter-spacing: 3px;
    margin-bottom: 16px;
}
.cta p {
    font-size: 1.15rem;
    font-weight: 300;
    opacity: 0.9;
    margin-bottom: 32px;
}
.cta .btn-white {
    background: var(--white);
    color: var(--red);
    font-family: var(--font-condensed);
    font-weight: 700;
    font-size: 1rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 16px 40px;
    border: none;
    cursor: pointer;
    transition: all 0.3s;
    clip-path: polygon(0 0, calc(100% - 14px) 0, 100% 14px, 100% 100%, 14px 100%, 0 calc(100% - 14px));
}
.cta .btn-white:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

/* ========== FOOTER ========== */
.footer {
    padding: 48px 0 24px;
    background: #050b14;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}
.footer-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}
.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
}
.footer-logo img { height: 40px; border-radius: 4px; }
.footer-logo span {
    font-family: var(--font-display);
    font-size: 1.1rem;
    letter-spacing: 2px;
}
.footer-nav {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
    font-size: 0.85rem;
}
.footer-nav a {
    color: var(--gray-400);
    transition: color 0.3s;
}
.footer-nav a:hover { color: var(--white); }
.footer-copy {
    font-size: 0.85rem;
    color: var(--gray-500);
    width: 100%;
    text-align: center;
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

/* ========== ANIMATIONS ========== */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ========== HOW IT WORKS ========== */
.how-it-works {
    padding: 80px 0;
    background: var(--navy-light);
}
.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-top: 48px;
}
.step-card {
    text-align: center;
    padding: 32px 24px;
    position: relative;
}
.step-number {
    font-family: var(--font-display);
    font-size: 4rem;
    color: var(--blue);
    opacity: 0.2;
    line-height: 1;
    margin-bottom: 16px;
}
.step-card h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    letter-spacing: 2px;
    margin-bottom: 12px;
}
.step-card p {
    color: var(--gray-400);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* ========== STICKY MOBILE CTA ========== */
.mobile-cta {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 999;
    background: var(--red);
    padding: 12px 24px;
    text-align: center;
}
.mobile-cta a {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: var(--white);
    font-family: var(--font-condensed);
    font-weight: 700;
    font-size: 1rem;
    letter-spacing: 2px;
    text-transform: uppercase;
}
.mobile-cta a svg {
    width: 20px;
    height: 20px;
    stroke: var(--white);
    fill: none;
    stroke-width: 2;
}

/* ========== SHARED PAGE TEMPLATE ========== */
.page-hero {
    padding: 160px 0 80px;
    background: linear-gradient(180deg, var(--navy) 0%, var(--navy-light) 100%);
    position: relative;
}
.page-hero::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--blue), transparent);
    opacity: 0.3;
}
.page-hero .section-label { margin-bottom: 12px; }
.page-hero h1 {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    line-height: 1;
    letter-spacing: 2px;
    margin-bottom: 20px;
}
.page-hero p {
    font-size: 1.15rem;
    color: var(--gray-300);
    max-width: 600px;
    line-height: 1.7;
}
.page-content {
    padding: 80px 0;
}
.page-content h2 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    letter-spacing: 2px;
    margin-bottom: 24px;
    line-height: 1.1;
}
.page-content h3 {
    font-family: var(--font-condensed);
    font-size: 1.3rem;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 12px;
    color: var(--white);
}
.page-content p {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--gray-300);
    margin-bottom: 16px;
}
.page-content ul {
    list-style: none;
    margin-bottom: 24px;
}
.page-content ul li {
    position: relative;
    padding-left: 24px;
    margin-bottom: 10px;
    color: var(--gray-300);
    line-height: 1.7;
}
.page-content ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 8px;
    height: 8px;
    background: var(--red);
    clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
}
.page-cta-box {
    background: var(--navy-light);
    border: 1px solid rgba(26, 92, 255, 0.15);
    padding: 40px;
    text-align: center;
    margin-top: 48px;
    clip-path: polygon(0 0, calc(100% - 20px) 0, 100% 20px, 100% 100%, 20px 100%, 0 calc(100% - 20px));
}
.page-cta-box h3 {
    font-family: var(--font-display);
    font-size: 2rem;
    letter-spacing: 2px;
    margin-bottom: 12px;
}
.page-cta-box p {
    color: var(--gray-400);
    margin-bottom: 24px;
}

/* ========== BREADCRUMBS ========== */
.breadcrumbs {
    padding: 0;
    margin-bottom: 16px;
    display: flex;
    gap: 8px;
    align-items: center;
    font-size: 0.85rem;
    color: var(--gray-500);
}
.breadcrumbs a {
    color: var(--blue-glow);
    transition: color 0.3s;
}
.breadcrumbs a:hover { color: var(--white); }

/* ========== FAQ STYLES ========== */
.faq-list { max-width: 800px; }
.faq-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding: 24px 0;
}
.faq-question {
    font-family: var(--font-condensed);
    font-weight: 700;
    font-size: 1.1rem;
    letter-spacing: 0.5px;
    color: var(--white);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
}
.faq-question::after {
    content: '+';
    font-size: 1.5rem;
    color: var(--blue);
    transition: transform 0.3s;
    flex-shrink: 0;
}
.faq-item.active .faq-question::after {
    content: '\2212';
}
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    color: var(--gray-300);
    line-height: 1.8;
}
.faq-item.active .faq-answer {
    max-height: 500px;
    padding-top: 16px;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 1024px) {
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
    .contact-grid { grid-template-columns: 1fr 1fr; }
    .contact-map { grid-column: span 2; min-height: 300px; }
}
@media (max-width: 768px) {
    .nav-links { display: none; }
    .nav-toggle { display: flex; }
    .nav-links.active {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(10, 22, 40, 0.98);
        padding: 24px;
        gap: 20px;
        border-bottom: 1px solid rgba(26, 92, 255, 0.15);
    }
    .hero h1 { font-size: clamp(2.8rem, 10vw, 4.5rem); }
    .hero-stats { flex-direction: column; gap: 24px; }
    .services-grid { grid-template-columns: 1fr; }
    .about-grid { grid-template-columns: 1fr; gap: 40px; }
    .testimonials-grid { grid-template-columns: 1fr; }
    .contact-grid { grid-template-columns: 1fr; }
    .contact-map { grid-column: span 1; }
    .hero-stats { flex-wrap: wrap; gap: 32px; }
    .about-features { grid-template-columns: 1fr; }
    .steps-grid { grid-template-columns: 1fr; gap: 16px; }
    .mobile-cta { display: block; }
    body { padding-bottom: 56px; }
}
