/* ============================
   BlessedAI — Warm Noir Theme
   Typography: Bricolage Grotesque + Plus Jakarta Sans
   Palette: Warm gold/amber on deep dark
   ============================ */

:root {
    --bg-deep: #0c0c12;
    --bg-card: #141420;
    --bg-elevated: #1a1a28;
    --bg-alt: #0f0f18;
    --primary: #e8a838;
    --primary-dim: rgba(232, 168, 56, 0.12);
    --primary-glow: rgba(232, 168, 56, 0.25);
    --accent: #ff7a45;
    --text-main: #f2ede4;
    --text-muted: #8e8e9f;
    --text-dim: #5c5c6e;
    --success: #4ade80;
    --danger: #f87171;
    --border: rgba(242, 237, 228, 0.06);
    --border-hover: rgba(232, 168, 56, 0.3);
    --radius: 16px;
    --radius-sm: 10px;
    --radius-lg: 24px;
    --font-display: 'Bricolage Grotesque', sans-serif;
    --font-body: 'Plus Jakarta Sans', sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
    font-family: var(--font-body);
    background: var(--bg-deep);
    color: var(--text-main);
    line-height: 1.65;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* Ambient backgrounds */
.bg-noise {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    opacity: 0.04;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
    background-repeat: repeat;
    background-size: 256px 256px;
}

.bg-grid {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    opacity: 0.03;
    background-image:
        linear-gradient(var(--text-main) 1px, transparent 1px),
        linear-gradient(90deg, var(--text-main) 1px, transparent 1px);
    background-size: 60px 60px;
}

/* Layout */
.container {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 1.5rem;
    position: relative;
    z-index: 1;
}

.section {
    padding: 100px 0;
}

.section-alt {
    background: var(--bg-alt);
}

/* Scroll reveal */
.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.7s ease-out, transform 0.7s ease-out;
}

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

/* ========== TYPOGRAPHY ========== */
h1, h2, h3, h4 {
    font-family: var(--font-display);
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -0.02em;
}

h2 {
    font-size: clamp(2rem, 3.5vw, 2.8rem);
}

/* ========== BUTTONS ========== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.25s ease;
    white-space: nowrap;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: #0c0c12;
    box-shadow: 0 4px 20px var(--primary-glow);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px var(--primary-glow);
}

.btn-ghost {
    background: transparent;
    border: 1.5px solid var(--border-hover);
    color: var(--text-main);
}

.btn-ghost:hover {
    background: var(--primary-dim);
    border-color: var(--primary);
}

.btn-sm {
    padding: 10px 20px;
    font-size: 0.88rem;
}

.btn-lg {
    padding: 18px 36px;
    font-size: 1.05rem;
}

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

/* ========== NAVIGATION ========== */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(12, 12, 18, 0.75);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border);
}

.nav-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 72px;
}

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

.logo-img {
    width: 34px;
    height: 34px;
    border-radius: 8px;
    object-fit: cover;
    border: 1px solid var(--border);
}

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

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: color 0.2s;
}

.nav-links a:hover {
    color: var(--primary);
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.hamburger span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--text-main);
    border-radius: 2px;
    transition: all 0.3s;
}

.hamburger.open span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.open span:nth-child(2) {
    opacity: 0;
}

.hamburger.open span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

.mobile-menu {
    display: none;
    flex-direction: column;
    padding: 1rem 1.5rem 1.5rem;
    background: rgba(12, 12, 18, 0.95);
    border-bottom: 1px solid var(--border);
}

.mobile-menu.open {
    display: flex;
}

.mobile-menu a {
    color: var(--text-muted);
    text-decoration: none;
    padding: 0.75rem 0;
    font-size: 0.95rem;
    font-weight: 500;
    border-bottom: 1px solid var(--border);
}

.mobile-menu a:hover {
    color: var(--primary);
}

