/* =====================================================
   LAUNCHPAD - STARTUP & TECH COMPANY TEMPLATE
   Main Stylesheet
   ===================================================== */

/* =====================================================
   TABLE OF CONTENTS
   =====================================================
   1. CSS Variables & Root
   2. Base Styles & Reset
   3. Typography
   4. Utility Classes
   5. Header & Navigation
   6. Hero Section
   7. Logos Section
   8. Features Section
   9. Product Section
   10. Benefits Section
   11. Pricing Section
   12. FAQ Section
   13. Testimonials Section
   14. Newsletter Section
   15. Footer
   16. Responsive Breakpoints
   ===================================================== */

/* =====================================================
   1. CSS VARIABLES & ROOT
   ===================================================== */
:root {
    /* Primary Colors - Modern Tech Blue/Purple Gradient */
    --primary-color: #6366f1;
    --primary-dark: #4f46e5;
    --primary-light: #818cf8;
    --primary-rgb: 99, 102, 241;

    /* Secondary Colors */
    --secondary-color: #8b5cf6;
    --secondary-dark: #7c3aed;
    --secondary-light: #a78bfa;

    /* Accent Colors */
    --accent-cyan: #06b6d4;
    --accent-pink: #ec4899;
    --accent-green: #10b981;
    --accent-orange: #f59e0b;

    /* Neutral Colors */
    --dark-color: #0f172a;
    --dark-secondary: #1e293b;
    --dark-tertiary: #334155;
    --gray-color: #64748b;
    --gray-light: #94a3b8;
    --gray-lighter: #cbd5e1;
    --light-color: #f1f5f9;
    --white-color: #ffffff;

    /* Gradient Definitions */
    --gradient-primary: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    --gradient-hero: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --gradient-dark: linear-gradient(135deg, var(--dark-color) 0%, var(--dark-secondary) 100%);
    --gradient-glass: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0.05) 100%);

    /* Typography */
    --font-primary: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-size-base: 16px;
    --line-height-base: 1.6;

    /* Spacing */
    --section-padding: 100px;
    --container-padding: 15px;

    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-full: 9999px;

    /* Shadows */
    --shadow-sm: 0 1px 2px 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);
    --shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    --shadow-glow: 0 0 40px rgba(var(--primary-rgb), 0.3);

    /* Transitions */
    --transition-fast: 0.15s ease;
    --transition-base: 0.3s ease;
    --transition-slow: 0.5s ease;
}

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

html {
    scroll-behavior: smooth;
    font-size: var(--font-size-base);
}

body {
    font-family: var(--font-primary);
    font-size: 1rem;
    line-height: var(--line-height-base);
    color: var(--dark-color);
    background-color: var(--white-color);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

a:hover {
    color: var(--primary-color);
}

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

ul, ol {
    list-style: none;
}

button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: inherit;
}

input, textarea, select {
    font-family: inherit;
    font-size: inherit;
}

/* =====================================================
   3. TYPOGRAPHY
   ===================================================== */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    color: var(--dark-color);
    margin-bottom: 1rem;
}

h1 { font-size: clamp(2.5rem, 5vw, 4rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.5rem, 3vw, 1.75rem); }
h4 { font-size: 1.25rem; }
h5 { font-size: 1.125rem; }
h6 { font-size: 1rem; }

p {
    margin-bottom: 1rem;
    color: var(--gray-color);
}

.lead {
    font-size: 1.25rem;
    font-weight: 400;
}

/* =====================================================
   4. UTILITY CLASSES
   ===================================================== */

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

/* Section Badge */
.section-badge {
    display: inline-block;
    padding: 8px 16px;
    background: rgba(var(--primary-rgb), 0.1);
    color: var(--primary-color);
    font-size: 0.875rem;
    font-weight: 600;
    border-radius: var(--radius-full);
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

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

.section-title {
    margin-bottom: 1rem;
}

.section-description {
    font-size: 1.125rem;
    color: var(--gray-color);
    margin-bottom: 0;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: var(--radius-md);
    transition: var(--transition-base);
    gap: 8px;
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--white-color);
    border: none;
    box-shadow: 0 4px 15px rgba(var(--primary-rgb), 0.4);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(var(--primary-rgb), 0.5);
    color: var(--white-color);
}

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

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

.btn-lg {
    padding: 16px 32px;
    font-size: 1.125rem;
}

