/* ============================================
   ALAMOai — Automation & Digital Optimization
   Nathan Scharfe would approve this.
   Stanford CS level. Pimp level. The standard.
   ============================================ */

:root {
    --navy: #0a0a1a;
    --navy-light: #0e0e22;
    --navy-card: #111128;
    --navy-card-hover: #161638;
    --gold: #C9A84C;
    --gold-light: #E8D48B;
    --gold-bright: #f0d87a;
    --gold-dim: rgba(201, 168, 76, 0.08);
    --gold-glow: rgba(201, 168, 76, 0.12);
    --gold-border: rgba(201, 168, 76, 0.1);
    --text: #c8c8d8;
    --text-dim: #7a7a90;
    --text-bright: #f0f0f8;
    --radius: 16px;
    --radius-sm: 10px;
    --radius-xs: 6px;
    --ease: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);
}

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

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    scroll-padding-top: 80px;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--navy);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
}

::selection {
    background: rgba(201, 168, 76, 0.3);
    color: var(--text-bright);
}

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

/* ---- GRADIENT TEXT ---- */
.gold-gradient {
    background: linear-gradient(135deg, var(--gold), var(--gold-light), var(--gold-bright), var(--gold));
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shimmer 4s ease infinite;
}

@keyframes shimmer {
    0%, 100% { background-position: 0% center; }
    50% { background-position: 200% center; }
}

/* ---- SECTION HEADERS ---- */
.section-header {
    text-align: center;
    margin-bottom: 64px;
}

.section-label {
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 16px;
    display: block;
}

.section-sub {
    font-size: 1.05rem;
    color: var(--text-dim);
    max-width: 520px;
    margin: -24px auto 0;
    line-height: 1.7;
    font-weight: 300;
}

h2 {
    font-family: 'EB Garamond', Georgia, serif;
    font-size: clamp(2rem, 4.5vw, 3.2rem);
    font-weight: 700;
    color: var(--text-bright);
    line-height: 1.15;
    margin-bottom: 48px;
    letter-spacing: -0.02em;
}

/* ---- PARTICLE CANVAS ---- */
#particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
    opacity: 0.6;
}

/* ---- NAV ---- */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(10, 10, 26, 0.6);
    backdrop-filter: blur(24px) saturate(180%);
    -webkit-backdrop-filter: blur(24px) saturate(180%);
    border-bottom: 1px solid rgba(201, 168, 76, 0.06);
    transition: all 0.4s var(--ease);
}

.nav.scrolled {
    background: rgba(10, 10, 26, 0.92);
    border-bottom-color: rgba(201, 168, 76, 0.12);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

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

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.logo-icon {
    display: flex;
    align-items: center;
    animation: logoPulse 3s ease infinite;
}

@keyframes logoPulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

.logo-alamo {
    font-family: 'EB Garamond', Georgia, serif;
    font-size: 1.4rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    background: linear-gradient(90deg, var(--gold), var(--gold-light), var(--gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.logo-ai {
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    font-weight: 300;
    font-style: italic;
    color: var(--gold-light);
    opacity: 0.8;
}

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

.nav-link {
    font-size: 0.82rem;
    font-weight: 400;
    color: var(--text-dim);
    text-decoration: none;
    letter-spacing: 0.03em;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--gold);
    transition: width 0.3s var(--ease);
}

.nav-link:hover {
    color: var(--text-bright);
}

.nav-link:hover::after {
    width: 100%;
}

.nav-cta {
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--navy);
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    padding: 10px 24px;
    border-radius: 100px;
    text-decoration: none;
    transition: all 0.3s var(--ease);
    letter-spacing: 0.02em;
}

.nav-cta:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 24px rgba(201, 168, 76, 0.35);
}

/* Mobile nav toggle */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.nav-toggle span {
    width: 22px;
    height: 1.5px;
    background: var(--gold);
    transition: all 0.3s ease;
    border-radius: 2px;
}

.nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(4px, 5px);
}

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(4px, -5px);
}

/* Mobile menu */
.mobile-menu {
    display: none;
    position: fixed;
    top: 56px;
    left: 0;
    right: 0;
    background: rgba(10, 10, 26, 0.97);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    padding: 24px;
    z-index: 999;
    flex-direction: column;
    gap: 4px;
    border-bottom: 1px solid var(--gold-border);
    transform: translateY(-10px);
    opacity: 0;
    transition: all 0.3s var(--ease);
    pointer-events: none;
}

.mobile-menu.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: all;
}

.mobile-link {
    font-size: 0.95rem;
    color: var(--text-dim);
    text-decoration: none;
    padding: 14px 16px;
    border-radius: var(--radius-sm);
    transition: all 0.2s ease;
}

.mobile-link:hover {
    color: var(--text-bright);
    background: var(--gold-dim);
}

