/* AdisyonCep Light Theme CSS */
:root {
    --color-primary: #4f46e5;
    --color-primary-light: #818cf8;
    --color-primary-dark: #3730a3;
    --color-secondary: #06b6d4;
    --color-purple: #7c3aed;
    --color-blue: #2563eb;
    --color-green: #10b981;
    --bg-primary: #ffffff;
    --bg-secondary: #f8fafc;
    --bg-tertiary: #f1f5f9;
    --text-main: #0f172a;
    --text-muted: #64748b;
    --text-light: #94a3b8;
    --border-color: rgba(15, 23, 42, 0.06);
    --border-color-focus: rgba(79, 70, 229, 0.4);
    --card-shadow: 0 20px 40px -15px rgba(15, 23, 42, 0.05), 0 0 0 1px rgba(15, 23, 42, 0.03);
    --card-shadow-hover: 0 30px 60px -15px rgba(79, 70, 229, 0.12), 0 0 0 1px rgba(79, 70, 229, 0.05);
    --border-radius-lg: 20px;
    --border-radius-md: 12px;
    --border-radius-sm: 8px;
}

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

html, body {
    background-color: var(--bg-secondary);
    color: var(--text-main);
    font-family: 'Outfit', sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
    width: 100%;
    margin: 0;
    padding: 0;
}

/* Ambient Background Lighting Container to prevent mobile horizontal scroll */
.glow-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: -1;
    pointer-events: none;
}

.glow {
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    filter: blur(140px);
    opacity: 0.35;
}


.glow-1 {
    background: radial-gradient(circle, rgba(99, 102, 241, 0.3) 0%, rgba(255, 255, 255, 0) 70%);
    top: -200px;
    left: -100px;
}

.glow-2 {
    background: radial-gradient(circle, rgba(6, 182, 212, 0.25) 0%, rgba(255, 255, 255, 0) 70%);
    top: 300px;
    right: -200px;
}

.glow-3 {
    background: radial-gradient(circle, rgba(124, 58, 237, 0.2) 0%, rgba(255, 255, 255, 0) 70%);
    bottom: -100px;
    left: 20%;
}

/* Navigation Header */
.navbar {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-color);
    transition: all 0.3s;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 16px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: -0.5px;
    color: var(--text-main);
}

.logo-icon {
    font-size: 1.6rem;
    color: var(--color-primary);
}

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

.nav-menu {
    display: flex;
    gap: 32px;
}

.nav-link {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    transition: all 0.2s;
    position: relative;
    padding: 6px 0;
}

.nav-link:hover, .nav-link.active {
    color: var(--color-primary);
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--color-primary);
    border-radius: 2px;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.mobile-actions {
    display: none;
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--text-main);
    cursor: pointer;
    padding: 6px;
    transition: color 0.2s;
}

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


/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 20px;
    border-radius: var(--border-radius-sm);
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
}

.btn-primary {
    background: linear-gradient(135deg, var(--color-primary), #6366f1);
    color: #ffffff;
    box-shadow: 0 4px 14px rgba(79, 70, 229, 0.25);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(79, 70, 229, 0.35);
}

.btn-secondary {
    background: rgba(79, 70, 229, 0.06);
    color: var(--color-primary);
    border: 1px solid rgba(79, 70, 229, 0.1);
}

.btn-secondary:hover {
    background: rgba(79, 70, 229, 0.1);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: var(--text-main);
    border: 1px solid rgba(15, 23, 42, 0.15);
}

.btn-outline:hover {
    background: rgba(15, 23, 42, 0.03);
    transform: translateY(-2px);
}

.btn-lg {
    padding: 14px 28px;
    font-size: 1rem;
    border-radius: var(--border-radius-md);
}

.btn-block {
    width: 100%;
}

/* Main Container */
.main-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 24px;
}

/* Hero Section */
.hero {
    padding: 60px 0 100px;
}

.hero-container {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 60px;
    align-items: center;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(79, 70, 229, 0.08);
    color: var(--color-primary);
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 24px;
}

