/* ======================================================
   WebMaharaj Landing Page – Premium CSS
   ====================================================== */

/* === CSS Custom Properties / Design Tokens === */
:root {
    --primary: #1a237e;
    --primary-dark: #0d1452;
    --primary-light: #3949ab;
    --accent: #ff6f00;
    --accent-light: #ffa040;
    --accent-dark: #e65100;
    --gradient-primary: linear-gradient(135deg, #1a237e 0%, #283593 50%, #3949ab 100%);
    --gradient-accent: linear-gradient(135deg, #ff6f00 0%, #ff9100 100%);
    --gradient-hero: linear-gradient(135deg, #0d1452 0%, #1a237e 40%, #283593 100%);
    --gradient-text: linear-gradient(135deg, #ff6f00, #ff9100, #ffab40);
    --gradient-cta: linear-gradient(135deg, #ff6f00 0%, #ff8f00 50%, #ffa726 100%);
    --text-dark: #1a1a2e;
    --text-medium: #4a4a6a;
    --text-light: #7a7a9a;
    --bg-white: #ffffff;
    --bg-light: #f8f9ff;
    --bg-section: #f0f2ff;
    --border-light: #e8eaff;
    --shadow-sm: 0 2px 8px rgba(26, 35, 126, 0.08);
    --shadow-md: 0 8px 30px rgba(26, 35, 126, 0.12);
    --shadow-lg: 0 20px 60px rgba(26, 35, 126, 0.15);
    --shadow-xl: 0 30px 80px rgba(26, 35, 126, 0.2);
    --shadow-glow: 0 0 40px rgba(255, 111, 0, 0.3);
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 28px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-fast: all 0.15s ease;
    --transition-smooth: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    --font-primary: 'Outfit', 'Inter', sans-serif;
    --font-body: 'Inter', 'Outfit', sans-serif;
}

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

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

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

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

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul { list-style: none; }

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

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

/* === Buttons === */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-family: var(--font-primary);
    font-weight: 600;
    font-size: 1rem;
    padding: 14px 32px;
    border-radius: var(--radius-md);
    border: none;
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: 0.5s;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: var(--gradient-cta);
    color: white;
    box-shadow: 0 4px 20px rgba(255, 111, 0, 0.35);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(255, 111, 0, 0.5);
}

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

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

.btn-white {
    background: white;
    color: var(--primary);
    font-weight: 700;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}

.btn-white:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.25);
}

.btn-lg {
    padding: 18px 40px;
    font-size: 1.1rem;
}

.btn-block {
    width: 100%;
}

.pulse-btn {
    animation: pulse-shadow 2s infinite;
}

@keyframes pulse-shadow {
    0%, 100% { box-shadow: 0 4px 20px rgba(255, 111, 0, 0.35); }
    50% { box-shadow: 0 4px 40px rgba(255, 111, 0, 0.6), 0 0 0 10px rgba(255, 111, 0, 0.1); }
}

/* === Section Header === */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--bg-section);
    color: var(--primary);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 16px;
    border: 1px solid var(--border-light);
}

.section-header h2 {
    font-family: var(--font-primary);
    font-size: 2.8rem;
    font-weight: 800;
    line-height: 1.2;
    color: var(--text-dark);
    margin-bottom: 16px;
}

.section-desc {
    font-size: 1.15rem;
    color: var(--text-medium);
    max-width: 600px;
    margin: 0 auto;
}

/* ============================================
   HEADER
   ============================================ */
#header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid transparent;
    transition: var(--transition);
    padding: 10px 0;
}

#header.scrolled {
    background: rgba(255, 255, 255, 0.98);
    border-bottom: 1px solid var(--border-light);
    box-shadow: var(--shadow-sm);
    padding: 6px 0;
}

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

.logo-link {
    display: flex;
    align-items: center;
}

.logo-img {
    height: 62px;
    width: auto;
    max-width: 240px;
    object-fit: contain;
    border-radius: 16px;
}

