/* ---------- RESET & GLOBAL ---------- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
    background: #FFFFFF;
    color: #111827;
    line-height: 1.6;
    scroll-behavior: smooth;
    overflow-x: hidden;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

@media (max-width: 768px) {
    .container { padding: 0 24px; }
}

/* ---------- TYPOGRAPHY ---------- */
h1, h2, h3, h4 {
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -0.03em;
}

h1 {
    font-size: 3.2rem;
    background: linear-gradient(135deg, #0A2540 0%, #1E3A5F 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-bottom: 1rem;
}
@media (max-width: 1024px) { h1 { font-size: 2.5rem; } }
@media (max-width: 768px) { h1 { font-size: 2rem; } }

h2 {
    font-size: 2.6rem;
    margin-bottom: 1rem;
}
@media (max-width: 768px) { h2 { font-size: 2rem; } }

h3 { font-size: 1.4rem; margin-bottom: 0.75rem; font-weight: 700; }

.accent {
    background: linear-gradient(135deg, #F5A623, #FF6B35);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.section {
    padding: 5rem 0;
    position: relative;
}
@media (max-width: 768px) { .section { padding: 3rem 0; } }

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}
.section-title {
    position: relative;
    display: inline-block;
    font-size: 2.5rem;
}
.section-title:after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 20%;
    width: 60%;
    height: 4px;
    background: linear-gradient(90deg, #2C74B3, #F5A623, #FF6B35);
    border-radius: 4px;
}
.section-sub {
    font-size: 1.1rem;
    color: #6B7280;
    max-width: 650px;
    margin: 1.5rem auto 0;
}

/* ---------- COLOUR VARIABLES ---------- */
:root {
    --primary-dark: #0A2540;
    --primary: #2C74B3;
    --primary-light: #E6F0FA;
    --accent: #F5A623;
    --accent-dark: #E8961C;
    --secondary: #FF6B35;
    --gray-50: #F9FAFB;
    --gray-100: #F3F4F6;
    --gray-200: #E5E7EB;
    --gray-600: #6B7280;
    --gray-800: #1F2937;
    --gray-900: #111827;
    --shadow-xs: 0 1px 2px 0 rgba(0,0,0,0.05);
    --shadow-sm: 0 1px 3px 0 rgba(0,0,0,0.1);
    --shadow-md: 0 10px 15px -3px rgba(0,0,0,0.1), 0 4px 6px -2px rgba(0,0,0,0.05);
    --shadow-lg: 0 20px 25px -5px rgba(0,0,0,0.1), 0 10px 10px -5px rgba(0,0,0,0.02);
    --shadow-xl: 0 25px 50px -12px rgba(0,0,0,0.25);
    --shadow-2xl: 0 35px 60px -15px rgba(0,0,0,0.3);
    --glass-bg: rgba(255,255,255,0.85);
    --glass-border: rgba(255,255,255,0.5);
}

/* ---------- BUTTONS ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 0.75rem 1.8rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 60px;
    transition: all 0.3s cubic-bezier(0.2, 0.9, 0.4, 1.1);
    font-size: 0.95rem;
    border: none;
    cursor: pointer;
    font-family: inherit;
    position: relative;
    overflow: hidden;
    z-index: 1;
}
.btn i { font-size: 1rem; }
.btn-lg { padding: 1rem 2rem; font-size: 1rem; }
.btn-sm { padding: 0.5rem 1.2rem; font-size: 0.85rem; }

.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
    box-shadow: 0 4px 12px rgba(44,116,179,0.3);
}
.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(44,116,179,0.4);
}
.btn-outline-dark {
    background: transparent;
    border: 2px solid var(--primary);
    color: var(--primary);
}
.btn-outline-dark:hover {
    background: var(--primary-light);
    transform: translateY(-2px);
}
.btn-outline-light {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.3);
    color: white;
}
.btn-outline-light:hover {
    background: white;
    color: var(--primary-dark);
    transform: translateY(-2px);
}
.btn:focus-visible {
    outline: 3px solid var(--accent);
    outline-offset: 3px;
}

/* ---------- HEADER ---------- */
.site-header {
    background: rgba(255,255,255,0.92);
    backdrop-filter: blur(16px);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}
.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    min-height: 70px;
}
.logo a {
    font-size: 1.6rem;
    font-weight: 800;
    text-decoration: none;
    background: linear-gradient(135deg, var(--primary-dark), var(--primary));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}
