/*
|--------------------------------------------------------------------------
| SafeSplit - Site Institucional
|--------------------------------------------------------------------------
|
| CSS único e organizado para o site institucional SafeSplit
| Identidade Visual: Moderno, Profissional, Confiável
|
| Paleta de Cores:
| - Principal: #1447E6
| - Fundo: #FFFFFF / #FBF9FA
| - H1: #000000
| - H2-H5: #101828
| - Textos: #6A7282
| - Fonte: Inter
|
*/

/* ===================================================================
   1. CSS RESET & BASE
   =================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: #6A7282;
    background-color: #FFFFFF;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* ===================================================================
   2. CSS VARIABLES
   =================================================================== */

:root {
    /* Cores Principais */
    --wo-primary: #1447E6;
    --wo-primary-hover: #0D3AC7;
    --wo-primary-light: #EEF4FF;
    --wo-primary-lighter: #F5F8FF;
    --wo-primary-dark: #0A2E9E;

    /* Cores Secundárias (para ícones e destaques) */
    --wo-secondary: #7C3AED;
    --wo-accent-green: #10B981;
    --wo-accent-orange: #F59E0B;
    --wo-accent-pink: #EC4899;
    --wo-accent-cyan: #06B6D4;
    --wo-accent-red: #EF4444;

    /* Cores de Fundo */
    --wo-bg-white: #FFFFFF;
    --wo-bg-light: #FBF9FA;
    --wo-bg-gray: #F3F4F6;

    /* Cores de Texto */
    --wo-text-h1: #000000;
    --wo-text-heading: #101828;
    --wo-text-body: #6A7282;
    --wo-text-muted: #9CA3AF;
    --wo-text-white: #FFFFFF;

    /* Cores de Status */
    --wo-success: #10B981;
    --wo-success-light: #D1FAE5;
    --wo-warning: #F59E0B;
    --wo-warning-light: #FEF3C7;
    --wo-danger: #EF4444;
    --wo-danger-light: #FEE2E2;
    --wo-info: #06B6D4;
    --wo-info-light: #CFFAFE;

    /* Bordas */
    --wo-border-color: #E5E7EB;
    --wo-border-light: #F3F4F6;

    /* Sombras */
    --wo-shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --wo-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px -1px rgba(0, 0, 0, 0.1);
    --wo-shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
    --wo-shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
    --wo-shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
    --wo-shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    --wo-shadow-primary: 0 10px 40px -10px rgba(20, 71, 230, 0.4);

    /* Border Radius */
    --wo-radius-sm: 4px;
    --wo-radius-md: 8px;
    --wo-radius-lg: 12px;
    --wo-radius-xl: 16px;
    --wo-radius-2xl: 24px;
    --wo-radius-full: 9999px;

    /* Espaçamentos */
    --wo-space-1: 4px;
    --wo-space-2: 8px;
    --wo-space-3: 12px;
    --wo-space-4: 16px;
    --wo-space-5: 20px;
    --wo-space-6: 24px;
    --wo-space-8: 32px;
    --wo-space-10: 40px;
    --wo-space-12: 48px;
    --wo-space-16: 64px;
    --wo-space-20: 80px;
    --wo-space-24: 96px;

    /* Transições */
    --wo-transition-fast: 150ms ease;
    --wo-transition: 250ms ease;
    --wo-transition-slow: 350ms ease;

    /* Z-Index */
    --wo-z-dropdown: 1000;
    --wo-z-sticky: 1020;
    --wo-z-fixed: 1030;
    --wo-z-modal-backdrop: 1040;
    --wo-z-modal: 1050;
    --wo-z-tooltip: 1070;
}

/* ===================================================================
   3. TYPOGRAPHY
   =================================================================== */

h1, .h1 {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    color: var(--wo-text-h1);
    letter-spacing: -0.02em;
}

h2, .h2 {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.25;
    color: var(--wo-text-heading);
    letter-spacing: -0.01em;
}

h3, .h3 {
    font-size: 1.875rem;
    font-weight: 600;
    line-height: 1.3;
    color: var(--wo-text-heading);
}