#header.scrolled .logo-img {
    height: 50px;
}

#main-nav ul {
    display: flex;
    align-items: center;
    gap: 8px;
}

#main-nav ul li a {
    padding: 10px 18px;
    font-weight: 500;
    font-size: 0.95rem;
    color: var(--text-dark);
    border-radius: var(--radius-sm);
    transition: var(--transition);
}

#main-nav ul li a:hover {
    color: var(--primary);
    background: var(--bg-section);
}

.nav-cta {
    background: var(--gradient-cta) !important;
    color: white !important;
    font-weight: 600 !important;
    box-shadow: 0 4px 15px rgba(255, 111, 0, 0.3);
}

.nav-cta:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(255, 111, 0, 0.4) !important;
    background: var(--gradient-cta) !important;
}

#mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}

#mobile-menu-btn span {
    width: 28px;
    height: 3px;
    background: var(--text-dark);
    border-radius: 3px;
    transition: var(--transition);
}

#mobile-menu-btn.active span:nth-child(1) { transform: rotate(45deg) translate(6px, 6px); }
#mobile-menu-btn.active span:nth-child(2) { opacity: 0; }
#mobile-menu-btn.active span:nth-child(3) { transform: rotate(-45deg) translate(6px, -6px); }

/* ============================================
   HERO SECTION
   ============================================ */
#hero {
    background: var(--gradient-hero);
    padding: 140px 0 100px;
    position: relative;
    overflow: hidden;
    min-height: 90vh;
    display: flex;
    align-items: center;
}

.hero-particles {
    position: absolute;
    inset: 0;
    overflow: hidden;
    z-index: 0;
}

.hero-particles .particle {
    position: absolute;
    width: 6px;
    height: 6px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    animation: float-particle linear infinite;
}

@keyframes float-particle {
    0% { transform: translateY(100vh) rotate(0deg); opacity: 0; }
    10% { opacity: 1; }
    90% { opacity: 1; }
    100% { transform: translateY(-100px) rotate(720deg); opacity: 0; }
}

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

.hero-content { color: white; }

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 24px;
    backdrop-filter: blur(10px);
    animation: fadeInDown 0.8s ease;
}

.hero-badge i { color: var(--accent); }

#hero h1 {
    font-family: var(--font-primary);
    font-size: 3.4rem;
    font-weight: 900;
    line-height: 1.15;
    margin-bottom: 20px;
    animation: fadeInUp 0.8s ease 0.2s both;
}

#hero h1 .gradient-text {
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.2rem;
    opacity: 0.9;
    margin-bottom: 12px;
    animation: fadeInUp 0.8s ease 0.3s both;
}

.hero-price {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
    animation: fadeInUp 0.8s ease 0.4s both;
}

.price-tag {
    font-family: var(--font-primary);
    font-size: 3rem;
    font-weight: 900;
    color: var(--accent-light);
    text-shadow: 0 2px 20px rgba(255, 111, 0, 0.3);
}

.price-strike {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.5);
    text-decoration: line-through;
}

.price-badge {
    background: var(--accent);
    color: white;
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    animation: bounce-badge 2s infinite;
}

@keyframes bounce-badge {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.08); }
}

.hero-desc {
    font-size: 1.05rem;
    opacity: 0.85;
    margin-bottom: 32px;
    line-height: 1.8;
    animation: fadeInUp 0.8s ease 0.5s both;
}

.hero-desc em {
    color: var(--accent-light);
    font-style: italic;
    font-weight: 600;
}

.hero-actions {
    display: flex;
    gap: 16px;
    margin-bottom: 32px;
    animation: fadeInUp 0.8s ease 0.6s both;
}

.hero-actions .btn-outline {
    border-color: rgba(255,255,255,0.4);
    color: white;
}

.hero-actions .btn-outline:hover {
    background: white;
    color: var(--primary);
    border-color: white;
}

