/* --- Brand Variables (Global) --- */
:root {
    --sm-canvas: #FFFDF5;
    --sm-foreground: #1E293B;
    --sm-primary: #FBBF24;
    --sm-violet: #8B5CF6;
    --sm-pink: #F472B6;
    --sm-mint: #34D399;
    --sm-white: #ffffff;
    --sm-shadow: 4px 4px 0px 0px #1E293B;
    --sm-shadow-lg: 6px 6px 0px 0px #1E293B;
    --sm-border: 2px solid #1E293B;
    --sm-radius: 16px;
    --sm-radius-sm: 10px;
}

/* ======== RESET & BASE ======== */
* { margin: 0; padding: 0; box-sizing: border-box; }
body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    background-color: var(--sm-canvas);
    color: var(--sm-foreground);
    overflow-x: hidden;
    line-height: 1.6;
}
h1, h2, h3, h4 { font-family: 'Outfit', sans-serif; line-height: 1.15; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; padding: 0; margin: 0; }

/* ======== SHARED COMPONENTS ======== */
.section-label {
    font-family: 'Outfit', sans-serif;
    font-size: 0.85rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--sm-violet);
    font-weight: 700;
    display: block;
    margin-bottom: 12px;
    text-align: center;
}
.section-heading {
    font-size: 3rem;
    color: var(--sm-foreground);
    margin-bottom: 50px;
    font-weight: 400;
    text-align: center;
}
.section-heading span { font-weight: 800; }

/* Candy Button (Primary CTA) */
.btn-candy {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    padding: 16px 40px;
    font-size: 1.05rem;
    font-weight: 700;
    font-family: 'Outfit', sans-serif;
    background: var(--sm-primary);
    color: var(--sm-foreground);
    border: var(--sm-border);
    border-radius: 50px;
    box-shadow: var(--sm-shadow);
    cursor: pointer;
    transition: all 0.2s ease;
    text-decoration: none;
}
.btn-candy:hover {
    transform: translateY(-3px);
    box-shadow: var(--sm-shadow-lg);
}
.btn-candy:active {
    transform: translateY(2px);
    box-shadow: 2px 2px 0px 0px #1E293B;
}

/* Outline Button */
.btn-outline {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    padding: 16px 40px;
    font-size: 1.05rem;
    font-weight: 700;
    font-family: 'Outfit', sans-serif;
    background: transparent;
    color: var(--sm-foreground);
    border: var(--sm-border);
    border-radius: 50px;
    box-shadow: var(--sm-shadow);
    cursor: pointer;
    transition: all 0.2s ease;
    text-decoration: none;
}
.btn-outline:hover {
    background: var(--sm-mint);
    transform: translateY(-3px);
    box-shadow: var(--sm-shadow-lg);
}
.btn-outline:active {
    transform: translateY(2px);
    box-shadow: 2px 2px 0px 0px #1E293B;
}

