/* Reset e Variáveis */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* CTA Buttons (hero/section) */
.cta-buttons-modern {
    display: flex;
    gap: 1rem;
    justify-content: center;
    align-items: center;
    margin-top: 1.25rem;
}

.cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.9rem 1.6rem;
    border-radius: 12px;
    font-weight: 700;
    text-decoration: none;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    border: 1px solid rgba(255,255,255,0.06);
    color: var(--color-white);
    background: transparent;
}

.cta-btn svg { width: 20px; height: 20px; color: inherit; }

.cta-btn--primary {
    background: linear-gradient(135deg, var(--color-primary) 0%, #ffb347 100%);
    box-shadow: 0 14px 40px rgba(255,140,0,0.14);
    border-color: transparent;
    color: #fff;
}

.cta-btn--secondary {
    /* make secondary match primary (orange) as requested */
    background: linear-gradient(135deg, var(--color-primary) 0%, #ffb347 100%);
    box-shadow: 0 10px 30px rgba(255,140,0,0.12);
    border-color: transparent;
    color: #fff;
}

.cta-btn:hover { transform: translateY(-4px); }

/* Page break / section transition styles */
.page-break {
    width: 100%;
    display: block;
    height: 96px;
    position: relative;
    border-top: 3px solid rgba(255,255,255,0.15);
    border-bottom: 3px solid rgba(0,0,0,0.2);
}

.page-break--alt {
    background: linear-gradient(90deg, rgba(255,140,0,0.95), rgba(255,160,60,0.92));
    box-shadow: inset 0 -8px 24px rgba(10,31,77,0.12);
    border-top-color: rgba(255,180,80,0.4);
    border-bottom-color: rgba(200,100,0,0.3);
}

.page-break--blue {
    background: linear-gradient(90deg, rgba(91,127,184,0.92), rgba(120,150,200,0.88));
    box-shadow: inset 0 -8px 24px rgba(10,31,77,0.15);
    border-top-color: rgba(150,180,220,0.4);
    border-bottom-color: rgba(60,90,140,0.3);
}

.page-break--green {
    background: linear-gradient(90deg, rgba(76,175,80,0.92), rgba(102,187,106,0.88));
    box-shadow: inset 0 -8px 24px rgba(10,31,77,0.12);
    border-top-color: rgba(120,200,120,0.4);
    border-bottom-color: rgba(50,130,50,0.3);
}

.page-break--purple {
    background: linear-gradient(90deg, rgba(156,39,176,0.92), rgba(171,71,188,0.88));
    box-shadow: inset 0 -8px 24px rgba(10,31,77,0.12);
    border-top-color: rgba(186,104,200,0.4);
    border-bottom-color: rgba(106,27,154,0.3);
}

@media (max-width: 900px) {
    .page-break { height: 72px; }
}


:root {
    color-scheme: light only;
    --color-primary: #ff8c00;
    --color-primary-dark: #e67e00;
    --color-bg-dark-blue: #1a2d5c;
    --color-bg-light-blue: #5b7fb8;
    --color-text-dark: #ffffff;
    --color-text-light: rgba(255, 255, 255, 0.8);
    --color-white: #ffffff;
    --color-gray: rgba(255, 255, 255, 0.1);
    --font-primary: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --transition-smooth: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* Force light mode - prevent OS dark theme from affecting colors */
@media (prefers-color-scheme: dark) {
    :root {
        color-scheme: light only;
        --color-primary: #ff8c00;
        --color-primary-dark: #e67e00;
        --color-bg-dark-blue: #1a2d5c;
        --color-bg-light-blue: #5b7fb8;
        --color-text-dark: #ffffff;
        --color-text-light: rgba(255, 255, 255, 0.8);
        --color-white: #ffffff;
        --color-gray: rgba(255, 255, 255, 0.1);
    }

    html, body {
        background-color: #1a2d5c !important;
        color: #ffffff !important;
    }

    img, svg, video {
        filter: none !important;
    }

    input, select, textarea, button {
        color-scheme: light;
        background-color: inherit;
        color: inherit;
    }

    /* Force form elements to keep light styling */
    .form-group-contact input,
    .form-group-contact select,
    .form-group-contact textarea,
    .form-input,
    .form-select,
    .form-textarea {
        background-color: transparent !important;
        color: #0a1f4d !important;
    }

    /* Force contact section light background */
    .contact-section,
    .contact-form-card {
        background: linear-gradient(180deg, #f8f9fc 0%, #ffffff 50%, #f8f9fc 100%) !important;
    }

    /* Force footer light background */
    .site-footer,
    .footer-top,
    .footer-bottom {
        background: linear-gradient(180deg, #f9f9f9, #ffffff) !important;
        color: #1a2d5c !important;
    }

    .footer-col,
    .footer-col a,
    .footer-col p,
    .footer-desc,
    .footer-bottom-inner,
    .copyright {
        color: rgba(0,0,0,0.75) !important;
    }

    /* Dropdown always white background */
    .dropdown-content {
        background: #ffffff !important;
        border-color: rgba(0,0,0,0.1) !important;
    }

    .dropdown-content a {
        color: #1a2d5c !important;
        background: transparent !important;
    }

    .dropdown-content a svg {
        stroke: #1a2d5c !important;
    }

    .dropdown-content a:hover {
        background: rgba(255, 140, 0, 0.1) !important;
        color: #ff8c00 !important;
    }

    .dropdown-content a:hover svg {
        stroke: #ff8c00 !important;
    }

    /* Header stays dark */
    .header {
        background: linear-gradient(135deg, rgba(15,26,53,0.98) 0%, rgba(26,45,92,0.95) 50%, rgba(36,59,110,0.98) 100%) !important;
    }

    /* Nav links: remove boxed dark background on desktop. Keep dark background only for mobile open menu in prefers-color-scheme */
    @media (max-width: 900px) {
        .nav-links.open {
            background: linear-gradient(135deg, rgba(26,45,92,1), rgba(15,26,53,1)) !important;
        }
    }

    /* Hero section stays dark */
    .hero-modern {
        background: linear-gradient(180deg, #0f1a35 0%, #1a2d5c 60%, #1e3a6e 100%) !important;
    }

    /* How it works section */
    .how-it-works {
        background: linear-gradient(180deg, #1e3a6e 0%, #0f1a35 100%) !important;
    }

    /* Solutions section */
    .solutions-section {
        background: linear-gradient(180deg, #0f1a35 0%, #1a2d5c 100%) !important;
    }

    /* Benefits section */
    .benefits-section {
        background: linear-gradient(180deg, #1a2d5c 0%, #0f1a35 100%) !important;
    }

    /* Stats section */
    .stats-section {
        background: transparent !important;
    }

    /* Cards and items */
    .solution-card,
    .stat-item {
        background: rgba(255, 255, 255, 0.05) !important;
        border-color: rgba(255, 255, 255, 0.1) !important;
    }
    
    .step-card {
        background: transparent !important;
    }

    /* Text colors in dark sections */
    .section-title,
    .section-desc,
    .step-content h3,
    .step-content p,
    .solution-title,
    .solution-desc,
    .stat-number,
    .stat-text,
    .hero-modern-title,
    .hero-modern-desc,
    .title-line {
        color: #ffffff !important;
    }

    /* Orange elements stay orange */
    .section-tag,
    .hero-badge,
    .text-gradient,
    .step-number span {
        color: #ff8c00 !important;
        -webkit-text-fill-color: #ff8c00 !important;
    }

    /* Contact section - force light */
    .contact-title,
    .contact-subtitle {
        color: #1a2d5c !important;
    }

    .form-group-contact label {
        color: #0a1f4d !important;
    }
}

/* Brand font import (used only for the site name) */
@import url('https://fonts.googleapis.com/css2?family=Rubik:wght@500;700;800&display=swap');

body {
    font-family: var(--font-primary);
    color: var(--color-text-dark);
    background: var(--color-bg-dark-blue);
    overflow-x: hidden;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body.nav-open {
    overflow: hidden;
}

/* ==================== HEADER ==================== */

.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, rgba(15,26,53,0.98) 0%, rgba(26,45,92,0.95) 50%, rgba(36,59,110,0.98) 100%);
    z-index: 1000;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.4), 0 1px 0 rgba(255,140,0,0.1) inset;
    -webkit-backdrop-filter: blur(12px);
    backdrop-filter: blur(12px);
    overflow: visible;
    border-bottom: 2px solid rgba(255,140,0,0.25);
}

/* Header background effects */
.header::before {
    content: '';
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(ellipse 600px 300px at 10% 50%, rgba(255,140,0,0.08) 0%, transparent 60%),
        radial-gradient(ellipse 400px 200px at 90% 50%, rgba(91,127,184,0.1) 0%, transparent 60%);
    pointer-events: none;
    z-index: -1;
}

/* Fallback selectors to ensure the effect applies across pages using different header/nav names */
header, nav, .navbar, .site-header {
    -webkit-backdrop-filter: blur(12px);
    backdrop-filter: blur(12px);
}

@keyframes slideDownHeader {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.nav {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.logo {
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--color-white);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    letter-spacing: -1px;
}

.logo {
    display: flex;
    align-items: center;
}

.logo-img {
    height: 56px;
    width: auto;
    display: block;
    object-fit: contain;
}

.footer-logo-img {
    width: 120px;
    height: auto;
    margin-right: 0.6rem;
    vertical-align: middle;
}

.visually-hidden {
    position: absolute !important;
    height: 1px; width: 1px;
    overflow: hidden; clip: rect(1px, 1px, 1px, 1px);
    white-space: nowrap; border: 0; padding: 0; margin: -1px;
}

/* Apply the brand font only to the company name */
.brand-name {
    font-family: 'Rubik', var(--font-primary);
    font-weight: 800;
    color: var(--color-white);
    letter-spacing: -0.6px;
}

.footer-logo .brand-name {
    color: var(--color-bg-dark-blue);
}

.logo-icon {
    font-size: 1.5rem;
    color: var(--color-primary);
    font-weight: 900;
}

.logo-text span.mini {
    color: var(--color-primary);
}

.logo-text {
    animation: fadeInLeft 0.8s ease-out;
}

.logo-green {
    color: var(--color-primary);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 0.5rem;
    align-items: center;
}

/* Remove dark background behind nav items on desktop (keep header gradient, but nav items should not have their own dark panel) */
@media (min-width: 901px) {
    /* Ensure nav is transparent even if it has .open (leftover from mobile) */
    .header .nav-links,
    .header .nav-links.open {
        background: transparent !important;
        padding: 0 !important; /* avoid extra inner padding creating a rounded panel */
        border-radius: 0 !important;
        box-shadow: none !important;
        border: none !important;
    }

    /* Ensure individual items don't carry a dark bg on desktop (avoid overriding CTA) */
    .header .nav-links li,
    .header .nav-links li .nav-link,
    .header .nav-links li .dropdown-btn:not(.nav-cta-btn) {
        background: transparent !important;
    }

    /* Reinforce CTA orange style on desktop in case previous rules overrode it */
    .header .nav-links .nav-cta-btn {
        background: linear-gradient(135deg, var(--color-primary) 0%, #ffb347 100%) !important;
        box-shadow: 0 6px 20px rgba(255,140,0,0.4) !important;
        color: #fff !important;
    }
}

/* On mobile when the panel is opened, show a dark, fully-opaque background for the mobile menu */
@media (max-width: 900px) {
    .header .nav-links {
        background: transparent; /* base mobile state */
        padding: 0;
    }

    .nav-links.open {
        display: block;
        position: absolute;
        top: 72px;
        right: 1rem;
        left: 1rem;
        background: linear-gradient(135deg, rgba(15,26,53,1), rgba(13,20,42,1)); /* fully opaque */
        padding: 1rem;
        border-radius: 12px;
        box-shadow: 0 20px 40px rgba(0,0,0,0.45);
        z-index: 1500; /* ensure it sits above content */
        border: 1px solid rgba(255,255,255,0.04);
        -webkit-backdrop-filter: none;
        backdrop-filter: none;
    }
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 6px;
    width: 42px;
    height: 42px;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.25);
    background: rgba(255, 255, 255, 0.06);
    cursor: pointer;
    transition: var(--transition-smooth);
    padding: 0;
}

.mobile-toggle:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.35);
}

.mobile-toggle-bar {
    width: 18px;
    height: 2px;
    border-radius: 999px;
    background: #fff;
    transition: transform 0.28s ease, opacity 0.28s ease;
}

.mobile-toggle[aria-expanded="true"] .mobile-toggle-bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.mobile-toggle[aria-expanded="true"] .mobile-toggle-bar:nth-child(2) {
    opacity: 0;
}

.mobile-toggle[aria-expanded="true"] .mobile-toggle-bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* Nav Link Styles with Icons */
.nav-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    color: var(--color-white);
    font-weight: 500;
    font-size: 0.9rem;
    padding: 0.6rem 1rem;
    border-radius: 10px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    background: transparent;
    border: 1px solid transparent;
}

.nav-link .nav-icon {
    width: 18px;
    height: 18px;
    stroke: currentColor;
    transition: all 0.3s ease;
    opacity: 0.7;
}

.nav-link:hover {
    color: var(--color-primary);
    background: rgba(255, 140, 0, 0.08);
    border-color: rgba(255, 140, 0, 0.15);
}

.nav-link:hover .nav-icon {
    opacity: 1;
    transform: scale(1.1);
}

/* Active State */
.nav-link.active {
    color: var(--color-primary);
    background: rgba(255, 140, 0, 0.12);
    border-color: rgba(255, 140, 0, 0.25);
}

.nav-link.active .nav-icon {
    opacity: 1;
}

/* Legacy link styles - keep for backward compatibility */
.nav-links > li > a:not(.nav-link) {
    text-decoration: none;
    color: var(--color-white);
    font-weight: 500;
    font-size: 0.95rem;
    transition: var(--transition-smooth);
    position: relative;
}

.nav-links > li > a:not(.nav-link):hover {
    color: var(--color-primary);
}

.dropdown {
    position: relative;
}

.dropdown-btn {
    background: none;
    border: none;
    color: var(--color-white);
    font-weight: 500;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 0.6rem 1rem;
    border-radius: 10px;
    font-family: var(--font-primary);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    border: 1px solid transparent;
}

/* CTA Button Style */
.nav-cta-btn {
    background: linear-gradient(135deg, var(--color-primary) 0%, #e67e00 100%);
    color: #fff !important;
    padding: 0.7rem 1.25rem;
    border-radius: 12px;
    font-weight: 600;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(255, 140, 0, 0.3);
}

.nav-cta-btn .nav-icon {
    width: 18px;
    height: 18px;
    stroke: #fff;
}

.nav-cta-btn .cta-pulse {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    animation: ctaPulseAnim 2s ease-in-out infinite;
    pointer-events: none;
}

.form-grid-pattern {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: min(1200px, 92%);
    height: 100%;
    background-image: 
        linear-gradient(rgba(0,0,0,0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0,0,0,0.02) 1px, transparent 1px);
    background-size: 60px 60px;
    background-position: center top;
    mask-image: radial-gradient(ellipse 80% 60% at 50% 40%, black 20%, transparent 70%);
    -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 40%, black 20%, transparent 70%);
    pointer-events: none;
}

@keyframes ctaPulseAnim {
    0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0; }
    50% { transform: translate(-50%, -50%) scale(1.05); opacity: 1; }
}

.nav-cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 140, 0, 0.4);
    background: linear-gradient(135deg, #ffab40 0%, var(--color-primary) 100%);
}

.nav-cta-btn.active {
    box-shadow: 0 6px 20px rgba(255, 140, 0, 0.5);
    position: relative;
}

.nav-cta-btn.active::before {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 3px;
    background: #fff;
    border-radius: 3px;
    box-shadow: 0 2px 8px rgba(255, 255, 255, 0.5);
}

.dropdown-arrow {
    font-size: 0.55rem;
    transition: transform 0.3s ease-out;
    display: inline-block;
    opacity: 0.8;
}

.dropdown-btn:hover:not(.nav-cta-btn) {
    color: var(--color-primary);
    background: rgba(255, 140, 0, 0.1);
}

.dropdown-btn.active .dropdown-arrow {
    transform: rotate(180deg);
}

.dropdown-content {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: var(--color-white);
    border-radius: 12px;
    /* define item height and remove top/bottom padding so a full-width divider can be drawn */
    --dropdown-item-h: 48px;
    padding: 0;
    min-width: 200px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    margin-top: 6px; /* reduced gap to avoid mouse-gap when moving from button to menu */
    opacity: 0;
    visibility: hidden;
    transform: translateX(-50%) translateY(-10px);
    transition: all 0.28s ease-out;
    transition-delay: 0.12s; /* small delay before hiding to allow mouse transit */
    z-index: 99999 !important;
    overflow: hidden;
    box-sizing: border-box;
    background-clip: padding-box;
}

.dropdown-content.show {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

/* Open dropdown on hover and when focused (keyboard) for accessibility */
.dropdown:hover .dropdown-content,
.dropdown:focus-within .dropdown-content {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
    transition-delay: 0.20s; /* delay before opening to avoid accidental triggers */
}

.dropdown:hover .dropdown-btn,
.dropdown:focus-within .dropdown-btn {
    color: var(--color-primary);
    background: rgba(255, 140, 0, 0.06);
}

/* full-width orange divider placed just below the first item */
.dropdown-content::after {
    content: '';
    position: absolute;
    /* full-width divider: span across the internal width and be clipped by rounded corners */
    left: 0;
    right: 0;
    height: 2px;
    background: #e6e6e6; /* light gray */
    top: calc(var(--dropdown-item-h) - 1px);
    border-radius: 0;
    pointer-events: none;
    z-index: 2;
}

.dropdown-content a {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    height: var(--dropdown-item-h);
    padding: 0 1.25rem;
    color: var(--color-bg-dark-blue);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    transition: all 0.2s ease-out;
}

.dropdown-content a svg {
    width: 18px;
    height: 18px;
    stroke: var(--color-bg-dark-blue);
    opacity: 0.6;
    transition: all 0.2s ease;
    flex-shrink: 0;
}

.dropdown-content a:first-child {
    border-radius: 12px 12px 0 0;
}

.dropdown-content a:last-child {
    border-radius: 0 0 12px 12px;
}

.dropdown-content a:hover {
    background: rgba(255, 140, 0, 0.1);
    color: var(--color-primary);
    padding-left: 1.5rem;
}

.dropdown-content a:hover svg {
    stroke: var(--color-primary);
    opacity: 1;
    transform: scale(1.1);
}

.dropdown-content a.active {
    background: rgba(255, 140, 0, 0.15);
    color: var(--color-primary);
}

.dropdown-content a.active svg {
    stroke: var(--color-primary);
    opacity: 1;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.icon-btn {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    color: var(--color-white);
    transition: var(--transition-smooth);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.icon-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: scale(1.1);
}

.btn-franqueado {
    background: var(--color-primary);
    color: var(--color-white);
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 30px;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: var(--transition-smooth);
    white-space: nowrap;
}

.btn-franqueado:hover {
    background: var(--color-primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 140, 0, 0.3);
}

/* ==================== HERO SECTION ==================== */

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

.hero-container {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    max-width: 1600px;
    margin: 0 auto;
    width: 100%;
    min-height: calc(100vh - 80px);
    position: relative;
}

/* Left Section */
.hero-left {
    background: var(--color-bg-dark-blue);
    padding: 4rem 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    overflow: hidden;
    animation: fadeInLeft 1s ease-out;
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.pattern-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: radial-gradient(circle, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
    background-size: 30px 30px;
    opacity: 0.5;
    animation: patternMove 20s linear infinite;
}

@keyframes patternMove {
    0% {
        background-position: 0 0;
    }
    100% {
        background-position: 30px 30px;
    }
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 600px;
}

.hero-title {
    font-size: 4rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: var(--color-white);
    animation: fadeInUp 1s ease-out 0.2s both;
}

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

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--color-text-light);
    margin-bottom: 2.5rem;
    line-height: 1.6;
    animation: fadeInUp 1s ease-out 0.4s both;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease-out 0.6s both;
}

.btn {
    padding: 1rem 2rem;
    border: none;
    border-radius: 30px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-smooth);
    font-family: var(--font-primary);
}

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

.btn-primary:hover {
    background: var(--color-primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 140, 0, 0.4);
}

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

.btn-secondary:hover {
    background: var(--color-primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(74, 111, 165, 0.4);
}

/* ==================== FOOTER ==================== */

.site-footer {
    background: #ffffff;
    color: rgba(0,0,0,0.75);
    font-size: 0.95rem;
    border-top: 4px solid rgba(10,31,77,0.06);
    position: relative;
    z-index: 0;
}

.footer-top {
    padding: 3.5rem 2rem;
}

.footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 2.5rem;
    align-items: start;
}

.footer-col h4 {
    margin-bottom: 1rem;
    color: var(--color-bg-dark-blue);
    font-weight: 700;
}

.footer-logo {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--color-bg-dark-blue);
}

.footer-logo .mini {
    color: var(--color-primary);
}

.footer-desc {
    margin-top: 0.75rem;
    color: rgba(0,0,0,0.6);
    max-width: 320px;
    line-height: 1.6;
}

.footer-col ul {
    list-style: none;
    padding: 0;
}

.footer-col ul li {
    margin-bottom: 0.8rem;
}

.footer-col a {
    color: rgba(0,0,0,0.75);
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-col a:hover {
    color: var(--color-primary);
}

.footer-bottom {
    border-top: 1px solid rgba(0,0,0,0.06);
    background: linear-gradient(180deg, rgba(250,250,250,1), rgba(245,245,245,1));
}

.footer-bottom-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    font-size: 0.85rem;
    color: rgba(0,0,0,0.6);
}

.footer-links a {
    margin-left: 1rem;
    color: rgba(0,0,0,0.6);
    text-decoration: none;
}

@media (max-width: 900px) {
    .footer-inner {
        grid-template-columns: 1fr;
    }
    .footer-bottom-inner {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
}

/* Footer Social Links */
.footer-socials {
    display: flex;
    gap: 0.75rem;
    margin-top: 1rem;
}

.footer-social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(10, 31, 77, 0.08);
    color: var(--color-bg-dark-blue);
    transition: all 0.3s ease;
}

.footer-social-link svg {
    width: 20px;
    height: 20px;
}

.footer-social-link:hover {
    background: var(--color-primary);
    color: #fff;
    transform: translateY(-3px);
}

/* Social Icon Image (WhatsApp PNG) */
.social-icon-img {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.social-link .social-icon-img,
.footer-social-link .social-icon-img {
    width: 40px;
    height: 40px;
}

/* Center Section - Market Units */

/* Right Section */
 .hero-right {
    padding: 4rem 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
    animation: fadeInRight 1s ease-out;
    background: radial-gradient(circle at 40% 30%, rgba(255, 255, 255, 0.06), transparent 45%), linear-gradient(180deg, rgba(91, 127, 184, 0.45) 0%, rgba(26, 45, 92, 0.4) 100%);
    border-radius: 18px;
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.placeholder-panel {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.placeholder-box {
    width: 380px;
    height: 280px;
    border: 3px dashed rgba(255, 255, 255, 0.4);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.04);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1.2rem;
    color: var(--color-white);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.05), 0 18px 40px rgba(0, 0, 0, 0.18);
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.placeholder-dots {
    display: flex;
    gap: 0.5rem;
}

.placeholder-dots span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.35);
    animation: pulse 1.4s ease-in-out infinite;
}

.placeholder-dots span:nth-child(2) { animation-delay: 0.2s; }
.placeholder-dots span:nth-child(3) { animation-delay: 0.4s; }

.placeholder-label {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.75);
    text-align: center;
    line-height: 1.5;
}
/* .hero-right {
    padding: 4rem 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
    animation: fadeInRight 1s ease-out;
    background: radial-gradient(circle at 40% 30%, rgba(255, 255, 255, 0.06), transparent 45%), linear-gradient(180deg, rgba(91, 127, 184, 0.45) 0%, rgba(26, 45, 92, 0.4) 100%);
    border-radius: 18px;
} */

/* @keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
} */

/* .feature-panel {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    position: relative;
    z-index: 2;
    padding: 2.5rem 2rem;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.18);
} 

.feature-visual {
    position: relative;
    width: 160px;
    height: 160px;
    animation: fadeInUp 1s ease-out 0.3s both;
}

.visual-element {
    width: 100%;
    height: 100%;
    border: 4px solid var(--color-white);
    border-radius: 50%;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
    backdrop-filter: blur(4px);
}

.visual-dot {
    position: absolute;
    width: 12px;
    height: 12px;
    background: var(--color-primary);
    border-radius: 50%;
    animation: float-dot 4s ease-in-out infinite;
}

.dot-1 {
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    animation-delay: 0s;
    --tx: 0px;
    --ty: -12px;
}

.dot-2 {
    bottom: -10px;
    right: 20px;
    animation-delay: 0.6s;
    --tx: 8px;
    --ty: 10px;
}

.dot-3 {
    bottom: 30px;
    left: -10px;
    animation-delay: 1.2s;
    --tx: -10px;
    --ty: 6px;
}

@keyframes float-dot {
    0%, 100% {
        transform: translate(0, 0);
        opacity: 0.6;
    }
    50% {
        transform: translate(var(--tx, 0), var(--ty, 0));
        opacity: 1;
    }
}

.feature-content {
    text-align: center;
    animation: fadeInUp 1s ease-out 0.5s both;
}

.feature-title {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: 0.8rem;
    letter-spacing: -0.5px;
}

.feature-description {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1.5rem;
    line-height: 1.6;
    max-width: 280px;
}

.feature-checklist {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    font-size: 0.9rem;
    color: var(--color-white);
    font-weight: 500;
} */

/* ==================== LOGO SHOWCASE ==================== */

.logo-showcase {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    animation: fadeInUp 1s ease-out 0.3s both;
}

.logo-img {
    height: 72px;
    width: auto;
    display: block;
    object-fit: contain;
    transition: var(--transition-smooth);
}


/* ==================== STATS SECTION ==================== */

.stats-section {
    background: transparent;
    padding: 0 2rem;
    position: relative;
    z-index: 20;
    margin-top: -80px;
    margin-bottom: 5rem;
}

.stats-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
    overflow: visible;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    padding: 2rem 1.5rem;
    border-radius: 20px;
    background: rgba(26, 45, 92, 0.95);
    border: 2px solid rgba(255, 140, 0, 0.2);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    /* ensure final animated position is retained and GPU-accelerated */
    transform: translateY(0);
    will-change: transform, opacity;
    animation: fadeInUp 0.8s ease-out both;
    overflow: hidden;
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.stat-item:nth-child(1) { animation-delay: 0.1s; }
.stat-item:nth-child(2) { animation-delay: 0.2s; }
.stat-item:nth-child(3) { animation-delay: 0.3s; }
.stat-item:nth-child(4) { animation-delay: 0.4s; }

.stat-item:hover {
    background: rgba(255, 140, 0, 0.1);
    border-color: var(--color-primary);
    transform: translateY(-6px);
    box-shadow: 0 12px 36px rgba(255, 140, 0, 0.15);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--color-primary);
    letter-spacing: -1px;
}

