:root {
    --color-red: #EF4444;
    --color-orange: #F97316;
    --color-red-light: #FF5E5E;
    --color-orange-light: #FB923C;
    --color-red-soft: rgba(239, 68, 68, 0.1);
    --color-orange-soft: rgba(249, 115, 22, 0.1);
    --color-bg: #FFFFFF;
    --color-bg-alt: #F8FAFC;
    --color-text: #0F172A;
    --color-text-muted: #64748B;
    --color-white: #FFFFFF;

    --container-max: 1200px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

html {
    overflow-x: hidden;
}

body {
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    color: var(--color-text);
    background-color: var(--color-bg);
    line-height: 1.6;
    overflow-x: hidden;
    max-width: 100vw;
}

h1,
h2,
h3,
h4,
.logo-text,
.btn {
    font-family: 'Outfit', sans-serif;
}

ul {
    list-style: none;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 24px;
}

/* -- Buttons -- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    border-radius: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    gap: 8px;
    border: none;
}

.btn-sm {
    padding: 8px 16px;
    font-size: 0.875rem;
}

.btn-lg {
    padding: 16px 32px;
    font-size: 1.125rem;
}

.btn-full {
    width: 100%;
}

.btn-primary {
    background: linear-gradient(135deg, var(--color-red), var(--color-orange));
    color: var(--color-white);
    box-shadow: 0 4px 14px 0 rgba(239, 68, 68, 0.39);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px 0 rgba(239, 68, 68, 0.45);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--color-red);
    color: var(--color-red);
}

.btn-outline:hover {
    background: var(--color-red-soft);
    transform: translateY(-2px);
}

.btn-ghost {
    background: var(--color-bg-alt);
    color: var(--color-text);
}

.btn-ghost:hover {
    background: #E2E8F0;
}

/* -- Navbar & Header -- */
.header-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: var(--transition);
}

.navbar {
    width: 100%;
    padding: 20px 0;
    transition: var(--transition);
    background: transparent;
}

.header-wrapper.sticky .navbar {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    padding: 12px 0;
    box-shadow: var(--shadow-sm);
}

.container-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

#nav-logo {
    width: 40px;
    height: 40px;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--color-text);
    letter-spacing: -0.5px;
}

.logo-text span {
    color: var(--color-red);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 20px;
}

@media (max-width: 1200px) {
    .nav-links {
        gap: 12px;
    }

    .logo-text {
        font-size: 1.25rem;
    }
}

.nav-links a:not(.btn) {
    font-weight: 500;
    color: var(--color-text-muted);
}

.nav-links a:not(.btn):hover {
    color: var(--color-red);
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: var(--color-text);
    cursor: pointer;
    padding: 8px;
    border-radius: 8px;
    transition: var(--transition);
}

.mobile-menu-btn:hover {
    background: var(--color-bg-alt);
}

.mobile-menu-btn svg,
#close-mobile-menu svg {
    width: 26px;
    height: 26px;
    display: block;
}

/* -- Mobile Menu Overlay (Drawer) -- */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0);
    z-index: 2000;
    transition: background 0.35s ease;
    pointer-events: none;
}

.mobile-menu-overlay.active {
    background: rgba(0, 0, 0, 0.45);
    pointer-events: all;
}

.mobile-menu-content {
    position: absolute;
    top: 0;
    right: -100%;
    width: 75%;
    max-width: 320px;
    height: 100%;
    background: var(--color-bg);
    padding: 20px 20px;
    box-shadow: -4px 0 30px rgba(0, 0, 0, 0.15);
    transition: right 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    overflow-y: auto;
}

.mobile-menu-overlay.active .mobile-menu-content {
    right: 0;
}

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 32px;
    padding-bottom: 16px;
    border-bottom: 1px solid #E2E8F0;
}

#close-mobile-menu {
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-text);
    transition: var(--transition);
}

#close-mobile-menu:hover {
    background: var(--color-bg-alt);
}