.logo-accent { color: var(--accent); background: none; }
.main-nav {
    display: flex;
    align-items: center;
    gap: 2rem;
}
.nav-list {
    display: flex;
    list-style: none;
    gap: 1.8rem;
}
.nav-link {
    text-decoration: none;
    font-weight: 500;
    color: var(--gray-600);
    transition: all 0.2s;
    position: relative;
}
.nav-link:after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    transition: width 0.3s;
}
.nav-link:hover { color: var(--primary); }
.nav-link:hover:after { width: 100%; }
.mobile-nav-toggle { display: none; }
@media (max-width: 1024px) {
    .mobile-nav-toggle {
        display: flex;
        flex-direction: column;
        gap: 5px;
        background: none;
        border: none;
        cursor: pointer;
    }
    .mobile-nav-toggle span {
        width: 26px;
        height: 2px;
        background: var(--gray-900);
        transition: 0.2s;
    }
    .main-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 350px;
        height: 100vh;
        background: rgba(255,255,255,0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: center;
        padding: 2rem;
        transition: right 0.3s ease;
        box-shadow: var(--shadow-xl);
        z-index: 1000;
    }
    .main-nav.active { right: 0; }
    .nav-list { flex-direction: column; align-items: center; gap: 1.5rem; }
    .btn-nav-cta { display: none; }
}

/* ---------- HERO – Full viewport fit, all cards visible ---------- */
.hero {
    background: linear-gradient(135deg, #F8FAFE 0%, #FFFFFF 100%);
    padding: 2rem 0 4rem;
    position: relative;
    overflow: hidden;
    min-height: auto;
}
.hero-bg-orb {
    position: absolute;
    top: -20%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(44,116,179,0.1) 0%, rgba(245,166,35,0.03) 70%);
    border-radius: 50%;
    filter: blur(60px);
}
.hero-bg-orb-secondary {
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255,107,53,0.06) 0%, transparent 70%);
    filter: blur(80px);
}
.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    position: relative;
    z-index: 2;
}
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(44,116,179,0.12);
    backdrop-filter: blur(4px);
    color: var(--primary);
    padding: 0.4rem 1.2rem;
    border-radius: 60px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}
.hero-sub {
    font-size: 1.1rem;
    color: var(--gray-600);
    margin: 0.8rem 0 1.5rem;
    max-width: 500px;
}
.hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}
.hero-trust {
    display: flex;
    gap: 1.5rem;
    margin-top: 1.8rem;
}
.trust-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.85rem;
    background: rgba(255,255,255,0.7);
    padding: 0.4rem 0.8rem;
    border-radius: 60px;
}
.stat-number {
    font-weight: 800;
    font-size: 1rem;
    color: var(--primary-dark);
}
.hero-image-stack {
    position: relative;
    display: flex;
    justify-content: center;
}
.hero-img-wrapper {
    border-radius: 28px;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    width: 100%;
    max-width: 500px;
}
.hero-img-main {
    width: 100%;
    display: block;
}
.hero-img-secondary-wrapper {
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 40%;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 3px solid white;
}
.hero-img-secondary {
    width: 100%;
    display: block;
}
.floating-card {
    position: absolute;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(8px);
    padding: 0.5rem 1rem;
    border-radius: 60px;
    font-weight: 700;
    font-size: 0.75rem;
    box-shadow: var(--shadow-md);
    color: var(--primary);
    white-space: nowrap;
    animation: float 3s ease-in-out infinite;
    z-index: 3;
}
.floating-card-1 { top: 5%; left: -15%; }
.floating-card-2 { bottom: 15%; left: -10%; top: auto; }
.floating-card-3 { top: 30%; right: -10%; left: auto; }  /* moved to right, visible */
@keyframes float {
    0%,100%{ transform: translateY(0); }
    50%{ transform: translateY(-6px); }
}
@media (max-width: 1200px) {
    .floating-card-2, .floating-card-3 { display: none; }
    .floating-card-1 { left: -5%; }
}
@media (max-width: 1024px) {
    .hero-grid { grid-template-columns: 1fr; text-align: center; gap: 2rem; }
    .hero-actions, .hero-trust { justify-content: center; }
    .hero-sub { margin-left: auto; margin-right: auto; }
    .hero-img-secondary-wrapper { display: none; }
    .floating-card { display: none; }
    .hero { padding: 1.5rem 0 3rem; }
}
.hero-wave {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50px;
}
.hero-wave svg { width: 100%; height: 100%; }