.stat-text {
    font-size: 0.9rem;
    color: var(--color-text-light);
    text-align: center;
    letter-spacing: 0.3px;
    font-weight: 500;
}

/* Responsive */
@media (max-width: 1200px) {
    .hero-container {
        grid-template-columns: 1fr;
        grid-template-rows: auto auto auto;
    }
    
    .hero-left,
    .hero-right {
        padding: 3rem 2rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .market-units {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .nav {
        flex-wrap: wrap;
        padding: 1rem;
        position: relative;
    }
    
    .mobile-toggle {
        display: flex;
    }

    .nav-links {
        display: flex;
        position: absolute;
        top: calc(100% + 10px);
        left: 1rem;
        right: 1rem;
        flex-direction: column;
        gap: 0.5rem;
        background: transparent;
        border: none;
        border-radius: 14px;
        padding: 0.85rem;
        box-shadow: none;
        z-index: 1001;
        max-height: 0;
        opacity: 0;
        visibility: hidden;
        overflow: hidden;
        pointer-events: none;
        transform: translateY(-6px);
        transition: max-height 0.25s ease, opacity 0.22s ease, visibility 0.22s ease, transform 0.22s ease;
    }

    .nav-links.open {
        max-height: 520px;
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        transform: translateY(0);
        background: linear-gradient(135deg, rgba(15,26,53,1), rgba(13,20,42,1)); /* fully opaque */
        padding: 0.9rem;
        border-radius: 14px;
        box-shadow: 0 20px 40px rgba(0,0,0,0.45);
        border: 1px solid rgba(255,255,255,0.04);
        z-index: 1500;
        -webkit-backdrop-filter: none;
        backdrop-filter: none;
    }

    .nav-links li {
        width: 100%;
    }

    .nav-link,
    .dropdown-btn {
        width: 100%;
        justify-content: flex-start;
        background: rgba(255, 255, 255, 0.04);
        border: 1px solid rgba(255, 255, 255, 0.08);
    }

    .dropdown {
        width: 100%;
    }

    .dropdown-content {
        position: static;
        transform: none;
        opacity: 1;
        visibility: hidden;
        max-height: 0;
        margin-top: 0.35rem;
        background: #ffffff !important;
        border: 1px solid rgba(0, 0, 0, 0.08);
        box-shadow: 0 4px 12px rgba(0,0,0,0.1);
        transition: max-height 0.25s ease, visibility 0.25s ease, opacity 0.25s ease;
        overflow: hidden;
        border-radius: 12px;
    }

    .dropdown-content.show {
        visibility: visible;
        max-height: 320px;
        opacity: 1;
    }

    .dropdown-content::after {
        display: none;
    }

    .dropdown-content a {
        height: auto;
        padding: 0.85rem 0.75rem;
        border-radius: 10px;
        color: #1a2d5c !important;
        background: transparent;
    }

    .dropdown-content a:hover {
        background: rgba(255, 140, 0, 0.1);
        color: #ff8c00 !important;
    }

    .dropdown-content a svg {
        stroke: #1a2d5c !important;
    }

    .dropdown-content a:hover svg {
        stroke: #ff8c00 !important;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .btn {
        width: 100%;
    }
    
    .market-unit-left,
    .market-unit-right {
        width: 150px;
        height: 250px;
    }
    
    .person-image {
        width: 250px;
        height: 350px;
    }
}

/* ==================== CONTACT SECTION ==================== */

.contact-section {
    position: relative;
    padding: 4rem 2rem 6rem;
    background: linear-gradient(180deg, #f8f9fc 0%, #ffffff 50%, #f8f9fc 100%);
    overflow: hidden;
    scroll-margin-top: 120px;
}

.contact-bg-elements {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    overflow: hidden;
}

.contact-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.4;
}

.contact-blob--1 {
    width: 400px;
    height: 400px;
    background: linear-gradient(135deg, rgba(255, 140, 0, 0.3), rgba(255, 200, 100, 0.2));
    top: -100px;
    right: -100px;
    animation: blobFloat 15s ease-in-out infinite;
}

.contact-blob--2 {
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, rgba(26, 45, 92, 0.2), rgba(91, 127, 184, 0.15));
    bottom: -50px;
    left: -50px;
    animation: blobFloat 18s ease-in-out infinite reverse;
}

@keyframes blobFloat {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(30px, -20px) scale(1.05); }
    66% { transform: translate(-20px, 20px) scale(0.95); }
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

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

.contact-tag {
    display: inline-block;
    background: linear-gradient(135deg, rgba(255, 140, 0, 0.15), rgba(255, 140, 0, 0.08));
    color: #ff8c00;
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 1rem;
    border: 1px solid rgba(255, 140, 0, 0.2);
}

.contact-title {
    font-size: 3rem;
    font-weight: 700;
    color: var(--color-bg-dark-blue);
    margin-bottom: 1rem;
    letter-spacing: -1px;
}

.contact-subtitle {
    font-size: 1.15rem;
    color: rgba(10, 31, 77, 0.7);
    max-width: 500px;
    margin: 0 auto;
    line-height: 1.7;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 3rem;
    align-items: start;
}

/* Contact Info Cards */
.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.info-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 1.5rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(0, 0, 0, 0.04);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.info-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(255, 140, 0, 0.12);
    border-color: rgba(255, 140, 0, 0.2);
}

