/* ===================================
   VARIABILI E RESET
   =================================== */

:root {
    /* Colori principali - palette premium */
    --color-primary: #2563eb;
    --color-primary-dark: #1e40af;
    --color-primary-light: #3b82f6;
    --color-secondary: #0f172a;
    --color-accent: #f59e0b;
    
    /* Colori neutri */
    --color-bg: #ffffff;
    --color-bg-alt: #f8fafc;
    --color-bg-dark: #0f172a;
    --color-text: #1e293b;
    --color-text-light: #64748b;
    --color-text-muted: #94a3b8;
    --color-border: #e2e8f0;
    --color-border-light: #f1f5f9;
    
    /* Stati */
    --color-success: #10b981;
    --color-error: #ef4444;
    --color-warning: #f59e0b;
    
    /* Tipografia */
    --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-size-base: 16px;
    --line-height-base: 1.6;
    
    /* Spaziature */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 6rem;
    
    /* Border radius */
    --radius-sm: 0.5rem;
    --radius-md: 1rem;
    --radius-lg: 1.5rem;
    --radius-full: 9999px;
    
    /* Ombre */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    
    /* Transizioni */
    --transition-fast: 150ms ease;
    --transition-base: 250ms ease;
    --transition-slow: 350ms ease;
    
    /* Container */
    --container-max-width: 1200px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-family);
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
    color: var(--color-text);
    background-color: var(--color-bg);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* ===================================
   TIPOGRAFIA
   =================================== */

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    color: var(--color-secondary);
    margin-bottom: 1rem;
}

h1 { font-size: 3.5rem; }
h2 { font-size: 2.5rem; }
h3 { font-size: 1.75rem; }
h4 { font-size: 1.5rem; }
h5 { font-size: 1.25rem; }
h6 { font-size: 1rem; }

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

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

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

strong {
    font-weight: 600;
    color: var(--color-text);
}

/* ===================================
   LAYOUT BASE
   =================================== */

.container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

section {
    padding: var(--spacing-xl) 0;
}

.section-header {
    margin-bottom: var(--spacing-lg);
}

.section-header.centered {
    text-align: center;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: var(--spacing-lg);
}

.section-label {
    display: inline-block;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--color-primary);
    margin-bottom: 1rem;
}

.section-intro {
    font-size: 1.125rem;
    color: var(--color-text-light);
    margin-top: 1rem;
}

/* ===================================
   COMPONENTI RIUTILIZZABILI
   =================================== */

/* Pulsanti */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 1.75rem;
    font-size: 1rem;
    font-weight: 600;
    border: none;
    border-radius: var(--radius-full);
    cursor: pointer;
    transition: all var(--transition-base);
    text-decoration: none;
    white-space: nowrap;
}

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

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

.btn-large {
    padding: 1.125rem 2.5rem;
    font-size: 1.125rem;
}

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

/* Badge e Tag */
.badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
    font-weight: 600;
    border-radius: var(--radius-full);
    background-color: var(--color-bg-alt);
    color: var(--color-text);
}

/* Card */
.card {
    background-color: var(--color-bg);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: var(--spacing-md);
    transition: all var(--transition-base);
}

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

/* ===================================
   HERO SECTION
   =================================== */

.hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: var(--spacing-xl) 0;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    color: white;
    max-width: 900px;
    margin: 0 auto;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1.25rem;
    background-color: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border-radius: var(--radius-full);
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.hero-title {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: white;
}

.hero-title .highlight {
    position: relative;
    display: inline-block;
    background: linear-gradient(to right, #fbbf24, #f59e0b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.25rem;
    line-height: 1.7;
    margin-bottom: 2.5rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero-cta {
    margin-bottom: 3rem;
}

.hero-cta-note {
    margin-top: 1rem;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 4rem;
    padding-top: 3rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.stat {
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: white;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.8);
}

/* ===================================
   PROBLEM SECTION
   =================================== */

.problem {
    background-color: var(--color-bg-alt);
}

.problem-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.problem-card {
    background-color: white;
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 2px solid var(--color-border);
    transition: all var(--transition-base);
}

.problem-card:hover {
    border-color: var(--color-error);
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.problem-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #fecaca 0%, #ef4444 100%);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.problem-icon i {
    font-size: 1.5rem;
    color: white;
}

.problem-card h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.problem-card p {
    color: var(--color-text-light);
    line-height: 1.7;
}

/* ===================================
   SOLUTION SECTION
   =================================== */

.solution-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.benefits-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 2rem;
}

.benefit-item {
    display: flex;
    gap: 1rem;
    padding: 1.5rem;
    background-color: var(--color-bg-alt);
    border-radius: var(--radius-md);
    transition: all var(--transition-base);
}

.benefit-item:hover {
    background-color: white;
    box-shadow: var(--shadow-md);
    transform: translateX(8px);
}

.benefit-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.25rem;
}