h4, .h4 {
    font-size: 1.5rem;
    font-weight: 600;
    line-height: 1.35;
    color: var(--wo-text-heading);
}

h5, .h5 {
    font-size: 1.25rem;
    font-weight: 600;
    line-height: 1.4;
    color: var(--wo-text-heading);
}

h6, .h6 {
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.5;
    color: var(--wo-text-heading);
}

p {
    margin-bottom: 1rem;
}

.text-lead {
    font-size: 1.25rem;
    line-height: 1.6;
    color: var(--wo-text-body);
}

.text-small {
    font-size: 0.875rem;
}

.text-muted {
    color: var(--wo-text-muted);
}

.text-primary {
    color: var(--wo-primary);
}

.text-white {
    color: var(--wo-text-white);
}

.text-center {
    text-align: center;
}

a {
    color: var(--wo-primary);
    text-decoration: none;
    transition: color var(--wo-transition-fast);
}

a:hover {
    color: var(--wo-primary-hover);
}

/* ===================================================================
   4. LAYOUT & CONTAINERS
   =================================================================== */

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--wo-space-6);
}

.container-lg {
    max-width: 1400px;
}

.container-sm {
    max-width: 960px;
}

.section {
    padding: var(--wo-space-20) 0;
}

.section-lg {
    padding: var(--wo-space-24) 0;
}

.section-sm {
    padding: var(--wo-space-16) 0;
}

.section-gray {
    background-color: var(--wo-bg-light);
}

.row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 calc(var(--wo-space-4) * -1);
}

.col {
    flex: 1;
    padding: 0 var(--wo-space-4);
}

/* Grid System */
.grid {
    display: grid;
    gap: var(--wo-space-8);
}

.grid-2 {
    grid-template-columns: repeat(2, 1fr);
}

.grid-3 {
    grid-template-columns: repeat(3, 1fr);
}

.grid-4 {
    grid-template-columns: repeat(4, 1fr);
}

/* ===================================================================
   5. BUTTONS
   =================================================================== */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--wo-space-2);
    padding: var(--wo-space-3) var(--wo-space-6);
    font-family: inherit;
    font-size: 1rem;
    font-weight: 500;
    line-height: 1.5;
    text-align: center;
    text-decoration: none;
    border: 2px solid transparent;
    border-radius: var(--wo-radius-lg);
    cursor: pointer;
    transition: all var(--wo-transition);
    white-space: nowrap;
}

.btn:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(20, 71, 230, 0.25);
}

/* Primary Button */
.btn-primary {
    background-color: var(--wo-primary);
    color: var(--wo-text-white);
    border-color: var(--wo-primary);
}

.btn-primary:hover {
    background-color: var(--wo-primary-hover);
    border-color: var(--wo-primary-hover);
    color: var(--wo-text-white);
    transform: translateY(-2px);
    box-shadow: var(--wo-shadow-primary);
}

/* Secondary/Outline Button */
.btn-outline {
    background-color: transparent;
    color: var(--wo-primary);
    border-color: var(--wo-primary);
}

.btn-outline:hover {
    background-color: var(--wo-primary);
    color: var(--wo-text-white);
}

/* White Button */
.btn-white {
    background-color: var(--wo-bg-white);
    color: var(--wo-primary);
    border-color: var(--wo-bg-white);
}

.btn-white:hover {
    background-color: var(--wo-bg-light);
    border-color: var(--wo-bg-light);
    color: var(--wo-primary-hover);
    transform: translateY(-2px);
}

/* Light Button */
.btn-light {
    background-color: var(--wo-bg-light);
    color: var(--wo-text-heading);
    border-color: var(--wo-bg-light);
}

.btn-light:hover {
    background-color: var(--wo-bg-gray);
    border-color: var(--wo-bg-gray);
}

/* Button Sizes */
.btn-lg {
    padding: var(--wo-space-4) var(--wo-space-8);
    font-size: 1.125rem;
    border-radius: var(--wo-radius-xl);
}

.btn-sm {
    padding: var(--wo-space-2) var(--wo-space-4);
    font-size: 0.875rem;
}

.btn-icon {
    padding: var(--wo-space-3);
}

