/* =========================================
   PT. AKSES LINTAS RAKYAT — WEBSITE
   Theme: Putih, Biru (#0a3d91), Orange (#f58220)
   ========================================= */

/* ===== CSS VARIABLES ===== */
:root {
    --blue-primary:   #0a3d91;
    --blue-dark:      #062b6b;
    --blue-darker:    #041a45;
    --blue-light:     #e8f0fe;
    --blue-mid:       #1a57c9;
    --orange-primary: #f58220;
    --orange-dark:    #d4700f;
    --orange-light:   #fff3e8;
    --white:          #ffffff;
    --off-white:      #f4f7fb;
    --text-dark:      #1a2340;
    --text-mid:       #4a5568;
    --text-light:     #718096;
    --border:         #e2e8f0;
    --shadow-sm:      0 2px 8px rgba(10, 61, 145, 0.08);
    --shadow-md:      0 8px 24px rgba(10, 61, 145, 0.10);
    --shadow-lg:      0 20px 50px rgba(10, 61, 145, 0.15);
    --shadow-orange:  0 8px 24px rgba(245, 130, 32, 0.25);
    --radius-sm:      8px;
    --radius-md:      14px;
    --radius-lg:      20px;
    --radius-xl:      28px;
    --transition:     all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    --font:           'Plus Jakarta Sans', sans-serif;
}

/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
    font-family: var(--font);
    color: var(--text-dark);
    background: var(--off-white);
    line-height: 1.65;
    overflow-x: hidden;
}
a { text-decoration: none; color: inherit; transition: var(--transition); }
ul { list-style: none; }
img { max-width: 100%; display: block; }

/* ===== CONTAINER ===== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}
.section-padding { padding: 100px 0; }

/* ===== SECTION LABEL & HEADING ===== */
.section-label {
    display: inline-block;
    background: var(--blue-light);
    color: var(--blue-primary);
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 6px 16px;
    border-radius: 30px;
    margin-bottom: 16px;
}
.section-heading {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text-dark);
    line-height: 1.25;
    margin-bottom: 16px;
}
.section-heading span.highlight { color: var(--orange-primary); }
.section-title.centered { text-align: center; margin-bottom: 60px; }
.section-title.centered p {
    color: var(--text-mid);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 700;
    font-family: var(--font);
    font-size: 0.95rem;
    border: 2px solid transparent;
    cursor: pointer;
    transition: var(--transition);
    white-space: nowrap;
}
.btn-primary {
    background: var(--orange-primary);
    color: var(--white);
    box-shadow: var(--shadow-orange);
}
.btn-primary:hover { background: var(--orange-dark); transform: translateY(-2px); box-shadow: 0 12px 30px rgba(245,130,32,0.35); color: var(--white); }

.btn-outline-blue {
    background: transparent;
    color: var(--blue-primary);
    border-color: var(--blue-primary);
}
.btn-outline-blue:hover { background: var(--blue-primary); color: var(--white); transform: translateY(-2px); }

.btn-outline-white {
    background: transparent;
    color: var(--white);
    border-color: rgba(255,255,255,0.7);
}
.btn-outline-white:hover { background: rgba(255,255,255,0.15); transform: translateY(-2px); }

.btn-white {
    background: var(--white);
    color: var(--blue-primary);
    font-weight: 800;
}
.btn-white:hover { background: var(--blue-light); transform: translateY(-2px); }

.btn-large { padding: 16px 36px; font-size: 1.05rem; }
.btn-sm { padding: 9px 20px; font-size: 0.9rem; }
.btn-block { width: 100%; }

/* ===== TOPBAR ===== */
.topbar {
    background: var(--blue-darker);
    color: rgba(255,255,255,0.8);
    font-size: 0.82rem;
    padding: 8px 0;
}
.topbar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
}
.topbar-right { display: flex; align-items: center; gap: 12px; }
.topbar a { color: rgba(255,255,255,0.8); }
.topbar a:hover { color: var(--orange-primary); }
.topbar .divider { opacity: 0.3; }