.benefit-text h4 {
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
}

.benefit-text p {
    font-size: 0.9375rem;
    color: var(--color-text-light);
    margin: 0;
}

.solution-card {
    background: white;
    border-radius: var(--radius-lg);
    padding: 2rem;
    box-shadow: var(--shadow-xl);
    border: 1px solid var(--color-border);
    position: sticky;
    top: 2rem;
}

.card-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding-bottom: 1.5rem;
    margin-bottom: 1.5rem;
    border-bottom: 2px solid var(--color-border);
}

.card-header i {
    font-size: 1.5rem;
    color: var(--color-success);
}

.card-header span {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--color-secondary);
}

.transformation .before,
.transformation .after {
    padding: 1.5rem;
    border-radius: var(--radius-md);
}

.transformation .before {
    background-color: #fef2f2;
    border: 1px solid #fecaca;
}

.transformation .after {
    background-color: #f0fdf4;
    border: 1px solid #bbf7d0;
}

.transformation h5 {
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1rem;
    font-weight: 700;
}

.transformation .before h5 {
    color: var(--color-error);
}

.transformation .after h5 {
    color: var(--color-success);
}

.transformation ul {
    list-style: none;
    padding: 0;
}

.transformation ul li {
    font-size: 0.875rem;
    padding: 0.5rem 0;
    color: var(--color-text);
}

.transformation .arrow {
    text-align: center;
    padding: 1rem 0;
    font-size: 1.5rem;
    color: var(--color-primary);
}

/* ===================================
   FREE RESOURCES SECTION
   =================================== */

.free-resources {
    background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
    padding: var(--spacing-xl) 0;
}

.resources-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.resource-category {
    background: white;
    border: 2px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: 2rem;
    transition: all var(--transition-base);
}

.resource-category:hover {
    border-color: var(--color-primary);
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}

.category-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding-bottom: 1.5rem;
    margin-bottom: 1.5rem;
    border-bottom: 2px solid var(--color-border);
}

.category-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.75rem;
    margin-bottom: 1rem;
}

.category-header h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.resource-count {
    font-size: 0.875rem;
    color: var(--color-text-muted);
    font-weight: 600;
}

.resource-list {
    list-style: none;
    padding: 0;
}

.resource-list li {
    display: flex;
    align-items: start;
    gap: 0.75rem;
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--color-border-light);
    font-size: 0.9375rem;
}

.resource-list li:last-child {
    border-bottom: none;
}

.resource-level {
    flex-shrink: 0;
    font-size: 0.75rem;
    padding: 0.25rem 0.5rem;
    border-radius: 0.375rem;
    font-weight: 600;
    white-space: nowrap;
}

.resource-level.easy {
    background-color: #d1fae5;
    color: #065f46;
}

.resource-level.advanced {
    background-color: #dbeafe;
    color: #1e40af;
}

.resource-level.expert {
    background-color: #fef3c7;
    color: #92400e;
}

.resource-list li a {
    color: var(--color-text);
    transition: color var(--transition-base);
    font-weight: 500;
}

.resource-list li a:hover {
    color: var(--color-primary);
}

.resource-list li span:not(.resource-level) {
    color: var(--color-text-light);
}

.resources-cta {
    margin-top: 3rem;
}

.cta-box {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: var(--radius-lg);
    padding: 3rem;
    text-align: center;
    color: white;
}

.cta-box h3 {
    font-size: 1.75rem;
    color: white;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
}

.cta-box h3 i {
    font-size: 2rem;
}