/* ===================================================================
   6. NAVBAR
   =================================================================== */

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: var(--wo-z-sticky);
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid transparent;
    transition: all var(--wo-transition);
}

.navbar.scrolled {
    background-color: rgba(255, 255, 255, 0.98);
    border-bottom-color: var(--wo-border-color);
    box-shadow: var(--wo-shadow);
}

.navbar-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}

.navbar-brand {
    display: flex;
    align-items: center;
    gap: var(--wo-space-2);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--wo-primary);
    text-decoration: none;
}

.navbar-brand svg,
.navbar-brand img {
    height: 32px;
    width: auto;
}

.navbar-nav {
    display: flex;
    align-items: center;
    gap: var(--wo-space-1);
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-link {
    display: inline-flex;
    align-items: center;
    padding: var(--wo-space-2) var(--wo-space-4);
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--wo-text-body);
    text-decoration: none;
    border-radius: var(--wo-radius-md);
    transition: all var(--wo-transition-fast);
}

.nav-link:hover,
.nav-link.active {
    color: var(--wo-primary);
    background-color: var(--wo-primary-light);
}

.navbar-actions {
    display: flex;
    align-items: center;
    gap: var(--wo-space-3);
}

/* Mobile Menu Toggle */
.navbar-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 24px;
    height: 18px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
}

.navbar-toggle span {
    display: block;
    width: 100%;
    height: 2px;
    background-color: var(--wo-text-heading);
    border-radius: 2px;
    transition: all var(--wo-transition-fast);
}

/* ===================================================================
   7. HERO SECTION
   =================================================================== */

.hero {
    position: relative;
    padding: 160px 0 100px;
    background: linear-gradient(135deg, var(--wo-primary) 0%, var(--wo-primary-dark) 100%);
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.hero-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
}

.hero-container {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--wo-space-16);
    align-items: center;
}

.hero-content {
    max-width: 560px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--wo-space-2);
    padding: var(--wo-space-2) var(--wo-space-4);
    background-color: rgba(255, 255, 255, 0.15);
    border-radius: var(--wo-radius-full);
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--wo-text-white);
    margin-bottom: var(--wo-space-6);
    backdrop-filter: blur(10px);
}

.hero-badge-dot {
    width: 8px;
    height: 8px;
    background-color: var(--wo-accent-green);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--wo-text-white);
    line-height: 1.15;
    margin-bottom: var(--wo-space-6);
}

.hero-title-highlight {
    position: relative;
    display: inline-block;
}

.hero-title-highlight::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 0;
    right: 0;
    height: 12px;
    background-color: rgba(255, 255, 255, 0.2);
    z-index: -1;
    border-radius: 4px;
}

.hero-description {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.7;
    margin-bottom: var(--wo-space-8);
}

.hero-buttons {
    display: flex;
    align-items: center;
    gap: var(--wo-space-4);
    margin-bottom: var(--wo-space-10);
}

.hero-stats {
    display: flex;
    gap: var(--wo-space-10);
    padding-top: var(--wo-space-8);
    border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.hero-stat {
    text-align: left;
}

.hero-stat-value {
    font-size: 2rem;
    font-weight: 700;
    color: var(--wo-text-white);
    line-height: 1.2;
}

.hero-stat-label {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.7);
    margin-top: var(--wo-space-1);
}

/* Hero Image/Visual */
.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image-wrapper {
    position: relative;
    width: 100%;
    max-width: 500px;
}

.hero-mockup {
    position: relative;
    background: var(--wo-bg-white);
    border-radius: var(--wo-radius-2xl);
    box-shadow: var(--wo-shadow-2xl);
    overflow: hidden;
}

.hero-mockup-header {
    display: flex;
    align-items: center;
    gap: var(--wo-space-2);
    padding: var(--wo-space-3) var(--wo-space-4);
    background-color: var(--wo-bg-light);
    border-bottom: 1px solid var(--wo-border-color);
}

