/* ================================================================
   SABHYA INDIA — DESIGN SYSTEM
   Colors: Navy (#0A0E27) + Saffron (#FF6B35) + White
   Fonts: Outfit (headings) + Inter (body)
   ================================================================ */

/* ---------- CSS VARIABLES ---------- */
:root {
    --bg-primary: #0A0E27;
    --bg-secondary: #0F1535;
    --bg-card: rgba(255, 255, 255, 0.03);
    --accent: #FF6B35;
    --accent-light: #FF8C42;
    --accent-glow: rgba(255, 107, 53, 0.3);
    --red: #FF4444;
    --red-glow: rgba(255, 68, 68, 0.3);
    --gold: #FFD700;
    --gold-glow: rgba(255, 215, 0, 0.3);
    --text-primary: #FFFFFF;
    --text-secondary: rgba(255, 255, 255, 0.7);
    --text-muted: rgba(255, 255, 255, 0.4);
    --border: rgba(255, 255, 255, 0.08);
    --border-accent: rgba(255, 107, 53, 0.2);
    --radius-sm: 12px;
    --radius-md: 18px;
    --radius-lg: 24px;
    --radius-xl: 32px;
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
}

/* ---------- RESET & GLOBALS ---------- */
*,
*::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);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

img {
    max-width: 100%;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

/* ---------- SELECTION ---------- */
::selection {
    background: var(--accent);
    color: white;
}

/* ================================================================
   NAVIGATION
   ================================================================ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 20px 0;
    background: transparent;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.navbar.scrolled {
    background: rgba(10, 14, 39, 0.9);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    padding: 14px 0;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 800;
    color: white;
    z-index: 1001;
}

.nav-logo .logo-icon {
    font-size: 28px;
}

.nav-logo .accent {
    color: var(--accent);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 36px;
}

.nav-link {
    font-size: 15px;
    font-weight: 500;
    color: var(--text-secondary);
    transition: color 0.3s;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent);
    transition: width 0.3s;
}

.nav-link:hover {
    color: white;
}

.nav-link:hover::after {
    width: 100%;
}

.nav-link.cta-link {
    background: var(--accent);
    color: white;
    padding: 10px 24px;
    border-radius: 100px;
    font-weight: 600;
    transition: all 0.3s;
}

.nav-link.cta-link::after {
    display: none;
}

.nav-link.cta-link:hover {
    background: var(--accent-light);
    transform: translateY(-1px);
    box-shadow: 0 4px 20px var(--accent-glow);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}

.nav-toggle span {
    width: 24px;
    height: 2px;
    background: white;
    transition: all 0.3s;
    border-radius: 2px;
}

/* ================================================================
   HERO SECTION
   ================================================================ */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 120px 24px 80px;
    overflow: hidden;
}

.hero-bg-effects {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
}

.orb-1 {
    width: 600px;
    height: 600px;
    top: -15%;
    right: -10%;
    background: radial-gradient(circle, rgba(255, 107, 53, 0.2), transparent 70%);
    animation: float 8s ease-in-out infinite;
}

.orb-2 {
    width: 400px;
    height: 400px;
    bottom: -10%;
    left: -5%;
    background: radial-gradient(circle, rgba(255, 200, 87, 0.12), transparent 70%);
    animation: float 10s ease-in-out infinite reverse;
}

.orb-3 {
    width: 300px;
    height: 300px;
    top: 40%;
    left: 30%;
    background: radial-gradient(circle, rgba(255, 68, 68, 0.08), transparent 70%);
    animation: float 12s ease-in-out infinite;
}

.grid-overlay {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.015) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.015) 1px, transparent 1px);
    background-size: 80px 80px;
    mask-image: radial-gradient(ellipse at center, black 30%, transparent 70%);
    -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 70%);
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0) scale(1);
    }

    50% {
        transform: translateY(-30px) scale(1.05);
    }
}

.hero-content {
    text-align: center;
    max-width: 900px;
    position: relative;
    z-index: 1;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 107, 53, 0.1);
    border: 1px solid rgba(255, 107, 53, 0.25);
    border-radius: 100px;
    padding: 10px 26px;
    margin-bottom: 36px;
    font-size: 14px;
    font-weight: 600;
    color: var(--accent);
    letter-spacing: 1px;
    text-transform: uppercase;
}

.pulse-dot {
    width: 8px;
    height: 8px;
    background: var(--accent);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.5;
        transform: scale(1.5);
    }
}

.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(48px, 8vw, 88px);
    font-weight: 900;
    line-height: 1.05;
    margin-bottom: 28px;
    letter-spacing: -2px;
}

.gradient-text {
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-light) 50%, var(--gold) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: clamp(18px, 2.5vw, 22px);
    color: var(--text-secondary);
    line-height: 1.6;
    max-width: 650px;
    margin: 0 auto 40px;
}