.cta-box p {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 2rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.cta-box .btn {
    background-color: white;
    color: var(--color-primary);
}

.cta-box .btn:hover {
    background-color: var(--color-bg-alt);
    transform: translateY(-2px);
}

/* ===================================
   WHAT'S INCLUDED SECTION
   =================================== */

.whats-included {
    background-color: var(--color-bg-alt);
}

.included-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.included-card {
    background: white;
    border: 2px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    position: relative;
    transition: all var(--transition-base);
}

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

.included-card.premium {
    border-color: var(--color-primary);
    box-shadow: var(--shadow-lg);
}

.card-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--color-accent) 0%, #dc2626 100%);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.included-card .card-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
}

.included-card h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.card-duration {
    font-size: 0.875rem;
    color: var(--color-text-muted);
    margin-bottom: 1.5rem;
}

.card-features {
    list-style: none;
    padding: 0;
}

.card-features li {
    display: flex;
    align-items: start;
    gap: 0.75rem;
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--color-border-light);
}

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

.card-features li i {
    color: var(--color-success);
    font-size: 1rem;
    margin-top: 0.25rem;
}

.bonus-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: var(--radius-lg);
    padding: 3rem;
    color: white;
    text-align: center;
}

.bonus-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.bonus-header i {
    font-size: 2rem;
}

.bonus-header h3 {
    font-size: 1.75rem;
    color: white;
    margin: 0;
}

.bonus-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.bonus-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem;
    background-color: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border-radius: var(--radius-md);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all var(--transition-base);
}

.bonus-item:hover {
    background-color: rgba(255, 255, 255, 0.25);
    transform: scale(1.05);
}

