/* ===================================
   RESET & BASE STYLES
   =================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --brand-navy: #0f172a;
    --brand-blue: #1e40af;
    --brand-light: #f8fafc;
    --brand-accent: #f97316;
    --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;
    --white: #ffffff;
    --green-500: #22c55e;
    --green-600: #16a34a;
    --green-700: #15803d;
    --blue-50: #eff6ff;
    --blue-600: #2563eb;
    --blue-800: #1e40af;
    --orange-50: #fff7ed;
    --orange-600: #ea580c;
    --green-50: #f0fdf4;
    --green-100: #dcfce7;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--slate-50);
    color: var(--slate-800);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

@media (min-width: 768px) {
    .container {
        padding: 0 2rem;
    }
}

h1, h2, h3 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
}

.center {
    text-align: center;
}

.accent {
    color: var(--brand-accent);
}

/* ===================================
   NAVIGATION
   =================================== */
#navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 50;
    background: transparent;
    padding: 1rem 0;
    transition: all 0.3s ease;
}

#navbar.scrolled {
    background: var(--white);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    padding: 0.75rem 0;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 1.25rem;
    color: var(--brand-navy);
}

@media (min-width: 1024px) {
    .logo {
        font-size: 1.5rem;
    }
    #navbar:not(.scrolled) .logo {
        color: var(--white);
    }
}

.desktop-nav {
    display: none;
    align-items: center;
    gap: 2rem;
}

@media (min-width: 768px) {
    .desktop-nav {
        display: flex;
    }
}

.nav-links a {
    font-weight: 500;
    transition: color 0.3s;
    text-decoration: none;
}

#navbar:not(.scrolled) .nav-links a {
    color: var(--white);
}

#navbar.scrolled .nav-links a {
    color: var(--slate-700);
}

.nav-links a:hover {
    color: var(--brand-accent);
}

.btn-nav-cta {
    background: var(--brand-accent);
    color: var(--white);
    padding: 0.625rem 1.5rem;
    border-radius: 9999px;
    font-weight: 600;
    transition: all 0.3s;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.btn-nav-cta:hover {
    background: var(--orange-600);
    transform: scale(1.05);
}

.mobile-menu-btn {
    display: block;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

@media (min-width: 768px) {
    .mobile-menu-btn {
        display: none;
    }
}

.hamburger {
    display: block;
    width: 28px;
    height: 2px;
    background: var(--brand-navy);
    position: relative;
}

.hamburger::before,
.hamburger::after {
    content: '';
    position: absolute;
    width: 28px;
    height: 2px;
    background: var(--brand-navy);
    transition: all 0.3s;
}

.hamburger::before {
    top: -8px;
}

.hamburger::after {
    top: 8px;
}

#navbar:not(.scrolled) .hamburger,
#navbar:not(.scrolled) .hamburger::before,
#navbar:not(.scrolled) .hamburger::after {
    background: var(--white);
}

@media (min-width: 1024px) {
    #navbar:not(.scrolled) .hamburger,
    #navbar:not(.scrolled) .hamburger::before,
    #navbar:not(.scrolled) .hamburger::after {
        background: var(--brand-navy);
    }
}

.mobile-menu {
    display: none;
    flex-direction: column;
    background: var(--white);
    padding: 1rem;
    gap: 1rem;
    border-top: 1px solid var(--slate-100);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.mobile-menu.active {
    display: flex;
}

@media (min-width: 768px) {
    .mobile-menu {
        display: none !important;
    }
}

.mobile-menu a {
    color: var(--slate-800);
    font-weight: 500;
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--slate-100);
    text-decoration: none;
}

.btn-mobile-cta {
    background: var(--brand-accent);
    color: var(--white);
    text-align: center;
    padding: 0.75rem;
    border-radius: 0.5rem;
    font-weight: 700;
}

/* ===================================
   HERO SECTION
   =================================== */
.hero {
    position: relative;
    padding-top: 8rem;
    padding-bottom: 5rem;
    overflow: hidden;
    background: var(--brand-navy);
    color: var(--white);
}

@media (min-width: 768px) {
    .hero {
        padding-top: 12rem;
        padding-bottom: 8rem;
    }
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    opacity: 0.2;
    background-image: url('https://images.unsplash.com/photo-1551288049-bebda4e38f71?ixlib=rb-1.2.1&auto=format&fit=crop&w=1920&q=80');
    background-size: cover;
    background-position: center;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 0;
    background: linear-gradient(to right, var(--brand-navy), rgba(15, 23, 42, 0.95), rgba(30, 64, 175, 0.8));
}

