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

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    color: #1a1a2e;
    line-height: 1.6;
    background: #fff;
    -webkit-font-smoothing: antialiased;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.2s;
}

ul { list-style: none; }
img { max-width: 100%; display: block; }

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

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

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

/* ========== BUTTONS ========== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 15px;
    border: 2px solid transparent;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
    position: relative;
    overflow: hidden;
}

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

.btn:active::after {
    width: 300px;
    height: 300px;
}

.btn-primary {
    background: linear-gradient(135deg, #0066ff, #0052cc);
    color: #fff;
    border-color: #0066ff;
    box-shadow: 0 2px 8px rgba(0, 102, 255, 0.2);
}
.btn-primary:hover {
    background: linear-gradient(135deg, #0052cc, #003d99);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 102, 255, 0.35);
}

.btn-outline {
    background: transparent;
    color: #0066ff;
    border-color: #0066ff;
}
.btn-outline:hover {
    background: #0066ff;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 102, 255, 0.25);
}

.btn-white {
    background: #fff;
    color: #0066ff;
    border-color: #fff;
    font-weight: 700;
}
.btn-white:hover {
    background: #f0f4ff;
    transform: translateY(-2px);
}

.btn-whatsapp {
    background: linear-gradient(135deg, #25D366, #1fb855);
    color: #fff;
    border-color: #25D366;
    box-shadow: 0 2px 8px rgba(37, 211, 102, 0.2);
}
.btn-whatsapp:hover {
    background: linear-gradient(135deg, #1fb855, #1a9e49);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.35);
}

.btn-whatsapp-dark {
    background: linear-gradient(135deg, #25D366, #1fb855);
    color: #fff;
    border-color: #25D366;
}
.btn-whatsapp-dark:hover {
    background: linear-gradient(135deg, #1fb855, #1a9e49);
    transform: translateY(-2px);
}

.btn-lg {
    padding: 15px 30px;
    font-size: 16px;
    border-radius: 12px;
}

.btn-block {
    display: flex;
    justify-content: center;
    width: 100%;
}

/* ========== TOP BAR ========== */
.top-bar {
    background: linear-gradient(90deg, #0a1628, #0f2240);
    color: #c0cfe0;
    font-size: 13px;
    padding: 8px 0;
}

.top-bar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
}

.top-bar-left, .top-bar-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.top-bar a { transition: color 0.2s; }
.top-bar a:hover { color: #fff; }

.top-bar i {
    margin-right: 5px;
    color: #4d9fff;
}

/* ========== HEADER ========== */
.header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(232, 236, 242, 0.8);
    transition: all 0.3s;
}

.header.scrolled {
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.08);
    border-bottom-color: transparent;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 20px;
}

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

.logo-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.logo-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

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

.logo-name {
    font-size: 18px;
    font-weight: 800;
    color: #0a1628;
    line-height: 1.2;
}

.logo-tagline {
    font-size: 11px;
    color: #64748b;
    font-weight: 500;
}

.nav-desktop {
    display: flex;
    gap: 32px;
}

.nav-desktop a {
    font-size: 15px;
    font-weight: 500;
    color: #4a5568;
    transition: color 0.2s;
    position: relative;
}

.nav-desktop a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: #0066ff;
    transition: width 0.3s;
    border-radius: 2px;
}

.nav-desktop a:hover {
    color: #0066ff;
}

.nav-desktop a:hover::after {
    width: 100%;
}

.header-cta {
    padding: 10px 22px;
    font-size: 14px;
    border-radius: 10px;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 22px;
    color: #1a1a2e;
    cursor: pointer;
}

.nav-mobile {
    display: none;
    flex-direction: column;
    background: #fff;
    border-top: 1px solid #e8ecf2;
    padding: 16px 20px;
}

.nav-mobile.active { display: flex; }

.nav-mobile a {
    padding: 12px 0;
    font-weight: 500;
    color: #4a5568;
    border-bottom: 1px solid #f1f5f9;
    font-size: 15px;
}