.bonus-item i {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.bonus-item span {
    font-size: 0.9375rem;
    text-align: left;
}

/* ===================================
   FOR WHO SECTION
   =================================== */

.for-who-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.for-who-column {
    background: white;
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    border: 2px solid var(--color-border);
}

.for-who-column.yes {
    border-color: var(--color-success);
    background: linear-gradient(to bottom, #f0fdf4 0%, white 100%);
}

.for-who-column.no {
    border-color: var(--color-error);
    background: linear-gradient(to bottom, #fef2f2 0%, white 100%);
}

.column-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 2px solid var(--color-border);
}

.for-who-column.yes .column-header i {
    font-size: 2rem;
    color: var(--color-success);
}

.for-who-column.no .column-header i {
    font-size: 2rem;
    color: var(--color-error);
}

.column-header h3 {
    font-size: 1.5rem;
    margin: 0;
}

.for-who-list {
    list-style: none;
    padding: 0;
}

.for-who-list li {
    display: flex;
    gap: 1rem;
    padding: 1rem 0;
    border-bottom: 1px solid var(--color-border-light);
}

.for-who-list li:last-child {
    border-bottom: none;
}

.for-who-list li i {
    flex-shrink: 0;
    font-size: 1.25rem;
    margin-top: 0.125rem;
}

.for-who-column.yes .for-who-list li i {
    color: var(--color-success);
}

.for-who-column.no .for-who-list li i {
    color: var(--color-error);
}

.for-who-list li span {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--color-text);
}

/* ===================================
   PROCESS SECTION
   =================================== */

.process {
    background-color: var(--color-bg-alt);
}

.process-timeline {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    position: relative;
    max-width: 900px;
    margin: 0 auto;
}

.process-timeline::before {
    content: '';
    position: absolute;
    left: 31px;
    top: 60px;
    bottom: 60px;
    width: 2px;
    background: linear-gradient(to bottom, var(--color-primary) 0%, var(--color-primary-light) 100%);
}

.process-step {
    display: flex;
    gap: 2rem;
    position: relative;
}

.step-number {
    flex-shrink: 0;
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    font-weight: 800;
    box-shadow: 0 0 0 4px var(--color-bg-alt);
    position: relative;
    z-index: 1;
}

.process-step.highlight .step-number {
    background: linear-gradient(135deg, var(--color-accent) 0%, #dc2626 100%);
    animation: pulse 2s infinite;
}

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

.step-content {
    flex: 1;
    background: white;
    border: 2px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: 2rem;
    transition: all var(--transition-base);
}

.step-content:hover {
    border-color: var(--color-primary);
    box-shadow: var(--shadow-lg);
    transform: translateX(8px);
}

.process-step.highlight .step-content {
    border-color: var(--color-accent);
    background: linear-gradient(to right, #fffbeb 0%, white 100%);
}

.step-content h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.step-duration {
    font-size: 0.875rem;
    color: var(--color-text-muted);
    margin-bottom: 1rem;
}

.step-description {
    margin-bottom: 1.5rem;
    color: var(--color-text-light);
}

.step-checklist {
    list-style: none;
    padding: 0;
}

.step-checklist li {
    display: flex;
    align-items: start;
    gap: 0.75rem;
    padding: 0.5rem 0;
    font-size: 0.9375rem;
}

.step-checklist li i {
    color: var(--color-success);
    margin-top: 0.25rem;
}

/* ===================================
   TESTIMONIALS SECTION
   =================================== */

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 2rem;
}

.testimonial-card {
    background: white;
    border: 2px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: 2rem;
    transition: all var(--transition-base);
}

.testimonial-card:hover {
    border-color: var(--color-primary);
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}

.testimonial-card.featured {
    grid-column: 1 / -1;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-color: transparent;
    color: white;
}

.testimonial-rating {
    display: flex;
    gap: 0.25rem;
    margin-bottom: 1rem;
}

.testimonial-rating i {
    color: #fbbf24;
    font-size: 1.125rem;
}

.testimonial-card.featured .testimonial-rating i {
    color: #fef3c7;
}

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

.testimonial-card.featured .testimonial-text {
    color: rgba(255, 255, 255, 0.95);
    font-size: 1.125rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

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

.testimonial-card.featured .author-avatar {
    background: rgba(255, 255, 255, 0.2);
    color: white;
}

.author-name {
    font-weight: 700;
    color: var(--color-text);
}

.testimonial-card.featured .author-name {
    color: white;
}

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

.testimonial-card.featured .author-role {
    color: rgba(255, 255, 255, 0.8);
}

/* ===================================
   FAQ SECTION
   =================================== */

.faq {
    background-color: var(--color-bg-alt);
}

.faq-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    border: 2px solid var(--color-border);
    border-radius: var(--radius-md);
    margin-bottom: 1rem;
    overflow: hidden;
    transition: all var(--transition-base);
}

.faq-item:hover {
    border-color: var(--color-primary);
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--color-secondary);
    transition: all var(--transition-base);
}

.faq-question:hover {
    color: var(--color-primary);
}

.faq-question i {
    flex-shrink: 0;
    font-size: 1rem;
    color: var(--color-primary);
    transition: transform var(--transition-base);
}

.faq-question[aria-expanded="true"] i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-slow);
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    padding: 0 1.5rem 1.5rem;
    color: var(--color-text-light);
    line-height: 1.7;
}

/* ===================================
   ABOUT SECTION
   =================================== */

.about-wrapper {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    align-items: start;
}

.about-card {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
    border-radius: var(--radius-lg);
    padding: 3rem 2rem;
    color: white;
    text-align: center;
    position: sticky;
    top: 2rem;
}

.about-card .card-icon {
    width: 120px;
    height: 120px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    font-size: 4rem;
}

.card-stats {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.stat-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.15);
    border-radius: var(--radius-md);
    font-weight: 600;
}

.about-role {
    font-size: 1.125rem;
    color: var(--color-text-muted);
    margin-bottom: 2rem;
}

.about-text {
    margin-bottom: 2rem;
}

.about-text p {
    font-size: 1.0625rem;
    line-height: 1.8;
    color: var(--color-text-light);
    margin-bottom: 1.5rem;
}

.about-credentials h4 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.about-credentials ul {
    list-style: none;
    padding: 0;
}

.about-credentials ul li {
    display: flex;
    align-items: start;
    gap: 0.75rem;
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--color-border-light);
}

.about-credentials ul li:last-child {
    border-bottom: none;
}

.about-credentials ul li i {
    color: var(--color-success);
    margin-top: 0.25rem;
}

.about-links {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.social-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 1.5rem;
    background-color: var(--color-bg-alt);
    border: 2px solid var(--color-border);
    border-radius: var(--radius-full);
    font-weight: 600;
    transition: all var(--transition-base);
}

