/* ============================================
   TERMITEGUARD – PREMIUM LANDING PAGE CSS
   Mobile-First | App-Like Experience
   ============================================ */

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

:root {
    /* Colors */
    --bg-dark: #0a0e17;
    --bg-card: #111827;
    --bg-card-hover: #1a2332;
    --bg-surface: #0f1520;
    --text-primary: #f1f5f9;
    --text-secondary: #94a3b8;
    --text-muted: #64748b;
    --accent-green: #22c55e;
    --accent-green-dark: #16a34a;
    --accent-red: #ef4444;
    --accent-red-dark: #dc2626;
    --accent-orange: #f97316;
    --accent-amber: #f59e0b;
    --accent-blue: #3b82f6;
    --gradient-main: linear-gradient(135deg, #f97316 0%, #ef4444 50%, #dc2626 100%);
    --gradient-green: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
    --gradient-gold: linear-gradient(135deg, #f59e0b 0%, #f97316 100%);
    --gradient-card: linear-gradient(145deg, rgba(17,24,39,0.9) 0%, rgba(15,21,32,0.95) 100%);
    --border-subtle: rgba(148, 163, 184, 0.1);
    --border-glow: rgba(249, 115, 22, 0.3);
    --shadow-lg: 0 20px 60px rgba(0,0,0,0.5);
    --shadow-glow-orange: 0 0 30px rgba(249, 115, 22, 0.3);
    --shadow-glow-green: 0 0 30px rgba(34, 197, 94, 0.3);
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-full: 9999px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --font-main: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-heading: 'Poppins', 'Inter', sans-serif;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

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

/* Mobile bottom bar padding */
@media (max-width: 768px) {
    body {
        padding-bottom: 72px;
    }
}

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

ul {
    list-style: none;
}

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

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

@media (min-width: 768px) {
    .container {
        padding: 0 40px;
    }
}

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

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

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

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

@keyframes pulseGlow {
    0%, 100% { box-shadow: 0 0 15px rgba(239, 68, 68, 0.4); }
    50% { box-shadow: 0 0 35px rgba(239, 68, 68, 0.7); }
}

@keyframes shake {
    0%, 100% { transform: translateX(0); }
    10%, 30%, 50%, 70%, 90% { transform: translateX(-3px); }
    20%, 40%, 60%, 80% { transform: translateX(3px); }
}

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

@keyframes badgePulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

@keyframes scrollDown {
    0% { transform: translateY(0); opacity: 1; }
    50% { transform: translateY(8px); opacity: 0.3; }
    100% { transform: translateY(0); opacity: 1; }
}

@keyframes shimmer {
    0% { background-position: -200% center; }
    100% { background-position: 200% center; }
}

@keyframes confettiFall {
    0% { transform: translateY(-100%) rotate(0deg); opacity: 1; }
    100% { transform: translateY(100vh) rotate(720deg); opacity: 0; }
}

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

@keyframes borderGlow {
    0%, 100% { border-color: rgba(249, 115, 22, 0.2); }
    50% { border-color: rgba(249, 115, 22, 0.6); }
}

.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

/* === GRADIENT TEXT === */
.gradient-text {
    background: var(--gradient-main);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* === BUTTONS === */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: var(--font-main);
    font-weight: 700;
    border: none;
    border-radius: var(--radius-full);
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    white-space: nowrap;
    position: relative;
    overflow: hidden;
}

.btn::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.15) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.3s;
}

.btn:hover::after {
    opacity: 1;
}

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

/* Button Sizes */
.btn--md {
    padding: 12px 28px;
    font-size: 14px;
}

.btn--lg {
    padding: 16px 36px;
    font-size: 16px;
}

.btn--xl {
    padding: 20px 44px;
    font-size: 18px;
}

.btn--full {
    width: 100%;
}

/* Button Variants */
.btn--call {
    background: var(--gradient-main);
    color: white;
    box-shadow: 0 4px 20px rgba(239, 68, 68, 0.4);
}

.btn--call:hover {
    box-shadow: 0 6px 30px rgba(239, 68, 68, 0.6);
    transform: translateY(-2px);
}

.btn--whatsapp {
    background: var(--gradient-green);
    color: white;
    box-shadow: 0 4px 20px rgba(34, 197, 94, 0.4);
}

.btn--whatsapp:hover {
    box-shadow: 0 6px 30px rgba(34, 197, 94, 0.6);
    transform: translateY(-2px);
}

.btn--outline {
    background: transparent;
    color: var(--accent-orange);
    border: 2px solid rgba(249, 115, 22, 0.3);
    padding: 10px 24px;
    font-size: 14px;
    border-radius: var(--radius-full);
}

.btn--outline:hover {
    background: rgba(249, 115, 22, 0.1);
    border-color: var(--accent-orange);
}

.btn--glow {
    animation: pulseGlow 2s infinite;
}

/* Small header buttons */
.btn--call-sm, .btn--whatsapp-sm {
    padding: 8px 18px;
    font-size: 13px;
    font-weight: 600;
    border-radius: var(--radius-full);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: var(--transition);
}

.btn--call-sm {
    background: var(--gradient-main);
    color: white;
}

.btn--whatsapp-sm {
    background: var(--gradient-green);
    color: white;
}

.btn--call-sm:hover, .btn--whatsapp-sm:hover {
    transform: translateY(-1px);
    filter: brightness(1.1);
}

/* === TOP BAR === */
.top-bar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(10, 14, 23, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-subtle);
    transform: translateY(-100%);
    transition: transform 0.3s ease;
}

