/* landing2.css — new sections added on top of landing.css */

/* ─── FONT OVERRIDE — Inter for modern SaaS feel ─── */
body { font-family: 'Inter', 'Archivo', sans-serif; }
h1,h2,h3 { font-family: 'Cormorant Garamond', Georgia, serif; }

/* ─── ANNOUNCEMENT BAR ─── */
.ann-bar {
    background: linear-gradient(90deg, #1a1410 0%, #2d2520 50%, #1a1410 100%);
    border-bottom: 1px solid rgba(184,148,63,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 10px 20px;
    font-size: 0.78rem;
    color: var(--sand);
    letter-spacing: 0.03em;
    position: relative;
    z-index: 1000;
}
.ann-pill {
    background: var(--gold);
    color: var(--ink);
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    padding: 2px 7px;
    border-radius: 3px;
}
.ann-link {
    color: var(--gold);
    text-decoration: none;
    font-weight: 600;
    transition: opacity 0.2s;
}
.ann-link:hover { opacity: 0.75; }

/* ─── NAV ADDITIONS ─── */
.btn-sm { padding: 9px 18px; font-size: 0.78rem; }
.btn-lg { padding: 15px 32px; font-size: 0.9rem; }
.btn-ghost {
    background: transparent;
    color: var(--ink);
    border: 1.5px solid rgba(26,20,16,0.2);
    border-radius: 4px;
    padding: 12px 24px;
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    cursor: pointer;
    transition: border-color 0.2s, background 0.2s;
}
.btn-ghost:hover { border-color: var(--ink); background: rgba(26,20,16,0.04); }

/* Mobile nav toggle */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
}
.nav-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--ink);
    border-radius: 2px;
    transition: transform 0.3s, opacity 0.3s;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 768px) {
    .nav-toggle { display: flex; }
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--white);
        border-bottom: 1px solid rgba(0,0,0,0.08);
        flex-direction: column;
        padding: 16px 24px 20px;
        gap: 0;
        box-shadow: 0 8px 24px rgba(0,0,0,0.08);
    }
    .nav-links.open { display: flex; }
    .nav-links li { padding: 10px 0; border-bottom: 1px solid rgba(0,0,0,0.05); }

    /* Show Sign In in header; hide "Start Free Trial" (too wide) and
       "Enquire" (already present in the hamburger dropdown) */
    .nav-cta { display: flex; gap: 8px; align-items: center; }
    .nav-cta .btn-filled { display: none; }
    .nav-cta .btn-ghost { display: none; }
    .nav-cta .btn-sm { padding: 7px 14px; font-size: 0.72rem; letter-spacing: 0.06em; }

    /* CTA row at the bottom of the open hamburger menu */
    .mobile-nav-cta { display: flex !important; }
}

@media (min-width: 769px) {
    .mobile-nav-cta { display: none !important; }
}

/* ─── HERO ADDITIONS ─── */
.hero { position: relative; overflow: hidden; }
.hero-bg-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    pointer-events: none;
    z-index: 0;
}
.orb1 {
    width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(184,148,63,0.12) 0%, transparent 70%);
    top: -100px; right: -100px;
}
.orb2 {
    width: 400px; height: 400px;
    background: radial-gradient(circle, rgba(200,71,43,0.08) 0%, transparent 70%);
    bottom: 0; left: -80px;
}
.hero-left, .hero-right { position: relative; z-index: 1; }

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(184,148,63,0.1);
    border: 1px solid rgba(184,148,63,0.25);
    border-radius: 100px;
    padding: 6px 14px;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 20px;
}
.eyebrow-dot {
    width: 7px; height: 7px;
    background: var(--gold);
    border-radius: 50%;
    box-shadow: 0 0 6px var(--gold);
    animation: pulse-dot 2s infinite;
}
@keyframes pulse-dot {
    0%,100% { box-shadow: 0 0 4px var(--gold); }
    50% { box-shadow: 0 0 10px var(--gold); }
}

.hero-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-top: 24px;
}
.trust-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.78rem;
    color: var(--bark);
    font-weight: 500;
}
.trust-check {
    color: #16a34a;
    font-weight: 700;
}