/* ========== HERO ========== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 72px;
    overflow: hidden;
}

.hero-glow {
    position: absolute;
    width: 700px;
    height: 700px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(232, 168, 56, 0.06) 0%, transparent 70%);
    top: -250px;
    right: -200px;
    animation: glow-pulse 6s ease-in-out infinite;
}

.hero-glow-2 {
    position: absolute;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 122, 69, 0.04) 0%, transparent 70%);
    bottom: -100px;
    left: -150px;
    animation: glow-pulse 8s ease-in-out infinite 2s;
}

@keyframes glow-pulse {
    0%, 100% { transform: scale(1); opacity: 0.6; }
    50% { transform: scale(1.15); opacity: 1; }
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-content {
    max-width: 560px;
}

.badge-origin {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    background: var(--primary-dim);
    border: 1px solid rgba(232, 168, 56, 0.2);
    color: var(--primary);
    border-radius: 100px;
    font-size: 0.82rem;
    font-weight: 600;
    margin-bottom: 1.75rem;
    letter-spacing: 0.02em;
}

.hero h1 {
    font-size: clamp(2.6rem, 4.5vw, 3.6rem);
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: var(--text-main);
}

.gradient-text {
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-sub {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
    line-height: 1.7;
}

.hero-btns {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    align-items: center;
}

.hero-learn-more {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.92rem;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: color 0.2s;
    padding: 14px 0;
}

.hero-learn-more:hover {
    color: var(--primary);
}

.hero-learn-more i {
    transition: transform 0.2s;
}

.hero-learn-more:hover i {
    transform: translateY(3px);
}

.hero-stats {
    display: flex;
    gap: 1rem;
    margin-top: 3rem;
    flex-wrap: wrap;
}

.stat-pill {
    display: flex;
    align-items: center;
    gap: 12px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    padding: 14px 18px;
    border-radius: var(--radius);
    transition: all 0.3s;
}

.stat-pill:hover {
    border-color: var(--border-hover);
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.stat-icon {
    width: 44px;
    height: 44px;
    background: var(--primary-dim);
    color: var(--primary);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}

.stat-num {
    display: block;
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 1.3rem;
    line-height: 1.2;
}

.stat-label {
    display: block;
    color: var(--text-muted);
    font-size: 0.8rem;
    font-weight: 500;
}

/* ========== CHAT MOCKUP ========== */
.hero-visual {
    position: relative;
}

.chat-mockup {
    position: relative;
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    overflow: hidden;
    box-shadow:
        0 30px 60px rgba(0, 0, 0, 0.4),
        0 0 0 1px rgba(232, 168, 56, 0.05);
}

.chat-glow {
    position: absolute;
    inset: -2px;
    border-radius: var(--radius-lg);
    background: linear-gradient(135deg, var(--primary-glow), transparent 50%, rgba(255, 122, 69, 0.15));
    z-index: -1;
    opacity: 0.5;
    filter: blur(1px);
}

.chat-header {
    padding: 18px 22px;
    background: rgba(255, 255, 255, 0.02);
    border-bottom: 1px solid var(--border);
    display: flex;
    align-items: center;
    gap: 12px;
}

.chat-avatar {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    object-fit: cover;
}

.chat-name {
    font-weight: 600;
    font-size: 0.95rem;
}

.chat-status {
    font-size: 0.78rem;
    color: var(--success);
    display: flex;
    align-items: center;
    gap: 6px;
}

.status-dot {
    width: 7px;
    height: 7px;
    background: var(--success);
    border-radius: 50%;
    display: inline-block;
    animation: dot-pulse 2s ease-in-out infinite;
}

@keyframes dot-pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.4; }
}

.chat-body {
    padding: 22px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    min-height: 300px;
}

.msg {
    padding: 12px 16px;
    border-radius: 14px;
    font-size: 0.9rem;
    max-width: 88%;
    line-height: 1.55;
}

.user-msg {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: #0c0c12;
    font-weight: 500;
    align-self: flex-end;
    border-bottom-right-radius: 4px;
}

.ai-msg {
    background: var(--bg-elevated);
    color: var(--text-main);
    align-self: flex-start;
    border-bottom-left-radius: 4px;
    border: 1px solid var(--border);
}

/* Typing dots */
.typing-box {
    overflow: hidden;
    max-height: 0;
    opacity: 0;
    padding: 0 !important;
    margin: 0;
    border: none !important;
}

.typing-dots {
    display: flex;
    gap: 4px;
    padding: 4px 0;
}

.typing-dots span {
    width: 6px;
    height: 6px;
    background: var(--text-muted);
    border-radius: 50%;
    animation: bounce-dot 1s infinite alternate;
}

.typing-dots span:nth-child(2) { animation-delay: 0.15s; }
.typing-dots span:nth-child(3) { animation-delay: 0.3s; }