.top-bar.visible {
    transform: translateY(0);
}

.top-bar__inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 10px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.top-bar__logo {
    display: flex;
    align-items: center;
    gap: 8px;
}

.logo-icon {
    font-size: 24px;
}

.logo-text {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 800;
    color: var(--text-primary);
}

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

.top-bar__cta {
    display: flex;
    gap: 8px;
}

@media (max-width: 768px) {
    .top-bar {
        display: none;
    }
}

/* === HERO SECTION === */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: var(--bg-dark);
    padding: 80px 20px 60px;
}

.hero__overlay {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 20% 50%, rgba(249, 115, 22, 0.12) 0%, transparent 60%),
        radial-gradient(ellipse at 80% 20%, rgba(239, 68, 68, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 80%, rgba(34, 197, 94, 0.06) 0%, transparent 50%);
    z-index: 1;
}

.hero__particles {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
}

.hero__content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    animation: fadeInUp 0.8s ease;
}

.hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(249, 115, 22, 0.1);
    border: 1px solid rgba(249, 115, 22, 0.3);
    padding: 8px 20px;
    border-radius: var(--radius-full);
    font-size: 13px;
    font-weight: 600;
    color: var(--accent-orange);
    margin-bottom: 24px;
    animation: borderGlow 3s infinite;
}

.badge-pulse {
    width: 8px;
    height: 8px;
    background: var(--accent-green);
    border-radius: 50%;
    animation: badgePulse 1.5s infinite;
}

.hero__title {
    font-family: var(--font-heading);
    font-size: clamp(28px, 6vw, 56px);
    font-weight: 900;
    line-height: 1.15;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}

.hero__subtitle-line {
    display: block;
    font-size: clamp(18px, 3.5vw, 32px);
    font-weight: 700;
    color: var(--text-secondary);
    margin-top: 8px;
}

.hero__sub {
    font-size: clamp(14px, 2.5vw, 18px);
    color: var(--text-secondary);
    margin-bottom: 32px;
    line-height: 1.8;
}

.hero__ctas {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 24px;
}

@media (min-width: 480px) {
    .hero__ctas {
        flex-direction: row;
        justify-content: center;
    }
}

.hero__urgency {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.3);
    padding: 10px 20px;
    border-radius: var(--radius-md);
    font-size: 14px;
    color: var(--accent-red);
    margin-bottom: 40px;
    animation: shake 5s ease-in-out infinite;
}

.urgency-icon {
    font-size: 18px;
}

.hero__stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    padding: 24px;
    background: rgba(17, 24, 39, 0.8);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    backdrop-filter: blur(10px);
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-family: var(--font-heading);
    font-size: clamp(24px, 4vw, 36px);
    font-weight: 900;
    color: var(--accent-orange);
}

.stat-plus {
    font-family: var(--font-heading);
    font-size: clamp(18px, 3vw, 28px);
    font-weight: 900;
    color: var(--accent-orange);
}

.stat-label {
    display: block;
    font-size: 12px;
    color: var(--text-muted);
    margin-top: 4px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

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

.hero__scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.scroll-line {
    width: 2px;
    height: 30px;
    background: rgba(148, 163, 184, 0.3);
    border-radius: 2px;
    position: relative;
    overflow: hidden;
}

.scroll-line::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 10px;
    background: var(--accent-orange);
    border-radius: 2px;
    animation: scrollDown 2s infinite;
}