.info-card-inner {
    display: flex;
    align-items: center;
    gap: 1.25rem;
}

.info-icon-wrapper {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, #ff8c00 0%, #e67e00 100%);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 6px 20px rgba(255, 140, 0, 0.25);
}

.info-icon {
    width: 24px;
    height: 24px;
    color: #ffffff;
}

.info-content h3 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-bg-dark-blue);
    margin-bottom: 0.25rem;
}

.info-content p {
    font-size: 1rem;
    color: rgba(10, 31, 77, 0.8);
    font-weight: 500;
}

.info-hint {
    font-size: 0.8rem;
    color: rgba(10, 31, 77, 0.5);
    display: block;
    margin-top: 0.25rem;
}

/* Social Links */
.social-links-contact {
    display: flex;
    gap: 0.75rem;
    margin-top: 1rem;
}

.social-link {
    width: 48px;
    height: 48px;
    background: #ffffff;
    border: 2px solid rgba(10, 31, 77, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.social-link svg {
    width: 22px;
    height: 22px;
    color: var(--color-bg-dark-blue);
    transition: color 0.3s ease;
}

.social-link:hover {
    background: var(--color-primary);
    border-color: var(--color-primary);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(255, 140, 0, 0.3);
}

.social-link:hover svg {
    color: #ffffff;
}

/* Contact Form */
.contact-form-wrapper {
    background: #ffffff;
    border-radius: 24px;
    padding: 2.5rem;
    box-shadow: 0 10px 50px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.04);
    position: relative;
}

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

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

.form-group-contact {
    position: relative;
}

.form-group-contact.full-width {
    grid-column: 1 / -1;
}

.form-group-contact label {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--color-bg-dark-blue);
    margin-bottom: 0.5rem;
}

