/* ============================================
   Excel Finvest - Style Sheet
   Colors: Orange #E8941A, Navy #1B2A4A, White
   ============================================ */

/* === Reset & Base === */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --orange: #E8941A;
    --orange-light: #FFF3E0;
    --orange-dark: #C67A0E;
    --navy: #1B2A4A;
    --navy-light: #2A3F6A;
    --navy-dark: #111D35;
    --white: #FFFFFF;
    --gray-50: #F9FAFB;
    --gray-100: #F3F4F6;
    --gray-200: #E5E7EB;
    --gray-300: #D1D5DB;
    --gray-400: #9CA3AF;
    --gray-500: #6B7280;
    --gray-600: #4B5563;
    --gray-700: #374151;
    --gray-800: #1F2937;
    --gray-900: #111827;
    --shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
    --shadow: 0 1px 3px rgba(0,0,0,0.1), 0 1px 2px rgba(0,0,0,0.06);
    --shadow-md: 0 4px 6px -1px rgba(0,0,0,0.1), 0 2px 4px -1px rgba(0,0,0,0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0,0,0,0.1), 0 4px 6px -2px rgba(0,0,0,0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0,0,0,0.1), 0 10px 10px -5px rgba(0,0,0,0.04);
    --radius: 8px;
    --radius-lg: 12px;
    --radius-xl: 16px;
    --transition: 0.3s ease;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--gray-700);
    line-height: 1.6;
    background: var(--white);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    color: var(--navy);
    line-height: 1.2;
    font-weight: 700;
}

h1 { font-size: clamp(2rem, 5vw, 3.25rem); }
h2 { font-size: clamp(1.75rem, 4vw, 2.5rem); }
h3 { font-size: 1.25rem; }

a {
    color: inherit;
    text-decoration: none;
}

img {
    max-width: 100%;
    height: auto;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.text-accent {
    color: var(--orange);
}

/* === Buttons === */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius);
    font-weight: 600;
    font-size: 0.9375rem;
    border: 2px solid transparent;
    cursor: pointer;
    transition: all var(--transition);
    text-decoration: none;
    line-height: 1.4;
}

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

.btn-primary:hover {
    background: var(--orange-dark);
    border-color: var(--orange-dark);
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
}

.btn-outline {
    background: transparent;
    color: var(--navy);
    border-color: var(--navy);
}

.btn-outline:hover {
    background: var(--navy);
    color: var(--white);
    transform: translateY(-1px);
}

.btn-lg {
    padding: 0.875rem 2rem;
    font-size: 1rem;
}

.btn-full {
    width: 100%;
    justify-content: center;
}

/* === Header === */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid transparent;
    transition: all var(--transition);
}

.header.scrolled {
    border-bottom-color: var(--gray-200);
    box-shadow: var(--shadow-sm);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
}

.logo-icon {
    width: 42px;
    height: 42px;
}

.logo-icon svg {
    width: 100%;
    height: 100%;
}

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

.logo-name {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--navy);
    line-height: 1.2;
}

.logo-tagline {
    font-size: 0.7rem;
    color: var(--gray-500);
    font-style: italic;
    letter-spacing: 0.02em;
}

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

.nav-link {
    padding: 0.5rem 0.875rem;
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--gray-600);
    border-radius: var(--radius);
    transition: all var(--transition);
}

.nav-link:hover,
.nav-link.active {
    color: var(--navy);
    background: var(--gray-100);
}

.nav-cta {
    margin-left: 0.5rem;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--navy);
    border-radius: 2px;
    transition: all var(--transition);
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* === Hero === */
.hero {
    position: relative;
    padding: 8rem 0 4rem;
    background: linear-gradient(135deg, var(--gray-50) 0%, var(--white) 50%, var(--orange-light) 100%);
    overflow: hidden;
    min-height: 90vh;
    display: flex;
    align-items: center;
}

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

.shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.05;
}

.shape-1 {
    width: 600px;
    height: 600px;
    background: var(--orange);
    top: -200px;
    right: -200px;
}