/* =====================================================
   5. HEADER & NAVIGATION
   ===================================================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 20px 0;
    transition: var(--transition-base);
}

.header.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    box-shadow: var(--shadow-md);
    padding: 15px 0;
}

.navbar {
    padding: 0;
}

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--dark-color);
}

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

.logo-text {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.navbar-nav {
    gap: 8px;
}

.nav-link {
    padding: 10px 16px !important;
    font-weight: 500;
    color: var(--dark-secondary) !important;
    border-radius: var(--radius-md);
    transition: var(--transition-base);
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-color) !important;
    background: rgba(var(--primary-rgb), 0.1);
}

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

/* Mobile Navigation Toggle */
.navbar-toggler {
    border: none;
    padding: 8px;
    background: rgba(var(--primary-rgb), 0.1);
    border-radius: var(--radius-md);
}

.navbar-toggler:focus {
    box-shadow: none;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%236366f1' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* =====================================================
   6. HERO SECTION
   ===================================================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 100px;
    overflow: hidden;
    background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
}

/* Hero Background Blobs */
.hero-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.6;
    z-index: 0;
}

.blob-1 {
    width: 600px;
    height: 600px;
    background: rgba(99, 102, 241, 0.3);
    top: -200px;
    right: -100px;
}

.blob-2 {
    width: 400px;
    height: 400px;
    background: rgba(139, 92, 246, 0.3);
    bottom: -100px;
    left: -100px;
}

.blob-3 {
    width: 300px;
    height: 300px;
    background: rgba(6, 182, 212, 0.2);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

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

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(var(--primary-rgb), 0.1);
    color: var(--primary-color);
    font-size: 0.875rem;
    font-weight: 600;
    border-radius: var(--radius-full);
    margin-bottom: 1.5rem;
    border: 1px solid rgba(var(--primary-rgb), 0.2);
}

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

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.hero-description {
    font-size: 1.25rem;
    color: var(--gray-color);
    margin-bottom: 2rem;
    max-width: 500px;
}

/* Hero Form */
.hero-form {
    margin-bottom: 2rem;
}

.hero-form .input-group {
    background: var(--white-color);
    border-radius: var(--radius-lg);
    padding: 8px;
    box-shadow: var(--shadow-xl);
    border: 1px solid var(--gray-lighter);
    max-width: 500px;
}

.hero-form .form-control {
    border: none;
    padding: 16px 20px;
    font-size: 1rem;
    background: transparent;
}

.hero-form .form-control:focus {
    box-shadow: none;
    outline: none;
}

.hero-form .btn {
    padding: 16px 24px;
    white-space: nowrap;
}

.form-hint {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.875rem;
    color: var(--gray-color);
    margin-top: 1rem;
    margin-bottom: 0;
}

.form-hint i {
    color: var(--accent-green);
}

/* Hero Stats */
.hero-stats {
    display: flex;
    gap: 40px;
    padding-top: 2rem;
    border-top: 1px solid var(--gray-lighter);
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--dark-color);
    line-height: 1;
}

.stat-label {
    font-size: 0.875rem;
    color: var(--gray-color);
    margin-top: 4px;
}

/* Hero Image / Illustration */
.hero-image {
    position: relative;
    z-index: 1;
}

.hero-illustration {
    position: relative;
}

.illustration-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 450px;
    background: var(--gradient-primary);
    border-radius: var(--radius-xl);
    color: var(--white-color);
    font-size: 1rem;
    gap: 16px;
    box-shadow: var(--shadow-2xl);
}

.illustration-placeholder i {
    font-size: 4rem;
    opacity: 0.8;
}

/* Floating Cards */
.floating-card {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
    background: var(--white-color);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
    font-weight: 600;
    font-size: 0.875rem;
    z-index: 2;
}

.floating-card i {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-md);
    font-size: 1rem;
}

.card-1 {
    top: 20%;
    left: -30px;
}

.card-1 i {
    background: rgba(16, 185, 129, 0.1);
    color: var(--accent-green);
}

.card-2 {
    top: 50%;
    right: -20px;
}

.card-2 i {
    background: rgba(99, 102, 241, 0.1);
    color: var(--primary-color);
}

.card-3 {
    bottom: 15%;
    left: 10%;
}

.card-3 i {
    background: rgba(245, 158, 11, 0.1);
    color: var(--accent-orange);
}

/* =====================================================
   7. LOGOS SECTION
   ===================================================== */
.logos-section {
    padding: 60px 0;
    background: var(--white-color);
    border-top: 1px solid var(--light-color);
    border-bottom: 1px solid var(--light-color);
}

.logos-title {
    text-align: center;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--gray-color);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 2rem;
}

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

