@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,700;0,900;1,400;1,700&family=DM+Sans:wght@300;400;500;600;700&display=swap');

/* ============================================
   DESIGN TOKENS
   ============================================ */
:root {
    /* Brand Colors — derived from logo gradient */
    --primary: #C4186C;
    --primary-mid: #E33A5A;
    --secondary: #F0622A;
    --accent: #F5A623;
    --accent-soft: #FDE8C8;

    /* Backgrounds */
    --bg: #FFF8F5;
    --bg-soft: #FFF2EC;
    --primary-soft: #FFE8F2;
    --card-bg: #FFFFFF;

    /* Text */
    --dark: #1C0A14;
    --text-body: #5A3A4A;
    --text-muted: #9B7A86;
    --text-on-dark: rgba(255, 255, 255, 0.9);

    /* Gradients */
    --grad-brand: linear-gradient(135deg, #C4186C 0%, #E33A5A 40%, #F0622A 75%, #F5A623 100%);
    --grad-soft: linear-gradient(135deg, #FFE8F2 0%, #FFF2EC 100%);
    --grad-dark: linear-gradient(135deg, #1C0A14 0%, #3A1428 100%);

    /* Radii */
    --r-xs: 8px;
    --r-sm: 14px;
    --r-md: 22px;
    --r-lg: 36px;
    --r-pill: 999px;

    /* Shadows */
    --shadow-sm: 0 4px 16px rgba(196, 24, 108, 0.08);
    --shadow-md: 0 12px 40px rgba(196, 24, 108, 0.12);
    --shadow-lg: 0 24px 64px rgba(196, 24, 108, 0.16);
    --shadow-card: 0 2px 20px rgba(0, 0, 0, 0.06);

    /* Transitions */
    --t: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ============================================
   RESET & BASE
   ============================================ */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'DM Sans', sans-serif;
    background: var(--bg);
    color: var(--text-body);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

/* ============================================
   TYPOGRAPHY
   ============================================ */
h1,
h2,
h3,
h4 {
    font-family: 'DM Sans', sans-serif;
    color: var(--dark);
    font-weight: 700;
    line-height: 1.15;
}

.serif {
    font-family: 'Playfair Display', serif;
}

.serif-italic {
    font-family: 'Playfair Display', serif;
    font-style: italic;
}

/* ============================================
   LAYOUT
   ============================================ */
.container {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 clamp(1rem, 5vw, 2.5rem);
}

.section {
    padding: clamp(60px, 9vw, 120px) 0;
}

.flex {
    display: flex;
}

.grid {
    display: grid;
}

/* ============================================
   GRADIENT TEXT UTILITY
   ============================================ */
.grad-text {
    background: var(--grad-brand);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ============================================
   NAVIGATION
   ============================================ */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 0.85rem 0;
    transition: var(--t);
}

nav.scrolled {
    background: rgba(255, 248, 245, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 2px 30px rgba(196, 24, 108, 0.08);
}

.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

.nav-logo img {
    height: 124px !important;
}

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

.nav-links a {
    font-weight: 500;
    font-size: 0.92rem;
    color: var(--dark);
    letter-spacing: 0.01em;
    transition: var(--t);
}

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

/* ============================================
   BUTTONS
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 0.75rem 1.6rem;
    border-radius: var(--r-pill);
    font-family: 'DM Sans', sans-serif;
    font-weight: 600;
    font-size: 0.9rem;
    border: none;
    cursor: pointer;
    transition: var(--t);
    letter-spacing: 0.02em;
}

.btn-primary {
    background: var(--grad-brand);
    color: white;
    box-shadow: 0 8px 24px rgba(196, 24, 108, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 32px rgba(196, 24, 108, 0.4);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--primary);
    color: var(--primary);
}

.btn-outline:hover {
    background: var(--primary);
    color: white;
}

.btn-ghost {
    background: rgba(255, 255, 255, 0.15);
    border: 1.5px solid rgba(255, 255, 255, 0.4);
    color: white;
    backdrop-filter: blur(8px);
}

.btn-ghost:hover {
    background: rgba(255, 255, 255, 0.28);
    transform: translateY(-2px);
}

/* NAV CTA button */
.nav-cta {
    padding: 0.55rem 1.3rem !important;
    font-size: 0.875rem !important;
}

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

.hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--dark);
    border-radius: 2px;
    transition: var(--t);
}

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

.hamburger.active span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

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

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
    min-height: 100vh;
    padding-top: 5rem;
    padding-bottom: 4rem;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

/* Decorative background blobs */
.hero::before {
    content: '';
    position: absolute;
    top: -10%;
    right: -15%;
    width: 55vw;
    height: 55vw;
    max-width: 700px;
    max-height: 700px;
    background: radial-gradient(circle, rgba(196, 24, 108, 0.12) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -5%;
    left: -10%;
    width: 40vw;
    height: 40vw;
    max-width: 500px;
    max-height: 500px;
    background: radial-gradient(circle, rgba(245, 166, 35, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.hero-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 40px;
    background: var(--primary-soft);
    color: var(--primary);
    padding: 0.4rem 1rem;
    border-radius: var(--r-pill);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 1.4rem;
}

.hero-tag span {
    font-size: 1rem;
}

.hero h1 {
    font-size: clamp(2.6rem, 6vw, 4.8rem);
    line-height: 1.05;
    margin-bottom: 1.4rem;
    letter-spacing: -0.02em;
}

.hero-desc {
    font-size: 1.05rem;
    color: var(--text-body);
    max-width: 460px;
    margin-bottom: 2.5rem;
    line-height: 1.8;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    align-items: center;
}

.hero-social-proof {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-top: 2.2rem;
}

.avatar-stack {
    display: flex;
}

.avatar-stack img,
.avatar-circle {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 2.5px solid white;
    margin-left: -10px;
    object-fit: cover;
}

.avatar-stack img:first-child,
.avatar-circle:first-child {
    margin-left: 0;
}

.avatar-circle {
    background: var(--grad-brand);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.65rem;
    font-weight: 700;
    color: white;
}

.social-proof-text {
    font-size: 0.82rem;
    color: var(--text-muted);
}

.social-proof-text strong {
    color: var(--dark);
    display: block;
}

/* Hero visual */
.hero-visual {
    position: relative;
}

.hero-collage-wrap {
    position: relative;
    border-radius: var(--r-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.hero-collage-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--r-lg);
}

/* Floating badge cards on hero */
.hero-float-card {
    position: absolute;
    background: white;
    padding: 10px 16px;
    border-radius: var(--r-sm);
    box-shadow: var(--shadow-md);
    display: flex;
    align-items: center;
    gap: 10px;
    white-space: nowrap;
    animation: floatY 3s ease-in-out infinite;
}

.hero-float-card:nth-child(2) {
    animation-delay: 1.5s;
}

@keyframes floatY {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-8px);
    }
}

.hero-float-card .card-icon {
    width: 36px;
    height: 36px;
    background: var(--primary-soft);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.hero-float-card .card-label {
    font-size: 0.72rem;
    color: var(--text-muted);
    display: block;
}

.hero-float-card .card-val {
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--dark);
    display: block;
}

.float-card-1 {
    bottom: 12%;
    left: -8%;
}

.float-card-2 {
    top: 12%;
    right: -6%;
}

/* Decorative sparkle dots */
.sparkle {
    position: absolute;
    pointer-events: none;
}

.sparkle::before,
.sparkle::after {
    content: '✦';
    position: absolute;
    color: var(--primary);
    opacity: 0.3;
    animation: twinkle 2.5s ease-in-out infinite;
}

.sparkle::after {
    font-size: 0.6em;
    top: 12px;
    left: 14px;
    animation-delay: 1.2s;
    color: var(--accent);
}

@keyframes twinkle {

    0%,
    100% {
        opacity: 0.2;
        transform: scale(1);
    }

    50% {
        opacity: 0.6;
        transform: scale(1.2);
    }
}

/* ============================================
   STATS BAR
   ============================================ */
.stats-bar {
    background: var(--grad-brand);
    padding: 1.8rem 0;
    overflow: hidden;
}

.stats-inner {
    display: flex;
    justify-content: center;
    gap: clamp(2rem, 6vw, 6rem);
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
    color: white;
}

.stat-number {
    font-size: clamp(1.8rem, 4vw, 2.6rem);
    font-weight: 900;
    line-height: 1;
    display: block;
    font-family: 'Playfair Display', serif;
}

.stat-label {
    font-size: 0.78rem;
    opacity: 0.85;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-top: 0.3rem;
}

/* ============================================
   SECTION HEADERS
   ============================================ */
.section-tag {
    display: inline-block;
    background: var(--primary-soft);
    color: var(--primary);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 0.35rem 1rem;
    border-radius: var(--r-pill);
    margin-bottom: 1rem;
}

.section-headline {
    font-size: clamp(1.9rem, 4.5vw, 3.2rem);
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.section-sub {
    font-size: 1rem;
    color: var(--text-body);
    max-width: 580px;
    line-height: 1.8;
}

/* ============================================
   ABOUT / MISSION SECTION
   ============================================ */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.about-img-wrap {
    position: relative;
}

.about-img-bg {
    position: absolute;
    inset: -14px;
    background: var(--grad-soft);
    border-radius: var(--r-lg);
    z-index: 0;
}

.about-img-wrap img {
    position: relative;
    z-index: 1;
    border-radius: var(--r-md);
    box-shadow: var(--shadow-md);
    width: 100%;
    height: 420px;
    object-fit: cover;
}

.about-badge {
    position: absolute;
    bottom: 28px;
    left: -18px;
    z-index: 2;
    background: white;
    border-radius: var(--r-sm);
    padding: 14px 20px;
    box-shadow: var(--shadow-md);
    display: flex;
    align-items: center;
    gap: 12px;
}

.about-badge-icon {
    width: 44px;
    height: 44px;
    background: var(--primary-soft);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    flex-shrink: 0;
}

.about-badge-text strong {
    display: block;
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--dark);
    line-height: 1;
}

.about-badge-text span {
    font-size: 0.75rem;
    color: var(--text-muted);
}

.about-content {
    padding-left: 1rem;
}

.about-content h2 {
    margin-bottom: 1.5rem;
}

.about-content p {
    margin-bottom: 1.3rem;
    line-height: 1.85;
}

.feature-list {
    margin-top: 2rem;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.feature-dot {
    width: 22px;
    height: 22px;
    background: var(--primary-soft);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    color: var(--primary);
    flex-shrink: 0;
    margin-top: 2px;
}

/* ============================================
   PILLARS SECTION
   ============================================ */
.pillars-section {
    background: var(--bg-soft);
}

.pillars-header {
    text-align: center;
    margin-bottom: 3.5rem;
}

.pillars-header .section-sub {
    margin: 0 auto;
}

.pillars-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.pillar-card {
    background: white;
    border-radius: var(--r-md);
    padding: 2.2rem 2rem;
    box-shadow: var(--shadow-card);
    transition: var(--t);
    position: relative;
    overflow: hidden;
    border-bottom: 4px solid transparent;
}

.pillar-card:nth-child(1) {
    border-bottom-color: var(--primary);
}

.pillar-card:nth-child(2) {
    border-bottom-color: var(--secondary);
}

.pillar-card:nth-child(3) {
    border-bottom-color: var(--accent);
}

.pillar-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-md);
}

.pillar-icon {
    width: 52px;
    height: 52px;
    border-radius: var(--r-sm);
    background: var(--primary-soft);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1.4rem;
}

.pillar-card:nth-child(2) .pillar-icon {
    background: rgba(240, 98, 42, 0.1);
}

.pillar-card:nth-child(3) .pillar-icon {
    background: var(--accent-soft);
}

.pillar-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

.pillar-card p {
    font-size: 0.93rem;
    line-height: 1.8;
}

/* ============================================
   CATEGORIES (BENTO GRID)
   ============================================ */
.categories-section {
    background: var(--bg);
}

.categories-header {
    margin-bottom: 3rem;
}

.bento-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: auto auto;
    gap: 1.2rem;
}

.cat-card {
    border-radius: var(--r-md);
    overflow: hidden;
    position: relative;
    min-height: 280px;
    display: flex;
    align-items: flex-end;
    background-size: cover;
    background-position: center;
    cursor: pointer;
    transition: var(--t);
}

.cat-card:hover {
    transform: scale(1.02);
}

.cat-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(28, 10, 20, 0.85) 0%, rgba(28, 10, 20, 0.2) 60%, transparent 100%);
    transition: var(--t);
}