.hero-subtitle strong {
    color: white;
}

.hero-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 64px;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 36px;
    border-radius: var(--radius-sm);
    font-family: var(--font-heading);
    font-size: 17px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
}

.btn-primary {
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-light) 100%);
    color: white;
    box-shadow: 0 4px 24px var(--accent-glow);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 40px rgba(255, 107, 53, 0.5);
}

.btn-arrow {
    font-size: 20px;
    transition: transform 0.3s;
}

.btn-primary:hover .btn-arrow {
    transform: translateX(4px);
}

.btn-ghost {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border);
    color: white;
}

.btn-ghost:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
}

.hero-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
}

.hero-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
}

.stat-value {
    font-family: var(--font-heading);
    font-size: 42px;
    font-weight: 900;
    color: var(--accent);
}

.stat-label {
    font-size: 13px;
    color: var(--text-muted);
    text-align: center;
    line-height: 1.4;
}

.stat-divider {
    width: 1px;
    height: 50px;
    background: var(--border);
}

/* Scroll indicator */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: var(--text-muted);
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, var(--accent), transparent);
    animation: scrollPulse 2s infinite;
}

@keyframes scrollPulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.3;
    }
}

/* ---------- ANIMATE IN ---------- */
.animate-in {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s forwards;
}

.delay-1 {
    animation-delay: 0.15s;
}

.delay-2 {
    animation-delay: 0.3s;
}

.delay-3 {
    animation-delay: 0.45s;
}

.delay-4 {
    animation-delay: 0.6s;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ================================================================
   SECTIONS — SHARED
   ================================================================ */
.section {
    padding: 120px 0;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 72px;
}

.section-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 700;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 16px;
}

.section-label::before {
    content: '';
    width: 8px;
    height: 8px;
    background: var(--accent);
    border-radius: 50%;
}

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.text-accent {
    color: var(--accent);
}

.text-red {
    color: var(--red);
}

.text-gold {
    color: var(--gold);
}

.section-subtitle {
    font-size: 18px;
    color: var(--text-secondary);
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
}

/* ================================================================
   PROBLEM SECTION
   ================================================================ */
.problem-section {
    background: var(--bg-secondary);
}

.problem-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 48px;
}

.problem-card {
    position: relative;
    background: rgba(255, 68, 68, 0.05);
    border: 1px solid rgba(255, 68, 68, 0.15);
    border-radius: var(--radius-lg);
    padding: 40px 30px;
    text-align: center;
    transition: all 0.4s;
    overflow: hidden;
    opacity: 0;
    transform: translateY(30px);
}

.problem-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.problem-card:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 68, 68, 0.3);
    box-shadow: 0 12px 40px rgba(255, 68, 68, 0.1);
}

.problem-card .card-glow {
    position: absolute;
    top: -50%;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(255, 68, 68, 0.1), transparent 70%);
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.4s;
}

.problem-card:hover .card-glow {
    opacity: 1;
}

.problem-number {
    font-family: var(--font-heading);
    font-size: 56px;
    font-weight: 900;
    color: var(--accent);
    line-height: 1;
    margin-bottom: 14px;
}

.problem-text {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.5;
}

.problem-card.featured {
    border-color: rgba(255, 107, 53, 0.3);
    background: rgba(255, 107, 53, 0.08);
}

.problem-quote {
    text-align: center;
}

.problem-quote blockquote {
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 500;
    color: var(--text-secondary);
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
    padding: 24px 0;
    border-top: 1px solid var(--border);
}

.problem-quote strong {
    color: white;
}

/* ================================================================
   MISSION SECTION
   ================================================================ */
.mission-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.mission-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 40px 30px;
    transition: all 0.4s;
    opacity: 0;
    transform: translateY(30px);
}

.mission-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.mission-card:hover {
    transform: translateY(-6px);
    border-color: var(--border-accent);
    box-shadow: 0 16px 48px rgba(255, 107, 53, 0.08);
}

.mission-icon {
    font-size: 40px;
    margin-bottom: 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 72px;
    height: 72px;
    background: rgba(255, 107, 53, 0.08);
    border-radius: var(--radius-md);
}

.mission-card h3 {
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 12px;
}

.mission-card p {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* ================================================================
   HEROES SECTION
   ================================================================ */
.heroes-section {
    background: var(--bg-secondary);
}

.heroes-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-bottom: 48px;
}

.hero-card {
    position: relative;
    background: rgba(255, 215, 0, 0.03);
    border: 1px solid rgba(255, 215, 0, 0.12);
    border-radius: var(--radius-xl);
    overflow: hidden;
    transition: all 0.4s;
    opacity: 0;
    transform: translateY(30px);
}

.hero-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.hero-card:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 215, 0, 0.25);
    box-shadow: 0 16px 48px rgba(255, 215, 0, 0.06);
}