/* ===== NAVBAR ===== */
.navbar {
    position: sticky;
    top: 0;
    z-index: 999;
    background: rgba(255,255,255,0.97);
    backdrop-filter: blur(12px);
    box-shadow: var(--shadow-sm);
    border-bottom: 1px solid var(--border);
    transition: var(--transition);
}
.navbar.scrolled { box-shadow: var(--shadow-md); }
.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 24px;
    max-width: 1200px;
    margin: 0 auto;
    gap: 24px;
}
.logo img { height: 48px; width: auto; object-fit: contain; }
.nav-links { display: flex; gap: 6px; }
.nav-link {
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--text-mid);
    padding: 7px 12px;
    border-radius: var(--radius-sm);
    transition: var(--transition);
}
.nav-link:hover, .nav-link.active { color: var(--blue-primary); background: var(--blue-light); }
.nav-cta { padding: 10px 22px; font-size: 0.9rem; }
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
}
.hamburger span {
    display: block; width: 24px; height: 2.5px;
    background: var(--blue-primary); border-radius: 2px;
    transition: var(--transition);
}
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ===== HERO ===== */
.hero {
    position: relative;
    min-height: calc(100vh - 90px);
    background: linear-gradient(135deg, var(--blue-darker) 0%, var(--blue-primary) 60%, var(--blue-mid) 100%);
    display: flex;
    align-items: center;
    padding: 80px 0 130px;
    overflow: hidden;
}
.hero-bg-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    pointer-events: none;
}
.glow-1 { width: 500px; height: 500px; background: rgba(245,130,32,0.2); top: -150px; left: -100px; }
.glow-2 { width: 350px; height: 350px; background: rgba(100,180,255,0.15); bottom: 0; right: -80px; }
.glow-3 { width: 250px; height: 250px; background: rgba(255,255,255,0.05); top: 40%; left: 40%; }

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 60px;
}
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.2);
    color: rgba(255,255,255,0.9);
    padding: 8px 18px;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 28px;
    backdrop-filter: blur(6px);
}
.pulse-dot {
    width: 10px; height: 10px;
    background: #4ade80;
    border-radius: 50%;
    display: inline-block;
    animation: pulse 2s infinite;
}
@keyframes pulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(74,222,128,0.6); }
    50% { box-shadow: 0 0 0 8px rgba(74,222,128,0); }
}
.hero-text h1 {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--white);
    line-height: 1.15;
    margin-bottom: 24px;
}
.hero-text h1 .highlight { color: var(--orange-primary); }
.hero-text > p {
    color: rgba(255,255,255,0.8);
    font-size: 1.1rem;
    max-width: 520px;
    margin-bottom: 40px;
}
.hero-stats {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}
.stat-item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}
.stat-num {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--white);
    line-height: 1;
}
.stat-plus, .stat-pct {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--orange-primary);
    margin-left: 2px;
}
.stat-label { font-size: 0.82rem; color: rgba(255,255,255,0.65); font-weight: 500; margin-top: 4px; }
.stat-divider { width: 1px; height: 50px; background: rgba(255,255,255,0.2); }
.hero-buttons { display: flex; gap: 16px; flex-wrap: wrap; }

