/* ========================================
   RESET E BASE STYLES
   ======================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Colors */
    --color-primary: #2563EB;
    --color-primary-dark: #1D4ED8;
    --color-secondary: #10B981;
    --color-secondary-dark: #059669;
    --color-gray-900: #111827;
    --color-gray-700: #374151;
    --color-gray-600: #4B5563;
    --color-gray-500: #6B7280;
    --color-gray-300: #D1D5DB;
    --color-gray-200: #E5E7EB;
    --color-gray-100: #F3F4F6;
    --color-gray-50: #F9FAFB;
    
    /* Fonts */
    --font-base: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    
    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 1.5rem;
    --spacing-lg: 2rem;
    --spacing-xl: 3rem;
    --spacing-2xl: 4rem;
    
    /* Border Radius */
    --radius-sm: 0.375rem;
    --radius-md: 0.5rem;
    --radius-lg: 0.75rem;
    --radius-xl: 1rem;
    --radius-2xl: 1.5rem;
    
    /* Shadows */
    --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);
    --shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

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

body {
    font-family: var(--font-base);
    line-height: 1.6;
    color: var(--color-gray-900);
    background-color: #ffffff;
    overflow-x: hidden;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--color-gray-100);
}

::-webkit-scrollbar-thumb {
    background: var(--color-primary);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--color-primary-dark);
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Typography */
.section-title {
    font-size: 2.25rem;
    font-weight: 700;
    color: var(--color-gray-900);
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.25rem;
    color: var(--color-gray-600);
    max-width: 800px;
    margin: 0 auto;
}

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

.text-green {
    color: var(--color-secondary);
}

/* ========================================
   HERO SECTION
   ======================================== */
.hero-section {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: linear-gradient(135deg, #EFF6FF 0%, #ffffff 50%, #ECFDF5 100%);
}

.hero-bg-pattern {
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 32 32' width='32' height='32' fill='none' stroke='rgb(203 213 225 / 0.5)'%3e%3cpath d='M0 .5H31.5V32'/%3e%3c/svg%3e");
    mask-image: linear-gradient(0deg, white, rgba(255,255,255,0.6));
    z-index: 0;
}

.hero-bg-image {
    position: absolute;
    inset: 0;
    background: url('https://static.abacusaicdn.net/images/2839421f-e026-4701-95e9-fbf6b0916815.png') center/cover no-repeat;
    opacity: 0.1;
    z-index: 0;
    animation: parallax 20s ease-in-out infinite;
}

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

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    padding: var(--spacing-2xl) 0;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background-color: #DBEAFE;
    color: var(--color-primary);
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: var(--spacing-md);
}

.hero-badge .icon {
    width: 1rem;
    height: 1rem;
    stroke-width: 2;
}

.hero-title {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: var(--spacing-md);
}

.hero-subtitle {
    font-size: 1.5rem;
    color: var(--color-gray-600);
    margin-bottom: var(--spacing-lg);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.hero-price {
    margin-bottom: var(--spacing-lg);
}

.price-label {
    color: var(--color-gray-600);
    margin-bottom: 0.5rem;
}

.price-value {
    font-size: 3rem;
    font-weight: 700;
}

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

.price-note {
    font-size: 0.875rem;
    color: var(--color-gray-500);
    margin-top: 0.5rem;
}

.hero-cta {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
    margin-bottom: var(--spacing-xl);
}

.trust-indicators {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    font-size: 0.875rem;
    color: var(--color-gray-500);
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.check-icon {
    width: 1.25rem;
    height: 1.25rem;
    background-color: var(--color-secondary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
}

/* ========================================
   BUTTONS
   ======================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: var(--radius-lg);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn .icon {
    width: 1.25rem;
    height: 1.25rem;
    stroke-width: 2;
}

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

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

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

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

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

.btn-primary.btn-large {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
}

.btn-primary.btn-large:hover {
    background: linear-gradient(135deg, var(--color-primary-dark) 0%, var(--color-secondary-dark) 100%);
}

/* ========================================
   PROBLEM SECTION
   ======================================== */
.problem-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--color-gray-50) 0%, #ffffff 100%);
}

.section-header {
    text-align: center;
    margin-bottom: var(--spacing-2xl);
}

.comparison-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.comparison-card {
    background: white;
    border-radius: var(--radius-2xl);
    padding: var(--spacing-xl);
    box-shadow: var(--shadow-lg);
    transition: all 0.3s ease;
}

.comparison-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-2xl);
}

