/* ============================================
   BOONMANDU — HUMAN KINDNESS DESIGN SYSTEM
   ============================================ */
:root {
    --bg-primary: #0d0d12;
    --bg-secondary: #13131a;
    --bg-card: rgba(255, 255, 255, 0.03);
    --bg-card-hover: rgba(255, 255, 255, 0.06);
    --bg-glass: rgba(255, 255, 255, 0.05);
    --gold: #f0b429;
    --gold-light: #ffd97d;
    --coral: #ff6b6b;
    --sage: #68d391;
    --lavender: #b794f4;
    --sky: #63b3ed;
    --gradient-kindness: linear-gradient(135deg, #f0b429, #ff6b6b, #b794f4);
    --gradient-warm: linear-gradient(135deg, #f0b429 0%, #ff6b6b 100%);
    --gradient-hero: radial-gradient(ellipse at 30% 50%, rgba(240, 180, 41, 0.08) 0%, transparent 60%),
        radial-gradient(ellipse at 70% 30%, rgba(183, 148, 244, 0.06) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 80%, rgba(255, 107, 107, 0.05) 0%, transparent 50%);
    --text-primary: #f0f0f5;
    --text-secondary: #a0a0b5;
    --text-muted: #6b6b80;
    --border-subtle: rgba(255, 255, 255, 0.06);
    --border-hover: rgba(255, 255, 255, 0.12);
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Inter', -apple-system, sans-serif;
    --container-max: 1200px;
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 28px;
    --shadow-glow: 0 0 40px rgba(240, 180, 41, 0.15);
    --shadow-card: 0 4px 30px rgba(0, 0, 0, 0.3);
    --shadow-float: 0 25px 60px rgba(0, 0, 0, 0.4);
    --section-padding: 120px 0;
}

*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    background: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 24px;
}

.text-gradient {
    background: var(--gradient-kindness);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    border: none;
    border-radius: var(--radius-xl);
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    white-space: nowrap;
}

.btn-primary {
    background: var(--gradient-warm);
    color: #fff;
    box-shadow: 0 4px 20px rgba(240, 180, 41, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(240, 180, 41, 0.4);
}

.btn-outline {
    background: transparent;
    color: var(--text-primary);
    border: 1.5px solid var(--border-hover);
}

.btn-outline:hover {
    border-color: var(--gold);
    color: var(--gold);
    background: rgba(240, 180, 41, 0.05);
}

.btn-lg {
    padding: 16px 36px;
    font-size: 1.05rem;
}

.btn-block {
    width: 100%;
    justify-content: center;
}

.btn-category {
    background: transparent;
    color: var(--text-secondary);
    border: 1px solid var(--border-subtle);
    padding: 8px 20px;
    font-size: 0.85rem;
    border-radius: var(--radius-xl);
}

.btn-category:hover {
    background: var(--gradient-warm);
    color: #fff;
    border-color: transparent;
}

/* NAVBAR */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(13, 13, 18, 0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-subtle);
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background: rgba(13, 13, 18, 0.95);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

.nav-container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.5rem;
    font-weight: 700;
}

.logo-icon {
    font-size: 1.8rem;
    animation: pulse-gentle 3s ease-in-out infinite;
}

@keyframes pulse-gentle {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }
}

.logo-text {
    font-family: var(--font-heading);
}

.logo-accent {
    background: var(--gradient-kindness);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-menu {
    display: flex;
    gap: 8px;
}

.nav-link {
    padding: 8px 18px;
    border-radius: var(--radius-xl);
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-secondary);
    transition: all 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    color: var(--text-primary);
    background: var(--bg-glass);
}

.nav-actions {
    display: flex;
    gap: 12px;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.hamburger .bar {
    width: 25px;
    height: 2px;
    background: var(--text-primary);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.hamburger.active .bar:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active .bar:nth-child(2) {
    opacity: 0;
}

.hamburger.active .bar:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* HERO */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 100px 24px 60px;
    position: relative;
    overflow: hidden;
    max-width: var(--container-max);
    margin: 0 auto;
    gap: 60px;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--gradient-hero);
    pointer-events: none;
}