/* ======== HEADER ======== */
.nexus-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 18px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 9999;
    box-sizing: border-box;
    background: linear-gradient(to bottom, rgba(255, 253, 245, 0.95) 0%, rgba(255, 253, 245, 0) 100%);
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1), padding 0.3s ease, background 0.3s ease;
}
.nexus-header.scrolled {
    background: rgba(255, 253, 245, 0.97);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 2px 0 0 rgba(30, 41, 59, 0.08);
}
.header-logo { display: flex; align-items: center; z-index: 10001; }
.header-logo img { height: 44px; width: auto; display: block; transition: height 0.3s ease; }
.menu-toggle {
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 10001;
    background: transparent;
    border: none;
    padding: 0;
    box-shadow: none;
}
.menu-text {
    font-family: 'Outfit', sans-serif;
    font-size: 0.8rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 700;
    color: var(--sm-foreground);
    transition: color 0.3s;
}
.hamburger-lines {
    width: 30px;
    height: 20px;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.line {
    width: 100%;
    height: 2.5px;
    background-color: var(--sm-foreground);
    transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    border-radius: 2px;
}
.menu-open .line:nth-child(1) { transform: rotate(45deg) translate(5px, 6px); background-color: var(--sm-primary); }
.menu-open .line:nth-child(2) { opacity: 0; transform: translateX(-10px); }
.menu-open .line:nth-child(3) { transform: rotate(-45deg) translate(5px, -7px); background-color: var(--sm-primary); }
.menu-open .menu-text { color: var(--sm-primary); }

/* ======== FULLSCREEN MENU ======== */
.fullscreen-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: var(--sm-foreground);
    z-index: 9998;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    visibility: hidden;
    clip-path: circle(0% at 95% 5%);
}
.menu-bg-texture {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(circle, rgba(251, 191, 36, 0.06) 1px, transparent 1px);
    background-size: 30px 30px;
    pointer-events: none;
}
.nav-links { list-style: none; padding: 0; margin: 0; text-align: center; position: relative; z-index: 2; }
.nav-item { margin: 18px 0; overflow: hidden; }
.nav-link {
    display: block;
    font-family: 'Outfit', sans-serif;
    font-size: 3rem;
    font-weight: 300;
    color: var(--sm-white);
    text-decoration: none;
    text-transform: uppercase;
    transition: all 0.4s ease;
    transform: translateY(100%);
}
.nav-link:hover {
    color: var(--sm-primary);
    transform: translateX(10px);
    font-weight: 600;
}
.menu-footer {
    position: absolute;
    bottom: 50px;
    display: flex;
    gap: 40px;
    color: rgba(255, 255, 255, 0.5);
    font-family: 'Outfit', sans-serif;
    font-size: 0.9rem;
    opacity: 0;
}
.menu-footer a { color: inherit; text-decoration: none; transition: color 0.3s; }
.menu-footer a:hover { color: var(--sm-primary); }

/* ======== SECTION 1: HERO ======== */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 120px 60px 80px;
    overflow: hidden;
    background-color: var(--sm-canvas);
}
.hero-dot-grid {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, rgba(30, 41, 59, 0.08) 1.5px, transparent 1.5px);
    background-size: 28px 28px;
    pointer-events: none;
    z-index: 0;
}
.hero-amber-circle {
    position: absolute;
    width: 550px;
    height: 550px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(251, 191, 36, 0.25) 0%, rgba(251, 191, 36, 0) 70%);
    left: 5%;
    top: 15%;
    z-index: 0;
    pointer-events: none;
}
.hero-content {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    width: 100%;
    display: flex;
    align-items: center;
    gap: 60px;
}
.hero-text { flex: 1; max-width: 560px; }
.hero-label {
    font-family: 'Outfit', sans-serif;
    font-size: 0.85rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--sm-violet);
    font-weight: 700;
    display: inline-block;
    background: rgba(139, 92, 246, 0.1);
    border: 2px solid var(--sm-violet);
    border-radius: 50px;
    padding: 6px 18px;
    margin-bottom: 24px;
    box-shadow: 3px 3px 0px 0px var(--sm-violet);
}
.hero-title {
    font-size: 4.2rem;
    font-weight: 800;
    color: var(--sm-foreground);
    margin-bottom: 24px;
    line-height: 1.05;
}
.hero-title-accent {
    color: var(--sm-primary);
    position: relative;
    display: inline-block;
}
.hero-squiggle {
    position: absolute;
    width: 100%;
    height: 12px;
    bottom: -6px;
    left: 0;
}
.hero-subtitle {
    font-size: 1.15rem;
    color: rgba(30, 41, 59, 0.75);
    margin-bottom: 40px;
    line-height: 1.7;
    max-width: 480px;
}
.hero-buttons { display: flex; gap: 18px; flex-wrap: wrap; }
.hero-visual { flex: 1; display: flex; justify-content: center; align-items: center; }
.hero-image-blob {
    width: 420px;
    height: 420px;
    border-radius: 60% 40% 50% 50% / 50% 60% 40% 50%;
    overflow: hidden;
    border: 3px solid var(--sm-foreground);
    box-shadow: 8px 8px 0px 0px var(--sm-foreground);
    background: var(--sm-white);
}
.hero-image-blob img { width: 100%; height: 100%; object-fit: cover; }
.hero-scroll-hint {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    font-family: 'Outfit', sans-serif;
    font-size: 0.75rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(30, 41, 59, 0.4);
}
.scroll-dot { animation: bounceDown 2s ease infinite; }