.problem-card {
    border: 2px solid #FEE2E2;
}

.solution-card {
    border: 2px solid #D1FAE5;
}

.card-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
    text-align: center;
}

.problem-icon {
    color: #EF4444;
}

.solution-icon {
    color: var(--color-secondary);
}

.comparison-card h3 {
    text-align: center;
    font-size: 1.5rem;
    margin-bottom: var(--spacing-md);
}

.comparison-list {
    list-style: none;
}

.comparison-list li {
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--color-gray-200);
}

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

/* ========================================
   FEATURES SECTION
   ======================================== */
.features-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--color-gray-50) 0%, #EFF6FF 100%);
}

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

.feature-card {
    background: white;
    border-radius: var(--radius-xl);
    padding: var(--spacing-lg);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--color-gray-200);
    transition: all 0.3s ease;
    text-align: center;
}

.feature-card:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-2xl);
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto var(--spacing-md);
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.feature-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.feature-card h3 {
    font-size: 1.25rem;
    margin-bottom: var(--spacing-sm);
}

.feature-card p {
    color: var(--color-gray-600);
    margin-bottom: var(--spacing-md);
}

.feature-highlights {
    list-style: none;
    text-align: left;
}

.feature-highlights li {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: var(--color-gray-700);
    margin-bottom: 0.5rem;
}

.feature-highlights .check {
    color: var(--color-secondary);
    font-weight: bold;
    flex-shrink: 0;
}

.dashboard-mockup {
    margin-bottom: var(--spacing-2xl);
}

.mockup-frame {
    background: white;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-2xl);
    overflow: hidden;
    border: 8px solid var(--color-gray-900);
}

.mockup-frame img {
    width: 100%;
    height: auto;
    display: block;
}

.mockup-caption {
    text-align: center;
    color: var(--color-gray-500);
    font-size: 0.875rem;
    margin-top: var(--spacing-sm);
}

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

.feature-badge {
    background: white;
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    box-shadow: var(--shadow-md);
    display: flex;
    align-items: center;
    gap: 1rem;
    border: 1px solid var(--color-gray-200);
}

.feature-badge .icon {
    width: 3rem;
    height: 3rem;
    padding: 0.75rem;
    background: #DBEAFE;
    color: var(--color-primary);
    border-radius: 50%;
    flex-shrink: 0;
    stroke-width: 2;
}

.feature-badge span {
    font-weight: 600;
    color: var(--color-gray-900);
}

/* ========================================
   DIFFERENTIALS SECTION
   ======================================== */
.differentials-section {
    padding: 5rem 0;
    background: white;
}

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

.differential-card {
    background: linear-gradient(135deg, #EFF6FF 0%, #ECFDF5 100%);
    border-radius: var(--radius-xl);
    padding: var(--spacing-lg);
    box-shadow: var(--shadow-md);
    border: 2px solid var(--color-gray-200);
    transition: all 0.3s ease;
}

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

.differential-number {
    width: 3rem;
    height: 3rem;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: var(--spacing-md);
}

.differential-card h3 {
    font-size: 1.25rem;
    margin-bottom: var(--spacing-sm);
}

.differential-card p {
    color: var(--color-gray-600);
}

/* ========================================
   HOW IT WORKS SECTION
   ======================================== */
.how-it-works-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--color-gray-50) 0%, #ffffff 100%);
}

.steps-container {
    max-width: 900px;
    margin: 0 auto;
}

.step {
    display: flex;
    align-items: flex-start;
    gap: 2rem;
    margin-bottom: 2rem;
}

.step-number {
    width: 4rem;
    height: 4rem;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 700;
    flex-shrink: 0;
    box-shadow: var(--shadow-lg);
}

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

.step-content p {
    color: var(--color-gray-600);
    font-size: 1.125rem;
}

.step-connector {
    width: 2px;
    height: 3rem;
    background: linear-gradient(180deg, var(--color-primary) 0%, var(--color-secondary) 100%);
    margin-left: 2rem;
}

/* ========================================
   PRICING SECTION
   ======================================== */
.pricing-section {
    padding: 5rem 0;
    background: white;
}