.hero-card-accent {
    height: 4px;
    background: linear-gradient(90deg, var(--accent), var(--gold), var(--accent));
}

.hero-card-content {
    padding: 40px;
}

.hero-emoji {
    font-size: 44px;
    margin-bottom: 16px;
}

.hero-card h3 {
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 8px;
}

.hero-location {
    font-size: 14px;
    color: var(--text-muted);
    display: block;
    margin-bottom: 20px;
}

.hero-story {
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 24px;
}

.hero-story strong {
    color: var(--gold);
}

.hero-lesson {
    background: rgba(255, 215, 0, 0.06);
    border-radius: var(--radius-sm);
    padding: 16px 20px;
    font-size: 15px;
    color: var(--text-secondary);
}

.lesson-label {
    font-weight: 700;
    color: var(--gold);
    margin-right: 6px;
}

.heroes-cta {
    text-align: center;
    font-size: 17px;
    color: var(--text-muted);
}

.heroes-cta strong {
    color: var(--accent);
}

/* ================================================================
   HOW IT WORKS
   ================================================================ */
.steps-grid {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
}

.step-card {
    flex: 1;
    max-width: 320px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 40px 30px;
    text-align: center;
    transition: all 0.4s;
    opacity: 0;
    transform: translateY(30px);
}

.step-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.step-card:hover {
    transform: translateY(-4px);
    border-color: var(--border-accent);
}

.step-number {
    font-family: var(--font-heading);
    font-size: 52px;
    font-weight: 900;
    color: var(--accent);
    opacity: 0.2;
    line-height: 1;
    margin-bottom: 20px;
}

.step-card h3 {
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 12px;
}

.step-card p {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.6;
}

.step-connector {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
    width: 60px;
}

.connector-line {
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--accent), transparent);
}

.connector-dot {
    width: 10px;
    height: 10px;
    background: var(--accent);
    border-radius: 50%;
    margin-top: -5px;
}

/* ================================================================
   JOIN SECTION
   ================================================================ */
.join-section {
    overflow: hidden;
}

.join-bg-effects {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.join-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
}

.join-orb-1 {
    width: 500px;
    height: 500px;
    top: -20%;
    right: -10%;
    background: radial-gradient(circle, rgba(255, 107, 53, 0.15), transparent 70%);
}

.join-orb-2 {
    width: 400px;
    height: 400px;
    bottom: -15%;
    left: -5%;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.08), transparent 70%);
}

.join-content {
    text-align: center;
    position: relative;
    z-index: 1;
}

.join-title {
    font-family: var(--font-heading);
    font-size: clamp(40px, 6vw, 72px);
    font-weight: 900;
    line-height: 1.05;
    margin-bottom: 20px;
    letter-spacing: -2px;
}

.join-subtitle {
    font-size: 20px;
    color: var(--text-secondary);
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto 48px;
}

.join-socials {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 48px;
}

.social-card {
    display: flex;
    align-items: center;
    gap: 16px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 24px 28px;
    min-width: 240px;
    transition: all 0.4s;
    opacity: 0;
    transform: translateY(30px);
}

.social-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.social-card:hover {
    transform: translateY(-4px);
    border-color: var(--border-accent);
    box-shadow: 0 12px 40px var(--accent-glow);
}

.social-icon {
    font-size: 32px;
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 107, 53, 0.1);
    border-radius: var(--radius-sm);
}

.social-info {
    text-align: left;
}

.social-platform {
    display: block;
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 2px;
}

.social-handle {
    font-family: var(--font-heading);
    font-size: 17px;
    font-weight: 700;
    color: white;
}

.social-arrow {
    margin-left: auto;
    font-size: 22px;
    color: var(--accent);
    transition: transform 0.3s;
}

.social-card:hover .social-arrow {
    transform: translateX(4px);
}

.join-tagline {
    font-family: var(--font-heading);
    font-size: 22px;
    color: var(--text-muted);
}

.join-tagline strong {
    color: white;
}

/* ================================================================
   FOOTER
   ================================================================ */
.footer {
    background: var(--bg-secondary);
    padding: 64px 0 0;
    border-top: 1px solid var(--border);
}

.footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 48px;
    padding-bottom: 48px;
    border-bottom: 1px solid var(--border);
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 16px;
}

.footer-logo .accent {
    color: var(--accent);
}

.footer-desc {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.6;
    max-width: 360px;
}

.footer-links h4 {
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 700;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.footer-links a {
    display: block;
    font-size: 15px;
    color: var(--text-secondary);
    margin-bottom: 12px;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--accent);
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 0;
}

.footer-bottom p {
    font-size: 14px;
    color: var(--text-muted);
}

.footer-motto {
    color: var(--text-muted);
}

/* ================================================================
   RESPONSIVE — TABLET
   ================================================================ */