.logo-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--gray-light);
    transition: var(--transition-base);
}

.logo-item i {
    font-size: 2rem;
}

.logo-item:hover {
    color: var(--dark-color);
}

/* =====================================================
   8. FEATURES SECTION
   ===================================================== */
.features-section {
    padding: var(--section-padding) 0;
    background: var(--white-color);
}

.feature-card {
    padding: 32px;
    background: var(--white-color);
    border-radius: var(--radius-xl);
    border: 1px solid var(--light-color);
    height: 100%;
    transition: var(--transition-base);
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: transparent;
}

.feature-icon {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-primary);
    border-radius: var(--radius-lg);
    color: var(--white-color);
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.feature-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.feature-description {
    color: var(--gray-color);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.feature-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    color: var(--primary-color);
}

.feature-link:hover {
    gap: 12px;
}

/* =====================================================
   9. PRODUCT SECTION
   ===================================================== */
.product-section {
    padding: var(--section-padding) 0;
    background: var(--light-color);
}

.product-content {
    padding-right: 40px;
}

.product-features {
    margin: 2rem 0;
}

.product-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    font-size: 1rem;
    color: var(--dark-secondary);
}

.product-features li i {
    color: var(--accent-green);
    font-size: 1.25rem;
}

.product-showcase {
    position: relative;
}

.product-mockup {
    position: relative;
    z-index: 1;
}

.mockup-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    background: var(--gradient-dark);
    border-radius: var(--radius-xl);
    color: var(--white-color);
    padding: 60px;
    min-height: 400px;
    box-shadow: var(--shadow-2xl);
}

.mockup-placeholder i {
    font-size: 3rem;
    opacity: 0.6;
}

.product-mockup-mobile {
    position: absolute;
    bottom: -30px;
    right: -30px;
    width: 150px;
    z-index: 2;
}

.product-mockup-mobile .mockup-placeholder {
    min-height: 250px;
    padding: 30px;
    border-radius: var(--radius-lg);
}

.product-mockup-mobile .mockup-placeholder i {
    font-size: 2rem;
}

/* =====================================================
   10. BENEFITS SECTION
   ===================================================== */
.benefits-section {
    padding: var(--section-padding) 0;
    background: var(--white-color);
}

.benefit-card {
    display: flex;
    gap: 24px;
    padding: 32px;
    background: var(--white-color);
    border-radius: var(--radius-xl);
    border: 1px solid var(--light-color);
    height: 100%;
    transition: var(--transition-base);
}

.benefit-card:hover {
    box-shadow: var(--shadow-lg);
    border-color: rgba(var(--primary-rgb), 0.2);
}

.benefit-number {
    font-size: 3rem;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    opacity: 0.3;
}

.benefit-content {
    flex: 1;
}

.benefit-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.benefit-description {
    color: var(--gray-color);
    margin-bottom: 0;
    line-height: 1.7;
}

/* =====================================================
   11. PRICING SECTION
   ===================================================== */
.pricing-section {
    padding: var(--section-padding) 0;
    background: linear-gradient(180deg, var(--light-color) 0%, var(--white-color) 100%);
}

/* Billing Toggle */
.billing-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-top: 2rem;
}

.toggle-label {
    font-weight: 500;
    color: var(--gray-color);
}

.toggle-switch {
    position: relative;
    width: 56px;
    height: 28px;
    cursor: pointer;
}

.toggle-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.toggle-slider {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gray-lighter);
    border-radius: var(--radius-full);
    transition: var(--transition-base);
}

.toggle-slider::before {
    content: '';
    position: absolute;
    width: 22px;
    height: 22px;
    left: 3px;
    bottom: 3px;
    background: var(--white-color);
    border-radius: 50%;
    transition: var(--transition-base);
    box-shadow: var(--shadow-sm);
}

.toggle-switch input:checked + .toggle-slider {
    background: var(--gradient-primary);
}

.toggle-switch input:checked + .toggle-slider::before {
    transform: translateX(28px);
}

.save-badge {
    display: inline-block;
    padding: 4px 8px;
    background: rgba(16, 185, 129, 0.1);
    color: var(--accent-green);
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: var(--radius-full);
    margin-left: 8px;
}

/* Pricing Cards */
.pricing-card {
    position: relative;
    padding: 40px 32px;
    background: var(--white-color);
    border-radius: var(--radius-xl);
    border: 1px solid var(--light-color);
    height: 100%;
    transition: var(--transition-base);
}

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

