:root {
    --blue-50: #eff6ff;
    --blue-100: #dbeafe;
    --blue-500: #3b82f6;
    --blue-600: #2563eb;
    --blue-700: #1d4ed8;
    --slate-50: #f8fafc;
    --slate-100: #f1f5f9;
    --slate-200: #e2e8f0;
    --slate-300: #cbd5e1;
    --slate-400: #94a3b8;
    --slate-500: #64748b;
    --slate-600: #475569;
    --slate-700: #334155;
    --slate-800: #1e293b;
    --slate-900: #0f172a;
    --emerald-400: #34d399;
    --emerald-500: #10b981;
    --emerald-600: #059669;
    --amber-500: #f59e0b;
    --amber-600: #d97706;
}

html {
    scroll-behavior: smooth;
}

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

body {
    font-family: 'Inter', sans-serif;
    background-color: white;
    color: var(--slate-900);
    line-height: 1.5;
}

.font-mono {
    font-family: 'JetBrains Mono', monospace;
}

/* Navbar Styles */
.navbar {
    border-bottom: 1px solid var(--slate-100);
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar-container {
    max-width: 80rem;
    margin: 0 auto;
    padding: 0 1rem;
    height: 4.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
}

.navbar-logo {
    background: linear-gradient(135deg, var(--blue-600), var(--blue-700));
    padding: 0.5rem;
    border-radius: 0.5rem;
}

.navbar-logo-icon {
    width: 1.5rem;
    height: 1.5rem;
    color: white;
}

.navbar-brand-text {
    font-weight: bold;
    font-size: 1.25rem;
    letter-spacing: -0.025em;
    color: var(--slate-900);
}

.navbar-brand-text span {
    color: var(--blue-600);
}

.navbar-links {
    display: none;
    align-items: center;
    gap: 2rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--slate-600);
}

@media (min-width: 768px) {
    .navbar-links {
        display: flex;
    }
}

.navbar-link {
    color: var(--slate-600);
    text-decoration: none;
    transition: color 0.2s;
}

.navbar-link:hover {
    color: var(--blue-600);
}

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

.navbar-login-btn {
    background: #000000;
    color: white;
    border: none;
    font-size: 0.875rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    padding: 0.5rem 0.75rem;
    border-radius: 0.5rem;
    box-shadow: 0 4px 6px -1px rgba(37, 99, 235, 0.1);
}

.navbar-login-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 15px -3px rgba(37, 99, 235, 0.1);
}

.navbar-signup-btn {
    background: linear-gradient(135deg, var(--blue-600), var(--blue-700));
    color: white;
    padding: 0.625rem 1.25rem;
    border-radius: 0.5rem;
    border: none;
    font-size: 0.875rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    box-shadow: 0 4px 6px -1px rgba(37, 99, 235, 0.1);
}

.navbar-signup-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 15px -3px rgba(37, 99, 235, 0.1);
}

/* Registration Container */
.registration-section {
    min-height: calc(100vh - 16rem);
    padding: 4rem 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--slate-50), var(--blue-50));
}

.registration-container {
    max-width: 28rem;
    width: 100%;
}

.registration-card {
    background-color: white;
    border-radius: 1.5rem;
    padding: 3rem;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    border: 1px solid var(--slate-200);
}

.registration-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.registration-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.registration-logo-icon {
    background: linear-gradient(135deg, var(--blue-600), var(--blue-700));
    padding: 0.75rem;
    border-radius: 0.75rem;
    color: white;
}

.registration-title {
    font-size: 1.875rem;
    font-weight: 800;
    color: var(--slate-900);
    margin-bottom: 0.75rem;
}

.registration-subtitle {
    color: var(--slate-600);
    font-size: 1rem;
}

.registration-form {
    margin-bottom: 2rem;
}

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

.form-label {
    display: block;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--slate-700);
    margin-bottom: 0.5rem;
}

.form-input {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 1px solid var(--slate-300);
    border-radius: 0.5rem;
    font-size: 1rem;
    font-family: 'Inter', sans-serif;
    transition: all 0.2s;
}