.hero-particles {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.particle {
    position: absolute;
    border-radius: 50%;
    opacity: 0.3;
    animation: float-particle linear infinite;
}

@keyframes float-particle {
    0% {
        transform: translateY(100vh) scale(0);
        opacity: 0;
    }

    10% {
        opacity: 0.3;
    }

    90% {
        opacity: 0.3;
    }

    100% {
        transform: translateY(-20px) scale(1);
        opacity: 0;
    }
}

.hero-content {
    flex: 1;
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 20px;
    background: var(--bg-glass);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-xl);
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-bottom: 30px;
    animation: fadeInUp 0.8s ease;
}

.badge-dot {
    width: 8px;
    height: 8px;
    background: var(--sage);
    border-radius: 50%;
    animation: blink 2s ease-in-out infinite;
}

@keyframes blink {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.3;
    }
}

.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(2.8rem, 6vw, 4.5rem);
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 24px;
    animation: fadeInUp 0.8s ease 0.1s both;
}

.hero-subtitle {
    font-size: 1.15rem;
    color: var(--text-secondary);
    max-width: 560px;
    margin-bottom: 40px;
    line-height: 1.8;
    animation: fadeInUp 0.8s ease 0.2s both;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-search {
    margin-bottom: 50px;
    animation: fadeInUp 0.8s ease 0.3s both;
}

.search-container {
    display: flex;
    align-items: center;
    background: var(--bg-glass);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-xl);
    padding: 6px 6px 6px 24px;
    transition: all 0.3s ease;
    max-width: 580px;
}

.search-container:focus-within {
    border-color: var(--gold);
    box-shadow: 0 0 30px rgba(240, 180, 41, 0.1);
}

.search-icon {
    color: var(--text-muted);
    font-size: 1rem;
}

.search-input {
    flex: 1;
    background: none;
    border: none;
    outline: none;
    color: var(--text-primary);
    font-family: var(--font-body);
    font-size: 1rem;
    padding: 12px 16px;
}

.search-input::placeholder {
    color: var(--text-muted);
}

.search-btn {
    padding: 12px 24px;
    border-radius: 20px;
}

.search-tags {
    display: flex;
    gap: 10px;
    margin-top: 16px;
    flex-wrap: wrap;
}

.tag {
    padding: 6px 16px;
    background: var(--bg-glass);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-xl);
    font-size: 0.82rem;
    color: var(--text-secondary);
    cursor: pointer;
    transition: all 0.3s ease;
}

.tag:hover {
    border-color: var(--gold);
    color: var(--gold-light);
    background: rgba(240, 180, 41, 0.05);
}

.hero-stats {
    display: flex;
    gap: 48px;
    animation: fadeInUp 0.8s ease 0.4s both;
}

.hero-stat {
    position: relative;
}

.hero-stat:not(:last-child)::after {
    content: '';
    position: absolute;
    right: -24px;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 40px;
    background: var(--border-subtle);
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    background: var(--gradient-warm);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-top: 4px;
}

.hero-visual {
    flex: 0.8;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 450px;
}

.kindness-circle {
    position: relative;
    width: 280px;
    height: 280px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.circle-ring {
    position: absolute;
    border-radius: 50%;
    border: 1px solid;
}

.ring-1 {
    width: 100%;
    height: 100%;
    border-color: rgba(240, 180, 41, 0.15);
    animation: spin 20s linear infinite;
}

.ring-2 {
    width: 75%;
    height: 75%;
    border-color: rgba(183, 148, 244, 0.15);
    animation: spin 15s linear infinite reverse;
}

.ring-3 {
    width: 50%;
    height: 50%;
    border-color: rgba(255, 107, 107, 0.15);
    animation: spin 10s linear infinite;
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.circle-core {
    width: 80px;
    height: 80px;
    background: var(--gradient-warm);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: 0 0 60px rgba(240, 180, 41, 0.3);
    animation: pulse-gentle 3s ease-in-out infinite;
}

.floating-card {
    position: absolute;
    background: var(--bg-glass);
    backdrop-filter: blur(20px);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-md);
    padding: 14px 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    white-space: nowrap;
    animation: float 6s ease-in-out infinite;
    z-index: 5;
}

.floating-card-icon {
    font-size: 1.3rem;
}

.floating-card-text {
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.card-1 {
    top: 15%;
    right: 0;
    animation-delay: 0s;
}

.card-2 {
    bottom: 25%;
    left: -10%;
    animation-delay: 2s;
}

.card-3 {
    bottom: 5%;
    right: 10%;
    animation-delay: 4s;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-15px);
    }
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 70px;
}