/* === SECTIONS COMMON === */
.section {
    padding: 80px 0;
    position: relative;
}

@media (max-width: 768px) {
    .section {
        padding: 60px 0;
    }
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-tag {
    display: inline-block;
    background: rgba(249, 115, 22, 0.1);
    border: 1px solid rgba(249, 115, 22, 0.2);
    padding: 6px 16px;
    border-radius: var(--radius-full);
    font-size: 13px;
    font-weight: 600;
    color: var(--accent-orange);
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(24px, 5vw, 42px);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 16px;
}

.section-desc {
    font-size: clamp(14px, 2vw, 18px);
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

/* === PROBLEM SECTION === */
.problem {
    background: var(--bg-surface);
}

.problem__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
    margin-bottom: 40px;
}

@media (min-width: 640px) {
    .problem__grid {
        grid-template-columns: 1fr 1fr;
    }
}

.problem-card {
    position: relative;
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 24px;
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    transition: var(--transition);
    overflow: hidden;
}

.problem-card:hover {
    border-color: rgba(239, 68, 68, 0.3);
    background: var(--bg-card-hover);
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(239, 68, 68, 0.1);
}

.problem-card__icon {
    font-size: 36px;
    flex-shrink: 0;
    animation: float 3s ease-in-out infinite;
}

.problem-card__content h3 {
    font-family: var(--font-heading);
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 6px;
    color: var(--text-primary);
}

.problem-card__content p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.5;
}

.problem-card__alert {
    position: absolute;
    top: 12px;
    right: 12px;
    background: rgba(239, 68, 68, 0.15);
    color: var(--accent-red);
    font-size: 10px;
    font-weight: 800;
    padding: 3px 10px;
    border-radius: var(--radius-full);
    letter-spacing: 0.1em;
    animation: badgePulse 2s infinite;
}

.problem__warning {
    text-align: center;
}

.warning-box {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    background: rgba(239, 68, 68, 0.06);
    border: 1px solid rgba(239, 68, 68, 0.2);
    border-radius: var(--radius-xl);
    padding: 30px;
    max-width: 600px;
    margin: 0 auto;
}

.warning-icon {
    font-size: 32px;
}

.warning-box p {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* === SOLUTION SECTION === */
.solution {
    background: var(--bg-dark);
}

.solution__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

@media (min-width: 640px) {
    .solution__grid {
        grid-template-columns: 1fr 1fr;
    }
}

.solution-card {
    position: relative;
    padding: 32px 28px;
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    transition: var(--transition);
    overflow: hidden;
}

.solution-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-main);
    opacity: 0;
    transition: opacity 0.3s;
}

.solution-card:hover {
    border-color: rgba(249, 115, 22, 0.3);
    transform: translateY(-4px);
    box-shadow: var(--shadow-glow-orange);
}

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

.solution-card__number {
    position: absolute;
    top: 16px;
    right: 20px;
    font-family: var(--font-heading);
    font-size: 48px;
    font-weight: 900;
    color: rgba(249, 115, 22, 0.06);
    line-height: 1;
}

.solution-card__icon {
    font-size: 40px;
    margin-bottom: 16px;
}

.solution-card h3 {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
}

.solution-card p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* === SERVICES SECTION === */
.services {
    background: var(--bg-surface);
}

.services__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