.form-input:focus {
    outline: none;
    border-color: var(--blue-500);
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.password-wrapper {
    position: relative;
}

.toggle-password {
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: var(--slate-500);
    cursor: pointer;
}

.form-select {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 1px solid var(--slate-300);
    border-radius: 0.5rem;
    font-size: 1rem;
    font-family: 'Inter', sans-serif;
    background-color: white;
    cursor: pointer;
}

.form-select:focus {
    outline: none;
    border-color: var(--blue-500);
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.form-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.form-checkbox input[type="checkbox"] {
    margin-top: 0.25rem;
    accent-color: var(--blue-600);
}

.form-checkbox-label {
    font-size: 0.875rem;
    color: var(--slate-600);
    line-height: 1.5;
}

.form-checkbox-label a {
    color: var(--blue-600);
    text-decoration: none;
    font-weight: 500;
}

.form-checkbox-label a:hover {
    text-decoration: underline;
}

.form-submit {
    width: 100%;
    padding: 1rem;
    background: linear-gradient(135deg, var(--blue-600), var(--blue-700));
    color: white;
    border: none;
    border-radius: 0.5rem;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    margin-bottom: 1.5rem;
}

.form-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 15px -3px rgba(37, 99, 235, 0.3);
}

.form-submit:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.form-divider {
    display: flex;
    align-items: center;
    margin: 2rem 0;
    color: var(--slate-500);
    font-size: 0.875rem;
}

.form-divider::before,
.form-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background-color: var(--slate-300);
}

.form-divider span {
    padding: 0 1rem;
}

.social-login {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-bottom: 2rem;
}

.social-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 0.875rem;
    border: 1px solid var(--slate-300);
    border-radius: 0.5rem;
    background-color: white;
    color: var(--slate-700);
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
}

.social-btn:hover {
    border-color: var(--slate-400);
    background-color: var(--slate-50);
}

.registration-footer {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--slate-200);
}

.registration-footer p {
    color: var(--slate-600);
    font-size: 0.875rem;
}

.registration-footer a {
    color: var(--blue-600);
    font-weight: 600;
    text-decoration: none;
}

.registration-footer a:hover {
    text-decoration: underline;
}

.form-success {
    display: none;
    padding: 1.5rem;
    background-color: var(--emerald-50);
    border: 1px solid var(--emerald-200);
    border-radius: 0.5rem;
    color: var(--emerald-700);
    text-align: center;
    margin-bottom: 1.5rem;
}

.form-success.show {
    display: block;
    animation: fadeIn 0.5s ease-out;
}

.form-error {
    color: #dc2626;
    font-size: 0.875rem;
    margin-top: 0.5rem;
    display: none;
}

.form-error.show {
    display: block;
}

/* Footer */
.footer {
    background-color: var(--slate-900);
    color: white;
    padding: 4rem 1rem 2rem;
}

.footer-container {
    max-width: 80rem;
    margin: 0 auto;
}

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