.section-tag {
    display: inline-block;
    padding: 6px 20px;
    background: var(--bg-glass);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-xl);
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--gold);
    letter-spacing: 0.5px;
    margin-bottom: 20px;
}

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    margin-bottom: 16px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

/* HOW IT WORKS */
.how-it-works {
    padding: var(--section-padding);
    background: var(--bg-secondary);
    position: relative;
}

.how-it-works::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--border-subtle), transparent);
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.step-card {
    text-align: center;
    padding: 40px 30px;
    position: relative;
    border-radius: var(--radius-lg);
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.step-card:hover {
    background: var(--bg-card-hover);
    border-color: var(--border-hover);
    transform: translateY(-5px);
}

.step-number {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 700;
    background: var(--gradient-kindness);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    opacity: 0.15;
    position: absolute;
    top: 15px;
    right: 25px;
}

.step-icon-wrapper {
    margin-bottom: 24px;
}

.step-icon {
    width: 72px;
    height: 72px;
    border-radius: var(--radius-lg);
    background: var(--gradient-warm);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    font-size: 1.6rem;
    color: #fff;
    box-shadow: 0 8px 30px rgba(240, 180, 41, 0.25);
    transition: transform 0.3s ease;
}

.step-card:hover .step-icon {
    transform: scale(1.1) rotate(5deg);
}

.step-title {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    margin-bottom: 12px;
}

.step-desc {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

.step-connector {
    display: none;
}

/* CATEGORIES */
.categories {
    padding: var(--section-padding);
    position: relative;
}

.categories::before {
    content: '';
    position: absolute;
    top: 20%;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(240, 180, 41, 0.04) 0%, transparent 70%);
    pointer-events: none;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.category-card {
    position: relative;
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    padding: 32px 24px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    cursor: pointer;
    display: flex;
    flex-direction: column;
}

.category-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at center, rgba(240, 180, 41, 0.06) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.category-card:hover .category-glow {
    opacity: 1;
}

.category-card:hover {
    transform: translateY(-8px);
    border-color: var(--border-hover);
    box-shadow: var(--shadow-glow);
}

.category-icon {
    width: 56px;
    height: 56px;
    border-radius: var(--radius-md);
    background: var(--bg-glass);
    border: 1px solid var(--border-subtle);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: var(--gold);
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.category-card:hover .category-icon {
    background: var(--gradient-warm);
    color: #fff;
    border-color: transparent;
    box-shadow: 0 8px 25px rgba(240, 180, 41, 0.25);
}

.category-title {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    margin-bottom: 8px;
}

.category-desc {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 20px;
    flex: 1;
}

.category-helpers {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
    font-size: 0.78rem;
    color: var(--text-muted);
}

.helper-avatars {
    display: flex;
}

.avatar {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.65rem;
    font-weight: 700;
    color: #fff;
    border: 2px solid var(--bg-primary);
    margin-left: -8px;
}

.avatar:first-child {
    margin-left: 0;
}

/* COMMUNITY */
.community {
    padding: var(--section-padding);
    background: var(--bg-secondary);
}

.helpers-showcase {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-bottom: 80px;
}

.helper-profile {
    text-align: center;
    padding: 36px 24px;
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    transition: all 0.4s ease;
}

.helper-profile:hover {
    transform: translateY(-5px);
    border-color: var(--border-hover);
}

.helper-avatar-lg {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    font-weight: 700;
    color: #fff;
    margin: 0 auto 16px;
    position: relative;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.helper-badge {
    position: absolute;
    bottom: -4px;
    right: -4px;
    font-size: 1rem;
    background: var(--bg-primary);
    border-radius: 50%;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.helper-profile h4 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    margin-bottom: 4px;
}

.helper-specialty {
    font-size: 0.85rem;
    color: var(--gold);
    margin-bottom: 16px;
}

.helper-stats {
    display: flex;
    justify-content: center;
    gap: 16px;
    font-size: 0.82rem;
    color: var(--text-muted);
}

.helper-stats i {
    color: var(--sage);
    margin-right: 4px;
}

/* Testimonials */
.testimonials-section {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.testimonial-heading {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    margin-bottom: 30px;
}

.testimonials-carousel {
    position: relative;
    min-height: 280px;
}

.testimonial-card {
    position: absolute;
    inset: 0;
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    padding: 40px;
    opacity: 0;
    transform: translateX(30px);
    transition: all 0.5s ease;
    pointer-events: none;
}

.testimonial-card.active {
    opacity: 1;
    transform: translateX(0);
    pointer-events: all;
}

.testimonial-quote {
    color: var(--gold);
    font-size: 1.5rem;
    margin-bottom: 16px;
    opacity: 0.5;
}

.testimonial-text {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 24px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 14px;
    justify-content: center;
}

.author-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: 700;
    color: #fff;
}

.testimonial-author h5 {
    font-size: 0.95rem;
    text-align: left;
}

.testimonial-author span {
    font-size: 0.82rem;
    color: var(--text-muted);
}

.testimonial-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--border-subtle);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: var(--gold);
    box-shadow: 0 0 10px rgba(240, 180, 41, 0.4);
    transform: scale(1.2);
}

/* CTA */
.cta-section {
    padding: 100px 24px;
}

.cta-card {
    position: relative;
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-xl);
    padding: 80px 60px;
    text-align: center;
    overflow: hidden;
}

.cta-glow {
    position: absolute;
    top: -100px;
    left: 50%;
    transform: translateX(-50%);
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(240, 180, 41, 0.08) 0%, transparent 60%);
    pointer-events: none;
}

