/* Modern Landing Page CSS */
:root {
    /* Color Palette from Menu Side */
    --bg-main: #ffffff;
    --bg-secondary: #f5f5f5;
    --bg-glass: rgba(255, 255, 255, 0.85);
    --border-glass: rgba(0, 0, 0, 0.08);

    --text-primary: #1c1c1c;
    --text-secondary: #333333;

    --brand-primary: #f28306;
    --brand-secondary: #07033b;
    --brand-gradient: linear-gradient(135deg, var(--brand-primary), #ff9a30);

    --success: #10b981;

    /* Typography */
    --font-display: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;

    /* Layout */
    --nav-height: 80px;
    --container-max: 1200px;
    --transition-smooth: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

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

html {
    scroll-behavior: smooth;
}

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

/* Background Shapes */
.bg-shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    z-index: -1;
    opacity: 0.4;
    animation: pulse 10s infinite alternate ease-in-out;
}

.shape-1 {
    top: -10%;
    left: -10%;
    width: 600px;
    height: 600px;
    background: var(--brand-secondary);
}

.shape-2 {
    top: 40%;
    right: -15%;
    width: 500px;
    height: 500px;
    background: var(--brand-primary);
    animation-delay: -5s;
}

@keyframes pulse {
    0% {
        transform: scale(1) translate(0, 0);
        opacity: 0.3;
    }

    100% {
        transform: scale(1.1) translate(50px, 50px);
        opacity: 0.5;
    }
}

/* Container */
.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 24px;
}

/* Typography */
h1,
h2,
h3,
h4,
.logo {
    font-family: var(--font-display);
    font-weight: 700;
    line-height: 1.2;
}

.text-gradient {
    background: var(--brand-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: 50px;
    font-family: var(--font-body);
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: var(--transition-smooth);
    border: none;
    font-size: 1rem;
}

.btn-lg {
    padding: 16px 32px;
    font-size: 1.125rem;
}

.btn-primary {
    background: var(--brand-gradient);
    color: white;
    box-shadow: 0 10px 20px -10px var(--brand-primary);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 25px -10px var(--brand-primary);
    filter: brightness(1.1);
}

.btn-outline {
    background: transparent;
    color: var(--brand-secondary);
    border: 1px solid rgba(7, 3, 59, 0.2);
}

.btn-outline:hover {
    background: rgba(7, 3, 59, 0.05);
    border-color: rgba(7, 3, 59, 0.4);
    transform: translateY(-2px);
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--nav-height);
    z-index: 100;
    transition: var(--transition-smooth);
    display: flex;
    align-items: center;
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border-glass);
}

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

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-links a:not(.btn) {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition-smooth);
    font-size: 0.95rem;
}

.nav-links a:not(.btn):hover {
    color: var(--brand-secondary);
}

.mobile-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--brand-secondary);
    font-size: 1.5rem;
    cursor: pointer;
}

/* Dropdown */
.dropdown {
    position: relative;
    display: inline-block;
}

.dropbtn {
    background: none;
    color: var(--text-secondary);
    padding: 0;
    font-size: 0.95rem;
    border: none;
    cursor: pointer;
    font-family: var(--font-body);
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 4px;
    transition: var(--transition-smooth);
}

.dropbtn:hover {
    color: var(--brand-secondary);
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: var(--bg-main);
    min-width: 200px;
    box-shadow: 0px 8px 32px rgba(0, 0, 0, 0.1);
    border-radius: 12px;
    border: 1px solid var(--border-glass);
    z-index: 1;
    top: 100%;
    margin-top: 12px;
    padding: 8px;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s ease;
}

.dropdown:hover .dropdown-content {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

.dropdown-content a {
    color: var(--text-primary) !important;
    padding: 10px 16px;
    text-decoration: none;
    display: flex !important;
    align-items: center;
    gap: 10px;
    border-radius: 8px;
}

.dropdown-content a i {
    color: var(--brand-primary);
    font-size: 1.2rem;
}

.dropdown-content a:hover {
    background-color: rgba(0, 0, 0, 0.05);
}

/* Hero Section */
.hero {
    padding: calc(var(--nav-height) + 60px) 0 80px;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

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

.badge {
    display: inline-block;
    padding: 8px 16px;
    background: rgba(242, 131, 6, 0.1);
    color: var(--brand-primary);
    border: 1px solid rgba(242, 131, 6, 0.2);
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 24px;
}

.hero-content h1 {
    font-size: 4rem;
    margin-bottom: 24px;
    letter-spacing: -1px;
}

.hero-content p {
    font-size: 1.125rem;
    color: var(--text-secondary);
    margin-bottom: 40px;
    max-width: 500px;
}

.hero-actions {
    display: flex;
    gap: 16px;
    margin-bottom: 60px;
}

.stats-row {
    display: flex;
    gap: 40px;
}

.stat-item h3 {
    font-size: 2rem;
    color: var(--brand-secondary);
    margin-bottom: 4px;
}

.stat-item p {
    font-size: 0.875rem;
    color: var(--text-secondary);
    margin: 0;
}

/* Hero Visual & Mockup */
.hero-visual {
    position: relative;
    height: 600px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.mockup-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.glass-card {
    background: var(--bg-glass);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--border-glass);
    border-radius: 24px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.1);
}

.mockup-card {
    width: 320px;
    height: 520px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    z-index: 2;
}

.floating {
    animation: float 6s ease-in-out infinite;
}

.floating-delayed {
    animation: float 6s ease-in-out 3s infinite;
}

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

    50% {
        transform: translate(-50%, -50%) translateY(-20px);
    }

    100% {
        transform: translate(-50%, -50%) translateY(0px);
    }
}

