/* CSS Variables */
:root {
    --primary: #0B1F3A; /* Dark blue */
    --primary-light: #153259;
    --accent: #3B82F6; /* Blue */
    --accent-hover: #2563EB;
    --accent-light: rgba(59, 130, 246, 0.1);
    --bg-main: #FFFFFF;
    --bg-light: #F8FAFC;
    --text-main: #1E293B;
    --text-muted: #64748B;
    --border-color: #E2E8F0;
    
    --font-heading: 'Poppins', sans-serif;
    --font-body: 'Inter', sans-serif;
    
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-full: 9999px;
    
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px; /* 1rem = 16px */
}

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

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

ul {
    list-style: none;
}

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

/* Typography (Mobile-First) */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--primary);
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 {
    font-size: clamp(1.75rem, 4vw, 2.5rem); /* 28px min, 40px max */
    font-weight: 800;
    letter-spacing: -0.02em;
}

.h2 {
    font-size: clamp(1.375rem, 3vw, 2rem); /* 22px min, 32px max */
    font-weight: 700;
    letter-spacing: -0.01em;
}

h3 {
    font-size: 1.25rem;
    font-weight: 600;
}

h4 {
    font-size: 1.125rem;
    font-weight: 600;
}

p {
    font-size: 1rem; /* 16px */
    color: var(--text-muted);
}

@media (min-width: 1024px) {
    p { font-size: 1.125rem; }
    h3 { font-size: 1.5rem; }
    h4 { font-size: 1.25rem; }
}

/* Utilities */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.25rem; /* 20px padding mobile */
}

.section {
    padding: 2.5rem 0; /* 40px mobile */
}

@media (min-width: 768px) {
    .section { padding: 4rem 0; }
}

@media (min-width: 1024px) {
    .section { padding: 5rem 0; /* 80px desktop */ }
}

.bg-light { background-color: var(--bg-light); }
.text-center { text-align: center; }
.text-accent { color: var(--accent); }
.text-primary { color: var(--primary); }

.mt-3 { margin-top: 1rem; }
.mt-4 { margin-top: 1.5rem; }
.mt-6 { margin-top: 3rem; }

.section-header {
    max-width: 700px;
    margin: 0 auto 3rem auto;
}

.subtitle {
    font-size: 1rem;
    color: var(--text-muted);
}
@media (min-width: 768px) {
    .subtitle { font-size: 1.25rem; }
}

/* Base Grid (Mobile First) */
.grid {
    display: grid;
    gap: 1.5rem;
    grid-template-columns: 1fr; /* Mobile: 1 col */
}

@media (min-width: 768px) {
    .grid { gap: 2rem; }
    .grid-2 { grid-template-columns: repeat(2, 1fr); }
    .grid-3 { grid-template-columns: repeat(2, 1fr); } /* Tablet: 2 cols */
}

@media (min-width: 1024px) {
    .grid-3 { grid-template-columns: repeat(3, 1fr); } /* Desktop: 3 cols */
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.875rem 1.5rem;
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    font-family: var(--font-body);
    min-height: 44px; /* Touch target minimum */
    width: 100%; /* Full width mobile */
    text-align: center;
}

@media (min-width: 768px) {
    .btn { width: auto; } /* Auto width tablet+ */
}

.btn i { font-size: 1.25rem; }

.btn-primary {
    background-color: var(--accent);
    color: white;
    box-shadow: var(--shadow-md);
}

.btn-primary:hover {
    background-color: var(--accent-hover);
    box-shadow: var(--shadow-lg);
    transform: translateY(-2px);
    color: white;
}

.btn-secondary {
    background-color: transparent;
    color: var(--primary);
    border: 2px solid var(--border-color);
}

.btn-secondary:hover {
    border-color: var(--primary);
    background-color: rgba(11, 31, 58, 0.05);
}

.btn-outline {
    background-color: transparent;
    color: var(--text-main);
    border: 2px solid var(--border-color);
}

.btn-outline:hover { border-color: var(--text-main); }