.cta-card h2 {
    font-family: var(--font-heading);
    font-size: clamp(1.8rem, 3.5vw, 2.5rem);
    margin-bottom: 16px;
    position: relative;
}

.cta-card p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 550px;
    margin: 0 auto 36px;
    position: relative;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-bottom: 36px;
    position: relative;
    flex-wrap: wrap;
}

.cta-trust {
    display: flex;
    justify-content: center;
    gap: 30px;
    font-size: 0.85rem;
    color: var(--text-muted);
    position: relative;
    flex-wrap: wrap;
}

.cta-trust i {
    color: var(--sage);
    margin-right: 6px;
}

/* FOOTER */
.footer {
    padding: 80px 0 0;
    background: var(--bg-secondary);
    border-top: 1px solid var(--border-subtle);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
    gap: 50px;
    padding-bottom: 60px;
}

.footer-brand p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin: 16px 0 24px;
    line-height: 1.7;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--bg-glass);
    border: 1px solid var(--border-subtle);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--gradient-warm);
    color: #fff;
    border-color: transparent;
    transform: translateY(-3px);
}

.footer-links h4 {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    margin-bottom: 20px;
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    font-size: 0.9rem;
    color: var(--text-secondary);
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--gold);
}

.footer-newsletter h4 {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    margin-bottom: 10px;
}

.footer-newsletter p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 16px;
}

.newsletter-form {
    display: flex;
    gap: 8px;
}

.newsletter-form input {
    flex: 1;
    background: var(--bg-glass);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-xl);
    padding: 12px 20px;
    color: var(--text-primary);
    font-family: var(--font-body);
    font-size: 0.9rem;
    outline: none;
    transition: border-color 0.3s ease;
}

.newsletter-form input:focus {
    border-color: var(--gold);
}

.newsletter-form input::placeholder {
    color: var(--text-muted);
}

.newsletter-form .btn {
    padding: 12px 18px;
}

.footer-bottom {
    border-top: 1px solid var(--border-subtle);
    padding: 24px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.footer-bottom-links {
    display: flex;
    gap: 24px;
}

.footer-bottom-links a {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.footer-bottom-links a:hover {
    color: var(--gold);
}

/* CHAT WIDGET */
.chat-widget {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 999;
}

.chat-toggle {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--gradient-warm);
    border: none;
    color: #fff;
    font-size: 1.4rem;
    cursor: pointer;
    position: relative;
    box-shadow: 0 8px 30px rgba(240, 180, 41, 0.35);
    transition: all 0.3s ease;
}

.chat-toggle:hover {
    transform: scale(1.08);
    box-shadow: 0 12px 40px rgba(240, 180, 41, 0.45);
}

.chat-badge {
    position: absolute;
    top: -2px;
    right: -2px;
    width: 22px;
    height: 22px;
    background: var(--coral);
    border-radius: 50%;
    font-size: 0.72rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    border: 2px solid var(--bg-primary);
}

.chat-pulse {
    position: absolute;
    inset: -4px;
    border: 2px solid var(--gold);
    border-radius: 50%;
    animation: chat-pulse 2s ease-in-out infinite;
}

@keyframes chat-pulse {
    0% {
        transform: scale(1);
        opacity: 0.6;
    }

    100% {
        transform: scale(1.4);
        opacity: 0;
    }
}

.chat-panel {
    position: absolute;
    bottom: 76px;
    right: 0;
    width: 380px;
    height: 520px;
    background: var(--bg-secondary);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    display: flex;
    flex-direction: column;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px) scale(0.95);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    box-shadow: var(--shadow-float);
}