.card-header {
    padding: 20px;
    border-bottom: 1px solid var(--border-glass);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.dots {
    position: absolute;
    left: 20px;
    display: flex;
    gap: 6px;
}

.dots span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.2);
}

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

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

.dots span:nth-child(3) {
    background: #27c93f;
}

.card-header .title {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-secondary);
}

.card-body {
    padding: 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.menu-item-skeleton {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    background: rgba(0, 0, 0, 0.03);
    border-radius: 12px;
}

.img-skeleton {
    width: 48px;
    height: 48px;
    border-radius: 8px;
    background: rgba(0, 0, 0, 0.1);
}

.text-skeleton {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.line {
    height: 8px;
    border-radius: 4px;
    background: rgba(0, 0, 0, 0.1);
    width: 100%;
}

.line.short {
    width: 60%;
}

.btn-skeleton {
    width: 24px;
    height: 24px;
    border-radius: 6px;
    background: var(--brand-primary);
    opacity: 0.8;
}

.call-waiter-btn {
    margin: 20px;
    padding: 16px;
    border-radius: 12px;
    border: none;
    background: var(--brand-secondary);
    color: white;
    font-family: var(--font-body);
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.call-waiter-btn i {
    color: #ffbd2e;
    font-size: 1.2rem;
}

.stat-card {
    position: absolute;
    top: 20%;
    right: 0;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 16px;
    transform: translate(0, 0) !important;
}

.stat-card i {
    font-size: 2.5rem;
    color: var(--success);
    background: rgba(16, 185, 129, 0.1);
    padding: 12px;
    border-radius: 12px;
}

.stat-card h4 {
    font-size: 0.875rem;
    color: var(--text-secondary);
    font-weight: 500;
}

.stat-card p {
    font-size: 1.5rem;
    font-weight: 700;
    font-family: var(--font-display);
    margin: 0;
}


/* Features Section */
.features {
    padding: 100px 0;
    background: var(--bg-secondary);
}

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

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 16px;
}

.section-header p {
    color: var(--text-secondary);
    font-size: 1.125rem;
}

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

.feature-card {
    background: var(--bg-secondary);
    padding: 40px 30px;
    border-radius: 20px;
    border: 1px solid var(--border-glass);
    transition: var(--transition-smooth);
}

.feature-card:hover {
    transform: translateY(-5px);
    background: var(--bg-main);
    border-color: rgba(242, 131, 6, 0.3);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.icon-wrapper {
    width: 60px;
    height: 60px;
    background: rgba(242, 131, 6, 0.1);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.icon-wrapper i {
    font-size: 1.75rem;
    color: var(--brand-primary);
}

.feature-card h3 {
    font-size: 1.25rem;
    margin-bottom: 12px;
}

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

/* Dashboard Preview Section */
.dashboard-preview {
    padding: 100px 0;
}

.preview-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    background: var(--bg-secondary);
    padding: 60px;
    border-radius: 30px;
    border: 1px solid var(--border-glass);
    position: relative;
    overflow: hidden;
}

.preview-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(242, 131, 6, 0.05) 0%, transparent 70%);
}

.preview-text h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.preview-text p {
    color: var(--text-secondary);
    font-size: 1.125rem;
    margin-bottom: 30px;
}

.check-list {
    list-style: none;
}

.check-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
    font-size: 1.05rem;
    color: var(--text-secondary);
}

.check-list li i {
    color: var(--success);
    font-size: 1.25rem;
}

.preview-image {
    perspective: 1000px;
}

.dash-mockup {
    width: 100%;
    height: 300px;
    background: #ffffff;
    border-radius: 16px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    box-shadow: -20px 20px 40px rgba(0, 0, 0, 0.1);
    transform: rotateY(-15deg) rotateX(5deg);
    display: flex;
    overflow: hidden;
}