/* ========== HERO ========== */
.hero {
    background: linear-gradient(160deg, #f0f5ff 0%, #e4f0ff 30%, #eef8f5 60%, #f5f0ff 100%);
    padding: 70px 0 80px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -200px;
    right: -100px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(0, 102, 255, 0.07) 0%, transparent 70%);
    border-radius: 50%;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -150px;
    left: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(0, 180, 216, 0.05) 0%, transparent 70%);
    border-radius: 50%;
}

.hero-inner {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(0, 102, 255, 0.08);
    color: #0066ff;
    padding: 8px 18px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 24px;
    border: 1px solid rgba(0, 102, 255, 0.12);
}

.hero h1 {
    font-size: 48px;
    font-weight: 900;
    line-height: 1.12;
    color: #0a1628;
    margin-bottom: 18px;
    letter-spacing: -0.5px;
}

.hero .highlight {
    background: linear-gradient(135deg, #0066ff, #00b4d8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 18px;
    color: #4a5568;
    margin-bottom: 28px;
    line-height: 1.7;
    max-width: 520px;
}

.hero-features {
    display: flex;
    gap: 24px;
    margin-bottom: 36px;
    flex-wrap: wrap;
}

.hero-feature {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    font-size: 14px;
    color: #1a1a2e;
}

.hero-feature i {
    color: #0066ff;
    font-size: 16px;
}

.hero-ctas {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.hero-image {
    position: relative;
}

.hero-image img {
    border-radius: 24px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
    width: 100%;
    height: 440px;
    object-fit: cover;
}

.hero-image-badge {
    position: absolute;
    bottom: -20px;
    left: 24px;
    background: #fff;
    padding: 16px 22px;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12);
    display: flex;
    align-items: center;
    gap: 12px;
    border: 1px solid rgba(0, 102, 255, 0.08);
}

.hero-image-badge i {
    font-size: 30px;
    color: #0066ff;
}

.hero-image-badge strong {
    font-size: 22px;
    color: #0a1628;
    display: block;
    line-height: 1.1;
}

.hero-image-badge span {
    font-size: 12px;
    color: #64748b;
}

/* ========== TRUST STRIP ========== */
.trust-strip {
    background: linear-gradient(90deg, #0a1628, #0f2240);
    padding: 30px 0;
    position: relative;
}

.trust-strip::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0, 102, 255, 0.3), transparent);
}

.trust-strip-inner {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 14px;
    color: #fff;
}

.trust-item i {
    font-size: 28px;
    color: #4d9fff;
}

.trust-item strong {
    font-size: 24px;
    display: block;
    line-height: 1.1;
    font-weight: 800;
}

.trust-item span {
    font-size: 13px;
    color: #8ba3c4;
}

/* ========== SECTION HEADER ========== */
.section-header {
    text-align: center;
    margin-bottom: 56px;
}

.section-tag {
    display: inline-block;
    background: linear-gradient(135deg, rgba(0, 102, 255, 0.08), rgba(0, 180, 216, 0.08));
    color: #0066ff;
    padding: 6px 18px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 14px;
    border: 1px solid rgba(0, 102, 255, 0.1);
}

.section-header h2 {
    font-size: 38px;
    font-weight: 800;
    color: #0a1628;
    margin-bottom: 12px;
    letter-spacing: -0.3px;
}

.section-header p {
    font-size: 17px;
    color: #64748b;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* ========== SERVICES ========== */
.services {
    padding: 90px 0;
    background: #f8fafc;
}

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

.service-card {
    background: #fff;
    border-radius: 20px;
    padding: 0;
    border: 1px solid #e8ecf2;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
    border-color: transparent;
}

.service-featured {
    border-color: #0066ff;
    box-shadow: 0 8px 30px rgba(0, 102, 255, 0.12);
}

.service-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    background: linear-gradient(135deg, #0066ff, #0052cc);
    color: #fff;
    padding: 5px 14px;
    border-radius: 50px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    z-index: 2;
    letter-spacing: 0.5px;
}

.service-icon {
    height: 200px;
    overflow: hidden;
    position: relative;
}

.service-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.service-card:hover .service-icon img {
    transform: scale(1.08);
}

.service-icon::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 40px;
    background: linear-gradient(transparent, rgba(255,255,255,0.8));
}