.chat-panel.open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

.chat-header {
    padding: 16px 20px;
    background: var(--bg-glass);
    border-bottom: 1px solid var(--border-subtle);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.chat-header-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.chat-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    font-weight: 700;
    color: #fff;
    position: relative;
}

.online-dot {
    position: absolute;
    bottom: 1px;
    right: 1px;
    width: 10px;
    height: 10px;
    background: var(--sage);
    border-radius: 50%;
    border: 2px solid var(--bg-secondary);
}

.chat-header h4 {
    font-size: 0.95rem;
    font-weight: 600;
}

.chat-status {
    font-size: 0.75rem;
    color: var(--sage);
}

.chat-header-actions {
    display: flex;
    gap: 4px;
}

.chat-action-btn {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: transparent;
    border: none;
    color: var(--text-secondary);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    transition: all 0.2s ease;
}

.chat-action-btn:hover {
    background: var(--bg-glass);
    color: var(--text-primary);
}

.chat-messages {
    flex: 1;
    overflow-y: auto;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.chat-messages::-webkit-scrollbar {
    width: 4px;
}

.chat-messages::-webkit-scrollbar-track {
    background: transparent;
}

.chat-messages::-webkit-scrollbar-thumb {
    background: var(--border-subtle);
    border-radius: 4px;
}

.message {
    max-width: 80%;
    display: flex;
    flex-direction: column;
    gap: 4px;
    animation: messageIn 0.3s ease;
}

@keyframes messageIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.message.incoming {
    align-self: flex-start;
}

.message.outgoing {
    align-self: flex-end;
}

.message-bubble {
    padding: 12px 18px;
    border-radius: 18px;
    font-size: 0.9rem;
    line-height: 1.6;
}

.message.incoming .message-bubble {
    background: var(--bg-glass);
    border: 1px solid var(--border-subtle);
    border-bottom-left-radius: 4px;
}

.message.outgoing .message-bubble {
    background: var(--gradient-warm);
    color: #fff;
    border-bottom-right-radius: 4px;
}

.message-time {
    font-size: 0.7rem;
    color: var(--text-muted);
    padding: 0 4px;
}

.message.outgoing .message-time {
    text-align: right;
}

.chat-typing {
    display: none;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    font-size: 0.8rem;
    color: var(--text-muted);
}

.chat-typing.active {
    display: flex;
}

.typing-dots {
    display: flex;
    gap: 3px;
}

.typing-dots span {
    width: 6px;
    height: 6px;
    background: var(--text-muted);
    border-radius: 50%;
    animation: typing-bounce 1.4s ease-in-out infinite;
}

.typing-dots span:nth-child(2) {
    animation-delay: 0.2s;
}

.typing-dots span:nth-child(3) {
    animation-delay: 0.4s;
}

@keyframes typing-bounce {

    0%,
    60%,
    100% {
        transform: translateY(0);
    }

    30% {
        transform: translateY(-6px);
    }
}

.chat-input-area {
    padding: 12px 16px;
    border-top: 1px solid var(--border-subtle);
    display: flex;
    align-items: center;
    gap: 8px;
}

.chat-input {
    flex: 1;
    background: var(--bg-glass);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-xl);
    padding: 10px 16px;
    color: var(--text-primary);
    font-family: var(--font-body);
    font-size: 0.9rem;
    outline: none;
    transition: border-color 0.3s ease;
}

.chat-input:focus {
    border-color: var(--gold);
}

.chat-input::placeholder {
    color: var(--text-muted);
}

.emoji-btn,
.send-btn {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    transition: all 0.2s ease;
}

.emoji-btn {
    background: transparent;
    color: var(--text-muted);
}

.emoji-btn:hover {
    color: var(--gold);
}

.send-btn {
    background: var(--gradient-warm);
    color: #fff;
    box-shadow: 0 4px 15px rgba(240, 180, 41, 0.3);
}

.send-btn:hover {
    transform: scale(1.05);
}

.emoji-picker {
    display: none;
    padding: 12px;
    border-top: 1px solid var(--border-subtle);
    flex-wrap: wrap;
    gap: 8px;
}