.mobile-cta {
    color: var(--navy) !important;
    background: linear-gradient(135deg, var(--gold), var(--gold-light)) !important;
    text-align: center;
    font-weight: 500;
    margin-top: 8px;
}

/* ---- BUTTONS ---- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 32px;
    border-radius: 100px;
    font-size: 0.9rem;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.4s var(--ease);
    cursor: pointer;
    letter-spacing: 0.02em;
    position: relative;
    overflow: hidden;
}

.btn-gold {
    color: var(--navy);
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    border: none;
}

.btn-gold::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--gold-light), var(--gold-bright));
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: inherit;
}

.btn-gold:hover::before {
    opacity: 1;
}

.btn-gold:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(201, 168, 76, 0.35), 0 2px 8px rgba(201, 168, 76, 0.2);
}

.btn-gold span, .btn-gold svg {
    position: relative;
    z-index: 1;
}

.btn-outline {
    color: var(--text-dim);
    background: transparent;
    border: 1px solid rgba(201, 168, 76, 0.2);
}

.btn-outline:hover {
    color: var(--gold);
    border-color: var(--gold);
    background: rgba(201, 168, 76, 0.05);
    transform: translateY(-2px);
}

.btn-full { width: 100%; }

.btn-lg {
    padding: 18px 48px;
    font-size: 1.05rem;
    font-weight: 600;
}

/* ---- HERO ---- */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 24px 80px;
    overflow: hidden;
    z-index: 1;
}

/* Hero background photo */
.hero-bg-photo {
    position: absolute;
    inset: 0;
    z-index: -2;
    overflow: hidden;
}

.hero-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 60%;
    filter: brightness(0.45) contrast(1.2) saturate(1.15);
    animation: heroZoom 30s ease-in-out infinite alternate;
}

@keyframes heroZoom {
    0% { transform: scale(1); }
    100% { transform: scale(1.08); }
}

.hero-bg-photo-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            180deg,
            rgba(10, 10, 26, 0.5) 0%,
            rgba(10, 10, 26, 0.25) 30%,
            rgba(10, 10, 26, 0.3) 60%,
            rgba(10, 10, 26, 0.85) 85%,
            rgba(10, 10, 26, 1) 100%
        ),
        radial-gradient(
            ellipse at 20% 50%,
            rgba(10, 10, 26, 0.6) 0%,
            transparent 70%
        );
}

.hero-glow {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    z-index: -1;
}

.hero-glow-1 {
    top: -15%;
    right: -10%;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(201, 168, 76, 0.07) 0%, transparent 65%);
    animation: glowFloat 8s ease-in-out infinite;
}

.hero-glow-2 {
    bottom: -20%;
    left: -15%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(201, 168, 76, 0.04) 0%, transparent 65%);
    animation: glowFloat 10s ease-in-out infinite reverse;
}

@keyframes glowFloat {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(20px, -20px) scale(1.05); }
    66% { transform: translate(-15px, 15px) scale(0.97); }
}

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

/* Badge */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gold);
    background: rgba(201, 168, 76, 0.06);
    border: 1px solid rgba(201, 168, 76, 0.12);
    padding: 8px 20px;
    border-radius: 100px;
    margin-bottom: 32px;
    backdrop-filter: blur(10px);
}

.badge-dot {
    width: 6px;
    height: 6px;
    background: var(--gold);
    border-radius: 50%;
    animation: dotPulse 2s ease infinite;
}

@keyframes dotPulse {
    0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(201, 168, 76, 0.4); }
    50% { opacity: 0.6; box-shadow: 0 0 0 6px rgba(201, 168, 76, 0); }
}

/* Hero Typography */
.hero-title {
    font-family: 'EB Garamond', Georgia, serif;
    font-size: clamp(2.5rem, 6vw, 4.8rem);
    font-weight: 800;
    line-height: 1.08;
    color: var(--text-bright);
    margin-bottom: 24px;
    letter-spacing: -0.03em;
}

.hero-sub {
    font-size: clamp(1rem, 1.8vw, 1.2rem);
    color: var(--text-dim);
    max-width: 560px;
    margin-bottom: 40px;
    line-height: 1.75;
    font-weight: 300;
}

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

/* Hero Stats */
.hero-stats {
    display: flex;
    gap: 48px;
    align-items: center;
    flex-wrap: wrap;
    padding-top: 48px;
    border-top: 1px solid rgba(201, 168, 76, 0.08);
}

.stat-num, .stat-num-static {
    display: inline;
    font-family: 'EB Garamond', Georgia, serif;
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--gold);
    line-height: 1;
}

.stat-suffix {
    font-family: 'EB Garamond', Georgia, serif;
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--gold);
    line-height: 1;
}