.btn-sm {
    padding: 0.625rem 1.25rem;
    font-size: 0.875rem;
    min-height: 38px;
    width: auto;
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1.125rem;
    min-height: 50px;
}

.btn-block { width: 100%; }

/* Badges */
.badge {
    display: inline-flex;
    align-items: center;
    padding: 0.5rem 1rem;
    background-color: var(--accent-light);
    color: var(--accent);
    border-radius: var(--radius-full);
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}
.badge-center { margin: 0 auto 1.5rem auto; display: flex; width: max-content; }
/* Top Bar */
.top-bar {
    background-color: var(--primary);
    color: white;
    font-size: 0.75rem;
    padding: 0.5rem 0;
    text-align: center;
}
.top-bar-container {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    align-items: center;
}
@media (min-width: 768px) {
    .top-bar { font-size: 0.875rem; }
    .top-bar-container {
        flex-direction: row;
        justify-content: center;
        gap: 2rem;
    }
}
.top-bar-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #e2e8f0;
}
.top-bar-item i {
    color: var(--accent); 
}
.top-bar-contact {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
}
.top-bar a:hover { color: white; }

/* Navbar */
.navbar {
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
    transition: all 0.3s ease;
    border-bottom: 1px solid transparent;
}

.navbar.scrolled {
    padding: 0.75rem 0;
    box-shadow: var(--shadow-sm);
    border-bottom: 1px solid var(--border-color);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 40px; /* Base height */
}
@media (min-width: 768px) {
    .logo img { height: 50px; }
}

.nav-links {
    display: none; /* Mobile hidden by default */
    align-items: center;
    gap: 2rem;
}

.nav-links a:not(.btn) {
    font-weight: 500;
    color: var(--text-main);
}
.nav-links a:not(.btn):hover { color: var(--accent); }

.mobile-menu-btn {
    display: block;
    background: none;
    border: none;
    font-size: 2rem;
    color: var(--primary);
    cursor: pointer;
    min-width: 44px;
    min-height: 44px;
}

.mobile-menu {
    display: none;
    flex-direction: column;
    padding: 1.5rem;
    background-color: white;
    border-bottom: 1px solid var(--border-color);
}

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

.mobile-menu a:not(.btn) {
    padding: 1rem 0;
    border-bottom: 1px solid var(--bg-light);
    font-weight: 500;
    color: var(--text-main);
}

@media (min-width: 992px) {
    .nav-links { display: flex; }
    .mobile-menu-btn { display: none; }
    .mobile-menu.active { display: none; }
}

/* Hero Section */
.hero {
    padding: 8rem 0 4rem; /* Top padding clears fixed nav */
    background-image: 
        radial-gradient(circle at top right, var(--accent-light), transparent 50%),
        radial-gradient(circle at bottom left, rgba(11, 31, 58, 0.05), transparent 40%);
}

.hero-container {
    display: flex;
    flex-direction: column; /* Stacked text top, image bottom */
    gap: 3rem;
    align-items: center;
    text-align: center;
}

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

.hero-actions {
    display: flex;
    flex-direction: column; /* Buttons stacked on mobile */
    gap: 1rem;
    margin-top: 2rem;
    width: 100%;
}

.hero-trust {
    margin-top: 2.5rem;
    display: flex;
    flex-direction: column; /* Avatars stacked above text on small mobile */
    align-items: center;
    gap: 0.75rem;
}

.avatars { display: flex; justify-content: center; }

.avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 3px solid white;
    margin-left: -10px;
}
.avatar:first-child { margin-left: 0; }

.hero-trust span {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-muted);
}

.image-wrapper {
    position: relative;
    border-radius: var(--radius-lg);
    width: 100%;
}

.mockup-frame {
    border-radius: var(--radius-lg);
    overflow: hidden;
    position: relative;
    z-index: 2;
    box-shadow: var(--shadow-xl);
    border: 1px solid rgba(0,0,0,0.05);
    background: white; /* In case image is transparent */
}

.glow-effect {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 80%;
    height: 80%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    background-color: var(--accent);
    filter: blur(50px);
    opacity: 0.15;
    z-index: 1;
}

