/* ================= PROFESSIONAL SAAS DESIGN - VISISCURE ORDER ================= */

/* Color Palette - Soft & Professional */
:root {
    --primary: #0ea5b7;
    --primary-dark: #0c8a9a;
    --primary-light: #e0f7fa;
    --secondary: #1f2937;
    --accent: #10b981;
    --gray-50: #f8fafc;
    --gray-100: #f1f5f9;
    --gray-200: #e2e8f0;
    --gray-300: #cbd5e1;
    --gray-400: #94a3b8;
    --gray-500: #64748b;
    --gray-600: #475569;
    --gray-700: #334155;
    --gray-800: #1e293b;
    --gray-900: #0f172a;
    --white: #ffffff;
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.04);
    --shadow-md: 0 4px 16px rgba(0,0,0,0.08);
    --shadow-lg: 0 10px 30px rgba(0,0,0,0.12);
}

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.6;
    color: var(--gray-700);
    background: var(--white);
    overflow-x: hidden;
}

/* ================= NAVBAR ================= */
.navbar {
    background: var(--white);
    box-shadow: var(--shadow-sm);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    border-bottom: 1px solid var(--gray-100);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.375rem;
    font-weight: 700;
    color: var(--secondary);
    text-decoration: none;
}

.logo-img {
    height: 48px;
    width: 48px;
    object-fit: contain;
}

.logo-text {
    color: var(--primary);
    font-weight: 800;
    letter-spacing: -0.5px;
}

.nav-menu {
    display: flex;
    list-style: none;
    align-items: center;
    gap: 2.5rem;
}

.nav-link {
    text-decoration: none;
    color: var(--gray-600);
    font-weight: 500;
    font-size: 0.9375rem;
    transition: color 0.2s;
    position: relative;
}

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

.dropdown {
    position: relative;
}

.login-btn {
    background: var(--primary);
    color: var(--white);
    border: none;
    padding: 0.625rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.9375rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.2s;
}

.login-btn:hover {
    background: var(--primary-dark);
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
}

.dropdown-menu {
    display: none;
    position: absolute;
    right: 0;
    top: 50px;
    background: var(--white);
    min-width: 200px;
    box-shadow: var(--shadow-lg);
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--gray-100);
}

.dropdown-menu a {
    color: var(--gray-700);
    padding: 0.875rem 1.25rem;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.9375rem;
    font-weight: 500;
    transition: all 0.2s;
}

.dropdown-menu a i {
    width: 20px;
    color: var(--primary);
}

.dropdown-menu a:hover {
    background: var(--gray-50);
    color: var(--primary);
}

.dropdown-menu.show {
    display: block;
    animation: fadeIn 0.2s ease;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--gray-700);
    cursor: pointer;
}

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

/* ================= HERO SECTION ================= */
.hero {
    background: linear-gradient(135deg, var(--gray-50) 0%, var(--primary-light) 100%);
    padding: 8rem 2rem 6rem;
    margin-top: 72px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: radial-gradient(circle at 80% 50%, rgba(14, 165, 183, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-left {
    animation: slideInLeft 0.8s ease;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 1.5rem;
    box-shadow: var(--shadow-sm);
}

.hero-title {
    font-size: 3rem;
    font-weight: 800;
    color: var(--secondary);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

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

.hero-subtitle {
    font-size: 1.125rem;
    color: var(--gray-600);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-keywords {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin: 0 0 2rem;
}

.hero-keywords span {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--white);
    color: var(--gray-700);
    border: 1px solid var(--gray-200);
    border-radius: 999px;
    padding: 0.5rem 0.875rem;
    font-size: 0.875rem;
    font-weight: 600;
    box-shadow: var(--shadow-sm);
}

.hero-keywords i {
    color: var(--primary);
}

.cta-btn {
    padding: 0.875rem 1.75rem;
    border: none;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 0.625rem;
    transition: all 0.2s;
    text-decoration: none;
}

.cta-btn.primary {
    background: var(--primary);
    color: var(--white);
}

.cta-btn.primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.cta-btn.secondary {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
}

.cta-btn.secondary:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-2px);
}

.cta-btn.large {
    padding: 1rem 2rem;
    font-size: 1.0625rem;
}

.hero-right {
    position: relative;
    animation: slideInRight 0.8s ease;
}

.hero-illustration {
    position: relative;
    margin-bottom: 2rem;
}

.dashboard-mockup {
    background: var(--white);
    border-radius: 16px;
    padding: 1rem;
    box-shadow: var(--shadow-lg);
    min-height: 400px;
    border: 1px solid var(--gray-200);
    overflow: hidden;
}

.mockup-header {
    display: flex;
    align-items: center;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--gray-200);
}

.mockup-dots {
    display: flex;
    gap: 0.5rem;
}

.mockup-dots span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--gray-300);
}