.stat-label {
    font-size: 0.78rem;
    color: var(--text-dim);
    max-width: 200px;
    display: block;
    line-height: 1.5;
    margin-top: 8px;
}

.stat-divider {
    width: 1px;
    height: 48px;
    background: linear-gradient(180deg, transparent, rgba(201, 168, 76, 0.15), transparent);
}

/* ---- TICKER ---- */
.ticker {
    position: relative;
    z-index: 1;
    overflow: hidden;
    padding: 16px 0;
    background: var(--navy-light);
    border-top: 1px solid rgba(201, 168, 76, 0.06);
    border-bottom: 1px solid rgba(201, 168, 76, 0.06);
}

.ticker-track {
    display: flex;
    align-items: center;
    gap: 32px;
    white-space: nowrap;
    animation: tickerScroll 30s linear infinite;
    width: max-content;
}

.ticker-item {
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--text-dim);
}

.ticker-dot {
    width: 4px;
    height: 4px;
    background: var(--gold);
    border-radius: 50%;
    opacity: 0.5;
    flex-shrink: 0;
}

@keyframes tickerScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ---- PROBLEM ---- */
.problem {
    position: relative;
    z-index: 1;
    padding: 140px 0;
    background: var(--navy-light);
    overflow: hidden;
}

.problem::before {
    content: '';
    position: absolute;
    top: -200px;
    left: 50%;
    transform: translateX(-50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(201, 168, 76, 0.04) 0%, transparent 60%);
    pointer-events: none;
}

.problem-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.problem-card {
    position: relative;
    background: var(--navy-card);
    border: 1px solid var(--gold-border);
    border-radius: var(--radius);
    padding: 40px 32px;
    transition: all 0.5s var(--ease);
    overflow: hidden;
}

.card-glow {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    opacity: 0;
    transition: opacity 0.5s ease;
}

.problem-card:hover .card-glow {
    opacity: 1;
}

.problem-card:hover {
    border-color: rgba(201, 168, 76, 0.2);
    transform: translateY(-6px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3), 0 0 40px rgba(201, 168, 76, 0.03);
    background: var(--navy-card-hover);
}

.problem-icon {
    width: 52px;
    height: 52px;
    background: rgba(201, 168, 76, 0.06);
    border: 1px solid rgba(201, 168, 76, 0.1);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    transition: all 0.4s var(--ease);
}

.problem-card:hover .problem-icon {
    background: rgba(201, 168, 76, 0.1);
    border-color: rgba(201, 168, 76, 0.2);
    transform: scale(1.05);
}

.problem-card h3 {
    font-family: 'EB Garamond', Georgia, serif;
    font-size: 1.3rem;
    color: var(--text-bright);
    margin-bottom: 12px;
    letter-spacing: -0.01em;
}

.problem-card p {
    font-size: 0.9rem;
    color: var(--text-dim);
    line-height: 1.7;
}

/* ---- PRODUCTS ---- */
.products {
    position: relative;
    z-index: 1;
    padding: 140px 0;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 48px;
}

.product-card {
    position: relative;
    background: var(--navy-card);
    border: 1px solid var(--gold-border);
    border-radius: var(--radius);
    padding: 48px 28px 28px;
    transition: all 0.5s var(--ease);
    overflow: hidden;
}

.product-card-border {
    position: absolute;
    inset: -1px;
    border-radius: var(--radius);
    background: linear-gradient(135deg, transparent 40%, rgba(201, 168, 76, 0.2) 50%, transparent 60%);
    background-size: 300% 300%;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.5s ease;
    animation: borderShift 4s ease infinite;
}

@keyframes borderShift {
    0% { background-position: 0% 0%; }
    50% { background-position: 100% 100%; }
    100% { background-position: 0% 0%; }
}

.product-card:hover .product-card-border {
    opacity: 1;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35), 0 0 40px rgba(201, 168, 76, 0.04);
    background: var(--navy-card-hover);
}

.product-card:first-child {
    border-color: rgba(201, 168, 76, 0.2);
    box-shadow: 0 0 80px rgba(201, 168, 76, 0.04);
}

.product-tag {
    position: absolute;
    top: -1px;
    left: 28px;
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--navy);
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    padding: 5px 16px;
    border-radius: 0 0 var(--radius-xs) var(--radius-xs);
}