@media (min-width: 640px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .footer-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

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

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

.footer-logo-icon {
    background-color: white;
    padding: 0.5rem;
    border-radius: 0.5rem;
    color: var(--blue-600);
}

.footer-brand-text {
    font-weight: 700;
    font-size: 1.25rem;
}

.footer-description {
    opacity: 0.7;
    line-height: 1.7;
}

.footer-heading {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 1.25rem;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-link {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.2s;
}

.footer-link:hover {
    color: white;
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 1rem;
    color: rgba(255, 255, 255, 0.7);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.875rem;
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Utility Classes */
.hidden {
    display: none;
}

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

.mb-4 {
    margin-bottom: 1rem;
}

.mb-8 {
    margin-bottom: 2rem;
}

.w-full {
    width: 100%;
}

/* Mobile Menu */
.mobile-menu-btn {
    display: block;
    background: none;
    border: none;
    color: var(--slate-700);
    font-size: 1.5rem;
    cursor: pointer;
    z-index: 101;
}

@media (min-width: 768px) {
    .mobile-menu-btn {
        display: none;
    }
}

.mobile-menu {
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    background-color: white;
    padding: 1rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    transform: translateY(-120%);
    opacity: 0;
    transition: transform .3s ease, opacity .3s ease;
    z-index: 100;

}

.mobile-menu.active {
    transform: translateY(0);
    opacity: 1;
}

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

.mobile-link {
    padding: 0.75rem 1rem;
    color: var(--slate-700);
    text-decoration: none;
    border-radius: 0.5rem;
    transition: background-color 0.2s;
}

.mobile-link:hover {
    background-color: var(--slate-50);
    color: var(--blue-600);
}

.mobile-cta {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--slate-200);
}

/* Hero Section */
.hero {
    padding-top: 6rem;
    padding-bottom: 5rem;
    padding-left: 1rem;
    padding-right: 1rem;
    max-width: 80rem;
    margin: 0 auto;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    background: radial-gradient(circle at 20% 80%, rgba(37, 99, 235, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(16, 185, 129, 0.05) 0%, transparent 50%);
    z-index: -1;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1.25rem;
    border-radius: 9999px;
    background-color: var(--blue-50);
    color: var(--blue-700);
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 2rem;
    border: 1px solid var(--blue-100);
    animation: pulse 2s infinite;
}

.hero-badge-dot {
    width: 0.5rem;
    height: 0.5rem;
    background-color: var(--emerald-500);
    border-radius: 50%;
    animation: ping 1.5s infinite;
}

.hero-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--slate-900);
    letter-spacing: -0.025em;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

@media (min-width: 768px) {
    .hero-title {
        font-size: 3.75rem;
    }
}

.hero-title-highlight {
    background: linear-gradient(135deg, var(--blue-600), var(--emerald-600));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 1.25rem;
    color: var(--slate-600);
    max-width: 48rem;
    margin: 0 auto 3rem auto;
    line-height: 1.7;
}

.hero-cta {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
    justify-content: center;
    margin-bottom: 4rem;
}

@media (min-width: 640px) {
    .hero-cta {
        flex-direction: row;
    }
}

.hero-primary-btn {
    background: linear-gradient(135deg, var(--blue-600), var(--blue-700));
    color: white;
    padding: 1rem 2.5rem;
    border-radius: 0.75rem;
    border: none;
    font-size: 1.125rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s;
    box-shadow: 0 10px 25px -5px rgba(37, 99, 235, 0.3);
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.hero-primary-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 20px 25px -5px rgba(37, 99, 235, 0.3);
}

.hero-secondary-btn {
    background-color: white;
    color: var(--slate-700);
    padding: 1rem 2.5rem;
    border-radius: 0.75rem;
    border: 2px solid var(--slate-200);
    font-size: 1.125rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
}

.hero-secondary-btn:hover {
    border-color: var(--blue-300);
    color: var(--blue-600);
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 48rem;
    margin: 0 auto;
}

@media (min-width: 640px) {
    .hero-stats {
        grid-template-columns: repeat(4, 1fr);
    }
}

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

.stat-number {
    font-size: 2rem;
    font-weight: 800;
    color: var(--blue-600);
    margin-bottom: 0.25rem;
}

.stat-label {
    font-size: 0.875rem;
    color: var(--slate-600);
    font-weight: 500;
}

/* Features Section */
.features-section {
    padding: 6rem 1rem;
    background-color: var(--slate-50);
}

.section-header {
    text-align: center;
    max-width: 48rem;
    margin: 0 auto 4rem auto;
}

.section-subtitle {
    font-size: 1rem;
    font-weight: 600;
    color: var(--blue-600);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1rem;
}

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

.section-description {
    font-size: 1.125rem;
    color: var(--slate-600);
    line-height: 1.7;
}

.features-container {
    max-width: 80rem;
    margin: 0 auto;
}

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

@media (min-width: 768px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.feature-card {
    background-color: white;
    padding: 2rem;
    border-radius: 1rem;
    border: 1px solid var(--slate-200);
    transition: all 0.3s;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    border-color: var(--blue-200);
}

.feature-icon {
    width: 3.5rem;
    height: 3.5rem;
    background: linear-gradient(135deg, var(--blue-50), var(--blue-100));
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--blue-600);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

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

.feature-description {
    color: var(--slate-600);
    line-height: 1.7;
    flex-grow: 1;
}


/* Pricing Preview Section */
.pricing-section {
    padding: 6rem 1rem;
    background-color: white;
}

.pricing-container {
    max-width: 64rem;
    margin: 0 auto;
    background-color: white;
    border-radius: 1.5rem;
    border: 1px solid var(--slate-200);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.pricing-header {
    padding: 3rem 2rem;
    text-align: center;
    background: linear-gradient(135deg, var(--blue-50), var(--emerald-50));
    border-bottom: 1px solid var(--slate-200);
}

.pricing-table {
    overflow-x: auto;
}

.price-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 600px;
}

.price-table thead {
    background-color: var(--slate-50);
}

.price-table th {
    padding: 1.5rem 1rem;
    font-weight: 600;
    color: var(--slate-700);
    text-align: left;
    border-bottom: 2px solid var(--slate-200);
}

.price-table th:first-child {
    padding-left: 2rem;
}

.price-table th:last-child {
    padding-right: 2rem;
}

.price-table td {
    padding: 1.25rem 1rem;
    border-bottom: 1px solid var(--slate-100);
}

.price-table td:first-child {
    padding-left: 2rem;
    font-weight: 500;
    color: var(--slate-900);
}

.price-table td:last-child {
    padding-right: 2rem;
}

.price-table tr:last-child td {
    border-bottom: none;
}

.price-value {
    font-family: 'JetBrains Mono', monospace;
    font-weight: 600;
    color: var(--blue-600);
}

.price-change {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    padding: 0.25rem 0.5rem;
    border-radius: 0.375rem;
    font-size: 0.75rem;
    font-weight: 600;
}

.price-change.positive {
    background-color: var(--emerald-50);
    color: var(--emerald-700);
}

.price-change.negative {
    background-color: rgba(239, 68, 68, 0.1);
    color: #dc2626;
}

.pricing-cta {
    padding: 2rem;
    text-align: center;
    background-color: var(--slate-50);
    border-top: 1px solid var(--slate-200);
}

/* Contact Section */
.contact-section {
    padding: 6rem 1rem;
    background: linear-gradient(135deg, var(--slate-50), var(--blue-50));
}

.contact-container {
    max-width: 80rem;
    margin: 0 auto;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
}

@media (min-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.contact-info {
    background-color: white;
    padding: 3rem;
    border-radius: 1rem;
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
}

.contact-title {
    font-size: 1.875rem;
    font-weight: 700;
    color: var(--slate-900);
    margin-bottom: 1.5rem;
}

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

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.contact-method {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.contact-method-icon {
    width: 3rem;
    height: 3rem;
    background-color: var(--blue-50);
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--blue-600);
    flex-shrink: 0;
}

.contact-method-content h4 {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--slate-900);
    margin-bottom: 0.25rem;
}

.contact-method-content p {
    color: var(--slate-600);
    margin-bottom: 0.25rem;
}

.contact-method-link {
    color: var(--blue-600);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s;
}

.contact-method-link:hover {
    color: var(--blue-700);
    text-decoration: underline;
}

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

.social-link {
    width: 2.5rem;
    height: 2.5rem;
    background-color: var(--slate-100);
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--slate-700);
    transition: all 0.2s;
}

.social-link:hover {
    background-color: var(--blue-100);
    color: var(--blue-600);
    transform: translateY(-2px);
}

.contact-form-container {
    background-color: white;
    padding: 3rem;
    border-radius: 1rem;
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
}

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

.form-label {
    display: block;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--slate-700);
    margin-bottom: 0.5rem;
}

.form-input,
.form-textarea {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 1px solid var(--slate-300);
    border-radius: 0.5rem;
    font-size: 1rem;
    font-family: 'Inter', sans-serif;
    transition: all 0.2s;
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--blue-500);
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.form-textarea {
    min-height: 10rem;
    resize: vertical;
}

.form-submit {
    width: 100%;
    padding: 1rem;
    background: linear-gradient(135deg, var(--blue-600), var(--blue-700));
    color: white;
    border: none;
    border-radius: 0.5rem;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
}

.form-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 15px -3px rgba(37, 99, 235, 0.3);
}