@media (min-width: 640px) {
    .services__grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (min-width: 1024px) {
    .services__grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.service-card {
    position: relative;
    padding: 32px 24px;
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    text-align: center;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.service-card:hover {
    border-color: rgba(249, 115, 22, 0.3);
    transform: translateY(-6px);
    box-shadow: var(--shadow-glow-orange);
}

.service-card__badge {
    position: absolute;
    top: -1px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient-main);
    color: white;
    font-size: 10px;
    font-weight: 800;
    padding: 4px 16px;
    border-radius: 0 0 var(--radius-sm) var(--radius-sm);
    letter-spacing: 0.1em;
}

.service-card__icon-wrap {
    width: 72px;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(249, 115, 22, 0.08);
    border: 1px solid rgba(249, 115, 22, 0.15);
    border-radius: var(--radius-lg);
    margin-bottom: 20px;
}

.service-icon {
    font-size: 32px;
}

.service-card h3 {
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 10px;
}

.service-card p {
    font-size: 13px;
    color: var(--text-secondary);
    margin-bottom: 16px;
    line-height: 1.5;
    flex-grow: 1;
}

.service-features {
    width: 100%;
    text-align: left;
    margin-bottom: 20px;
}

.service-features li {
    font-size: 13px;
    color: var(--text-secondary);
    padding: 4px 0;
    border-bottom: 1px solid rgba(148, 163, 184, 0.06);
}

.service-features li:last-child {
    border-bottom: none;
}

/* === TRUST SECTION === */
.trust {
    background: var(--bg-dark);
}

.trust__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-bottom: 40px;
}

@media (min-width: 640px) {
    .trust__grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 1024px) {
    .trust__grid {
        grid-template-columns: repeat(5, 1fr);
    }
}

.trust-card {
    text-align: center;
    padding: 28px 16px;
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    transition: var(--transition);
}

.trust-card:hover {
    border-color: rgba(249, 115, 22, 0.3);
    transform: translateY(-4px);
    box-shadow: var(--shadow-glow-orange);
}

.trust-card__icon {
    font-size: 32px;
    margin-bottom: 12px;
}

.trust-card__number {
    font-family: var(--font-heading);
    font-size: clamp(22px, 3vw, 30px);
    font-weight: 900;
    color: var(--accent-orange);
    line-height: 1.2;
}

.trust-card__label {
    font-size: 12px;
    color: var(--text-muted);
    margin-top: 4px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.trust__certifications {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
}

.cert-item {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(34, 197, 94, 0.06);
    border: 1px solid rgba(34, 197, 94, 0.15);
    padding: 8px 16px;
    border-radius: var(--radius-full);
    font-size: 13px;
    color: var(--accent-green);
    font-weight: 500;
}

/* === OFFER SECTION === */
.offer {
    background: var(--bg-surface);
    padding: 60px 0;
}

.offer__box {
    position: relative;
    max-width: 700px;
    margin: 0 auto;
    padding: 48px 32px;
    background: var(--gradient-card);
    border: 2px solid rgba(249, 115, 22, 0.3);
    border-radius: var(--radius-xl);
    text-align: center;
    overflow: hidden;
    animation: borderGlow 3s infinite;
}

.offer__box::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 30% 0%, rgba(249, 115, 22, 0.1) 0%, transparent 50%),
        radial-gradient(ellipse at 70% 100%, rgba(239, 68, 68, 0.08) 0%, transparent 50%);
    z-index: 0;
}

.offer__box > * {
    position: relative;
    z-index: 1;
}

.offer__confetti {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
}

.offer__badge {
    display: inline-block;
    background: var(--gradient-gold);
    color: #000;
    font-size: 12px;
    font-weight: 800;
    padding: 6px 20px;
    border-radius: var(--radius-full);
    letter-spacing: 0.08em;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.offer__title {
    font-family: var(--font-heading);
    font-size: clamp(28px, 5vw, 44px);
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 8px;
}

.offer__amount {
    display: inline-block;
    color: var(--accent-amber);
    position: relative;
}

.offer__amount::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-gold);
    border-radius: 2px;
}

.offer__subtitle {
    font-size: 16px;
    color: var(--text-secondary);
    margin-bottom: 28px;
}

.offer__timer {
    margin-bottom: 28px;
}

.timer-label {
    font-size: 14px;
    color: var(--accent-red);
    font-weight: 600;
    margin-bottom: 12px;
}

.timer-digits {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.timer-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.2);
    border-radius: var(--radius-md);
    padding: 12px 18px;
    min-width: 70px;
}

.timer-num {
    font-family: var(--font-heading);
    font-size: 32px;
    font-weight: 900;
    color: var(--accent-red);
    line-height: 1;
}

.timer-unit {
    font-size: 11px;
    color: var(--text-muted);
    margin-top: 4px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.timer-sep {
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 900;
    color: var(--accent-red);
    opacity: 0.5;
}

.offer__ctas {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 16px;
}

@media (min-width: 480px) {
    .offer__ctas {
        flex-direction: row;
        justify-content: center;
    }
}

.offer__note {
    font-size: 12px;
    color: var(--text-muted);
    font-style: italic;
}

/* === TESTIMONIALS SECTION === */
.testimonials {
    background: var(--bg-dark);
}

.testimonials__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
    margin-bottom: 40px;
}

@media (min-width: 640px) {
    .testimonials__grid {
        grid-template-columns: 1fr 1fr;
    }
}

.testimonial-card {
    padding: 28px;
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    transition: var(--transition);
}

