/* Global Variables & Colors */
:root {
    --bg-main: #09090b;
    --bg-card: rgba(255, 255, 255, 0.03);
    --bg-card-hover: rgba(255, 255, 255, 0.06);
    --border-color: rgba(255, 255, 255, 0.08);
    --border-hover: rgba(255, 255, 255, 0.16);
    
    --text-primary: #f4f4f5;
    --text-secondary: #a1a1aa;
    --text-muted: #71717a;
    
    --primary: #8b5cf6; /* Violet */
    --primary-hover: #7c3aed;
    --secondary: #d946ef; /* Fuchsia */
    --accent-cyan: #06b6d4; /* Cyan */
    --accent-green: #10b981; /* Emerald */
    
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

body {
    background-color: var(--bg-main);
    color: var(--text-primary);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Typography & Utility Classes */
h1, h2, h3, h4 {
    font-family: var(--font-heading);
    font-weight: 700;
    letter-spacing: -0.02em;
}

.gradient-text {
    background: linear-gradient(135deg, var(--primary), var(--secondary) 50%, var(--accent-cyan));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.font-bold {
    font-weight: 800;
}

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

/* Sticky Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    background: rgba(9, 9, 11, 0.8);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border-color);
    padding: 1rem 0;
}

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

.logo {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text-primary);
    text-decoration: none;
    letter-spacing: -0.04em;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.badge-live {
    background: rgba(239, 68, 68, 0.15);
    color: #ef4444;
    padding: 0.35rem 0.75rem;
    border-radius: 9999px;
    font-size: 0.8rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    border: 1px solid rgba(239, 68, 68, 0.2);
}

.dot {
    width: 8px;
    height: 8px;
    background-color: #ef4444;
    border-radius: 50%;
    display: inline-block;
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0% { transform: scale(0.9); opacity: 1; }
    50% { transform: scale(1.3); opacity: 0.4; }
    100% { transform: scale(0.9); opacity: 1; }
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-weight: 600;
    text-decoration: none;
    border-radius: 8px;
    cursor: pointer;
    transition: var(--transition);
    border: none;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    padding: 0.75rem 1.5rem;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(139, 92, 246, 0.3);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-primary);
    border: 1px solid var(--border-color);
    padding: 0.6rem 1.2rem;
    font-size: 0.9rem;
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--border-hover);
}

.btn-large {
    padding: 1.1rem 2.2rem;
    font-size: 1.1rem;
    border-radius: 12px;
}

.btn-block {
    width: 100%;
}

.btn-glow {
    position: relative;
    z-index: 1;
}

.btn-glow::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: inherit;
    z-index: -1;
    opacity: 0.4;
    filter: blur(15px);
    transition: var(--transition);
}

.btn-glow:hover::after {
    opacity: 0.8;
    filter: blur(22px);
}

/* Hero Section */
.hero-section {
    position: relative;
    padding: 10rem 0 6rem 0;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    z-index: 1;
}

.hero-bg-gradient {
    position: absolute;
    top: -10%;
    left: 50%;
    transform: translateX(-50%);
    width: 120%;
    height: 80%;
    background: radial-gradient(circle at 50% 30%, rgba(139, 92, 246, 0.15) 0%, rgba(217, 70, 239, 0.05) 40%, rgba(9, 9, 11, 0) 70%);
    z-index: -2;
    pointer-events: none;
}

.hero-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 900px;
}

.hero-eyebrow {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-color);
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-secondary);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 2rem;
}

.hero-title {
    font-size: clamp(2.2rem, 5vw, 3.8rem);
    line-height: 1.15;
    margin-bottom: 1.5rem;
}

.hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: var(--text-secondary);
    max-width: 750px;
    margin-bottom: 3rem;
}

.hero-cta-group {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    width: 100%;
}