.pricing-card.popular {
    border: 2px solid var(--primary-color);
    box-shadow: var(--shadow-glow);
}

.popular-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    padding: 6px 16px;
    background: var(--gradient-primary);
    color: var(--white-color);
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: var(--radius-full);
    white-space: nowrap;
}

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

.plan-name {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.plan-description {
    font-size: 0.875rem;
    color: var(--gray-color);
    margin-bottom: 1.5rem;
}

.plan-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 4px;
}

.plan-price .currency {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--dark-color);
}

.plan-price .amount {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--dark-color);
    line-height: 1;
}

.plan-price .period {
    font-size: 1rem;
    color: var(--gray-color);
}

.plan-features {
    margin-bottom: 2rem;
}

.plan-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    font-size: 0.9375rem;
    color: var(--dark-secondary);
    border-bottom: 1px solid var(--light-color);
}

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

.plan-features li i {
    font-size: 1rem;
}

.plan-features li .fa-check {
    color: var(--accent-green);
}

.plan-features li .fa-times {
    color: var(--gray-lighter);
}

.plan-features li.disabled {
    color: var(--gray-light);
}

/* =====================================================
   12. FAQ SECTION
   ===================================================== */
.faq-section {
    padding: var(--section-padding) 0;
    background: var(--white-color);
}

.faq-header {
    padding-right: 40px;
}

.faq-header .section-description {
    margin-bottom: 2rem;
}

/* Accordion Styles */
.accordion {
    border: none;
}

.accordion-item {
    border: 1px solid var(--light-color);
    border-radius: var(--radius-lg) !important;
    margin-bottom: 16px;
    overflow: hidden;
}

.accordion-button {
    padding: 20px 24px;
    font-size: 1rem;
    font-weight: 600;
    color: var(--dark-color);
    background: var(--white-color);
    box-shadow: none !important;
}

.accordion-button:not(.collapsed) {
    color: var(--primary-color);
    background: rgba(var(--primary-rgb), 0.05);
}

.accordion-button::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%236366f1'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.accordion-body {
    padding: 0 24px 20px;
    color: var(--gray-color);
    line-height: 1.7;
}

/* =====================================================
   13. TESTIMONIALS SECTION
   ===================================================== */
.testimonials-section {
    padding: var(--section-padding) 0;
    background: var(--light-color);
}

.testimonials-swiper {
    padding: 40px 20px 60px;
}

.testimonial-card {
    padding: 32px;
    background: var(--white-color);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
    height: 100%;
}

.testimonial-rating {
    display: flex;
    gap: 4px;
    margin-bottom: 1.5rem;
}

.testimonial-rating i {
    color: var(--accent-orange);
    font-size: 1rem;
}

.testimonial-text {
    font-size: 1.125rem;
    color: var(--dark-secondary);
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-style: italic;
}

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

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

.author-name {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 4px;
}

.author-role {
    font-size: 0.875rem;
    color: var(--gray-color);
    margin-bottom: 0;
}

/* Swiper Navigation */
.swiper-button-prev,
.swiper-button-next {
    width: 48px;
    height: 48px;
    background: var(--white-color);
    border-radius: 50%;
    box-shadow: var(--shadow-md);
    color: var(--primary-color);
}

.swiper-button-prev::after,
.swiper-button-next::after {
    font-size: 1rem;
    font-weight: 700;
}

.swiper-button-prev:hover,
.swiper-button-next:hover {
    background: var(--primary-color);
    color: var(--white-color);
}

.swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: var(--gray-lighter);
    opacity: 1;
}

.swiper-pagination-bullet-active {
    background: var(--primary-color);
    width: 30px;
    border-radius: var(--radius-full);
}

/* =====================================================
   14. NEWSLETTER SECTION
   ===================================================== */
.newsletter-section {
    padding: var(--section-padding) 0;
    background: var(--white-color);
}

.newsletter-wrapper {
    padding: 60px;
    background: var(--gradient-primary);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-2xl);
}

.newsletter-title {
    font-size: 2rem;
    font-weight: 800;
    color: var(--white-color);
    margin-bottom: 1rem;
}

.newsletter-description {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.125rem;
    margin-bottom: 0;
}

.newsletter-form .input-group {
    background: var(--white-color);
    border-radius: var(--radius-lg);
    padding: 8px;
}

.newsletter-form .form-control {
    border: none;
    padding: 16px 20px;
    font-size: 1rem;
}

.newsletter-form .form-control:focus {
    box-shadow: none;
}

.newsletter-form .btn {
    padding: 16px 32px;
    white-space: nowrap;
}

