/* CSS Variables */
:root {
    --font-size: 16px;
    --background: #ffffff;
    --foreground: #252525;
    --card: #ffffff;
    --card-foreground: #252525;
    --primary: #030213;
    --primary-foreground: #ffffff;
    --secondary: #f3f3f5;
    --secondary-foreground: #030213;
    --muted: #ececf0;
    --muted-foreground: #717182;
    --accent: #e9ebef;
    --accent-foreground: #030213;
    --border: rgba(0, 0, 0, 0.1);
    --input-background: #f3f3f5;
    --radius: 0.625rem;
    --font-weight-medium: 500;
    --font-weight-normal: 400;
}

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: var(--font-size);
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', sans-serif;
    background-color: var(--background);
    color: var(--foreground);
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
    animation: fadeIn 0.8s ease-out;
}

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

@keyframes blob {
    0% { transform: translate(0px, 0px) scale(1); }
    33% { transform: translate(30px, -50px) scale(1.1); }
    66% { transform: translate(-20px, 20px) scale(0.9); }
    100% { transform: translate(0px, 0px) scale(1); }
}

@keyframes float {
    0%, 100% { 
        transform: translateY(0px) scale(1);
        opacity: 0.3;
    }
    50% { 
        transform: translateY(-20px) scale(1.1);
        opacity: 0.6;
    }
}

@keyframes gradient-shift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

@keyframes gradient-text {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

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

@media (min-width: 640px) {
    .container { padding: 0 1.5rem; }
}

@media (min-width: 1024px) {
    .container { padding: 0 2rem; }
}

/* Header */
.header {
    position: sticky;
    top: 0;
    z-index: 50;
    width: 100%;
    border-bottom: 1px solid var(--border);
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
}

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

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

.logo-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem;
    border-radius: 0.5rem;
    /*background: linear-gradient(to bottom right, #7c3aed, #4f46e5);*/
    color: white;
}

.logo-text {
    font-size: 1.25rem;
    font-weight: 600;
}

.nav-desktop {
    display: none;
    align-items: center;
    gap: 1.5rem;
}

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

.nav-link {
    color:  #030213;
    text-decoration: none;
    transition: color 0.2s;
    font-family: 'Montserrat', sans-serif;
}

.nav-link:hover {
    color: var(--foreground);
}

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

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    border-radius: 0.5rem;
    font-size: 1rem;
    font-weight: 500;
    transition: all 0.2s;
    cursor: pointer;
    border: none;
    font-family: 'Montserrat', sans-serif;
    white-space: nowrap;
}

.btn-ghost {
    background: transparent;
    color: var(--foreground);
    padding: 0.5rem 1rem;
}

.btn-ghost:hover {
    background-color: var(--accent);
}

.btn-primary {
    background: linear-gradient(to right, #7c3aed, #4f46e5);
    color: white;
    padding: 0.5rem 1rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.btn-primary:hover {
    background: linear-gradient(to right, #6d28d9, #4338ca);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.btn-outline {
    background: transparent;
    border: 1px solid #cbd5e1;
    color: var(--foreground);
    padding: 0.75rem 1.5rem;
}

.btn-outline:hover {
    background-color: var(--secondary);
}

.btn-desktop {
    display: none;
}

@media (min-width: 640px) {
    .btn-desktop {
        display: inline-flex;
    }
}

.btn-half {
    flex: 1;
    height: 3rem;
}

.btn-full {
    width: 100%;
    padding: 0.75rem 1.5rem;
}

.menu-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem;
    border: none;
    background: transparent;
    cursor: pointer;
    color: var(--foreground);
    border-radius: 0.375rem;
    font-size: 2rem;
}

.menu-toggle:hover {
    background-color: var(--accent);
}

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

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: 300px;
    background-color: white;
    box-shadow: -4px 0 6px -1px rgba(0, 0, 0, 0.1);
    transform: translateX(100%);
    transition: transform 0.3s ease;
    z-index: 100;
}

.mobile-menu.active {
    transform: translateX(0);
}

@media (min-width: 640px) {
    .mobile-menu {
        width: 400px;
    }
}

.mobile-menu-content {
    padding: 2rem;
    margin-top: 2rem;
}

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

.mobile-nav-link {
    font-size: 1.125rem;
    padding: 0.75rem 1rem;
    border-radius: 0.5rem;
    text-decoration: none;
    color: var(--foreground);
    transition: background-color 0.2s;
}

.mobile-nav-link:hover {
    background-color: var(--accent);
}

.mobile-actions {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-top: 1rem;
    padding: 0 1rem;
}

/* Hero Section */
.hero {
    position: relative;
    overflow: hidden;
    background-color: white;
}

.hero-background {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom right, 
        rgba(243, 232, 255, 0.5), 
        rgba(237, 233, 254, 0.5), 
        rgba(250, 232, 255, 0.5));
    animation: gradient-shift 15s ease infinite;
    background-size: 200% 200%;
}

