:root {
    --primary-blue: #1e3a5f;
    --primary-red: #c9404d;
    --dark-blue: #0f1f35;
    --light-gray: #f8f9fa;
    --white: #ffffff;
    --text: #1a1a1a;
    --text-muted: #64748b;
    
    --gradient-primary: linear-gradient(135deg, #1e3a5f 0%, #c9404d 100%);
    --gradient-hero: linear-gradient(135deg, rgba(15, 31, 53, 0.95), rgba(30, 58, 95, 0.92));
    
    --font: 'Outfit', sans-serif;
    
    --container: 1200px;
    --gap: clamp(1rem, 3vw, 2rem);
    
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.16);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font);
    font-size: 16px;
    line-height: 1.6;
    color: var(--text);
    background: var(--white);
    overflow-x: hidden;
}

.container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 2rem;
}

.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    z-index: 1000;
    transition: var(--transition);
}

.nav-container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.nav-logo img {
    height: 50px;
    width: auto;
}

.nav-menu {
    display: flex;
    gap: 2.5rem;
    align-items: center;
}

.nav-menu a {
    color: var(--text);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
    position: relative;
}

.nav-menu a:not(.nav-cta):hover {
    color: var(--primary-red);
}

.nav-menu a:not(.nav-cta)::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-red);
    transition: var(--transition);
}

.nav-menu a:not(.nav-cta):hover::after {
    width: 100%;
}

.nav-cta {
    background: var(--primary-red);
    color: var(--white) !important;
    padding: 0.625rem 1.5rem;
    font-weight: 600;
    position: relative;
    overflow: hidden;
}

.nav-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s;
}

.nav-cta:hover::before {
    left: 100%;
}

.nav-cta:hover {
    background: #b03643;
}

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

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: var(--primary-blue);
    transition: var(--transition);
}

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 100px;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: var(--gradient-hero), url('https://images.unsplash.com/photo-1557804506-669a67965ba0?w=1600&q=80');
    background-size: cover;
    background-position: center;
    z-index: -1;
}

.hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(15, 31, 53, 0.92), rgba(30, 58, 95, 0.88));
}

.hero-container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 2;
    color: var(--white);
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 4rem;
}

.hero-content {
    flex: 1;
    max-width: 700px;
}

.hero-label {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
    animation: fadeInUp 0.8s ease;
}

.label-line {
    width: 60px;
    height: 2px;
    background: var(--primary-red);
}

.hero-label span {
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    opacity: 0.9;
}

.hero-title {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    animation: fadeInUp 0.8s ease 0.2s both;
}

.hero-gradient {
    background: linear-gradient(135deg, #ffffff, #c9404d);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-text {
    font-size: clamp(1.125rem, 2vw, 1.375rem);
    line-height: 1.7;
    opacity: 0.95;
    margin-bottom: 2.5rem;
    animation: fadeInUp 0.8s ease 0.4s both;
}

.desktop-break {
    display: block;
}

.hero-actions {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease 0.6s both;
}

.hero-stat {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    padding: 2rem;
    border-left: 3px solid var(--primary-red);
    animation: fadeInUp 0.8s ease 0.8s both;
}

.stat-value {
    font-size: 5rem;
    font-weight: 800;
    line-height: 1;
    background: linear-gradient(135deg, #ffffff, #c9404d);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-align: right;
    margin-top: 0.5rem;
    opacity: 0.8;
}

.hero-wave {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 120px;
    overflow: hidden;
}

.hero-wave svg {
    display: block;
    width: 100%;
    height: 100%;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
.btn-hero {
    display: inline-flex;
    align-items: center;
    padding: 1.125rem 2.5rem;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    font-family: var(--font);
    font-size: 1rem;
    position: relative;
    overflow: hidden;
}

.btn-hero-primary {
    background: var(--primary-red);
    color: var(--white);
}

.btn-hero-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s;
}

.btn-hero-primary:hover::before {
    left: 100%;
}

.btn-hero-primary:hover {
    background: #b03643;
}

.btn-hero-secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
    position: relative;
}

.btn-hero-secondary::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-red);
    transition: var(--transition);
}

.btn-hero-secondary:hover {
    border-color: var(--primary-red);
}

.btn-hero-secondary:hover::after {
    width: 100%;
}

.btn-submit {
    width: 100%;
    padding: 1.25rem;
    background: var(--primary-red);
    color: var(--white);
    border: none;
    font-family: var(--font);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: var(--transition);
}

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

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

.btn-submit:hover {
    background: #b03643;
}

.btn-submit:active {
    transform: scale(0.98);
}