.pricing-card {
    max-width: 800px;
    margin: 0 auto;
    background: linear-gradient(135deg, #EFF6FF 0%, #ECFDF5 100%);
    border-radius: var(--radius-2xl);
    padding: var(--spacing-xl);
    box-shadow: var(--shadow-2xl);
    border: 2px solid #BFDBFE;
    position: relative;
}

.popular-badge {
    position: absolute;
    top: -1rem;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 9999px;
    font-weight: 600;
    font-size: 0.875rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: var(--shadow-lg);
}

.popular-badge .icon {
    width: 1rem;
    height: 1rem;
}

.pricing-header {
    text-align: center;
    margin-bottom: var(--spacing-lg);
    margin-top: var(--spacing-md);
}

.pricing-header h3 {
    font-size: 1.5rem;
    margin-bottom: var(--spacing-md);
}

.price {
    margin-bottom: 0.5rem;
}

.price-value {
    font-size: 3.5rem;
    font-weight: 700;
}

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

.pricing-benefits {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin-bottom: var(--spacing-lg);
}

.benefit-item {
    background: white;
    border-radius: var(--radius-lg);
    padding: 1rem 1.5rem;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--color-gray-200);
    text-align: center;
}

.benefit-label {
    font-size: 0.875rem;
    color: var(--color-gray-600);
    margin-bottom: 0.25rem;
}

.benefit-value {
    font-weight: 700;
    font-size: 1.125rem;
    color: var(--color-gray-900);
}

.pricing-card .btn {
    width: 100%;
    margin-bottom: var(--spacing-sm);
}

.cta-note {
    text-align: center;
    font-size: 0.875rem;
    color: var(--color-gray-600);
    margin-bottom: var(--spacing-lg);
}

.features-included {
    background: white;
    border-radius: var(--radius-xl);
    padding: 1.5rem;
    box-shadow: var(--shadow-sm);
}

.features-included h4 {
    font-weight: 700;
    margin-bottom: var(--spacing-md);
    text-align: center;
}

.features-grid-2col {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 0.75rem;
}

.feature-item {
    font-size: 0.875rem;
    color: var(--color-gray-700);
}

.price-comparison {
    margin-top: var(--spacing-xl);
    text-align: center;
}

.comparison-title {
    color: var(--color-gray-600);
    margin-bottom: var(--spacing-md);
}

.comparison-items {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.comparison-item {
    padding: 1rem 1.5rem;
}

.comparison-item.highlight {
    background: #D1FAE5;
    border-radius: var(--radius-lg);
}

.competitor-name {
    color: var(--color-gray-500);
    font-size: 0.875rem;
    margin-bottom: 0.25rem;
}

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

.comparison-item.highlight .competitor-name {
    color: var(--color-secondary-dark);
    font-weight: 600;
}

.comparison-item.highlight .competitor-price {
    font-size: 2rem;
    color: var(--color-secondary);
}

/* ========================================
   FAQ SECTION
   ======================================== */
.faq-section {
    padding: 5rem 0;
    background: var(--color-gray-50);
}

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

.faq-item {
    background: white;
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    margin-bottom: 1rem;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--color-gray-200);
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: var(--shadow-lg);
}

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.faq-question h3 {
    font-size: 1.125rem;
    color: var(--color-gray-900);
}

.chevron {
    width: 1.5rem;
    height: 1.5rem;
    color: var(--color-gray-600);
    flex-shrink: 0;
    transition: transform 0.3s ease;
    stroke-width: 2;
}

.faq-item.active .chevron {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, margin 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--color-gray-200);
}

.faq-answer p {
    color: var(--color-gray-600);
    line-height: 1.7;
}

.contact-card {
    max-width: 600px;
    margin: var(--spacing-xl) auto 0;
    background: white;
    border-radius: var(--radius-xl);
    padding: var(--spacing-lg);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--color-gray-200);
    text-align: center;
}

.contact-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.contact-card p {
    color: var(--color-gray-600);
    margin-bottom: var(--spacing-md);
}

.contact-card a {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--color-primary);
    font-weight: 600;
    text-decoration: none;
}

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

.contact-card .icon {
    width: 1.25rem;
    height: 1.25rem;
}

/* ========================================
   CTA SECTION
   ======================================== */
.cta-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
    color: white;
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: var(--spacing-md);
}

.cta-content p {
    font-size: 1.25rem;
    margin-bottom: var(--spacing-lg);
    opacity: 0.9;
}

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