.newsletter-form .form-hint {
    color: rgba(255, 255, 255, 0.7);
    margin-top: 1rem;
}

.newsletter-form .form-hint i {
    color: rgba(255, 255, 255, 0.7);
}

/* =====================================================
   15. FOOTER
   ===================================================== */
.footer {
    background: var(--dark-color);
    color: var(--white-color);
    padding-top: 80px;
}

.footer-top {
    padding-bottom: 60px;
    border-bottom: 1px solid var(--dark-tertiary);
}

.footer-brand {
    margin-bottom: 2rem;
}

.footer-logo {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--white-color);
    margin-bottom: 1.5rem;
}

.footer-logo .logo-icon {
    background: var(--gradient-primary);
}

.footer-logo .logo-text {
    color: var(--white-color);
    -webkit-text-fill-color: var(--white-color);
}

.footer-description {
    color: var(--gray-light);
    margin-bottom: 1.5rem;
    max-width: 300px;
}

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

.social-link {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--dark-secondary);
    border-radius: var(--radius-md);
    color: var(--gray-light);
    font-size: 1rem;
    transition: var(--transition-base);
}

.social-link:hover {
    background: var(--primary-color);
    color: var(--white-color);
}

.footer-links h4.footer-title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--white-color);
    margin-bottom: 1.5rem;
}

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

.footer-links ul li a {
    color: var(--gray-light);
    font-size: 0.9375rem;
    transition: var(--transition-base);
}

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

.footer-bottom {
    padding: 30px 0;
}

.copyright {
    color: var(--gray-light);
    font-size: 0.875rem;
    margin-bottom: 0;
}

.made-with {
    color: var(--gray-light);
    font-size: 0.875rem;
    margin-bottom: 0;
}

.made-with i {
    color: var(--accent-pink);
}

/* =====================================================
   16. RESPONSIVE BREAKPOINTS
   ===================================================== */

/* Extra Large Devices (1400px and below) */
@media (max-width: 1399.98px) {
    .hero-stats {
        gap: 30px;
    }

    .floating-card.card-1 {
        left: 0;
    }

    .floating-card.card-2 {
        right: 0;
    }
}

/* Large Devices (1200px and below) */
@media (max-width: 1199.98px) {
    :root {
        --section-padding: 80px;
    }

    .hero-title {
        font-size: clamp(2rem, 4vw, 3rem);
    }

    .hero-stats {
        gap: 24px;
    }

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

    .newsletter-wrapper {
        padding: 50px;
    }
}

/* Medium Devices / Tablets (992px and below) */
@media (max-width: 991.98px) {
    :root {
        --section-padding: 70px;
    }

    /* Navigation */
    .navbar-collapse {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--white-color);
        padding: 20px;
        border-radius: 0 0 var(--radius-lg) var(--radius-lg);
        box-shadow: var(--shadow-xl);
    }

    .navbar-nav {
        margin-bottom: 20px;
    }

    .nav-buttons {
        flex-direction: column;
        width: 100%;
    }

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

    /* Hero */
    .hero {
        padding-top: 120px;
        padding-bottom: 60px;
    }

    .hero .row {
        min-height: auto;
    }

    .hero-content {
        text-align: center;
        margin-bottom: 60px;
    }

    .hero-description {
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
    }

    .hero-form .input-group {
        max-width: 100%;
    }

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

    .hero-image {
        max-width: 500px;
        margin: 0 auto;
    }

    .floating-card {
        display: none;
    }

    /* Product Section */
    .product-content {
        padding-right: 0;
        text-align: center;
        margin-bottom: 40px;
    }

    .product-features {
        display: inline-block;
        text-align: left;
    }

    .product-showcase {
        max-width: 500px;
        margin: 0 auto;
    }

    .product-mockup-mobile {
        right: 0;
        bottom: -20px;
    }

    /* FAQ */
    .faq-header {
        padding-right: 0;
        text-align: center;
        margin-bottom: 40px;
    }

    /* Newsletter */
    .newsletter-content {
        text-align: center;
        margin-bottom: 30px;
    }
}