.hero-container {
    display: grid;
    gap: 3rem;
    align-items: center;
    position: relative;
    z-index: 10;
}

@media (min-width: 768px) {
    .hero-container {
        grid-template-columns: 1fr 1fr;
    }
}

.hero-content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.1);
    padding: 0.375rem 1rem;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--brand-accent);
    backdrop-filter: blur(4px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    width: fit-content;
}

.hero h1 {
    font-size: 2.25rem;
    line-height: 1.2;
}

@media (min-width: 768px) {
    .hero h1 {
        font-size: 3rem;
    }
}

@media (min-width: 1024px) {
    .hero h1 {
        font-size: 3.75rem;
    }
}

.hero-subtitle {
    font-size: 1.125rem;
    color: var(--slate-300);
    max-width: 40rem;
}

.hero-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.hero-features li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.hero-features svg {
    color: var(--brand-accent);
    flex-shrink: 0;
    margin-top: 0.25rem;
}

.hero-features span {
    font-weight: 500;
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding-top: 1rem;
}

@media (min-width: 640px) {
    .hero-buttons {
        flex-direction: row;
    }
}

.btn-primary {
    background: var(--brand-accent);
    color: var(--white);
    padding: 1rem 2rem;
    border-radius: 9999px;
    font-weight: 700;
    text-align: center;
    text-decoration: none;
    transition: all 0.3s;
}

.btn-primary:hover {
    background: var(--orange-600);
    box-shadow: 0 0 20px rgba(249, 115, 22, 0.5);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    padding: 1rem 2rem;
    border-radius: 9999px;
    font-weight: 700;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(4px);
    text-align: center;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: all 0.3s;
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
}

.hero-form-wrapper {
    display: none;
    position: relative;
}

@media (min-width: 768px) {
    .hero-form-wrapper {
        display: block;
    }
}

.hero-form {
    background: var(--white);
    color: var(--slate-800);
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    position: relative;
    z-index: 10;
    border-top: 4px solid var(--brand-accent);
}

.hero-form h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.form-subtitle {
    font-size: 0.875rem;
    color: var(--slate-500);
    margin-bottom: 1.5rem;
}

.hero-form form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.hero-form input {
    width: 100%;
    padding: 0.75rem 1rem;
    background: var(--slate-50);
    border: 1px solid var(--slate-200);
    border-radius: 0.5rem;
    outline: none;
    transition: all 0.3s;
}

.hero-form input:focus {
    ring: 2px;
    ring-color: var(--brand-blue);
    border-color: var(--brand-blue);
    box-shadow: 0 0 0 2px rgba(30, 64, 175, 0.2);
}