.hero-guarantee {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.social-proof-bar {
    margin-top: 5rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
    width: 100%;
    max-width: 600px;
}

.social-proof-bar p {
    font-size: 0.85rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1rem;
}

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

.platform-logo {
    color: var(--text-secondary);
    font-weight: 600;
    font-size: 1.1rem;
    opacity: 0.6;
    transition: var(--transition);
}

.platform-logo:hover {
    opacity: 1;
}

/* Pain Points Section */
.pain-section {
    padding: 6rem 0;
    position: relative;
}

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

.section-title {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    margin-bottom: 1rem;
}

.section-desc {
    font-size: 1.1rem;
    color: var(--text-secondary);
}

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

.pain-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 2.5rem 2rem;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.pain-card:hover {
    background: var(--bg-card-hover);
    border-color: var(--border-hover);
    transform: translateY(-5px);
}

.pain-icon-wrapper {
    width: 48px;
    height: 48px;
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ef4444;
}

.pain-icon-wrapper svg {
    width: 24px;
    height: 24px;
}

.pain-card h3 {
    font-size: 1.35rem;
}

.pain-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.card-full-width {
    grid-column: 1 / -1;
    background: linear-gradient(135deg, rgba(239,68,68,0.05) 0%, rgba(255,255,255,0.01) 100%);
    border: 1px dashed rgba(239, 68, 68, 0.3);
}

.card-full-width:hover {
    border-style: solid;
    border-color: rgba(239, 68, 68, 0.5);
}

/* Solution Section */
.solution-section {
    padding: 6rem 0;
    position: relative;
}

.solution-bg-circle {
    position: absolute;
    right: 5%;
    top: 50%;
    transform: translateY(-50%);
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(6, 182, 212, 0.1) 0%, rgba(9, 9, 11, 0) 70%);
    z-index: -1;
    pointer-events: none;
}

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

/* Solution UI Mockup (Premium CSS Design) */
.solution-image-placeholder {
    width: 100%;
}

.mockup-window {
    background: #18181b;
    border: 1px solid var(--border-color);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    position: relative;
}

.mockup-header {
    background: #27272a;
    padding: 0.75rem 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    border-bottom: 1px solid var(--border-color);
}

.mockup-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.mockup-dot.red { background-color: #ef4444; }
.mockup-dot.yellow { background-color: #f59e0b; }
.mockup-dot.green { background-color: #10b981; }

.mockup-title {
    font-size: 0.75rem;
    color: var(--text-muted);
    font-family: var(--font-heading);
    letter-spacing: 0.05em;
    margin-left: 1rem;
}

.mockup-body {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.chart-container {
    background: rgba(255,255,255,0.02);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 1.5rem;
}

.chart-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 2rem;
}

.chart-label {
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.chart-value {
    font-size: 1.8rem;
    font-family: var(--font-heading);
    color: var(--text-primary);
    margin-top: 0.25rem;
}

.chart-badge {
    background: rgba(16, 185, 129, 0.15);
    color: var(--accent-green);
    border: 1px solid rgba(16, 185, 129, 0.2);
    padding: 0.25rem 0.6rem;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 600;
}

.chart-bars {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    height: 120px;
    padding-top: 1rem;
}

.chart-bar {
    width: 12%;
    background: rgba(255,255,255,0.08);
    height: var(--height);
    border-radius: 4px 4px 0 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    position: relative;
    transition: var(--transition);
}

.chart-bar:hover {
    background: rgba(139, 92, 246, 0.3);
}

.chart-bar.active {
    background: linear-gradient(to top, var(--primary), var(--secondary));
    box-shadow: 0 0 15px rgba(139, 92, 246, 0.4);
}

.chart-bar span {
    position: absolute;
    bottom: -25px;
    font-size: 0.75rem;
    color: var(--text-muted);
}

.notification-pop {
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.2);
    border-radius: 8px;
    padding: 0.85rem 1.25rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    animation: bouncePop 3s infinite;
}

@keyframes bouncePop {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}

.notif-icon {
    font-size: 1.5rem;
}

.notif-title {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-primary);
}

.notif-desc {
    font-size: 0.8rem;
    color: var(--text-secondary);
}

/* Solution details styling */
.tag-solution {
    color: var(--accent-cyan);
    font-family: var(--font-heading);
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 0.05em;
}

.solution-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.solution-title {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    line-height: 1.2;
}

.solution-desc {
    color: var(--text-secondary);
    font-size: 1.05rem;
}

.solution-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    margin-top: 1rem;
}

.solution-list li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.solution-list svg {
    width: 20px;
    height: 20px;
    color: var(--accent-cyan);
    flex-shrink: 0;
    margin-top: 0.2rem;
}

.solution-list span {
    font-size: 1rem;
    color: var(--text-secondary);
}

.solution-list strong {
    color: var(--text-primary);
}

/* Modules Section */
.modules-section {
    padding: 6rem 0;
    background: rgba(255,255,255,0.01);
}

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

.module-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 3rem 2rem;
    position: relative;
    overflow: hidden;
    transition: var(--transition);
}