section {
    padding: 5rem 0;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    color: var(--primary-blue);
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.section-header {
    margin-bottom: 3rem;
}

.section-header.centered {
    text-align: center;
}

.problems {
    background: var(--light-gray);
}

.problems-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.problems-list {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.problem-item {
    display: grid;
    grid-template-columns: 80px 1fr;
    gap: 2rem;
    align-items: start;
}

.problem-number {
    font-size: 3.5rem;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.problem-text h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 0.75rem;
}

.problem-text p {
    color: var(--text-muted);
    line-height: 1.7;
}

.problems-image {
    overflow: hidden;
}

.problems-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.solution {
    background: var(--primary-blue);
    color: var(--white);
    padding: 4rem 0;
}

.solution h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.solution p {
    font-size: 1.125rem;
    opacity: 0.95;
    line-height: 1.7;
    margin-bottom: 2rem;
    max-width: 900px;
}

.solution .coverage-info {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    border-left: 3px solid var(--primary-red);
}

.solution .coverage-info span {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    opacity: 0.8;
}

.solution .coverage-info strong {
    font-size: 1.25rem;
    font-weight: 700;
}

.process {
    position: relative;
    background: var(--white);
}

.process-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 50%;
    height: 100%;
    background: linear-gradient(135deg, rgba(30, 58, 95, 0.03), rgba(201, 64, 77, 0.03));
    transform: skewX(-5deg);
    transform-origin: top left;
}

.process-timeline {
    display: grid;
    gap: 2rem;
    position: relative;
}

.timeline-item {
    display: grid;
    grid-template-columns: 80px 1fr;
    gap: 2rem;
    align-items: start;
    position: relative;
}

.timeline-item::before {
    content: attr(data-step);
    font-size: 3rem;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.timeline-item::after {
    content: '';
    position: absolute;
    left: 35px;
    top: 80px;
    width: 3px;
    height: calc(100% + 2rem);
    background: linear-gradient(180deg, var(--primary-red), transparent);
}

.timeline-item:last-child::after {
    display: none;
}

.timeline-content {
    background: var(--white);
    padding: 2rem;
    border-left: 3px solid var(--primary-red);
}

.timeline-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 0.75rem;
}

.timeline-content p {
    color: var(--text-muted);
    line-height: 1.7;
}

.about {
    background: var(--light-gray);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-image {
    overflow: hidden;
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.about-content p {
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 2rem;
}

.about-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding-left: 1rem;
    border-left: 3px solid var(--primary-red);
}

.about-list p {
    margin: 0;
    color: var(--text);
    font-weight: 500;
}

.about-list strong {
    color: var(--primary-red);
    margin-right: 0.75rem;
}

.contact-footer {
    position: relative;
    background: var(--dark-blue);
    color: var(--white);
    padding: 6rem 0 3rem;
}

.contact-footer-bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
    opacity: 0.03;
    z-index: -1;
}

.bg-shape {
    position: absolute;
    width: 800px;
    height: 800px;
    background: var(--gradient-primary);
    border-radius: 50%;
    filter: blur(100px);
    top: -200px;
    right: -200px;
}

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

.contact-header .section-title {
    color: var(--white);
}

.contact-intro {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.125rem;
    margin-top: 1rem;
}

.contact-layout {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    margin-bottom: 5rem;
}

.contact-info-section h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
}

.info-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 3rem;
}

.info-item {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.info-label {
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: rgba(255, 255, 255, 0.5);
    font-weight: 600;
}

.info-item a {
    color: var(--white);
    text-decoration: none;
    font-size: 1.25rem;
    font-weight: 600;
    transition: var(--transition);
}

.info-item a:hover {
    color: var(--primary-red);
}

.info-item span {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.125rem;
}

.info-coverage {
    padding-top: 2rem;
    position: relative;
}

.coverage-line {
    width: 60px;
    height: 3px;
    background: var(--primary-red);
    margin-bottom: 1.5rem;
}

.info-coverage p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
}

.info-coverage strong {
    color: var(--white);
}

.contact-form-main {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.form-field {
    position: relative;
}

.form-field input,
.form-field textarea {
    width: 100%;
    padding: 1.25rem 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.1);
    color: var(--white);
    font-family: var(--font);
    font-size: 1rem;
    transition: var(--transition);
}

.form-field input:focus,
.form-field textarea:focus {
    outline: none;
    border-color: var(--primary-red);
    background: rgba(255, 255, 255, 0.08);
}

.form-field label {
    position: absolute;
    left: 1rem;
    top: 1.25rem;
    color: rgba(255, 255, 255, 0.5);
    font-size: 1rem;
    pointer-events: none;
    transition: var(--transition);
}

.form-field input:focus + label,
.form-field input:not(:placeholder-shown) + label,
.form-field textarea:focus + label,
.form-field textarea:not(:placeholder-shown) + label {
    top: -0.75rem;
    left: 0.75rem;
    font-size: 0.75rem;
    background: var(--dark-blue);
    padding: 0 0.5rem;
    color: var(--primary-red);
    font-weight: 600;
}

.footer-divider {
    height: 1px;
    background: rgba(255, 255, 255, 0.1);
    margin: 4rem 0 3rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: start;
}

.footer-brand-area {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.footer-brand-area img {
    width: 10rem;
    filter: brightness(0) invert(1);
}

.footer-tagline {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
    max-width: 400px;
}

.footer-nav-area {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.footer-nav-area a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
}

.footer-nav-area a:hover {
    color: var(--white);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    margin-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.875rem;
}

@media (max-width: 968px) {
    .nav-menu {
        position: fixed;
        top: 70px;
        right: -100%;
        width: 300px;
        height: calc(100vh - 70px);
        background: var(--white);
        flex-direction: column;
        align-items: flex-start;
        padding: 2rem;
        box-shadow: var(--shadow-lg);
        transition: var(--transition);
        gap: 1.5rem;
    }

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

    .nav-toggle {
        display: flex;
    }

    .hero-container {
        flex-direction: column;
        align-items: flex-start;
        gap: 3rem;
    }

    .hero-stat {
        align-items: flex-start;
        border-left: none;
        border-top: 3px solid var(--primary-red);
        padding: 2rem 0 0 0;
        width: 100%;
    }

    .stat-label {
        text-align: left;
    }

    .problems-grid,
    .about-grid,
    .contact-layout,
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .desktop-break {
        display: inline;
    }

    .timeline-item {
        grid-template-columns: 60px 1fr;
        gap: 1.5rem;
    }

    .timeline-item::before {
        font-size: 2rem;
    }

    .timeline-item::after {
        left: 25px;
    }

    .problem-item {
        grid-template-columns: 60px 1fr;
        gap: 1.5rem;
    }

    .problem-number {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    section {
        padding: 3rem 0;
    }

    .solution {
        padding: 3rem 0;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .footer-nav-area {
        flex-direction: column;
        gap: 1rem;
    }
}