/* ======== SECTION 2: THE DEAL ======== */
.deal-section {
    padding: 120px 40px;
    background-color: var(--sm-white);
    position: relative;
    overflow: hidden;
}
.deal-container { max-width: 1000px; margin: 0 auto; }
.deal-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
}
.deal-card {
    background: var(--sm-canvas);
    border: var(--sm-border);
    border-radius: var(--sm-radius);
    padding: 40px 32px;
    transition: all 0.3s ease;
    position: relative;
}
.deal-card-problem {
    transform: rotate(-2deg);
    box-shadow: 5px 5px 0px 0px var(--sm-pink);
}
.deal-card-problem:hover {
    transform: rotate(0deg) translateY(-4px);
    box-shadow: 7px 7px 0px 0px var(--sm-pink);
}
.deal-card-solution {
    transform: rotate(2deg);
    box-shadow: 5px 5px 0px 0px var(--sm-mint);
}
.deal-card-solution:hover {
    transform: rotate(0deg) translateY(-4px);
    box-shadow: 7px 7px 0px 0px var(--sm-mint);
}
.deal-card-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: var(--sm-border);
    margin-bottom: 20px;
}
.deal-icon-problem { background: rgba(244, 114, 182, 0.15); color: var(--sm-pink); }
.deal-icon-solution { background: rgba(52, 211, 153, 0.15); color: var(--sm-mint); }
.deal-card h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 14px;
}
.deal-card p { color: rgba(30, 41, 59, 0.7); line-height: 1.7; }
.deal-sides { display: flex; flex-direction: column; gap: 16px; margin-top: 12px; }
.deal-side {
    background: var(--sm-white);
    border: var(--sm-border);
    border-radius: var(--sm-radius-sm);
    padding: 16px 20px;
}
.deal-side strong {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    color: var(--sm-foreground);
    display: block;
    margin-bottom: 4px;
}
.deal-side p { font-size: 0.9rem; margin: 0; }

/* ======== SECTION 3: MARKET ======== */
.market-section {
    padding: 100px 40px 60px;
    background-color: var(--sm-canvas);
    position: relative;
    overflow: hidden;
    text-align: center;
}
.market-shapes { position: absolute; inset: 0; pointer-events: none; z-index: 0; }
.floating-shape { position: absolute; opacity: 0.35; }
.shape-triangle {
    width: 0;
    height: 0;
    border-left: 30px solid transparent;
    border-right: 30px solid transparent;
    border-bottom: 52px solid var(--sm-pink);
    top: 15%;
    left: 8%;
    transform: rotate(15deg);
}
.shape-triangle-2 {
    border-bottom-color: var(--sm-violet);
    top: auto;
    bottom: 20%;
    left: auto;
    right: 12%;
    transform: rotate(-20deg);
}
.shape-squiggle {
    width: 60px;
    height: 20px;
    border-bottom: 4px solid var(--sm-mint);
    border-radius: 0 0 50% 50%;
    top: 30%;
    right: 10%;
    transform: rotate(10deg);
}
.shape-circle {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--sm-primary);
    bottom: 25%;
    left: 15%;
}
.market-content { position: relative; z-index: 1; max-width: 650px; margin: 0 auto 50px; }
.market-desc {
    font-size: 1.1rem;
    color: rgba(30, 41, 59, 0.7);
    line-height: 1.7;
}
.marquee-track {
    width: 100%;
    overflow: hidden;
    border-top: var(--sm-border);
    border-bottom: var(--sm-border);
    padding: 18px 0;
    background: var(--sm-white);
    position: relative;
    z-index: 1;
}
.marquee-inner {
    display: flex;
    gap: 0;
    white-space: nowrap;
    animation: marqueeScroll 20s linear infinite;
    width: max-content;
}
.marquee-inner span {
    font-family: 'Outfit', sans-serif;
    font-size: 2rem;
    font-weight: 800;
    text-transform: uppercase;
    color: var(--sm-foreground);
    padding: 0 20px;
    letter-spacing: 2px;
}
.marquee-dot { color: var(--sm-primary); }