@keyframes bounce-dot {
    0% { transform: translateY(0); opacity: 0.4; }
    100% { transform: translateY(-4px); opacity: 1; }
}

/* Chat animation sequence — 24s loop */
.chat-mockup .msg {
    opacity: 0;
    max-height: 0;
    padding: 0;
    margin: 0;
}

.hero-visual.active .seq-1 { animation: s1 24s infinite; }
.hero-visual.active .seq-2 { animation: s2 24s infinite; }
.hero-visual.active .seq-3 { animation: s3 24s infinite; }
.hero-visual.active .seq-4 { animation: s4 24s infinite; }
.hero-visual.active .seq-5 { animation: s5 24s infinite; }
.hero-visual.active .seq-6 { animation: s6 24s infinite; }

@keyframes s1 {
    0%, 90% { max-height: 200px; opacity: 1; padding: 12px 16px; margin: 0; }
    95%, 100% { max-height: 0; opacity: 0; padding: 0; margin: 0; }
}
@keyframes s2 {
    0%, 5% { max-height: 0; opacity: 0; padding: 0; margin: 0; }
    7%, 12% { max-height: 50px; opacity: 1; padding: 12px 16px; margin: 0; }
    14%, 100% { max-height: 0; opacity: 0; padding: 0; margin: 0; }
}
@keyframes s3 {
    0%, 12% { max-height: 0; opacity: 0; padding: 0; margin: 0; }
    14%, 90% { max-height: 300px; opacity: 1; padding: 12px 16px; margin: 0; }
    95%, 100% { max-height: 0; opacity: 0; padding: 0; margin: 0; }
}
@keyframes s4 {
    0%, 28% { max-height: 0; opacity: 0; padding: 0; margin: 0; }
    30%, 90% { max-height: 200px; opacity: 1; padding: 12px 16px; margin: 0; }
    95%, 100% { max-height: 0; opacity: 0; padding: 0; margin: 0; }
}
@keyframes s5 {
    0%, 31% { max-height: 0; opacity: 0; padding: 0; margin: 0; }
    33%, 40% { max-height: 50px; opacity: 1; padding: 12px 16px; margin: 0; }
    42%, 100% { max-height: 0; opacity: 0; padding: 0; margin: 0; }
}
@keyframes s6 {
    0%, 40% { max-height: 0; opacity: 0; padding: 0; margin: 0; }
    42%, 90% { max-height: 300px; opacity: 1; padding: 12px 16px; margin: 0; }
    95%, 100% { max-height: 0; opacity: 0; padding: 0; margin: 0; }
}

/* ========== INTEGRATIONS ========== */
.integrations {
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    background: rgba(0, 0, 0, 0.25);
    padding: 28px 0;
}

.integrations-label {
    text-align: center;
    color: var(--text-dim);
    font-size: 0.82rem;
    font-weight: 500;
    margin-bottom: 18px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.integrations-row {
    display: flex;
    justify-content: center;
    gap: 2.5rem;
    flex-wrap: wrap;
    align-items: center;
}

.int-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--text-muted);
    transition: color 0.2s;
}

.int-item:hover {
    color: var(--text-main);
}

.int-item i {
    font-size: 1.3rem;
}

/* ========== SECTION HEADERS ========== */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-tag {
    display: inline-block;
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    margin-bottom: 0.75rem;
}

.section-header p {
    color: var(--text-muted);
    font-size: 1.05rem;
    margin-top: 0.75rem;
}

.pricing-context {
    color: var(--primary);
    font-weight: 600;
    font-size: 0.95rem;
}

/* ========== SPOTLIGHT EFFECT ========== */
.service-card, .bento-item, .price-card, .why-card, .testimonial-card, .comparison-card {
    position: relative;
    overflow: hidden;
    --mouse-x: 50%;
    --mouse-y: 50%;
}

.service-card *, .bento-item *, .price-card *, .why-card *, .testimonial-card *, .comparison-card * {
    position: relative;
    z-index: 1;
}

.service-card::after, .bento-item::after, .price-card::after, .why-card::after, .testimonial-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(
        600px circle at var(--mouse-x) var(--mouse-y),
        rgba(232, 168, 56, 0.15),
        transparent 40%
    );
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
    z-index: 0;
}

.service-card:hover::after, .bento-item:hover::after, .price-card:hover::after, .why-card:hover::after, .testimonial-card:hover::after {
    opacity: 1;
}