.hero-mockup-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.hero-mockup-dot.red { background-color: #EF4444; }
.hero-mockup-dot.yellow { background-color: #F59E0B; }
.hero-mockup-dot.green { background-color: #10B981; }

.hero-mockup-content {
    padding: var(--wo-space-6);
}

.hero-mockup img {
    width: 100%;
    height: auto;
    display: block;
}

/* Floating Cards */
.hero-floating-card {
    position: absolute;
    background: var(--wo-bg-white);
    border-radius: var(--wo-radius-xl);
    box-shadow: var(--wo-shadow-xl);
    padding: var(--wo-space-4);
    animation: float 6s ease-in-out infinite;
}

.hero-floating-card.card-1 {
    top: 10%;
    left: -20px;
    animation-delay: 0s;
}

.hero-floating-card.card-2 {
    bottom: 20%;
    right: -30px;
    animation-delay: 2s;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

.floating-card-icon {
    width: 40px;
    height: 40px;
    border-radius: var(--wo-radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    margin-bottom: var(--wo-space-2);
}

.floating-card-icon.green {
    background-color: var(--wo-success-light);
    color: var(--wo-success);
}

.floating-card-icon.blue {
    background-color: var(--wo-primary-light);
    color: var(--wo-primary);
}

.floating-card-title {
    font-size: 0.75rem;
    color: var(--wo-text-muted);
    margin-bottom: var(--wo-space-1);
}

.floating-card-value {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--wo-text-heading);
}

/* ===================================================================
   8. FEATURES SECTION
   =================================================================== */

.features {
    padding: var(--wo-space-24) 0;
    background-color: var(--wo-bg-white);
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto var(--wo-space-16);
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--wo-space-2);
    padding: var(--wo-space-2) var(--wo-space-4);
    background-color: var(--wo-primary-light);
    color: var(--wo-primary);
    border-radius: var(--wo-radius-full);
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: var(--wo-space-4);
}

.section-title {
    margin-bottom: var(--wo-space-4);
}

.section-description {
    font-size: 1.125rem;
    color: var(--wo-text-body);
    line-height: 1.7;
}

/* Feature Cards */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--wo-space-8);
}

.feature-card {
    padding: var(--wo-space-8);
    background-color: var(--wo-bg-white);
    border: 1px solid var(--wo-border-color);
    border-radius: var(--wo-radius-xl);
    transition: all var(--wo-transition);
}

.feature-card:hover {
    border-color: var(--wo-primary-light);
    box-shadow: var(--wo-shadow-lg);
    transform: translateY(-4px);
}

.feature-icon {
    width: 56px;
    height: 56px;
    border-radius: var(--wo-radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: var(--wo-space-5);
}

.feature-icon.blue {
    background-color: var(--wo-primary-light);
    color: var(--wo-primary);
}

.feature-icon.green {
    background-color: var(--wo-success-light);
    color: var(--wo-success);
}

.feature-icon.purple {
    background-color: #F3E8FF;
    color: var(--wo-secondary);
}

.feature-icon.orange {
    background-color: var(--wo-warning-light);
    color: var(--wo-warning);
}

.feature-icon.pink {
    background-color: #FCE7F3;
    color: var(--wo-accent-pink);
}

.feature-icon.cyan {
    background-color: var(--wo-info-light);
    color: var(--wo-info);
}

.feature-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--wo-text-heading);
    margin-bottom: var(--wo-space-3);
}

.feature-description {
    font-size: 0.9375rem;
    color: var(--wo-text-body);
    line-height: 1.6;
    margin: 0;
}

/* ===================================================================
   9. HOW IT WORKS SECTION
   =================================================================== */

.how-it-works {
    padding: var(--wo-space-24) 0;
    background-color: var(--wo-bg-light);
}

.steps-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--wo-space-6);
    position: relative;
}

.steps-container::before {
    content: '';
    position: absolute;
    top: 40px;
    left: 12.5%;
    right: 12.5%;
    height: 2px;
    background: linear-gradient(90deg, var(--wo-primary) 0%, var(--wo-primary-light) 100%);
    z-index: 0;
}

.step-card {
    text-align: center;
    position: relative;
    z-index: 1;
}

.step-number {
    width: 80px;
    height: 80px;
    margin: 0 auto var(--wo-space-6);
    background: linear-gradient(135deg, var(--wo-primary) 0%, var(--wo-primary-dark) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--wo-text-white);
    box-shadow: var(--wo-shadow-primary);
}