.cat-card:hover::before {
    background: linear-gradient(to top, rgba(196, 24, 108, 0.9) 0%, rgba(196, 24, 108, 0.3) 70%, transparent 100%);
}

/* Wide cards */
.cat-card.wide {
    grid-column: span 2;
}

.cat-content {
    position: relative;
    z-index: 1;
    padding: 1.5rem 1.8rem;
    width: 100%;
}

.cat-tag {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    background: rgba(255, 255, 255, 0.2);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: var(--r-pill);
    margin-bottom: 0.6rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.cat-content h3 {
    font-size: 1.4rem;
    color: white;
    margin-bottom: 0.4rem;
}

.cat-content p {
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1rem;
    line-height: 1.5;
}

.cat-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.8rem;
    font-weight: 600;
    color: white;
    border: 1.5px solid rgba(255, 255, 255, 0.5);
    padding: 0.4rem 1rem;
    border-radius: var(--r-pill);
    transition: var(--t);
}

.cat-btn:hover {
    background: white;
    color: var(--primary);
    border-color: white;
}

/* ============================================
   MANIFESTO / QUOTE SECTION
   ============================================ */
.manifesto {
    background: var(--grad-brand);
    padding: clamp(60px, 9vw, 100px) 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.manifesto::before {
    content: '';
    position: absolute;
    top: -60px;
    left: 50%;
    transform: translateX(-50%);
    width: 120%;
    height: 120px;
    background: var(--bg);
    border-radius: 0 0 50% 50%;
}

.manifesto::after {
    content: '';
    position: absolute;
    bottom: -60px;
    left: 50%;
    transform: translateX(-50%);
    width: 120%;
    height: 120px;
    background: var(--bg-soft);
    border-radius: 50% 50% 0 0;
}

.manifesto-inner {
    position: relative;
    z-index: 1;
}

.quote-mark {
    font-family: 'Playfair Display', serif;
    font-size: 6rem;
    color: rgba(255, 255, 255, 0.25);
    line-height: 0.8;
    display: block;
    margin-bottom: 1rem;
}

.manifesto h2 {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: clamp(1.6rem, 4vw, 3rem);
    color: white;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.35;
    font-weight: 400;
}

.manifesto h2 strong {
    font-weight: 900;
    font-style: normal;
    display: block;
    margin-top: 0.3rem;
}

.manifesto-author {
    margin-top: 2rem;
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.82rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials-section {
    background: var(--bg-soft);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
}

.testi-card {
    background: white;
    border-radius: var(--r-md);
    padding: 2rem;
    box-shadow: var(--shadow-card);
    transition: var(--t);
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.testi-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.testi-stars {
    display: flex;
    gap: 3px;
    color: var(--accent);
    font-size: 0.9rem;
}

.testi-text {
    font-size: 0.93rem;
    line-height: 1.85;
    color: var(--text-body);
    flex: 1;
}

.testi-author {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-top: 1rem;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.testi-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--grad-brand);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.95rem;
    color: white;
    flex-shrink: 0;
}

.testi-name {
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--dark);
    display: block;
}

.testi-role {
    font-size: 0.76rem;
    color: var(--text-muted);
}

/* ============================================
   JOIN CTA SECTION
   ============================================ */
.cta-section {
    background: var(--grad-dark);
    padding: clamp(60px, 9vw, 100px) 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(196, 24, 108, 0.25) 0%, transparent 60%);
    border-radius: 50%;
    pointer-events: none;
}