.hero-card-wrap { position: relative; }
.hero-tag-float {
    position: absolute;
    background: #fff;
    border: 1px solid rgba(0,0,0,0.08);
    border-radius: 100px;
    padding: 8px 16px;
    font-size: 0.72rem;
    font-weight: 600;
    color: var(--ink);
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    white-space: nowrap;
    z-index: 10;
    animation: float-badge 3s ease-in-out infinite;
}
.hero-tag-float.t1 { top: -18px; right: 20px; animation-delay: 0s; }
.hero-tag-float.t2 { bottom: 60px; left: -20px; animation-delay: 1.5s; }
@keyframes float-badge {
    0%,100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

/* ─── STATS STRIP ─── */
.stats-strip {
    background: var(--ink);
    border-top: 1px solid rgba(255,255,255,0.06);
    border-bottom: 1px solid rgba(255,255,255,0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0;
    padding: 28px 40px;
}
.stat-item {
    text-align: center;
    padding: 0 48px;
}
.stat-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    font-weight: 600;
    color: var(--gold);
    line-height: 1;
    letter-spacing: -0.02em;
}
.stat-label {
    font-size: 0.72rem;
    color: rgba(255,255,255,0.4);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-top: 6px;
}
.stat-divider {
    width: 1px;
    height: 36px;
    background: rgba(255,255,255,0.1);
}
@media (max-width: 640px) {
    .stats-strip { gap: 20px; padding: 24px 20px; }
    .stat-item { padding: 0 20px; }
    .stat-divider { display: none; }
}

/* ─── CLIENTS SECTION ─── */
.clients-section {
    padding: 60px 0 40px;
    overflow: hidden;
}
.clients-label {
    text-align: center;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--bark);
    margin-bottom: 32px;
}
.clients-scroll-wrap {
    overflow: hidden;
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
    mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
}
.clients-track {
    display: flex;
    gap: 20px;
    width: max-content;
    animation: clients-scroll 30s linear infinite;
}
.clients-track:hover { animation-play-state: paused; }
@keyframes clients-scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}
.client-card {
    display: flex;
    align-items: center;
    gap: 12px;
    background: #fff;
    border: 1px solid rgba(0,0,0,0.07);
    border-radius: 12px;
    padding: 14px 22px;
    white-space: nowrap;
    transition: box-shadow 0.2s, transform 0.2s;
    cursor: default;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}
.client-card:hover {
    box-shadow: 0 6px 24px rgba(0,0,0,0.1);
    transform: translateY(-2px);
}
.client-avatar {
    width: 38px; height: 38px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 800;
    color: #fff;
    letter-spacing: 0.05em;
    flex-shrink: 0;
}
.client-name {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--ink);
}

/* ─── FEATURES GRID EXPANDED ─── */
.features-grid-lg {
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    max-width: 1120px;
}
.feat-icon-wrap {
    width: 44px; height: 44px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 14px;
    font-size: 1.2rem;
}
/* Override existing feat-card to use flex column */
.feat-card {
    display: flex;
    flex-direction: column;
}
.feat-card .feat-desc {
    flex: 1;
}

/* ─── TRIAL BADGE IN PRICING ─── */
.trial-badge {
    display: inline-block;
    background: linear-gradient(135deg, rgba(184,148,63,0.12), rgba(200,71,43,0.08));
    border: 1px solid rgba(184,148,63,0.3);
    border-radius: 8px;
    padding: 12px 24px;
    font-size: 0.82rem;
    font-weight: 500;
    color: var(--bark);
    margin-top: 16px;
}
.price-trial-tag {
    display: inline-block;
    background: rgba(22,163,74,0.1);
    color: #16a34a;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 4px 10px;
    border-radius: 100px;
    margin-bottom: 16px;
    border: 1px solid rgba(22,163,74,0.2);
}
.price-popular-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(90deg, var(--gold), var(--accent));
    color: #fff;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 5px 16px;
    border-radius: 100px;
    white-space: nowrap;
}
.price-limits {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(0,0,0,0.04);
    border-radius: 6px;
    padding: 8px 12px;
    font-size: 0.75rem;
    color: var(--bark);
    font-weight: 500;
    margin: 10px 0;
}
.price-card {
    display: flex;
    flex-direction: column;
    position: relative;
}
.price-card .btn {
    margin-top: auto;
}
.price-features li.muted {
    color: var(--sand);
    opacity: 0.55;
}
.pricing-footer-note {
    text-align: center;
    font-size: 0.78rem;
    color: var(--bark);
    margin-top: 40px;
}
.pricing-footer-note a {
    color: var(--gold);
    text-decoration: none;
}