.step-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--wo-text-heading);
    margin-bottom: var(--wo-space-3);
}

.step-description {
    font-size: 0.9375rem;
    color: var(--wo-text-body);
    line-height: 1.6;
    margin: 0;
}

/* ===================================================================
   10. BENEFITS/VALUE SECTION
   =================================================================== */

.benefits {
    padding: var(--wo-space-24) 0;
    background-color: var(--wo-bg-white);
}

.benefits-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--wo-space-16);
    align-items: center;
}

.benefits-content {
    max-width: 520px;
}

.benefits-list {
    list-style: none;
    padding: 0;
    margin: var(--wo-space-8) 0 0;
}

.benefits-list li {
    display: flex;
    align-items: flex-start;
    gap: var(--wo-space-4);
    padding: var(--wo-space-4) 0;
    border-bottom: 1px solid var(--wo-border-light);
}

.benefits-list li:last-child {
    border-bottom: none;
}

.benefit-icon {
    width: 24px;
    height: 24px;
    background-color: var(--wo-success-light);
    color: var(--wo-success);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 0.875rem;
}

.benefit-text {
    font-size: 1rem;
    color: var(--wo-text-body);
    line-height: 1.6;
}

.benefit-text strong {
    color: var(--wo-text-heading);
}

.benefits-image {
    display: flex;
    justify-content: center;
}

.benefits-image img {
    max-width: 100%;
    height: auto;
    border-radius: var(--wo-radius-2xl);
    box-shadow: var(--wo-shadow-xl);
}

/* ===================================================================
   11. PRICING SECTION
   =================================================================== */

.pricing {
    padding: var(--wo-space-24) 0;
    background-color: var(--wo-bg-light);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--wo-space-8);
    max-width: 1100px;
    margin: 0 auto;
}

.pricing-card {
    background-color: var(--wo-bg-white);
    border: 1px solid var(--wo-border-color);
    border-radius: var(--wo-radius-2xl);
    padding: var(--wo-space-8);
    position: relative;
    transition: all var(--wo-transition);
}

.pricing-card:hover {
    box-shadow: var(--wo-shadow-lg);
}

.pricing-card.featured {
    border-color: var(--wo-primary);
    box-shadow: var(--wo-shadow-primary);
    transform: scale(1.02);
}

.pricing-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--wo-primary) 0%, var(--wo-primary-dark) 100%);
    color: var(--wo-text-white);
    padding: var(--wo-space-2) var(--wo-space-4);
    border-radius: var(--wo-radius-full);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.pricing-header {
    text-align: center;
    padding-bottom: var(--wo-space-6);
    border-bottom: 1px solid var(--wo-border-color);
    margin-bottom: var(--wo-space-6);
}

.pricing-name {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--wo-text-heading);
    margin-bottom: var(--wo-space-4);
}

.pricing-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: var(--wo-space-1);
}

.pricing-currency {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--wo-text-heading);
}

.pricing-value {
    font-size: 3rem;
    font-weight: 700;
    color: var(--wo-text-heading);
    line-height: 1;
}

.pricing-period {
    font-size: 1rem;
    color: var(--wo-text-muted);
}

.pricing-description {
    font-size: 0.875rem;
    color: var(--wo-text-body);
    margin-top: var(--wo-space-2);
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin: 0 0 var(--wo-space-8);
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: var(--wo-space-3);
    padding: var(--wo-space-3) 0;
    font-size: 0.9375rem;
    color: var(--wo-text-body);
}

.pricing-features li svg {
    width: 20px;
    height: 20px;
    color: var(--wo-success);
    flex-shrink: 0;
}

.pricing-features li.disabled {
    color: var(--wo-text-muted);
}

.pricing-features li.disabled svg {
    color: var(--wo-text-muted);
}

.pricing-card .btn {
    width: 100%;
}

/* ===================================================================
   12. TESTIMONIALS SECTION
   =================================================================== */

.testimonials {
    padding: var(--wo-space-24) 0;
    background-color: var(--wo-bg-white);
}