.form-group-contact input,
.form-group-contact select,
.form-group-contact textarea {
    width: 100%;
    padding: 1rem 0;
    border: none;
    border-bottom: 2px solid rgba(10, 31, 77, 0.12);
    background: transparent;
    font-family: var(--font-primary);
    font-size: 1rem;
    color: var(--color-bg-dark-blue);
    transition: all 0.3s ease;
    outline: none;
}

.form-group-contact input::placeholder,
.form-group-contact textarea::placeholder {
    color: rgba(10, 31, 77, 0.4);
}

.form-group-contact input:focus,
.form-group-contact select:focus,
.form-group-contact textarea:focus {
    border-color: var(--color-primary);
}

.form-group-contact .input-line {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--color-primary), #ffa500);
    transition: width 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.form-group-contact input:focus ~ .input-line,
.form-group-contact select:focus ~ .input-line,
.form-group-contact textarea:focus ~ .input-line {
    width: 100%;
}

.form-group-contact select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%231a2d5c' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0 center;
}

.form-group-contact textarea {
    resize: vertical;
    min-height: 100px;
}

.char-counter-contact {
    position: absolute;
    bottom: 8px;
    right: 0;
    font-size: 0.8rem;
    color: rgba(10, 31, 77, 0.4);
}

/* Submit Button */
.btn-submit-contact {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    width: 100%;
    padding: 1.25rem 2rem;
    background: linear-gradient(135deg, var(--color-bg-dark-blue) 0%, #0a1f4d 100%);
    color: #ffffff;
    border: none;
    border-radius: 14px;
    font-size: 1.05rem;
    font-weight: 600;
    font-family: var(--font-primary);
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
    margin-top: 0.5rem;
}

.btn-submit-contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 140, 0, 0.3), transparent);
    transition: left 0.6s ease;
}

.btn-submit-contact:hover::before {
    left: 100%;
}

.btn-submit-contact:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(10, 31, 77, 0.35);
}

.btn-icon-contact {
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-icon-contact svg {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
}

.btn-submit-contact:hover .btn-icon-contact svg {
    transform: translateX(4px) translateY(-4px);
}

/* Button Loading Spinner (EmailJS) */
.btn-spinner {
    display: inline-block;
    width: 18px;
    height: 18px;
    border: 2px solid rgba(255,255,255,0.3);
    border-top-color: #fff;
    border-radius: 50%;
    animation: spinLoader 0.8s linear infinite;
    margin-left: 8px;
}

@keyframes spinLoader {
    to { transform: rotate(360deg); }
}

/* Success Message */
.contact-success {
    display: none;
    text-align: center;
    padding: 3rem;
}

.contact-success.show {
    display: block;
    animation: fadeInUp 0.6s ease-out;
}

.success-icon-contact {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #4caf50, #45a049);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    animation: successPop 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55) 0.2s both;
}

.success-icon-contact svg {
    width: 40px;
    height: 40px;
    color: #ffffff;
}

@keyframes successPop {
    0% { transform: scale(0); }
    50% { transform: scale(1.15); }
    100% { transform: scale(1); }
}

.contact-success h3 {
    font-size: 1.75rem;
    color: var(--color-bg-dark-blue);
    margin-bottom: 0.5rem;
}

.contact-success p {
    color: rgba(10, 31, 77, 0.7);
    font-size: 1.05rem;
}

/* Responsive Contact */
@media (max-width: 900px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .contact-info {
        order: 2;
    }

    .contact-form-wrapper {
        order: 1;
    }

    .contact-title {
        font-size: 2.25rem;
    }
}

@media (max-width: 600px) {
    .form-row-contact {
        grid-template-columns: 1fr;
    }

    .contact-form-wrapper {
        padding: 1.5rem;
    }

    .social-links-contact {
        justify-content: center;
    }

    .contact-title {
        font-size: 1.875rem;
    }
}

/* ==================== REDESIGNED HERO ==================== */

.hero-modern {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding: 8rem 2rem 4rem;
    background: linear-gradient(135deg, #0f1a35 0%, #1a2d5c 50%, #243b6e 100%);
}

.hero-bg-effects {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

.hero-gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.5;
    animation: orbFloat 20s ease-in-out infinite;
}

.hero-gradient-orb--1 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255,140,0,0.3) 0%, transparent 70%);
    top: -200px;
    right: -100px;
    animation-delay: 0s;
}

.hero-gradient-orb--2 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(91,127,184,0.4) 0%, transparent 70%);
    bottom: -150px;
    left: -150px;
    animation-delay: -7s;
}

.hero-gradient-orb--3 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255,140,0,0.2) 0%, transparent 70%);
    top: 50%;
    left: 30%;
    animation-delay: -14s;
}

@keyframes orbFloat {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(30px, -30px) scale(1.05); }
    66% { transform: translate(-20px, 20px) scale(0.95); }
}

.hero-grid-pattern {
    position: absolute;
    inset: 0;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: min(1200px, 92%);
    height: 100%;
    background-image: 
        linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
    background-size: 60px 60px;
    background-position: center top;
    mask-image: radial-gradient(ellipse 80% 60% at 50% 40%, black 20%, transparent 70%);
    -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 40%, black 20%, transparent 70%);
    pointer-events: none;
}

.hero-particles {
    position: absolute;
    inset: 0;
}

.hero-particles span {
    position: absolute;
    width: 4px;
    height: 4px;
    background: rgba(255,140,0,0.6);
    border-radius: 50%;
    animation: particleFloat 15s ease-in-out infinite;
}

.hero-particles span:nth-child(1) { left: 10%; top: 20%; animation-delay: 0s; }
.hero-particles span:nth-child(2) { left: 20%; top: 60%; animation-delay: -2s; }
.hero-particles span:nth-child(3) { left: 35%; top: 40%; animation-delay: -4s; }
.hero-particles span:nth-child(4) { left: 50%; top: 15%; animation-delay: -6s; }
.hero-particles span:nth-child(5) { left: 65%; top: 70%; animation-delay: -8s; }
.hero-particles span:nth-child(6) { left: 75%; top: 35%; animation-delay: -10s; }
.hero-particles span:nth-child(7) { left: 85%; top: 55%; animation-delay: -12s; }
.hero-particles span:nth-child(8) { left: 90%; top: 25%; animation-delay: -14s; }
.hero-particles span:nth-child(9) { left: 45%; top: 80%; animation-delay: -3s; }
.hero-particles span:nth-child(10) { left: 5%; top: 75%; animation-delay: -7s; }

@keyframes particleFloat {
    0%, 100% { transform: translateY(0) scale(1); opacity: 0.6; }
    50% { transform: translateY(-30px) scale(1.3); opacity: 1; }
}

.hero-modern-container {
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: rgba(255,140,0,0.1);
    border: 1px solid rgba(255,140,0,0.3);
    border-radius: 50px;
    padding: 0.5rem 1.25rem;
    margin-bottom: 2rem;
    animation: fadeInUp 0.8s ease-out;
}

.badge-pulse {
    width: 8px;
    height: 8px;
    background: var(--color-primary);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.5); opacity: 0.5; }
}

.badge-text {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--color-primary);
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

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

.title-line {
    display: block;
}

.title-line--1 {
    color: var(--color-white);
}

.title-line--2 {
    color: var(--color-white);
}

.title-line--3 {
    color: rgba(255,255,255,0.7);
}

.highlight-word {
    background: linear-gradient(135deg, var(--color-primary) 0%, #ffb347 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
}

.highlight-word::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(135deg, var(--color-primary) 0%, #ffb347 100%);
    border-radius: 2px;
    transform: scaleX(0);
    transform-origin: left;
    animation: underlineGrow 1s ease-out 0.8s forwards;
}

@keyframes underlineGrow {
    to { transform: scaleX(1); }
}

.hero-modern-desc {
    font-size: 1.2rem;
    color: rgba(255,255,255,0.75);
    max-width: 600px;
    line-height: 1.7;
    margin-bottom: 2.5rem;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.hero-cta-group {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 3rem;
    animation: fadeInUp 0.8s ease-out 0.3s both;
}

.hero-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
}

.hero-btn svg {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
}

.hero-btn--primary {
    background: linear-gradient(135deg, var(--color-primary) 0%, #e67e00 100%);
    color: #fff;
    box-shadow: 0 8px 30px rgba(255,140,0,0.3);
}

.hero-btn--primary::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #ffb347 0%, var(--color-primary) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.hero-btn--primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(255,140,0,0.4);
}

.hero-btn--primary:hover::before {
    opacity: 1;
}

.hero-btn--primary span,
.hero-btn--primary svg {
    position: relative;
    z-index: 1;
}

.hero-btn--primary:hover svg {
    transform: translateX(5px);
}

.hero-btn--secondary {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.2);
    color: var(--color-white);
    backdrop-filter: blur(10px);
}

.hero-btn--secondary:hover {
    background: rgba(255,255,255,0.1);
    border-color: rgba(255,255,255,0.4);
    transform: translateY(-3px);
}