.service-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: #0a1628;
    margin-bottom: 8px;
    padding: 20px 24px 0;
}

.service-card p {
    font-size: 14px;
    color: #64748b;
    margin-bottom: 16px;
    line-height: 1.6;
    padding: 0 24px;
}

.service-features {
    margin-bottom: 20px;
    flex-grow: 1;
    padding: 0 24px;
}

.service-features li {
    font-size: 13px;
    color: #4a5568;
    padding: 5px 0;
    display: flex;
    align-items: center;
    gap: 8px;
}

.service-features i {
    color: #10b981;
    font-size: 12px;
    width: 16px;
    flex-shrink: 0;
}

.service-card .btn {
    margin: 0 24px 24px;
    width: calc(100% - 48px);
}

/* ========== WHY US ========== */
.why-us {
    padding: 90px 0;
}

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

.why-card {
    text-align: center;
    padding: 40px 28px;
    border-radius: 20px;
    background: #fff;
    border: 1px solid #e8ecf2;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
}

.why-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #0066ff, #00b4d8);
    border-radius: 20px 20px 0 0;
    opacity: 0;
    transition: opacity 0.3s;
}

.why-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 50px rgba(0, 0, 0, 0.08);
    border-color: transparent;
}

.why-card:hover::before {
    opacity: 1;
}

.why-icon {
    width: 68px;
    height: 68px;
    background: linear-gradient(135deg, #e8f0ff, #dbeafe);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: #0066ff;
    margin: 0 auto 20px;
    transition: all 0.3s;
}

.why-card:hover .why-icon {
    background: linear-gradient(135deg, #0066ff, #0052cc);
    color: #fff;
    transform: scale(1.1);
}

.why-card h3 {
    font-size: 18px;
    font-weight: 700;
    color: #0a1628;
    margin-bottom: 10px;
}

.why-card p {
    font-size: 14px;
    color: #64748b;
    line-height: 1.7;
}

/* ========== HOW IT WORKS ========== */
.how-it-works {
    padding: 90px 0;
    background: linear-gradient(160deg, #f0f5ff 0%, #eef8f5 50%, #f5f0ff 100%);
    position: relative;
}

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

.step-card {
    text-align: center;
    padding: 44px 32px;
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    position: relative;
    flex: 1;
    max-width: 320px;
    border: 1px solid rgba(0, 102, 255, 0.06);
    transition: all 0.3s ease;
}

.step-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
}

.step-number {
    position: absolute;
    top: -16px;
    left: 50%;
    transform: translateX(-50%);
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, #0066ff, #0052cc);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 15px;
    box-shadow: 0 4px 12px rgba(0, 102, 255, 0.3);
}

.step-icon {
    font-size: 38px;
    color: #0066ff;
    margin-bottom: 18px;
}

.step-card h3 {
    font-size: 18px;
    font-weight: 700;
    color: #0a1628;
    margin-bottom: 10px;
}

.step-card p {
    font-size: 14px;
    color: #64748b;
    line-height: 1.7;
}

.step-connector {
    color: #0066ff;
    font-size: 20px;
    opacity: 0.5;
}

/* ========== CTA BANNER ========== */
.cta-banner {
    background: linear-gradient(135deg, #0066ff 0%, #0044cc 50%, #003399 100%);
    padding: 70px 0;
    position: relative;
    overflow: hidden;
}

.cta-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255,255,255,0.08) 0%, transparent 70%);
    border-radius: 50%;
}

.cta-banner::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -5%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255,255,255,0.05) 0%, transparent 70%);
    border-radius: 50%;
}

.cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

.cta-content h2 {
    font-size: 34px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 10px;
}

.cta-content p {
    font-size: 17px;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.6;
}

.cta-buttons {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

/* ========== TESTIMONIALS ========== */
.testimonials {
    padding: 90px 0;
}

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

.testimonial-card {
    background: #fff;
    border: 1px solid #e8ecf2;
    border-radius: 20px;
    padding: 32px;
    transition: all 0.3s ease;
    position: relative;
}

.testimonial-card::before {
    content: '\201C';
    position: absolute;
    top: 20px;
    right: 24px;
    font-size: 60px;
    color: #e8ecf2;
    font-family: Georgia, serif;
    line-height: 1;
}

.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
    border-color: transparent;
}

.stars {
    color: #f59e0b;
    font-size: 14px;
    margin-bottom: 16px;
    display: flex;
    gap: 2px;
}

.testimonial-card > p {
    font-size: 15px;
    color: #4a5568;
    line-height: 1.7;
    margin-bottom: 24px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-top: 16px;
    border-top: 1px solid #f1f5f9;
}

.author-avatar {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, #0066ff, #00b4d8);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 14px;
}

.testimonial-author strong {
    display: block;
    font-size: 15px;
    color: #0a1628;
}

.testimonial-author span {
    font-size: 12px;
    color: #94a3b8;
}