/* Hero Visual */
.hero-visual { display: flex; align-items: center; justify-content: center; }
.hero-card-float {
    position: relative;
    width: 340px;
    height: 340px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.signal-rings {
    position: relative;
    width: 200px; height: 200px;
    display: flex; align-items: center; justify-content: center;
}
.ring {
    position: absolute;
    border-radius: 50%;
    border: 2px solid rgba(255,255,255,0.2);
    animation: ringPulse 3s ease-in-out infinite;
}
.ring-1 { width: 200px; height: 200px; animation-delay: 0s; }
.ring-2 { width: 155px; height: 155px; animation-delay: 0.5s; }
.ring-3 { width: 110px; height: 110px; animation-delay: 1s; }
@keyframes ringPulse {
    0%, 100% { opacity: 0.3; transform: scale(1); }
    50% { opacity: 0.8; transform: scale(1.05); }
}
.ring-center {
    width: 80px; height: 80px;
    background: rgba(255,255,255,0.15);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    backdrop-filter: blur(4px);
    border: 2px solid rgba(255,255,255,0.3);
    z-index: 2;
}
.ring-center svg { width: 50px; height: 50px; }
.float-badge {
    position: absolute;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(10px);
    border-radius: var(--radius-md);
    padding: 12px 18px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: var(--shadow-md);
    animation: floatBadge 4s ease-in-out infinite;
}
.float-badge .badge-icon { font-size: 1.6rem; }
.badge-title { display: block; font-weight: 700; font-size: 0.9rem; color: var(--text-dark); }
.badge-sub { display: block; font-size: 0.75rem; color: var(--text-light); }
.speed-badge { top: 20px; left: -20px; animation-delay: 0s; }
.stable-badge { bottom: 20px; right: -20px; animation-delay: 2s; }
@keyframes floatBadge {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}
.hero-wave {
    position: absolute;
    bottom: 0; left: 0;
    width: 100%; line-height: 0;
}
.hero-wave svg { display: block; width: 100%; height: 100px; }

/* ===== ABOUT ===== */
.about-section { background: var(--white); }
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 70px;
    align-items: center;
}
.about-img-card {
    position: relative;
    background: var(--blue-light);
    border-radius: var(--radius-xl);
    padding: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.about-img-inner { width: 100%; }
.about-logo-big {
    width: 100%;
    max-width: 320px;
    margin: 0 auto;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}
.about-badge-overlay {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: var(--orange-primary);
    color: var(--white);
    border-radius: var(--radius-md);
    padding: 14px 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.8rem;
    box-shadow: var(--shadow-orange);
}
.about-badge-overlay strong { display: block; font-size: 0.95rem; line-height: 1.2; }
.about-badge-overlay small { font-size: 0.78rem; opacity: 0.85; }
.about-text .section-label { margin-bottom: 12px; }
.about-text > p { color: var(--text-mid); margin-bottom: 16px; font-size: 1.05rem; }
.about-highlights { margin-top: 32px; display: flex; flex-direction: column; gap: 20px; }
.highlight-item {
    display: flex;
    align-items: flex-start;
    gap: 18px;
}
.hi-icon {
    font-size: 1.6rem;
    min-width: 48px;
    height: 48px;
    background: var(--blue-light);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
}
.highlight-item strong { display: block; font-weight: 700; color: var(--text-dark); margin-bottom: 4px; }
.highlight-item p { color: var(--text-mid); font-size: 0.95rem; margin: 0; }

/* ===== WHY US ===== */
.whyus-section { background: var(--off-white); }
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}
.feature-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 36px 28px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border);
    transition: var(--transition);
}
.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}
.feature-icon-wrap {
    width: 56px; height: 56px;
    border-radius: var(--radius-md);
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 22px;
}
.feature-icon-wrap svg { width: 28px; height: 28px; }
.feature-icon-wrap.blue { background: var(--blue-light); color: var(--blue-primary); }
.feature-icon-wrap.orange { background: var(--orange-light); color: var(--orange-primary); }
.feature-card h3 { font-size: 1.15rem; font-weight: 700; color: var(--text-dark); margin-bottom: 10px; }
.feature-card p { color: var(--text-mid); font-size: 0.95rem; line-height: 1.65; }