.product-icon-wrap {
    width: 56px;
    height: 56px;
    background: rgba(201, 168, 76, 0.06);
    border: 1px solid rgba(201, 168, 76, 0.1);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.product-card h3 {
    font-family: 'EB Garamond', Georgia, serif;
    font-size: 1.4rem;
    color: var(--text-bright);
    margin-bottom: 6px;
    letter-spacing: -0.01em;
}

.product-price {
    font-family: 'EB Garamond', Georgia, serif;
    font-size: 2.4rem;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 4px;
    line-height: 1.2;
}

.product-price span {
    font-size: 0.95rem;
    font-weight: 400;
    color: var(--text-dim);
}

.product-setup {
    font-size: 0.78rem;
    color: var(--text-dim);
    margin-bottom: 24px;
    font-weight: 400;
}

.product-features {
    list-style: none;
    margin-bottom: 28px;
}

.product-features li {
    font-size: 0.85rem;
    color: var(--text-dim);
    padding: 9px 0;
    padding-left: 22px;
    position: relative;
    border-bottom: 1px solid rgba(255, 255, 255, 0.025);
    transition: color 0.3s ease;
}

.product-features li:last-child {
    border-bottom: none;
}

.product-features li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 5px;
    height: 5px;
    background: var(--gold);
    border-radius: 50%;
    box-shadow: 0 0 6px rgba(201, 168, 76, 0.3);
}

.product-card:hover .product-features li {
    color: var(--text);
}

/* Bundle */
.bundle {
    position: relative;
    background: var(--navy-card);
    border: 1px solid rgba(201, 168, 76, 0.15);
    border-radius: var(--radius);
    padding: 48px;
    overflow: hidden;
}

.bundle-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(ellipse at center, rgba(201, 168, 76, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.bundle-content {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
}

.bundle-badge {
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gold);
    background: rgba(201, 168, 76, 0.1);
    border: 1px solid rgba(201, 168, 76, 0.15);
    padding: 4px 14px;
    border-radius: 100px;
    display: inline-block;
    margin-bottom: 12px;
}

.bundle-left h3 {
    font-family: 'EB Garamond', Georgia, serif;
    font-size: 1.8rem;
    color: var(--text-bright);
    margin-bottom: 8px;
}

.bundle-left p {
    font-size: 0.95rem;
    color: var(--text-dim);
}

.bundle-right {
    text-align: right;
}

.bundle-price {
    font-family: 'EB Garamond', Georgia, serif;
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--gold);
    line-height: 1;
    margin-bottom: 4px;
}

.bundle-price span {
    font-size: 1rem;
    font-weight: 400;
    color: var(--text-dim);
}

.bundle-setup {
    font-size: 0.8rem;
    color: var(--text-dim);
    margin-bottom: 16px;
}

/* ---- HOW IT WORKS ---- */
.how {
    position: relative;
    z-index: 1;
    padding: 140px 0;
    background: var(--navy-light);
}

.steps-grid {
    display: flex;
    align-items: stretch;
    gap: 0;
    justify-content: center;
}

.step {
    flex: 1;
    max-width: 340px;
    background: var(--navy-card);
    border: 1px solid var(--gold-border);
    border-radius: var(--radius);
    padding: 40px 28px;
    position: relative;
    transition: all 0.5s var(--ease);
}

.step:hover {
    transform: translateY(-6px);
    border-color: rgba(201, 168, 76, 0.2);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.step-num {
    font-family: 'EB Garamond', Georgia, serif;
    font-size: 3.5rem;
    font-weight: 800;
    background: linear-gradient(180deg, rgba(201, 168, 76, 0.2), rgba(201, 168, 76, 0.03));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 12px;
}

.step-line {
    width: 32px;
    height: 2px;
    background: linear-gradient(90deg, var(--gold), transparent);
    margin-bottom: 16px;
    border-radius: 2px;
}

.step h3 {
    font-family: 'EB Garamond', Georgia, serif;
    font-size: 1.35rem;
    color: var(--text-bright);
    margin-bottom: 12px;
}

.step p {
    font-size: 0.88rem;
    color: var(--text-dim);
    line-height: 1.7;
}

.step-connector {
    display: flex;
    align-items: center;
    width: 60px;
    position: relative;
    flex-shrink: 0;
}

.connector-line {
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, rgba(201, 168, 76, 0.15), rgba(201, 168, 76, 0.3), rgba(201, 168, 76, 0.15));
}

.connector-dot {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 8px;
    height: 8px;
    background: var(--gold);
    border-radius: 50%;
    box-shadow: 0 0 12px rgba(201, 168, 76, 0.4);
}

/* ---- RESULTS ---- */
.results {
    position: relative;
    z-index: 1;
    padding: 80px 0;
    background: linear-gradient(135deg, rgba(201, 168, 76, 0.04) 0%, var(--navy) 40%, var(--navy) 60%, rgba(201, 168, 76, 0.04) 100%);
    border-top: 1px solid rgba(201, 168, 76, 0.12);
    border-bottom: 1px solid rgba(201, 168, 76, 0.12);
    overflow: hidden;
}

.results::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 200px;
    background: radial-gradient(ellipse, rgba(201, 168, 76, 0.06) 0%, transparent 70%);
    pointer-events: none;
}

.results-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    text-align: center;
}

.result-item {
    padding: 24px 16px;
}