/* Small Devices / Large Phones (768px and below) */
@media (max-width: 767.98px) {
    :root {
        --section-padding: 60px;
    }

    /* Typography */
    h1 { font-size: 2rem; }
    h2 { font-size: 1.75rem; }
    h3 { font-size: 1.25rem; }

    /* Hero */
    .hero-badge {
        font-size: 0.75rem;
    }

    .hero-form .input-group {
        flex-direction: column;
        padding: 0;
        background: transparent;
        box-shadow: none;
        border: none;
    }

    .hero-form .form-control {
        border-radius: var(--radius-lg);
        border: 1px solid var(--gray-lighter);
        margin-bottom: 12px;
        background: var(--white-color);
    }

    .hero-form .btn {
        width: 100%;
        border-radius: var(--radius-lg);
    }

    .hero-stats {
        flex-direction: column;
        gap: 20px;
        align-items: center;
    }

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

    .illustration-placeholder {
        height: 300px;
    }

    /* Logos */
    .logos-wrapper {
        gap: 24px;
    }

    .logo-item span {
        display: none;
    }

    .logo-item i {
        font-size: 2.5rem;
    }

    /* Features */
    .feature-card {
        padding: 24px;
    }

    /* Benefits */
    .benefit-card {
        flex-direction: column;
        text-align: center;
    }

    .benefit-number {
        font-size: 2.5rem;
    }

    /* Pricing */
    .billing-toggle {
        flex-wrap: wrap;
    }

    .pricing-card {
        padding: 32px 24px;
    }

    .plan-price .amount {
        font-size: 2.5rem;
    }

    /* Newsletter */
    .newsletter-wrapper {
        padding: 40px 24px;
    }

    .newsletter-title {
        font-size: 1.5rem;
    }

    .newsletter-form .input-group {
        flex-direction: column;
        padding: 0;
        background: transparent;
    }

    .newsletter-form .form-control {
        border-radius: var(--radius-lg);
        margin-bottom: 12px;
    }

    .newsletter-form .btn {
        width: 100%;
        border-radius: var(--radius-lg);
    }

    /* Footer */
    .footer {
        padding-top: 60px;
    }

    .footer-brand {
        text-align: center;
    }

    .footer-description {
        max-width: 100%;
    }

    .footer-social {
        justify-content: center;
    }

    .footer-links {
        text-align: center;
    }

    .footer-bottom {
        text-align: center;
    }

    .footer-bottom .text-md-end {
        text-align: center !important;
        margin-top: 10px;
    }
}

/* =====================================================
   17. PAGE HEADER (Inner Pages)
   ===================================================== */
.page-header {
    padding: 160px 0 80px;
    background: linear-gradient(135deg, #f8fafc 0%, #eef2ff 50%, #f8fafc 100%);
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.15) 0%, transparent 70%);
    border-radius: 50%;
}

.page-header::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.page-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    margin-bottom: 1rem;
}

.page-description {
    font-size: 1.125rem;
    color: var(--gray-color);
    max-width: 600px;
    margin: 0 auto;
}

/* =====================================================
   18. ABOUT PAGE STYLES
   ===================================================== */
.story-section {
    padding: var(--section-padding) 0;
    background: var(--white-color);
}

.story-image .image-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    height: 400px;
    background: var(--gradient-primary);
    border-radius: var(--radius-xl);
    color: var(--white-color);
    font-size: 1rem;
}

.story-image .image-placeholder i {
    font-size: 4rem;
    opacity: 0.8;
}

.story-content p {
    color: var(--gray-color);
    line-height: 1.8;
}

.values-section {
    padding: var(--section-padding) 0;
    background: var(--light-color);
}

.value-card {
    padding: 32px;
    background: var(--white-color);
    border-radius: var(--radius-xl);
    text-align: center;
    height: 100%;
    transition: var(--transition-base);
    border: 1px solid transparent;
}

.value-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: rgba(var(--primary-rgb), 0.2);
}

.value-icon {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-primary);
    border-radius: var(--radius-lg);
    color: var(--white-color);
    font-size: 2rem;
    margin: 0 auto 1.5rem;
}

.value-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.value-description {
    color: var(--gray-color);
    margin-bottom: 0;
}

.team-section {
    padding: var(--section-padding) 0;
    background: var(--white-color);
}

.team-card {
    padding: 32px;
    background: var(--white-color);
    border-radius: var(--radius-xl);
    text-align: center;
    border: 1px solid var(--light-color);
    transition: var(--transition-base);
}

.team-card:hover {
    box-shadow: var(--shadow-xl);
    border-color: transparent;
}

.team-avatar {
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-primary);
    border-radius: 50%;
    color: var(--white-color);
    font-size: 2.5rem;
    margin: 0 auto 1.5rem;
}