/* ======== SECTION 4: VALUE PROPOSITION ======== */
.value-section {
    padding: 120px 40px;
    background-color: var(--sm-white);
    position: relative;
}
.value-container { max-width: 1100px; margin: 0 auto; }
.value-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
}
.value-card {
    background: var(--sm-canvas);
    border: var(--sm-border);
    border-radius: var(--sm-radius);
    padding: 36px 24px;
    text-align: center;
    transition: all 0.3s ease;
}
.value-card:hover { transform: translateY(-6px); }
.value-card-pink { box-shadow: 5px 5px 0px 0px var(--sm-pink); }
.value-card-pink:hover { box-shadow: 7px 7px 0px 0px var(--sm-pink); }
.value-card-violet { box-shadow: 5px 5px 0px 0px var(--sm-violet); }
.value-card-violet:hover { box-shadow: 7px 7px 0px 0px var(--sm-violet); }
.value-card-amber { box-shadow: 5px 5px 0px 0px var(--sm-primary); }
.value-card-amber:hover { box-shadow: 7px 7px 0px 0px var(--sm-primary); }
.value-card-mint { box-shadow: 5px 5px 0px 0px var(--sm-mint); }
.value-card-mint:hover { box-shadow: 7px 7px 0px 0px var(--sm-mint); }
.value-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    border: var(--sm-border);
}
.value-icon-red { background: rgba(244, 114, 182, 0.15); color: var(--sm-pink); }
.value-icon-violet { background: rgba(139, 92, 246, 0.15); color: var(--sm-violet); }
.value-icon-amber { background: rgba(251, 191, 36, 0.2); color: #b88a10; }
.value-icon-mint { background: rgba(52, 211, 153, 0.15); color: #1a9a6a; }
.value-card h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 10px;
}
.value-card p { font-size: 0.9rem; color: rgba(30, 41, 59, 0.65); line-height: 1.6; }

/* ======== SECTION 5: PRODUCT (HOW IT WORKS) ======== */
.product-section {
    padding: 120px 40px;
    background-color: var(--sm-canvas);
    position: relative;
}
.product-container { max-width: 950px; margin: 0 auto; }
.product-steps { position: relative; padding: 40px 0; }
.steps-connector { display: none; }
.step {
    display: flex;
    align-items: center;
    gap: 50px;
    margin-bottom: 80px;
    position: relative;
    z-index: 1;
}
.step:not(:last-child)::after {
    content: '';
    position: absolute;
    bottom: -55px;
    left: 50%;
    transform: translateX(-50%);
    width: 3px;
    height: 30px;
    background-image: repeating-linear-gradient(
        to bottom,
        var(--sm-foreground) 0px,
        var(--sm-foreground) 5px,
        transparent 5px,
        transparent 10px
    );
    opacity: 0.3;
}
.step:last-child { margin-bottom: 0; }
.step-right { flex-direction: row-reverse; }
.step-image {
    flex: 0 0 220px;
    width: 220px;
    height: 220px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--sm-foreground);
    box-shadow: var(--sm-shadow-lg);
    background: var(--sm-white);
}
.step-image img { width: 100%; height: 100%; object-fit: cover; }
.step-content { flex: 1; }
.step-number {
    font-family: 'Outfit', sans-serif;
    font-size: 4rem;
    font-weight: 800;
    color: rgba(251, 191, 36, 0.25);
    line-height: 1;
    margin-bottom: 8px;
}
.step-content h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 10px;
}
.step-content p { color: rgba(30, 41, 59, 0.7); line-height: 1.7; max-width: 380px; }