.cta-inner {
    position: relative;
    z-index: 1;
}

.cta-section h2 {
    color: white;
    font-size: clamp(2rem, 5vw, 3.8rem);
    margin-bottom: 1.2rem;
}

.cta-section p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1rem;
    max-width: 540px;
    margin: 0 auto 2.5rem;
    line-height: 1.8;
}

.cta-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
    background: #12060F;
    color: rgba(255, 255, 255, 0.65);
    padding-top: 4rem;
}

.footer-top {
    display: grid;
    grid-template-columns: 1.8fr 1fr 1fr 1fr;
    gap: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-brand img {
    height: 48px;
    filter: brightness(0) invert(1);
    margin-bottom: 1rem;
}

.footer-brand p {
    font-size: 0.88rem;
    line-height: 1.75;
    max-width: 260px;
}

.footer-col h5 {
    color: white;
    font-size: 0.88rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin-bottom: 1.2rem;
}

.footer-col li {
    margin-bottom: 0.65rem;
}

.footer-col a {
    font-size: 0.87rem;
    transition: var(--t);
    color: rgba(255, 255, 255, 0.6);
}

.footer-col a:hover {
    color: var(--accent);
}

.social-row {
    display: flex;
    gap: 0.75rem;
    margin-top: 0.5rem;
}

.social-btn {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.65);
    transition: var(--t);
}