/* ---------- TRUSTED BY ---------- */
.trusted-by {
    padding: 1.5rem 0;
    background: var(--gray-50);
    border-top: 1px solid var(--gray-200);
    border-bottom: 1px solid var(--gray-200);
}
.trusted-label {
    text-align: center;
    font-size: 0.75rem;
    letter-spacing: 2px;
    color: var(--gray-600);
    margin-bottom: 1rem;
}
.logo-marquee { overflow: hidden; white-space: nowrap; }
.logo-track {
    display: inline-block;
    animation: marquee 20s linear infinite;
}
.logo-track span {
    display: inline-block;
    margin: 0 1.5rem;
    font-weight: 700;
    font-size: 0.85rem;
    color: var(--gray-800);
}
@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ---------- INDUSTRIES (20 items) ---------- */
.industries {
    background: #FFFFFF;
    border-bottom: 1px solid var(--gray-100);
}
.industries-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.8rem;
}
.industry-card {
    background: var(--gray-50);
    padding: 0.5rem 1.2rem;
    border-radius: 60px;
    font-weight: 500;
    font-size: 0.85rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.2s;
    border: 1px solid var(--gray-200);
}
.industry-card i { color: var(--primary); font-size: 0.9rem; }
.industry-card:hover {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
    transform: translateY(-2px);
}
.industry-card:hover i { color: white; }

/* ---------- SERVICES (6 cards, 3+3 on desktop) ---------- */
.services {
    background: linear-gradient(135deg, #F8FAFE, #FFFFFF);
    border-bottom: 1px solid var(--gray-100);
}
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.8rem;
}
@media (max-width: 1024px) {
    .services-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
    .services-grid { grid-template-columns: 1fr; }
}
.service-card {
    background: white;
    padding: 1.8rem;
    border-radius: 28px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s;
    border: 1px solid var(--gray-100);
}
.service-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-light);
}
.service-icon {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 1rem;
}
.service-link {
    display: inline-block;
    margin-top: 1rem;
    color: var(--primary);
    font-weight: 600;
    text-decoration: none;
}
.service-link:hover { color: var(--accent); }
/* Center the "View All Services" button */
.services .text-center { text-align: center; margin-top: 2.5rem; }

/* ---------- ROLES ---------- */
.roles {
    background: #FFFFFF;
}
.roles-search {
    position: relative;
    max-width: 450px;
    margin: 1.5rem auto 0;
}
.roles-search i {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--gray-400);
}
.roles-search input {
    width: 100%;
    padding: 0.8rem 1rem 0.8rem 2.8rem;
    border: 1px solid var(--gray-200);
    border-radius: 60px;
    font-size: 0.9rem;
}
.role-categories {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1rem;
}
.role-cat-btn {
    background: var(--gray-100);
    border: none;
    padding: 0.4rem 1rem;
    border-radius: 60px;
    font-size: 0.8rem;
    font-weight: 600;
    cursor: pointer;
}
.role-cat-btn.active, .role-cat-btn:hover {
    background: var(--primary);
    color: white;
}
.roles-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.8rem;
    margin-top: 2rem;
}
.role {
    background: var(--gray-50);
    padding: 0.5rem 1.2rem;
    border-radius: 60px;
    font-size: 0.85rem;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 1px solid var(--gray-200);
}
.role i { color: var(--primary); }

/* ---------- WHY US (6 cards, 3+3) ---------- */
.why-us {
    background: linear-gradient(135deg, #F8FAFE, #FFFFFF);
}
.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.8rem;
}
@media (max-width: 1024px) {
    .why-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
    .why-grid { grid-template-columns: 1fr; }
}
.why-item {
    background: white;
    padding: 1.8rem;
    border-radius: 28px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s;
}
.why-item:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}
.why-icon {
    font-size: 2.5rem;
    color: var(--accent);
    margin-bottom: 1rem;
}

/* ---------- PROCESS ---------- */
.process {
    background: #FFFFFF;
}
.process-steps {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 1rem;
}
.step {
    flex: 1;
    background: white;
    padding: 1.5rem;
    border-radius: 24px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    position: relative;
}
.step-icon { font-size: 2rem; color: var(--primary); margin-bottom: 0.5rem; }
.step-num {
    font-size: 0.8rem;
    font-weight: 800;
    color: var(--accent);
    margin-bottom: 0.5rem;
}
.step-connector {
    position: absolute;
    right: -15px;
    top: 40%;
    width: 30px;
    height: 2px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
}
@media (max-width: 1024px) { .step-connector { display: none; } }