.mockup-dots span:nth-child(1) {
    background: #ff5f57;
}

.mockup-dots span:nth-child(2) {
    background: #ffbd2e;
}

.mockup-dots span:nth-child(3) {
    background: #28ca42;
}

.mockup-content {
    display: grid;
    grid-template-columns: 80px 1fr;
    gap: 1rem;
    padding: 1.5rem 0;
}

.mockup-sidebar {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.sidebar-item {
    height: 40px;
    background: var(--gray-100);
    border-radius: 8px;
    animation: pulse 2s ease-in-out infinite;
}

.sidebar-item:nth-child(1) {
    background: var(--primary-light);
}

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

.chart-area {
    background: var(--gray-50);
    border-radius: 12px;
    padding: 1.5rem;
    height: 200px;
    display: flex;
    align-items: flex-end;
}

.chart-bars {
    display: flex;
    align-items: flex-end;
    gap: 1rem;
    width: 100%;
    height: 100%;
}

.bar {
    flex: 1;
    background: linear-gradient(180deg, var(--primary) 0%, var(--primary-dark) 100%);
    border-radius: 8px 8px 0 0;
    animation: growBar 1s ease-out;
}

@keyframes growBar {
    from {
        height: 0;
    }
}

.stats-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.stat-box {
    height: 60px;
    background: var(--gray-100);
    border-radius: 8px;
    animation: pulse 2s ease-in-out infinite;
}

.stat-box:nth-child(2) {
    animation-delay: 0.2s;
}

.stat-box:nth-child(3) {
    animation-delay: 0.4s;
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.6;
    }
}

.floating-element {
    position: absolute;
    background: var(--white);
    width: 56px;
    height: 56px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-md);
    font-size: 1.5rem;
    color: var(--primary);
    animation: float 3s ease-in-out infinite;
}

.element-1 {
    top: 10%;
    right: -10px;
    animation-delay: 0s;
}

.element-2 {
    top: 50%;
    right: -20px;
    animation-delay: 1s;
}

.element-3 {
    bottom: 20%;
    left: -10px;
    animation-delay: 2s;
}

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

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
}

/* ================= TRUST AND LOCAL SEO ================= */
.trust {
    background: var(--white);
    border-bottom: 1px solid var(--gray-100);
    padding: 2rem;
}

.trust-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
}

.trust p {
    color: var(--secondary);
    font-size: 1.0625rem;
    font-weight: 700;
}

.trust ul {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    list-style: none;
}

.trust li,
.internal-links a {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--gray-700);
    background: var(--gray-50);
    border: 1px solid var(--gray-200);
    border-radius: 999px;
    padding: 0.625rem 0.875rem;
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
}

.trust li i {
    color: var(--accent);
}

.local-seo {
    padding: 5rem 2rem;
    background: var(--gray-50);
}

.internal-links {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.875rem;
}

.internal-links a:hover {
    color: var(--primary);
    border-color: var(--primary);
    background: var(--white);
}

.stat-card {
    background: var(--white);
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    text-align: center;
    transition: all 0.3s;
}

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

.stat-value {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
    margin-bottom: 0.5rem;
}

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

.hero-image-placeholder {
    background: var(--white);
    border-radius: 16px;
    padding: 2rem;
    box-shadow: var(--shadow-lg);
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-400);
    font-size: 1.125rem;
    border: 2px dashed var(--gray-200);
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* ================= FEATURES SECTION ================= */
.features {
    padding: 6rem 2rem;
    background: var(--white);
}