/* ===== PACKAGES ===== */
.packages-section {
    position: relative;
    background: linear-gradient(180deg, var(--off-white) 0%, var(--blue-light) 100%);
    overflow: hidden;
}
.packages-bg-shape {
    position: absolute;
    width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(10,61,145,0.06) 0%, transparent 70%);
    right: -150px; top: -100px;
    pointer-events: none;
}
.pricing-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    align-items: stretch;
}
.pricing-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 0;
    box-shadow: var(--shadow-md);
    border: 1.5px solid var(--border);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    position: relative;
}
.pricing-card:hover { transform: translateY(-10px); box-shadow: var(--shadow-lg); }
.pricing-card.featured {
    border-color: var(--orange-primary);
    box-shadow: 0 20px 50px rgba(245,130,32,0.18);
}
.pricing-card.featured:hover { transform: translateY(-12px); }
.pkg-badge {
    background: linear-gradient(135deg, var(--orange-primary), #ffb347);
    color: var(--white);
    text-align: center;
    padding: 10px 24px;
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}
.pricing-card-top {
    padding: 36px 32px 28px;
    text-align: center;
    border-bottom: 1px dashed var(--border);
}
.pkg-icon { font-size: 2.5rem; margin-bottom: 12px; }
.pricing-card-top h3 {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 6px;
}
.pkg-tagline { color: var(--text-light); font-size: 0.88rem; margin-bottom: 20px; min-height: 36px; }
.pkg-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 4px;
    color: var(--blue-primary);
}
.pricing-card.featured .pkg-price { color: var(--orange-primary); }
.pkg-price .amount { font-size: 3.2rem; font-weight: 800; line-height: 1; letter-spacing: -1px; }
.pkg-price .per { font-size: 1rem; color: var(--text-light); font-weight: 600; }
.pricing-card-body { padding: 28px 32px; flex: 1; }
.pkg-features { display: flex; flex-direction: column; gap: 12px; }
.pkg-features li { font-size: 0.95rem; line-height: 1.5; }
.feat-yes { color: var(--text-dark); }
.feat-yes strong { color: var(--blue-primary); }
.feat-no { color: var(--text-light); }
.pricing-card-bottom { padding: 28px 32px; }

.pkg-note {
    margin-top: 40px;
    display: flex;
    align-items: flex-start;
    gap: 14px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 18px 24px;
    font-size: 0.95rem;
    color: var(--text-mid);
}
.pkg-note span { font-size: 1.4rem; flex-shrink: 0; }
.pkg-note a { color: var(--blue-primary); font-weight: 600; }
.pkg-note a:hover { text-decoration: underline; }

/* ===== HOW TO ===== */
.howto-section { background: var(--white); }
.steps-grid {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}
.step-card {
    flex: 1;
    min-width: 200px;
    background: var(--off-white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 32px 24px;
    text-align: center;
    transition: var(--transition);
    position: relative;
}
.step-card:hover { background: var(--blue-light); border-color: var(--blue-primary); transform: translateY(-6px); }
.step-num {
    position: absolute;
    top: -16px;
    left: 24px;
    background: var(--blue-primary);
    color: var(--white);
    font-size: 0.78rem;
    font-weight: 800;
    padding: 4px 10px;
    border-radius: 20px;
    letter-spacing: 1px;
}
.step-card:nth-child(1) .step-num { background: var(--blue-primary); }
.step-card:nth-child(3) .step-num { background: var(--orange-primary); }
.step-card:nth-child(5) .step-num { background: var(--orange-primary); }
.step-card:nth-child(7) .step-num { background: #10b981; }
.step-icon { font-size: 2.5rem; margin-bottom: 14px; margin-top: 10px; }
.step-card h3 { font-size: 1.05rem; font-weight: 700; color: var(--text-dark); margin-bottom: 8px; }
.step-card p { font-size: 0.9rem; color: var(--text-mid); line-height: 1.6; }
.step-arrow { font-size: 1.8rem; color: var(--border); flex-shrink: 0; }

/* ===== TESTIMONIALS ===== */
.testimonials-section { background: var(--off-white); }
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}
.testi-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 32px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}
.testi-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.testi-stars { font-size: 1.1rem; margin-bottom: 16px; }
.testi-text {
    color: var(--text-mid);
    font-size: 0.97rem;
    line-height: 1.7;
    flex: 1;
    margin-bottom: 24px;
    font-style: italic;
}
.testi-author { display: flex; align-items: center; gap: 14px; }
.author-avatar {
    width: 46px; height: 46px; border-radius: 50%;
    background: var(--blue-primary);
    color: var(--white);
    font-size: 0.85rem;
    font-weight: 800;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
}
.testi-author strong { display: block; font-size: 0.97rem; color: var(--text-dark); }
.testi-author small { font-size: 0.8rem; color: var(--text-light); }