.cta-content .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.cta-subtext {
    margin-top: var(--spacing-md);
    font-size: 0.875rem;
    opacity: 0.8;
}

/* ========================================
   FOOTER
   ======================================== */
.footer {
    background: var(--color-gray-900);
    color: white;
    padding: 3rem 0 1rem;
}

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

.footer-col h3,
.footer-col h4 {
    margin-bottom: var(--spacing-md);
    font-size: 1.125rem;
}

.footer-col p {
    color: var(--color-gray-300);
    line-height: 1.7;
}

.footer-col ul {
    list-style: none;
}

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

.footer-col a {
    color: var(--color-gray-300);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-col a:hover {
    color: white;
}

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

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
}

.social-links svg {
    width: 20px;
    height: 20px;
}

.footer-bottom {
    border-top: 1px solid var(--color-gray-700);
    padding-top: 1.5rem;
    text-align: center;
    color: var(--color-gray-400);
    font-size: 0.875rem;
}

.footer-bottom p {
    margin-bottom: 0.5rem;
}

.footer-bottom a {
    color: var(--color-gray-400);
    text-decoration: none;
}

.footer-bottom a:hover {
    color: white;
}

/* ========================================
   MODAL
   ======================================== */
.modal {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 9999;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.modal.active {
    display: flex;
}

.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
}

.modal-content {
    position: relative;
    background: white;
    border-radius: var(--radius-2xl);
    box-shadow: var(--shadow-2xl);
    max-width: 700px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    animation: modalSlideIn 0.3s ease;
}

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

.modal-header {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
    color: white;
    padding: 2rem;
    border-radius: var(--radius-2xl) var(--radius-2xl) 0 0;
    position: relative;
}

.modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-close:hover {
    background: rgba(255, 255, 255, 0.3);
}

.modal-header h2 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.modal-header p {
    opacity: 0.9;
}

.modal-form {
    padding: 2rem;
}

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

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid var(--color-gray-300);
    border-radius: var(--radius-md);
    font-size: 1rem;
    font-family: var(--font-base);
    transition: all 0.3s ease;
}

.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-benefits {
    background: #D1FAE5;
    border-radius: var(--radius-lg);
    padding: 1rem;
    border: 1px solid #A7F3D0;
    margin-bottom: 1.5rem;
}

.form-benefits h4 {
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.form-benefits ul {
    list-style: none;
}

.form-benefits li {
    font-size: 0.875rem;
    color: var(--color-gray-700);
    margin-bottom: 0.25rem;
}

.form-disclaimer {
    font-size: 0.75rem;
    text-align: center;
    color: var(--color-gray-500);
    margin-top: 1rem;
}

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

.success-icon {
    width: 5rem;
    height: 5rem;
    background: var(--color-secondary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    margin: 0 auto var(--spacing-md);
}

.success-message h3 {
    font-size: 1.5rem;
    margin-bottom: var(--spacing-sm);
}

.success-message p {
    color: var(--color-gray-600);
}

/* ========================================
   ANIMATIONS
   ======================================== */
.fade-in {
    animation: fadeIn 0.8s ease;
}

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

.slide-up {
    animation: slideUp 0.8s ease;
}

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

.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }
.delay-3 { animation-delay: 0.3s; }
.delay-4 { animation-delay: 0.4s; }

.scroll-reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.scroll-reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ========================================
   RESPONSIVE
   ======================================== */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.125rem;
    }
    
    .price-value {
        font-size: 2.5rem;
    }
    
    .hero-cta {
        flex-direction: column;
        width: 100%;
    }
    
    .btn {
        width: 100%;
    }
    
    .trust-indicators {
        flex-direction: column;
        gap: 1rem;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
    }
    
    .comparison-grid,
    .features-grid,
    .differentials-grid {
        grid-template-columns: 1fr;
    }
    
    .step {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .step-connector {
        width: 3rem;
        height: 2px;
        margin-left: 0;
    }
    
    .pricing-benefits {
        flex-direction: column;
        gap: 1rem;
    }
    
    .features-grid-2col {
        grid-template-columns: 1fr;
    }
    
    .comparison-items {
        flex-direction: column;
        gap: 1rem;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-content h2 {
        font-size: 1.75rem;
    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    .features-grid,
    .differentials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