.gradient-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, 
        rgba(243, 232, 255, 0.25), 
        rgba(237, 233, 254, 0.25), 
        rgba(224, 231, 255, 0.25));
    animation: gradient-shift 15s ease infinite;
    background-size: 200% 200%;
}

.pattern-overlay {
    position: absolute;
    inset: 0;
    opacity: 0.15;
}

.pattern-svg {
    width: 100%;
    height: 100%;
}

.pattern-circle {
    color: #7c3aed;
}

.floating-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    animation: float 8s ease-in-out infinite;
}

.orb-1 {
    top: 5rem;
    left: 2.5rem;
    width: 18rem;
    height: 18rem;
    background: linear-gradient(to bottom right, rgba(168, 85, 247, 0.2), rgba(139, 92, 246, 0.2));
}

.orb-2 {
    bottom: 5rem;
    right: 2.5rem;
    width: 24rem;
    height: 24rem;
    background: linear-gradient(to bottom right, rgba(139, 92, 246, 0.2), rgba(217, 70, 239, 0.2));
    animation-delay: 2s;
}

.orb-3 {
    top: 10rem;
    right: 5rem;
    width: 16rem;
    height: 16rem;
    background: linear-gradient(to bottom right, rgba(217, 70, 239, 0.15), rgba(236, 72, 153, 0.15));
    animation-delay: 4s;
}

.fade-bottom {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 8rem;
    background: linear-gradient(to top, white, transparent);
    pointer-events: none;
}

.hero-container {
    position: relative;
    padding-top: 4rem;
    padding-bottom: 6rem;
}

@media (min-width: 640px) {
    .hero-container {
        padding-top: 5rem;
    }
}

@media (min-width: 1024px) {
    .hero-container {
        padding-top: 6rem;
    }
}

.hero-header {
    text-align: center;
    max-width: 64rem;
    margin: 0 auto 3rem;
    position: relative;
    z-index: 10;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    background-color: white;
    border: 1px solid #e2e8f0;
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    margin-bottom: 1.5rem;
}

.hero-badge svg {
    color: #2563eb;
}

.hero-badge span {
    font-size: 0.875rem;
    color: #334155;
}

.hero-title {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
    font-family: 'Montserrat', sans-serif;
}

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

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

.gradient-text {
    background: linear-gradient(to right, #2563eb, #4f46e5, #7c3aed);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradient-text 3s ease infinite;
    background-size: 200% auto;
}

.hero-description {
    font-size: 1rem;
    line-height: 1.75;
    color: #475569;
    max-width: 48rem;
    margin: 0 auto 2rem;
}

@media (min-width: 1024px) {
    .hero-description {
        font-size: 1.125rem;
    }
}

/* Trust Badges */
.trust-badges {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    padding-top: 1rem;
    max-width: 42rem;
    margin: 0 auto;
}

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

.trust-badge {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    border-radius: 1rem;
    background-color: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(4px);
    border: 1px solid;
    transition: transform 0.3s;
}

.trust-badge:hover {
    transform: scale(1.05);
}

.badge-blue {
    border-color: #bfdbfe;
}

.badge-amber {
    border-color: #fde68a;
}

.badge-green {
    border-color: #bbf7d0;
}

.trust-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 3rem;
    height: 3rem;
    border-radius: 0.75rem;
    color: white;
}