.mobile-nav-links {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.mobile-nav-links a:not(.btn) {
    font-size: 1rem;
    font-weight: 600;
    padding: 12px 8px;
    border-radius: 10px;
    color: var(--color-text);
    display: block;
    transition: var(--transition);
}

.mobile-nav-links a:not(.btn):hover {
    background: var(--color-bg-alt);
    color: var(--color-red);
}

.mobile-nav-links .btn {
    margin-top: 4px;
    width: 100%;
    justify-content: center;
}

.mobile-nav-links hr {
    border: none;
    height: 1px;
    background: #E2E8F0;
    margin: 8px 0;
}

/* -- Global Headers -- */
.page-header-simple {
    padding: 180px 0 60px;
    background: transparent;
    color: var(--color-text);
    text-align: center;
}

.page-header-simple .container {
    max-width: 800px;
}

.page-header-simple h1 {
    font-size: 2.75rem;
    margin-bottom: 16px;
    font-weight: 800;
    letter-spacing: -0.5px;
}

.page-header-simple p {
    font-size: 1.25rem;
    color: var(--color-text-muted);
}

@media (max-width: 768px) {
    .page-header-simple {
        padding: 140px 0 40px;
    }

    .page-header-simple h1 {
        font-size: 2.25rem;
    }

    .page-header-simple p {
        font-size: 1.1rem;
    }
}

/* -- Hero Section -- */
.hero {
    padding: 180px 0 100px;
    background: radial-gradient(circle at top right, rgba(249, 115, 22, 0.05), transparent 40%),
        radial-gradient(circle at bottom left, rgba(239, 68, 68, 0.05), transparent 40%);
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: center;
}

.badge {
    display: inline-block;
    padding: 6px 16px;
    background: var(--color-red-soft);
    color: var(--color-red);
    border-radius: 99px;
    font-size: 0.875rem;
    font-weight: 700;
    margin-bottom: 24px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-content h1 {
    font-size: 4rem;
    line-height: 1.1;
    font-weight: 800;
    margin-bottom: 24px;
    color: var(--color-text);
}

.hero-content p {
    font-size: 1.25rem;
    color: var(--color-text-muted);
    margin-bottom: 40px;
    max-width: 540px;
}

.hero-ctas {
    display: flex;
    gap: 16px;
    margin-bottom: 60px;
}

.hero-stats {
    display: flex;
    align-items: center;
    gap: 40px;
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 2rem;
    font-weight: 800;
    color: var(--color-text);
    font-family: 'Outfit';
}

.stat-label {
    font-size: 0.875rem;
    color: var(--color-text-muted);
}

.stat-divider {
    width: 1px;
    height: 50px;
    background: #E2E8F0;
}

.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
}

.mockup-container {
    width: 100%;
    max-width: 380px;
    aspect-ratio: 9/18.5;
    background: #1e293b;
    border-radius: 44px;
    padding: 12px;
    box-shadow: var(--shadow-xl);
    border: 8px solid #334155;
    position: relative;
    overflow: hidden;
    transform: rotate(3deg);
}

.mockup-screen {
    width: 100%;
    height: 100%;
    background: white;
    border-radius: 30px;
    overflow: hidden;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.app-mockup-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.floating-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(8px);
    padding: 16px 20px;
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 10;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.floating-card strong {
    display: block;
    font-size: 1rem;
    color: var(--color-text);
}

.floating-card span {
    font-size: 0.875rem;
    color: var(--color-text-muted);
}

.info-card {
    top: 10%;
    left: -15%;
}

.success-card {
    bottom: 20%;
    right: -10%;
}

.color-red {
    color: var(--color-red);
}

.color-orange {
    color: var(--color-orange);
}

/* -- App Showcase Section -- */
.app-showcase {
    padding: 120px 0;
    background-color: var(--color-bg-alt);
}

.showcase-grid {
    display: grid;
    grid-template-columns: 350px 1fr;
    gap: 60px;
    align-items: start;
}

.showcase-visual {
    position: sticky;
    top: 100px;
}

.phone-mockup {
    width: 100%;
    aspect-ratio: 9/18.5;
    background: #1e293b;
    border-radius: 44px;
    padding: 12px;
    border: 6px solid #334155;
    box-shadow: var(--shadow-xl);
}

.phone-screen {
    width: 100%;
    height: 100%;
    background: white;
    border-radius: 30px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.phone-app-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.modules-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 20px;
}

.module-card {
    background: var(--color-white);
    padding: 24px;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: var(--shadow-sm);
}

.module-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--color-red-soft);
}

.module-icon {
    width: 48px;
    height: 48px;
    background: var(--color-bg-alt);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
}

.module-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.module-icon.fa-icon {
    color: var(--color-red);
    background: var(--color-red-soft);
}

.module-info h4 {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 6px;
    color: var(--color-text);
}

.module-info p {
    font-size: 0.9rem;
    color: var(--color-text-muted);
    line-height: 1.4;
}

.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

.section-header h2 {
    font-size: 2.75rem;
    font-weight: 800;
    margin-bottom: 16px;
    letter-spacing: -0.5px;
}

.section-header p {
    font-size: 1.25rem;
    color: var(--color-text-muted);
}