.module-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 10% 10%, rgba(139, 92, 246, 0.1) 0%, rgba(0,0,0,0) 50%);
    opacity: 0;
    transition: var(--transition);
}

.module-card:hover {
    background: var(--bg-card-hover);
    border-color: var(--border-hover);
    transform: translateY(-5px);
}

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

.module-num {
    font-family: var(--font-heading);
    font-size: 4rem;
    font-weight: 800;
    line-height: 1;
    background: linear-gradient(135deg, rgba(255,255,255,0.1), rgba(255,255,255,0.01));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    position: absolute;
    top: 1rem;
    right: 1.5rem;
}

.module-card h3 {
    font-size: 1.35rem;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
    padding-right: 2rem;
}

.module-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    position: relative;
    z-index: 1;
}

/* Testimonials Section */
.testimonials-section {
    padding: 6rem 0;
}

.testimonials-slider {
    overflow: hidden;
    margin-top: 3rem;
}

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

.testimonial-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

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

.user-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-size: cover;
    background-position: center;
    border: 2px solid var(--border-color);
}

.user-name {
    font-size: 1.05rem;
}

.user-sub {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.user-comment {
    color: var(--text-secondary);
    font-style: italic;
    font-size: 0.95rem;
    flex-grow: 1;
}

.user-rating {
    font-size: 0.9rem;
    letter-spacing: 2px;
}

/* CTA & Pricing Section */
.cta-section {
    padding: 6rem 0;
    position: relative;
}

.pricing-card {
    background: linear-gradient(135deg, rgba(20, 20, 25, 0.9) 0%, rgba(10, 10, 15, 0.95) 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    overflow: hidden;
    box-shadow: 0 40px 80px -15px rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

.card-left {
    padding: 4rem 3rem;
    border-right: 1px solid var(--border-color);
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    justify-content: center;
}

.limited-offer-badge {
    background: rgba(6, 182, 212, 0.15);
    color: var(--accent-cyan);
    border: 1px solid rgba(6, 182, 212, 0.2);
    padding: 0.4rem 1rem;
    border-radius: 9999px;
    font-size: 0.8rem;
    font-weight: 600;
    align-self: flex-start;
    text-transform: uppercase;
}

.price-title {
    font-size: 2.2rem;
    line-height: 1.2;
}

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

.pricing-group {
    display: flex;
    align-items: baseline;
    gap: 1.5rem;
    flex-wrap: wrap;
    margin: 1rem 0;
}

.price-slash {
    font-size: 1.5rem;
    color: var(--text-muted);
    text-decoration: line-through;
}

.price-active {
    font-size: 3.5rem;
    font-family: var(--font-heading);
    font-weight: 800;
    color: var(--text-primary);
}

.price-discount {
    background: rgba(16, 185, 129, 0.15);
    color: var(--accent-green);
    border: 1px solid rgba(16, 185, 129, 0.2);
    padding: 0.3rem 0.8rem;
    border-radius: 6px;
    font-size: 0.85rem;
    font-weight: 700;
}

/* Countdown Timer */
.countdown-container {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 1rem;
}

.countdown-label {
    font-size: 0.9rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

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

.time-block {
    background: rgba(255,255,255,0.05);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    width: 64px;
    padding: 0.75rem 0;
    text-align: center;
    display: flex;
    flex-direction: column;
}

.time-block span {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 700;
    line-height: 1;
}

.time-block small {
    font-size: 0.7rem;
    color: var(--text-muted);
    margin-top: 0.25rem;
    text-transform: uppercase;
}

.time-separator {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-muted);
}

.slots-left {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.slots-left .highlight {
    color: var(--secondary);
    font-weight: 700;
}

/* Form Container on the Right */
.card-right {
    padding: 4rem 3rem;
    background: rgba(255, 255, 255, 0.01);
    display: flex;
    flex-direction: column;
    gap: 2rem;
    justify-content: center;
}

.card-right h3 {
    font-size: 1.5rem;
    text-align: center;
}

.register-form {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-secondary);
}

.form-group input {
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 0.85rem 1rem;
    color: var(--text-primary);
    font-family: var(--font-body);
    font-size: 0.95rem;
    transition: var(--transition);
}

.form-group input:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 10px rgba(139, 92, 246, 0.15);
}

.form-secure {
    text-align: center;
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* FAQ Accordion */
.faq-section {
    padding: 6rem 0;
}

.faq-accordion {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    overflow: hidden;
    transition: var(--transition);
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    text-align: left;
    color: var(--text-primary);
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 600;
    gap: 1rem;
}

.faq-arrow {
    width: 20px;
    height: 20px;
    color: var(--text-muted);
    transition: transform 0.3s ease;
}

.faq-answer {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease-out;
}

.faq-answer p {
    color: var(--text-secondary);
    padding-bottom: 1.5rem;
    font-size: 0.95rem;
}

/* Open FAQ State */
.faq-item.active {
    background: var(--bg-card-hover);
    border-color: var(--border-hover);
}

.faq-item.active .faq-arrow {
    transform: rotate(180deg);
    color: var(--text-primary);
}

/* Footer styling */
.main-footer {
    border-top: 1px solid var(--border-color);
    padding: 4rem 0;
    background: #060608;
    color: var(--text-muted);
}

.footer-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
}

.footer-left {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 350px;
}

.footer-left .logo {
    font-size: 1.35rem;
}

.footer-left p {
    font-size: 0.85rem;
    line-height: 1.5;
}

.footer-right {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    text-align: right;
    font-size: 0.85rem;
}

.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--text-primary);
}