.hero-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    animation: fadeInUp 0.8s ease 0.7s both;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    opacity: 0.85;
}

.trust-item i { color: #4caf50; font-size: 1rem; }

/* Hero Visual */
.hero-visual {
    position: relative;
    animation: fadeInRight 1s ease 0.5s both;
}

.hero-img-wrapper {
    position: relative;
}

.hero-img {
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
    animation: float-hero 6s ease-in-out infinite;
}

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

.floating-card {
    position: absolute;
    background: white;
    border-radius: var(--radius-md);
    padding: 12px 18px;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: var(--shadow-md);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-dark);
    animation: float-card 4s ease-in-out infinite;
    white-space: nowrap;
}

.floating-card i { color: var(--accent); font-size: 1.1rem; }

.card-1 { top: 10%; right: -20px; animation-delay: 0s; }
.card-2 { bottom: 30%; left: -30px; animation-delay: 1.3s; }
.card-3 { bottom: 5%; right: 10%; animation-delay: 2.6s; }

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

/* Hero Wave */
.hero-wave {
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    z-index: 2;
}

.hero-wave svg {
    display: block;
    width: 100%;
    height: auto;
}

/* ============================================
   STATS BAR
   ============================================ */
#stats-bar {
    padding: 60px 0;
    background: var(--bg-white);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.stat-item {
    text-align: center;
    padding: 30px 20px;
    border-radius: var(--radius-lg);
    background: var(--bg-light);
    border: 1px solid var(--border-light);
    transition: var(--transition);
}

.stat-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.stat-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    margin: 0 auto 16px;
}

.stat-number {
    font-family: var(--font-primary);
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
    margin-bottom: 6px;
}

.stat-label {
    font-size: 0.95rem;
    color: var(--text-medium);
    font-weight: 500;
}

/* ============================================
   SERVICES SECTION
   ============================================ */
#services {
    padding: 100px 0;
    background: var(--bg-light);
}

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

.service-card {
    background: white;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border-light);
    transition: var(--transition-smooth);
    position: relative;
}

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

.service-card-glow {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-cta);
    opacity: 0;
    transition: var(--transition);
}

.service-card:hover .service-card-glow {
    opacity: 1;
}

.service-card.featured {
    border: 2px solid var(--accent);
    transform: scale(1.03);
    box-shadow: var(--shadow-md);
}

.service-card.featured:hover {
    transform: scale(1.03) translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.featured-ribbon {
    position: absolute;
    top: 20px;
    right: -35px;
    background: var(--gradient-cta);
    color: white;
    padding: 6px 40px;
    font-size: 0.8rem;
    font-weight: 700;
    transform: rotate(45deg);
    z-index: 10;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.service-img-wrapper {
    position: relative;
    overflow: hidden;
    height: 220px;
}

.service-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.service-card:hover .service-img-wrapper img {
    transform: scale(1.05);
}

.service-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    background: var(--primary);
    color: white;
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
}

.badge-premium {
    background: var(--gradient-cta);
}

.service-content {
    padding: 30px;
}

.service-icon {
    width: 56px;
    height: 56px;
    background: var(--bg-section);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: var(--primary);
    margin-bottom: 16px;
}

.service-content h3 {
    font-family: var(--font-primary);
    font-size: 1.35rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.service-content p {
    color: var(--text-medium);
    font-size: 0.95rem;
    margin-bottom: 20px;
    line-height: 1.7;
}

.service-features {
    margin-bottom: 20px;
}

.service-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 6px 0;
    font-size: 0.9rem;
    color: var(--text-medium);
}

.service-features li i {
    color: #4caf50;
    font-size: 0.85rem;
}

.service-price {
    padding: 16px 0;
    border-top: 1px solid var(--border-light);
    margin-bottom: 20px;
    font-size: 1.05rem;
    color: var(--text-medium);
}

.service-price strong {
    font-size: 1.5rem;
    color: var(--accent);
    font-weight: 800;
}

/* ============================================
   WHY CHOOSE US
   ============================================ */
#why-us {
    padding: 100px 0;
    background: var(--bg-white);
}

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