.hero-features-strip {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

.feature-chip {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 1rem;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 50px;
    font-size: 0.9rem;
    color: rgba(255,255,255,0.8);
}

.feature-chip svg {
    width: 18px;
    height: 18px;
    color: var(--color-primary);
}

/* Hero Visual - Card Stack */
.hero-visual {
    position: absolute;
    right: 5%;
    top: 50%;
    transform: translateY(-50%);
    width: 400px;
    height: 450px;
    z-index: 1;
}

.hero-card-stack {
    position: relative;
    width: 100%;
    height: 100%;
}

.floating-card {
    position: absolute;
    background: rgba(255,255,255,0.03);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 20px;
    padding: 1.5rem;
    animation: cardFloat 6s ease-in-out infinite;
}

.floating-card--1 {
    top: 0;
    right: 0;
    width: 200px;
    animation-delay: 0s;
}

.floating-card--2 {
    top: 35%;
    left: 0;
    width: 220px;
    animation-delay: -2s;
}

.floating-card--3 {
    bottom: 0;
    right: 10%;
    width: 180px;
    animation-delay: -4s;
}

@keyframes cardFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

.card-glow {
    position: absolute;
    inset: -2px;
    background: linear-gradient(135deg, rgba(255,140,0,0.3), transparent, rgba(91,127,184,0.3));
    border-radius: 22px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.floating-card:hover .card-glow {
    opacity: 1;
}

.card-content {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.card-icon-wrapper {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--color-primary) 0%, #e67e00 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.card-icon-wrapper svg {
    width: 24px;
    height: 24px;
    color: #fff;
}

.card-label {
    font-weight: 600;
    font-size: 1rem;
    color: var(--color-white);
}

/* Scroll Indicator */
.scroll-indicator-hero {
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    animation: fadeInUp 0.8s ease-out 0.6s both;
}

.scroll-indicator-hero span {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.5);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.scroll-mouse {
    width: 26px;
    height: 40px;
    border: 2px solid rgba(255,255,255,0.3);
    border-radius: 13px;
    position: relative;
}

.scroll-wheel {
    width: 4px;
    height: 8px;
    background: var(--color-primary);
    border-radius: 2px;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: scrollWheel 2s ease-in-out infinite;
}

@keyframes scrollWheel {
    0%, 100% { opacity: 1; top: 8px; }
    50% { opacity: 0.3; top: 20px; }
}

/* ==================== HOW IT WORKS SECTION ==================== */

.how-it-works {
    padding: 6rem 2rem;
    background: linear-gradient(180deg, #1a2d5c 0%, #0f1a35 100%);
    position: relative;
}

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

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

.section-tag {
    display: inline-block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--color-primary);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1rem;
    padding: 0.5rem 1rem;
    background: rgba(255,140,0,0.1);
    border-radius: 50px;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.text-gradient {
    background: linear-gradient(135deg, var(--color-primary) 0%, #ffb347 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-desc {
    font-size: 1.15rem;
    color: rgba(255,255,255,0.7);
    max-width: 600px;
    margin: 0 auto;
}

.steps-timeline {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    position: relative;
}

.timeline-line {
    position: absolute;
    top: 40px;
    left: 10%;
    right: 10%;
    height: 3px;
    background: rgba(255,255,255,0.1);
    border-radius: 2px;
}

.timeline-progress {
    height: 100%;
    width: 0;
    background: linear-gradient(90deg, var(--color-primary), #ffb347);
    border-radius: 2px;
    transition: width 1s ease-out;
}

.step-card {
    text-align: center;
    position: relative;
    padding-top: 80px;
}

.step-number {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.step-number span {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 0.5rem;
}

.step-dot {
    width: 20px;
    height: 20px;
    background: var(--color-bg-dark-blue);
    border: 3px solid var(--color-primary);
    border-radius: 50%;
    margin: 0 auto;
    position: relative;
}

.step-dot::after {
    content: '';
    position: absolute;
    inset: 4px;
    background: var(--color-primary);
    border-radius: 50%;
    transform: scale(0);
    transition: transform 0.3s ease;
}

.step-card:hover .step-dot::after {
    transform: scale(1);
}

.step-content h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--color-white);
    margin-bottom: 0.75rem;
}

.step-content p {
    font-size: 0.95rem;
    color: rgba(255,255,255,0.65);
    line-height: 1.6;
}

.step-visual {
    width: 60px;
    height: 60px;
    background: rgba(255,140,0,0.1);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 1.5rem auto 0;
    transition: all 0.3s ease;
}

.step-visual svg {
    width: 28px;
    height: 28px;
    color: var(--color-primary);
}

.step-visual:hover {
    background: var(--color-primary);
    transform: scale(1.1);
}

.step-visual:hover svg {
    color: #fff;
}

/* ==================== CTA BANNER SECTION ==================== */

.cta-banner {
    position: relative;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fc 100%);
    padding: 5rem 2rem;
    overflow: hidden;
}

.cta-banner-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 3rem;
    position: relative;
    z-index: 2;
}

.cta-banner-content {
    flex: 1;
}

.cta-banner-badge {
    display: inline-block;
    padding: 0.4rem 1rem;
    background: linear-gradient(135deg, rgba(255, 140, 0, 0.15), rgba(255, 100, 0, 0.1));
    border: 1px solid rgba(255, 140, 0, 0.3);
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--color-primary);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1.25rem;
}

.cta-banner-title {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 800;
    color: #1a2d5c;
    line-height: 1.2;
    margin-bottom: 1rem;
}

.cta-banner-title span {
    background: linear-gradient(135deg, var(--color-primary), #ff6b00);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.cta-banner-desc {
    font-size: 1.1rem;
    color: #5a6a8a;
    line-height: 1.6;
    max-width: 480px;
}

.cta-banner-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.cta-banner-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 700;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    white-space: nowrap;
}

.cta-banner-btn--primary {
    background: linear-gradient(135deg, var(--color-primary), #ff6b00);
    color: #fff;
    box-shadow: 0 8px 25px rgba(255, 140, 0, 0.35);
}

.cta-banner-btn--primary svg {
    width: 18px;
    height: 18px;
    transition: transform 0.3s ease;
}

.cta-banner-btn--primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(255, 140, 0, 0.45);
}

.cta-banner-btn--primary:hover svg {
    transform: translateX(4px);
}

.cta-banner-btn--secondary {
    background: transparent;
    color: #1a2d5c;
    border: 2px solid #e0e5ef;
}

.cta-banner-btn--secondary:hover {
    border-color: #1a2d5c;
    background: rgba(26, 45, 92, 0.05);
}

/* Decorative elements */
.cta-banner-decoration {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.cta-decoration-circle {
    position: absolute;
    border-radius: 50%;
}

.cta-decoration-circle--1 {
    width: 400px;
    height: 400px;
    background: linear-gradient(135deg, rgba(255, 140, 0, 0.08), rgba(255, 140, 0, 0.02));
    top: -150px;
    right: -100px;
}

.cta-decoration-circle--2 {
    width: 250px;
    height: 250px;
    background: linear-gradient(135deg, rgba(26, 45, 92, 0.06), rgba(26, 45, 92, 0.02));
    bottom: -80px;
    left: -50px;
}

/* CTA Banner Responsive */
@media (max-width: 900px) {
    .cta-banner-inner {
        flex-direction: column;
        text-align: center;
    }
    
    .cta-banner-desc {
        margin: 0 auto;
    }
    
    .cta-banner-actions {
        width: 100%;
        max-width: 320px;
    }
}

@media (max-width: 480px) {
    .cta-banner {
        padding: 3.5rem 1.5rem;
    }
    
    .cta-banner-btn {
        padding: 0.9rem 1.5rem;
        font-size: 0.95rem;
    }
}

/* ==================== SOLUTIONS SECTION ==================== */

.solutions-section {
    padding: 6rem 2rem;
    background: #0f1a35;
}

.solutions-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.solution-card {
    position: relative;
    border-radius: 24px;
    padding: 3rem;
    overflow: hidden;
    text-decoration: none;
    display: block;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border: 1px solid rgba(255,255,255,0.1);
    background: rgba(255,255,255,0.02);
}

.solution-card:hover {
    transform: translateY(-8px);
    border-color: rgba(255,140,0,0.3);
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

.solution-bg {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.solution-card:hover .solution-bg {
    opacity: 1;
}

.solution-pattern {
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(circle at 80% 20%, rgba(255,140,0,0.15) 0%, transparent 50%),
        radial-gradient(circle at 20% 80%, rgba(91,127,184,0.1) 0%, transparent 50%);
}

.solution-content {
    position: relative;
    z-index: 1;
}

.solution-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--color-primary) 0%, #e67e00 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: transform 0.3s ease;
}

.solution-card:hover .solution-icon {
    transform: scale(1.1) rotate(-5deg);
}

.solution-icon svg {
    width: 32px;
    height: 32px;
    color: #fff;
}

.solution-tag {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--color-primary);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 0.75rem;
}

.solution-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: 1rem;
}

.solution-desc {
    font-size: 1rem;
    color: rgba(255,255,255,0.7);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.solution-features {
    list-style: none;
    margin-bottom: 2rem;
}

.solution-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.95rem;
    color: rgba(255,255,255,0.8);
    margin-bottom: 0.75rem;
}

.solution-features svg {
    width: 18px;
    height: 18px;
    color: var(--color-primary);
    flex-shrink: 0;
}

.solution-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    color: var(--color-primary);
    font-size: 1rem;
    transition: gap 0.3s ease;
}

.solution-cta svg {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
}

.solution-card:hover .solution-cta {
    gap: 1rem;
}

.solution-card:hover .solution-cta svg {
    transform: translateX(5px);
}

/* ==================== BENEFITS SECTION ==================== */

.benefits-section {
    padding: 6rem 2rem 8rem;
    background: linear-gradient(180deg, #0f1a35 0%, #1a2d5c 100%);
    overflow: hidden;
}

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

.benefits-content .section-tag {
    margin-bottom: 1rem;
    display: inline-block;
}

.benefits-content .section-title {
    text-align: left;
    margin-bottom: 1rem;
}

.benefits-content .section-desc {
    text-align: left;
    margin: 0 0 2.5rem 0;
}

.benefits-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
    padding: 1.25rem;
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 16px;
    transition: all 0.3s ease;
}

.benefit-item:hover {
    background: rgba(255,255,255,0.05);
    border-color: rgba(255,140,0,0.2);
    transform: translateX(10px);
}

.benefit-icon {
    width: 48px;
    height: 48px;
    background: rgba(255,140,0,0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.benefit-item:hover .benefit-icon {
    background: var(--color-primary);
}

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

.benefit-item:hover .benefit-icon svg {
    color: #fff;
}

.benefit-text h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--color-white);
    margin-bottom: 0.25rem;
}

.benefit-text p {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.65);
}

/* Phone Mockup */
.benefits-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 500px;
}

.phone-mockup {
    position: relative;
}

.phone-frame {
    width: 280px;
    height: 560px;
    background: #0a0a0a;
    border-radius: 40px;
    padding: 12px;
    position: relative;
    box-shadow: 
        0 50px 100px rgba(0,0,0,0.5),
        0 0 0 1px rgba(255,255,255,0.1),
        inset 0 0 0 1px rgba(255,255,255,0.05);
}