.form-success {
    display: none;
    padding: 1.5rem;
    background-color: var(--emerald-50);
    border: 1px solid var(--emerald-200);
    border-radius: 0.5rem;
    color: var(--emerald-700);
    text-align: center;
    margin-top: 1.5rem;
}

/* CTA Section */
.cta-section {
    padding: 6rem 1rem;
    background: linear-gradient(135deg, var(--blue-600), var(--blue-700));
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    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.05'%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");
}

.cta-container {
    max-width: 48rem;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.cta-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

@media (min-width: 768px) {
    .cta-title {
        font-size: 3rem;
    }
}

.cta-description {
    font-size: 1.25rem;
    opacity: 0.9;
    margin-bottom: 2.5rem;
    line-height: 1.7;
}

.cta-button {
    background-color: white;
    color: var(--blue-600);
    padding: 1rem 3rem;
    border-radius: 0.75rem;
    border: none;
    font-size: 1.125rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s;
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.2);
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.2);
}








/* ===== ESTILOS DA SE��O DE ASSINATURAS ===== */
.subscription-section {
    padding: 6rem 1rem;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    position: relative;
    overflow: hidden;
}

.subscription-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--blue-600), var(--emerald-500));
}

.subscription-container {
    max-width: 1200px;
    margin: 0 auto 4rem;
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 768px) {
    .subscription-container {
        grid-template-columns: repeat(3, 1fr);
        align-items: stretch;
    }
}