/* ===== FAQ ===== */
.faq-section { background: var(--white); }
.faq-list { max-width: 820px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.faq-item {
    border: 1.5px solid var(--border);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: var(--transition);
}
.faq-item.open { border-color: var(--blue-primary); }
.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 20px 24px;
    font-family: var(--font);
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-dark);
    background: transparent;
    border: none;
    cursor: pointer;
    text-align: left;
    transition: var(--transition);
}
.faq-question:hover { color: var(--blue-primary); background: var(--blue-light); }
.faq-item.open .faq-question { color: var(--blue-primary); background: var(--blue-light); }
.faq-icon {
    font-size: 1.4rem;
    font-weight: 400;
    color: var(--blue-primary);
    flex-shrink: 0;
    transition: transform 0.3s ease;
    line-height: 1;
}
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.25, 0.8, 0.25, 1), padding 0.3s ease;
}
.faq-answer.open { max-height: 200px; }
.faq-answer p {
    padding: 16px 24px 22px;
    color: var(--text-mid);
    font-size: 0.97rem;
    line-height: 1.7;
}

/* ===== CTA BANNER ===== */
.cta-banner {
    background: linear-gradient(135deg, var(--blue-dark) 0%, var(--blue-primary) 60%, var(--blue-mid) 100%);
    position: relative;
    overflow: hidden;
}
.cta-banner::before {
    content: '';
    position: absolute;
    width: 400px; height: 400px;
    background: rgba(245,130,32,0.15);
    border-radius: 50%;
    top: -150px; right: -100px;
    filter: blur(60px);
}
.cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    position: relative;
    z-index: 2;
    flex-wrap: wrap;
}
.cta-text h2 { font-size: 2.2rem; font-weight: 800; color: var(--white); margin-bottom: 12px; }
.cta-text p { color: rgba(255,255,255,0.75); font-size: 1.05rem; max-width: 500px; }
.cta-buttons { display: flex; gap: 16px; flex-wrap: wrap; }

/* ===== CONTACT ===== */
.contact-section { background: var(--off-white); }
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 48px;
    align-items: start;
}
.contact-info-wrap { display: flex; flex-direction: column; gap: 18px; }
.contact-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 22px 24px;
    display: flex;
    align-items: flex-start;
    gap: 18px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}
.contact-card:hover { border-color: var(--blue-primary); box-shadow: var(--shadow-md); }
.contact-icon { font-size: 1.8rem; min-width: 36px; }
.contact-card h4 { font-size: 0.95rem; font-weight: 700; color: var(--text-dark); margin-bottom: 4px; }
.contact-card p { font-size: 0.95rem; color: var(--text-mid); }
.contact-card a { color: var(--blue-primary); font-weight: 600; }
.contact-card a:hover { color: var(--orange-primary); }
.contact-card small { color: var(--text-light); font-size: 0.83rem; }
.map-wrap { height: 420px; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-md); }
.map-wrap iframe { width: 100%; height: 100%; border-radius: var(--radius-lg); }

/* ===== FOOTER ===== */
.footer {
    background: var(--blue-darker);
    color: var(--white);
    padding-top: 80px;
}
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 48px;
    padding-bottom: 60px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-brand p { color: rgba(255,255,255,0.65); font-size: 0.95rem; margin-top: 18px; max-width: 300px; line-height: 1.7; }
.footer-logo-wrap {
    background: var(--white);
    padding: 10px 20px;
    border-radius: var(--radius-md);
    display: inline-block;
}
.footer-logo-wrap img { height: 44px; }
.footer-socials { display: flex; gap: 12px; margin-top: 24px; }
.social-btn {
    width: 40px; height: 40px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    transition: var(--transition);
}
.social-btn svg { width: 18px; height: 18px; }
.social-btn.whatsapp { background: #25d366; color: var(--white); }
.social-btn.facebook { background: #1877f2; color: var(--white); }
.social-btn.instagram { background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); color: var(--white); }
.social-btn:hover { transform: translateY(-4px) scale(1.1); }

.footer-links-col h4, .footer-contact-col h4 {
    font-size: 1rem; font-weight: 700; color: var(--white); margin-bottom: 20px;
    padding-bottom: 10px; border-bottom: 2px solid var(--orange-primary); display: inline-block;
}
.footer-links-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-links-col a { color: rgba(255,255,255,0.65); font-size: 0.92rem; }
.footer-links-col a:hover { color: var(--orange-primary); padding-left: 4px; }
.footer-contact-col p { color: rgba(255,255,255,0.7); font-size: 0.92rem; margin-bottom: 10px; }
.footer-contact-col a { color: rgba(255,255,255,0.85); }
.footer-contact-col a:hover { color: var(--orange-primary); }
.footer-cta { margin-top: 20px; }
.footer-bottom {
    background: rgba(0,0,0,0.2);
    padding: 20px 0;
}
.footer-bottom-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    font-size: 0.87rem;
    color: rgba(255,255,255,0.5);
}