.phone-notch {
    width: 120px;
    height: 28px;
    background: #0a0a0a;
    border-radius: 0 0 20px 20px;
    position: absolute;
    top: 12px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
}

.phone-screen {
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, #1a2d5c 0%, #0f1a35 100%);
    border-radius: 32px;
    overflow: hidden;
    padding: 3rem 1.25rem 1.25rem;
}

.app-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.app-logo {
    font-family: 'Rubik', sans-serif;
    font-weight: 700;
    color: var(--color-white);
    font-size: 1rem;
}

.app-logo-img {
    height: 48px; /* aumentado de 36px para 48px */
    width: auto;
    object-fit: contain;
}

/* Ajuste responsivo: reduzir logo em telas muito estreitas para evitar overflow */
@media (max-width: 420px) {
    .app-logo-img {
        height: 40px;
    }
}
.app-user {
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, var(--color-primary), #ffb347);
    border-radius: 50%;
}

.app-welcome {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--color-white);
    margin-bottom: 1rem;
}

.app-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
    margin-bottom: 1.25rem;
}

.app-card {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 12px;
    padding: 1rem;
    text-align: center;
}

.app-card-icon {
    display: block;
    width: 32px;
    height: 32px;
    background: var(--color-primary);
    border-radius: 8px;
    margin: 0 auto 0.5rem;
}

.app-card span:last-child {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.7);
}

.app-products {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.app-product {
    height: 50px;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 10px;
}

.phone-glow {
    position: absolute;
    inset: -30px;
    background: radial-gradient(circle at 50% 30%, rgba(255,140,0,0.15), transparent 60%);
    border-radius: 60px;
    z-index: -1;
}

/* Floating Badges */
.floating-badge {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1.25rem;
    background: rgba(255,255,255,0.95);
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    animation: badgeFloat 4s ease-in-out infinite;
}

.floating-badge--1 {
    top: 15%;
    right: -20px;
    animation-delay: 0s;
}

.floating-badge--2 {
    bottom: 20%;
    left: -30px;
    animation-delay: -2s;
}

@keyframes badgeFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.floating-badge svg {
    width: 20px;
    height: 20px;
    color: #4caf50;
}

.floating-badge span {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--color-bg-dark-blue);
}

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

/* ==================== RESPONSIVE - NEW SECTIONS ==================== */