.subscription-card {
    background: white;
    border-radius: 1.5rem;
    padding: 2.5rem;
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.05);
    border: 2px solid var(--slate-200);
    position: relative;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.subscription-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.1);
}

.subscription-card.popular {
    border-color: var(--blue-500);
    box-shadow: 0 15px 30px -5px rgba(37, 99, 235, 0.1);
}

.subscription-card.highlighted {
    border-color: var(--emerald-500);
    box-shadow: 0 15px 30px -5px rgba(16, 185, 129, 0.1);
    transform: scale(1.02);
}

.subscription-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--blue-600), var(--blue-700));
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    white-space: nowrap;
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.2);
}

.subscription-card.popular .subscription-badge {
    background: linear-gradient(135deg, var(--amber-500), var(--amber-600));
}

.subscription-card.highlighted .subscription-badge {
    background: linear-gradient(135deg, var(--emerald-500), var(--emerald-600));
}

.subscription-header {
    text-align: center;
    padding-bottom: 2rem;
    border-bottom: 2px solid var(--slate-100);
    margin-bottom: 2rem;
}

.subscription-title {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--slate-900);
    margin-bottom: 1rem;
}

.subscription-price {
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--blue-700);
    line-height: 1;
    margin-bottom: 0.5rem;
    font-family: 'JetBrains Mono', monospace;
}

.subscription-card.popular .subscription-price {
    color: var(--amber-600);
}

.subscription-card.highlighted .subscription-price {
    color: var(--emerald-700);
}

.subscription-currency {
    font-size: 1.5rem;
    color: var(--slate-600);
    font-weight: 600;
}

.subscription-period {
    font-size: 1rem;
    color: var(--slate-500);
    margin-bottom: 0.5rem;
}

.subscription-effective {
    font-size: 0.95rem;
    color: var(--slate-700);
    margin-bottom: 0.5rem;
}

.subscription-savings {
    font-size: 0.9rem;
    padding: 0.5rem 1rem;
    background-color: var(--blue-50);
    color: var(--blue-700);
    border-radius: 0.5rem;
    display: inline-block;
}

.subscription-card.popular .subscription-savings {
    background-color: var(--amber-50);
    color: var(--amber-700);
}

.subscription-savings.highlight {
    background-color: var(--emerald-50);
    color: var(--emerald-700);
    font-weight: 700;
}

.subscription-features {
    flex-grow: 1;
    margin-bottom: 2.5rem;
}

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

.subscription-features li {
    padding: 0.75rem 0;
    color: var(--slate-700);
    border-bottom: 1px dashed var(--slate-100);
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

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

.subscription-features li strong {
    color: var(--slate-900);
    display: block;
    margin-bottom: 0.5rem;
    font-size: 1.05rem;
}

.subscription-features i {
    color: var(--emerald-500);
    margin-top: 0.25rem;
    flex-shrink: 0;
}

.subscription-card.popular .subscription-features i {
    color: var(--amber-500);
}

.subscription-card.highlighted .subscription-features i {
    color: var(--emerald-500);
}

.subscription-btn {
    width: 100%;
    padding: 1.25rem;
    border-radius: 1rem;
    font-size: 1.125rem;
    font-weight: 700;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    margin-top: auto;
}

.subscription-btn.secondary {
    background: white;
    color: var(--slate-800);
    border: 2px solid var(--slate-300);
}

.subscription-btn.secondary:hover {
    background: var(--slate-50);
    border-color: var(--slate-400);
    transform: translateY(-2px);
}

.subscription-btn.primary {
    background: linear-gradient(135deg, var(--blue-600), var(--blue-700));
    color: white;
    box-shadow: 0 8px 20px rgba(37, 99, 235, 0.2);
}

.subscription-btn.primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 25px rgba(37, 99, 235, 0.3);
}