.dash-sidebar {
    width: 60px;
    background: var(--brand-secondary);
    border-right: 1px solid rgba(0, 0, 0, 0.05);
}

.dash-main {
    flex: 1;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.dash-header {
    height: 20px;
    background: rgba(0, 0, 0, 0.05);
    border-radius: 4px;
    width: 40%;
}

.dash-widgets {
    display: flex;
    gap: 16px;
}

.widget {
    flex: 1;
    height: 60px;
    background: rgba(0, 0, 0, 0.03);
    border-radius: 8px;
    border: 1px solid rgba(0, 0, 0, 0.02);
}

.dash-chart {
    flex: 1;
    background: rgba(0, 0, 0, 0.03);
    border-radius: 8px;
    border: 1px solid rgba(0, 0, 0, 0.02);
    display: flex;
    align-items: flex-end;
    gap: 8px;
    padding: 16px;
}

.bar {
    flex: 1;
    background: var(--brand-primary);
    border-radius: 4px 4px 0 0;
    opacity: 0.8;
}

.h-40 {
    height: 40%;
}

.h-70 {
    height: 70%;
}

.h-50 {
    height: 50%;
}

.h-90 {
    height: 90%;
}

.h-60 {
    height: 60%;
}

.h-100 {
    height: 100%;
}

/* Trusted By Section */
.trusted-by {
    padding: 40px 0;
    border-bottom: 1px solid var(--border-glass);
    background: var(--bg-main);
    text-align: center;
}

.trusted-label {
    color: var(--text-secondary);
    font-size: 0.95rem;
    font-weight: 500;
    margin-bottom: 24px;
}

.logo-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
    opacity: 0.6;
}

.trust-logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 1.25rem;
    font-weight: 700;
    font-family: var(--font-display);
    color: var(--text-secondary);
    filter: grayscale(100%);
    transition: var(--transition-smooth);
}

.trust-logo:hover {
    filter: grayscale(0%);
    opacity: 1;
    color: var(--brand-secondary);
}

/* How It Works Section */
.how-it-works {
    padding: 100px 0;
    background: var(--bg-main);
}

.steps-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    position: relative;
    max-width: 100%;
    margin: 0 auto;
}

.step-card {

    text-align: center;
    position: relative;
    z-index: 2;
    padding: 0 20px;
}

.step-number {
    width: 40px;
    height: 40px;
    background: var(--brand-secondary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.25rem;
    margin: 0 auto 20px;
    box-shadow: 0 0 0 8px var(--bg-main);
}

.step-icon {
    width: 80px;
    height: 80px;
    background: rgba(242, 131, 6, 0.1);
    color: var(--brand-primary);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    margin: 0 auto 24px;
    transition: var(--transition-smooth);
}

.step-card:hover .step-icon {
    transform: translateY(-10px);
    background: var(--brand-primary);
    color: white;
    box-shadow: 0 15px 30px rgba(242, 131, 6, 0.2);
}

.step-card h3 {
    font-size: 1.25rem;
    margin-bottom: 12px;
}

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

.step-line {
    flex: 1;
    height: 2px;
    background: dashed 2px var(--border-glass);
    margin-top: 20px;
    position: relative;
    z-index: 1;
    min-width: 50px;
}

/* Integrations Section */
.integrations {
    padding: 60px 0 100px;
}

.integration-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    background: var(--brand-secondary);
    padding: 60px;
    border-radius: 30px;
    color: white;
}

.integration-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.integration-content p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.125rem;
    margin-bottom: 30px;
}

.integration-content .btn-outline {
    color: white;
    border-color: rgba(255, 255, 255, 0.3);
}

.integration-content .btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: white;
}

.integration-logos {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.int-logo {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    font-weight: 700;
    transition: var(--transition-smooth);
    gap: 8px;
}

.int-logo i {
    font-size: 2rem;
}

.int-logo:hover {
    background: white;
    color: var(--brand-secondary);
    transform: translateY(-5px);
}

/* Comparison Section */
.comparison {
    padding: 100px 0;
    background: var(--bg-main);
}

.comparison-table-wrapper {
    background: var(--bg-secondary);
    border-radius: 20px;
    border: 1px solid var(--border-glass);
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.05);
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
}

.comparison-table th,
.comparison-table td {
    padding: 24px 30px;
    border-bottom: 1px solid var(--border-glass);
}

.comparison-table th {
    font-family: var(--font-display);
    font-size: 1.25rem;
    color: var(--brand-secondary);
    background: rgba(0, 0, 0, 0.02);
}

.comparison-table .highlight-col {
    background: rgba(242, 131, 6, 0.05);
}

.comparison-table th.highlight-col {
    color: var(--brand-primary);
    background: rgba(242, 131, 6, 0.1);
}