/* ===== BACK TO TOP ===== */
.back-to-top {
    position: fixed;
    bottom: 30px; right: 30px;
    width: 48px; height: 48px;
    background: var(--blue-primary);
    color: var(--white);
    border: none;
    border-radius: 50%;
    font-size: 1.3rem;
    cursor: pointer;
    box-shadow: var(--shadow-md);
    opacity: 0; pointer-events: none;
    transition: var(--transition);
    z-index: 500;
    display: flex; align-items: center; justify-content: center;
}
.back-to-top.visible { opacity: 1; pointer-events: auto; }
.back-to-top:hover { background: var(--orange-primary); transform: translateY(-4px); }

/* ===== AOS ANIMATION STUBS ===== */
[data-aos] { opacity: 0; transform: translateY(30px); transition: opacity 0.7s ease, transform 0.7s ease; }
[data-aos].aos-animate { opacity: 1; transform: translateY(0); }
[data-aos="fade-right"] { transform: translateX(-30px); }
[data-aos="fade-right"].aos-animate { transform: translateX(0); }
[data-aos="fade-left"] { transform: translateX(30px); }
[data-aos="fade-left"].aos-animate { transform: translateX(0); }
[data-aos="zoom-in"] { transform: scale(0.92); }
[data-aos="zoom-in"].aos-animate { transform: scale(1); }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .hero-grid { grid-template-columns: 1fr; gap: 50px; text-align: center; }
    .hero-text > p, .hero-text h1 { max-width: 100%; }
    .hero-buttons, .hero-stats { justify-content: center; }
    .hero-visual { display: none; }
    .about-grid { grid-template-columns: 1fr; gap: 40px; }
    .about-image-wrap { order: -1; }
    .features-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
    .topbar-left { display: none; }
    .nav-links, .nav-cta { display: none; }
    .hamburger { display: flex; }
    /* Mobile Nav */
    .nav-links.open {
        display: flex; flex-direction: column;
        position: fixed; top: 0; left: 0; right: 0; bottom: 0;
        background: var(--white); z-index: 9999;
        padding: 100px 30px 40px;
        gap: 8px;
    }
    .nav-links.open .nav-link { font-size: 1.2rem; padding: 14px 20px; }
    .section-heading { font-size: 2rem; }
    .hero { padding: 60px 0 120px; min-height: auto; }
    .hero-text h1 { font-size: 2.5rem; }
    .hero-stats { gap: 16px; }
    .features-grid { grid-template-columns: 1fr; }
    .pricing-cards { grid-template-columns: 1fr; }
    .testimonials-grid { grid-template-columns: 1fr; }
    .contact-grid { grid-template-columns: 1fr; }
    .cta-inner { text-align: center; }
    .cta-inner .cta-buttons { justify-content: center; }
    .cta-text h2 { font-size: 1.8rem; }
    .steps-grid { flex-direction: column; }
    .step-arrow { transform: rotate(90deg); }
    .footer-grid { grid-template-columns: 1fr; gap: 32px; }
    .footer-bottom-inner { flex-direction: column; text-align: center; }
    .map-wrap { height: 300px; }
    .about-badge-overlay { bottom: -15px; right: 10px; }
}

@media (max-width: 480px) {
    .hero-text h1 { font-size: 2rem; }
    .hero-stats { flex-direction: column; align-items: center; }
    .stat-divider { width: 60px; height: 1px; }
    .pricing-card-top, .pricing-card-body, .pricing-card-bottom { padding: 24px; }
}