.icon-blue {
    background: linear-gradient(to bottom right, #3b82f6, #06b6d4);
}

.icon-amber {
    background: linear-gradient(to bottom right, #f59e0b, #ea580c);
}

.icon-green {
    background: linear-gradient(to bottom right, #10b981, #059669);
}

.trust-text {
    text-align: left;
}

.trust-number {
    font-size: 0.875rem;
    font-weight: 700;
}

.trust-label {
    font-size: 0.75rem;
    color: #475569;
}

/* Hero Cards */
.hero-cards {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    max-width: 96rem;
    margin: 0 auto;
    position: relative;
    z-index: 10;
}

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

.card {
    background-color: white;
    border: 1px solid #e2e8f0;
    border-radius: 1rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.form-card {
    padding: 1.5rem;
}

@media (min-width: 640px) {
    .form-card {
        padding: 2rem;
    }
}

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

.form-label {
    display: block;
    font-size: 0.875rem;
    font-weight: 500;
    color: #334155;
    margin-bottom: 0.625rem;
    font-family: 'Montserrat', sans-serif;
}

.form-input,
.form-select,
.form-textarea {
    width: 100%;
    height: 3.5rem;
    padding: 0 1.25rem;
    background-color: var(--input-background);
    border: 1px solid #cbd5e1;
    border-radius: 0.5rem;
    font-size: 1rem;
    font-family: 'Montserrat', sans-serif;
    transition: all 0.2s;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    outline: none;
    border-color: #3b82f6;
    ring: 2px solid rgba(59, 130, 246, 0.5);
}

.form-select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%23475569' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 3rem;
}

.form-textarea {
    height: auto;
    min-height: 7.5rem;
    padding: 1rem 1.25rem;
    resize: none;
}

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

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

.form-actions {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
    padding-top: 0.5rem;
}

/* Preview Card */
.preview-card {
    padding: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 400px;
}

@media (min-width: 640px) {
    .preview-card {
        padding: 2rem;
    }
}

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

.preview-icon {
    width: 4rem;
    height: 4rem;
    margin: 0 auto 1rem;
    border-radius: 1rem;
    background: linear-gradient(to bottom right, #f1f5f9, #e2e8f0);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #94a3b8;
}

.preview-text {
    color: #64748b;
}

/* Features Section */
.features {
    padding: 5rem 0;
}

@media (min-width: 640px) {
    .features {
        padding: 6rem 0;
    }
}
.section-header {
    text-align: center;
    margin: 0 auto 4rem;
}
.section-header:not(.features .section-header) {
    text-align: center;
    max-width: 48rem;
    margin: 0 auto 4rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    font-family: 'Montserrat', sans-serif;
}

@media (min-width: 640px) {
    .section-title {
        font-size: 2.25rem;
    }
}

.section-description {
    font-size: 1.125rem;
    color: var(--muted-foreground);
}
.features .section-header .section-description {
    font-size: 1rem;
}
.features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

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

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

.feature-card {
    position: relative;
    overflow: hidden;
    padding: 1.5rem;
    background-color: white;
    border: 1px solid #e2e8f0;
    border-radius: 1rem;
    transition: all 0.5s;
}

.feature-card:hover {
    transform: translateY(-0.5rem);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    border-color: #93c5fd;
}

.feature-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom right, 
        rgba(59, 130, 246, 0.05), 
        rgba(79, 70, 229, 0.05), 
        rgba(124, 58, 237, 0.05));
    opacity: 0;
    transition: opacity 0.5s;
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-icon {
    position: relative;
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    transition: all 0.5s;
}

.feature-card:hover .feature-icon {
    transform: scale(1.1) rotate(3deg);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.icon-yellow {
    background-color: #fef3c7;
    color: #d97706;
}

.icon-green {
    background-color: #dcfce7;
    color: #ffffff;
}

.icon-blue {
    background-color: #dbeafe;
    color: #ffffff;
}

.icon-purple {
    background-color: #f3e8ff;
    color: #9333ea;
}

.icon-pink {
    background-color: #fce7f3;
    color: #db2777;
}

.icon-indigo {
    background-color: #e0e7ff;
    color: #4f46e5;
}

.feature-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    font-family: 'Montserrat', sans-serif;
    transition: color 0.3s;
}

.feature-card:hover .feature-title {
    color: #2563eb;
}

.feature-description {
    color: var(--muted-foreground);
    transition: color 0.3s;
}

.feature-card:hover .feature-description {
    color: var(--foreground);
}

/* How It Works Section */
.how-it-works {
    padding: 5rem 0;
    background-color: rgba(236, 236, 240, 0.3);
}

@media (min-width: 640px) {
    .how-it-works {
        padding: 6rem 0;
    }
}

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

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

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

.step {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.step-icon {
    position: relative;
    width: 5rem;
    height: 5rem;
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    margin-bottom: 1rem;
    color: white;
}

.icon-gradient-1 {
    background: linear-gradient(to bottom right, #7c3aed, #9333ea);
}

.icon-gradient-2 {
    background: linear-gradient(to bottom right, #9333ea, #4f46e5);
}

.icon-gradient-3 {
    background: linear-gradient(to bottom right, #4f46e5, #2563eb);
}

.icon-gradient-4 {
    background: linear-gradient(to bottom right, #2563eb, #06b6d4);
}

.step-number {
    position: absolute;
    top: -0.75rem;
    right: -0.75rem;
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    background-color: white;
    border: 2px solid #7c3aed;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--foreground);
}

.step-title {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.step-description {
    font-size: 0.875rem;
    color: var(--muted-foreground);
}

/* FAQ Section */
.faq {
    padding: 5rem 0;
}

@media (min-width: 640px) {
    .faq {
        padding: 6rem 0;
    }
}

.faq-content {
    max-width: 48rem;
    margin: 0 auto;
}

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

.accordion-item {
    border: 1px solid var(--border);
    border-radius: 0.5rem;
    background-color: var(--card);
    padding: 0 1.5rem;
}

.accordion-trigger {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 1.25rem 0;
    border: none;
    background: transparent;
    font-size: 1.125rem;
    font-weight: 500;
    text-align: left;
    cursor: pointer;
    font-family: 'Montserrat', sans-serif;
    color: var(--foreground);
}

.accordion-trigger:hover {
    color: #2563eb;
}

.accordion-icon {
    flex-shrink: 0;
    transition: transform 0.3s;
}

.accordion-item.active .accordion-icon {
    transform: rotate(180deg);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    color: var(--muted-foreground);
}

.accordion-item.active .accordion-content {
    max-height: 500px;
    padding-bottom: 1.25rem;
}

/* Benefits Section */
.benefits-section {
    padding: 5rem 0;
    background: linear-gradient(to bottom, #0f172a, #5b21b6 50%, #0f172a);
    color: white;
}

@media (min-width: 640px) {
    .benefits-section {
        padding: 6rem 0;
    }
}

.benefits-section .section-header {
    max-width: 76rem;
    margin-bottom: 4rem;
}

.benefits-section .section-title {
    color: white;
}

.benefits-section .section-description {
    color: #e2e8f0;
    font-size: 1rem;
}

.benefits-link {
    color: #fff;
    text-decoration: underline;
    transition: color 0.3s;
}

.benefits-link:hover {
    color: #c4b5fd;
}

.benefits-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    max-width: 80rem;
    margin: 0 auto 3rem;
}

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

.benefit-card {
    position: relative;
    overflow: hidden;
    padding: 1.5rem;
    background: rgba(15, 23, 42, 0.8);
    backdrop-filter: blur(8px);
    border: 1px solid #334155;
    border-radius: 1rem;
    transition: all 0.5s;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.3);
}

.benefit-card:hover {
    transform: translateY(-0.5rem);
    box-shadow: 0 20px 25px -5px rgba(139, 92, 246, 0.2);
    border-color: #8b5cf6;
}

.benefit-gradient-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom right,
    rgba(59, 130, 246, 0.1),
    rgba(99, 102, 241, 0.1),
    rgba(139, 92, 246, 0.1));
    opacity: 0;
    transition: opacity 0.5s;
}

.benefit-card:hover .benefit-gradient-overlay {
    opacity: 1;
}

.benefit-content {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.benefit-icon {
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: all 0.5s;
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.2);
}

.benefit-card:hover .benefit-icon {
    transform: scale(1.1) rotate(3deg);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.3);
}

.benefit-icon.icon-blue {
    background: linear-gradient(to bottom right, #3b82f6, #06b6d4);
}

.benefit-icon.icon-indigo {
    background: linear-gradient(to bottom right, #6366f1, #4f46e5);
}

.benefit-icon.icon-violet {
    background: linear-gradient(to bottom right, #8b5cf6, #7c3aed);
}

.benefit-icon.icon-purple {
    background: linear-gradient(to bottom right, #a855f7, #9333ea);
}

.benefit-text {
    flex: 1;
}

.benefit-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    font-family: 'Montserrat', sans-serif;
    color: white;
    transition: color 0.3s;
}

.benefit-card:hover .benefit-title {
    color: #a78bfa;
}

.benefit-description {
    color: #cbd5e1;
    transition: color 0.3s;
}

.benefit-card:hover .benefit-description {
    color: #f1f5f9;
}

.benefits-footer {
    text-align: center;
    max-width: 64rem;
    margin: 0 auto;
}

.benefits-footer .section-description {
    font-size: 1rem;
}

/* Footer */
.footer {
    border-top: 1px solid var(--border);
    background-color: rgba(236, 236, 240, 0.3);
}

.footer > .container {
    padding-top: 3rem;
    padding-bottom: 3rem;
}

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

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

.footer-brand {
    grid-column: span 2;
}

@media (min-width: 768px) {
    .footer-brand {
        grid-column: span 1;
    }
}

.footer-brand .logo {
    margin-bottom: 1rem;
}

.footer-description {
    font-size: 0.875rem;
    color: var(--muted-foreground);
}

.footer-title {
    margin-bottom: 1rem;
    font-weight: 600;
}

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

.footer-list a {
    font-size: 0.875rem;
    color: var(--muted-foreground);
    text-decoration: none;
    transition: color 0.2s;
}

.footer-list a:hover {
    color: var(--foreground);
}

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

.footer-bottom p {
    font-size: 0.875rem;
    color: var(--muted-foreground);
}

a {
    text-decoration: none;
}

.section-inner .container{
    margin-top: 6rem;
    margin-bottom: 6rem;
}
.section-inner .container h1, .section-inner .container h2{
    margin-bottom: 1rem;
}

.section-inner .container p, .section-inner .container ul li, .section-inner .container ol li  {
    color: #717182;
}

.section-inner .container #p--text ul, #p--text ul, #p--text ol {
    padding-left: 40px!important;
}
#p--text p, #p--text ol, #p--text ul {
    margin-bottom: 16px;
}
#p--text ol li, #p--text ul li {
    margin: 0 !important;
    margin-bottom: 8px !important;
    padding: 0 !important;
    list-style: inherit !important;
}
#p--text ol {
    padding-left: 40px!important;
}

.adv-ai-form-input-err {
    color: red;
}