/* ========== SERVICES ========== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.service-card {
    background: var(--bg-card);
    padding: 2.25rem;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    transition: all 0.35s ease;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    opacity: 0;
    transition: opacity 0.35s;
}

.service-card:hover {
    transform: translateY(-6px);
    border-color: var(--border-hover);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.25);
}

.service-card:hover::before {
    opacity: 1;
}

.service-icon {
    width: 56px;
    height: 56px;
    background: var(--primary-dim);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: var(--primary);
    font-size: 1.5rem;
}

.service-card h3 {
    font-size: 1.3rem;
    margin-bottom: 0.75rem;
}

.service-card p {
    color: var(--text-muted);
    font-size: 0.92rem;
    line-height: 1.65;
}

.service-tags {
    display: flex;
    gap: 8px;
    margin-top: 1.5rem;
    flex-wrap: wrap;
}

.service-tags span {
    font-size: 0.75rem;
    font-weight: 600;
    padding: 4px 12px;
    border-radius: 100px;
    background: rgba(232, 168, 56, 0.08);
    color: var(--primary);
    border: 1px solid rgba(232, 168, 56, 0.15);
}

/* ========== TRUST STRIP ========== */
.trust-strip {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    flex-wrap: wrap;
    padding: 2.5rem 3rem;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
}

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

.trust-num {
    display: block;
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 2rem;
    color: var(--primary);
    line-height: 1.2;
}

.trust-label {
    display: block;
    color: var(--text-muted);
    font-size: 0.85rem;
    font-weight: 500;
    margin-top: 4px;
}

.trust-divider {
    width: 1px;
    height: 48px;
    background: var(--border);
}

/* ========== COMPARISON / BEFORE-AFTER ========== */
.comparison-grid {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 1.5rem;
    align-items: stretch;
}

.comparison-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    transition: all 0.3s;
}

.comparison-card:hover {
    border-color: var(--border-hover);
    transform: translateY(-3px);
}

.comparison-before {
    border-color: rgba(248, 113, 113, 0.15);
}

.comparison-before:hover {
    border-color: rgba(248, 113, 113, 0.3);
}

.comparison-after {
    border-color: rgba(74, 222, 128, 0.15);
    background: linear-gradient(180deg, rgba(74, 222, 128, 0.03) 0%, var(--bg-card) 40%);
}

.comparison-after:hover {
    border-color: rgba(74, 222, 128, 0.3);
}

.comparison-label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 700;
    font-family: var(--font-display);
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: var(--danger);
}

.comparison-label-after {
    color: var(--success);
}

.comparison-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
    margin-bottom: 2rem;
}

.comparison-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.5;
}

.comparison-list li i {
    color: var(--danger);
    font-size: 0.85rem;
    flex-shrink: 0;
    margin-top: 3px;
}

.comparison-list-after li i {
    color: var(--success);
}

.comparison-cost {
    padding-top: 1.5rem;
    border-top: 1px solid var(--border);
}

.comparison-cost-label {
    display: block;
    font-size: 0.78rem;
    color: var(--text-dim);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 4px;
}

.comparison-cost-num {
    display: block;
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 1.4rem;
    color: var(--danger);
}

.comparison-cost-after .comparison-cost-num {
    color: var(--success);
}

.comparison-vs {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--primary);
}

/* ========== STEPS ========== */
.steps-row {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 0;
    flex-wrap: wrap;
}

.step-card {
    flex: 1;
    min-width: 220px;
    max-width: 320px;
    text-align: center;
    padding: 2rem 1.5rem;
}

.step-number {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary);
    opacity: 0.2;
    line-height: 1;
    margin-bottom: 1rem;
}

.step-card h3 {
    font-size: 1.2rem;
    margin-bottom: 0.75rem;
}

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

.step-connector {
    display: flex;
    align-items: center;
    padding-top: 2.5rem;
    color: var(--text-dim);
    font-size: 1.2rem;
}

/* ========== BENTO FEATURES ========== */
.bento-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
}

.bento-item {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 2rem;
    transition: all 0.3s ease;
}

.bento-item:hover {
    border-color: var(--border-hover);
    transform: translateY(-3px);
}

.bento-wide {
    grid-column: span 2;
}

.bento-icon {
    font-size: 1.8rem;
    color: var(--primary);
    margin-bottom: 1rem;
    display: block;
}