.result-num {
    font-family: 'EB Garamond', Georgia, serif;
    font-size: 3rem;
    font-weight: 700;
    color: var(--gold);
    line-height: 1;
    display: inline;
}

.result-suffix {
    font-family: 'EB Garamond', Georgia, serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--gold-light);
    opacity: 0.7;
}

.result-label {
    display: block;
    font-size: 0.82rem;
    color: var(--text-dim);
    margin-top: 12px;
    line-height: 1.5;
}

/* ---- INDUSTRIES ---- */
.industries {
    position: relative;
    z-index: 1;
    padding: 140px 0;
}

.industry-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.industry-card {
    background: var(--navy-card);
    border: 1px solid var(--gold-border);
    border-radius: var(--radius);
    padding: 28px 20px;
    text-align: center;
    transition: all 0.4s var(--ease);
    cursor: default;
}

.industry-card:hover {
    border-color: rgba(201, 168, 76, 0.25);
    background: var(--navy-card-hover);
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
}

.industry-icon {
    margin-bottom: 14px;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.industry-card:hover .industry-icon {
    opacity: 1;
}

.industry-card span {
    font-size: 0.82rem;
    font-weight: 500;
    color: var(--text-dim);
    letter-spacing: 0.02em;
    transition: color 0.3s ease;
}

.industry-card:hover span {
    color: var(--text-bright);
}

/* ---- ABOUT ---- */
.about {
    position: relative;
    z-index: 1;
    padding: 140px 0;
    background: var(--navy-light);
}

.about-inner {
    max-width: 680px;
}

.about-content {
    margin-top: -16px;
}

.about-text p {
    font-size: 1.02rem;
    color: var(--text-dim);
    line-height: 1.85;
    margin-bottom: 20px;
}

.about-founder {
    margin-top: 40px;
    padding-top: 32px;
    border-top: 1px solid rgba(201, 168, 76, 0.08);
    display: flex;
    align-items: center;
    gap: 18px;
}

.founder-avatar {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(201, 168, 76, 0.15), rgba(201, 168, 76, 0.05));
    border: 1px solid rgba(201, 168, 76, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.founder-initials {
    font-family: 'EB Garamond', Georgia, serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--gold);
}

.founder-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.founder-name {
    font-family: 'EB Garamond', Georgia, serif;
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--text-bright);
}

.founder-title {
    font-size: 0.8rem;
    color: var(--gold);
    letter-spacing: 0.06em;
}

.founder-loc {
    font-size: 0.75rem;
    color: var(--text-dim);
}

/* ---- FAQ ---- */
.faq {
    position: relative;
    z-index: 1;
    padding: 140px 0;
}

.faq-list {
    max-width: 700px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid rgba(201, 168, 76, 0.06);
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 24px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: color 0.3s ease;
}

.faq-question span {
    font-family: 'EB Garamond', Georgia, serif;
    font-size: 1.15rem;
    color: var(--text-bright);
    text-align: left;
}

.faq-chevron {
    flex-shrink: 0;
    transition: transform 0.3s var(--ease);
}

.faq-item.active .faq-chevron {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s var(--ease), padding 0.4s var(--ease);
}

.faq-item.active .faq-answer {
    max-height: 200px;
}

.faq-answer p {
    font-size: 0.92rem;
    color: var(--text-dim);
    line-height: 1.75;
    padding-bottom: 24px;
}

/* ---- BOOKING ---- */
.booking {
    position: relative;
    z-index: 1;
    padding: 140px 0;
    background: var(--navy-light);
    overflow: hidden;
}

.booking-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.booking-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 30%;
    filter: brightness(0.3) contrast(1.2) saturate(1.2);
}

.booking-bg-overlay {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at center, rgba(10, 10, 26, 0.5) 0%, rgba(10, 10, 26, 0.85) 70%),
        linear-gradient(180deg, rgba(10, 10, 26, 0.9) 0%, rgba(10, 10, 26, 0.4) 30%, rgba(10, 10, 26, 0.4) 70%, rgba(10, 10, 26, 0.95) 100%);
}

.booking-inner {
    position: relative;
    z-index: 2;
    max-width: 640px;
    margin: 0 auto;
    text-align: center;
    background: rgba(17, 17, 40, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(201, 168, 76, 0.18);
    border-radius: 24px;
    padding: 64px 48px;
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
}

.booking-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(ellipse at center, rgba(201, 168, 76, 0.04) 0%, transparent 50%);
    pointer-events: none;
}

.booking-inner .section-label {
    position: relative;
}

.booking h2 {
    font-family: 'EB Garamond', Georgia, serif;
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    color: var(--text-bright);
    margin-bottom: 16px;
    position: relative;
}

.booking p {
    font-size: 1rem;
    color: var(--text-dim);
    line-height: 1.75;
    margin-bottom: 12px;
    position: relative;
}