.hero-title {
    font-size: 3.2rem;
    font-weight: 900;
    line-height: 1.25;
    margin-bottom: 24px;
    letter-spacing: -1px;
    color: var(--text-main);
}

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

.hero-description {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 36px;
    max-width: 580px;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    margin-bottom: 40px;
}

.hero-users {
    display: flex;
    align-items: center;
    gap: 12px;
}

.user-avatars {
    display: flex;
}

.avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--bg-tertiary);
    border: 2px solid #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    color: var(--color-primary);
    margin-right: -8px;
}

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

/* Preview Card */
.preview-card {
    background: #ffffff;
    border-radius: var(--border-radius-lg);
    border: 1px solid var(--border-color);
    box-shadow: 0 30px 60px -15px rgba(15, 23, 42, 0.1);
    overflow: hidden;
    transform: rotate(2deg);
}

.preview-header {
    background: #f8fafc;
    padding: 12px 20px;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    gap: 12px;
}

.dots {
    display: flex;
    gap: 6px;
}

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

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

.preview-title {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.preview-body {
    padding: 24px;
}

.preview-stat-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 24px;
}

.p-stat {
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    padding: 16px;
    border-radius: var(--border-radius-md);
    display: flex;
    flex-direction: column;
}

.p-stat-val {
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--text-main);
}

.p-stat-lbl {
    font-size: 0.75rem;
    color: var(--text-muted);
    font-weight: 500;
}

.preview-orders {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.p-order-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 16px;
    border-radius: var(--border-radius-sm);
    border: 1px solid var(--border-color);
    background: #fff;
    font-size: 0.85rem;
}

.p-table {
    font-weight: 700;
    color: var(--text-main);
}

.p-items {
    color: var(--text-muted);
}

.p-status {
    padding: 4px 10px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
}

.p-status.prep {
    background: rgba(245, 158, 11, 0.08);
    color: #d97706;
}

.p-status.new {
    background: rgba(239, 68, 68, 0.08);
    color: #dc2626;
}

/* Features Page */
.features-page, .pricing-page, .register-page, .demo-page {
    padding: 60px 0 100px;
}

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

.section-title {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--text-main);
    margin-bottom: 16px;
}

.section-subtitle {
    color: var(--text-muted);
    font-size: 1.05rem;
}

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

.feature-card {
    background: #ffffff;
    border: 1px solid var(--border-color);
    box-shadow: var(--card-shadow);
    border-radius: var(--border-radius-lg);
    padding: 40px;
    transition: all 0.3s;
}

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

.f-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    margin-bottom: 24px;
}

.f-icon.purple { background: rgba(124, 58, 237, 0.08); color: var(--color-purple); }
.f-icon.blue { background: rgba(37, 99, 235, 0.08); color: var(--color-blue); }
.f-icon.green { background: rgba(16, 185, 129, 0.08); color: var(--color-green); }
.f-icon.orange { background: rgba(249, 115, 22, 0.08); color: #f97316; }
.f-icon.red { background: rgba(239, 68, 68, 0.08); color: #ef4444; }
.f-icon.cyan { background: rgba(6, 182, 212, 0.08); color: var(--color-secondary); }

.feature-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text-main);
}

.feature-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Pricing Page */
.pricing-grid {
    display: flex;
    justify-content: center;
}

.pricing-card {
    background: #ffffff;
    border: 1px solid var(--border-color);
    box-shadow: var(--card-shadow);
    border-radius: var(--border-radius-lg);
    padding: 50px;
    text-align: center;
    position: relative;
    max-width: 580px;
    width: 100%;
}

.pricing-card.popular {
    border-color: var(--color-primary);
    box-shadow: 0 30px 60px -15px rgba(79, 70, 229, 0.15);
}

.popular-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--color-primary);
    color: #ffffff;
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.plan-name {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-muted);
    margin-bottom: 16px;
}

.plan-price {
    font-size: 3rem;
    font-weight: 900;
    color: var(--text-main);
    margin-bottom: 12px;
}