/* -- Client Menus Teaser -- */
.client-menus-teaser {
    padding: 100px 0;
    background-color: var(--color-bg);
}

.teaser-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.teaser-content h2 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 24px;
}

.teaser-content p {
    font-size: 1.25rem;
    color: var(--color-text-muted);
    margin-bottom: 48px;
}

.teaser-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 60px;
}

.teaser-item {
    background: var(--color-bg-alt);
    padding: 30px 20px;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    transition: var(--transition);
    border: 1px solid transparent;
}

.teaser-item:hover {
    transform: translateY(-8px);
    background: var(--color-white);
    border-color: var(--color-red-soft);
    box-shadow: var(--shadow-lg);
}

.teaser-item i {
    font-size: 2.5rem;
    background: linear-gradient(135deg, var(--color-red), var(--color-orange));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.teaser-item span {
    font-weight: 700;
    color: var(--color-text);
}

.text-center {
    text-align: center;
}

@media (max-width: 768px) {
    .teaser-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .teaser-content h2 {
        font-size: 2.5rem;
    }
}

/* -- Social Proof Section -- */
.social-proof {
    padding: 120px 0;
}

.proof-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.proof-visual {
    background: linear-gradient(135deg, var(--color-red), var(--color-orange));
    border-radius: 32px;
    padding: 60px;
    position: relative;
}

.revenue-chart-mockup {
    background: rgba(255, 255, 255, 0.95);
    padding: 30px;
    border-radius: 24px;
    box-shadow: var(--shadow-xl);
}

.chart-header {
    display: flex;
    flex-direction: column;
    margin-bottom: 24px;
}

.chart-header span {
    font-size: 0.875rem;
    color: var(--color-text-muted);
    font-weight: 500;
}

.chart-header strong {
    font-size: 1.5rem;
    color: #10B981;
    font-weight: 800;
}

.chart-bars {
    display: flex;
    align-items: flex-end;
    gap: 12px;
    height: 200px;
}

.bar {
    flex: 1;
    background: #E2E8F0;
    border-radius: 6px;
    transition: height 1s ease;
}

.bar.highlight {
    background: linear-gradient(to top, var(--color-red), var(--color-orange));
}

.proof-content h2 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 24px;
}

.proof-content p {
    font-size: 1.125rem;
    color: var(--color-text-muted);
    margin-bottom: 32px;
}

.benefit-list {
    margin-bottom: 40px;
}

.benefit-list li {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 16px;
}

.benefit-list li i {
    color: #10B981;
    flex-shrink: 0;
    margin-top: 4px;
}

.benefit-list li span {
    font-size: 1.1rem;
    color: var(--color-text);
    font-weight: 500;
}

/* -- PWA CTA -- */
.cta-banner {
    padding-bottom: 100px;
}

.cta-card {
    background: #0F172A;
    border-radius: 32px;
    padding: 80px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.cta-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(239, 68, 68, 0.2) 0%, transparent 70%);
}

.cta-text h2 {
    font-size: 3rem;
    margin-bottom: 24px;
}

.cta-text p {
    font-size: 1.25rem;
    color: #94A3B8;
    margin-bottom: 40px;
    max-width: 600px;
}

.pwa-steps {
    display: flex;
    gap: 24px;
}

.pwa-step {
    background: rgba(255, 255, 255, 0.1);
    padding: 12px 20px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 0.875rem;
}

#pwa-icon {
    width: 200px;
    height: 200px;
    filter: drop-shadow(0 0 20px rgba(239, 68, 68, 0.4));
    animation: float 6s ease-in-out infinite;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px);
    }
}

/* -- Footer -- */
.footer {
    background: var(--color-bg-alt);
    padding: 80px 0 40px;
    border-top: 1px solid #E2E8F0;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    gap: 64px;
    margin-bottom: 60px;
}

.footer-brand {
    max-width: 320px;
}

.footer-brand .logo {
    gap: 10px;
}

.footer-brand .logo img {
    height: 24px;
    flex-shrink: 0;
}

.footer-brand .logo .logo-text {
    font-size: 1rem;
}

.footer-brand p {
    margin: 24px 0;
    color: var(--color-text-muted);
}

.social-links {
    display: flex;
    gap: 16px;
}

.social-links a {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-text);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--color-red);
    color: white;
    transform: translateY(-3px);
}

.footer-nav {
    display: flex;
    gap: 60px;
}

.footer-col h4 {
    margin-bottom: 24px;
    font-size: 1.125rem;
}

.footer-col a {
    display: block;
    margin-bottom: 12px;
    color: var(--color-text-muted);
}