.testimonial-card:hover {
    border-color: rgba(245, 158, 11, 0.3);
    transform: translateY(-4px);
}

.testimonial-stars {
    margin-bottom: 14px;
    font-size: 16px;
    letter-spacing: 2px;
}

.testimonial-text {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 20px;
    font-style: italic;
}

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

.author-avatar {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(249, 115, 22, 0.15);
    color: var(--accent-orange);
    font-weight: 800;
    font-size: 14px;
    border-radius: 50%;
    flex-shrink: 0;
}

.author-info {
    display: flex;
    flex-direction: column;
}

.author-info strong {
    font-size: 14px;
    font-weight: 700;
    color: var(--text-primary);
}

.author-info span {
    font-size: 12px;
    color: var(--text-muted);
}

.verified-badge {
    margin-left: auto;
    font-size: 12px;
    color: var(--accent-green);
    font-weight: 600;
}

.testimonials__rating {
    text-align: center;
    padding: 24px;
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.rating-stars {
    font-size: 20px;
    letter-spacing: 3px;
}

.rating-score {
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 900;
    color: var(--accent-amber);
}

.rating-count {
    font-size: 14px;
    color: var(--text-muted);
}

/* === FINAL CTA SECTION === */
.final-cta {
    background: var(--bg-surface);
    position: relative;
    overflow: hidden;
}

.final-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 50% 0%, rgba(249, 115, 22, 0.12) 0%, transparent 60%),
        radial-gradient(ellipse at 50% 100%, rgba(34, 197, 94, 0.08) 0%, transparent 50%);
}

.final-cta__content {
    position: relative;
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
    z-index: 1;
}

.final-cta__title {
    font-family: var(--font-heading);
    font-size: clamp(26px, 5vw, 44px);
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 16px;
}

.final-cta__text {
    font-size: 17px;
    color: var(--text-secondary);
    margin-bottom: 36px;
    line-height: 1.6;
}

.final-cta__buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 30px;
}

@media (min-width: 480px) {
    .final-cta__buttons {
        flex-direction: row;
        justify-content: center;
    }
}

.final-cta__trust {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    font-size: 14px;
    color: var(--text-muted);
}