.team-name {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.team-role {
    font-size: 0.875rem;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 1rem;
}

.team-bio {
    font-size: 0.9375rem;
    color: var(--gray-color);
    margin-bottom: 1rem;
}

.team-social {
    display: flex;
    justify-content: center;
    gap: 12px;
}

.team-social a {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--light-color);
    border-radius: var(--radius-md);
    color: var(--gray-color);
    transition: var(--transition-base);
}

.team-social a:hover {
    background: var(--primary-color);
    color: var(--white-color);
}

.stats-section {
    padding: var(--section-padding) 0;
    background: var(--light-color);
}

.stats-wrapper {
    padding: 60px;
    background: var(--gradient-primary);
    border-radius: var(--radius-xl);
}

.stat-card {
    text-align: center;
    color: var(--white-color);
}

.stat-card .stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--white-color);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-card .stat-label {
    font-size: 1rem;
    opacity: 0.9;
    color: var(--white-color);
}

/* =====================================================
   19. SERVICES PAGE STYLES
   ===================================================== */
.services-main {
    padding: var(--section-padding) 0;
    background: var(--white-color);
}

.service-card {
    padding: 32px;
    background: var(--white-color);
    border-radius: var(--radius-xl);
    border: 1px solid var(--light-color);
    height: 100%;
    transition: var(--transition-base);
    position: relative;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: transparent;
}

.service-card.featured {
    border: 2px solid var(--primary-color);
    box-shadow: var(--shadow-glow);
}

.service-card .featured-badge {
    position: absolute;
    top: -12px;
    right: 24px;
    padding: 6px 16px;
    background: var(--gradient-primary);
    color: var(--white-color);
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: var(--radius-full);
}

.service-icon {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-primary);
    border-radius: var(--radius-lg);
    color: var(--white-color);
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.service-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.service-description {
    color: var(--gray-color);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.service-features {
    margin-bottom: 1.5rem;
}

.service-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    font-size: 0.9375rem;
    color: var(--dark-secondary);
}

.service-features li i {
    color: var(--accent-green);
    font-size: 0.875rem;
}

.process-section {
    padding: var(--section-padding) 0;
    background: var(--light-color);
}

.process-card {
    padding: 32px;
    background: var(--white-color);
    border-radius: var(--radius-xl);
    text-align: center;
    height: 100%;
    position: relative;
    transition: var(--transition-base);
}

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

.process-number {
    font-size: 3rem;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 1rem;
}

.process-title {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.process-description {
    color: var(--gray-color);
    font-size: 0.9375rem;
    margin-bottom: 0;
}

/* =====================================================
   20. BLOG PAGE STYLES
   ===================================================== */
.blog-section {
    padding: var(--section-padding) 0;
    background: var(--white-color);
}

.featured-post {
    padding: 40px;
    background: var(--light-color);
    border-radius: var(--radius-xl);
    margin-bottom: 40px;
}

.featured-image .image-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    height: 350px;
    background: var(--gradient-primary);
    border-radius: var(--radius-xl);
    color: var(--white-color);
}

.featured-image .image-placeholder i {
    font-size: 4rem;
    opacity: 0.8;
}

.post-category {
    display: inline-block;
    padding: 6px 14px;
    background: rgba(var(--primary-rgb), 0.1);
    color: var(--primary-color);
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: var(--radius-full);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 1rem;
}

.featured-title {
    font-size: 1.75rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.featured-excerpt {
    color: var(--gray-color);
    font-size: 1.125rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.post-meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 20px;
    font-size: 0.875rem;
    color: var(--gray-color);
}

.post-meta .author-info {
    display: flex;
    align-items: center;
    gap: 10px;
}

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

.post-meta i {
    margin-right: 6px;
    color: var(--primary-color);
}

.blog-card {
    background: var(--white-color);
    border-radius: var(--radius-xl);
    overflow: hidden;
    border: 1px solid var(--light-color);
    transition: var(--transition-base);
    height: 100%;
}

.blog-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: transparent;
}

.blog-image {
    position: relative;
    height: 200px;
}

.blog-image .image-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    background: var(--gradient-primary);
    color: var(--white-color);
    font-size: 3rem;
}

.blog-image .post-category {
    position: absolute;
    top: 16px;
    left: 16px;
    margin-bottom: 0;
}

.blog-content {
    padding: 24px;
}

.blog-title {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    line-height: 1.4;
}