.testimonials-slider {
    max-width: 800px;
    margin: 0 auto;
}

.testimonial-card {
    background-color: var(--wo-bg-light);
    border-radius: var(--wo-radius-2xl);
    padding: var(--wo-space-10);
    text-align: center;
}

.testimonial-stars {
    display: flex;
    justify-content: center;
    gap: var(--wo-space-1);
    margin-bottom: var(--wo-space-6);
    color: #FBBF24;
    font-size: 1.25rem;
}

.testimonial-text {
    font-size: 1.25rem;
    font-style: italic;
    color: var(--wo-text-heading);
    line-height: 1.7;
    margin-bottom: var(--wo-space-8);
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--wo-space-4);
}

.testimonial-avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    object-fit: cover;
}

.testimonial-info {
    text-align: left;
}

.testimonial-name {
    font-size: 1rem;
    font-weight: 600;
    color: var(--wo-text-heading);
}

.testimonial-role {
    font-size: 0.875rem;
    color: var(--wo-text-muted);
}

/* Stats Bar */
.stats-bar {
    display: flex;
    justify-content: center;
    gap: var(--wo-space-16);
    margin-top: var(--wo-space-16);
    padding-top: var(--wo-space-12);
    border-top: 1px solid var(--wo-border-color);
}

.stat-item {
    text-align: center;
}

.stat-value {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--wo-primary);
    line-height: 1.2;
}

.stat-label {
    font-size: 0.9375rem;
    color: var(--wo-text-body);
    margin-top: var(--wo-space-2);
}

/* ===================================================================
   13. CTA SECTION
   =================================================================== */

.cta {
    padding: var(--wo-space-20) 0;
    background: linear-gradient(135deg, var(--wo-primary) 0%, var(--wo-primary-dark) 100%);
    position: relative;
    overflow: hidden;
}

.cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 0% 100%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 100% 0%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.cta-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.cta-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--wo-text-white);
    margin-bottom: var(--wo-space-4);
}

.cta-description {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: var(--wo-space-8);
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: var(--wo-space-4);
}

/* ===================================================================
   14. FOOTER
   =================================================================== */

.footer {
    background-color: #0A1628;
    color: rgba(255, 255, 255, 0.7);
    padding: var(--wo-space-16) 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: var(--wo-space-12);
    padding-bottom: var(--wo-space-12);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand {
    max-width: 300px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: var(--wo-space-2);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--wo-text-white);
    margin-bottom: var(--wo-space-4);
}

.footer-logo svg {
    height: 32px;
    width: auto;
}

.footer-description {
    font-size: 0.9375rem;
    line-height: 1.7;
    margin-bottom: var(--wo-space-6);
}

.footer-social {
    display: flex;
    gap: var(--wo-space-3);
}

.footer-social a {
    width: 40px;
    height: 40px;
    border-radius: var(--wo-radius-lg);
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--wo-text-white);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--wo-transition-fast);
}

.footer-social a:hover {
    background-color: var(--wo-primary);
    transform: translateY(-2px);
}

.footer-column h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--wo-text-white);
    margin-bottom: var(--wo-space-5);
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: var(--wo-space-3);
}

.footer-links a {
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.7);
    transition: color var(--wo-transition-fast);
}

.footer-links a:hover {
    color: var(--wo-text-white);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--wo-space-6) 0;
    font-size: 0.875rem;
}

.footer-legal {
    display: flex;
    gap: var(--wo-space-6);
}

.footer-legal a {
    color: rgba(255, 255, 255, 0.7);
}

.footer-legal a:hover {
    color: var(--wo-text-white);
}

/* ===================================================================
   15. UTILITIES
   =================================================================== */

