/* ===== VARIABLES ===== */
:root {
    --primary: #D4AF37;
    --primary-dark: #B8860B;
    --primary-light: #F0D77A;
    --primary-400: #D4AF37;
    --primary-300: #F0D77A;
    --secondary: #1E3A5F;
    --secondary-dark: #0F1F33;
    --success: #10B981;
    --warning: #F59E0B;
    --danger: #EF4444;
    --gray-50: #F9FAFB;
    --gray-100: #F3F4F6;
    --gray-200: #E5E7EB;
    --gray-300: #D1D5DB;
    --gray-400: #9CA3AF;
    --gray-500: #6B7280;
    --gray-600: #4B5563;
    --gray-700: #374151;
    --gray-800: #1F2937;
    --gray-900: #111827;
    --white: #FFFFFF;
    --neutral-900: #111827;
    --neutral-800: #1F2937;
    --neutral-500: #6B7280;
    --neutral-400: #9CA3AF;
    --neutral-300: #D1D5DB;
    --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-size-sm: 0.875rem;
    --font-size-lg: 1.125rem;
    --spacing-lg: 1.5rem;
    --spacing-md: 1rem;
    --spacing-xl: 2rem;
    --spacing-2xl: 3rem;
    --spacing-3xl: 4rem;
    --spacing-4xl: 6rem;
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow: 0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
    --shadow-2xl: 0 25px 50px -12px rgb(0 0 0 / 0.25);
    --radius-sm: 0.375rem;
    --radius: 0.5rem;
    --radius-lg: 0.75rem;
    --radius-xl: 1rem;
    --radius-2xl: 1.5rem;
    --transition: all 0.3s ease;
    --transition-base: 250ms ease;

    /* Pricing specific variables */
    --color-primary: #D4AF37;
    --color-text-primary: #111827;
    --color-text-secondary: #6B7280;
    --gradient-primary: linear-gradient(135deg, #D4AF37 0%, #B8860B 100%);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-family);
    font-size: 16px;
    line-height: 1.6;
    color: var(--gray-700);
    background-color: var(--white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

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

/* ===== UTILITIES ===== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.text-gradient {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.text-gradient-warning {
    background: linear-gradient(135deg, var(--danger) 0%, var(--secondary-dark) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    font-size: 0.9375rem;
    font-weight: 600;
    border-radius: var(--radius-lg);
    border: 2px solid transparent;
    cursor: pointer;
    transition: var(--transition);
    white-space: nowrap;
}

.btn--primary {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--white);
    box-shadow: 0 4px 14px 0 rgba(212, 175, 55, 0.4);
}

.btn--primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px 0 rgba(212, 175, 55, 0.5);
}

.btn--outline {
    background: transparent;
    color: var(--gray-700);
    border-color: var(--gray-300);
}

.btn--outline:hover {
    border-color: var(--primary);
    color: var(--primary);
    background: rgba(212, 175, 55, 0.05);
}

.btn--lg {
    padding: 1rem 2rem;
    font-size: 1rem;
}

.btn--full {
    width: 100%;
}

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

.header.scrolled {
    box-shadow: var(--shadow-md);
}

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

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

.logo-text-wrapper {
    display: flex;
    flex-direction: column;
}

.logo-text {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--gray-800);
}

.logo-text--highlight {
    color: var(--primary);
}

.logo-tagline {
    font-size: 0.7rem;
    color: var(--gray-500);
    font-weight: 500;
    letter-spacing: 0.02em;
}

.nav__list {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav__link {
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--gray-600);
    transition: var(--transition);
}

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

.nav__link--cta {
    padding: 0.625rem 1.25rem;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--white);
    border-radius: var(--radius-lg);
}

.nav__link--cta:hover {
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.4);
}

.nav__toggle, .nav__close {
    display: none;
    cursor: pointer;
    color: var(--gray-700);
}

/* ===== HERO ===== */
.hero {
    padding: 8rem 0 5rem;
    background: linear-gradient(180deg, var(--gray-50) 0%, var(--white) 100%);
    overflow: hidden;
}

.hero__container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 100px;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--primary-dark);
    margin-bottom: 1.5rem;
}

.hero__badge-icon {
    font-size: 1rem;
}

.hero__title {
    font-size: 3.25rem;
    font-weight: 800;
    line-height: 1.15;
    color: var(--gray-900);
    margin-bottom: 1.5rem;
}

.hero__description {
    font-size: 1.125rem;
    color: var(--gray-600);
    margin-bottom: 2rem;
    max-width: 540px;
}

.hero__stats {
    display: flex;
    gap: 2.5rem;
    margin-bottom: 2.5rem;
    padding: 1.5rem 0;
    border-top: 1px solid var(--gray-200);
    border-bottom: 1px solid var(--gray-200);
}

.hero__stat {
    display: flex;
    flex-direction: column;
}

.hero__stat-number {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--primary);
}

