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

:root {
    --red-primary: #9B1B30;
    --red-dark: #7D1626;
    --red-light: #C42340;
    --slate-50: #F8FAFC;
    --slate-100: #F1F5F9;
    --slate-200: #E2E8F0;
    --slate-300: #CBD5E1;
    --slate-400: #94A3B8;
    --slate-500: #64748B;
    --slate-600: #475569;
    --slate-700: #334155;
    --slate-800: #1E293B;
    --slate-900: #0F172A;
    --slate-950: #020617;
}

body {
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    background: #ffffff;
    color: var(--slate-900);
    line-height: 1.6;
}

html {
    scroll-behavior: smooth;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: all 0.5s cubic-bezier(0.22, 1, 0.36, 1);
    background: transparent;
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--slate-100);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}

.nav-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

.logo-img {
    width: 50px;       /* smaller, fits navbar */
    height: auto;      /* maintain aspect ratio */
    object-fit: contain;
    transition: transform 0.3s ease;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;       /* tighter spacing */
    text-decoration: none;
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.logo-main {
    font-size: 14px;
    font-weight: 700;
    color: var(--slate-900);
}

.logo-sub {
    font-size: 9px;
    font-weight: 600;
    color: var(--red-primary);
    text-transform: uppercase;
    letter-spacing: 0.15em;
}

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

.nav-link {
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    color: var(--slate-600);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.2s ease;
}

.nav-link:hover {
    color: var(--slate-900);
    background: var(--slate-50);
}

.nav-link.active {
    color: var(--red-primary);
    background: rgba(155, 27, 48, 0.05);
}

.nav-cta {
    background: var(--red-primary);
    color: white;
    padding: 0.625rem 1.25rem;
    margin-left: 0.75rem;
    box-shadow: 0 4px 6px -1px rgba(155, 27, 48, 0.1);
}

.nav-cta:hover {
    background: var(--red-dark);
    color: white;
    transform: translateY(-1px);
    box-shadow: 0 10px 15px -3px rgba(155, 27, 48, 0.2);
}

.mobile-toggle {
    display: none;
    background: none;
    border: none;
    padding: 0.5rem;
    cursor: pointer;
    border-radius: 0.5rem;
    transition: background 0.2s ease;
}

.mobile-toggle:hover {
    background: var(--slate-100);
}

.mobile-menu {
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    background: white;
    border-bottom: 1px solid var(--slate-100);
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
    transform: translateY(-100%);
    opacity: 0;
    transition: all 0.3s ease;
    z-index: 999;
    display: none;
}

.mobile-menu.open {
    transform: translateY(0);
    opacity: 1;
}

.mobile-menu-content {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.mobile-link {
    padding: 0.75rem 1rem;
    border-radius: 0.5rem;
    color: var(--slate-600);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.2s ease;
}

.mobile-link:hover {
    background: var(--slate-50);
}

.mobile-link.active {
    color: var(--red-primary);
    background: rgba(155, 27, 48, 0.05);
}

.mobile-cta {
    background: var(--red-primary);
    color: white;
    margin-top: 0.75rem;
    text-align: center;
}

.mobile-cta:hover {
    background: var(--red-dark);
}

/* Main Content */
.main-content {
    padding-top: 72px;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 92vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    inset: 0;
    opacity: 0.03;
    background-image: 
        linear-gradient(rgba(155, 27, 48, 0.3) 1px, transparent 1px),
        linear-gradient(90deg, rgba(155, 27, 48, 0.3) 1px, transparent 1px);
    background-size: 60px 60px;
}

.hero-gradient-1 {
    position: absolute;
    top: 0;
    right: 0;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(155, 27, 48, 0.04) 0%, transparent 70%);
    transform: translate(25%, -33%);
}

.hero-gradient-2 {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(15, 23, 42, 0.03) 0%, transparent 70%);
    transform: translate(-25%, 33%);
}

.hero-container {
    position: relative;
    max-width: 1280px;
    margin: 0 auto;
    padding: 5rem 2rem;
    width: 100%;
}

.hero-content {
    max-width: 48rem;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: linear-gradient(to right, rgba(255, 235, 238, 1), rgba(255, 235, 238, 0.5));
    border: 1px solid rgba(155, 27, 48, 0.2);
    border-radius: 50px;
    color: var(--red-primary);
    font-size: 14px;
    font-weight: 600;
    box-shadow: 0 1px 2px 0 rgba(155, 27, 48, 0.05);
    margin-bottom: 2rem;
}

.hero-badge svg {
    width: 16px;
    height: 16px;
}

.hero-title {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: -0.02em;
    color: var(--slate-900);
    margin-bottom: 1.75rem;
}

.hero-title-highlight {
    color: var(--red-primary);
}

.hero-subtitle {
    font-size: clamp(1.125rem, 2vw, 1.25rem);
    color: var(--slate-500);
    line-height: 1.75;
    max-width: 32rem;
    margin-bottom: 2.5rem;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border-radius: 0.5rem;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.22, 1, 0.36, 1);
    cursor: pointer;
    border: 2px solid transparent;
}

.btn-primary {
    background: var(--red-primary);
    color: white;
    box-shadow: 0 10px 15px -3px rgba(155, 27, 48, 0.1);
}

.btn-primary:hover {
    background: var(--red-dark);
    transform: translateY(-2px);
    box-shadow: 0 20px 25px -5px rgba(155, 27, 48, 0.15);
}

.btn-secondary {
    background: transparent;
    color: var(--slate-900);
    border: 2px solid var(--slate-300);
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
}

.btn-secondary:hover {
    background: var(--slate-900);
    color: white;
    border-color: var(--slate-900);
}