.shape-2 {
    width: 400px;
    height: 400px;
    background: var(--navy);
    bottom: -100px;
    left: -100px;
}

.shape-3 {
    width: 200px;
    height: 200px;
    background: var(--orange);
    top: 50%;
    left: 40%;
}

.hero-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
}

.hero-badge {
    display: inline-block;
    padding: 0.375rem 1rem;
    background: var(--orange-light);
    color: var(--orange-dark);
    font-size: 0.875rem;
    font-weight: 600;
    border-radius: 100px;
    margin-bottom: 1.5rem;
}

.hero-content h1 {
    margin-bottom: 1.25rem;
}

.hero-subtitle {
    font-size: 1.125rem;
    color: var(--gray-600);
    margin-bottom: 2rem;
    max-width: 540px;
}

.hero-ctas {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.hero-stats {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.stat {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 2rem;
    font-weight: 800;
    color: var(--navy);
    line-height: 1;
}

.stat-suffix {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--orange);
}

.stat-label {
    font-size: 0.8125rem;
    color: var(--gray-500);
    margin-top: 0.25rem;
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: var(--gray-300);
}

/* Hero Visual */
.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
}

.hero-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 2rem;
    box-shadow: var(--shadow-xl);
    border: 1px solid var(--gray-200);
}

.hero-card-inner {
    text-align: center;
}

.hero-card-icon {
    margin-bottom: 1rem;
}

.hero-card h3 {
    font-size: 1.5rem;
    margin-bottom: 0.25rem;
}

.hero-card p {
    color: var(--gray-500);
    font-size: 0.875rem;
}

.hero-card-rate {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--orange);
    line-height: 1.2;
    margin: 0.5rem 0;
}

.hero-card-rate span {
    font-size: 1rem;
    font-weight: 500;
    color: var(--gray-500);
}

.hero-card-amount {
    font-size: 0.875rem;
    color: var(--gray-600);
    padding-top: 0.75rem;
    border-top: 1px solid var(--gray-200);
}

.hero-card-float {
    position: absolute;
    bottom: -20px;
    left: -40px;
    padding: 1rem 1.25rem;
    animation: float 3s ease-in-out infinite;
}

.hero-card-float .hero-card-inner {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-align: left;
}

.hero-card-float strong {
    color: var(--navy);
    font-size: 0.9375rem;
}

.hero-card-float p {
    font-size: 0.8125rem;
    margin: 0;
}

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

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none !important;
}

/* === Sections Common === */
.section-header {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 3.5rem;
}

.section-badge {
    display: inline-block;
    padding: 0.375rem 1rem;
    background: var(--orange-light);
    color: var(--orange-dark);
    font-size: 0.8125rem;
    font-weight: 600;
    border-radius: 100px;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.section-header h2 {
    margin-bottom: 1rem;
}

.section-header p {
    color: var(--gray-500);
    font-size: 1.0625rem;
}

/* === Services === */
.services {
    padding: 5rem 0;
    background: var(--white);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.service-card {
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid var(--gray-200);
    transition: all var(--transition);
    background: var(--white);
}

.service-card:hover {
    border-color: var(--orange);
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}

.service-icon {
    width: 48px;
    height: 48px;
    background: var(--orange-light);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
}

.service-icon svg {
    width: 24px;
    height: 24px;
    stroke: var(--orange);
}

.service-card h3 {
    margin-bottom: 0.75rem;
}

.service-card p {
    color: var(--gray-500);
    font-size: 0.9375rem;
    margin-bottom: 1rem;
}

.service-rate {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background: var(--orange-light);
    color: var(--orange-dark);
    font-size: 0.8125rem;
    font-weight: 600;
    border-radius: 100px;
    margin-bottom: 1rem;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    color: var(--orange);
    font-weight: 600;
    font-size: 0.9375rem;
    transition: gap var(--transition);
}

.service-link:hover {
    gap: 0.625rem;
}

/* === How It Works === */
.how-it-works {
    padding: 5rem 0;
    background: var(--gray-50);
}

.steps-grid {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 0;
}

.step-card {
    text-align: center;
    padding: 2rem 1.5rem;
    flex: 1;
    max-width: 260px;
}

.step-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--orange-light);
    line-height: 1;
    margin-bottom: 1rem;
    font-family: 'Playfair Display', serif;
}