.booking-guarantee {
    font-size: 0.88rem !important;
    color: var(--gold) !important;
    font-weight: 500;
    margin-bottom: 28px !important;
}

.booking-note {
    font-size: 0.78rem !important;
    color: var(--text-dim) !important;
    margin-top: 16px !important;
    opacity: 0.7;
}

/* ---- FOOTER ---- */
.footer {
    position: relative;
    z-index: 1;
    padding: 48px 0 40px;
    border-top: 1px solid rgba(201, 168, 76, 0.06);
    background: var(--navy);
}

.footer-inner {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 32px;
}

.footer-logo {
    display: flex;
    align-items: baseline;
    gap: 2px;
    margin-bottom: 6px;
}

.footer-tagline {
    font-size: 0.65rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--text-dim);
    opacity: 0.6;
}

.footer-links {
    display: flex;
    gap: 28px;
}

.footer-links a {
    font-size: 0.8rem;
    color: var(--text-dim);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--gold);
}

.footer-info {
    text-align: right;
}

.footer-info p {
    font-size: 0.75rem;
    color: var(--text-dim);
    line-height: 1.8;
    opacity: 0.7;
}

/* ---- REVEAL ANIMATION ---- */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Stagger children */
.reveal:nth-child(2) { transition-delay: 0.08s; }
.reveal:nth-child(3) { transition-delay: 0.16s; }
.reveal:nth-child(4) { transition-delay: 0.24s; }
.reveal:nth-child(5) { transition-delay: 0.32s; }
.reveal:nth-child(6) { transition-delay: 0.4s; }
.reveal:nth-child(7) { transition-delay: 0.48s; }
.reveal:nth-child(8) { transition-delay: 0.56s; }

/* Hero animations */
.hero-badge, .hero-title, .hero-sub, .hero-actions, .hero-stats {
    opacity: 0;
    transform: translateY(24px);
    animation: heroReveal 0.9s var(--ease) forwards;
}

.hero-title { animation-delay: 0.1s; }
.hero-sub { animation-delay: 0.2s; }
.hero-actions { animation-delay: 0.35s; }
.hero-stats { animation-delay: 0.5s; }

@keyframes heroReveal {
    to { opacity: 1; transform: translateY(0); }
}

/* ---- RESPONSIVE ---- */
@media (max-width: 1024px) {
    .industry-grid { grid-template-columns: repeat(2, 1fr); }
    .results-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .hero { padding: 100px 24px 60px; }
    .hero-stats { gap: 24px; }
    .stat-divider { display: none; }
    .steps-grid { flex-direction: column; align-items: stretch; }
    .step-connector { width: auto; height: 40px; flex-direction: column; align-items: center; }
    .connector-line { width: 1px; height: 100%; }
    .step { max-width: none; }
    .problem-grid,
    .products-grid { grid-template-columns: 1fr; }
    .problem, .products, .how, .about, .booking, .faq, .industries { padding: 80px 0; }
    .results { padding: 48px 0; }
    .results-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
    .footer-inner { flex-direction: column; align-items: center; text-align: center; }
    .footer-info { text-align: center; }
    .footer-links { justify-content: center; }
    .hero-actions { flex-direction: column; }
    .btn:not(.btn-full) { width: 100%; }
    .nav-links { display: none; }
    .nav-cta { display: none; }
    .nav-toggle { display: flex; }
    .mobile-menu { display: flex; }
    .bundle-content { flex-direction: column; text-align: center; }
    .bundle-right { text-align: center; }
    .bundle { padding: 32px 24px; }
    .booking-inner { padding: 40px 24px; }
    .industry-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 480px) {
    .hero-title { font-size: 2.2rem; }
    h2 { font-size: 1.75rem; }
    .product-price { font-size: 2rem; }
    .result-num { font-size: 2.2rem; }
    .industry-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
    .industry-card { padding: 20px 12px; }
    .chatbot-window {
        right: 0 !important;
        bottom: 0 !important;
        width: 100vw !important;
        height: 100vh !important;
        border-radius: 0 !important;
    }
}

/* ---- CHATBOT WIDGET ---- */
.chatbot {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 9999;
    font-family: 'Inter', sans-serif;
}

.chatbot-toggle {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 24px rgba(201, 168, 76, 0.35), 0 2px 8px rgba(0, 0, 0, 0.3);
    transition: all 0.4s var(--ease);
    position: relative;
    color: var(--navy);
}

.chatbot-toggle:hover {
    transform: scale(1.08);
    box-shadow: 0 6px 32px rgba(201, 168, 76, 0.45), 0 4px 12px rgba(0, 0, 0, 0.3);
}