.footer-col a:hover {
    color: var(--color-red);
}

.contact-col p {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    color: var(--color-text-muted);
}

.footer-bottom {
    padding-top: 40px;
    border-top: 1px solid #E2E8F0;
    text-align: center;
    color: var(--color-text-muted);
    font-size: 0.875rem;
}

/* -- Responsive -- */
@media (max-width: 1024px) {
    .showcase-grid {
        grid-template-columns: 1fr;
    }

    .showcase-visual {
        position: relative;
        top: 0;
        margin-bottom: 40px;
        display: flex;
        justify-content: center;
    }

    .phone-mockup {
        max-width: 300px;
    }

    .hero-content h1 {
        font-size: 3.25rem;
    }

    .hero-grid {
        grid-template-columns: 1fr;
        gap: 80px;
        text-align: center;
    }

    .hero-content p {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-ctas {
        justify-content: center;
    }

    .hero-stats {
        justify-content: center;
    }

    .proof-grid {
        grid-template-columns: 1fr;
    }

    .proof-visual {
        order: 2;
    }

    .proof-content {
        text-align: center;
    }

    .benefit-list li {
        justify-content: center;
    }

    .hero-stats {
        flex-direction: column;
        gap: 24px;
        align-items: center;
    }

    .stat-divider {
        width: 100px;
        height: 1px;
    }
}

@media (max-width: 1100px) {
    .nav-links {
        display: none;
    }

    .mobile-menu-btn {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    /* Lucide icon sizes in navbar */
    .mobile-menu-btn svg {
        width: 28px;
        height: 28px;
    }

    #close-mobile-menu svg {
        width: 28px;
        height: 28px;
    }

    /* Tighten logo on mobile */
    .navbar {
        padding: 10px 0;
    }

    #nav-logo,
    .logo img {
        width: 32px !important;
        height: 32px !important;
    }

    .logo-text {
        font-size: 1.2rem;
    }

    /* Mobile nav links bigger touch targets */
    .mobile-nav-links a {
        font-size: 1.1rem;
        padding: 8px 0;
    }

    /* Contact info on mobile stacks properly */
    .contact-item {
        gap: 14px;
    }

    .contact-item .icon {
        width: 42px;
        height: 42px;
        font-size: 1rem;
        flex-shrink: 0;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-ctas {
        flex-direction: column;
        align-items: stretch;
    }

    .hero-visual {
        display: none;
    }

    .hero {
        padding: 140px 0 80px;
    }

    .floating-card {
        display: none;
    }

    .cta-card {
        flex-direction: column;
        padding: 40px 24px;
        text-align: center;
    }

    .cta-card::before {
        display: none;
    }

    .cta-image {
        margin-top: 40px;
    }

    .pwa-steps {
        flex-direction: column;
        align-items: center;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .proof-visual {
        padding: 30px;
    }

    .proof-content h2 {
        font-size: 2rem;
    }

    .modules-grid {
        grid-template-columns: 1fr;
    }

    .teaser-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-top {
        flex-direction: column;
        gap: 40px;
        text-align: center;
        align-items: center;
    }

    .footer-brand {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .footer-brand .logo {
        justify-content: center;
    }

    .footer-nav {
        flex-direction: column;
        gap: 40px;
        align-items: center;
    }

    .footer-col {
        text-align: center;
    }
}

/* -- Pricing Section -- */
.pricing-section {
    padding: 80px 0 120px;
    background: var(--color-bg);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.pricing-card {
    background: white;
    border-radius: 24px;
    padding: 40px;
    border: 1px solid #E2E8F0;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    position: relative;
    height: 100%;
}

.pricing-card.featured {
    border-color: var(--color-red);
    box-shadow: var(--shadow-xl);
    transform: scale(1.05);
    z-index: 1;
}

.pricing-card:hover {
    transform: translateY(-10px);
}

.pricing-card.featured:hover {
    transform: scale(1.05) translateY(-10px);
}

.plan-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    padding: 6px 12px;
    background: var(--color-red);
    color: white;
    border-radius: 99px;
    font-size: 0.75rem;
    font-weight: 700;
}

.plan-header h3 {
    font-size: 1.5rem;
    margin-bottom: 12px;
}

.plan-price {
    margin: 24px 0;
}

.plan-price .amount {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--color-text);
}

.plan-price .period {
    color: var(--color-text-muted);
    font-size: 1rem;
}

.plan-features {
    margin-bottom: 40px;
    flex-grow: 1;
}

.plan-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
    color: var(--color-text-muted);
}

.plan-features li i {
    color: #10B981;
}

/* -- Contact Section -- */
.contact-section {
    padding: 80px 0 120px;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 80px;
    align-items: start;
}

.contact-info h2 {
    font-size: 2.5rem;
    margin-bottom: 24px;
}

.contact-details {
    margin-top: 40px;
}

.contact-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.contact-item .icon {
    width: 50px;
    height: 50px;
    background: var(--color-red-soft);
    color: var(--color-red);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.contact-item h4 {
    margin-bottom: 4px;
}

.contact-form-container {
    background: white;
    padding: 40px;
    border-radius: 24px;
    box-shadow: var(--shadow-xl);
    border: 1px solid #E2E8F0;
}

.form-group {
    margin-bottom: 24px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--color-text);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px 20px;
    border: 1px solid #E2E8F0;
    border-radius: 12px;
    font-family: inherit;
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-red);
    box-shadow: 0 0 0 4px var(--color-red-soft);
}

@media (max-width: 1024px) {
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .pricing-card.featured {
        transform: none;
    }

    .pricing-card.featured:hover {
        transform: translateY(-10px);
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }
}

@media (max-width: 640px) {
    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .pricing-section {
        padding: 60px 0 80px;
    }

    .pricing-card {
        padding: 30px 20px;
    }

    .contact-section {
        padding: 60px 0 80px;
    }

    .contact-form-container {
        padding: 30px 20px;
    }

    .contact-info h2 {
        font-size: 2rem;
    }

    .cta-text h2 {
        font-size: 2rem;
    }

    .hero-content h1 {
        font-size: 2.25rem;
    }

    .container {
        padding: 0 16px;
    }

    .footer-nav {
        gap: 24px;
    }

    .btn-lg {
        padding: 14px 24px;
        font-size: 1rem;
    }
}

/* -- Premium Tiers -- */
.pricing-card.gold-tier {
    border: 2px solid #D4AF37;
    background: linear-gradient(to bottom, #ffffff, #fffdf0);
    box-shadow: 0 20px 40px rgba(212, 175, 55, 0.15);
}

.pricing-card.gold-tier h3 {
    color: #996515;
}

.btn-dark {
    background: #0F172A;
    color: white;
}

.btn-dark:hover {
    background: #1e293b;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

/* -- Cardápios / Parceiros Page -- */
.search-container {
    background: var(--color-white);
    padding: 30px;
    border-radius: 24px;
    box-shadow: var(--shadow-xl);
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    align-items: flex-end;
    margin-top: -50px;
    position: relative;
    z-index: 10;
    margin-bottom: 60px;
}

.search-field {
    flex: 1;
    min-width: 200px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.search-field label {
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--color-text);
}

.search-field input,
.search-field select {
    width: 100%;
    padding: 12px 16px;
    border: 1.5px solid #E2E8F0;
    border-radius: 12px;
    font-family: inherit;
    font-size: 1rem;
    color: var(--color-text);
    transition: var(--transition);
}

.search-field input:focus,
.search-field select:focus {
    outline: none;
    border-color: var(--color-red);
    box-shadow: 0 0 0 4px var(--color-red-soft);
}

.cardapios-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 30px;
    margin-bottom: 100px;
}

.cardapio-card {
    background: var(--color-white);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.cardapio-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.cardapio-banner {
    height: 180px;
    position: relative;
    overflow: hidden;
}

.cardapio-banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.cardapio-card:hover .cardapio-banner img {
    transform: scale(1.1);
}

.cardapio-logo {
    position: absolute;
    bottom: -25px;
    left: 20px;
    width: 60px;
    height: 60px;
    background: white;
    border-radius: 16px;
    padding: 10px;
    box-shadow: var(--shadow-md);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.cardapio-logo img {
    max-width: 100%;
    max-height: 100%;
    border-radius: 8px;
}

.cardapio-content {
    padding: 40px 24px 24px;
}

.cardapio-tag {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 800;
    color: var(--color-red);
    background: var(--color-red-soft);
    padding: 4px 12px;
    border-radius: 100px;
    margin-bottom: 12px;
}

.cardapio-content h3 {
    font-size: 1.25rem;
    margin-bottom: 8px;
}

.cardapio-info {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--color-text-muted);
    font-size: 0.9rem;
}

.cardapio-footer {
    padding: 16px 24px;
    border-top: 1px solid #F1F5F9;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #F8FAFC;
}

@media (max-width: 768px) {
    .search-container {
        padding: 20px;
        flex-direction: column;
        align-items: stretch;
    }

    .cardapios-grid {
        grid-template-columns: 1fr;
    }
}