/* ─── FAQ SECTION ─── */
.faq-section {
    padding: 100px 40px;
    max-width: 780px;
    margin: 0 auto;
}
.faq-header {
    text-align: center;
    margin-bottom: 52px;
}
.faq-list { display: flex; flex-direction: column; gap: 0; }
.faq-item {
    border-bottom: 1px solid rgba(0,0,0,0.08);
}
.faq-q {
    width: 100%;
    background: none;
    border: none;
    text-align: left;
    padding: 22px 0;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--ink);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    font-family: 'Inter', sans-serif;
    line-height: 1.4;
    transition: color 0.2s;
}
.faq-q:hover { color: var(--gold); }
.faq-arrow {
    font-size: 1.1rem;
    transition: transform 0.3s;
    flex-shrink: 0;
    color: var(--bark);
}
.faq-item.open .faq-arrow { transform: rotate(180deg); }
.faq-a {
    max-height: 0;
    overflow: hidden;
    font-size: 0.88rem;
    color: var(--bark);
    line-height: 1.7;
    transition: max-height 0.35s ease, padding 0.35s ease;
    padding: 0;
}
.faq-item.open .faq-a {
    max-height: 300px;
    padding-bottom: 20px;
}

/* ─── CTA SECTION ADDITIONS ─── */
.cta-section { position: relative; overflow: hidden; }
.cta-bg-orb {
    position: absolute;
    width: 600px; height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(184,148,63,0.08) 0%, transparent 70%);
    top: -200px; left: 50%;
    transform: translateX(-50%);
    pointer-events: none;
}

/* ─── FOOTER BADGES ─── */
.footer-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 16px;
}
.footer-badge {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 100px;
    padding: 4px 12px;
    font-size: 0.7rem;
    color: var(--sand);
}

/* ─── RESPONSIVE FIXES ─── */
@media (max-width: 900px) {
    .stats-strip { flex-wrap: wrap; gap: 24px; }
    .stat-divider { display: none; }
    .faq-section { padding: 60px 24px; }
}
@media (max-width: 600px) {
    .ann-bar { font-size: 0.7rem; flex-wrap: wrap; gap: 6px; }
    .hero-trust { gap: 10px; }
    .trust-item { font-size: 0.72rem; }
    .features-grid-lg { grid-template-columns: 1fr; }
    .client-card { padding: 10px 16px; }
    .client-name { font-size: 0.78rem; }
    .faq-q { font-size: 0.88rem; }
}

/* ═══════════════════════════════════════════════════════════
   BUSINESS SHOWCASE SECTION
   ═══════════════════════════════════════════════════════════ */
.biz-showcase {
    padding: 100px 48px;
    max-width: 1300px;
    margin: 0 auto;
}
.biz-header {
    text-align: center;
    margin-bottom: 64px;
}

/* ── Row 1: large featured card + 2 stacked ── */
.biz-row-1 {
    display: grid;
    grid-template-columns: 1.45fr 1fr;
    gap: 18px;
    margin-bottom: 18px;
}
.biz-stack {
    display: flex;
    flex-direction: column;
    gap: 18px;
}
.biz-hero-card { height: 480px; }
.biz-stack .biz-card { height: 231px; }

/* ── Rows 2 & 3: 4-column grids ── */
.biz-row-2,
.biz-row-3 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
    margin-bottom: 18px;
}
.biz-row-2 .biz-card,
.biz-row-3 .biz-card { height: 268px; }