/* ========== CONTACT ========== */
.contact {
    padding: 90px 0;
    background: linear-gradient(180deg, #f8fafc, #f0f4ff);
}

.contact-inner {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 56px;
    align-items: start;
}

.contact-info h2 {
    font-size: 34px;
    font-weight: 800;
    color: #0a1628;
    margin-bottom: 12px;
}

.contact-info > p {
    font-size: 16px;
    color: #64748b;
    margin-bottom: 36px;
    line-height: 1.6;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.contact-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #e8f0ff, #dbeafe);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0066ff;
    font-size: 18px;
    flex-shrink: 0;
    transition: all 0.3s;
}

.contact-item:hover .contact-icon {
    background: linear-gradient(135deg, #0066ff, #0052cc);
    color: #fff;
}

.contact-item strong {
    display: block;
    font-size: 14px;
    color: #0a1628;
    margin-bottom: 3px;
}

.contact-item a, .contact-item span {
    font-size: 14px;
    color: #64748b;
}

.contact-item a:hover {
    color: #0066ff;
}

/* ========== FORM ========== */
.contact-form-wrapper {
    background: #fff;
    border-radius: 24px;
    padding: 40px;
    box-shadow: 0 12px 50px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 102, 255, 0.06);
}

.contact-form h3 {
    font-size: 24px;
    font-weight: 700;
    color: #0a1628;
    margin-bottom: 28px;
    text-align: center;
}

.form-group {
    margin-bottom: 16px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    border: 1.5px solid #e2e8f0;
    border-radius: 12px;
    font-size: 15px;
    font-family: inherit;
    color: #1a1a2e;
    background: #f8fafc;
    transition: all 0.25s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #0066ff;
    box-shadow: 0 0 0 4px rgba(0, 102, 255, 0.08);
    background: #fff;
}

.form-group textarea {
    resize: vertical;
}

.form-note {
    text-align: center;
    font-size: 13px;
    color: #94a3b8;
    margin-top: 14px;
}

.form-success {
    text-align: center;
    padding: 30px 0;
}

.form-success i {
    font-size: 52px;
    color: #10b981;
    margin-bottom: 16px;
}

.form-success h3 {
    margin-bottom: 8px;
}

.form-success p {
    color: #64748b;
    margin-bottom: 20px;
}

/* ========== FAQ ========== */
.faq {
    padding: 90px 0;
}

.faq-grid {
    max-width: 780px;
    margin: 0 auto;
}

.faq-item {
    background: #fff;
    border: 1px solid #e8ecf2;
    border-radius: 14px;
    margin-bottom: 12px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.25s;
}

.faq-item:hover {
    border-color: #c0d4ff;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px;
    font-weight: 600;
    font-size: 15px;
    color: #0a1628;
}

.faq-question i {
    transition: transform 0.3s;
    color: #0066ff;
    font-size: 13px;
    flex-shrink: 0;
    margin-left: 12px;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-answer p {
    padding: 0 24px 20px;
    font-size: 14px;
    color: #64748b;
    line-height: 1.7;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-item.active .faq-answer {
    max-height: 300px;
}

.faq-item.active {
    background: #f8fafc;
    border-color: #0066ff;
    box-shadow: 0 4px 20px rgba(0, 102, 255, 0.08);
}

/* ========== FOOTER ========== */
.footer {
    background: linear-gradient(180deg, #0a1628, #06101e);
    color: #94a3b8;
    padding: 64px 0 0;
}

.footer-inner {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 44px;
    padding-bottom: 44px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-logo .logo-icon {
    background: #fff;
    border-radius: 50%;
}

.footer-logo .logo-name {
    color: #fff;
}

.footer-col > p {
    font-size: 14px;
    line-height: 1.7;
    margin-top: 16px;
}

.social-links {
    display: flex;
    gap: 10px;
    margin-top: 24px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.06);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #94a3b8;
    transition: all 0.3s;
}

.social-links a:hover {
    background: #0066ff;
    color: #fff;
    transform: translateY(-2px);
}

.footer-col h4 {
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 20px;
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul li a {
    font-size: 14px;
    color: #94a3b8;
    transition: all 0.2s;
}

.footer-col ul li a:hover {
    color: #fff;
    padding-left: 4px;
}

.footer-col ul li i {
    margin-right: 8px;
    color: #4d9fff;
    width: 16px;
}

.footer-bottom {
    padding: 22px 0;
    text-align: center;
    font-size: 13px;
}

/* ========== FLOATING WHATSAPP ========== */
.whatsapp-float {
    position: fixed;
    bottom: 90px;
    right: 24px;
    width: 58px;
    height: 58px;
    background: linear-gradient(135deg, #25D366, #1fb855);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: all 0.3s;
    animation: whatsappPulse 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.12);
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.5);
}

@keyframes whatsappPulse {
    0% { box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4); }
    50% { box-shadow: 0 4px 30px rgba(37, 211, 102, 0.65); }
    100% { box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4); }
}

/* ========== MOBILE CTA BAR ========== */
.mobile-cta {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 999;
    background: linear-gradient(90deg, #0a1628, #0f2240);
    padding: 10px 12px;
    gap: 10px;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.2);
}

.mobile-cta-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 15px;
    color: #fff;
    transition: all 0.2s;
}

.mobile-cta-btn.call {
    background: linear-gradient(135deg, #0066ff, #0052cc);
}

.mobile-cta-btn.whatsapp {
    background: linear-gradient(135deg, #25D366, #1fb855);
}

.mobile-cta-btn:active {
    transform: scale(0.97);
}

/* ========== POPUP MODAL ========== */
.popup-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(10, 22, 40, 0.75);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    z-index: 10000;
    justify-content: center;
    align-items: center;
    padding: 20px;
    animation: fadeIn 0.25s ease;
}

.popup-overlay.active {
    display: flex;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

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

.popup-modal {
    background: #fff;
    border-radius: 24px;
    width: 100%;
    max-width: 430px;
    padding: 36px;
    position: relative;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.3);
    animation: slideUp 0.3s ease;
    max-height: 90vh;
    overflow-y: auto;
}

.popup-close {
    position: absolute;
    top: 14px;
    right: 18px;
    background: #f1f5f9;
    border: none;
    font-size: 22px;
    color: #64748b;
    cursor: pointer;
    line-height: 1;
    transition: all 0.2s;
    z-index: 1;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.popup-close:hover {
    background: #e2e8f0;
    color: #1a1a2e;
}

.popup-header {
    text-align: center;
    margin-bottom: 26px;
}

.popup-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #e8f0ff, #dbeafe);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    color: #0066ff;
    margin: 0 auto 16px;
}

.popup-header h3 {
    font-size: 24px;
    font-weight: 800;
    color: #0a1628;
    margin-bottom: 6px;
}

.popup-header p {
    font-size: 14px;
    color: #64748b;
}

.popup-form .form-group {
    margin-bottom: 14px;
}

.popup-form .form-group input,
.popup-form .form-group select {
    width: 100%;
    padding: 14px 18px;
    border: 1.5px solid #e2e8f0;
    border-radius: 12px;
    font-size: 15px;
    font-family: inherit;
    color: #1a1a2e;
    background: #f8fafc;
    transition: all 0.25s;
}

.popup-form .form-group input:focus,
.popup-form .form-group select:focus {
    outline: none;
    border-color: #0066ff;
    box-shadow: 0 0 0 4px rgba(0, 102, 255, 0.08);
    background: #fff;
}

.popup-form .form-note {
    text-align: center;
    font-size: 12px;
    color: #94a3b8;
    margin-top: 12px;
}

.popup-form .form-note i {
    margin-right: 4px;
    font-size: 11px;
}

.popup-success {
    text-align: center;
    padding: 24px 0;
}

.popup-success i {
    font-size: 56px;
    color: #10b981;
    margin-bottom: 16px;
    display: block;
}

.popup-success h3 {
    font-size: 24px;
    font-weight: 800;
    color: #0a1628;
    margin-bottom: 8px;
}

.popup-success p {
    font-size: 15px;
    color: #64748b;
    margin-bottom: 24px;
    line-height: 1.6;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 1024px) {
    .hero h1 { font-size: 38px; }
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .why-grid { grid-template-columns: repeat(2, 1fr); }
    .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
    .top-bar { display: none; }
    .nav-desktop, .header-cta { display: none; }
    .mobile-menu-btn { display: block; }

    .hero-inner {
        grid-template-columns: 1fr;
        gap: 32px;
        text-align: center;
    }

    .hero { padding: 40px 0 50px; }
    .hero h1 { font-size: 32px; }
    .hero-subtitle { margin: 0 auto 28px; }
    .hero-badge { justify-content: center; }
    .hero-features { justify-content: center; }

    .hero-ctas {
        justify-content: center;
        flex-direction: column;
        align-items: center;
    }

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

    .hero-image img { height: 280px; }

    .trust-strip-inner { justify-content: center; }
    .trust-item { width: 45%; justify-content: center; }

    .section-header h2 { font-size: 28px; }
    .section-header { margin-bottom: 40px; }

    .services-grid, .why-grid, .testimonials-grid {
        grid-template-columns: 1fr;
        max-width: 420px;
        margin: 0 auto;
    }

    .steps-grid { flex-direction: column; }
    .step-connector { transform: rotate(90deg); }
    .step-card { max-width: 100%; width: 100%; }

    .cta-inner {
        text-align: center;
        justify-content: center;
    }

    .cta-content h2 { font-size: 26px; }

    .cta-buttons {
        justify-content: center;
        width: 100%;
    }

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

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

    .mobile-cta { display: flex; }
    .whatsapp-float { bottom: 80px; }
    body { padding-bottom: 70px; }

    .services, .why-us, .how-it-works, .testimonials, .contact, .faq {
        padding: 60px 0;
    }
}

@media (max-width: 480px) {
    .hero h1 { font-size: 28px; }
    .container { padding: 0 16px; }
    .contact-form-wrapper { padding: 28px 20px; }
    .popup-modal { padding: 28px 20px; }
    .service-card h3 { padding: 16px 20px 0; }
    .service-card p { padding: 0 20px; }
    .service-features { padding: 0 20px; }
    .service-card .btn { margin: 0 20px 20px; width: calc(100% - 40px); }
}