/* Stats Section */
.stats-section {
    border-top: 1px solid var(--slate-200);
    border-bottom: 1px solid var(--slate-200);
    background: linear-gradient(to bottom right, var(--slate-50), white, rgba(255, 235, 238, 0.3));
}

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

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

.stat-item {
    text-align: center;
}

.stat-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 0.75rem;
    background: linear-gradient(to bottom right, var(--red-primary), var(--red-dark));
    box-shadow: 0 10px 15px -3px rgba(155, 27, 48, 0.2);
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.stat-item:hover .stat-icon {
    transform: scale(1.05);
    box-shadow: 0 20px 25px -5px rgba(155, 27, 48, 0.3);
}

.stat-icon svg {
    width: 20px;
    height: 20px;
    color: white;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--slate-900);
    line-height: 1;
    margin-bottom: 0.5rem;
    transition: color 0.3s ease;
}

.stat-item:hover .stat-number {
    color: var(--red-primary);
}

.stat-label {
    font-size: 14px;
    color: var(--slate-500);
    font-weight: 500;
}

/* Trust Section */
.trust-section {
    background: white;
    border-bottom: 1px solid var(--slate-100);
}

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

.trust-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem;
    border-radius: 0.5rem;
    transition: background 0.3s ease;
}

.trust-item:hover {
    background: var(--slate-50);
}

.trust-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 0.5rem;
    background: rgba(155, 27, 48, 0.05);
    flex-shrink: 0;
}

.trust-icon svg {
    width: 20px;
    height: 20px;
    color: var(--red-primary);
}

.trust-label {
    font-size: 14px;
    font-weight: 600;
    color: var(--slate-700);
}

/* Section Headers */
.section {
    padding: 6rem 2rem;
    position: relative;
}

.section-container {
    max-width: 1280px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.375rem 0.75rem;
    background: linear-gradient(to right, rgba(255, 235, 238, 1), rgba(255, 235, 238, 0.5));
    border: 1px solid rgba(155, 27, 48, 0.2);
    border-radius: 50px;
    color: var(--red-primary);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    box-shadow: 0 1px 2px 0 rgba(155, 27, 48, 0.05);
    margin-bottom: 1.5rem;
}

.section-badge svg {
    width: 14px;
    height: 14px;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -0.02em;
    color: var(--slate-900);
}

.section-description {
    font-size: 1.125rem;
    color: var(--slate-500);
    max-width: 44rem;
    margin: 1.5rem auto 0;
    line-height: 1.75;
}

/* Service Cards */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.service-card {
    position: relative;
    background: white;
    border: 2px solid var(--slate-100);
    border-radius: 1rem;
    padding: 2rem;
    transition: all 0.5s cubic-bezier(0.22, 1, 0.36, 1);
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--red-primary);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.service-card:hover {
    transform: translateY(-5px);
    border-color: var(--slate-200);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.04), 0 10px 10px -5px rgba(0, 0, 0, 0.02);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 0.75rem;
    background: rgba(155, 27, 48, 0.05);
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.service-card:hover .service-icon {
    background: var(--red-primary);
    transform: scale(1.05);
}

.service-icon svg {
    width: 28px;
    height: 28px;
    color: var(--red-primary);
    transition: color 0.3s ease;
}

.service-card:hover .service-icon svg {
    color: white;
}

.service-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--slate-900);
    margin-bottom: 1rem;
}

.service-description {
    font-size: 15px;
    color: var(--slate-500);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.service-features {
    list-style: none;
}

.service-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 0;
    font-size: 14px;
    color: var(--slate-600);
}

.service-features li::before {
    content: '→';
    color: var(--red-primary);
    font-weight: bold;
}

/* Dark Section */
.dark-section {
    background: var(--slate-950);
    background: linear-gradient(to bottom right, var(--slate-950), var(--slate-900), #1a0a0f);
    position: relative;
    overflow: hidden;
}

.dark-section::before {
    content: '';
    position: absolute;
    inset: 0;
    opacity: 0.02;
    background-image: radial-gradient(circle at 2px 2px, white 1px, transparent 0);
    background-size: 40px 40px;
}

.dark-section .section-badge {
    background: linear-gradient(to right, rgba(155, 27, 48, 0.2), rgba(155, 27, 48, 0.1));
    border-color: rgba(155, 27, 48, 0.3);
    color: rgba(239, 68, 68, 1);
    box-shadow: 0 10px 15px -3px rgba(155, 27, 48, 0.2);
}

.dark-section .section-title {
    color: white;
}

.dark-section .section-description {
    color: var(--slate-400);
}

/* Footer */
.footer {
    background: var(--slate-950);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-content {
    max-width: 1280px;
    margin: 0 auto;
    padding: 4rem 2rem 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.25rem;
}

.footer-description {
    font-size: 14px;
    color: var(--slate-400);
    line-height: 1.75;
    max-width: 20rem;
}

.footer-section {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-section h4 {
    font-size: 14px;
    font-weight: 600;
    color: white;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.75rem;
}

.footer-section a {
    font-size: 14px;
    color: var(--slate-400);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: white;
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-bottom p {
    font-size: 12px;
    color: var(--slate-500);
}

.footer-legal {
    display: flex;
    gap: 1.5rem;
}

.footer-legal a {
    font-size: 12px;
    color: var(--slate-500);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-legal a:hover {
    color: var(--slate-300);
}

/* Responsive */
@media (max-width: 768px) {
    .desktop-nav {
        display: none;
    }

    .mobile-toggle {
        display: block;
    }

    .mobile-menu {
        display: block;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 640px) {
    .hero-container {
        padding: 3rem 1.5rem;
    }

    .section {
        padding: 4rem 1.5rem;
    }

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

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

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease-out forwards;
}

/* Smooth scroll offset for fixed nav */
html {
    scroll-padding-top: 80px;
}