@media (max-width: 1024px) {
    .problem-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .mission-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .heroes-grid {
        grid-template-columns: 1fr;
    }

    .footer-top {
        grid-template-columns: 1fr 1fr;
    }
}

/* ================================================================
   RESPONSIVE — MOBILE
   ================================================================ */
@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: rgba(10, 14, 39, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: center;
        gap: 28px;
        padding: 40px;
        transition: right 0.4s;
        border-left: 1px solid var(--border);
    }

    .nav-links.open {
        right: 0;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .nav-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }

    .hero {
        padding: 100px 20px 60px;
    }

    .hero-title {
        letter-spacing: -1px;
    }

    .hero-actions {
        flex-direction: column;
        gap: 12px;
    }

    .hero-stats {
        flex-direction: column;
        gap: 24px;
    }

    .stat-divider {
        width: 40px;
        height: 1px;
    }

    .section {
        padding: 80px 0;
    }

    .problem-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .problem-card {
        padding: 28px 20px;
    }

    .problem-number {
        font-size: 40px;
    }

    .mission-grid {
        grid-template-columns: 1fr;
    }

    .steps-grid {
        flex-direction: column;
        gap: 16px;
    }

    .step-connector {
        width: 2px;
        height: 40px;
        flex-direction: row;
    }

    .connector-line {
        width: 2px;
        height: 100%;
        background: linear-gradient(to bottom, transparent, var(--accent), transparent);
    }

    .connector-dot {
        display: none;
    }

    .join-socials {
        flex-direction: column;
        align-items: center;
    }

    .social-card {
        width: 100%;
        max-width: 360px;
    }

    .footer-top {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .problem-grid {
        grid-template-columns: 1fr;
    }
}

/* ---------- SHARED: LOGO IMAGES ---------- */
.nav-logo-img {
    height: 34px;
    width: auto;
    border-radius: 6px;
    box-shadow: 0 2px 8px rgba(255, 107, 53, 0.15);
    transition: box-shadow 0.3s ease;
}

.nav-logo:hover .nav-logo-img {
    box-shadow: 0 2px 16px rgba(255, 107, 53, 0.3);
}

.footer-logo-img {
    height: 44px;
    width: auto;
    border-radius: 8px;
    box-shadow: 0 2px 12px rgba(255, 107, 53, 0.12);
    margin-bottom: 16px;
}

/* ---------- SHARED: GROWONTRIP PARTNER BANNER ---------- */
.footer-partner {
    padding: 48px 0;
    border-bottom: 1px solid var(--border);
}

.partner-card {
    display: flex;
    align-items: center;
    gap: 28px;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.12) 0%, rgba(255, 107, 53, 0.04) 100%);
    border: 1px solid rgba(255, 107, 53, 0.25);
    border-left: 4px solid var(--accent);
    border-radius: var(--radius-lg);
    padding: 36px 40px;
    transition: all 0.35s ease;
    text-decoration: none;
    color: inherit;
    box-shadow: 0 4px 24px rgba(255, 107, 53, 0.08);
}

.partner-card:hover {
    border-color: rgba(255, 107, 53, 0.5);
    border-left-color: var(--accent);
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(255, 107, 53, 0.18);
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.16) 0%, rgba(255, 107, 53, 0.06) 100%);
}

.partner-badge {
    flex-shrink: 0;
    width: 64px;
    height: 64px;
    background: #FFFFFF;
    border: 1px solid rgba(255, 107, 53, 0.25);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 6px;
}

.partner-badge img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.partner-content {
    flex: 1;
    min-width: 0;
}

.partner-eyebrow {
    font-size: 12px;
    font-weight: 700;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 2.5px;
    margin-bottom: 8px;
}

.partner-title {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 6px;
    line-height: 1.4;
}

.partner-desc {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.5;
}

.partner-cta {
    flex-shrink: 0;
    font-family: var(--font-heading);
    font-size: 15px;
    font-weight: 700;
    color: var(--accent);
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 6px;
    background: rgba(255, 107, 53, 0.1);
    padding: 10px 20px;
    border-radius: 100px;
    border: 1px solid rgba(255, 107, 53, 0.2);
    transition: all 0.3s ease;
}

.partner-card:hover .partner-cta {
    background: var(--accent);
    color: white;
    border-color: var(--accent);
}

@media (max-width: 768px) {
    .partner-card {
        flex-direction: column;
        text-align: center;
        padding: 32px 24px;
        gap: 20px;
        border-left: 1px solid rgba(255, 107, 53, 0.25);
        border-top: 4px solid var(--accent);
    }
    .partner-cta {
        justify-content: center;
    }
    .partner-title {
        font-size: 18px;
    }
}

/* ---------- SHARED: MERCH GRID TABLET FIX ---------- */
@media (max-width: 1024px) {
    .merch-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}