.emoji-picker.open {
    display: flex;
}

.emoji-item {
    font-size: 1.3rem;
    cursor: pointer;
    padding: 4px;
    border-radius: 6px;
    transition: all 0.2s ease;
}

.emoji-item:hover {
    background: var(--bg-glass);
    transform: scale(1.2);
}

/* TOAST */
.toast-container {
    position: fixed;
    top: 90px;
    right: 24px;
    z-index: 1001;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.toast {
    padding: 14px 22px;
    background: var(--bg-secondary);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.9rem;
    min-width: 300px;
    backdrop-filter: blur(20px);
    box-shadow: var(--shadow-card);
    animation: toastIn 0.4s ease, toastOut 0.4s ease 3.6s forwards;
}

@keyframes toastIn {
    from {
        opacity: 0;
        transform: translateX(50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes toastOut {
    from {
        opacity: 1;
        transform: translateX(0);
    }

    to {
        opacity: 0;
        transform: translateX(50px);
    }
}

.toast-success {
    border-left: 3px solid var(--sage);
}

.toast-info {
    border-left: 3px solid var(--sky);
}

.toast-warning {
    border-left: 3px solid var(--gold);
}

.toast-error {
    border-left: 3px solid var(--coral);
}

.toast i {
    font-size: 1.1rem;
}

.toast-success i {
    color: var(--sage);
}

.toast-info i {
    color: var(--sky);
}

.toast-warning i {
    color: var(--gold);
}

.toast-error i {
    color: var(--coral);
}

/* MODAL */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(8px);
    z-index: 1100;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.modal-overlay.open {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    background: var(--bg-secondary);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-xl);
    padding: 48px;
    max-width: 520px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    transform: translateY(30px) scale(0.95);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.modal-overlay.open .modal-content {
    transform: translateY(0) scale(1);
}

.modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--bg-glass);
    border: 1px solid var(--border-subtle);
    color: var(--text-secondary);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.modal-close:hover {
    background: var(--coral);
    color: #fff;
    border-color: transparent;
}

.modal-header {
    text-align: center;
    margin-bottom: 32px;
}

.modal-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: var(--gradient-warm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #fff;
    margin: 0 auto 16px;
    box-shadow: 0 8px 30px rgba(240, 180, 41, 0.25);
}

.modal-header h2 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    margin-bottom: 8px;
}

.modal-header p {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text-secondary);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    background: var(--bg-glass);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-md);
    padding: 12px 16px;
    color: var(--text-primary);
    font-family: var(--font-body);
    font-size: 0.9rem;
    outline: none;
    transition: border-color 0.3s ease;
    resize: vertical;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--gold);
}

.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath d='M6 8L1 3h10z' fill='%23a0a0b5'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
}

.form-group select option {
    background: var(--bg-secondary);
    color: var(--text-primary);
}

.urgency-options {
    display: flex;
    gap: 10px;
}

.urgency-option {
    flex: 1;
    cursor: pointer;
}

.urgency-option input {
    display: none;
}

.urgency-label {
    display: block;
    padding: 10px;
    text-align: center;
    border-radius: var(--radius-sm);
    border: 1px solid var(--border-subtle);
    font-size: 0.82rem;
    transition: all 0.3s ease;
}

.urgency-option input:checked+.urgency-label.low {
    border-color: var(--sage);
    background: rgba(104, 211, 145, 0.1);
    color: var(--sage);
}

.urgency-option input:checked+.urgency-label.medium {
    border-color: var(--gold);
    background: rgba(240, 180, 41, 0.1);
    color: var(--gold);
}

.urgency-option input:checked+.urgency-label.high {
    border-color: var(--coral);
    background: rgba(255, 107, 107, 0.1);
    color: var(--coral);
}

.form-check {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 24px;
}

.form-check input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: var(--gold);
    cursor: pointer;
}