.social-btn:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: white;
    transform: translateY(-2px);
}

.footer-bottom {
    padding: 1.4rem 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.75rem;
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.35);
}

.footer-bottom a {
    color: rgba(255, 255, 255, 0.5);
}

.footer-bottom a:hover {
    color: var(--accent);
}

/* ============================================
   MOBILE NAV OVERLAY
   ============================================ */
.mobile-nav {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(28, 10, 20, 0.97);
    z-index: 999;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2.5rem;
    opacity: 0;
    transform: translateX(100%);
    transition: opacity 0.4s ease, transform 0.4s ease;
    padding: 2rem;
}

.mobile-nav.open {
    display: flex;
    opacity: 1;
    transform: translateX(0);
}

.mobile-nav a {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    letter-spacing: 0.02em;
    text-align: center;
    transition: color 0.2s;
}

.mobile-nav a:hover {
    color: var(--accent);
}

.mobile-nav-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: white;
    font-size: 1.4rem;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--t);
}

.mobile-nav-close:hover {
    background: var(--primary);
}

/* ============================================
   RESPONSIVE — TABLET (≤ 900px)
   ============================================ */
@media (max-width: 900px) {

    .nav-links {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .hero-inner {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2.5rem;
    }

    .hero-desc {
        margin: 0 auto 2rem;
    }

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

    .hero-social-proof {
        justify-content: center;
    }

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

    .about-content {
        padding-left: 0;
    }

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

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

    .cat-card.wide {
        grid-column: span 2;
    }

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

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

}

/* ============================================
   RESPONSIVE — MOBILE (≤ 600px)
   ============================================ */
@media (max-width: 600px) {

    .hero {
        padding-top: 4.5rem;
        min-height: auto;
        padding-bottom: 3rem;
    }

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

    .float-card-1,
    .float-card-2 {
        display: none;
    }

    .stats-inner {
        gap: 1.5rem;
    }

    .stat-number {
        font-size: 1.8rem;
    }

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

    .cat-card.wide {
        grid-column: span 1;
    }

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

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

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .manifesto::before,
    .manifesto::after {
        display: none;
    }

    .about-img-wrap img {
        height: 280px;
    }

    .about-badge {
        left: 0;
        bottom: 14px;
    }
}