.feature-card {
    padding: 40px 30px;
    background: var(--bg-light);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-light);
    text-align: center;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-cta);
    transform: scaleX(0);
    transition: var(--transition-smooth);
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
    background: white;
}

.feature-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient-primary);
    color: white;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    margin: 0 auto 20px;
    transition: var(--transition);
}

.feature-card:hover .feature-icon {
    transform: scale(1.1) rotate(5deg);
}

.feature-card h3 {
    font-family: var(--font-primary);
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.feature-card p {
    color: var(--text-medium);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* ============================================
   PRICING SECTION
   ============================================ */
#pricing {
    padding: 100px 0;
    background: var(--bg-light);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    align-items: start;
}

.pricing-card {
    background: white;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border-light);
    padding: 40px 30px;
    transition: var(--transition-smooth);
    position: relative;
}

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

.pricing-card.popular {
    border: 2px solid var(--accent);
    transform: scale(1.05);
    box-shadow: var(--shadow-lg);
    z-index: 2;
}

.pricing-card.popular:hover {
    transform: scale(1.05) translateY(-6px);
    box-shadow: var(--shadow-xl);
}

.popular-badge {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    background: var(--gradient-cta);
    color: white;
    text-align: center;
    padding: 8px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.pricing-card.popular .pricing-header { margin-top: 30px; }

.pricing-header {
    text-align: center;
    margin-bottom: 24px;
}

.pricing-header h3 {
    font-family: var(--font-primary);
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 4px;
}

.pricing-header p {
    color: var(--text-light);
    font-size: 0.9rem;
}

.pricing-price {
    text-align: center;
    padding: 24px 0;
    border-top: 1px solid var(--border-light);
    border-bottom: 1px solid var(--border-light);
    margin-bottom: 24px;
}

.price-old {
    display: block;
    font-size: 1rem;
    color: var(--text-light);
    text-decoration: line-through;
    margin-bottom: 4px;
}

.price-new {
    font-family: var(--font-primary);
    font-size: 2.8rem;
    font-weight: 900;
    color: var(--primary);
    line-height: 1;
}

.pricing-card.popular .price-new {
    color: var(--accent);
}

.price-period {
    display: block;
    color: var(--text-light);
    font-size: 0.85rem;
    margin-top: 6px;
}

.pricing-features {
    margin-bottom: 30px;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    font-size: 0.9rem;
    color: var(--text-medium);
}

.pricing-features li i {
    color: #4caf50;
    font-size: 0.9rem;
}

.pricing-features li.disabled {
    opacity: 0.4;
}

.pricing-features li.disabled i {
    color: var(--text-light);
}

/* ============================================
   PROCESS SECTION
   ============================================ */
#process {
    padding: 100px 0;
    background: var(--gradient-hero);
    color: white;
}

#process .section-tag {
    background: rgba(255,255,255,0.12);
    color: white;
    border-color: rgba(255,255,255,0.2);
}

#process .section-header h2 {
    color: white;
}

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

.process-step {
    text-align: center;
    padding: 30px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--radius-lg);
    backdrop-filter: blur(10px);
    flex: 1;
    min-width: 200px;
    max-width: 250px;
    transition: var(--transition);
}

.process-step:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
}

.step-number {
    font-family: var(--font-primary);
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--accent-light);
    opacity: 0.4;
    margin-bottom: 10px;
}

.step-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-cta);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    margin: 0 auto 16px;
    color: white;
}

.process-step h3 {
    font-family: var(--font-primary);
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.process-step p {
    font-size: 0.9rem;
    opacity: 0.8;
    line-height: 1.6;
}

.process-connector {
    color: var(--accent-light);
    font-size: 1.2rem;
    opacity: 0.5;
}

/* ============================================
   TESTIMONIALS
   ============================================ */
#testimonials {
    padding: 100px 0;
    background: var(--bg-white);
}

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

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

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