/* Modals */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1000;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(8px);
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.modal.active {
    display: flex;
    animation: fadeIn 0.3s forwards;
}

.modal-content {
    background: #121214;
    border: 1px solid var(--border-color);
    border-radius: 20px;
    width: 100%;
    max-width: 500px;
    padding: 3rem 2rem;
    position: relative;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.8);
    transform: scale(0.9);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.modal.active .modal-content {
    transform: scale(1);
}

.close-modal {
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    font-size: 2rem;
    cursor: pointer;
    color: var(--text-muted);
    transition: var(--transition);
}

.close-modal:hover {
    color: var(--text-primary);
}

.success-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
}

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

.modal-body p {
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

.modal-details {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 2rem;
    text-align: left;
}

.modal-details p {
    margin-bottom: 0.75rem;
    font-size: 0.9rem;
    line-height: 1.5;
}

.modal-details p:last-child {
    margin-bottom: 0;
}

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

/* Responsiveness */
@media (max-width: 1024px) {
    .solution-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    .pricing-card {
        grid-template-columns: 1fr;
    }
    .card-left {
        border-right: none;
        border-bottom: 1px solid var(--border-color);
    }
}

@media (max-width: 768px) {
    html {
        font-size: 15px;
    }
    .hero-section {
        padding-top: 8rem;
    }
    .footer-container {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    .footer-right {
        text-align: center;
    }
}