.btn-form {
    width: 100%;
    background: var(--brand-blue);
    color: var(--white);
    font-weight: 700;
    padding: 0.75rem;
    border-radius: 0.5rem;
    border: none;
    cursor: pointer;
    transition: background 0.3s;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.btn-form:hover {
    background: var(--blue-800);
}

.form-disclaimer {
    font-size: 0.75rem;
    text-align: center;
    color: var(--slate-400);
}

.blob {
    position: absolute;
    width: 8rem;
    height: 8rem;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.3;
}

.blob-1 {
    background: var(--brand-accent);
    top: -2.5rem;
    right: -2.5rem;
}

.blob-2 {
    background: var(--blue-600);
    bottom: -2.5rem;
    left: -2.5rem;
}

/* ===================================
   SOCIAL PROOF
   =================================== */
.social-proof {
    padding: 3rem 0;
    background: var(--white);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 20;
    margin-top: -2rem;
    border-radius: 1.5rem 1.5rem 0 0;
}

@media (min-width: 768px) {
    .social-proof {
        border-radius: 0;
        margin-top: 0;
    }
}

.section-header {
    margin-bottom: 2.5rem;
}

.section-badge {
    color: var(--brand-blue);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-size: 0.875rem;
}

.accent-badge {
    color: var(--brand-accent);
}

.section-header h2 {
    font-size: 1.5rem;
    color: var(--brand-navy);
    margin-top: 0.25rem;
}

@media (min-width: 768px) {
    .section-header h2 {
        font-size: 1.875rem;
    }
}

.section-header p {
    color: var(--slate-600);
    font-size: 1.125rem;
    margin-top: 1rem;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

@media (min-width: 768px) {
    .stats-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.stat-card {
    text-align: center;
    padding: 1rem;
}

.stat-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 3rem;
    height: 3rem;
    background: var(--blue-50);
    color: var(--brand-blue);
    border-radius: 50%;
    margin-bottom: 0.75rem;
}

.stat-value {
    font-size: 1.875rem;
    font-weight: 700;
    color: var(--brand-navy);
    margin-bottom: 0.25rem;
}

@media (min-width: 768px) {
    .stat-value {
        font-size: 2.25rem;
    }
}

.stat-label {
    color: var(--slate-500);
    font-weight: 500;
    font-size: 0.875rem;
}

@media (min-width: 768px) {
    .stat-label {
        font-size: 1rem;
    }
}

/* ===================================
   SERVICES
   =================================== */
.services {
    padding: 5rem 0;
    background: var(--slate-50);
}

.services-grid {
    display: grid;
    gap: 2rem;
}

@media (min-width: 768px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.service-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 0.75rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    border: 1px solid var(--slate-100);
    transition: box-shadow 0.3s;
}

.service-card:hover {
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.service-icon {
    width: 3.5rem;
    height: 3.5rem;
    background: var(--brand-light);
    color: var(--brand-blue);
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: all 0.3s;
}

.service-card:hover .service-icon {
    background: var(--brand-blue);
    color: var(--white);
}

.service-card h3 {
    font-size: 1.25rem;
    color: var(--brand-navy);
    margin-bottom: 0.75rem;
}

.service-card p {
    color: var(--slate-600);
    line-height: 1.7;
}

.link-arrow {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--brand-blue);
    font-weight: 700;
    font-size: 1.125rem;
    text-decoration: none;
    transition: color 0.3s;
}

.link-arrow:hover {
    color: var(--brand-accent);
}

/* ===================================
   WHY CHOOSE US
   =================================== */
.why-choose {
    padding: 5rem 0;
    background: var(--brand-navy);
    color: var(--white);
}

.why-grid {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .why-grid {
        flex-direction: row;
    }
}

.why-content {
    flex: 1;
}

.why-content h2 {
    font-size: 1.875rem;
    margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
    .why-content h2 {
        font-size: 2.25rem;
    }
}

.why-desc {
    color: var(--slate-300);
    font-size: 1.125rem;
    margin-bottom: 2rem;
}

.reasons-grid {
    display: grid;
    gap: 1rem;
}

@media (min-width: 640px) {
    .reasons-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.reason {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: rgba(255, 255, 255, 0.05);
    padding: 1rem;
    border-radius: 0.5rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: background 0.3s;
}

.reason:hover {
    background: rgba(255, 255, 255, 0.1);
}

.reason svg {
    color: var(--brand-accent);
    flex-shrink: 0;
}

.reason span {
    font-weight: 500;
}

.why-image {
    flex: 1;
    position: relative;
}

.image-wrapper {
    position: relative;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    border: 4px solid rgba(255, 255, 255, 0.1);
}

.image-wrapper img {
    width: 100%;
    height: auto;
    object-fit: cover;
    opacity: 0.9;
    transition: transform 0.7s;
}

.image-wrapper:hover img {
    transform: scale(1.05);
}

.image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(15, 23, 42, 0.9), transparent);
    display: flex;
    align-items: flex-end;
    padding: 2rem;
}

.rating-badge {
    color: var(--white);
}

.rating-value {
    font-size: 2.25rem;
    font-weight: 700;
    color: var(--brand-accent);
    margin-bottom: 0.25rem;
}

.rating-text {
    font-weight: 500;
}

/* ===================================
   PROCESS
   =================================== */
.process {
    padding: 6rem 0;
    background: var(--white);
    position: relative;
    overflow: hidden;
}

.blob-bg {
    position: absolute;
    width: 24rem;
    height: 24rem;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.5;
    pointer-events: none;
}

.blob-bg-1 {
    background: var(--blue-50);
    top: 0;
    left: 25%;
}

.blob-bg-2 {
    background: var(--orange-50);
    bottom: 0;
    right: 25%;
}

.process-grid {
    display: grid;
    gap: 2rem;
    position: relative;
    z-index: 10;
}

@media (min-width: 768px) {
    .process-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .process-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.process-card {
    position: relative;
    background: var(--slate-50);
    border-radius: 1rem;
    padding: 2rem;
    border: 1px solid var(--slate-100);
    transition: all 0.3s;
}

.process-card:hover {
    border-color: var(--brand-blue);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.process-number {
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    font-size: 4rem;
    font-weight: 900;
    color: var(--slate-100);
    user-select: none;
    transition: color 0.3s;
}

.process-card:hover .process-number {
    color: var(--blue-50);
}

.process-content {
    position: relative;
    z-index: 10;
}

.process-icon {
    width: 3rem;
    height: 3rem;
    background: var(--white);
    border-radius: 0.5rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--brand-blue);
    margin-bottom: 1.5rem;
    transition: transform 0.3s;
}

.process-card:hover .process-icon {
    transform: scale(1.1);
}

.process-card h3 {
    font-size: 1.25rem;
    color: var(--brand-navy);
    margin-bottom: 0.75rem;
    transition: color 0.3s;
}

.process-card:hover h3 {
    color: var(--brand-blue);
}

.process-card p {
    color: var(--slate-600);
    line-height: 1.7;
}

.info-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background: var(--green-50);
    color: var(--green-700);
    padding: 0.75rem 1.5rem;
    border-radius: 9999px;
    border: 1px solid var(--green-100);
    font-weight: 500;
}

.info-badge svg {
    fill: var(--green-100);
    color: var(--green-600);
}

/* ===================================
   RESULTS
   =================================== */
.results {
    padding: 5rem 0;
    background: var(--slate-50);
}

.results-grid {
    display: grid;
    gap: 2rem;
    max-width: 80rem;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .results-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.result-card {
    background: var(--white);
    border-radius: 1rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.result-card.green {
    border-top: 4px solid var(--green-500);
}

.result-card.blue {
    border-top: 4px solid var(--blue-600);
}

.result-header {
    padding: 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.5rem;
}

.result-header h3 {
    font-size: 1.25rem;
    color: var(--brand-navy);
}

.result-tag {
    font-size: 0.75rem;
    font-weight: 700;
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    text-transform: uppercase;
}

.green-tag {
    background: var(--green-100);
    color: var(--green-700);
}

.blue-tag {
    background: var(--blue-50);
    color: #1d4ed8;
}

.result-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    text-align: center;
    padding: 0 2rem 2rem;
    border-bottom: 1px solid var(--slate-100);
}

.result-stat {
    padding: 0 1rem;
    border-right: 1px solid var(--slate-100);
}

.result-stat:last-child {
    border-right: none;
}

.result-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--slate-800);
}