.step-icon {
    width: 56px;
    height: 56px;
    background: var(--navy);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.25rem;
}

.step-icon svg {
    width: 24px;
    height: 24px;
    stroke: var(--white);
}

.step-card h3 {
    margin-bottom: 0.75rem;
    font-size: 1.1rem;
}

.step-card p {
    color: var(--gray-500);
    font-size: 0.9rem;
}

.step-connector {
    display: flex;
    align-items: center;
    padding-top: 5rem;
}

/* === Why Us === */
.why-us {
    padding: 5rem 0;
    background: var(--white);
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.why-card {
    padding: 2rem;
    border-radius: var(--radius-lg);
    background: var(--gray-50);
    border: 1px solid var(--gray-100);
    transition: all var(--transition);
}

.why-card:hover {
    background: var(--white);
    box-shadow: var(--shadow-lg);
    transform: translateY(-2px);
}

.why-icon {
    width: 48px;
    height: 48px;
    background: var(--navy);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
}

.why-icon svg {
    width: 24px;
    height: 24px;
    stroke: var(--orange);
}

.why-card h3 {
    margin-bottom: 0.5rem;
}

.why-card p {
    color: var(--gray-500);
    font-size: 0.9375rem;
}

/* === Partners === */
.partners {
    padding: 5rem 0;
    background: var(--gray-50);
    overflow: hidden;
}

.partners-scroll {
    overflow: hidden;
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.partners-track {
    display: flex;
    gap: 2rem;
    animation: scroll 30s linear infinite;
    width: max-content;
}

.partner-logo {
    flex-shrink: 0;
    padding: 1rem 1.5rem;
    background: var(--white);
    border-radius: var(--radius);
    border: 1px solid var(--gray-200);
    display: flex;
    align-items: center;
    justify-content: center;
    height: 72px;
    min-width: 160px;
    transition: all var(--transition);
}

.partner-logo img {
    max-height: 40px;
    max-width: 130px;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.6;
    transition: all var(--transition);
}

.partner-logo:hover {
    border-color: var(--orange);
    box-shadow: var(--shadow-sm);
}

.partner-logo:hover img {
    filter: grayscale(0%);
    opacity: 1;
}

@keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* === About === */
.about {
    padding: 5rem 0;
    background: var(--white);
}

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

.about-content .section-badge {
    margin-bottom: 1rem;
}

.about-content h2 {
    margin-bottom: 1.5rem;
}

.about-content p {
    color: var(--gray-600);
    margin-bottom: 1rem;
    font-size: 1rem;
}

.founder-profile {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    margin-bottom: 1.5rem;
    padding: 1.25rem;
    background: var(--gray-50);
    border-radius: var(--radius-xl);
    border: 1px solid var(--gray-100);
}

.founder-photo-wrapper {
    width: 88px;
    height: 88px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    border: 3px solid var(--white);
    box-shadow: 0 0 0 2px var(--orange), var(--shadow-md);
}

.founder-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
}

.founder-bio h3 {
    font-size: 1.25rem;
    color: var(--navy);
    margin-bottom: 0.125rem;
}

.founder-title {
    display: inline-block;
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--orange-dark);
    background: var(--orange-light);
    padding: 0.125rem 0.625rem;
    border-radius: 100px;
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.about-feature {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.25rem;
    background: var(--gray-50);
    border-radius: var(--radius-lg);
    border: 1px solid var(--gray-100);
    transition: all var(--transition);
}

.about-feature:hover {
    background: var(--white);
    box-shadow: var(--shadow-md);
}

.about-feature-icon {
    width: 40px;
    height: 40px;
    background: var(--orange-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.about-feature-icon svg {
    width: 20px;
    height: 20px;
    stroke: var(--orange);
}

.about-feature strong {
    display: block;
    color: var(--navy);
    font-size: 0.9375rem;
    margin-bottom: 0.25rem;
}

.about-feature p {
    color: var(--gray-500);
    font-size: 0.875rem;
    margin: 0;
}

/* === FAQ === */
.faq {
    padding: 5rem 0;
    background: var(--white);
}

.faq-list {
    max-width: 768px;
    margin: 0 auto;
}

.faq-item {
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    margin-bottom: 0.75rem;
    overflow: hidden;
    transition: all var(--transition);
}

.faq-item[open] {
    border-color: var(--orange);
    box-shadow: 0 0 0 1px var(--orange);
}

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.25rem 1.5rem;
    cursor: pointer;
    font-weight: 600;
    color: var(--navy);
    font-size: 1rem;
    list-style: none;
    gap: 1rem;
    transition: background var(--transition);
}

.faq-question::-webkit-details-marker {
    display: none;
}

.faq-question:hover {
    background: var(--gray-50);
}

.faq-question svg {
    flex-shrink: 0;
    transition: transform var(--transition);
    color: var(--orange);
}

.faq-item[open] .faq-question svg {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 1.5rem 1.25rem;
}

.faq-answer p {
    color: var(--gray-600);
    font-size: 0.9375rem;
    line-height: 1.7;
}

@media (max-width: 768px) {
    .faq {
        padding: 2.5rem 0;
    }

    .faq-question {
        padding: 1rem 1.25rem;
        font-size: 0.9375rem;
    }

    .faq-answer {
        padding: 0 1.25rem 1rem;
    }

    .faq-answer p {
        font-size: 0.875rem;
    }
}

@media (max-width: 480px) {
    .faq-question {
        padding: 0.875rem 1rem;
        font-size: 0.875rem;
    }

    .faq-answer {
        padding: 0 1rem 0.875rem;
    }
}

/* === Testimonials === */
.testimonials {
    padding: 5rem 0;
    background: var(--navy);
}

.testimonials .section-badge {
    background: rgba(232, 148, 26, 0.15);
    color: var(--orange);
}

.testimonials .section-header h2 {
    color: var(--white);
}

.testimonials .section-header p {
    color: rgba(255,255,255,0.6);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.testimonial-card {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius-lg);
    padding: 2rem;
    transition: all var(--transition);
}

.testimonial-card:hover {
    background: rgba(255,255,255,0.1);
    transform: translateY(-2px);
}

.testimonial-stars {
    display: flex;
    gap: 0.125rem;
    margin-bottom: 1rem;
}

.testimonial-card > p {
    color: rgba(255,255,255,0.8);
    font-size: 0.9375rem;
    font-style: italic;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.testimonial-avatar {
    width: 42px;
    height: 42px;
    background: var(--orange);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.875rem;
}

.testimonial-author strong {
    display: block;
    color: var(--white);
    font-size: 0.9375rem;
}

.testimonial-author span {
    color: rgba(255,255,255,0.5);
    font-size: 0.8125rem;
}

/* === Contact === */
.contact {
    padding: 5rem 0;
    background: var(--gray-50);
}

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

.contact-info .section-badge {
    margin-bottom: 1rem;
}

.contact-info h2 {
    margin-bottom: 1rem;
}

.contact-info > p {
    color: var(--gray-600);
    margin-bottom: 2rem;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-method {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem;
    background: var(--white);
    border-radius: var(--radius);
    border: 1px solid var(--gray-200);
    transition: all var(--transition);
}

a.contact-method:hover {
    border-color: var(--orange);
    box-shadow: var(--shadow-md);
}

.contact-method-icon {
    width: 42px;
    height: 42px;
    background: var(--orange-light);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-method-icon svg {
    width: 20px;
    height: 20px;
    stroke: var(--orange);
}

.contact-method strong {
    display: block;
    color: var(--navy);
    font-size: 0.9375rem;
    margin-bottom: 0.125rem;
}

.contact-method span {
    color: var(--gray-500);
    font-size: 0.875rem;
}

/* Contact Form */
.contact-form-wrapper {
    position: sticky;
    top: 100px;
}

.contact-form {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 2rem;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--gray-200);
}

.contact-form h3 {
    text-align: center;
    margin-bottom: 1.5rem;
    font-size: 1.375rem;
}

.form-group {
    margin-bottom: 1rem;
}

.form-group label {
    display: block;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--gray-700);
    margin-bottom: 0.375rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid var(--gray-300);
    border-radius: var(--radius);
    font-size: 0.9375rem;
    font-family: inherit;
    color: var(--gray-800);
    transition: border-color var(--transition), box-shadow var(--transition);
    background: var(--white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--orange);
    box-shadow: 0 0 0 3px rgba(232, 148, 26, 0.15);
}

.form-group textarea {
    resize: vertical;
}

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

.form-note {
    text-align: center;
    font-size: 0.75rem;
    color: var(--gray-400);
    margin-top: 1rem;
}

/* === Map === */
.map-section {
    line-height: 0;
}

.map-section iframe {
    filter: grayscale(20%);
}

/* === Footer === */
.footer {
    background: var(--navy-dark);
    color: rgba(255,255,255,0.7);
    padding: 4rem 0 0;
}

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

.footer-brand p {
    margin-top: 1rem;
    font-size: 0.875rem;
    line-height: 1.7;
    color: rgba(255,255,255,0.5);
}

.footer-brand .logo {
    margin-bottom: 0.5rem;
}

.footer-links h4 {
    color: var(--white);
    font-size: 0.9375rem;
    margin-bottom: 1rem;
}

.footer-links a {
    display: block;
    padding: 0.375rem 0;
    font-size: 0.875rem;
    color: rgba(255,255,255,0.5);
    transition: color var(--transition);
}

.footer-links a:hover {
    color: var(--orange);
}

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

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

.footer-disclaimer {
    margin-top: 0.75rem;
    font-size: 0.75rem !important;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

/* === WhatsApp Float === */
.whatsapp-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 56px;
    height: 56px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: all var(--transition);
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5);
}

/* === Back to Top === */
.back-to-top {
    position: fixed;
    bottom: 90px;
    right: 28px;
    width: 42px;
    height: 42px;
    background: var(--navy);
    color: var(--white);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition);
    z-index: 998;
    box-shadow: var(--shadow-md);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: var(--orange);
    transform: translateY(-2px);
}

/* === Form Success State === */
.form-success {
    text-align: center;
    padding: 2rem;
}

.form-success svg {
    margin-bottom: 1rem;
}

.form-success h3 {
    color: var(--navy);
    margin-bottom: 0.5rem;
}

.form-success p {
    color: var(--gray-500);
}

/* === Responsive === */

/* 14-inch laptops (1366px and below) */
@media (max-width: 1400px) {
    .container {
        max-width: 1100px;
    }

    .hero-inner {
        gap: 2.5rem;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

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

    .hero-card {
        padding: 1.5rem;
    }

    .hero-card-rate {
        font-size: 2rem;
    }

    .services-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.25rem;
    }

    .service-card {
        padding: 1.5rem;
    }

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

    .services,
    .how-it-works,
    .why-us,
    .partners,
    .about,
    .testimonials,
    .contact {
        padding: 3.5rem 0;
    }

    .about-grid {
        gap: 2.5rem;
    }

    .footer-grid {
        gap: 1.5rem;
    }

    .nav-link {
        padding: 0.5rem 0.625rem;
        font-size: 0.875rem;
    }
}

/* Small laptops & tablets landscape (1024px and below) */
@media (max-width: 1024px) {
    .container {
        max-width: 100%;
        padding: 0 1.25rem;
    }

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

    .hero-visual {
        display: none;
    }

    .hero {
        min-height: auto;
        padding: 6rem 0 3.5rem;
    }

    .hero-content h1 {
        font-size: 2.25rem;
    }

    .hero-subtitle {
        max-width: 100%;
    }

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

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

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

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

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

    .contact-form-wrapper {
        position: static;
    }

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

    .steps-grid {
        flex-wrap: wrap;
        justify-content: center;
    }

    .step-connector {
        display: none;
    }

    .step-card {
        flex: 0 0 45%;
        max-width: 45%;
    }

    .services,
    .how-it-works,
    .why-us,
    .partners,
    .about,
    .testimonials,
    .contact {
        padding: 3rem 0;
    }
}

/* Tablets portrait (768px and below) */
@media (max-width: 768px) {
    .nav {
        position: fixed;
        top: 72px;
        left: 0;
        right: 0;
        bottom: 0;
        background: var(--white);
        flex-direction: column;
        padding: 1.5rem;
        gap: 0.25rem;
        transform: translateX(100%);
        transition: transform var(--transition);
        z-index: 999;
        overflow-y: auto;
    }

    .nav.open {
        transform: translateX(0);
    }

    .nav-link {
        font-size: 1.0625rem;
        padding: 0.875rem 1rem;
        width: 100%;
        border-radius: var(--radius);
    }

    .nav-link:hover,
    .nav-link.active {
        background: var(--gray-100);
    }

    .nav-cta {
        margin-left: 0;
        margin-top: 1rem;
        justify-content: center;
        width: 100%;
    }

    .hamburger {
        display: flex;
    }

    .hero {
        padding: 5.5rem 0 2.5rem;
    }

    .hero-content h1 {
        font-size: 1.875rem;
    }

    .hero-badge {
        font-size: 0.8125rem;
        margin-bottom: 1rem;
    }

    .hero-subtitle {
        font-size: 0.9375rem;
        margin-bottom: 1.5rem;
    }

    .hero-ctas {
        flex-direction: column;
        margin-bottom: 2rem;
    }

    .hero-ctas .btn {
        justify-content: center;
        width: 100%;
    }

    .hero-stats {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 0.75rem;
        text-align: center;
    }

    .stat-divider {
        display: none;
    }

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

    .stat-suffix {
        font-size: 1rem;
    }

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

    .section-header h2 {
        font-size: 1.5rem;
    }

    .section-header p {
        font-size: 0.9375rem;
    }

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

    .services-grid,
    .testimonials-grid,
    .why-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .service-card,
    .why-card,
    .testimonial-card {
        padding: 1.5rem;
    }

    .steps-grid {
        flex-direction: column;
        align-items: stretch;
        gap: 0;
    }

    .step-card {
        flex: none;
        max-width: 100%;
        display: flex;
        align-items: flex-start;
        gap: 1rem;
        text-align: left;
        padding: 1.25rem 0;
        border-bottom: 1px solid var(--gray-200);
    }

    .step-card:last-child {
        border-bottom: none;
    }

    .step-number {
        font-size: 1.5rem;
        margin-bottom: 0;
        min-width: 40px;
        color: var(--orange);
    }

    .step-icon {
        display: none;
    }

    .step-card h3 {
        margin-bottom: 0.375rem;
    }

    .step-card p {
        font-size: 0.8125rem;
    }

    .step-connector {
        display: none;
    }

    .about-content h2 {
        font-size: 1.5rem;
    }

    .about-content p {
        font-size: 0.9375rem;
    }

    .about-feature {
        padding: 1rem;
    }

    .contact-info h2 {
        font-size: 1.5rem;
    }

    .contact-form {
        padding: 1.5rem;
    }

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

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

    .footer {
        padding: 3rem 0 0;
    }

    .footer-brand {
        text-align: center;
    }

    .footer-brand .logo {
        justify-content: center;
    }

    .footer-links {
        text-align: center;
    }

    .services,
    .how-it-works,
    .why-us,
    .partners,
    .about,
    .testimonials,
    .contact {
        padding: 2.5rem 0;
    }

    .partner-logo {
        padding: 0.75rem 1rem;
        height: 56px;
        min-width: 130px;
    }

    .partner-logo img {
        max-height: 30px;
        max-width: 100px;
    }

    .partners-track {
        gap: 1rem;
    }

    .whatsapp-float {
        bottom: 16px;
        right: 16px;
        width: 50px;
        height: 50px;
    }

    .whatsapp-float svg {
        width: 24px;
        height: 24px;
    }

    .back-to-top {
        bottom: 76px;
        right: 20px;
        width: 38px;
        height: 38px;
    }

    .map-section iframe {
        height: 250px;
    }
}

/* Small phones (480px and below) */
@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }

    .header-inner {
        height: 64px;
    }

    .nav {
        top: 64px;
    }

    .logo-icon {
        width: 36px;
        height: 36px;
    }

    .logo-name {
        font-size: 1.0625rem;
    }

    .logo-tagline {
        font-size: 0.625rem;
    }

    .hero {
        padding: 5rem 0 2rem;
    }

    .hero-content h1 {
        font-size: 1.625rem;
        line-height: 1.25;
    }

    .hero-subtitle {
        font-size: 0.875rem;
        line-height: 1.6;
    }

    .hero-badge {
        font-size: 0.75rem;
        padding: 0.25rem 0.75rem;
    }

    .btn {
        padding: 0.625rem 1.25rem;
        font-size: 0.875rem;
    }

    .btn-lg {
        padding: 0.75rem 1.5rem;
        font-size: 0.9375rem;
    }

    .section-badge {
        font-size: 0.75rem;
    }

    .section-header h2 {
        font-size: 1.375rem;
    }

    .section-header p {
        font-size: 0.875rem;
    }

    .service-card {
        padding: 1.25rem;
    }

    .service-card h3 {
        font-size: 1.1rem;
    }

    .service-card p {
        font-size: 0.875rem;
    }

    .why-card {
        padding: 1.25rem;
    }

    .why-card h3 {
        font-size: 1.1rem;
    }

    .why-card p {
        font-size: 0.875rem;
    }

    .testimonial-card {
        padding: 1.25rem;
    }

    .testimonial-card > p {
        font-size: 0.875rem;
    }

    .hero-stats {
        gap: 0.5rem;
    }

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

    .stat-suffix {
        font-size: 0.875rem;
    }

    .stat-label {
        font-size: 0.6875rem;
    }

    .founder-profile {
        flex-direction: column;
        text-align: center;
        padding: 1rem;
    }

    .founder-photo-wrapper {
        width: 80px;
        height: 80px;
    }

    .contact-method {
        padding: 0.875rem;
    }

    .contact-method-icon {
        width: 38px;
        height: 38px;
    }

    .contact-method strong {
        font-size: 0.875rem;
    }

    .contact-method span {
        font-size: 0.8125rem;
    }

    .contact-form h3 {
        font-size: 1.1875rem;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 0.625rem 0.875rem;
        font-size: 0.875rem;
    }

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

    .footer-bottom {
        padding: 1.25rem 0;
    }

    .footer-disclaimer {
        font-size: 0.6875rem !important;
    }
}

/* Very small phones (360px and below) */
@media (max-width: 360px) {
    .container {
        padding: 0 0.75rem;
    }

    .hero-content h1 {
        font-size: 1.375rem;
    }

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

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

    .section-header h2 {
        font-size: 1.25rem;
    }
}

/* Touch device improvements */
@media (hover: none) and (pointer: coarse) {
    .service-card:hover,
    .why-card:hover,
    .testimonial-card:hover,
    .about-feature:hover {
        transform: none;
    }

    .btn:hover {
        transform: none;
    }

    .service-link:hover {
        gap: 0.375rem;
    }

    /* Larger tap targets on mobile */
    .nav-link {
        min-height: 44px;
        display: flex;
        align-items: center;
    }

    .btn {
        min-height: 44px;
    }

    .contact-method {
        min-height: 44px;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        min-height: 44px;
    }
}

/* Landscape phones */
@media (max-height: 500px) and (orientation: landscape) {
    .hero {
        min-height: auto;
        padding: 5rem 0 2rem;
    }

    .nav {
        padding: 1rem;
        gap: 0;
    }

    .nav-link {
        padding: 0.5rem 1rem;
        font-size: 0.9375rem;
    }
}

/* === Animations === */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Smooth loading */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}