/* ======== SECTION 6: TRACTION ======== */
.traction-section {
    padding: 120px 40px;
    background-color: var(--sm-foreground);
    color: var(--sm-white);
    position: relative;
    overflow: hidden;
}
.traction-container { max-width: 900px; margin: 0 auto; }
.traction-section .section-label { color: var(--sm-primary); }
.traction-section .section-heading { color: var(--sm-white); }
.traction-section .section-heading span { color: var(--sm-primary); }

.testimonial-swiper { padding-bottom: 50px; }
.testimonial-bubble {
    background: rgba(255, 255, 255, 0.06);
    border: 2px solid rgba(255, 255, 255, 0.12);
    border-radius: 24px 24px 24px 4px;
    padding: 36px 32px;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}
.testimonial-bubble p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 18px;
    font-style: italic;
}
.testimonial-author {
    font-family: 'Outfit', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--sm-primary);
}
.swiper-pagination { bottom: 0 !important; }
.swiper-pagination-bullet { background: rgba(255, 255, 255, 0.3); width: 10px; height: 10px; opacity: 1; }
.swiper-pagination-bullet-active { background: var(--sm-primary); width: 28px; border-radius: 5px; }

.traction-badges {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 50px;
    flex-wrap: wrap;
}
.badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    border-radius: 50px;
    border: 2.5px solid;
    position: relative;
}
.badge-vet {
    color: var(--sm-mint);
    border-color: var(--sm-mint);
    background: rgba(52, 211, 153, 0.1);
    box-shadow: 4px 4px 0px 0px var(--sm-mint);
}
.badge-patent {
    color: var(--sm-violet);
    border-color: var(--sm-violet);
    background: rgba(139, 92, 246, 0.1);
    box-shadow: 4px 4px 0px 0px var(--sm-violet);
}

/* ======== SECTION 7: IMPACT ======== */
.impact-section {
    padding: 150px 40px;
    background-color: var(--sm-canvas);
    position: relative;
    overflow: hidden;
    text-align: center;
}
.confetti-bg { position: absolute; inset: 0; pointer-events: none; z-index: 0; }
.confetti-bg svg { position: absolute; opacity: 0.5; }
.c1 { top: 10%; left: 8%; }
.c2 { top: 20%; right: 12%; transform: rotate(30deg); }
.c3 { bottom: 30%; left: 20%; }
.c4 { top: 40%; left: 55%; transform: rotate(-20deg); }
.c5 { bottom: 15%; right: 18%; }
.c6 { top: 60%; left: 10%; transform: rotate(45deg); }
.c7 { bottom: 40%; right: 30%; }
.c8 { top: 15%; left: 40%; transform: rotate(-15deg); }
.impact-content { position: relative; z-index: 1; max-width: 800px; margin: 0 auto; }
.impact-title {
    font-family: 'Outfit', sans-serif;
    font-size: 3.8rem;
    font-weight: 800;
    color: var(--sm-foreground);
    line-height: 1.15;
    text-shadow: 3px 3px 0px rgba(30, 41, 59, 0.08);
}
.impact-title span { color: var(--sm-primary); }