.hero__stat-label {
    font-size: 0.875rem;
    color: var(--gray-500);
}

.hero__actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

/* Dashboard Visual */
.hero__visual {
    position: relative;
}

.hero__dashboard {
    background: var(--white);
    border-radius: var(--radius-2xl);
    box-shadow: var(--shadow-2xl);
    overflow: hidden;
    border: 1px solid var(--gray-200);
}

.dashboard-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.5rem;
    background: var(--gray-50);
    border-bottom: 1px solid var(--gray-200);
}

.dashboard-dots {
    display: flex;
    gap: 0.5rem;
}

.dashboard-dots span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.dashboard-dots span:nth-child(1) { background: #EF4444; }
.dashboard-dots span:nth-child(2) { background: #F59E0B; }
.dashboard-dots span:nth-child(3) { background: #10B981; }

.dashboard-title {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--gray-600);
}

.dashboard-content {
    padding: 1.5rem;
}

.dashboard-stat-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.dashboard-stat {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    padding: 1rem;
    border-radius: var(--radius-lg);
    text-align: center;
}

.stat-value {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
}

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

.dashboard-chart {
    height: 120px;
    background: linear-gradient(180deg, rgba(212, 175, 55, 0.1) 0%, transparent 100%);
    border-radius: var(--radius);
    margin-bottom: 1.5rem;
    position: relative;
    overflow: hidden;
}

.dashboard-chart::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60%;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 400 100'%3E%3Cpath d='M0,80 Q50,60 100,70 T200,50 T300,60 T400,40 L400,100 L0,100 Z' fill='%233B82F6' fill-opacity='0.2'/%3E%3Cpath d='M0,80 Q50,60 100,70 T200,50 T300,60 T400,40' stroke='%233B82F6' stroke-width='2' fill='none'/%3E%3C/svg%3E") no-repeat bottom center;
    background-size: cover;
}

.dashboard-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.list-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    background: var(--gray-50);
    border-radius: var(--radius);
    font-size: 0.875rem;
    color: var(--gray-700);
}

.item-status {
    width: 8px;
    height: 8px;
    border-radius: 50%;
}

.item-status--success { background: var(--success); }
.item-status--warning { background: var(--warning); }
.item-status--info { background: var(--primary); }

/* ===== SECTION STYLES ===== */
.section-header {
    margin-bottom: 3rem;
}

.section-header--center {
    text-align: center;
}

.section-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: rgba(212, 175, 55, 0.1);
    color: var(--primary-dark);
    font-size: 0.875rem;
    font-weight: 600;
    border-radius: 100px;
    margin-bottom: 1rem;
}

.section-badge--warning {
    background: rgba(239, 68, 68, 0.1);
    color: var(--danger);
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--gray-900);
    line-height: 1.2;
}

.section-description {
    font-size: 1.125rem;
    color: var(--gray-600);
    margin-top: 1rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* ===== PROBLEMS SECTION ===== */
.problems {
    padding: 6rem 0;
    background: var(--white);
}

.problems__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.problem-card {
    padding: 2rem;
    background: var(--gray-50);
    border-radius: var(--radius-xl);
    border: 1px solid var(--gray-200);
    transition: var(--transition);
}

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

.problem-card__icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(212, 175, 55, 0.1);
    border-radius: var(--radius-lg);
    color: var(--primary);
    margin-bottom: 1.25rem;
}

.problem-card__title {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 0.75rem;
}

.problem-card__description {
    font-size: 0.9375rem;
    color: var(--gray-600);
    line-height: 1.6;
}