.bento-item h4 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: var(--text-main);
}

.bento-item p {
    color: var(--text-muted);
    font-size: 0.88rem;
    line-height: 1.6;
}

/* ========== TESTIMONIALS ========== */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 1.5rem;
}

.testimonial-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 2.25rem;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.testimonial-card:hover {
    border-color: var(--border-hover);
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.2);
}

.testimonial-stars {
    display: flex;
    gap: 2px;
    margin-bottom: 1.25rem;
    color: var(--primary);
    font-size: 0.9rem;
}

.testimonial-text {
    color: var(--text-main);
    font-size: 0.95rem;
    line-height: 1.7;
    flex-grow: 1;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-top: 1.25rem;
    border-top: 1px solid var(--border);
}

.testimonial-avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: #0c0c12;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-family: var(--font-display);
    font-size: 1.1rem;
    flex-shrink: 0;
}

.testimonial-name {
    font-weight: 600;
    font-size: 0.9rem;
}

.testimonial-role {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-top: 2px;
}

/* ========== PRICING ========== */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.price-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 2.5rem 2rem;
    display: flex;
    flex-direction: column;
    position: relative;
    transition: all 0.3s ease;
}

.price-card:hover {
    border-color: var(--border-hover);
    transform: translateY(-4px);
}

.price-featured {
    border: 2px solid var(--primary);
    background: linear-gradient(180deg, rgba(232, 168, 56, 0.04) 0%, var(--bg-card) 40%);
    transform: scale(1.03);
    z-index: 2;
    box-shadow: 0 0 40px rgba(232, 168, 56, 0.1), 0 0 80px rgba(232, 168, 56, 0.05);
}

.price-featured:hover {
    transform: scale(1.03) translateY(-4px);
    box-shadow: 0 0 50px rgba(232, 168, 56, 0.15), 0 0 100px rgba(232, 168, 56, 0.08);
}

.price-badge {
    position: absolute;
    top: -1px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: #0c0c12;
    padding: 6px 20px;
    border-radius: 0 0 var(--radius-sm) var(--radius-sm);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.price-tier {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    margin-top: 0.5rem;
}

.price-amount {
    font-family: var(--font-display);
    font-size: 2.4rem;
    font-weight: 800;
    margin: 0.5rem 0;
}

.price-amount span {
    font-size: 0.9rem;
    color: var(--text-muted);
    font-weight: 400;
    font-family: var(--font-body);
}

.price-equiv {
    font-size: 0.82rem;
    color: var(--primary);
    font-weight: 500;
    margin-bottom: 0.75rem;
    opacity: 0.8;
}

.price-setup {
    color: var(--text-dim);
    font-size: 0.85rem;
    margin-bottom: 1.75rem;
    padding-bottom: 1.75rem;
    border-bottom: 1px solid var(--border);
}

.price-features {
    list-style: none;
    flex-grow: 1;
    margin-bottom: 2rem;
}

.price-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    margin-bottom: 0.9rem;
    color: var(--text-muted);
}

.price-features li i {
    color: var(--success);
    flex-shrink: 0;
    font-size: 0.85rem;
}

/* ========== WHY SECTION ========== */
.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.why-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    text-align: center;
    transition: all 0.3s;
}

.why-card:hover {
    border-color: var(--border-hover);
    transform: translateY(-4px);
}

.why-icon {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 1.25rem;
}

.why-card h4 {
    font-size: 1.15rem;
    margin-bottom: 0.75rem;
}

.why-card p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* ========== FAQ ========== */
.faq-list {
    max-width: 760px;
    margin: 0 auto;
}

.faq-item {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    margin-bottom: 0.75rem;
    overflow: hidden;
    transition: border-color 0.3s;
}

.faq-item:hover,
.faq-item.active {
    border-color: var(--border-hover);
}

.faq-q {
    width: 100%;
    background: none;
    border: none;
    padding: 1.35rem 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-main);
    text-align: left;
}

.faq-q i {
    color: var(--primary);
    font-size: 1rem;
    transition: transform 0.3s;
    flex-shrink: 0;
}

.faq-item.active .faq-q i {
    transform: rotate(45deg);
}

.faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.3s ease;
}

.faq-item.active .faq-a {
    max-height: 300px;
    padding: 0 1.5rem 1.35rem;
}