.chatbot-toggle-dot {
    position: absolute;
    top: 6px;
    right: 6px;
    width: 12px;
    height: 12px;
    background: #22c55e;
    border-radius: 50%;
    border: 2px solid var(--navy);
    animation: dotPulse 2s ease infinite;
}

.chatbot-window {
    position: absolute;
    bottom: 76px;
    right: 0;
    width: 380px;
    height: 500px;
    background: var(--navy-card);
    border: 1px solid rgba(201, 168, 76, 0.15);
    border-radius: 20px;
    display: none;
    flex-direction: column;
    overflow: hidden;
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.5), 0 0 40px rgba(201, 168, 76, 0.05);
    animation: chatSlideUp 0.4s var(--ease);
}

.chatbot-window.open {
    display: flex;
}

@keyframes chatSlideUp {
    from { opacity: 0; transform: translateY(16px) scale(0.96); }
    to { opacity: 1; transform: translateY(0) scale(1); }
}

.chatbot-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 20px;
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    color: var(--navy);
}

.chatbot-header-left {
    display: flex;
    align-items: center;
    gap: 10px;
}

.chatbot-avatar {
    width: 34px;
    height: 34px;
    background: rgba(10, 10, 26, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.chatbot-name {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--navy);
}

.chatbot-status {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 0.7rem;
    color: rgba(10, 10, 26, 0.7);
}

.chatbot-status-dot {
    width: 6px;
    height: 6px;
    background: #15803d;
    border-radius: 50%;
}

.chatbot-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--navy);
    cursor: pointer;
    opacity: 0.6;
    transition: opacity 0.2s;
    line-height: 1;
}

.chatbot-close:hover { opacity: 1; }

.chatbot-messages {
    flex: 1;
    padding: 20px 16px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.chatbot-messages::-webkit-scrollbar {
    width: 4px;
}

.chatbot-messages::-webkit-scrollbar-thumb {
    background: rgba(201, 168, 76, 0.2);
    border-radius: 4px;
}

.chat-msg {
    max-width: 85%;
    padding: 10px 16px;
    border-radius: 16px;
    font-size: 0.85rem;
    line-height: 1.5;
    animation: msgFade 0.3s var(--ease);
}

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

.chat-msg.bot {
    align-self: flex-start;
    background: rgba(201, 168, 76, 0.08);
    border: 1px solid rgba(201, 168, 76, 0.1);
    color: var(--text);
    border-bottom-left-radius: 4px;
}

.chat-msg.user {
    align-self: flex-end;
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    color: var(--navy);
    border-bottom-right-radius: 4px;
    font-weight: 500;
}

.chat-typing {
    display: flex;
    gap: 4px;
    padding: 12px 16px;
    align-self: flex-start;
}

.chat-typing span {
    width: 6px;
    height: 6px;
    background: var(--gold);
    border-radius: 50%;
    opacity: 0.4;
    animation: typingBounce 1.4s ease infinite;
}

.chat-typing span:nth-child(2) { animation-delay: 0.2s; }
.chat-typing span:nth-child(3) { animation-delay: 0.4s; }

@keyframes typingBounce {
    0%, 60%, 100% { transform: translateY(0); opacity: 0.4; }
    30% { transform: translateY(-6px); opacity: 1; }
}

.chatbot-input-area {
    display: flex;
    gap: 8px;
    padding: 12px 16px;
    border-top: 1px solid rgba(201, 168, 76, 0.08);
    background: rgba(10, 10, 26, 0.5);
}

.chatbot-input {
    flex: 1;
    background: rgba(201, 168, 76, 0.05);
    border: 1px solid rgba(201, 168, 76, 0.1);
    border-radius: 100px;
    padding: 10px 18px;
    font-size: 0.85rem;
    color: var(--text-bright);
    outline: none;
    font-family: 'Inter', sans-serif;
    transition: border-color 0.3s ease;
}

.chatbot-input::placeholder {
    color: var(--text-dim);
}

.chatbot-input:focus {
    border-color: rgba(201, 168, 76, 0.3);
}

.chatbot-send {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--navy);
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.chatbot-send:hover {
    transform: scale(1.05);
    box-shadow: 0 2px 12px rgba(201, 168, 76, 0.3);
}

/* Quick reply buttons */
.chat-quick-replies {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    padding: 4px 0;
    animation: msgFade 0.4s var(--ease);
}

.chat-quick-btn {
    font-family: 'Inter', sans-serif;
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--gold);
    background: rgba(201, 168, 76, 0.06);
    border: 1px solid rgba(201, 168, 76, 0.2);
    border-radius: 100px;
    padding: 7px 14px;
    cursor: pointer;
    transition: all 0.25s ease;
    white-space: nowrap;
}

.chat-quick-btn:hover {
    background: rgba(201, 168, 76, 0.12);
    border-color: var(--gold);
    color: var(--gold-light);
    transform: translateY(-1px);
}