.result-stat.highlight .result-value {
    color: var(--green-600);
}

.result-card.blue .result-stat.highlight .result-value {
    color: var(--blue-600);
}

.result-label {
    font-size: 0.75rem;
    color: var(--slate-500);
    margin-top: 0.25rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.result-footer {
    padding: 1rem 2rem;
    background: var(--slate-50);
    border-top: 1px solid var(--slate-100);
    font-size: 0.875rem;
    color: var(--slate-500);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.result-card.green .result-footer svg {
    color: var(--green-500);
}

.result-card.blue .result-footer svg {
    color: var(--blue-600);
}

.btn-dark {
    display: inline-block;
    background: var(--brand-navy);
    color: var(--white);
    font-weight: 700;
    padding: 0.75rem 2rem;
    border-radius: 9999px;
    text-decoration: none;
    transition: all 0.3s;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.btn-dark:hover {
    background: var(--slate-800);
}

/* ===================================
   INDUSTRIES
   =================================== */
.industries {
    padding: 4rem 0;
    background: var(--white);
    border-bottom: 1px solid var(--slate-100);
}

.industries-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

@media (min-width: 768px) {
    .industries-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 1024px) {
    .industries-grid {
        grid-template-columns: repeat(6, 1fr);
    }
}

.industry-tag {
    padding: 1rem;
    background: var(--slate-50);
    border-radius: 0.5rem;
    color: var(--slate-700);
    font-weight: 600;
    border: 1px solid var(--slate-100);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    cursor: default;
    transition: all 0.3s;
}

.industry-tag:hover {
    border-color: var(--brand-blue);
    color: var(--brand-blue);
}

.industry-tag svg {
    color: var(--brand-accent);
    transition: color 0.3s;
}

.industry-tag:hover svg {
    color: var(--brand-blue);
}

/* ===================================
   TESTIMONIALS
   =================================== */
.testimonials {
    padding: 5rem 0;
    background: var(--brand-light);
}

.testimonials-grid {
    display: grid;
    gap: 2rem;
}

@media (min-width: 768px) {
    .testimonials-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.testimonial-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 0.75rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    border: 1px solid var(--slate-100);
}

.stars {
    color: #facc15;
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.testimonial-text {
    color: var(--slate-600);
    margin-bottom: 1.5rem;
    font-style: italic;
}

.author-name {
    font-weight: 700;
    color: var(--brand-navy);
}

.author-role {
    font-size: 0.75rem;
    color: var(--slate-500);
    text-transform: uppercase;
}

/* ===================================
   CONTACT FORM
   =================================== */
.contact-section {
    padding: 5rem 0;
    background: var(--brand-navy);
    position: relative;
    overflow: hidden;
}

.contact-bg {
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: rgba(30, 64, 175, 0.3);
    transform: skewX(12deg) translateX(25%);
}

.contact-wrapper {
    max-width: 64rem;
    margin: 0 auto;
    background: var(--white);
    border-radius: 1rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    position: relative;
    z-index: 10;
}

@media (min-width: 768px) {
    .contact-wrapper {
        flex-direction: row;
    }
}

.contact-info {
    background: linear-gradient(135deg, var(--brand-blue), var(--blue-800));
    padding: 2.5rem;
    color: var(--white);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

@media (min-width: 768px) {
    .contact-info {
        width: 41.666667%;
    }
}

.contact-info h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.contact-info > p {
    opacity: 0.9;
    margin-bottom: 2rem;
}

.contact-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    font-size: 0.875rem;
}

.contact-features li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.contact-features svg {
    color: var(--brand-accent);
}

.contact-form-wrapper {
    padding: 2.5rem;
}

@media (min-width: 768px) {
    .contact-form-wrapper {
        width: 58.333333%;
    }
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    display: block;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--slate-700);
    margin-bottom: 0.25rem;
}

.required {
    color: #ef4444;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 0.5rem 1rem;
    border: 1px solid var(--slate-300);
    border-radius: 0.5rem;
    outline: none;
    transition: all 0.3s;
}

.form-group input:focus,
.form-group select:focus {
    border-color: var(--brand-blue);
    box-shadow: 0 0 0 2px rgba(30, 64, 175, 0.2);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.btn-submit {
    width: 100%;
    background: var(--brand-accent);
    color: var(--white);
    font-weight: 700;
    padding: 0.75rem;
    border-radius: 0.5rem;
    border: none;
    cursor: pointer;
    transition: background 0.3s;
    margin-top: 0.5rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.btn-submit:hover {
    background: var(--orange-600);
}

/* ===================================
   FAQ
   =================================== */
.faq {
    padding: 5rem 0;
    background: var(--slate-50);
}

.faq-container {
    max-width: 48rem;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    background: var(--white);
    border-radius: 0.5rem;
    border: 1px solid var(--slate-200);
    overflow: hidden;
}

.faq-question {
    width: 100%;
    padding: 1rem 1.5rem;
    text-align: left;
    font-weight: 700;
    color: var(--slate-800);
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: none;
    border: none;
    cursor: pointer;
    outline: none;
}

.faq-icon {
    color: var(--brand-blue);
    font-size: 1.5rem;
    transition: transform 0.3s;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    padding: 0 1.5rem 1rem;
    color: var(--slate-600);
    border-top: 1px solid var(--slate-100);
    padding-top: 1rem;
}

/* ===================================
   FINAL CTA
   =================================== */
.final-cta {
    padding: 4rem 0;
    background: var(--blue-600);
    color: var(--white);
    text-align: center;
}

.final-cta h2 {
    font-size: 1.875rem;
    margin-bottom: 2rem;
}

@media (min-width: 768px) {
    .final-cta h2 {
        font-size: 2.25rem;
    }
}

.cta-buttons {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 1rem;
}

@media (min-width: 640px) {
    .cta-buttons {
        flex-direction: row;
    }
}

.btn-cta-white {
    background: var(--white);
    color: var(--blue-600);
    padding: 0.75rem 2rem;
    border-radius: 9999px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    text-decoration: none;
    transition: all 0.3s;
}

.btn-cta-white:hover {
    background: var(--slate-100);
}

.btn-cta-green {
    background: var(--green-500);
    color: var(--white);
    padding: 0.75rem 2rem;
    border-radius: 9999px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    text-decoration: none;
    transition: all 0.3s;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.btn-cta-green:hover {
    background: var(--green-600);
}

.btn-cta-dark {
    background: var(--brand-navy);
    color: var(--white);
    padding: 0.75rem 2rem;
    border-radius: 9999px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s;
}

.btn-cta-dark:hover {
    background: var(--slate-900);
}

/* ===================================
   FOOTER
   =================================== */
.footer {
    background: var(--brand-navy);
    color: var(--slate-400);
    padding: 3rem 0;
    border-top: 1px solid var(--slate-800);
}

.footer-container {
    text-align: center;
}

.footer-content {
    margin-bottom: 1.5rem;
}

.footer-content h3 {
    color: var(--white);
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
    font-size: 0.875rem;
    font-weight: 500;
}

.footer-links a {
    color: var(--slate-400);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--white);
}

.footer-copyright {
    font-size: 0.875rem;
}

/* ===================================
   FLOATING ELEMENTS
   =================================== */
.whatsapp-float {
    position: fixed;
    bottom: 5rem;
    right: 1rem;
    background: #25D366;
    color: var(--white);
    padding: 0.75rem;
    border-radius: 50%;
    box-shadow: 0 10px 15px -3px rgba(37, 211, 102, 0.4);
    z-index: 40;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

@media (min-width: 768px) {
    .whatsapp-float {
        bottom: 2rem;
        right: 2rem;
        padding: 1rem;
    }
}

.whatsapp-float:hover {
    background: #20bd5a;
    transform: scale(1.1);
}

.whatsapp-float svg {
    fill: rgba(255, 255, 255, 0.2);
}

.mobile-sticky-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 50;
    display: flex;
    height: 4rem;
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.15);
}

@media (min-width: 768px) {
    .mobile-sticky-cta {
        display: none;
    }
}

.mobile-cta-call {
    flex: 1;
    background: var(--white);
    color: var(--brand-navy);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-top: 1px solid var(--slate-200);
    text-decoration: none;
    gap: 0.5rem;
    transition: background 0.3s;
}

.mobile-cta-call:active {
    background: var(--slate-50);
}

.mobile-cta-call svg {
    color: var(--blue-600);
}

.mobile-cta-call span {
    font-weight: 700;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.mobile-cta-audit {
    flex: 1.4;
    background: linear-gradient(to right, var(--brand-accent), var(--orange-600));
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    text-decoration: none;
}

.shimmer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.3), transparent);
    transform: skewX(-12deg);
    animation: shimmer 3s infinite;
    pointer-events: none;
}

@keyframes shimmer {
    0% {
        transform: translateX(-100%) skewX(-15deg);
    }
    50%, 100% {
        transform: translateX(200%) skewX(-15deg);
    }
}

.mobile-cta-content {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    position: relative;
    z-index: 10;
}

.mobile-cta-content svg {
    background: rgba(255, 255, 255, 0.2);
    padding: 0.25rem;
    border-radius: 50%;
}

.mobile-cta-content span {
    font-weight: 700;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* ===================================
   EXIT POPUP
   =================================== */
.exit-popup {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 60;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    backdrop-filter: blur(4px);
}

.exit-popup.active {
    display: flex;
    animation: fadeIn 0.3s;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.exit-popup-content {
    background: var(--white);
    border-radius: 0.75rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    max-width: 28rem;
    width: 100%;
    padding: 2rem;
    position: relative;
    transform: scale(1);
    animation: scaleIn 0.3s;
}

@keyframes scaleIn {
    from {
        transform: scale(0.9);
    }
    to {
        transform: scale(1);
    }
}

.exit-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    color: var(--slate-400);
    cursor: pointer;
    padding: 0.25rem;
}

.exit-close:hover {
    color: var(--slate-600);
}

.exit-text {
    text-align: center;
}

.exit-text h3 {
    font-size: 1.5rem;
    color: var(--brand-navy);
    margin-bottom: 0.5rem;
}

.exit-text p {
    color: var(--slate-600);
    margin-bottom: 1.5rem;
}

.btn-exit-cta {
    display: block;
    width: 100%;
    background: var(--brand-blue);
    color: var(--white);
    font-weight: 700;
    padding: 0.75rem;
    border-radius: 0.5rem;
    margin-bottom: 0.75rem;
    text-decoration: none;
    transition: background 0.3s;
}

.btn-exit-cta:hover {
    background: var(--blue-800);
}

.btn-exit-decline {
    font-size: 0.875rem;
    color: var(--slate-400);
    background: none;
    border: none;
    cursor: pointer;
    text-decoration: underline;
}

.btn-exit-decline:hover {
    color: var(--slate-600);
}

/* ===================================
   UTILITY
   =================================== */
body {
    padding-bottom: 4rem;
}

@media (min-width: 768px) {
    body {
        padding-bottom: 0;
    }
}