.faq-a p {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.7;
}

/* ========== CTA ========== */
.cta-card {
    text-align: center;
    padding: 4rem 3rem;
    background: linear-gradient(135deg, var(--bg-card), var(--bg-elevated));
    border: 1px solid var(--border-hover);
    border-radius: var(--radius-lg);
    position: relative;
    overflow: hidden;
}

.cta-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at center, var(--primary-dim) 0%, transparent 50%);
    opacity: 0.5;
}

.cta-card h2 {
    position: relative;
    font-size: clamp(1.8rem, 3vw, 2.4rem);
    margin-bottom: 1rem;
}

.cta-card > p {
    position: relative;
    color: var(--text-muted);
    font-size: 1.05rem;
    margin-bottom: 2rem;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.cta-card .btn {
    position: relative;
}

.cta-contact {
    position: relative;
    margin-top: 1.5rem;
    color: var(--text-dim);
    font-size: 0.85rem;
}

.cta-contact span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

/* ========== FLOATING WHATSAPP ========== */
.fab-whatsapp {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #25D366;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 999;
    text-decoration: none;
    transition: all 0.3s ease;
    opacity: 0;
    transform: scale(0.8) translateY(20px);
    pointer-events: none;
}

.fab-whatsapp.visible {
    opacity: 1;
    transform: scale(1) translateY(0);
    pointer-events: auto;
}

.fab-whatsapp:hover {
    transform: scale(1.1) translateY(-2px);
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.5);
}

/* Pulse ring on FAB */
.fab-whatsapp::before {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    border: 2px solid rgba(37, 211, 102, 0.3);
    animation: fab-ring 2s ease-in-out infinite;
}

@keyframes fab-ring {
    0%, 100% { transform: scale(1); opacity: 0.6; }
    50% { transform: scale(1.15); opacity: 0; }
}

/* ========== FOOTER ========== */
footer {
    padding: 60px 0 30px;
    border-top: 1px solid var(--border);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-brand p {
    color: var(--text-muted);
    font-size: 0.88rem;
    margin-top: 1rem;
    max-width: 320px;
}

.footer-links h5,
.footer-contact h5 {
    font-family: var(--font-display);
    font-size: 0.9rem;
    margin-bottom: 1rem;
    color: var(--text-main);
}

.footer-links a,
.footer-contact a {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.88rem;
    padding: 0.35rem 0;
    transition: color 0.2s;
}

.footer-links a:hover,
.footer-contact a:hover {
    color: var(--primary);
}

.footer-bottom {
    border-top: 1px solid var(--border);
    padding-top: 2rem;
    text-align: center;
}

.footer-bottom p {
    font-size: 0.82rem;
    color: var(--text-dim);
}

/* ========== RESPONSIVE ========== */
@media (max-width: 992px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }

    .hero-content {
        margin: 0 auto;
    }

    .hero-btns {
        justify-content: center;
    }

    .hero-stats {
        justify-content: center;
    }

    .chat-mockup {
        max-width: 480px;
        margin: 0 auto;
    }

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

    .bento-wide {
        grid-column: span 1;
    }

    .comparison-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .comparison-vs {
        transform: rotate(90deg);
        padding: 0.5rem 0;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }

    .footer-brand {
        grid-column: span 2;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .nav-right .btn {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .section {
        padding: 70px 0;
    }

    .hero h1 {
        font-size: 2.2rem;
    }

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

    .steps-row {
        flex-direction: column;
        align-items: center;
    }

    .step-connector {
        transform: rotate(90deg);
        padding: 0;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 420px;
        margin-left: auto;
        margin-right: auto;
    }

    .price-featured {
        transform: scale(1);
    }

    .price-featured:hover {
        transform: translateY(-4px);
    }

    .trust-strip {
        flex-direction: column;
        gap: 1.5rem;
        padding: 2rem;
    }

    .trust-divider {
        width: 60px;
        height: 1px;
    }

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

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

    .footer-brand {
        grid-column: span 1;
    }

    .cta-card {
        padding: 3rem 1.5rem;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 1.9rem;
    }

    .hero-sub {
        font-size: 0.95rem;
    }

    .hero-stats {
        flex-direction: column;
    }

    .integrations-row {
        gap: 1.5rem;
    }

    .int-item span {
        display: none;
    }

    .int-item i {
        font-size: 1.6rem;
    }
}