/* ============================================
   TEXAS DESERT PHOTO DIVIDERS
   Full-width cinematic breaks between sections.
   Big Bend, West Texas, Chihuahuan Desert.
   ============================================ */
.texas-divider {
    position: relative;
    width: 100%;
    height: 400px;
    overflow: hidden;
    z-index: 1;
}

.texas-divider-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 40%;
    filter: brightness(0.55) contrast(1.15) saturate(1.1);
    transition: transform 12s ease;
    will-change: transform;
}

.texas-divider:hover .texas-divider-img {
    transform: scale(1.06);
}

.texas-divider-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(10, 10, 26, 1) 0%,
        rgba(10, 10, 26, 0.15) 15%,
        rgba(10, 10, 26, 0.0) 40%,
        rgba(10, 10, 26, 0.0) 60%,
        rgba(10, 10, 26, 0.15) 85%,
        rgba(10, 10, 26, 1) 100%
    );
    pointer-events: none;
}

@media (max-width: 768px) {
    .texas-divider {
        height: 250px;
    }
}

@media (min-width: 1400px) {
    .texas-divider {
        height: 500px;
    }
}

/* ============================================
   ALAMO LEGACY BANNER
   ============================================ */
.alamo-legacy {
    position: relative;
    width: 100%;
    overflow: hidden;
    margin: 0;
    padding: 0;
}

.alamo-legacy-inner {
    position: relative;
    width: 100%;
    height: 400px;
    overflow: hidden;
}

.alamo-legacy-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 30%;
    filter: sepia(0.3) contrast(1.1) brightness(0.7);
    transition: transform 8s ease;
}

.alamo-legacy:hover .alamo-legacy-img {
    transform: scale(1.05);
}

.alamo-legacy-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(10, 10, 26, 0.7) 0%,
        rgba(10, 10, 26, 0.3) 40%,
        rgba(10, 10, 26, 0.3) 60%,
        rgba(10, 10, 26, 0.8) 100%
    );
    display: flex;
    align-items: center;
    justify-content: center;
}

.alamo-legacy-text {
    text-align: center;
    padding: 2rem;
}

.alamo-legacy-quote {
    display: block;
    font-family: 'EB Garamond', serif;
    font-size: 3rem;
    font-weight: 700;
    color: var(--gold);
    text-shadow: 0 2px 20px rgba(0,0,0,0.8);
    letter-spacing: 0.04em;
    margin-bottom: 0.5rem;
}

.alamo-legacy-sub {
    display: block;
    font-family: 'Inter', sans-serif;
    font-size: 1.1rem;
    color: rgba(255,255,255,0.7);
    font-weight: 300;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

@media (max-width: 768px) {
    .alamo-legacy-inner { height: 280px; }
    .alamo-legacy-quote { font-size: 2rem; }
    .alamo-legacy-sub { font-size: 0.85rem; }
}

/* Founder image in About */
.founder-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

/* About section courthouse photo */
.about-photo {
    width: 100%;
    margin-bottom: 2rem;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
}

.about-courthouse-img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    object-position: center 40%;
    border-radius: 12px;
    filter: brightness(0.85) contrast(1.05);
    transition: transform 6s ease, filter 0.5s ease;
}

.about-photo:hover .about-courthouse-img {
    transform: scale(1.03);
    filter: brightness(0.9) contrast(1.1);
}

.about-photo::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 80px;
    background: linear-gradient(to top, var(--bg), transparent);
    border-radius: 0 0 12px 12px;
    pointer-events: none;
}

@media (max-width: 768px) {
    .about-courthouse-img {
        height: 200px;
    }
}

/* Meet Ryan In Person */
.meet-local {
    margin-top: 2.5rem;
    padding: 2rem;
    border: 1px solid rgba(201, 168, 76, 0.15);
    border-radius: 12px;
    background: rgba(201, 168, 76, 0.03);
}

.meet-local-title {
    font-family: 'EB Garamond', serif;
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 0.3rem;
}

.meet-local-desc {
    color: rgba(255,255,255,0.5);
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
}

.meet-options {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.meet-option {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.7rem 1.2rem;
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 8px;
    background: rgba(255,255,255,0.03);
    transition: border-color 0.3s ease, background 0.3s ease;
}

.meet-option:hover {
    border-color: var(--gold);
    background: rgba(201, 168, 76, 0.06);
}

.meet-icon {
    font-size: 1.3rem;
}

.meet-label {
    font-size: 0.9rem;
    font-weight: 500;
    color: rgba(255,255,255,0.8);
}

.meet-btn {
    display: inline-block;
    margin-top: 0.5rem;
}

@media (max-width: 768px) {
    .meet-options {
        flex-direction: column;
        gap: 0.8rem;
    }
    .meet-local {
        padding: 1.5rem;
    }
}