.features-container {
    max-width: 1200px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-badge {
    display: inline-block;
    background: var(--primary-light);
    color: var(--primary);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.section-title {
    font-size: 2rem;
    font-weight: 800;
    color: var(--secondary);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.section-subtitle {
    font-size: 1.0625rem;
    color: var(--gray-600);
    max-width: 600px;
    margin: 0 auto;
}

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

.feature-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid var(--gray-200);
    transition: all 0.3s;
    position: relative;
}

.feature-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary);
}

.feature-card.featured {
    border-color: var(--primary);
    background: linear-gradient(135deg, var(--gray-50) 0%, var(--primary-light) 100%);
}

.featured-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--primary);
    color: var(--white);
    padding: 0.375rem 0.75rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
}

.feature-icon {
    width: 64px;
    height: 64px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    color: var(--white);
    margin-bottom: 1.5rem;
}

.feature-icon.admin { background: var(--primary); }
.feature-icon.manager { background: var(--accent); }
.feature-icon.guest { background: #f59e0b; }
.feature-icon.kitchen { background: #ef4444; }
.feature-icon.waiter { background: #8b5cf6; }
.feature-icon.billing { background: #ec4899; }

.feature-card h3 {
    font-size: 1.375rem;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 0.75rem;
}

.feature-card p {
    color: var(--gray-600);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.feature-list {
    list-style: none;
    padding: 0;
}

.feature-list li {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    color: var(--gray-700);
    font-size: 0.9375rem;
    margin-bottom: 0.625rem;
}

.feature-list i {
    color: var(--accent);
    font-size: 0.875rem;
}

/* ================= BILLING SOFTWARE SECTION ================= */
.billing-section {
    padding: 6rem 2rem;
    background: var(--gray-50);
}

.billing-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
    gap: 3rem;
    align-items: center;
}

.billing-copy .section-title {
    text-align: left;
}

.billing-copy p {
    color: var(--gray-600);
    font-size: 1.0625rem;
    line-height: 1.75;
    margin-bottom: 1.5rem;
}

.seo-list {
    list-style: none;
    display: grid;
    gap: 0.875rem;
    margin: 0 0 2rem;
}

.seo-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    color: var(--gray-700);
    font-weight: 500;
}

.seo-list i {
    color: var(--accent);
    margin-top: 0.2rem;
}

.billing-panel {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
    padding: 1.5rem;
}

.billing-row {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    padding: 1rem;
    border-bottom: 1px solid var(--gray-100);
    color: var(--gray-600);
    font-weight: 600;
}

.billing-row:last-child {
    border-bottom: none;
}

.billing-row strong {
    color: var(--primary);
    text-align: right;
}

/* ================= ADDITIONAL FEATURES SECTION ================= */
.additional-features {
    padding: 6rem 2rem;
    background: var(--gray-50);
}

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

.simple-feature-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid var(--gray-200);
    text-align: center;
    transition: all 0.3s;
}

.simple-feature-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary);
}

.simple-icon {
    width: 56px;
    height: 56px;
    background: var(--primary-light);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--primary);
    margin: 0 auto 1.25rem;
}

.simple-feature-card h3 {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 0.625rem;
}

.simple-feature-card p {
    color: var(--gray-600);
    font-size: 0.9375rem;
    line-height: 1.5;
}

/* ================= BENEFITS SECTION ================= */
.benefits {
    padding: 6rem 2rem;
    background: var(--white);
}

.benefits-container {
    max-width: 1200px;
    margin: 0 auto;
}

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

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

.benefit-icon {
    width: 72px;
    height: 72px;
    background: var(--primary-light);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    color: var(--primary);
    margin: 0 auto 1.5rem;
}

.benefit-item h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 0.75rem;
}

.benefit-item p {
    color: var(--gray-600);
    font-size: 1rem;
}

/* ================= FAQ SECTION ================= */
.faq-section {
    padding: 6rem 2rem;
    background: var(--white);
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.5rem;
}

.faq-item {
    border: 1px solid var(--gray-200);
    border-radius: 12px;
    padding: 1.5rem;
    background: var(--white);
}

.faq-item h3 {
    color: var(--secondary);
    font-size: 1.0625rem;
    line-height: 1.4;
    margin-bottom: 0.75rem;
}

.faq-item p {
    color: var(--gray-600);
    font-size: 0.9375rem;
    line-height: 1.65;
}

/* ================= TERMS AND POLICIES SECTION ================= */
.terms-policies {
    padding: 6rem 2rem;
    background: var(--gray-50);
}