.subscription-btn.highlight-btn {
    background: linear-gradient(135deg, var(--emerald-500), var(--emerald-600));
    color: white;
    box-shadow: 0 8px 20px rgba(16, 185, 129, 0.2);
}

.subscription-btn.highlight-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 25px rgba(16, 185, 129, 0.3);
}

/* Notas da Assinatura */
.subscription-notes {
    max-width: 1200px;
    margin: 0 auto 4rem;
}

.notes-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    background: white;
    padding: 2rem;
    border-radius: 1.5rem;
    box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.05);
    border: 1px solid var(--slate-200);
}

@media (min-width: 768px) {
    .notes-container {
        grid-template-columns: repeat(3, 1fr);
    }
}

.note-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.note-item i {
    color: var(--blue-500);
    font-size: 1.5rem;
    margin-top: 0.25rem;
    flex-shrink: 0;
}

.note-item p {
    color: var(--slate-700);
    line-height: 1.6;
}

.note-item strong {
    color: var(--slate-900);
}

/* CTA Final */
.subscription-cta {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.cta-container {
    background: linear-gradient(135deg, var(--slate-900), var(--slate-800));
    color: white;
    padding: 4rem;
    border-radius: 2rem;
    position: relative;
    overflow: hidden;
}

.cta-container::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at 30% 30%, rgba(37, 99, 235, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 70% 70%, rgba(16, 185, 129, 0.1) 0%, transparent 50%);
}

.cta-title {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.cta-description {
    font-size: 1.125rem;
    opacity: 0.9;
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-button {
    background: white;
    color: var(--slate-900);
    padding: 1.25rem 3rem;
    border-radius: 1rem;
    border: none;
    font-size: 1.125rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}



/* Contact Section */
.contact-section {
    padding: 6rem 1rem;
    background: linear-gradient(135deg, var(--slate-50), var(--blue-50));
}

.contact-container {
    max-width: 80rem;
    margin: 0 auto;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
}

@media (min-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.contact-info {
    background-color: white;
    padding: 3rem;
    border-radius: 1rem;
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
}

.contact-title {
    font-size: 1.875rem;
    font-weight: 700;
    color: var(--slate-900);
    margin-bottom: 1.5rem;
}

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

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.contact-method {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.contact-method-icon {
    width: 3rem;
    height: 3rem;
    background-color: var(--blue-50);
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--blue-600);
    flex-shrink: 0;
}

.contact-method-content h4 {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--slate-900);
    margin-bottom: 0.25rem;
}

.contact-method-content p {
    color: var(--slate-600);
    margin-bottom: 0.25rem;
}

.contact-method-link {
    color: var(--blue-600);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s;
}

.contact-method-link:hover {
    color: var(--blue-700);
    text-decoration: underline;
}

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

.social-link {
    width: 2.5rem;
    height: 2.5rem;
    background-color: var(--slate-100);
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--slate-700);
    transition: all 0.2s;
}

.social-link:hover {
    background-color: var(--blue-100);
    color: var(--blue-600);
    transform: translateY(-2px);
}

.contact-form-container {
    background-color: white;
    padding: 3rem;
    border-radius: 1rem;
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
}

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

.form-label {
    display: block;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--slate-700);
    margin-bottom: 0.5rem;
}

.form-input,
.form-textarea {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 1px solid var(--slate-300);
    border-radius: 0.5rem;
    font-size: 1rem;
    font-family: 'Inter', sans-serif;
    transition: all 0.2s;
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--blue-500);
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.form-textarea {
    min-height: 10rem;
    resize: vertical;
}

.form-submit {
    width: 100%;
    padding: 1rem;
    background: linear-gradient(135deg, var(--blue-600), var(--blue-700));
    color: white;
    border: none;
    border-radius: 0.5rem;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
}

.form-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 15px -3px rgba(37, 99, 235, 0.3);
}

.form-success {
    display: none;
    padding: 1.5rem;
    background-color: var(--emerald-50);
    border: 1px solid var(--emerald-200);
    border-radius: 0.5rem;
    color: var(--emerald-700);
    text-align: center;
    margin-top: 1.5rem;
}