/* ── Base card ── */
.biz-card {
    position: relative;
    border-radius: 22px;
    overflow: hidden;
    cursor: pointer;
    flex-shrink: 0;
}
.biz-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.65s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.biz-card:hover img { transform: scale(1.07); }

/* ── Overlay ── */
.biz-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top,
        rgba(12, 8, 4, 0.90) 0%,
        rgba(12, 8, 4, 0.38) 50%,
        transparent 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 22px;
    transition: background 0.3s;
}
.biz-card:hover .biz-overlay {
    background: linear-gradient(to top,
        rgba(12, 8, 4, 0.96) 0%,
        rgba(12, 8, 4, 0.58) 60%,
        rgba(12, 8, 4, 0.08) 100%);
}

.biz-emoji {
    font-size: 1.9rem;
    margin-bottom: 6px;
    display: block;
    transition: transform 0.3s;
}
.biz-card:hover .biz-emoji { transform: scale(1.18); }

.biz-overlay h3 {
    color: #fff;
    font-family: 'Inter', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    margin: 0 0 6px;
    line-height: 1.25;
}
.biz-hero-card .biz-overlay h3 {
    font-size: 1.65rem;
    font-family: 'Cormorant Garamond', serif;
    font-weight: 600;
}

.biz-overlay p {
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.76rem;
    line-height: 1.55;
    margin: 0 0 10px;
    opacity: 0;
    transform: translateY(9px);
    transition: opacity 0.28s, transform 0.28s;
}
.biz-card:hover .biz-overlay p {
    opacity: 1;
    transform: translateY(0);
}

.biz-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    opacity: 0;
    transform: translateY(9px);
    transition: opacity 0.28s 0.07s, transform 0.28s 0.07s;
}
.biz-card:hover .biz-tags {
    opacity: 1;
    transform: translateY(0);
}
.biz-tags span {
    background: rgba(255, 255, 255, 0.14);
    border: 1px solid rgba(255, 255, 255, 0.28);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    color: #fff;
    padding: 3px 10px;
    border-radius: 100px;
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.04em;
}

/* ── "& More" card ── */
.biz-more {
    background: linear-gradient(145deg, #1a1410 0%, #2d1810 50%, #1a2010 100%);
    border-radius: 22px;
    height: 268px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 24px 20px;
    text-align: center;
    border: 1px solid rgba(184, 148, 63, 0.18);
    transition: transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow 0.3s;
    cursor: default;
    position: relative;
    overflow: hidden;
}
.biz-more::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 50%,
        rgba(184, 148, 63, 0.08) 0%,
        transparent 70%);
    pointer-events: none;
}
.biz-more:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.4);
}
.biz-more-icons {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2px;
    margin-bottom: 14px;
    font-size: 1.2rem;
    line-height: 1.9;
}
.biz-more h3 {
    color: var(--cream);
    font-size: 1.15rem;
    font-family: 'Cormorant Garamond', serif;
    font-weight: 600;
    margin-bottom: 8px;
    line-height: 1.3;
}
.biz-more p {
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.42);
    line-height: 1.65;
    max-width: 200px;
}

/* ── Responsive ── */
@media (max-width: 1100px) {
    .biz-row-2,
    .biz-row-3 { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
    .biz-row-1 { grid-template-columns: 1fr; }
    .biz-hero-card { height: 340px; }
    .biz-stack { flex-direction: row; }
    .biz-stack .biz-card { flex: 1; height: 200px; }
    .biz-showcase { padding: 60px 24px; }
}

@media (max-width: 640px) {
    .biz-row-2,
    .biz-row-3 { grid-template-columns: 1fr 1fr; }
    .biz-row-2 .biz-card,
    .biz-row-3 .biz-card,
    .biz-more { height: 230px; }
    .biz-stack { flex-direction: column; }
    .biz-stack .biz-card { height: 200px; }
}

@media (max-width: 440px) {
    .biz-row-2,
    .biz-row-3 { grid-template-columns: 1fr; }
    .biz-showcase { padding: 40px 16px; }
    .biz-more { height: auto; min-height: 220px; padding: 28px 20px; }
}