.form-check label {
    font-size: 0.85rem;
    color: var(--text-secondary);
    cursor: pointer;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
    .hero {
        flex-direction: column;
        text-align: center;
        padding-top: 120px;
    }

    .hero-subtitle {
        margin: 0 auto 40px;
    }

    .search-container {
        margin: 0 auto;
    }

    .search-tags {
        justify-content: center;
    }

    .hero-stats {
        justify-content: center;
    }

    .hero-visual {
        min-height: 300px;
    }

    .categories-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .helpers-showcase {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    :root {
        --section-padding: 80px 0;
    }

    .nav-menu,
    .nav-actions {
        display: none;
    }

    .nav-menu.active {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 72px;
        left: 0;
        right: 0;
        background: var(--bg-primary);
        border-bottom: 1px solid var(--border-subtle);
        padding: 20px;
        gap: 4px;
    }

    .nav-menu.active .nav-link {
        padding: 12px 20px;
    }

    .hamburger {
        display: flex;
    }

    .steps-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .categories-grid {
        grid-template-columns: 1fr;
    }

    .helpers-showcase {
        grid-template-columns: 1fr;
    }

    .hero-stats {
        flex-direction: column;
        gap: 20px;
        align-items: center;
    }

    .hero-stat::after {
        display: none;
    }

    .hero-visual {
        display: none;
    }

    .cta-card {
        padding: 50px 24px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }

    .chat-panel {
        width: calc(100vw - 48px);
        right: -12px;
    }

    .modal-content {
        padding: 32px 24px;
    }

    .cta-trust {
        flex-direction: column;
        gap: 12px;
    }
}

@media (max-width: 480px) {
    .search-container {
        flex-direction: column;
        padding: 12px;
        gap: 12px;
    }

    .search-btn {
        width: 100%;
        justify-content: center;
    }

    .search-icon {
        display: none;
    }

    .hero-title {
        font-size: 2.2rem;
    }

    .testimonial-card {
        padding: 24px;
    }
}

/* Scroll Animations */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================
   AI ASSISTANT MODAL
   ============================================ */
.ai-modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(13, 13, 18, 0.85);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.ai-modal-overlay.open {
    opacity: 1;
    visibility: visible;
}

.ai-modal-content {
    background: var(--bg-secondary);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    width: 100%;
    max-width: 800px;
    height: 85vh;
    max-height: 800px;
    display: flex;
    flex-direction: column;
    position: relative;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.6);
    transform: translateY(30px) scale(0.95);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

.ai-modal-overlay.open .ai-modal-content {
    transform: translateY(0) scale(1);
}

/* AI Header */
.ai-modal-header {
    padding: 24px 30px;
    background: var(--bg-glass);
    border-bottom: 1px solid var(--border-subtle);
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
}

.ai-header-info {
    display: flex;
    align-items: center;
    gap: 16px;
}

.ai-avatar {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-md);
    background: var(--gradient-warm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: #fff;
    box-shadow: 0 4px 15px rgba(240, 180, 41, 0.2);
}

.ai-header-info h2 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 4px;
}

.ai-header-info .badge {
    font-size: 0.7rem;
    font-family: var(--font-body);
    font-weight: 600;
    padding: 2px 8px;
    background: rgba(240, 180, 41, 0.15);
    color: var(--gold);
    border-radius: 20px;
    border: 1px solid rgba(240, 180, 41, 0.3);
}

.ai-header-info p {
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.ai-usage {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 6px;
}

#aiUsageText {
    font-size: 0.8rem;
    color: var(--text-secondary);
    font-weight: 500;
}

.usage-bar {
    width: 120px;
    height: 6px;
    background: var(--bg-primary);
    border-radius: 4px;
    overflow: hidden;
    border: 1px solid var(--border-subtle);
}

.usage-fill {
    height: 100%;
    background: var(--gradient-warm);
    width: 0%;
    transition: width 0.5s ease;
}

/* AI Chat Area */
.ai-chat-area {
    flex: 1;
    overflow-y: auto;
    padding: 30px;
    display: flex;
    flex-direction: column;
    gap: 24px;
    scroll-behavior: smooth;
}

.ai-chat-area::-webkit-scrollbar {
    width: 6px;
}
.ai-chat-area::-webkit-scrollbar-thumb {
    background: var(--border-hover);
    border-radius: 6px;
}