.d-flex { display: flex; }
.d-block { display: block; }
.d-none { display: none; }
.flex-column { flex-direction: column; }
.align-center { align-items: center; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.gap-1 { gap: var(--wo-space-1); }
.gap-2 { gap: var(--wo-space-2); }
.gap-3 { gap: var(--wo-space-3); }
.gap-4 { gap: var(--wo-space-4); }
.gap-6 { gap: var(--wo-space-6); }
.gap-8 { gap: var(--wo-space-8); }

.mt-1 { margin-top: var(--wo-space-1); }
.mt-2 { margin-top: var(--wo-space-2); }
.mt-4 { margin-top: var(--wo-space-4); }
.mt-6 { margin-top: var(--wo-space-6); }
.mt-8 { margin-top: var(--wo-space-8); }
.mt-12 { margin-top: var(--wo-space-12); }

.mb-1 { margin-bottom: var(--wo-space-1); }
.mb-2 { margin-bottom: var(--wo-space-2); }
.mb-4 { margin-bottom: var(--wo-space-4); }
.mb-6 { margin-bottom: var(--wo-space-6); }
.mb-8 { margin-bottom: var(--wo-space-8); }
.mb-12 { margin-bottom: var(--wo-space-12); }

.py-4 { padding-top: var(--wo-space-4); padding-bottom: var(--wo-space-4); }
.py-8 { padding-top: var(--wo-space-8); padding-bottom: var(--wo-space-8); }
.py-12 { padding-top: var(--wo-space-12); padding-bottom: var(--wo-space-12); }

.w-100 { width: 100%; }
.h-100 { height: 100%; }

.rounded { border-radius: var(--wo-radius-md); }
.rounded-lg { border-radius: var(--wo-radius-lg); }
.rounded-xl { border-radius: var(--wo-radius-xl); }
.rounded-full { border-radius: var(--wo-radius-full); }

.shadow { box-shadow: var(--wo-shadow); }
.shadow-md { box-shadow: var(--wo-shadow-md); }
.shadow-lg { box-shadow: var(--wo-shadow-lg); }

.img-fluid {
    max-width: 100%;
    height: auto;
}

/* ===================================================================
   16. RESPONSIVE
   =================================================================== */

@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-content {
        max-width: 100%;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-stats {
        justify-content: center;
    }

    .hero-visual {
        display: none;
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .steps-container {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--wo-space-8);
    }

    .steps-container::before {
        display: none;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
        gap: var(--wo-space-12);
    }

    .benefits-image {
        order: -1;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
    }

    .pricing-card.featured {
        transform: none;
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-brand {
        grid-column: span 2;
    }
}

@media (max-width: 768px) {
    h1, .h1 {
        font-size: 2.5rem;
    }

    h2, .h2 {
        font-size: 2rem;
    }

    .hero {
        padding: 120px 0 60px;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-description {
        font-size: 1.125rem;
    }

    .hero-buttons {
        flex-direction: column;
        gap: var(--wo-space-3);
    }

    .hero-buttons .btn {
        width: 100%;
    }

    .hero-stats {
        flex-direction: column;
        gap: var(--wo-space-6);
        align-items: center;
    }

    .hero-stat {
        text-align: center;
    }

    .section {
        padding: var(--wo-space-16) 0;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .steps-container {
        grid-template-columns: 1fr;
    }

    .stats-bar {
        flex-direction: column;
        gap: var(--wo-space-8);
    }

    .cta-title {
        font-size: 2rem;
    }

    .cta-buttons {
        flex-direction: column;
        gap: var(--wo-space-3);
    }

    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-brand {
        grid-column: auto;
        max-width: 100%;
    }

    .footer-social {
        justify-content: center;
    }

    .footer-bottom {
        flex-direction: column;
        gap: var(--wo-space-4);
        text-align: center;
    }

    .footer-legal {
        flex-wrap: wrap;
        justify-content: center;
    }

    /* Mobile Menu */
    .navbar-nav {
        display: none;
        position: absolute;
        top: 80px;
        left: 0;
        right: 0;
        background-color: var(--wo-bg-white);
        flex-direction: column;
        padding: var(--wo-space-4);
        border-top: 1px solid var(--wo-border-color);
        box-shadow: var(--wo-shadow-lg);
    }

    .navbar-nav.active {
        display: flex;
    }

    .navbar-toggle {
        display: flex;
    }

    .navbar-actions .btn-outline {
        display: none;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 var(--wo-space-4);
    }

    h1, .h1 {
        font-size: 2rem;
    }

    .hero-title {
        font-size: 2rem;
    }
}