.testimonial-stars {
    display: flex;
    gap: 4px;
    color: #ffc107;
    margin-bottom: 16px;
    font-size: 1rem;
}

.testimonial-card p {
    color: var(--text-medium);
    font-size: 0.95rem;
    line-height: 1.8;
    margin-bottom: 24px;
    font-style: italic;
}

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

.author-avatar {
    width: 48px;
    height: 48px;
    background: var(--gradient-primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
}

.testimonial-author strong {
    display: block;
    font-size: 0.95rem;
    color: var(--text-dark);
}

.testimonial-author span {
    font-size: 0.85rem;
    color: var(--text-light);
}

/* ============================================
   CTA BANNER
   ============================================ */
#cta-banner {
    padding: 80px 0;
    background: var(--gradient-cta);
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
}

#cta-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.08) 0%, transparent 60%);
    animation: rotate-bg 20s linear infinite;
}

@keyframes rotate-bg {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.cta-content {
    position: relative;
    z-index: 1;
}

#cta-banner h2 {
    font-family: var(--font-primary);
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 16px;
}

#cta-banner p {
    font-size: 1.15rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto 30px;
}

.cta-timer {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 35px;
}

.timer-item {
    background: rgba(255,255,255,0.15);
    border: 1px solid rgba(255,255,255,0.25);
    border-radius: var(--radius-md);
    padding: 12px 20px;
    backdrop-filter: blur(10px);
    text-align: center;
}

.timer-item span {
    display: block;
    font-family: var(--font-primary);
    font-size: 2rem;
    font-weight: 800;
    line-height: 1;
}

.timer-item small {
    font-size: 0.75rem;
    opacity: 0.8;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.timer-sep {
    font-family: var(--font-primary);
    font-size: 2rem;
    font-weight: 800;
    opacity: 0.5;
}

/* ============================================
   CONTACT SECTION
   ============================================ */
#contact {
    padding: 100px 0;
    background: var(--bg-light);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 40px;
    align-items: start;
}

.contact-form-wrapper {
    background: white;
    border-radius: var(--radius-lg);
    padding: 40px;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-light);
}

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

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

.form-group label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.form-group label i {
    color: var(--primary);
    font-size: 0.85rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid var(--border-light);
    border-radius: var(--radius-md);
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--text-dark);
    background: var(--bg-light);
    transition: var(--transition);
    outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(26, 35, 126, 0.1);
    background: white;
}

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

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.submit-btn {
    font-size: 1.1rem;
    padding: 18px 40px;
}

.submit-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.form-note {
    text-align: center;
    font-size: 0.8rem;
    color: var(--text-light);
    margin-top: 16px;
}