.plan-price .period {
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-muted);
}

.plan-desc {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 35px;
}

.plan-features {
    list-style: none;
    text-align: left;
    margin-bottom: 40px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.plan-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.95rem;
    color: var(--text-main);
}

.plan-features li i {
    color: var(--color-green);
}

/* Auth / Register / Demo Form Styling */
.auth-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
    max-width: 1100px;
    margin: 0 auto;
}

.single-card-wrapper {
    grid-template-columns: 1fr;
}

.auth-card {
    background: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--card-shadow);
    padding: 40px;
    position: relative;
}

.auth-card.popular {
    border-color: var(--color-primary-light);
}

.auth-card h2 {
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 12px;
    color: var(--text-main);
}

.auth-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 30px;
}

.auth-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-main);
    display: flex;
    align-items: center;
    gap: 8px;
}

.form-group label i {
    color: var(--color-primary);
}

.form-group input {
    padding: 12px 16px;
    border-radius: var(--border-radius-sm);
    border: 1px solid var(--border-color);
    background: var(--bg-secondary);
    color: var(--text-main);
    font-size: 0.95rem;
    font-family: inherit;
    transition: all 0.2s;
}

.form-group input:focus {
    outline: none;
    border-color: var(--color-primary-light);
    background: #ffffff;
    box-shadow: 0 0 0 4px rgba(79, 70, 229, 0.1);
}

/* Success panels inside forms */
.register-success-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 10px 0;
    animation: fadeIn 0.4s ease-out;
}

.success-icon {
    font-size: 3.5rem;
    color: var(--color-green);
    margin-bottom: 16px;
}

.register-success-box h3 {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--text-main);
    margin-bottom: 10px;
}

.register-success-box p {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 20px;
}

.links-box {
    width: 100%;
    background: var(--bg-secondary);
    border-radius: 8px;
    padding: 16px;
    margin-bottom: 20px;
    border: 1px solid var(--border-color);
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.link-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.link-item strong {
    font-size: 0.8rem;
    color: var(--color-primary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.link-item a {
    color: var(--text-main);
    font-size: 0.9rem;
    text-decoration: underline;
    word-break: break-all;
    font-weight: 500;
}

.link-item a:hover {
    color: var(--color-primary);
}

.alert-info-box {
    background: rgba(245, 158, 11, 0.05);
    border: 1px solid rgba(245, 158, 11, 0.2);
    border-radius: 8px;
    padding: 12px 20px;
    width: 100%;
    color: var(--text-main);
    font-size: 0.9rem;
}

.alert-info-box span {
    font-weight: 700;
    color: #d97706;
}

/* References Section */
.references-section {
    padding: 60px 24px;
    background: #ffffff;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    text-align: center;
}

.references-title {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--text-muted);
    margin-bottom: 30px;
    font-weight: 700;
}

.references-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 50px;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
}

.reference-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    opacity: 0.85;
    transition: all 0.3s;
}

.reference-item:hover {
    opacity: 1;
    transform: translateY(-3px);
}

.ref-logo {
    height: 90px;
    width: 90px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #fff;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.reference-item span {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-main);
}

/* Footer */
.footer {
    background: #0f172a;
    color: #94a3b8;
    padding: 80px 24px 40px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer-brand .logo {
    color: #ffffff;
}

.footer-brand .logo-icon {
    color: var(--color-primary-light);
}

.footer-brand .highlight {
    color: var(--color-primary-light);
}

.footer-brand p {
    font-size: 0.9rem;
    line-height: 1.7;
    max-width: 320px;
}

.footer-links, .footer-contact {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer-links h4, .footer-contact h4 {
    font-size: 1rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 6px;
}

.footer-links a, .footer-contact p {
    color: #94a3b8;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: #ffffff;
}

.footer-contact p i {
    margin-right: 8px;
    color: var(--color-primary-light);
}

.footer-contact a {
    color: inherit;
    text-decoration: none;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    text-align: center;
    font-size: 0.8rem;
}

/* Floating WhatsApp Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25d366;
    color: #fff;
    border-radius: 50%;
    text-align: center;
    font-size: 36px;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
    animation: pulseWhatsApp 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    background-color: #20ba5a;
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
}

@keyframes pulseWhatsApp {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* Animations */
.animate-fade-in {
    animation: fadeIn 0.5s ease-out;
}

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

/* Timeline Section styling */
.timeline-section {
    padding: 80px 40px;
    background: var(--bg-secondary);
    border-radius: var(--border-radius-lg);
    border: 1px solid var(--border-color);
    margin-bottom: 80px;
    text-align: center;
}

.timeline-header {
    margin-bottom: 40px;
}

.timeline-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
    text-align: left;
    max-width: 1000px;
    margin: 0 auto;
}

.timeline-card {
    background: #fff;
    padding: 24px;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    position: relative;
    transition: all 0.3s ease;
}

.timeline-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--card-shadow-hover);
}