.terms-container {
    max-width: 900px;
    margin: 0 auto;
}

.accordion-container {
    margin-top: 3rem;
}

.accordion-item {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: 12px;
    margin-bottom: 1rem;
    overflow: hidden;
    transition: all 0.3s ease;
}

.accordion-item:hover {
    border-color: var(--primary);
}

.accordion-item.active {
    border-color: var(--primary);
    box-shadow: var(--shadow-sm);
}

.accordion-header {
    width: 100%;
    background: var(--white);
    border: none;
    padding: 1.25rem 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-size: 1.0625rem;
    font-weight: 600;
    color: var(--secondary);
    transition: all 0.3s ease;
    text-align: left;
}

.accordion-item.active .accordion-header {
    background: var(--gray-50);
    color: var(--primary);
}

.accordion-header:hover {
    background: var(--gray-50);
}

.accordion-icon {
    font-size: 1rem;
    color: var(--primary);
    transition: transform 0.3s ease;
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.accordion-body {
    padding: 1.5rem;
    color: var(--gray-700);
    line-height: 1.8;
}

.accordion-body p {
    margin-bottom: 1rem;
}

.accordion-body strong {
    color: var(--secondary);
    font-weight: 600;
}

.accordion-body ul {
    list-style: none;
    padding: 0;
    margin: 1rem 0;
}

.accordion-body ul li {
    padding: 0.75rem 0;
    padding-left: 1.5rem;
    position: relative;
    border-bottom: 1px solid var(--gray-100);
}

.accordion-body ul li:last-child {
    border-bottom: none;
}

.accordion-body ul li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: bold;
    font-size: 1.25rem;
}

.accordion-body a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s;
}

.accordion-body a:hover {
    color: var(--primary-dark);
    text-decoration: underline;
}

/* ================= CTA SECTION ================= */
.cta-section {
    padding: 6rem 2rem;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--white);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 50%, rgba(255,255,255,0.1) 0%, transparent 50%);
    pointer-events: none;
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.cta-content h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.125rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

/* ================= FOOTER ================= */
.footer {
    background: var(--secondary);
    color: var(--white);
    padding: 4rem 2rem 2rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr;
    gap: 4rem;
    margin-bottom: 3rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.375rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.footer-logo img {
    height: 36px;
}

.footer-desc {
    color: var(--gray-400);
    font-size: 0.9375rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.footer-section h4 {
    font-size: 1.0625rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--white);
}

.footer-section ul {
    list-style: none;
}

.footer-section li {
    margin-bottom: 0.875rem;
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.footer-section a {
    color: var(--gray-400);
    text-decoration: none;
    font-size: 0.9375rem;
    transition: color 0.2s;
}

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

.footer-section li i {
    margin-right: 0;
    color: var(--primary);
    flex-shrink: 0;
    margin-top: 0.25rem;
    font-size: 1rem;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid var(--gray-700);
    text-align: center;
    color: var(--gray-400);
    font-size: 0.9375rem;
}

/* ================= RESPONSIVE DESIGN ================= */
@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .hero-right {
        order: -1;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 72px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 72px);
        background: var(--white);
        flex-direction: column;
        padding: 2rem;
        gap: 1rem;
        transition: left 0.3s;
        box-shadow: var(--shadow-md);
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    .hero {
        padding: 5rem 1.5rem 4rem;
    }
    
    .hero-title {
        font-size: 2.25rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .features,
    .additional-features,
    .benefits,
    .billing-section,
    .faq-section,
    .local-seo,
    .terms-policies,
    .cta-section {
        padding: 4rem 1.5rem;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .features-grid,
    .features-grid-simple {
        grid-template-columns: 1fr;
    }

    .billing-container,
    .faq-grid {
        grid-template-columns: 1fr;
    }

    .trust-container {
        align-items: flex-start;
        flex-direction: column;
    }
    
    .accordion-header {
        font-size: 1rem;
        padding: 1rem 1.25rem;
    }
    
    .accordion-body {
        padding: 1.25rem;
        font-size: 0.9375rem;
    }
    
    .cta-content h2 {
        font-size: 1.875rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.875rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .cta-btn {
        width: 100%;
        justify-content: center;
    }
}