/* ======== SECTION 8: TEAM & GOALS ======== */
.team-section {
    padding: 120px 40px;
    background-color: var(--sm-white);
    position: relative;
}
.team-container { max-width: 900px; margin: 0 auto; }
.team-cards {
    display: flex;
    justify-content: center;
    gap: 50px;
    margin-bottom: 80px;
    flex-wrap: wrap;
}
.team-card {
    background: var(--sm-canvas);
    border: var(--sm-border);
    border-radius: var(--sm-radius);
    padding: 32px 28px;
    text-align: center;
    box-shadow: var(--sm-shadow);
    transition: all 0.3s ease;
    width: 240px;
}
.team-card:first-child { transform: rotate(-2deg); }
.team-card:last-child { transform: rotate(2deg); }
.team-card:hover { transform: rotate(0deg) translateY(-4px); box-shadow: var(--sm-shadow-lg); }
.team-photo {
    width: 130px;
    height: 130px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--sm-foreground);
    box-shadow: 3px 3px 0px 0px var(--sm-foreground);
    margin: 0 auto 18px;
    background: #e2e2e2;
}
.team-photo img { width: 100%; height: 100%; object-fit: cover; }
.team-card h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 4px;
}
.team-role {
    font-size: 0.85rem;
    color: rgba(30, 41, 59, 0.55);
    display: block;
    margin-bottom: 10px;
}
.team-linkedin {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: var(--sm-border);
    color: var(--sm-foreground);
    transition: all 0.2s ease;
    box-shadow: 2px 2px 0px 0px var(--sm-foreground);
}
.team-linkedin:hover {
    background: var(--sm-primary);
    transform: translateY(-2px);
    box-shadow: 3px 3px 0px 0px var(--sm-foreground);
}

/* Contact Block */
.contact-block { text-align: center; }
.contact-title {
    font-family: 'Outfit', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 40px;
}
.contact-info-centered {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
}
.contact-email {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--sm-foreground);
    font-weight: 500;
}
.contact-email a {
    color: var(--sm-foreground);
    font-weight: 600;
    transition: color 0.2s;
}
.contact-email a:hover { color: var(--sm-primary); }
.btn-whatsapp {
    width: 100%;
    text-align: center;
    font-size: 1rem;
    padding: 18px 28px;
}

/* ======== FOOTER ======== */
.saveme-footer-section {
    background-color: var(--sm-foreground);
    color: var(--sm-white);
    padding: 80px 40px 0 40px;
    border-top: 3px solid var(--sm-primary);
    font-size: 0.9rem;
    position: relative;
    z-index: 10;
}
.footer-container {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr;
    gap: 50px;
    padding-bottom: 60px;
    align-items: start;
}
.footer-col { display: flex; flex-direction: column; align-items: flex-start; }
.footer-col h4 {
    color: var(--sm-primary);
    font-family: 'Outfit', sans-serif;
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 22px;
    letter-spacing: 0.5px;
    border-bottom: 2px solid rgba(251, 191, 36, 0.3);
    padding-bottom: 10px;
    width: fit-content;
}
.footer-logo { width: 130px; height: auto; margin-bottom: 18px; display: block; filter: brightness(0) invert(1); }
.footer-desc { color: rgba(255, 255, 255, 0.6); line-height: 1.8; max-width: 280px; }
.footer-links li { margin-bottom: 12px; }
.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 400;
    display: block;
}
.footer-links a:hover { color: var(--sm-primary); padding-left: 5px; }
.footer-contact-item { margin-bottom: 15px; font-style: normal; }
.footer-contact-label { display: block; font-size: 0.75rem; color: rgba(255, 255, 255, 0.35); margin-bottom: 3px; }
.footer-contact-value { color: var(--sm-white); font-weight: 500; text-decoration: none; font-size: 0.95rem; transition: color 0.3s; }
.footer-contact-value:hover { color: var(--sm-primary); }
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 25px 0;
    text-align: center;
    color: rgba(255, 255, 255, 0.3);
    font-size: 0.8rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1100px;
    margin: 0 auto;
}
.footer-bottom-links a { color: rgba(255, 255, 255, 0.3); text-decoration: none; margin-left: 20px; transition: color 0.3s; }
.footer-bottom-links a:hover { color: var(--sm-primary); }