.timeline-icon {
    font-size: 2rem;
    margin-bottom: 15px;
}

.timeline-icon.color-primary { color: var(--color-primary); }
.timeline-icon.color-purple { color: var(--color-purple); }
.timeline-icon.color-blue { color: var(--color-blue); }
.timeline-icon.color-green { color: var(--color-green); }

.timeline-card h4 {
    margin-bottom: 8px;
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--text-main);
}

.timeline-card p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.5;
}

/* SaaS CTA Section styling */
.cta-section {
    padding: 80px 24px;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 40px;
}

.cta-section h2 {
    font-size: 2.2rem;
    font-weight: 900;
    margin-bottom: 16px;
    color: var(--text-main);
}

.cta-section p {
    color: var(--text-muted);
    margin-bottom: 32px;
    font-size: 1.1rem;
    line-height: 1.6;
}

/* Responsive grid media queries */
@media (max-width: 991px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }
    
    .hero-content {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .hero-buttons {
        justify-content: center;
    }

    .preview-card {
        transform: none;
        margin: 0 auto;
        max-width: 480px;
        width: 100%;
    }

    .timeline-container {
        grid-template-columns: 1fr 1fr;
    }

    .timeline-section {
        padding: 50px 24px;
        margin-bottom: 50px;
    }

    .cta-section {
        padding: 50px 24px;
    }
    
    .auth-wrapper {
        grid-template-columns: 1fr;
    }
    
    .footer-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .nav-toggle {
        display: block;
    }

    .nav-actions {
        display: none;
    }

    .nav-menu {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--bg-primary);
        padding: 24px;
        border-bottom: 1px solid var(--border-color);
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
        gap: 16px;
        z-index: 999;
    }

    .nav-menu.active {
        display: flex;
    }

    .mobile-actions {
        display: flex;
        flex-direction: column;
        gap: 12px;
        margin-top: 12px;
        border-top: 1px solid var(--border-color);
        padding-top: 16px;
    }

    .mobile-actions .nav-link {
        padding: 8px 0;
    }
    
    .main-container {
        padding: 24px 16px;
    }

    .hero {
        padding: 30px 0 50px;
    }

    .hero-title {
        font-size: 2.2rem;
    }

    .section-title {
        font-size: 1.8rem;
        margin-bottom: 10px;
    }

    .section-header {
        margin-bottom: 35px;
    }

    .timeline-container {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .feature-card {
        padding: 24px;
    }

    .pricing-card {
        padding: 35px 24px;
    }

    .auth-card {
        padding: 30px 24px;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 1.85rem;
    }

    .hero-description {
        font-size: 0.95rem;
        margin-bottom: 24px;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
        gap: 12px;
    }

    .hero-buttons .btn {
        width: 100%;
    }

    .timeline-section {
        padding: 40px 16px;
    }

    .timeline-card {
        padding: 20px;
    }

    .cta-section h2 {
        font-size: 1.7rem;
    }

    .cta-section p {
        font-size: 0.95rem;
        margin-bottom: 24px;
    }

    .plan-price {
        font-size: 2.4rem;
    }
}

.hidden {
    display: none !important;
}