/* ---------- CASE STUDIES ---------- */
.case-studies {
    background: linear-gradient(135deg, #F8FAFE, #FFFFFF);
}
.case-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 1.8rem;
}
.case-card {
    background: white;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s;
}
.case-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-xl); }
.case-image {
    height: 200px;
    overflow: hidden;
    position: relative;
}
.case-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}
.case-card:hover .case-image img { transform: scale(1.05); }
.case-category {
    position: absolute;
    bottom: 10px;
    left: 10px;
    background: rgba(0,0,0,0.6);
    color: white;
    padding: 0.2rem 0.8rem;
    border-radius: 60px;
    font-size: 0.7rem;
}
.case-content { padding: 1.2rem; }
.case-meta {
    display: flex;
    gap: 1rem;
    font-size: 0.75rem;
    color: var(--gray-600);
    margin: 0.5rem 0;
}
.case-link {
    display: inline-block;
    margin-top: 0.8rem;
    color: var(--primary);
    font-weight: 600;
    text-decoration: none;
}

/* ---------- URGENT HIRING (Premium) ---------- */
.urgent {
    background: linear-gradient(115deg, #0A2540 0%, #1E3A5F 50%, #2C74B3 100%);
    color: white;
    position: relative;
}
.urgent-bg {
    position: absolute;
    inset: 0;
    background: url('https://images.unsplash.com/photo-1581091226033-d5c48150dbaa?w=1200&h=400&fit=crop') center/cover no-repeat;
    opacity: 0.1;
}
.urgent-banner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 2rem;
    position: relative;
    z-index: 2;
    background: rgba(0,0,0,0.3);
    backdrop-filter: blur(4px);
    border-radius: 48px;
    padding: 2rem;
}
.urgent-badge {
    background: rgba(245,166,35,0.2);
    display: inline-block;
    padding: 0.2rem 1rem;
    border-radius: 60px;
    font-size: 0.75rem;
    margin-bottom: 0.8rem;
}
.urgent-content h3 { font-size: 1.8rem; color: white; }
.urgent-features {
    display: flex;
    gap: 1rem;
    margin: 1rem 0;
    flex-wrap: wrap;
}
.urgent-features span i { margin-right: 5px; }
.urgent-stats {
    display: flex;
    gap: 1.5rem;
    background: rgba(255,255,255,0.1);
    padding: 1rem 1.5rem;
    border-radius: 32px;
}
.stat-value { font-size: 1.8rem; font-weight: 800; }
.stat-value span { font-size: 0.9rem; font-weight: 400; }
@media (max-width: 768px) {
    .urgent-banner { flex-direction: column; text-align: center; }
    .urgent-stats { justify-content: center; }
}

/* ---------- LEAD FORM (2-column) – COMPLETE ---------- */
.lead-section {
    background: #FFFFFF;
}
.lead-wrapper-2col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    background: white;
    border-radius: 40px;
    box-shadow: var(--shadow-xl);
    overflow: hidden;
    border: 1px solid var(--gray-100);
}
.lead-left {
    background: linear-gradient(135deg, var(--primary-light), #FFFFFF);
    padding: 2rem;
}
.lead-badge {
    display: inline-block;
    background: var(--primary);
    color: white;
    padding: 0.2rem 1rem;
    border-radius: 60px;
    font-size: 0.7rem;
    margin-bottom: 1rem;
}
.lead-desc { margin: 1rem 0; color: var(--gray-600); }
.lead-benefits {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.8rem;
    margin: 1.5rem 0;
}
.lead-benefits div {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
}
.lead-testimonial-mini {
    background: white;
    padding: 1rem;
    border-radius: 20px;
    border-left: 4px solid var(--accent);
    font-size: 0.85rem;
}
.mini-author {
    margin-top: 0.5rem;
    font-weight: 600;
    font-size: 0.75rem;
}
.lead-right {
    padding: 2rem;
    background: white;
}
/* Form inside lead-right – already styled in global form-group, but ensure consistency */
.form-group {
    margin-bottom: 1.2rem;
}
.form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 0.4rem;
    font-size: 0.85rem;
}
.form-group input, .form-group textarea {
    width: 100%;
    padding: 0.8rem 1rem;
    border: 1px solid var(--gray-200);
    border-radius: 20px;
    font-family: inherit;
    font-size: 0.9rem;
}
.btn-submit {
    width: 100%;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
    padding: 0.9rem;
    border-radius: 60px;
    font-weight: 700;
}
.form-trust {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 1rem;
    font-size: 0.7rem;
    color: var(--gray-500);
}
.form-trust i { margin-right: 4px; color: var(--accent); }
@media (max-width: 768px) {
    .lead-wrapper-2col { grid-template-columns: 1fr; }
    .lead-benefits { grid-template-columns: 1fr; }
}