.form-note i { color: #4caf50; }

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.info-card {
    background: white;
    border-radius: var(--radius-lg);
    padding: 28px 24px;
    display: flex;
    align-items: flex-start;
    gap: 18px;
    border: 1px solid var(--border-light);
    transition: var(--transition);
}

.info-card:hover {
    transform: translateX(5px);
    box-shadow: var(--shadow-sm);
}

.info-icon {
    width: 50px;
    height: 50px;
    min-width: 50px;
    background: var(--gradient-primary);
    color: white;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.info-card h3 {
    font-family: var(--font-primary);
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 4px;
    color: var(--text-dark);
}

.info-card p {
    font-size: 0.9rem;
    color: var(--text-medium);
    line-height: 1.6;
}

.info-card a {
    color: var(--primary);
    font-weight: 500;
}

.info-card a:hover {
    color: var(--accent);
}

/* ============================================
   FOOTER
   ============================================ */
#footer {
    background: var(--primary-dark);
    color: rgba(255, 255, 255, 0.8);
    padding: 60px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.3fr 1fr 1fr 1.2fr;
    gap: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-logo {
    height: 62px;
    width: auto;
    max-width: 240px;
    object-fit: contain;
    border-radius: 16px;
    margin-bottom: 16px;
}

.footer-brand p {
    font-size: 0.9rem;
    line-height: 1.7;
    opacity: 0.8;
    margin-bottom: 20px;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.footer-social a {
    width: 42px;
    height: 42px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1rem;
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--accent);
    border-color: var(--accent);
    transform: translateY(-3px);
}

.footer-links h4,
.footer-contact-info h4 {
    font-family: var(--font-primary);
    font-size: 1.1rem;
    font-weight: 700;
    color: white;
    margin-bottom: 20px;
}

.footer-links ul li {
    margin-bottom: 10px;
}

.footer-links ul li a {
    font-size: 0.9rem;
    transition: var(--transition);
    opacity: 0.75;
}

.footer-links ul li a:hover {
    color: var(--accent-light);
    opacity: 1;
    padding-left: 5px;
}

.footer-contact-info p {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.9rem;
    margin-bottom: 14px;
    opacity: 0.8;
}

.footer-contact-info p i {
    color: var(--accent-light);
    margin-top: 4px;
    min-width: 16px;
}

.footer-contact-info a {
    color: rgba(255,255,255,0.8);
}

.footer-contact-info a:hover {
    color: var(--accent-light);
}

.footer-bottom {
    padding: 20px 0;
    text-align: center;
    font-size: 0.85rem;
    opacity: 0.6;
}

/* ============================================
   STICKY BUTTONS
   ============================================ */
.sticky-buttons {
    position: fixed;
    bottom: 24px;
    right: 20px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    z-index: 999;
    opacity: 0;
    transform: translateY(20px);
    transition: var(--transition-smooth);
}

.sticky-buttons.visible {
    opacity: 1;
    transform: translateY(0);
}

.sticky-btn {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.25);
}

.sticky-btn span {
    display: none;
}

.sticky-btn i {
    font-size: 1.4rem;
}

.sticky-call {
    background: var(--primary);
}

.sticky-call:hover {
    background: var(--primary-dark);
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(26, 35, 126, 0.4);
}

.sticky-whatsapp {
    background: #25d366;
    animation: pulse-whatsapp 2s infinite;
}

.sticky-whatsapp:hover {
    background: #1da653;
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
    animation: none;
}

@keyframes pulse-whatsapp {
    0%, 100% { box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3); }
    50% { box-shadow: 0 4px 25px rgba(37, 211, 102, 0.6), 0 0 0 8px rgba(37, 211, 102, 0.1); }
}

/* ============================================
   SUCCESS MODAL
   ============================================ */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(5px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    background: white;
    border-radius: var(--radius-xl);
    padding: 50px 40px;
    text-align: center;
    max-width: 420px;
    width: 90%;
    transform: scale(0.9);
    transition: var(--transition);
}

.modal-overlay.active .modal-content {
    transform: scale(1);
}

.modal-icon {
    font-size: 4rem;
    color: #4caf50;
    margin-bottom: 20px;
}

.modal-content h3 {
    font-family: var(--font-primary);
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.modal-content p {
    color: var(--text-medium);
    font-size: 1rem;
    margin-bottom: 30px;
    line-height: 1.7;
}

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

@keyframes fadeInDown {
    from { opacity: 0; transform: translateY(-20px); }
    to { opacity: 1; transform: translateY(0); }
}

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

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

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

/* ============================================
   PARTNERS SECTION
   ============================================ */
#partners {
    padding: 80px 0;
    background: var(--bg-white);
    border-top: 1px solid var(--border-light);
}

.partners-grid {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 40px;
}

.partner-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px 30px;
    background: var(--bg-light);
    border-radius: var(--radius-sm);
    border: 1px solid transparent;
    transition: var(--transition);
    cursor: default;
}