/* ===== IMPLICATIONS SECTION ===== */
.implications {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--gray-900) 0%, var(--gray-800) 100%);
}

.implications__content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.implications__text {
    color: var(--white);
}

.implications__text .section-title {
    color: var(--white);
}

.implications__list {
    margin-top: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.implication-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    font-size: 1rem;
    color: var(--gray-300);
}

.implication-item svg {
    flex-shrink: 0;
    color: var(--danger);
    margin-top: 0.125rem;
}

.implication-item strong {
    color: var(--white);
}

.implications__card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-2xl);
    padding: 3rem;
    text-align: center;
}

.implications__number {
    display: block;
    font-size: 5rem;
    font-weight: 800;
    color: var(--danger);
    line-height: 1;
    margin-bottom: 1rem;
}

.implications__label {
    font-size: 1.125rem;
    color: var(--gray-400);
}

/* ===== FEATURES SECTION ===== */
.features {
    padding: 6rem 0;
    background: var(--gray-50);
}

.features__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.feature-card {
    padding: 2rem;
    background: var(--white);
    border-radius: var(--radius-xl);
    border: 1px solid var(--gray-200);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

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

.feature-card__icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    border-radius: var(--radius-lg);
    color: var(--white);
    margin-bottom: 1.25rem;
}

.feature-card__title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 0.75rem;
}

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

.feature-card__benefit {
    display: inline-block;
    padding: 0.375rem 0.75rem;
    background: rgba(16, 185, 129, 0.1);
    color: var(--success);
    font-size: 0.8125rem;
    font-weight: 600;
    border-radius: 100px;
}

/* ===== RESULTS SECTION ===== */
.results {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--secondary) 0%, var(--secondary-dark) 100%);
}

.results .section-badge {
    background: rgba(255, 255, 255, 0.2);
    color: var(--white);
}

.results .section-title {
    color: var(--white);
}

.results .section-title .text-gradient {
    background: linear-gradient(135deg, #D4AF37 0%, #F0D77A 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.results__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.result-card {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-xl);
    padding: 2rem;
    text-align: center;
    backdrop-filter: blur(10px);
}

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

.result-card__label {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
}

/* ===== TESTIMONIALS SECTION ===== */
.testimonials {
    padding: 6rem 0;
    background: var(--white);
}

.testimonials__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.testimonial-card {
    padding: 2rem;
    background: var(--gray-50);
    border-radius: var(--radius-xl);
    border: 1px solid var(--gray-200);
}

.testimonial-card__content {
    margin-bottom: 1.5rem;
}

.testimonial-card__content p {
    font-size: 1rem;
    color: var(--gray-700);
    line-height: 1.7;
    font-style: italic;
}

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

.testimonial-card__avatar {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--white);
    font-weight: 700;
    border-radius: 50%;
}

.testimonial-card__info {
    display: flex;
    flex-direction: column;
}

.testimonial-card__name {
    font-weight: 600;
    color: var(--gray-900);
}

.testimonial-card__role {
    font-size: 0.875rem;
    color: var(--gray-500);
}

/* ===== CONTACT SECTION ===== */
.contact {
    padding: 6rem 0;
    background: var(--gray-50);
}

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

.contact__info {
    padding-right: 2rem;
}

.contact__text {
    font-size: 1.125rem;
    color: var(--gray-600);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.contact__benefits {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 2rem;
}

.contact__benefit {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--gray-700);
    font-weight: 500;
}

.contact__benefit svg {
    color: var(--primary);
    flex-shrink: 0;
}

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

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

.contact__icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--white);
    border-radius: var(--radius);
    color: var(--primary);
    box-shadow: var(--shadow);
}

.contact__label {
    font-size: 0.875rem;
    color: var(--gray-500);
    display: block;
}

.contact__value {
    color: var(--gray-900);
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
}

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

/* ===== TYPEFORM STYLES ===== */
.typeform-container {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 2rem;
    border: 1px solid var(--gray-200);
    box-shadow: var(--shadow-lg);
}

.tf-form {
    min-height: 400px;
    display: flex;
    flex-direction: column;
}

.tf-progress {
    height: 4px;
    background: var(--gray-200);
    border-radius: 100px;
    margin-bottom: 2rem;
    overflow: hidden;
}