/* ---------- FAQ ---------- */
.faq {
    background: linear-gradient(135deg, #F8FAFE, #FFFFFF);
}
.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 1.2rem;
}
.faq-item {
    background: white;
    padding: 1.2rem;
    border-radius: 24px;
    display: flex;
    gap: 1rem;
    box-shadow: var(--shadow-sm);
}
.faq-icon {
    font-size: 1.8rem;
    color: var(--accent);
    flex-shrink: 0;
}
.faq-content h3 {
    font-size: 1rem;
    margin-bottom: 0.3rem;
}
.faq-content p {
    font-size: 0.85rem;
    color: var(--gray-600);
}

/* ---------- TESTIMONIALS (Premium) ---------- */
.testimonials {
    background: #FFFFFF;
}
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.8rem;
}
@media (max-width: 1024px) {
    .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
    .testimonials-grid { grid-template-columns: 1fr; }
}
.testimonial-card {
    background: white;
    padding: 1.5rem;
    border-radius: 28px;
    box-shadow: var(--shadow-md);
    transition: all 0.3s;
}
.testimonial-card:hover { transform: translateY(-5px); }
.testimonial-stars {
    color: #F5A623;
    font-size: 1rem;
    margin-bottom: 0.8rem;
}
.testimonial-text {
    font-size: 0.9rem;
    line-height: 1.5;
    color: var(--gray-600);
    margin-bottom: 1rem;
}
.testimonial-author {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}
.testimonial-author img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
}
.testimonial-author strong {
    display: block;
    font-size: 0.9rem;
}
.testimonial-author span {
    font-size: 0.7rem;
    color: var(--gray-500);
}

/* ---------- FINAL CTA ---------- */
.final-cta {
    background: linear-gradient(135deg, #0A2540, #1E3A5F, #2C74B3);
    color: white;
    text-align: center;
    position: relative;
}
.cta-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(245,166,35,0.3), transparent);
    transform: translate(-50%, -50%);
    filter: blur(40px);
    animation: glowPulse 4s infinite;
}
@keyframes glowPulse {
    0%,100%{ opacity: 0.5; transform: translate(-50%, -50%) scale(1); }
    50%{ opacity: 1; transform: translate(-50%, -50%) scale(1.2); }
}
.final-cta h2 { color: white; font-size: 2.2rem; margin-bottom: 0.5rem; }
.final-actions {
    display: flex;
    gap: 1.2rem;
    justify-content: center;
    margin-top: 2rem;
    flex-wrap: wrap;
}

/* ---------- FLOATING WHATSAPP & STICKY CTA ---------- */
.floating-whatsapp {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 999;
}
.floating-whatsapp a {
    display: flex;
    width: 55px;
    height: 55px;
    background: #25D366;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(37,211,102,0.4);
    transition: transform 0.2s;
}
.floating-whatsapp a:hover { transform: scale(1.1); }
.floating-whatsapp i { font-size: 1.8rem; color: white; }
.sticky-mobile-cta {
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    z-index: 999;
    display: none;
}
.sticky-mobile-cta .btn {
    width: 100%;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
    border-radius: 60px;
    padding: 0.8rem;
}
.sticky-mobile-cta.visible { display: block; }
@media (min-width: 769px) { .sticky-mobile-cta { display: none !important; } }

/* ---------- FOOTER ---------- */
.site-footer {
    background: var(--gray-900);
    color: #9CA3AF;
    padding: 3rem 0 1.5rem;
}
.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
}
.footer-logo {
    font-size: 1.4rem;
    font-weight: 800;
    background: linear-gradient(135deg, white, #9CA3AF);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}
.footer-links h4 {
    color: white;
    font-size: 1rem;
    margin-bottom: 0.8rem;
}
.footer-links ul { list-style: none; }
.footer-links li { margin-bottom: 0.5rem; }
.footer-links a {
    color: #9CA3AF;
    text-decoration: none;
    font-size: 0.85rem;
}
.footer-links a:hover { color: white; }
.footer-bottom {
    text-align: center;
    padding-top: 1.5rem;
    margin-top: 2rem;
    border-top: 1px solid #1F2937;
    font-size: 0.75rem;
}

/* ---------- SCROLL REVEAL ---------- */
[data-aos] {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s cubic-bezier(0.2, 0.9, 0.4, 1.1);
}
[data-aos].aos-animate {
    opacity: 1;
    transform: translateY(0);
}