.ai-message {
    display: flex;
    max-width: 85%;
    animation: messageIn 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.ai-message.assistant {
    align-self: flex-start;
}

.ai-message.user {
    align-self: flex-end;
}

.ai-message-bubble {
    padding: 16px 24px;
    border-radius: var(--radius-md);
    font-size: 0.95rem;
    line-height: 1.6;
}

.ai-message.assistant .ai-message-bubble {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-bottom-left-radius: 4px;
    color: var(--text-primary);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.ai-message.user .ai-message-bubble {
    background: var(--bg-primary);
    border: 1px solid var(--gold);
    border-bottom-right-radius: 4px;
    color: var(--text-primary);
    box-shadow: 0 4px 20px rgba(240, 180, 41, 0.08);
}

/* AI Markdown parsing styles */
.ai-message-bubble strong {
    color: var(--gold-light);
}
.ai-message-bubble p { margin-bottom: 12px; }
.ai-message-bubble p:last-child { margin-bottom: 0; }
.ai-message-bubble ul, .ai-message-bubble ol { 
    margin: 12px 0 12px 24px; 
}
.ai-message-bubble li { margin-bottom: 6px; }
.ai-message-bubble code {
    background: var(--bg-primary);
    padding: 2px 6px;
    border-radius: 4px;
    font-family: monospace;
    font-size: 0.9em;
    color: var(--sky);
}
.ai-message-bubble pre {
    background: var(--bg-primary);
    padding: 16px;
    border-radius: 8px;
    overflow-x: auto;
    margin: 12px 0;
    border: 1px solid var(--border-subtle);
}
.ai-message-bubble pre code {
    background: transparent;
    padding: 0;
    color: var(--text-primary);
}

/* AI Loaders & Inputs */
.ai-typing {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 16px 24px;
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-md);
    border-bottom-left-radius: 4px;
    width: fit-content;
    animation: messageIn 0.3s ease;
}

.ai-suggestions {
    padding: 0 30px 20px;
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.ai-chip {
    padding: 8px 16px;
    background: var(--bg-glass);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-xl);
    color: var(--text-secondary);
    font-size: 0.85rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.ai-chip:hover {
    background: rgba(240, 180, 41, 0.1);
    border-color: var(--gold);
    color: var(--gold);
    transform: translateY(-2px);
}

.ai-input-wrapper {
    padding: 0 30px;
}

.ai-input-form {
    display: flex;
    align-items: center;
    background: var(--bg-primary);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-xl);
    padding: 8px 12px;
    transition: all 0.3s ease;
}

.ai-input-form:focus-within {
    border-color: var(--gold);
    box-shadow: 0 0 20px rgba(240, 180, 41, 0.1);
}

.ai-input {
    flex: 1;
    background: transparent;
    border: none;
    color: var(--text-primary);
    font-family: var(--font-body);
    font-size: 1rem;
    padding: 12px;
    outline: none;
}

.ai-send-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--gradient-warm);
    border: none;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.ai-send-btn:hover:not(:disabled) {
    transform: scale(1.05);
    box-shadow: 0 4px 15px rgba(240, 180, 41, 0.3);
}

.ai-send-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    background: var(--bg-glass);
    color: var(--text-muted);
}

.ai-disclaimer {
    padding: 16px 30px 20px;
    text-align: center;
    font-size: 0.75rem;
    color: var(--text-muted);
}

/* Nav Btn */
.ai-nav-btn {
    border-color: rgba(240, 180, 41, 0.4);
    background: rgba(240, 180, 41, 0.05);
}
.ai-nav-btn:hover {
    box-shadow: 0 0 15px rgba(240, 180, 41, 0.2);
}

@media (max-width: 768px) {
    .ai-modal-content {
        height: 100vh;
        max-height: 100vh;
        border-radius: 0;
    }
    .ai-modal-overlay {
        padding: 0;
    }
    .ai-message { max-width: 95%; }
}

/* UNDER CONSTRUCTION BANNER */
.construction-banner {
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    z-index: 999;
    background: linear-gradient(135deg, rgba(240, 180, 41, 0.12), rgba(255, 107, 107, 0.08));
    border-bottom: 1px solid rgba(240, 180, 41, 0.2);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    animation: slideDown 0.5s ease;
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.construction-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 10px 24px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.construction-icon {
    font-size: 1.2rem;
    animation: pulse-gentle 2s ease-in-out infinite;
}

.construction-inner p {
    flex: 1;
    font-size: 0.85rem;
    color: #a0a0b5;
    margin: 0;
}

.construction-inner p strong {
    color: #f0b429;
}

.construction-close {
    background: none;
    border: none;
    color: #6b6b80;
    cursor: pointer;
    font-size: 0.85rem;
    padding: 4px;
    transition: color 0.2s ease;
}

.construction-close:hover {
    color: #f0f0f5;
}

.construction-banner.hidden {
    display: none;
}