.final-cta__trust span {
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

/* === FOOTER === */
.footer {
    background: var(--bg-card);
    border-top: 1px solid var(--border-subtle);
    padding: 60px 0 30px;
}

@media (max-width: 768px) {
    .footer {
        padding-bottom: 90px;
    }
}

.footer__inner {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

@media (min-width: 768px) {
    .footer__inner {
        grid-template-columns: 1.5fr 2fr;
    }
}

.footer__brand p {
    font-size: 14px;
    color: var(--text-muted);
    margin-top: 12px;
    line-height: 1.5;
}

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

@media (max-width: 480px) {
    .footer__links {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

.footer__col h4 {
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--text-primary);
}

.footer__col li {
    font-size: 13px;
    color: var(--text-muted);
    padding: 4px 0;
}

.footer__bottom {
    border-top: 1px solid var(--border-subtle);
    padding-top: 20px;
    text-align: center;
}

.footer__bottom p {
    font-size: 13px;
    color: var(--text-muted);
}

/* ============================================
   MOBILE BOTTOM APP BAR
   ============================================ */
.mobile-bottom-bar {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    background: rgba(10, 14, 23, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-top: 1px solid var(--border-subtle);
    padding: 0;
    padding-bottom: env(safe-area-inset-bottom, 0);
}

@media (max-width: 768px) {
    .mobile-bottom-bar {
        display: flex;
    }
}

.bottom-bar__item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 10px 4px;
    gap: 4px;
    text-decoration: none;
    transition: var(--transition);
    position: relative;
    min-height: 64px;
}

.bottom-bar__item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    border-radius: 0 0 3px 3px;
    transition: width 0.3s;
}

.bottom-bar__item:active {
    transform: scale(0.92);
}

.bottom-bar__icon {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: var(--transition);
}

.bottom-bar__item span {
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Call */
.bottom-bar__item--call {
    color: var(--accent-red);
}
.bottom-bar__item--call .bottom-bar__icon {
    background: rgba(239, 68, 68, 0.15);
}
.bottom-bar__item--call::before {
    background: var(--accent-red);
}
.bottom-bar__item--call:active::before,
.bottom-bar__item--call:hover::before {
    width: 60%;
}

/* WhatsApp */
.bottom-bar__item--whatsapp {
    color: var(--accent-green);
}
.bottom-bar__item--whatsapp .bottom-bar__icon {
    background: rgba(34, 197, 94, 0.15);
}
.bottom-bar__item--whatsapp::before {
    background: var(--accent-green);
}
.bottom-bar__item--whatsapp:active::before,
.bottom-bar__item--whatsapp:hover::before {
    width: 60%;
}

/* Book Slot */
.bottom-bar__item--book {
    color: var(--accent-blue);
}
.bottom-bar__item--book .bottom-bar__icon {
    background: rgba(59, 130, 246, 0.15);
}
.bottom-bar__item--book::before {
    background: var(--accent-blue);
}
.bottom-bar__item--book:active::before,
.bottom-bar__item--book:hover::before {
    width: 60%;
}

/* Free Inspection */
.bottom-bar__item--inspect {
    color: var(--accent-amber);
}
.bottom-bar__item--inspect .bottom-bar__icon {
    background: rgba(245, 158, 11, 0.15);
}
.bottom-bar__item--inspect::before {
    background: var(--accent-amber);
}
.bottom-bar__item--inspect:active::before,
.bottom-bar__item--inspect:hover::before {
    width: 60%;
}

/* ============================================
   MODALS
   ============================================ */
.modal-overlay {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 10000;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    align-items: flex-end;
    justify-content: center;
    padding: 0;
}

@media (min-width: 768px) {
    .modal-overlay {
        align-items: center;
        padding: 20px;
    }
}

.modal-overlay.active {
    display: flex;
    animation: fadeIn 0.2s ease;
}

.modal {
    width: 100%;
    max-width: 480px;
    max-height: 90vh;
    overflow-y: auto;
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-xl) var(--radius-xl) 0 0;
    padding: 32px 24px;
    position: relative;
    animation: fadeInUp 0.3s ease;
}

@media (min-width: 768px) {
    .modal {
        border-radius: var(--radius-xl);
    }
}

.modal__close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(148, 163, 184, 0.1);
    border: 1px solid var(--border-subtle);
    border-radius: 50%;
    color: var(--text-secondary);
    font-size: 20px;
    cursor: pointer;
    transition: var(--transition);
    font-family: inherit;
}

.modal__close:hover {
    background: rgba(239, 68, 68, 0.2);
    color: var(--accent-red);
}

.modal__header {
    text-align: center;
    margin-bottom: 28px;
}

.modal__icon {
    font-size: 40px;
    margin-bottom: 12px;
}

.modal__header h3 {
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 800;
    margin-bottom: 6px;
}

.modal__header p {
    font-size: 14px;
    color: var(--text-secondary);
}

.modal__form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.form-group label {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-secondary);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    background: var(--bg-dark);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-md);
    color: var(--text-primary);
    font-family: var(--font-main);
    font-size: 15px;
    transition: var(--transition);
    outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--accent-orange);
    box-shadow: 0 0 0 3px rgba(249, 115, 22, 0.15);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-muted);
}

.form-group select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%2394a3b8' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14 2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
}

/* Success Modal */
.modal--success {
    text-align: center;
    padding: 48px 32px;
}

.success-animation {
    margin-bottom: 20px;
}

.success-checkmark {
    font-size: 64px;
    animation: pulse 1s ease;
}

.modal--success h3 {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 10px;
    color: var(--accent-green);
}

.modal--success p {
    font-size: 15px;
    color: var(--text-secondary);
    margin-bottom: 24px;
}

/* === PARTICLE DOTS === */
.particle {
    position: absolute;
    width: 3px;
    height: 3px;
    background: rgba(249, 115, 22, 0.4);
    border-radius: 50%;
    pointer-events: none;
    animation: float 6s ease-in-out infinite;
}

/* === CONFETTI PIECES === */
.confetti-piece {
    position: absolute;
    width: 8px;
    height: 8px;
    border-radius: 2px;
    opacity: 0.6;
    animation: confettiFall 4s ease-in infinite;
}

/* === SCROLLBAR === */
::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-track {
    background: var(--bg-dark);
}

::-webkit-scrollbar-thumb {
    background: rgba(148, 163, 184, 0.2);
    border-radius: 3px;
}

::-webkit-scrollbar-thumb:hover {
    background: rgba(148, 163, 184, 0.4);
}

/* === SELECTION === */
::selection {
    background: rgba(249, 115, 22, 0.3);
    color: white;
}
