/* Premium Restaurant SaaS Theme */
:root {
    /* Dark Mode Variables (Default) */
    --bg-main: #060908; 
    --bg-card: rgba(255, 255, 255, 0.03);
    --bg-card-solid: #0d1210;
    --bg-input: rgba(255, 255, 255, 0.05);
    --border-color: rgba(255, 255, 255, 0.08);
    
    --primary: #198754;
    --primary-dark: #12603c;
    --primary-light: #24b06e;
    --primary-gradient: linear-gradient(135deg, #24b06e, #12603c);
    --secondary: #17211d;
    
    --text-main: #FFFFFF;
    --text-muted: #8FA69A;
    
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --shadow-3d: 0 5px 0 var(--primary-dark), 0 10px 20px rgba(0,0,0,0.5);
    --shadow-3d-active: 0 1px 0 var(--primary-dark), 0 5px 10px rgba(0,0,0,0.5);
}

[data-theme="light"] {
    --bg-main: #F3F7F5;
    --bg-card: #FFFFFF;
    --bg-card-solid: #FFFFFF;
    --bg-input: #E4ECE7;
    --border-color: #D3E0D8;
    
    --primary: #198754;
    --primary-dark: #12603C;
    --primary-light: #24A165;
    --primary-gradient: linear-gradient(135deg, #24A165, #12603C);
    --secondary: #E3EDE8;
    
    --text-main: #0B1410;
    --text-muted: #4e6358;
    
    --shadow-3d: 0 5px 0 var(--primary-dark), 0 10px 20px rgba(25, 135, 84, 0.15);
    --shadow-3d-active: 0 1px 0 var(--primary-dark), 0 5px 10px rgba(25, 135, 84, 0.15);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    font-family: var(--font-body); background-color: var(--bg-main);
    color: var(--text-main); line-height: 1.6; overflow-x: hidden;
    transition: background-color 0.4s ease, color 0.4s ease;
}

h1, h2, h3, h4, h5, h6, .logo { font-family: var(--font-heading); }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
.container { width: 90%; max-width: 1250px; margin: 0 auto; }
.section-padding { padding: 100px 0; }
.text-center { text-align: center; }
.dark-bg { background-color: var(--bg-main); }
.custom-bg { background: linear-gradient(180deg, var(--bg-main) 0%, rgba(25,135,84,0.02) 100%); }
[data-theme="light"] .custom-bg { background: linear-gradient(180deg, #F3F7F5 0%, #FFFFFF 100%); }
.mt-10 { margin-top: 10px; } .mt-20 { margin-top: 20px; } .mb-20 { margin-bottom: 20px; }

/* Typography */
.section-title-container { margin-bottom: 60px; }
.section-title { font-size: 3.2rem; font-weight: 800; margin-bottom: 15px; letter-spacing: -0.5px; }
/* Applied theme color instead of gradient to title span as requested */
.section-title span { color: var(--primary); }
.section-subtitle { color: var(--text-muted); font-size: 1.15rem; max-width: 700px; margin: 0 auto; }

/* Buttons & 3D Elements */
.btn {
    display: inline-flex; align-items: center; justify-content: center; gap: 8px;
    padding: 12px 28px; border-radius: 12px; font-weight: 700;
    font-family: var(--font-heading); cursor: pointer; transition: var(--transition);
    border: none; text-align: center; font-size: 0.95rem; letter-spacing: 0.5px;
}
.btn-sm { padding: 8px 16px; font-size: 0.85rem; }
.btn-large { padding: 16px 36px; font-size: 1.1rem; }
.btn-block { display: flex; width: 100%; }
.btn-primary { background: var(--primary-gradient); color: #FFF; }
.btn-secondary { background: var(--secondary); color: var(--text-main); }
[data-theme="light"] .btn-secondary { background: #0B1410; color: #fff; }
.btn-outline { background: transparent; color: var(--text-main); border: 2px solid var(--border-color); }
.btn-outline:hover { border-color: var(--primary); }
.btn-3d { position: relative; transform: translateY(0); box-shadow: var(--shadow-3d); }
.btn-3d:active, .btn-3d.active { transform: translateY(4px); box-shadow: var(--shadow-3d-active); }
.btn-3d-hover { transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.3s; }
.btn-3d-hover:hover { transform: translateY(-6px); box-shadow: 0 15px 30px rgba(0,0,0,0.15); }
[data-theme="light"] .btn-3d-hover:hover { box-shadow: 0 15px 30px rgba(0,0,0,0.05); }

.highlight-icon { background: var(--primary-gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }

/* Navigation */
#navbar { position: fixed; top: 0; left: 0; width: 100%; z-index: 1000; padding: 14px 0; transition: var(--transition); background: rgba(0, 0, 0, 0.65); backdrop-filter: blur(15px); border-bottom: 1px solid rgba(255, 255, 255, 0.1); }
#navbar.scrolled { background: rgba(6, 9, 8, 0.95); backdrop-filter: blur(25px); border-bottom: 1px solid var(--border-color); padding: 10px 0; }
[data-theme="light"] #navbar { background: rgba(255, 255, 255, 0.85); border-bottom: 1px solid rgba(0,0,0,0.1); backdrop-filter: blur(15px); }
[data-theme="light"] #navbar.scrolled { background: rgba(243, 247, 245, 0.98); }
.nav-container { display: flex; justify-content: space-between; align-items: center; }
.logo { font-size: 1.8rem; font-weight: 900; letter-spacing: -0.5px; }
.logo span { color: var(--primary); }

/* Compact Nav links as requested */
.nav-links { display: flex; gap: 20px; }
.nav-links a { font-weight: 500; color: var(--text-muted); font-size: 0.95rem; transition: var(--transition); position: relative; padding-bottom: 4px; }
.nav-links a:hover { color: var(--primary); }
.nav-links a::after { content: ''; position: absolute; width: 0; height: 2px; bottom: 0; left: 0; background: var(--primary-gradient); transition: width 0.3s ease; }
.nav-links a:hover::after { width: 100%; }
.nav-actions { display: flex; gap: 12px; align-items: center; }
.theme-toggle { background: none; border: none; color: var(--text-main); font-size: 1.2rem; cursor: pointer; margin-right: 5px; transition: var(--transition); }
.hamburger { display: none; font-size: 1.5rem; cursor: pointer; color: var(--text-main); }

/* Hero Section with Premium Video Overlay */
.hero {
    position: relative; padding-top: 150px; padding-bottom: 100px;
    min-height: 100vh; display: flex; align-items: center; overflow: hidden;
    background: var(--bg-main); /* Fallback perfectly matching theme */
}

.video-container { position: absolute; top: 0; left: 0; width: 100%; height: 100%; z-index: 0; }
.hero-video { width: 100%; height: 100%; object-fit: cover; }
/* Beautiful dark overlay over video */
.video-overlay {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.6); /* Black with 0.6 opacity as requested */
}

.hero-content { display: flex; align-items: center; justify-content: space-between; gap: 30px; position: relative; z-index: 2; }
.hero-text { flex: 1.2; }
.badge {
    display: inline-block; padding: 6px 14px; background: rgba(25, 135, 84, 0.1);
    color: var(--primary); border-radius: 50px; font-weight: 600; font-size: 0.85rem;
    margin-bottom: 20px; border: 1px solid rgba(25, 135, 84, 0.3);
}
.hero-title { font-size: clamp(2rem, 8vw, 4.2rem); line-height: 1.1; margin-bottom: 20px; letter-spacing: -1px; }
/* Use theme color in title */
.hero-title span { color: var(--primary); }
.hero-subtitle { font-size: 1.15rem; color: whitesmoke; margin-bottom: 35px; max-width: 90%; }
.hero-buttons { display: flex; gap: 15px; }
.integrations-box {
    display: flex; gap: 15px; margin-top: 30px; padding: 15px;
    background: var(--bg-card); border-radius: 12px; border: 1px solid var(--border-color); flex-wrap: wrap;
    backdrop-filter: blur(10px);
}
.integration-item { display: flex; align-items: center; gap: 8px; font-weight: 600; color: var(--text-muted); font-size: 0.9rem;}
.integration-item i { font-size: 1.2rem; color: var(--primary); }

.hero-graphics { flex: 1; position: relative; height: 500px; }
.glass-card {
    background: var(--bg-card); border: 1px solid var(--border-color);
    backdrop-filter: blur(20px); border-radius: 16px; padding: 16px 20px;
    box-shadow: 0 15px 30px rgba(0,0,0,0.2);
}
[data-theme="light"] .glass-card { box-shadow: 0 15px 30px rgba(0,0,0,0.05); background: #FFFFFF; }

.hero-center-img {
    position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
    width: 100%; max-width: 450px; z-index: 1; border-radius: 20px;
    filter: drop-shadow(0 20px 40px rgba(25,135,84,0.3));
}

.hero-graphics .glass-card { position: absolute; display: flex; align-items: center; gap: 15px; z-index: 2; }
.hero-graphics .glass-card i { font-size: 2rem; }
.hero-graphics .glass-card h4 { font-size: 0.95rem;}
.hero-graphics .glass-card p { font-size: 0.8rem; color: var(--text-muted);}

/* 3 Floating Elements */
.float-anim-1 { top: 10%; right: 0; animation: float 6s ease-in-out infinite; }
.float-anim-2 { top: 40%; left: -20px; animation: float 5s ease-in-out infinite 1s; }
.float-anim-3 { bottom: 15%; right: 20px; animation: float 7s ease-in-out infinite 0.5s; }

@keyframes float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-15px); } }

/* Marquee */
.marquee-section { background: var(--primary-gradient); padding: 15px 0; overflow: hidden; }
.marquee-content { display: inline-block; white-space: nowrap; animation: marquee 30s linear infinite; }
.marquee-content span { font-size: 1rem; font-weight: 600; font-family: var(--font-heading); color: #FFF; margin: 0 35px; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* Steps, Cards, Splits */
.steps-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.step-card { text-align: center; padding: 40px 30px; background: var(--bg-card-solid); border-radius: 20px; border: 1px solid var(--border-color); }
.step-number {
    width: 45px; height: 45px; background: var(--primary-gradient); color: #fff;
    border-radius: 50%; display: flex; justify-content: center; align-items: center;
    font-size: 1.3rem; font-weight: 800; margin: 0 auto 20px; box-shadow: var(--shadow-3d);
}

.feature-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 25px; }
.feature-card { background: var(--bg-card-solid); border: 1px solid var(--border-color); padding: 35px 25px; border-radius: 20px; }
.icon-box {
    width: 55px; height: 55px; border-radius: 14px; background: rgba(25, 135, 84, 0.1);
    display: flex; justify-content: center; align-items: center; margin-bottom: 20px; font-size: 1.5rem;
}

.split-layout { display: flex; align-items: center; gap: 50px; }
.split-text { flex: 1; }
.split-visual { flex: 1; display: flex; justify-content: center; }
.check-list { margin-top: 25px; }
.check-list li { margin-bottom: 15px; font-size: 1.05rem; color: var(--text-muted); display: flex; align-items: flex-start; gap: 12px; }
.check-list li strong { color: var(--text-main); }
.check-list i { color: var(--primary); margin-top: 3px; font-size: 1.2rem; }
.mockup-stack { position: relative; width: 100%; max-width: 400px; }
.mock-img { width: 100%; border-radius: 24px; box-shadow: 0 20px 40px rgba(0,0,0,0.4); border: 6px solid var(--bg-card-solid); }

/* Accordion */
.showcase-container { display: flex; flex-direction: column; align-items: center; gap: 30px; }
.accordion-menu { display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; }
.acc-btn {
    padding: 12px 24px; border-radius: 50px; background: var(--bg-card-solid); border: 1px solid var(--border-color);
    font-weight: 600; cursor: pointer; transition: var(--transition); color: var(--text-muted); font-size: 0.95rem; display: flex; align-items: center; gap: 8px;
}
.acc-btn:hover { color: var(--text-main); border-color: rgba(25, 135, 84, 0.4); }
.acc-btn.active { background: var(--primary-gradient); color: #fff; border-color: transparent; box-shadow: 0 5px 15px rgba(25, 135, 84, 0.3); }
.accordion-content {
    width: 100%; max-width: 900px; aspect-ratio: 16/9; min-height: 250px; position: relative; border-radius: 20px;
    overflow: hidden; box-shadow: 0 20px 50px rgba(0,0,0,0.3); border: 1px solid var(--border-color); background: var(--bg-main);
}
[data-theme="light"] .accordion-content { box-shadow: 0 20px 50px rgba(0,0,0,0.1); }
.acc-img { position: absolute; top: 0; left: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0; transition: opacity 0.6s ease; z-index: 1; }
.acc-img.active { opacity: 1; z-index: 2; }

/* Pricing */
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 25px; }
.pricing-card { background: var(--bg-card-solid); border: 1px solid var(--border-color); border-radius: 20px; padding: 40px 30px; position: relative; display: flex; flex-direction: column; }
.pricing-header { border-bottom: 1px solid var(--border-color); padding-bottom: 25px; margin-bottom: 25px; }
.pricing-header h3 { font-size: 1.6rem; margin-bottom: 8px; }
.price { font-size: 1.1rem; color: var(--text-muted); }
.price span { font-size: 3rem; font-weight: 800; color: var(--text-main); }
.pricing-features { margin-bottom: 30px; flex-grow: 1; }
.pricing-features li { margin-bottom: 12px; color: var(--text-muted); display: flex; gap: 10px; font-size: 0.95rem; }
.pricing-features i { color: var(--primary); margin-top: 3px; }
.featured-pricing { border-color: var(--primary); transform: scale(1.03); }
.popular-badge { position: absolute; top: -12px; left: 50%; transform: translateX(-50%); background: var(--primary-gradient); color: #fff; padding: 5px 16px; border-radius: 20px; font-weight: 700; font-size: 0.85rem; }

/* FAQs */
.faq-container { max-width: 800px; margin: 0 auto; }
.faq-item { background: var(--bg-card-solid); border: 1px solid var(--border-color); border-radius: 12px; margin-bottom: 12px; overflow: hidden; }
.faq-question { padding: 18px 22px; font-size: 1.05rem; font-weight: 600; cursor: pointer; display: flex; justify-content: space-between; align-items: center; transition: var(--transition); }
.faq-question:hover { color: var(--primary); }
.faq-question i { transition: transform 0.3s ease; }
.faq-item.active .faq-question i { transform: rotate(180deg); }
.faq-answer { padding: 0 22px; max-height: 0; overflow: hidden; color: var(--text-muted); transition: max-height 0.3s ease, padding 0.3s ease; }
.faq-item.active .faq-answer { padding: 0 22px 18px; max-height: 300px; }

/* Contact Section width fix */
.contact-section { position: relative; }
.contact-section .split-layout { align-items: flex-start; }
.contact-form-wrapper { flex: 1.5; width: 100%; padding: 40px; border-radius: 20px; }
.info-blocks { margin-top: 30px; }
.info-cell { display: flex; align-items: center; gap: 15px; margin-bottom: 20px; }
.icon-circle { width: 45px; height: 45px; border-radius: 50%; background: rgba(25, 135, 84, 0.1); display: flex; justify-content: center; align-items: center; font-size: 1.1rem; color: var(--primary); }
.info-cell h4 { font-size: 1.05rem; margin-bottom: 2px; }
.info-cell p { color: var(--text-muted); font-size: 0.95rem;}

.input-group { margin-bottom: 15px; text-align: left; }
.input-group label { display: block; margin-bottom: 6px; font-weight: 500; color: var(--text-muted); font-size: 0.9rem; }
.input-group label i { margin-right: 5px; color: var(--primary); }
.input-group input, .input-group select, .input-group textarea {
    width: 100%; padding: 14px; border-radius: 10px; background: var(--bg-input);
    border: 1px solid var(--border-color); color: var(--text-main); font-family: var(--font-body); transition: var(--transition);
}
.input-group input:focus, .input-group select:focus, .input-group textarea:focus { outline: none; border-color: var(--primary); box-shadow: 0 0 0 3px rgba(25, 135, 84, 0.2); }

/* Footer */
.footer { border-top: 1px solid var(--border-color); padding-top: 70px; }
.footer-content { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 30px; margin-bottom: 50px; }
.footer-col p { color: var(--text-muted); margin-top: 12px; font-size: 0.95rem;}
.footer-col h4 { font-size: 1.1rem; margin-bottom: 20px; color: var(--text-main); }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a { color: var(--text-muted); transition: var(--transition); font-size: 0.95rem;}
.footer-col ul li a:hover { color: var(--primary); }
.social-links { display: flex; gap: 12px; }
.social-links a { width: 38px; height: 38px; border-radius: 50%; background: var(--bg-card-solid); display: flex; justify-content: center; align-items: center; border: 1px solid var(--border-color); }
.social-links a:hover { background: var(--primary); border-color: var(--primary); color: #fff;}
.footer-bottom { padding: 20px 0; border-top: 1px solid var(--border-color); color: var(--text-muted); font-size: 0.9rem; }

/* Modals - Fully Responsive */
.modal-overlay {
    position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.85);
    backdrop-filter: blur(8px); z-index: 9999; display: flex; justify-content: center; align-items: center;
    opacity: 0; visibility: hidden; transition: all 0.4s ease; padding: 20px;
}
.modal-overlay.active { opacity: 1; visibility: visible; }
.close-modal {
    position: absolute; top: 15px; right: 15px; background: none; border: none;
    color: var(--text-muted); font-size: 1.4rem; cursor: pointer; transition: var(--transition); z-index: 10;
}
.close-modal:hover { color: var(--primary); }

/* 3D Auth Flipping Card - Fits content */
.auth-scene { width: 100%; max-width: 420px; perspective: 1000px; display: flex; align-items: center;}
.auth-card {
    width: 100%; min-height: 520px; position: relative; transition: transform 0.8s;
    transform-style: preserve-3d; display: block;
}
.auth-card.flipped { transform: rotateY(180deg); }
.auth-face {
    position: absolute; width: 100%; top: 0; left: 0; height: 100%;
    backface-visibility: hidden; padding: 35px; display: flex; flex-direction: column;
    justify-content: center; border-radius: 20px; overflow: hidden;
}
.auth-back { transform: rotateY(180deg); }
.auth-face h2 { font-size: 1.8rem; margin-bottom: 5px; }
.auth-face p { color: var(--text-muted); margin-bottom: 25px; font-size: 0.95rem; }
.form-options { display: flex; justify-content: space-between; font-size: 0.85rem; color: var(--text-muted); margin-bottom: 20px; }
.forgot-link:hover { color: var(--primary); text-decoration: underline; }
.auth-switch { text-align: center; margin-top: 15px; color: var(--text-muted); font-size: 0.9rem;}
.auth-switch span { color: var(--primary); cursor: pointer; font-weight: 600; }

/* Wizard Modal - Responsive & Scrollable */
.wizard-card {
    width: 100%; max-width: 850px; padding: 40px; max-height: 90vh; overflow-y: auto;
    border-radius: 20px; position: relative; background: var(--bg-card-solid);
}
.wizard-card::-webkit-scrollbar { width: 6px; }
.wizard-card::-webkit-scrollbar-thumb { background: var(--primary); border-radius: 4px; }

.wizard-header { margin-bottom: 25px; text-align: center; }
.wizard-header h2 { font-size: 1.8rem; }
.wizard-progress { margin-top: 15px; }
.progress-bar { height: 6px; background: var(--bg-input); border-radius: 3px; position: relative; margin-bottom: 12px; }
.progress-fill { position: absolute; top: 0; left: 0; height: 100%; background: var(--primary-gradient); width: 25%; transition: width 0.4s ease; border-radius: 3px; }
.step-indicators { display: flex; justify-content: space-between; }
.step-dot { width: 28px; height: 28px; border-radius: 50%; background: var(--bg-input); color: var(--text-muted); display: flex; justify-content: center; align-items: center; font-weight: 700; font-size: 0.85rem; transition: var(--transition); }
.step-dot.active { background: var(--primary); color: #fff; }

.wizard-step { display: none; animation: fadeIn 0.4s; }
.wizard-step.active { display: block; }
@keyframes fadeIn { from { opacity: 0; transform: translateX(10px); } to { opacity: 1; transform: translateX(0); } }

.wizard-step h3 { font-size: 1.4rem; margin-bottom: 5px; }
.wizard-step .step-desc { color: var(--text-muted); margin-bottom: 20px; font-size: 0.9rem; }

.upload-area { border: 2px dashed var(--border-color); padding: 25px; text-align: center; border-radius: 12px; transition: var(--transition); cursor: pointer;}
.upload-area:hover { border-color: var(--primary); background: rgba(25,135,84,0.05); }
.upload-icon { font-size: 2rem; color: var(--primary); margin-bottom: 8px; }
.config-toggle { display: flex; justify-content: space-between; align-items: center; padding: 14px; background: var(--bg-input); border-radius: 10px; margin-bottom: 12px; font-size: 0.95rem;}

.business-hours { border: 1px solid var(--border-color); border-radius: 12px; padding: 20px; background: var(--bg-input); margin-bottom: 20px;}
.day-row { display: flex; align-items: center; justify-content: space-between; padding: 12px 0; border-bottom: 1px dashed var(--border-color); }
.day-row:last-child { border-bottom: none; }
.day-check { display: flex; align-items: center; gap: 10px; font-weight: 600; cursor: pointer; color: var(--text-main); }
.day-check input { width: 18px; height: 18px; accent-color: var(--primary); }
.time-group { display: flex; align-items: center; gap: 10px; }
.time-group input { padding: 8px 12px; border-radius: 8px; border: 1px solid var(--border-color); font-size: 0.9rem; background: var(--bg-card); color: var(--text-main); color-scheme: dark; }
[data-theme="light"] .time-group input { color-scheme: light; }
.time-group input:disabled { opacity: 0.5; background: var(--border-color); cursor: not-allowed; }

.switch { position: relative; display: inline-block; width: 44px; height: 24px; }
.switch input { opacity: 0; width: 0; height: 0; }
.slider { position: absolute; cursor: pointer; top: 0; left: 0; right: 0; bottom: 0; background-color: var(--border-color); transition: .4s; border-radius: 34px; }
.slider:before { position: absolute; content: ""; height: 16px; width: 16px; left: 4px; bottom: 4px; background-color: white; transition: .4s; border-radius: 50%; }
input:checked + .slider { background-color: var(--primary); }
input:checked + .slider:before { transform: translateX(20px); }

.preset-colors { display: flex; gap: 12px; align-items: center; margin-top: 8px; flex-wrap: wrap; }
.color-swatch { width: 38px; height: 38px; border-radius: 50%; cursor: pointer; border: 2px solid transparent; transition: transform 0.2s, border 0.2s; position: relative; box-shadow: 0 4px 6px rgba(0,0,0,0.1); }
.color-swatch.active { border: 2px solid var(--text-main); transform: scale(1.15); box-shadow: 0 6px 12px rgba(0,0,0,0.2); }
[data-theme="light"] .color-swatch.active { border-color: #000; }
.color-swatch:hover { transform: scale(1.1); }
.custom-swatch { background: conic-gradient(red, yellow, lime, aqua, blue, magenta, red); }
.custom-swatch input[type="color"] { opacity: 0; position: absolute; top: 0; left: 0; width: 100%; height: 100%; cursor: pointer; }

.final-text { text-align: center; margin-top: 15px; color: var(--primary); font-weight: 600; font-size: 0.95rem; }

.wizard-footer { display: flex; justify-content: space-between; margin-top: 25px; border-top: 1px solid var(--border-color); padding-top: 20px; }

/* Responsive adjustments */
@media (max-width: 1024px) {
    .pricing-grid, .steps-grid { grid-template-columns: repeat(2, 1fr); }
    .featured-pricing { transform: none; }
    .contact-form-wrapper { flex: 1; }
    .hero-title { font-size: 3.5rem; }
}

@media (max-width: 768px) {
    .section-title { font-size: clamp(1.8rem, 8vw, 2.5rem); }
    .hero { min-height: 65vh; padding-top: 120px; padding-bottom: 60px; }
    .hero-title { margin-bottom: 15px; }
    .hero-subtitle { max-width: 100%; font-size: 0.95rem; margin-bottom: 25px; }
    .hero-content { flex-direction: column; text-align: center; padding-top: 0px; }
    .hero-buttons { justify-content: center; }
    .hero-graphics { display: none; }
    .integrations-box { justify-content: center; }
    .split-layout { flex-direction: column; text-align: center; }
    .contact-section .split-layout { flex-direction: column; align-items: center; }
    .pricing-grid, .steps-grid { grid-template-columns: 1fr; gap: 20px; }
    .footer-content { grid-template-columns: 1fr 1fr; gap: 20px; }
    
    .nav-links, .nav-actions { display: none; }
    .hamburger { display: block; }
    
    .nav-container.mobile-active .nav-links,
    .nav-container.mobile-active .nav-actions {
        display: flex; flex-direction: column; align-items: center; justify-content: center;
        position: absolute; left: 0; width: 100%; background: var(--bg-main);
        padding: 20px; gap: 15px; border-bottom: 1px solid var(--border-color);
    }
    .nav-container.mobile-active .nav-links { top: 100%; }
    .nav-container.mobile-active .nav-actions { top: calc(100% + 200px); }
    
    .pricing-card { padding: 25px 20px; }
    .accordion-menu { flex-wrap: nowrap; overflow-x: auto; justify-content: flex-start; padding-bottom: 10px; -webkit-overflow-scrolling: touch; width: 100%; }
    .accordion-menu::-webkit-scrollbar { height: 4px; }
    .accordion-menu::-webkit-scrollbar-thumb { background: var(--border-color); border-radius: 5px; }
    .acc-btn { white-space: nowrap; padding: 8px 16px; font-size: 0.85rem; }
    .contact-form-wrapper { padding: 25px 20px; }
    
    .info-blocks { display: flex; flex-direction: column; align-items: center; width: 100%; }
    .info-cell { display: flex; flex-direction: column; text-align: center; gap: 8px; justify-content: center; align-items: center; width: 100%; }

    .modal-overlay { padding: 0; align-items: flex-start; }
    .wizard-card { padding: 25px 20px; max-width: 100%; border-radius: 0; min-height: 100vh; height: 100vh; max-height: 100vh; }
    .wizard-header h2 { font-size: 1.5rem; }
    .whatsapp-float { width: 50px; height: 50px; bottom: 20px; right: 20px; font-size: 25px; }
}

/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed; width: 60px; height: 60px; bottom: 40px; right: 40px;
    background-color: #25d366; color: #FFF; border-radius: 50px; text-align: center;
    font-size: 30px; box-shadow: 0 5px 20px rgba(37, 211, 102, 0.4); z-index: 1000;
    display: flex; align-items: center; justify-content: center; transition: transform 0.3s;
}
.whatsapp-float:hover { color: #FFF; transform: scale(1.1); }