.partner-logo:hover {
    background: white;
    border-color: var(--border-light);
    box-shadow: var(--shadow-sm);
    transform: translateY(-3px);
}

.partner-logo img {
    height: 32px;
    width: auto;
    filter: grayscale(100%) opacity(0.7);
    transition: var(--transition);
}

.partner-logo:hover img {
    filter: grayscale(0%) opacity(1);
}

.partner-logo span {
    font-family: var(--font-primary);
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--text-medium);
    transition: var(--transition);
}

.partner-logo:hover span {
    color: var(--text-dark);
}

/* ============================================
   RESPONSIVE – TABLET
   ============================================ */
@media (max-width: 1024px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .hero-visual {
        order: -1;
        max-width: 500px;
        margin: 0 auto;
    }

    .hero-actions {
        justify-content: center;
    }

    .hero-trust {
        justify-content: center;
    }

    .services-grid,
    .features-grid,
    .pricing-grid,
    .testimonials-slider {
        grid-template-columns: repeat(2, 1fr);
    }

    .service-card.featured {
        transform: none;
    }

    .service-card.featured:hover {
        transform: translateY(-8px);
    }

    .pricing-card.popular {
        transform: none;
    }

    .pricing-card.popular:hover {
        transform: translateY(-6px);
    }

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

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .section-header h2 {
        font-size: 2.2rem;
    }

    #hero h1 {
        font-size: 2.8rem;
    }
}

/* ============================================
   RESPONSIVE – MOBILE
   ============================================ */
@media (max-width: 768px) {
    html { font-size: 15px; }

    #main-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: white;
        box-shadow: -10px 0 30px rgba(0,0,0,0.1);
        padding: 80px 30px 30px;
        transition: var(--transition-smooth);
        z-index: 1000;
    }

    #main-nav.open { right: 0; }

    #main-nav ul {
        flex-direction: column;
        gap: 4px;
    }

    #main-nav ul li a {
        display: block;
        padding: 14px 18px;
        font-size: 1.05rem;
        border-radius: var(--radius-sm);
    }

    #mobile-menu-btn { display: flex; }

    #hero {
        padding: 120px 0 80px;
        min-height: auto;
    }

    .hero-visual {
        max-width: 75%;
        margin: 0 auto;
    }

    #hero h1 { font-size: 2.2rem; }

    .hero-price { justify-content: center; }

    .price-tag { font-size: 2.5rem; }

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

    .hero-actions .btn { width: 100%; }

    .floating-card {
        padding: 8px 12px;
        font-size: 0.75rem;
    }
    .card-1 { top: 5%; right: 0; }
    .card-2 { bottom: 25%; left: 0; }
    .card-3 { bottom: 0; right: 5%; }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .stat-number { font-size: 2rem; }

    .services-grid,
    .features-grid,
    .pricing-grid,
    .testimonials-slider {
        grid-template-columns: 1fr;
    }

    .partners-grid {
        gap: 16px;
    }

    .partner-logo {
        width: calc(50% - 8px);
        padding: 12px;
        justify-content: center;
    }

    .partner-logo span {
        font-size: 0.95rem;
    }

    .section-header h2 { font-size: 1.8rem; }

    .process-connector { display: none; }

    .process-grid {
        flex-direction: column;
        gap: 16px;
    }

    .process-step {
        max-width: 100%;
        width: 100%;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .contact-form-wrapper {
        padding: 28px 20px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    #cta-banner h2 { font-size: 1.8rem; }

    .cta-timer { gap: 8px; }

    .timer-item { padding: 10px 14px; }

    .timer-item span { font-size: 1.5rem; }

    body { padding-bottom: 56px; }
}

@media (max-width: 480px) {
    .container { padding: 0 16px; }
    #hero h1 { font-size: 1.9rem; }
    .price-tag { font-size: 2rem; }
    .section-header h2 { font-size: 1.6rem; }
}