@media (max-width: 1100px) {
    .hero-visual {
        display: none;
    }

    .hero-modern-container {
        text-align: center;
    }

    .hero-modern-desc {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-cta-group {
        justify-content: center;
    }

    .hero-features-strip {
        justify-content: center;
    }
}

@media (max-width: 900px) {
    .steps-timeline {
        grid-template-columns: repeat(2, 1fr);
    }

    .timeline-line {
        display: none;
    }

    .solutions-section {
        padding: 4rem 1.5rem;
    }

    .solutions-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .solution-card {
        padding: 2rem 1.5rem;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .benefits-content {
        text-align: center;
    }

    .benefits-content .section-title,
    .benefits-content .section-desc {
        text-align: center;
    }

    .benefits-content .section-desc {
        margin-left: auto;
        margin-right: auto;
    }

    .benefit-item {
        text-align: left;
    }

    .benefit-item:hover {
        transform: translateX(0) translateY(-5px);
    }
}

@media (max-width: 600px) {
    .hero-modern {
        padding: 7rem 1.5rem 3rem;
    }

    .hero-modern-title {
        font-size: 2rem;
    }

    .hero-modern-desc {
        font-size: 1rem;
    }

    .hero-cta-group {
        flex-direction: column;
        align-items: stretch;
    }

    .hero-btn {
        justify-content: center;
    }

    .hero-features-strip {
        flex-direction: column;
        align-items: center;
    }

    .scroll-indicator-hero {
        display: none;
    }

    .steps-timeline {
        grid-template-columns: 1fr;
    }

    .step-card {
        padding-top: 0;
        display: flex;
        align-items: center;
        gap: 1rem;
        text-align: left;
        padding: 1.5rem;
        background: rgba(255,255,255,0.02);
        border-radius: 16px;
    }

    .step-number {
        position: static;
        transform: none;
    }

    .step-visual {
        display: none;
    }

    .solution-card {
        padding: 2rem;
    }

    .benefits-visual {
        min-height: 450px;
    }

    .phone-frame {
        width: 240px;
        height: 480px;
    }

    .floating-badge--1 {
        right: 0;
        top: 5%;
    }

    .floating-badge--2 {
        left: 0;
        bottom: 10%;
    }
}

/* Global small-screen tweaks */
@media (max-width: 640px) {
    .nav {
        padding: 0.75rem 1rem;
        gap: 0.75rem;
    }

    .hero-section {
        padding-top: 72px;
    }

    .hero-left,
    .hero-right {
        padding: 2.25rem 1.25rem;
    }

    .hero-title {
        font-size: 1.9rem;
        line-height: 1.2;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .stats-section {
        margin-top: -40px;
        padding: 0 1.25rem;
    }

    .stats-container {
        gap: 1rem;
    }

    .stat-item {
        padding: 1.5rem 1.25rem;
    }

    .contact-section {
        padding: 3rem 1.25rem 4rem;
    }

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

    .contact-title {
        font-size: 2.2rem;
    }

    .contact-subtitle {
        font-size: 1rem;
    }

    .page-break {
        height: 60px;
    }
}

/* Extra small devices (≤480px) */
@media (max-width: 480px) {
    .nav {
        padding: 0.6rem 0.75rem;
    }

    .logo-img {
        height: 42px;
    }

    .mobile-toggle {
        width: 38px;
        height: 38px;
    }

    .nav-links {
        left: 0.5rem;
        right: 0.5rem;
        padding: 0.65rem;
    }

    .hero-modern-container {
        padding: 0 0.75rem;
    }

    .hero-modern-title {
        font-size: 1.65rem;
    }

    .hero-modern-desc {
        font-size: 0.95rem;
    }

    .hero-btn {
        padding: 0.85rem 1.25rem;
        font-size: 0.9rem;
    }

    .hero-cta-group {
        flex-direction: column;
        gap: 0.75rem;
    }

    .hero-features-strip {
        flex-direction: column;
        gap: 0.5rem;
    }

    .feature-chip {
        width: 100%;
        justify-content: center;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .section-desc {
        font-size: 0.9rem;
    }

    .step-card {
        padding: 1.25rem;
    }

    .step-content h3 {
        font-size: 1rem;
    }

    .step-content p {
        font-size: 0.85rem;
    }

    .solution-card {
        padding: 1.5rem 1.25rem;
    }

    .solution-icon {
        width: 52px;
        height: 52px;
    }

    .solution-icon svg {
        width: 26px;
        height: 26px;
    }

    .solution-tag {
        font-size: 0.65rem;
        letter-spacing: 1.5px;
    }

    .solution-title {
        font-size: 1.15rem;
        margin-bottom: 0.75rem;
    }

    .solution-desc {
        font-size: 0.85rem;
        line-height: 1.5;
    }

    .solution-features {
        margin-top: 1.25rem;
    }

    .solution-features li {
        font-size: 0.8rem;
        padding: 0.5rem 0;
    }

    .solution-features li svg {
        width: 16px;
        height: 16px;
    }

    .stat-number {
        font-size: 1.8rem;
    }

    .stat-text {
        font-size: 0.8rem;
    }

    .contact-title {
        font-size: 1.75rem;
    }

    .contact-subtitle {
        font-size: 0.9rem;
    }

    .form-grid-contact {
        gap: 1rem;
    }

    .form-group-contact label {
        font-size: 0.8rem;
    }

    .form-group-contact input,
    .form-group-contact select,
    .form-group-contact textarea {
        font-size: 0.9rem;
        padding: 0.75rem 0;
    }

    .btn-submit-contact {
        padding: 1rem 1.5rem;
        font-size: 0.95rem;
    }

    .footer-inner {
        padding: 2rem 1rem;
    }

    .footer-col h4 {
        font-size: 0.95rem;
    }

    .footer-col a,
    .footer-col p {
        font-size: 0.85rem;
    }

    .footer-bottom-inner {
        padding: 0.75rem 1rem;
        font-size: 0.75rem;
    }

    .page-break {
        height: 48px;
    }
}

/* Very small devices (≤360px) */
@media (max-width: 360px) {
    .hero-modern-title {
        font-size: 1.4rem;
    }

    .hero-badge {
        font-size: 0.7rem;
        padding: 0.4rem 0.8rem;
    }

    .section-title {
        font-size: 1.3rem;
    }

    .contact-title {
        font-size: 1.5rem;
    }

    .nav-link span,
    .dropdown-btn span {
        font-size: 0.8rem;
    }
}

/* ==================== MOBILE MASTER FIXES ==================== */
/* Comprehensive mobile fixes for all devices */

/* Disable heavy animations on mobile for performance */
@media (max-width: 768px) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.2s !important;
    }

    /* Re-enable essential transitions */
    .nav-links,
    .dropdown-content,
    .mobile-toggle-bar {
        transition-duration: 0.25s !important;
    }

    /* Fix dropdown positioning inside mobile nav */
    .dropdown {
        position: relative;
        width: 100%;
    }

    .dropdown-content {
        position: static !important;
        left: 0 !important;
        right: 0 !important;
        transform: none !important;
        width: 100% !important;
        min-width: 100% !important;
        margin-top: 0.5rem;
        border-radius: 12px;
    }

    .dropdown-content a {
        justify-content: flex-start;
        gap: 0.75rem;
    }

    /* Fix overflow issues */
    .hero-modern,
    .how-it-works,
    .solutions-section,
    .benefits-section,
    .contact-section {
        overflow-x: hidden;
    }

    /* Ensure full width */
    .hero-modern-container,
    .section-container,
    .form-container {
        width: 100%;
        max-width: 100%;
        padding-left: 1rem;
        padding-right: 1rem;
    }

    /* Hide decorative elements that cause overflow */
    .hero-gradient-orb,
    .hero-particles span,
    .contact-blob,
    .form-gradient-orb,
    .form-particles span {
        display: none;
    }

    /* Simplify backgrounds */
    .hero-grid-pattern,
    .form-grid-pattern {
        opacity: 0.3;
    }

    /* Fix floating cards - hide on mobile */
    .hero-visual,
    .hero-card-stack,
    .floating-card {
        display: none !important;
    }

    /* Fix scroll indicator */
    .scroll-indicator-hero {
        display: none;
    }

    /* Fix badge */
    .hero-badge,
    .form-hero-badge {
        font-size: 0.75rem;
        padding: 0.5rem 1rem;
    }

    /* Fix title lines */
    .title-line {
        display: block;
    }

    /* Fix CTA buttons */
    .hero-cta-group {
        width: 100%;
        flex-direction: column;
        gap: 0.75rem;
    }

    .hero-btn {
        width: 100%;
        justify-content: center;
        padding: 1rem 1.5rem;
    }

    /* Fix feature chips */
    .hero-features-strip {
        flex-wrap: wrap;
        gap: 0.5rem;
    }

    .feature-chip {
        flex: 1 1 calc(50% - 0.5rem);
        min-width: 140px;
        justify-content: center;
        padding: 0.6rem 0.75rem;
        font-size: 0.8rem;
    }

    /* Fix steps grid */
    .steps-timeline {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .step-card {
        padding: 1.5rem;
    }

    .step-number span {
        font-size: 1.5rem;
    }

    /* Fix solutions */
    .solutions-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    /* Fix benefits */
    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .benefits-visual {
        display: none;
    }

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

    .stat-item {
        padding: 1.25rem;
    }

    /* Fix contact form */
    .contact-grid {
        grid-template-columns: 1fr;
    }

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

    .form-group-contact.full-width {
        grid-column: 1;
    }

    /* Fix footer */
    .footer-inner {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-bottom-inner {
        flex-direction: column;
        text-align: center;
        gap: 0.75rem;
    }

    .footer-links {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 0.5rem;
    }

    .footer-links a {
        margin-left: 0;
    }
}

/* iPhone SE / small phones (≤375px) */
@media (max-width: 375px) {
    .nav {
        padding: 0.6rem 0.75rem;
    }

    .logo-img {
        height: 40px;
    }

    .mobile-toggle {
        width: 36px;
        height: 36px;
        gap: 5px;
    }

    .mobile-toggle-bar {
        width: 16px;
    }

    .nav-links {
        left: 0.5rem;
        right: 0.5rem;
        padding: 0.5rem;
        gap: 0.35rem;
    }

    .nav-link,
    .dropdown-btn {
        padding: 0.65rem 0.75rem;
        font-size: 0.85rem;
    }

    .dropdown-content a {
        padding: 0.7rem 0.65rem;
        font-size: 0.85rem;
    }

    .hero-modern {
        padding: 6rem 1rem 2.5rem;
    }

    .hero-modern-title {
        font-size: 1.5rem;
        line-height: 1.25;
    }

    .hero-modern-desc {
        font-size: 0.9rem;
        line-height: 1.5;
    }

    .hero-btn {
        padding: 0.9rem 1rem;
        font-size: 0.85rem;
    }

    .feature-chip {
        flex: 1 1 100%;
        font-size: 0.75rem;
        padding: 0.5rem 0.6rem;
    }

    .section-header {
        padding: 0 0.5rem;
    }

    .section-tag {
        font-size: 0.7rem;
    }

    .section-title {
        font-size: 1.35rem;
    }

    .section-desc {
        font-size: 0.85rem;
    }

    .step-card {
        padding: 1.25rem;
    }

    .step-content h3 {
        font-size: 0.95rem;
    }

    .step-content p {
        font-size: 0.8rem;
    }

    .solutions-section {
        padding: 3rem 1rem;
    }

    .solution-card {
        padding: 1.25rem 1rem;
    }

    .solution-icon {
        width: 48px;
        height: 48px;
    }

    .solution-title {
        font-size: 1.1rem;
    }

    .solution-desc {
        font-size: 0.8rem;
    }

    .solution-features li {
        font-size: 0.75rem;
    }

    .stats-container {
        grid-template-columns: 1fr;
    }

    .stat-number {
        font-size: 1.6rem;
    }

    .stat-text {
        font-size: 0.75rem;
    }

    .contact-section {
        padding: 2.5rem 1rem 3.5rem;
    }

    .contact-title {
        font-size: 1.4rem;
    }

    .contact-subtitle {
        font-size: 0.85rem;
    }

    .form-group-contact label {
        font-size: 0.75rem;
    }

    .form-group-contact input,
    .form-group-contact select,
    .form-group-contact textarea {
        font-size: 0.85rem;
    }

    .btn-submit-contact {
        padding: 0.9rem 1rem;
        font-size: 0.9rem;
    }

    .page-break {
        height: 40px;
    }
}

/* Galaxy Fold / ultra-narrow (≤320px) */
@media (max-width: 320px) {
    .hero-modern {
        padding: 5.5rem 0.75rem 2rem;
    }

    .hero-badge {
        font-size: 0.65rem;
        padding: 0.35rem 0.6rem;
    }

    .hero-modern-title {
        font-size: 1.3rem;
    }

    .hero-modern-desc {
        font-size: 0.85rem;
    }

    .hero-btn {
        padding: 0.8rem 0.9rem;
        font-size: 0.8rem;
    }

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

    .section-title {
        font-size: 1.2rem;
    }

    .step-card {
        padding: 1rem;
    }

    .contact-title {
        font-size: 1.25rem;
    }

    .nav-link span,
    .dropdown-btn span {
        font-size: 0.75rem;
    }

    .footer-col h4 {
        font-size: 0.85rem;
    }

    .footer-col a,
    .footer-col p,
    .footer-desc {
        font-size: 0.75rem;
    }
}

/* Landscape mode on mobile */
@media (max-height: 500px) and (orientation: landscape) {
    .hero-modern {
        padding: 5rem 1.5rem 2rem;
        min-height: auto;
    }

    .hero-modern-title {
        font-size: 1.5rem;
    }

    .hero-modern-desc {
        font-size: 0.9rem;
        margin-bottom: 1rem;
    }

    .hero-cta-group {
        flex-direction: row;
        gap: 0.75rem;
    }

    .hero-btn {
        width: auto;
        padding: 0.75rem 1.25rem;
    }

    .hero-features-strip {
        flex-direction: row;
    }

    .feature-chip {
        flex: 0 0 auto;
    }

    .nav-links {
        max-height: 70vh;
        overflow-y: auto;
    }

    .page-break {
        height: 32px;
    }
}

/* Touch device optimizations */
@media (hover: none) and (pointer: coarse) {
    /* Larger touch targets */
    .nav-link,
    .dropdown-btn,
    .dropdown-content a {
        min-height: 48px;
    }

    .hero-btn,
    .btn-submit-contact,
    .cta-btn {
        min-height: 48px;
    }

    /* Remove hover effects that don't work on touch */
    .dropdown:hover .dropdown-content {
        opacity: 0;
        visibility: hidden;
        max-height: 0;
    }

    .dropdown-content.show {
        opacity: 1 !important;
        visibility: visible !important;
        max-height: 320px !important;
    }

    /* Ensure tap highlight */
    a, button {
        -webkit-tap-highlight-color: rgba(255, 140, 0, 0.2);
    }
}

/* ==================== ADDITIONAL BREAKPOINTS ==================== */

/* Large tablets (≤1024px) */
@media (max-width: 1024px) {
    .hero-modern-container {
        max-width: 90%;
    }

    .section-container {
        padding: 0 2rem;
    }

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

    .benefits-grid {
        gap: 2rem;
    }
}

/* Small tablets (≤900px) */
@media (max-width: 900px) {
    .hero-modern {
        padding: 8rem 2rem 4rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .section-desc {
        font-size: 1rem;
    }

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

/* Phablets / large phones (≤640px) */
@media (max-width: 640px) {
    .hero-modern {
        padding: 7rem 1.25rem 3rem;
    }

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

    .section-tag {
        font-size: 0.75rem;
        padding: 0.4rem 0.8rem;
    }

    .how-it-works,
    .solutions-section,
    .benefits-section {
        padding: 3rem 1.25rem;
    }
}

/* Standard phones (≤576px) */
@media (max-width: 576px) {
    .hero-modern {
        padding: 6.5rem 1rem 2.5rem;
    }

    .hero-badge {
        font-size: 0.7rem;
        padding: 0.45rem 0.9rem;
    }

    .hero-modern-title {
        font-size: 1.75rem;
    }

    .hero-modern-desc {
        font-size: 0.95rem;
        padding: 0 0.5rem;
    }

    .section-title {
        font-size: 1.6rem;
    }

    .step-number span {
        font-size: 1.4rem;
    }

    .solution-card {
        padding: 1.5rem 1.25rem;
    }

    .contact-section {
        padding: 3rem 1rem 4rem;
    }
}

/* Small phones (≤414px - iPhone Plus/Max) */
@media (max-width: 414px) {
    .nav {
        padding: 0.7rem 0.85rem;
    }

    .logo-img {
        height: 44px;
    }

    .hero-modern {
        padding: 6rem 0.85rem 2rem;
    }

    .hero-modern-title {
        font-size: 1.6rem;
    }

    .hero-cta-group {
        gap: 0.65rem;
    }

    .hero-btn {
        padding: 0.9rem 1.1rem;
        font-size: 0.88rem;
    }

    .feature-chip {
        font-size: 0.78rem;
        padding: 0.55rem 0.7rem;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .step-card {
        padding: 1.15rem;
    }

    .stat-item {
        padding: 1.15rem;
    }

    .stat-number {
        font-size: 1.7rem;
    }

    .contact-title {
        font-size: 1.6rem;
    }
}

/* Compact phones (≤390px - iPhone 12/13/14) */
@media (max-width: 390px) {
    .hero-modern-title {
        font-size: 1.5rem;
    }

    .hero-modern-desc {
        font-size: 0.9rem;
    }

    .section-title {
        font-size: 1.4rem;
    }

    .step-content h3 {
        font-size: 0.95rem;
    }

    .step-content p {
        font-size: 0.82rem;
    }

    .contact-title {
        font-size: 1.5rem;
    }

    .form-group-contact label {
        font-size: 0.78rem;
    }
}

/* Mini phones (≤360px - Galaxy S series, older iPhones) */
@media (max-width: 360px) {
    .nav {
        padding: 0.6rem 0.7rem;
    }

    .logo-img {
        height: 40px;
    }

    .mobile-toggle {
        width: 36px;
        height: 36px;
    }

    .hero-modern {
        padding: 5.5rem 0.7rem 1.75rem;
    }

    .hero-badge {
        font-size: 0.65rem;
        padding: 0.35rem 0.7rem;
    }

    .hero-modern-title {
        font-size: 1.4rem;
        line-height: 1.2;
    }

    .hero-btn {
        padding: 0.8rem 1rem;
        font-size: 0.85rem;
    }

    .section-title {
        font-size: 1.3rem;
    }

    .section-desc {
        font-size: 0.85rem;
    }

    .stat-number {
        font-size: 1.6rem;
    }

    .stat-text {
        font-size: 0.75rem;
    }

    .contact-title {
        font-size: 1.4rem;
    }

    .contact-subtitle {
        font-size: 0.85rem;
    }
}

/* Ultra-compact (≤340px) */
@media (max-width: 340px) {
    .hero-modern-title {
        font-size: 1.3rem;
    }

    .hero-btn {
        padding: 0.75rem 0.9rem;
        font-size: 0.8rem;
    }

    .section-title {
        font-size: 1.2rem;
    }

    .contact-title {
        font-size: 1.3rem;
    }

    .nav-link span,
    .dropdown-btn span {
        font-size: 0.78rem;
    }
}

/* High DPI / Retina displays */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .logo-img {
        image-rendering: -webkit-optimize-contrast;
    }
}

/* ==================== SOLUTIONS MOBILE FIX ==================== */
/* Force single column on all mobile devices */
@media (max-width: 900px) {
    .solutions-grid {
        grid-template-columns: 1fr !important;
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .solutions-section {
        padding: 4rem 1rem;
    }

    .solutions-grid {
        grid-template-columns: 1fr !important;
        gap: 1.25rem;
    }

    .solution-card {
        padding: 1.75rem 1.5rem;
        border-radius: 20px;
    }

    .solution-icon {
        width: 56px;
        height: 56px;
        border-radius: 14px;
    }

    .solution-icon svg {
        width: 28px;
        height: 28px;
    }

    .solution-tag {
        font-size: 0.7rem;
        letter-spacing: 2px;
        margin: 1rem 0 0.5rem;
    }

    .solution-title {
        font-size: 1.35rem;
        margin-bottom: 0.75rem;
    }

    .solution-desc {
        font-size: 0.9rem;
        line-height: 1.6;
    }

    .solution-features {
        margin-top: 1.25rem;
    }

    .solution-features li {
        font-size: 0.85rem;
        padding: 0.5rem 0;
        gap: 0.6rem;
    }

    .solution-features li svg {
        width: 18px;
        height: 18px;
        flex-shrink: 0;
    }

    .solution-cta {
        margin-top: 1.25rem;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .solutions-section {
        padding: 3rem 0.75rem;
    }

    .solution-card {
        padding: 1.5rem 1.25rem;
        border-radius: 16px;
    }

    .solution-icon {
        width: 52px;
        height: 52px;
        border-radius: 12px;
    }

    .solution-icon svg {
        width: 26px;
        height: 26px;
    }

    .solution-tag {
        font-size: 0.65rem;
    }

    .solution-title {
        font-size: 1.2rem;
    }

    .solution-desc {
        font-size: 0.85rem;
    }

    .solution-features li {
        font-size: 0.8rem;
    }

    .solution-cta {
        font-size: 0.85rem;
    }
}

@media (max-width: 375px) {
    .solutions-section {
        padding: 2.5rem 0.65rem;
    }

    .solution-card {
        padding: 1.25rem 1rem;
    }

    .solution-icon {
        width: 48px;
        height: 48px;
    }

    .solution-tag {
        font-size: 0.6rem;
    }

    .solution-title {
        font-size: 1.1rem;
    }

    .solution-desc {
        font-size: 0.8rem;
    }

    .solution-features li {
        font-size: 0.75rem;
    }
}

@media (max-width: 320px) {
    .solution-card {
        padding: 1rem 0.85rem;
    }

    .solution-icon {
        width: 44px;
        height: 44px;
    }

    .solution-title {
        font-size: 1rem;
    }

    .solution-desc {
        font-size: 0.75rem;
    }

    .solution-features li {
        font-size: 0.7rem;
    }
}
/* ==================== LOGIN MODAL ==================== */
.login-btn {
    background: transparent !important;
    border: 1px solid rgba(255, 255, 255, 0.25) !important;
    cursor: pointer;
    font-family: var(--font-primary);
    margin-left: 1rem; /* small gap from previous item */
    margin-right: 1rem; /* give space from the right edge */
}

/* Spacer to push login to the corner and allow adjustable gap */
.nav-spacer {
    flex: 1 1 0;
    min-width: 3rem; /* increased spacing to push login farther to the right */
}

/* Hide spacer on small screens to avoid layout issues */
@media (max-width: 900px) {
    .nav-spacer { display: none; }
}

/* Make sure the login button is visually minimal (no dark filled background) */
.nav .nav-links .login-btn {
    background: transparent !important;
    box-shadow: none !important;
    border: none !important; /* remove outline rectangle */
    padding: 0.35rem 0.75rem; /* slightly smaller padding to match other items */
    border-radius: 8px;
    color: var(--color-white);
}

/* Active / Focus state - match other nav links' orange active look */
.nav .nav-links .login-btn.active,
.nav .nav-links .login-btn:focus {
    color: var(--color-primary) !important;
    background: rgba(255, 140, 0, 0.12) !important;
    border: 1px solid rgba(255,140,0,0.18) !important;
    box-shadow: 0 6px 20px rgba(255,140,0,0.12) !important;
    outline: none;
}

/* Hover style for the login button - orange icon + orange text with subtle orange outline */
.nav .nav-links .login-btn:hover {
    color: var(--color-primary) !important;
    background: rgba(255,140,0,0.08) !important; /* subtle orange tint */
    border: 1px solid rgba(255,140,0,0.22) !important;
    box-shadow: 0 8px 24px rgba(255,140,0,0.08) !important;
    transform: translateY(-2px);
}

/* Ensure the icon and any SVG strokes turn orange on hover */
.nav .nav-links .login-btn:hover .nav-icon,
.nav .nav-links .login-btn:hover svg {
    stroke: var(--color-primary) !important;
    color: var(--color-primary) !important;
}

/* Slight transition for smoothness */
.nav .nav-links .login-btn {
    transition: color 180ms ease, background 180ms ease, box-shadow 180ms ease, transform 160ms ease;
}

/* Ensure no inner rounded rectangle or extra background remains */
.nav .nav-links .login-btn * { background: transparent !important; }

.login-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 20, 50, 0.85);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    padding: 1rem;
}

.login-modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.login-modal {
    background: linear-gradient(145deg, #ffffff 0%, #f8f9fc 100%);
    border-radius: 24px;
    padding: 2.5rem;
    width: 100%;
    max-width: 420px;
    position: relative;
    transform: translateY(20px) scale(0.95);
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: 
        0 25px 80px rgba(0, 0, 0, 0.3),
        0 10px 30px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.login-modal-overlay.active .login-modal {
    transform: translateY(0) scale(1);
}

.login-modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: none;
    background: rgba(0, 0, 0, 0.05);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.login-modal-close svg {
    width: 18px;
    height: 18px;
    stroke: #666;
    transition: all 0.3s ease;
}

.login-modal-close:hover {
    background: rgba(255, 80, 80, 0.1);
}

.login-modal-close:hover svg {
    stroke: #ff5050;
}

.login-modal-header {
    text-align: center;
    margin-bottom: 2rem;
}

.login-logo {
    height: 60px;
    width: auto; /* preserve aspect ratio */
    max-width: 100%;
    display: block;
    margin: 0 auto 1rem auto;
    object-fit: contain;
    filter: drop-shadow(0 4px 12px rgba(255, 140, 0, 0.3));
}

.login-modal-header h2 {
    font-size: 1.6rem;
    font-weight: 700;
    color: #1a2d5c;
    margin-bottom: 0.5rem;
}

.login-modal-header p {
    font-size: 0.95rem;
    color: #666;
}

.login-form {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.login-input-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.login-input-group label {
    font-size: 0.875rem;
    font-weight: 600;
    color: #1a2d5c;
}

.login-input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.login-input-wrapper > svg {
    position: absolute;
    left: 1rem;
    width: 18px;
    height: 18px;
    stroke: #888;
    transition: all 0.3s ease;
    pointer-events: none;
}

.login-input-wrapper input {
    width: 100%;
    padding: 0.9rem 1rem 0.9rem 2.75rem;
    border: 2px solid #e0e5f0;
    border-radius: 12px;
    font-size: 0.95rem;
    font-family: var(--font-primary);
    color: #1a2d5c;
    background: #fff;
    transition: all 0.3s ease;
}

.login-input-wrapper input:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 4px rgba(255, 140, 0, 0.1);
}

.login-input-wrapper input:focus + svg,
.login-input-wrapper:focus-within > svg:first-of-type {
    stroke: var(--color-primary);
}

.login-input-wrapper input::placeholder {
    color: #aaa;
}

.toggle-password {
    position: absolute;
    right: 1rem;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.toggle-password svg {
    width: 18px;
    height: 18px;
    stroke: #888;
    transition: all 0.3s ease;
}

.toggle-password:hover svg {
    stroke: var(--color-primary);
}

.login-options {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 0.85rem;
}

.remember-me {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    color: #555;
}

.remember-me input {
    display: none;
}

.remember-me .checkmark {
    width: 18px;
    height: 18px;
    border: 2px solid #ccc;
    border-radius: 4px;
    position: relative;
    transition: all 0.3s ease;
}

.remember-me input:checked + .checkmark {
    background: var(--color-primary);
    border-color: var(--color-primary);
}

.remember-me input:checked + .checkmark::after {
    content: '';
    position: absolute;
    left: 5px;
    top: 2px;
    width: 4px;
    height: 8px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.forgot-password {
    color: var(--color-primary);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.forgot-password:hover {
    text-decoration: underline;
}

.login-submit-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    border: none;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--color-primary) 0%, #e67e00 100%);
    color: #fff;
    font-size: 1rem;
    font-weight: 600;
    font-family: var(--font-primary);
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 140, 0, 0.3);
    margin-top: 0.5rem;
}

.login-submit-btn svg {
    width: 18px;
    height: 18px;
    stroke: #fff;
    transition: transform 0.3s ease;
}

.login-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(255, 140, 0, 0.4);
}

.login-submit-btn:hover svg {
    transform: translateX(4px);
}
/* Social login and register removed */

/* Login Modal Responsive */
@media (max-width: 480px) {
    .login-modal {
        padding: 1.75rem;
        border-radius: 20px;
    }

    .login-modal-header h2 {
        font-size: 1.4rem;
    }

    .login-options {
        flex-direction: column;
        gap: 0.75rem;
        align-items: flex-start;
    }

    .login-social {
        flex-direction: column;
    }
}

/* ==================== FORGOT PASSWORD PAGE ==================== */
.forgot-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 6rem 1rem;
    background: linear-gradient(180deg, #f8f9fc 0%, #ffffff 100%);
}

.forgot-card {
    width: 100%;
    max-width: 520px;
    background: linear-gradient(145deg, #ffffff 0%, #f8f9fc 100%);
    border-radius: 20px;
    padding: 2.25rem;
    box-shadow: 0 25px 60px rgba(0,0,0,0.08), 0 6px 20px rgba(0,0,0,0.06);
    position: relative;
}

.forgot-close {
    position: absolute;
    top: 12px;
    right: 12px;
    border: none;
    background: transparent;
    font-size: 18px;
    cursor: pointer;
    color: #666;
}

.forgot-header {
    text-align: center;
    margin-bottom: 1.25rem;
}

.forgot-header h2 {
    font-size: 1.45rem;
    color: #1a2d5c;
    margin-bottom: 0.25rem;
}

.forgot-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.forgot-help {
    color: var(--color-primary);
    font-weight: 600;
}

@media (max-width: 480px) {
    .forgot-card { padding: 1.25rem; border-radius: 16px; }
    .forgot-header h2 { font-size: 1.2rem; }
}