/* Animated Text Styles */
.animated-text {
    color: var(--accent);
    font-weight: inherit;
}

.cursor {
    color: var(--accent);
    font-weight: inherit;
    animation: blink 1s infinite;
}

@keyframes blink {
    0%, 50% { opacity: 1; }
    51%, 100% { opacity: 0; }
}

/* Website Animations */
.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease forwards;
}

.fade-in-left {
    opacity: 0;
    transform: translateX(-30px);
    animation: fadeInLeft 0.8s ease forwards;
}

.fade-in-right {
    opacity: 0;
    transform: translateX(30px);
    animation: fadeInRight 0.8s ease forwards;
}

.scale-in {
    opacity: 0;
    transform: scale(0.9);
    animation: scaleIn 0.6s ease forwards;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes scaleIn {
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Hero Section Animations */
.hero-content > * {
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards;
}

.hero-content .badge {
    animation-delay: 0.2s;
}

.hero-content .hero-headline {
    animation-delay: 0.4s;
}

.hero-content .hero-subheadline {
    animation-delay: 0.6s;
}

.hero-content .hero-actions {
    animation-delay: 0.8s;
}

.hero-content .hero-trust {
    animation-delay: 1s;
}

.hero-content .hero-urgency {
    animation-delay: 1.2s;
}

.hero-image {
    opacity: 0;
    animation: fadeInRight 1s ease forwards;
    animation-delay: 0.6s;
}

/* Card Animations */
.card {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.6s ease forwards;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

/* Stagger card animations */
.grid .card:nth-child(1) { animation-delay: 0.1s; }
.grid .card:nth-child(2) { animation-delay: 0.2s; }
.grid .card:nth-child(3) { animation-delay: 0.3s; }

/* Process steps animation */
.process-step {
    opacity: 0;
    transform: translateX(-30px);
    animation: fadeInLeft 0.8s ease forwards;
}

.process-step:nth-child(1) { animation-delay: 0.2s; }
.process-step:nth-child(2) { animation-delay: 0.4s; }
.process-step:nth-child(3) { animation-delay: 0.6s; }

/* Pricing cards animation */
.pricing-card {
    opacity: 0;
    transform: translateY(30px) scale(0.95);
    animation: scaleIn 0.8s ease forwards;
}

.pricing-card:nth-child(1) { animation-delay: 0.1s; }
.pricing-card:nth-child(2) { animation-delay: 0.2s; }
.pricing-card:nth-child(3) { animation-delay: 0.3s; }

/* Floating animation for elements */
.floating {
    animation: floating 3s ease-in-out infinite;
}

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

/* Pulse animation for buttons */
.btn {
    position: relative;
    overflow: hidden;
}

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

.btn:hover::before {
    width: 300px;
    height: 300px;
}

/* Smooth scroll behavior */
html {
    scroll-behavior: smooth;
}

/* Loading animation */
.loading-spinner {
    width: 40px;
    height: 40px;
    border: 4px solid var(--border-color);
    border-top: 4px solid var(--accent);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Hero Section Enhancements */
.badge-local {
    background: linear-gradient(135deg, #E0F2FE, #DBEAFE);
    color: #0369A1;
    font-weight: 600;
    font-size: 0.75rem;
    padding: 0.375rem 0.875rem;
    border-radius: 9999px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.hero-headline {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
    margin-bottom: 0;
    max-width: 90%;
    text-align: center;
}

.headline-main {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 800;
    color: var(--primary);
    letter-spacing: -0.02em;
    margin-bottom: 0.25rem;
}

.headline-animated {
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    font-weight: 700;
    color: var(--primary);
    letter-spacing: -0.01em;
}

.hero-subheadline {
    font-size: clamp(1.125rem, 2.5vw, 1.25rem);
    color: var(--text-main);
    font-weight: 500;
    line-height: 1.5;
    margin: 1.5rem 0 2rem 0;
}

.hero-urgency {
    font-size: 0.875rem;
    color: var(--text-muted);
    font-weight: 500;
    margin-top: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.hero-urgency::before {
    content: "⚡";
    font-size: 1rem;
}

/* Floating Elements */
.hero-mockup {
    position: relative;
}

.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.maps-pin {
    position: absolute;
    top: 20%;
    right: -10%;
    background: var(--accent);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-lg);
    animation: float 3s ease-in-out infinite;
}

.lead-notification {
    position: absolute;
    bottom: 30%;
    left: -15%;
    background: #10B981;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    animation: float 3s ease-in-out infinite 1.5s;
}

.notification-badge {
    font-size: 0.875rem;
    font-weight: 600;
    white-space: nowrap;
}

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

/* Mobile Responsive for Hero */
@media (max-width: 767px) {
    .hero-headline {
        max-width: 95%;
        text-align: center;
    }
    
    .headline-main {
        font-size: 2rem;
        margin-bottom: 0.5rem;
    }
    
    .headline-animated {
        font-size: 1.5rem;
    }
    
    .hero-subheadline {
        font-size: 1.125rem;
        margin: 1rem 0 1.5rem 0;
    }
    
    .hero-image {
        display: none;
    }
    
    .hero-urgency {
        font-size: 0.8rem;
        margin-top: 1rem;
    }
}

@media (min-width: 768px) {
    .hero-headline {
        text-align: left;
        max-width: 100%;
    }
    
    .hero-actions {
        flex-direction: row;
        justify-content: center;
    }
    .hero-trust {
        flex-direction: row;
    }
}

@media (min-width: 1024px) {
    .hero-headline {
        text-align: left;
    }
    
    .headline-main {
        font-size: 2.5rem;
    }
    
    .headline-animated {
        font-size: 2.5rem;
    }
}

@media (min-width: 1024px) {
    .hero { padding: 10rem 0 6rem; }
    .hero-container {
        flex-direction: row;
        text-align: left;
    }
    .hero-content {
        align-items: flex-start;
        flex: 1;
    }
    .hero-actions {
        justify-content: flex-start;
    }
    .hero-trust {
        flex-direction: row;
        align-items: center;
    }
    .hero-image { flex: 1; }
    .glow-effect { filter: blur(80px); }
}

/* Cards */
.card {
    background-color: white;
    padding: 2rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(0,0,0,0.04);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
}
@media (min-width: 1024px) {
    .card { padding: 2.5rem; }
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

/* Icon Box */
.icon-box {
    width: 56px;
    height: 56px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    margin-bottom: 1.25rem;
}
@media (min-width: 768px) {
    .icon-box { width: 64px; height: 64px; font-size: 2rem; margin-bottom: 1.5rem; }
}

.icon-box.error {
    background-color: #fee2e2;
    color: #ef4444;
}

/* Solution Section */
.solution-flex {
    display: flex;
    flex-direction: column-reverse; /* Image below text on mobile */
    gap: 3rem;
    align-items: center;
}

.solution-image { width: 100%; }
.rounded-image { border-radius: var(--radius-lg); width: 100%; }

.feature-list { padding-left: 0; }
.feature-list li {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.feature-icon {
    font-size: 1.75rem;
    color: var(--accent);
    flex-shrink: 0;
}

@media (min-width: 1024px) {
    .solution-flex {
        flex-direction: row;
        gap: 4rem;
    }
    .solution-image { flex: 1; }
    .solution-content { flex: 1; padding-left: 2rem; }
    .feature-list li { gap: 1.5rem; margin-bottom: 2rem; }
    .feature-icon { font-size: 2rem; }
}

/* Service Card Specific */
.service-icon {
    font-size: 2.5rem;
    color: var(--accent);
    margin-bottom: 1.25rem;
}
@media (min-width: 768px) {
    .service-icon { font-size: 3rem; margin-bottom: 1.5rem; }
}

/* Process Section */
.process-timeline {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.process-step {
    display: flex;
    align-items: flex-start;
    gap: 2rem;
    position: relative;
    background: white;
    padding: 2rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-color);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.process-step:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.step-icon {
    background: linear-gradient(135deg, var(--accent), #2563EB);
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
    box-shadow: var(--shadow-md);
}

.step-content {
    flex: 1;
}

.step-number {
    font-size: 2rem;
    font-weight: 800;
    color: var(--accent);
    opacity: 0.2;
    position: absolute;
    top: 1rem;
    right: 1.5rem;
}

.step-content h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 0.75rem;
}

.step-content p {
    font-size: 1rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.step-benefit {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    font-weight: 600;
    color: #10B981;
    background: rgba(16, 185, 129, 0.1);
    padding: 0.5rem 0.75rem;
    border-radius: var(--radius-md);
    display: inline-flex;
}

.step-benefit i {
    color: #10B981;
    font-size: 1rem;
}

.process-cta {
    background: linear-gradient(135deg, #F0F9FF, #E0F2FE);
    border-radius: var(--radius-lg);
    padding: 3rem;
    text-align: center;
    margin-top: 4rem;
    border: 1px solid #BAE6FD;
}

.cta-content h3 {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.125rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
}

/* Mobile Responsive for Process */
@media (max-width: 767px) {
    .process-timeline {
        gap: 2rem;
    }
    
    .process-step {
        flex-direction: column;
        text-align: center;
        padding: 1.5rem;
        gap: 1.5rem;
    }
    
    .step-icon {
        width: 50px;
        height: 50px;
        font-size: 1.25rem;
        margin: 0 auto;
    }
    
    .step-number {
        font-size: 1.5rem;
        top: 0.75rem;
        right: 1rem;
    }
    
    .step-content h3 {
        font-size: 1.125rem;
    }
    
    .step-content p {
        font-size: 0.95rem;
    }
    
    .step-benefit {
        font-size: 0.8rem;
        margin: 0 auto;
    }
    
    .process-cta {
        padding: 2rem 1.5rem;
        margin-top: 3rem;
    }
    
    .cta-content h3 {
        font-size: 1.5rem;
    }
    
    .cta-content p {
        font-size: 1rem;
    }
}

@media (min-width: 768px) {
    .process-timeline::before {
        content: '';
        position: absolute;
        left: 30px;
        top: 60px;
        bottom: 60px;
        width: 2px;
        background: linear-gradient(180deg, var(--accent), transparent);
        opacity: 0.3;
    }
}

/* Pricing Section */
.offer-banner {
    background: linear-gradient(135deg, #FEF3C7, #FDE68A);
    border-radius: var(--radius-lg);
    padding: 2rem;
    text-align: center;
    margin-bottom: 3rem;
    border: 2px solid #F59E0B;
    position: relative;
    overflow: hidden;
}

.offer-badge {
    background: #DC2626;
    color: white;
    font-size: 0.875rem;
    font-weight: 700;
    padding: 0.375rem 0.75rem;
    border-radius: var(--radius-md);
    display: inline-block;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.offer-title {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.offer-subtitle {
    font-size: 1rem;
    color: var(--text-muted);
    margin: 0;
}

.pricing-grid {
    display: grid;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    grid-template-columns: 1fr;
}

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

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

.pricing-card {
    background: white;
    border-radius: var(--radius-lg);
    overflow: hidden;
    position: relative;
    border: 1px solid var(--border-color);
    display: flex;
    flex-direction: column;
    box-shadow: var(--shadow-md);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    max-width: 320px;
    margin: 0 auto;
}

.pricing-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-xl);
}

.pricing-card.popular {
    border-color: var(--accent);
    box-shadow: var(--shadow-lg);
    transform: scale(1.02);
}

.popular-badge {
    background-color: var(--accent);
    color: white;
    text-align: center;
    padding: 0.5rem;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    position: absolute;
    top: -1px;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    z-index: 10;
}

.card-header {
    padding: 1.5rem 1.5rem 1rem;
    text-align: center;
}

.plan-tag {
    background: var(--accent-light);
    color: var(--accent);
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.25rem 0.625rem;
    border-radius: 9999px;
    display: inline-block;
    margin-bottom: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.025em;
}

.card-header h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 0.75rem;
}

.price-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.375rem;
}

.original-price {
    font-size: 1rem;
    color: var(--text-muted);
    text-decoration: line-through;
    font-weight: 500;
}

.price {
    display: flex;
    align-items: baseline;
    gap: 0.25rem;
}

.currency {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--primary);
}

.amount {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary);
}

.plan-features {
    list-style: none;
    padding: 0 1.5rem;
    margin: 1rem 0;
    flex: 1;
}

.plan-features li {
    display: flex;
    align-items: flex-start;
    gap: 0.625rem;
    margin-bottom: 0.75rem;
    font-size: 0.875rem;
    line-height: 1.4;
}

.plan-features i {
    color: var(--accent);
    font-size: 1rem;
    flex-shrink: 0;
    margin-top: 0.125rem;
}

.card-footer {
    padding: 1rem 1.5rem 1.5rem;
    margin-top: auto;
}

.pricing-trust {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-top: 3rem;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.95rem;
    color: var(--text-muted);
    font-weight: 500;
}

.trust-item i {
    color: var(--accent);
    font-size: 1.25rem;
}

/* Mobile Responsive for Pricing */
@media (max-width: 767px) {
    .offer-banner {
        padding: 1.5rem;
        margin-bottom: 2rem;
    }
    
    .offer-title {
        font-size: 1.5rem;
    }
    
    .pricing-card {
        max-width: 100%;
    }
    
    .pricing-card.popular {
        transform: scale(1);
    }
    
    .card-header {
        padding: 1.25rem 1.25rem 0.75rem;
    }
    
    .card-header h3 {
        font-size: 1.125rem;
    }
    
    .amount {
        font-size: 1.75rem;
    }
    
    .plan-features {
        padding: 0 1rem;
    }
    
    .plan-features li {
        font-size: 0.8rem;
        margin-bottom: 0.625rem;
    }
    
    .card-footer {
        padding: 0.75rem 1.25rem 1.25rem;
    }
    
    .pricing-trust {
        gap: 1.5rem;
        flex-direction: column;
        align-items: center;
    }
    
    .trust-item {
        font-size: 0.875rem;
    }
}

.card-header {
    padding: 2rem 1.5rem 1.5rem;
    border-bottom: 1px solid var(--border-color);
    text-align: center;
}

.price {
    margin: 1rem 0;
    color: var(--primary);
    display: flex;
    justify-content: center;
    align-items: flex-start;
}

.currency {
    font-size: 1.25rem;
    font-weight: 600;
    margin-top: 0.25rem;
}

.amount {
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1;
}

.plan-desc {
    font-size: 0.875rem;
    color: var(--text-muted);
}

.plan-features { padding: 2rem 1.5rem; flex-grow: 1; }
.plan-features li {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    font-weight: 500;
}

.plan-features li i { color: #10b981; font-size: 1.25rem; }
.plan-features li.disabled { color: var(--text-muted); opacity: 0.6; }
.plan-features li.disabled i { color: var(--text-muted); }

.card-footer { padding: 0 1.5rem 2rem; }

@media (min-width: 1024px) {
    .pricing-card.popular { transform: scale(1.03); box-shadow: var(--shadow-xl); }
    .card-header { padding: 2.5rem 2.5rem 1.5rem; }
    .price { margin: 1.5rem 0; }
    .currency { font-size: 1.5rem; }
    .amount { font-size: 3.5rem; }
    .plan-desc { font-size: 1rem; }
    .plan-features { padding: 2.5rem; }
    .card-footer { padding: 0 2.5rem 2.5rem; }
}

/* Testimonials */
.testimonial-card {
    background: var(--bg-light);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-color);
}
@media (min-width: 768px) {
    .testimonial-card { padding: 2.5rem; }
}

.stars {
    color: #fbbf24;
    margin-bottom: 1rem;
    font-size: 1.25rem;
    display: flex;
    gap: 0.25rem;
}

.review {
    font-size: 1rem;
    font-style: italic;
    color: var(--text-main);
    margin-bottom: 1.5rem;
}
@media (min-width: 1024px) {
    .review { font-size: 1.125rem; margin-bottom: 2rem; }
}

.reviewer { display: flex; align-items: center; gap: 1rem; }
.reviewer-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background-color: var(--primary);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.125rem;
}
.bg-accent-light { background-color: var(--accent-light); }

.reviewer-info { display: flex; flex-direction: column; }
.reviewer-info strong { color: var(--primary); font-size: 0.875rem; }
.reviewer-info span { font-size: 0.75rem; color: var(--text-muted); }

@media (min-width: 768px) {
    .reviewer-avatar { width: 50px; height: 50px; font-size: 1.25rem; }
    .reviewer-info strong { font-size: 1rem; }
    .reviewer-info span { font-size: 0.875rem; }
}

/* CTA Section */
.cta-section {
    padding: 0 1.25rem;
    margin-bottom: -5rem; /* Overlap footer */
    position: relative;
    z-index: 10;
}
@media (min-width: 768px) {
    .cta-section { margin-bottom: -6rem; }
}

.cta-box {
    background-color: var(--primary);
    color: white;
    padding: 3rem 1.5rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    max-width: 900px;
    margin: 0 auto;
}
@media (min-width: 1024px) {
    .cta-box { padding: 4rem 2rem; box-shadow: var(--shadow-xl); }
}

.cta-box h2 {
    color: white;
    margin-bottom: 1rem;
}

.cta-box p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-inline: auto;
}
@media (min-width: 768px) {
    .cta-box p { font-size: 1.25rem; margin-bottom: 2.5rem; }
}

.cta-btn {
    font-size: 1.125rem;
    padding: 1rem 2rem;
    transition: transform 0.3s;
    width: 100%;
}
@media (min-width: 768px) {
    .cta-btn { width: auto; font-size: 1.25rem; padding: 1.25rem 3rem; }
    .cta-btn:hover { transform: scale(1.05); }
}

.small-text { font-size: 0.875rem !important; margin-bottom: 0 !important; }
.opacity-70 { opacity: 0.7; }

/* Footer */
.footer {
    background-color: var(--bg-light);
    padding-top: 8rem; /* Space for CTA overlap */
    border-top: 1px solid var(--border-color);
}
@media (min-width: 768px) {
    .footer { padding-top: 10rem; }
}

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

@media (min-width: 600px) {
    .footer-container { grid-template-columns: 1fr 1fr; }
}

@media (min-width: 1024px) {
    .footer-container {
        grid-template-columns: 2fr 1fr 1fr;
        gap: 3rem;
        padding-bottom: 4rem;
    }
}

.footer-brand p {
    max-width: 300px;
    margin-top: 1rem;
}
@media (min-width: 768px) {
    .footer-brand p { margin-top: 1.5rem; }
}

.footer-logo { display: flex; align-items: center; }
.brand-text {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary);
}
@media (min-width: 768px) {
    .brand-text { font-size: 1.5rem; }
}

.location-tag {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 500;
}

.footer h3 {
    color: var(--primary);
    font-size: 1.125rem;
    margin-bottom: 1rem;
}
@media (min-width: 768px) {
    .footer h3 { margin-bottom: 1.5rem; }
}

.footer ul li { margin-bottom: 0.75rem; }
@media (min-width: 768px) {
    .footer ul li { margin-bottom: 1rem; }
}

.footer ul li a { color: var(--text-muted); font-weight: 500; }
.footer ul li a:hover { color: var(--accent); }

.contact-link { display: flex; align-items: center; gap: 0.5rem; }
.contact-link i { font-size: 1.25rem; }

.footer-bottom {
    background-color: white;
    padding: 1.5rem 0;
    text-align: center;
    border-top: 1px solid var(--border-color);
}

.footer-bottom p { font-size: 0.875rem; margin: 0; }

/* Sticky WhatsApp Button */
.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 56px;
    height: 56px;
    background: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    box-shadow: var(--shadow-lg);
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    background: #20b858;
}

@media (min-width: 768px) {
    .whatsapp-float {
        bottom: 30px;
        right: 30px;
        width: 60px;
        height: 60px;
    }
}