.tf-progress-bar {
    height: 100%;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    border-radius: 100px;
    transition: width 0.3s ease;
    width: 16.66%;
}

.tf-questions {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.tf-question {
    display: none;
    animation: fadeIn 0.3s ease;
}

.tf-question.active {
    display: block;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.tf-question__label {
    display: block;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 1rem;
}

.tf-question__hint {
    font-size: 0.875rem;
    color: var(--gray-500);
    font-weight: 400;
    display: block;
    margin-top: 0.25rem;
}

.tf-input {
    width: 100%;
    padding: 1rem;
    font-size: 1.125rem;
    border: 2px solid var(--gray-200);
    border-radius: var(--radius);
    background: var(--white);
    transition: var(--transition);
    font-family: inherit;
}

.tf-input:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.1);
}

.tf-options {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.tf-option {
    padding: 0.875rem 1rem;
    background: var(--white);
    border: 2px solid var(--gray-200);
    border-radius: var(--radius);
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.tf-option:hover {
    border-color: var(--primary-light);
    background: rgba(212, 175, 55, 0.05);
}

.tf-option.selected {
    border-color: var(--primary);
    background: rgba(212, 175, 55, 0.05);
}

.tf-option__key {
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gray-100);
    border-radius: 6px;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--gray-600);
}

.tf-option.selected .tf-option__key {
    background: var(--primary);
    color: var(--white);
}

.tf-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 2rem;
    padding-top: 1rem;
    border-top: 1px solid var(--gray-200);
}

.tf-nav-btn {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gray-100);
    border-radius: var(--radius);
    color: var(--gray-600);
    border: none;
    cursor: pointer;
    transition: var(--transition);
}

.tf-nav-btn:hover:not(:disabled) {
    background: rgba(212, 175, 55, 0.1);
    color: var(--primary);
}

.tf-nav-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.tf-counter {
    font-size: 0.875rem;
    color: var(--gray-500);
}

.tf-submit {
    width: 100%;
    margin-top: 1.5rem;
}

.tf-success {
    text-align: center;
    padding: 3rem 2rem;
}

.tf-success-icon {
    color: var(--primary);
    margin-bottom: 1.5rem;
}

.tf-success-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 0.5rem;
}

.tf-success-text {
    color: var(--gray-600);
    line-height: 1.6;
}

/* ===== FOOTER ===== */
.footer {
    padding: var(--spacing-4xl) 0 var(--spacing-xl);
    background: var(--neutral-900);
    color: var(--neutral-300);
}

.footer__grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: var(--spacing-4xl);
    margin-bottom: var(--spacing-3xl);
}

.footer__brand .nav__logo .logo-text {
    color: white;
}

.footer__description {
    margin-top: var(--spacing-lg);
    line-height: 1.7;
    max-width: 300px;
}

.footer__title {
    color: white;
    font-size: var(--font-size-lg);
    font-weight: 700;
    margin-bottom: var(--spacing-lg);
}

.footer__list {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

.footer__link {
    color: var(--neutral-400);
    transition: var(--transition-base);
}

.footer__link:hover {
    color: var(--primary-400);
}

.footer__bottom {
    padding-top: var(--spacing-xl);
    border-top: 1px solid var(--neutral-800);
    text-align: center;
}

.footer__copyright {
    font-size: var(--font-size-sm);
    color: var(--neutral-500);
}

.footer__copyright a {
    color: var(--primary-400);
}

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

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .hero__container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .hero__title {
        font-size: 2.5rem;
    }

    .hero__visual {
        order: -1;
    }

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

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

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

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

    .implications__content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .contact__grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .contact__info {
        padding-right: 0;
    }

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

@media (max-width: 768px) {
    .nav__menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 320px;
        height: 100vh;
        background: var(--white);
        box-shadow: var(--shadow-2xl);
        padding: 5rem 2rem 2rem;
        transition: var(--transition);
        z-index: 100;
    }

    .nav__menu.show-menu {
        right: 0;
    }

    .nav__list {
        flex-direction: column;
        gap: 1.5rem;
    }

    .nav__link--cta {
        width: 100%;
        text-align: center;
    }

    .nav__close {
        display: block;
        position: absolute;
        top: 1.5rem;
        right: 1.5rem;
    }

    .nav__toggle {
        display: block;
    }

    .hero {
        padding: 6rem 0 3rem;
    }

    .hero__title {
        font-size: 2rem;
    }

    .hero__stats {
        flex-direction: column;
        gap: 1rem;
    }

    .hero__actions {
        flex-direction: column;
    }

    .hero__actions .btn {
        width: 100%;
    }

    .problems__grid,
    .features__grid,
    .results__grid {
        grid-template-columns: 1fr;
    }

    .section-title {
        font-size: 1.75rem;
    }

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

    .cta__title {
        font-size: 1.75rem;
    }

    .footer__grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-2xl);
    }

    .dashboard-stat-row {
        grid-template-columns: 1fr;
    }
}

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