.comparison-table tr:last-child td {
    border-bottom: none;
}

.success-icon {
    color: var(--success);
    font-size: 1.25rem;
    margin-right: 8px;
    vertical-align: text-bottom;
}

/* FAQ Section */
.faq {
    padding: 100px 0;
    background: var(--bg-secondary);
}

.faq-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.faq-item {
    background: var(--bg-main);
    padding: 30px;
    border-radius: 20px;
    border: 1px solid var(--border-glass);
}

.faq-item h3 {
    font-size: 1.25rem;
    margin-bottom: 12px;
    color: var(--brand-secondary);
}

.faq-item p {
    color: var(--text-secondary);
}

/* Pricing Section */
.pricing {
    padding: 100px 0;
    background: var(--bg-main);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.pricing-card {
    background: var(--bg-secondary);
    padding: 40px 30px;
    border-radius: 20px;
    border: 1px solid var(--border-glass);
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    border-color: rgba(242, 131, 6, 0.3);
}

.pricing-card h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: var(--brand-secondary);
}

.pricing-card .price {
    font-size: 3rem;
    font-weight: 700;
    font-family: var(--font-display);
    color: var(--text-primary);
    margin-bottom: 10px;
    display: flex;
    align-items: baseline;
}

.pricing-card .currency {
    font-size: 1.5rem;
    color: var(--text-secondary);
    margin-right: 4px;
}

.pricing-card .period {
    font-size: 1rem;
    color: var(--text-secondary);
    font-weight: 400;
}

.registration-fee {
    font-size: 0.9rem;
    color: var(--brand-primary);
    margin-bottom: 30px;
    font-weight: 600;
}

.pricing-features {
    list-style: none;
    margin-bottom: 40px;
    flex: 1;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
    color: var(--text-secondary);
}

.pricing-features li i {
    color: var(--brand-primary);
    font-size: 1.2rem;
}

.btn-full {
    width: 100%;
    justify-content: center;
}

/* CTA Section */
.cta {
    padding: 80px 0;
}

.cta-card {
    background: var(--brand-gradient);
    border-radius: 30px;
    padding: 80px 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml;utf8,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="1" fill="rgba(255,255,255,0.2)"/></svg>') repeat;
    opacity: 0.5;
}

.cta-card h2 {
    font-size: 3rem;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.cta-card p {
    font-size: 1.125rem;
    margin-bottom: 40px;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 1;
}

.cta-form {
    display: flex;
    gap: 12px;
    justify-content: center;
    max-width: 500px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.cta-form input {
    flex: 1;
    padding: 16px 24px;
    border-radius: 50px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    font-size: 1rem;
    font-family: var(--font-body);
    outline: none;
}

.cta-form .btn {
    background: var(--brand-secondary);
    color: white;
    box-shadow: none;
}

.cta-form .btn:hover {
    background: #000;
}

/* Footer */
footer {
    background: var(--brand-secondary);
    padding: 0px 0 0;
    border-top: 1px solid var(--border-glass);
    color: white;
}

.footer-container {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.7);
    margin-top: 20px;
    max-width: 300px;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.link-group h4 {
    font-size: 1.125rem;
    margin-bottom: 24px;
    color: white;
}

.link-group a {
    display: block;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    margin-bottom: 12px;
    transition: var(--transition-smooth);
}

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

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 24px 0;
    text-align: center;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 992px) {

    .hero-container,
    .preview-wrapper,
    .integration-wrapper,
    .footer-container {
        grid-template-columns: 1fr;
    }

    .steps-container {
        flex-direction: column;
        align-items: stretch;
        gap: 30px;
    }

    .step-line {
        display: none;
    }

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

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

    .hero-content p {
        margin: 0 auto 40px;
    }

    .hero-actions,
    .stats-row {
        justify-content: center;
    }

    .stat-card {
        display: none;
    }

    .preview-wrapper {
        padding: 40px 20px;
    }

    .footer-links {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--bg-secondary);
        flex-direction: column;
        padding: 20px;
        border-bottom: 1px solid var(--border-glass);
    }

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

    .mobile-toggle {
        display: block;
    }

    .dropdown-content {
        position: static;
        display: none;
        box-shadow: none;
        border: none;
        background: rgba(0, 0, 0, 0.05);
        margin-top: 10px;
    }

    .dropdown.active .dropdown-content {
        display: block;
    }

    .hero-content h1 {
        font-size: 3rem;
    }

    .comparison-table th,
    .comparison-table td {
        padding: 16px;
        font-size: 0.9rem;
    }

    .integration-logos {
        grid-template-columns: repeat(2, 1fr);
    }

    .cta-form {
        flex-direction: column;
    }
}