/* ======== KEYFRAMES ======== */
@keyframes fadeInUp { 0% { opacity: 0; transform: translateY(30px); } 100% { opacity: 1; transform: translateY(0); } }
@keyframes bounceDown { 0%, 20%, 50%, 80%, 100% { transform: translateY(0); } 40% { transform: translateY(8px); } 60% { transform: translateY(4px); } }
@keyframes marqueeScroll { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* ======== RESPONSIVE: MOBILE (max-width: 768px) ======== */
@media (max-width: 768px) {
    /* Header */
    .nexus-header { padding: 14px 20px; }
    .header-logo img { height: 34px; }
    .menu-text { display: none; }
    .nav-link { font-size: 2rem; }
    .menu-footer { flex-direction: column; gap: 15px; text-align: center; bottom: 30px; }

    /* Hero */
    .hero-section { padding: 110px 24px 60px; min-height: auto; }
    .hero-content { flex-direction: column; text-align: center; gap: 40px; }
    .hero-text { max-width: 100%; }
    .hero-title { font-size: 2.6rem; }
    .hero-subtitle { margin: 0 auto 32px; }
    .hero-buttons { justify-content: center; }
    .hero-image-blob { width: 280px; height: 280px; }
    .hero-amber-circle { width: 300px; height: 300px; left: -10%; top: 5%; }
    .hero-scroll-hint { display: none; }

    /* Sections */
    .section-heading { font-size: 2.2rem; margin-bottom: 36px; }
    .deal-section { padding: 80px 24px; }
    .deal-cards { grid-template-columns: 1fr; gap: 24px; }
    .deal-card-problem, .deal-card-solution { transform: rotate(0deg); }

    .market-section { padding: 80px 24px 40px; }
    .marquee-inner span { font-size: 1.4rem; }

    .value-section { padding: 80px 24px; }
    .value-grid { grid-template-columns: 1fr; gap: 18px; max-width: 360px; margin: 0 auto; }

    .product-section { padding: 80px 24px; }
    .step { flex-direction: column !important; text-align: center; gap: 24px; margin-bottom: 50px; }
    .step .step-image { order: 1; }
    .step .step-content { order: 2; }
    .step-content p { max-width: 100%; margin: 0 auto; }
    .step-image { flex: 0 0 180px; width: 180px; height: 180px; }
    .steps-connector { display: none; }
    .step:not(:last-child)::after { bottom: -40px; height: 20px; }

    .traction-section { padding: 80px 24px; }
    .traction-badges { gap: 16px; }

    .impact-section { padding: 100px 24px; }
    .impact-title { font-size: 2.4rem; }

    .team-section { padding: 80px 24px; }
    .team-cards { gap: 24px; }
    .team-card:first-child, .team-card:last-child { transform: rotate(0deg); }
    .btn-whatsapp { width: 100%; }

    /* Footer */
    .saveme-footer-section { padding: 60px 20px 0; }
    .footer-container { grid-template-columns: 1fr; gap: 40px; text-align: center; }
    .footer-col { align-items: center; text-align: center; }
    .footer-col h4 { margin: 0 auto 18px; }
    .footer-links a:hover { padding-left: 0; }
    .footer-bottom { flex-direction: column; gap: 15px; }
}

/* ======== RESPONSIVE: TABLET (769px – 1024px) ======== */
@media (max-width: 1024px) and (min-width: 769px) {
    .hero-title { font-size: 3.2rem; }
    .hero-image-blob { width: 320px; height: 320px; }
    .value-grid { grid-template-columns: 1fr 1fr; gap: 24px; }
    .footer-container { grid-template-columns: 1fr 1fr; gap: 40px; }
    .impact-title { font-size: 3rem; }
    .step-image { flex: 0 0 180px; width: 180px; height: 180px; }
}