.blog-excerpt {
    color: var(--gray-color);
    font-size: 0.9375rem;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.blog-card .post-meta {
    gap: 16px;
    font-size: 0.8125rem;
}

/* =====================================================
   21. CONTACT PAGE STYLES
   ===================================================== */
.contact-section {
    padding: var(--section-padding) 0;
    background: var(--white-color);
}

.contact-info-title {
    font-size: 1.75rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.contact-info-description {
    color: var(--gray-color);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.contact-cards {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 2rem;
}

.contact-card {
    display: flex;
    gap: 20px;
    padding: 24px;
    background: var(--light-color);
    border-radius: var(--radius-lg);
    transition: var(--transition-base);
}

.contact-card:hover {
    background: var(--white-color);
    box-shadow: var(--shadow-lg);
}

.contact-card-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-primary);
    border-radius: var(--radius-md);
    color: var(--white-color);
    font-size: 1.25rem;
    flex-shrink: 0;
}

.contact-card-content h4 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.contact-card-content p {
    font-size: 0.9375rem;
    color: var(--gray-color);
    margin-bottom: 0.25rem;
}

.contact-card-content p:last-child {
    margin-bottom: 0;
}

.contact-social h4 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

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

.contact-form-wrapper {
    padding: 40px;
    background: var(--light-color);
    border-radius: var(--radius-xl);
}

.form-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
}

.contact-form .form-group {
    margin-bottom: 1.5rem;
}

.contact-form label {
    display: block;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 0.5rem;
}

.contact-form .form-control {
    padding: 14px 18px;
    border: 1px solid var(--gray-lighter);
    border-radius: var(--radius-md);
    font-size: 1rem;
    transition: var(--transition-base);
}

.contact-form .form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(var(--primary-rgb), 0.1);
}

.contact-form select.form-control {
    cursor: pointer;
}

.contact-form textarea.form-control {
    resize: vertical;
    min-height: 120px;
}

.contact-form .form-check {
    margin-bottom: 1.5rem;
}

.contact-form .form-check-input:checked {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.contact-form .form-check-label {
    font-size: 0.9375rem;
    color: var(--gray-color);
}

.map-section {
    padding: 0 0 var(--section-padding);
    background: var(--white-color);
}

.map-wrapper {
    border-radius: var(--radius-xl);
    overflow: hidden;
}

.map-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    height: 400px;
    background: linear-gradient(135deg, var(--dark-color) 0%, var(--dark-secondary) 100%);
    color: var(--white-color);
}

.map-placeholder i {
    font-size: 4rem;
    opacity: 0.6;
}

.map-placeholder span {
    font-size: 1.25rem;
    font-weight: 600;
}

.map-placeholder p {
    color: var(--gray-light);
    margin-bottom: 0;
}

.contact-faq-section {
    padding: var(--section-padding) 0;
    background: var(--light-color);
}

/* =====================================================
   22. CTA SECTION
   ===================================================== */
.cta-section {
    padding: var(--section-padding) 0;
    background: var(--white-color);
}

.cta-wrapper {
    padding: 80px 60px;
    background: var(--gradient-primary);
    border-radius: var(--radius-xl);
    text-align: center;
    position: relative;
    overflow: hidden;
}

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

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

.cta-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--white-color);
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.cta-description {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

.cta-buttons .btn-outline-light {
    border-color: rgba(255, 255, 255, 0.5);
    color: var(--white-color);
}

.cta-buttons .btn-outline-light:hover {
    background: var(--white-color);
    color: var(--primary-color);
    border-color: var(--white-color);
}

/* Extra Small Devices / Phones (576px and below) */
@media (max-width: 575.98px) {
    :root {
        --section-padding: 50px;
    }

    .container {
        padding-left: 20px;
        padding-right: 20px;
    }

    /* Header */
    .navbar-brand {
        font-size: 1.25rem;
    }

    .logo-icon {
        width: 36px;
        height: 36px;
        font-size: 1rem;
    }

    /* Buttons */
    .btn {
        padding: 10px 20px;
        font-size: 0.9375rem;
    }

    .btn-lg {
        padding: 14px 28px;
        font-size: 1rem;
    }

    /* Section Headers */
    .section-badge {
        font-size: 0.75rem;
        padding: 6px 12px;
    }

    .section-description {
        font-size: 1rem;
    }

    /* Testimonials */
    .testimonial-card {
        padding: 24px;
    }

    .testimonial-text {
        font-size: 1rem;
    }

    .swiper-button-prev,
    .swiper-button-next {
        display: none;
    }

    /* Accordion */
    .accordion-button {
        padding: 16px 20px;
        font-size: 0.9375rem;
    }

    .accordion-body {
        padding: 0 20px 16px;
        font-size: 0.9375rem;
    }
}