.hero__content,
.hero__visual {
    animation: fadeInUp 0.6s ease-out;
}

.hero__visual {
    animation-delay: 0.2s;
}

/* ===== Gallery / Carousel Section ===== */
.gallery {
    padding: 6rem 0;
    background: linear-gradient(180deg, rgba(212, 175, 55, 0.05) 0%, rgba(184, 134, 11, 0.05) 100%);
}

.gallery__carousel {
    position: relative;
    overflow: hidden;
    margin: 4rem 0;
}

.gallery__slide {
    display: none;
    position: relative;
    width: 100%;
    height: 450px;
    border-radius: 1rem;
    overflow: hidden;
    animation: fadeIn 0.5s ease-in-out;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.gallery__slide.active {
    display: block;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.gallery__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
    filter: brightness(0.9);
}

.gallery__slide:hover .gallery__image {
    transform: scale(1.05);
    filter: brightness(0.8);
}

.gallery__overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(17, 24, 39, 0.3) 0%, rgba(17, 24, 39, 0.8) 100%);
    padding: 3rem 2rem;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    transition: all 0.3s ease;
}

.gallery__slide:hover .gallery__overlay {
    background: linear-gradient(135deg, rgba(17, 24, 39, 0.4) 0%, rgba(17, 24, 39, 0.9) 100%);
}

.gallery__title {
    font-size: 2rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 0.5rem;
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.8);
    letter-spacing: -0.5px;
}

.gallery__description {
    font-size: 1.05rem;
    color: #f0f0f0;
    line-height: 1.7;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.8);
    max-width: 90%;
}

.gallery__controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
}

.gallery__btn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 2px solid var(--primary);
    background: transparent;
    color: var(--primary);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.gallery__btn:hover {
    background: var(--primary);
    color: white;
    transform: scale(1.1);
}

.gallery__dots {
    display: flex;
    gap: 0.5rem;
}

.gallery__dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(212, 175, 55, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.gallery__dot.active {
    background: var(--primary);
    width: 32px;
    border-radius: 50%;
}

@media (max-width: 768px) {
    .gallery {
        padding: 3rem 0;
    }

    .gallery__slide {
        height: 350px;
        border-radius: 0.75rem;
    }

    .gallery__overlay {
        padding: 2rem 1rem;
    }

    .gallery__title {
        font-size: 1.5rem;
        font-weight: 700;
    }

    .gallery__description {
        font-size: 0.95rem;
        max-width: 100%;
    }

    .gallery__btn {
        width: 40px;
        height: 40px;
    }

    .gallery__controls {
        gap: 1.5rem;
    }
}

/* Mobile pequeno - melhorias adicionais */
@media (max-width: 480px) {
    .container {
        padding-left: 1rem;
        padding-right: 1rem;
    }

    .section-title {
        font-size: 1.75rem;
        line-height: 1.2;
    }

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

    .gallery__slide {
        height: 280px;
        border-radius: 0.5rem;
    }

    .gallery__overlay {
        padding: 1.5rem 1rem;
    }

    .gallery__title {
        font-size: 1.25rem;
        margin-bottom: 0.25rem;
    }

    .gallery__description {
        font-size: 0.85rem;
        line-height: 1.5;
    }

    .gallery__btn {
        width: 36px;
        height: 36px;
    }

    .gallery__controls {
        gap: 1rem;
        margin-top: 1.5rem;
    }

    .gallery__dot {
        width: 10px;
        height: 10px;
    }

    .gallery__dot.active {
        width: 24px;
    }
}