.social-link:hover {
    background-color: var(--color-primary);
    border-color: var(--color-primary);
    color: white;
    transform: translateY(-2px);
}

/* ===================================
   CTA FINAL SECTION
   =================================== */

.cta-final {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: var(--spacing-xl) 0;
    position: relative;
}

.cta-final::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.cta-card {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
    background: white;
    border-radius: var(--radius-lg);
    padding: 3rem;
    box-shadow: var(--shadow-xl);
}

.cta-content h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 1rem;
}

.cta-subtitle {
    font-size: 1.125rem;
    text-align: center;
    color: var(--color-text-light);
    margin-bottom: 2rem;
}

.cta-benefits {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background-color: var(--color-bg-alt);
    border-radius: var(--radius-md);
}

.cta-benefit {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.cta-benefit i {
    color: var(--color-success);
    font-size: 1.25rem;
}

.cta-benefit span {
    font-weight: 500;
    color: var(--color-text);
}

/* Form Styles */
.cta-form {
    margin-top: 2rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1rem;
}

.form-group {
    margin-bottom: 1rem;
}

.form-group label {
    display: block;
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--color-text);
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.875rem 1rem;
    font-size: 1rem;
    font-family: var(--font-family);
    color: var(--color-text);
    background-color: var(--color-bg);
    border: 2px solid var(--color-border);
    border-radius: var(--radius-md);
    transition: all var(--transition-base);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

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

.checkbox-group {
    margin: 1.5rem 0;
}

.checkbox-label {
    display: flex;
    align-items: start;
    gap: 0.75rem;
    font-size: 0.9375rem;
    cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
    margin-top: 0.25rem;
    width: 18px;
    height: 18px;
    cursor: pointer;
}

.form-note {
    text-align: center;
    font-size: 0.875rem;
    color: var(--color-text-muted);
    margin-top: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

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

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: white;
    font-size: 0.9375rem;
}

.trust-item i {
    font-size: 1.25rem;
}

/* ===================================
   FOOTER
   =================================== */

.footer {
    background-color: var(--color-bg-dark);
    color: rgba(255, 255, 255, 0.8);
    padding: 3rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand h3 {
    font-size: 1.5rem;
    color: white;
    margin-bottom: 0.5rem;
}

.footer-brand p {
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.6);
}

.footer-column h4 {
    font-size: 1rem;
    color: white;
    margin-bottom: 1rem;
}

.footer-column ul {
    list-style: none;
    padding: 0;
}

.footer-column ul li {
    margin-bottom: 0.75rem;
}

.footer-column ul li a {
    color: rgba(255, 255, 255, 0.7);
    transition: color var(--transition-base);
}

.footer-column ul li a:hover {
    color: white;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
}

.footer-bottom p {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.5);
    margin: 0;
}

/* ===================================
   RESPONSIVE
   =================================== */

@media (max-width: 1024px) {
    h1 { font-size: 3rem; }
    h2 { font-size: 2rem; }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .solution-wrapper,
    .for-who-wrapper,
    .about-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .solution-card,
    .about-card {
        position: static;
    }
    
    .footer-content {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    section {
        padding: var(--spacing-lg) 0;
    }
    
    .container {
        padding: 0 var(--spacing-sm);
    }
    
    h1 { font-size: 2.5rem; }
    h2 { font-size: 1.75rem; }
    
    .hero-title {
        font-size: 2.25rem;
    }
    
    .hero-subtitle {
        font-size: 1.125rem;
    }
    
    .hero-stats {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .problem-grid,
    .included-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .for-who-wrapper {
        gap: 2rem;
    }
    
    .process-timeline::before {
        display: none;
    }
    
    .process-step {
        flex-direction: column;
    }
    
    .step-number {
        width: 48px;
        height: 48px;
        font-size: 1.25rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .cta-trust {
        flex-direction: column;
        gap: 1rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .btn-large {
        padding: 1rem 1.5rem;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    h1 { font-size: 2rem; }
    h2 { font-size: 1.5rem; }
    
    .hero-title {
        font-size: 1.875rem;
    }
    
    .cta-card {
        padding: 2rem 1.5rem;
    }
    
    .cta-content h2 {
        font-size: 1.75rem;
    }
}