:root {
    --black: #111111;
    --dark: #1a1a1a;
    --orange: #ff8c00;
    --orange-hot: #ff5500;
    --green: #3ec95c;
    --green-dark: #27a045;
    --white: #f5f0eb;
    --grey: #2c2c2c;
    --grey-light: #888888;
}

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
html {
    scroll-behavior: smooth;
}

body {
    background-color: #1a1a1a;
    color: #f5f0eb;
    font-family: "Barlow", Arial, sans-serif;
    font-weight: 300;
    overflow-x: hidden;
}

@media (min-width: 1024px) {
    body {
        zoom: 1.5;
    }
}

@supports not (zoom: 1.5) {
    @media (min-width: 1024px) {
        body {
            transform: scale(1.5);
            transform-origin: top left;
            width: calc(100% / 1.5);
        }
    }
}

/* ── CUSTOM CURSOR (desktop only) ── */
.cursor {
    position: fixed;
    width: 12px;
    height: 12px;
    background: #ff8c00;
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    transition:
        width 0.2s,
        height 0.2s,
        background 0.2s,
        opacity 0.2s;
    display: none;
}
@media (pointer: fine) {
    body {
        cursor: none;
    }
    .cursor {
        display: block;
    }
}
.cursor.hovering {
    width: 40px;
    height: 40px;
    background: #ff5500;
    opacity: 0.5;
}

/* ── NAV ── */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 200;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 40px;
    transition:
        background 0.4s,
        padding 0.3s;
}
nav.scrolled {
    background: rgba(26, 26, 26, 0.97);
    backdrop-filter: blur(14px);
    padding: 14px 40px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}
.nav-logo svg {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
}
.nav-logo-image {
    width: 220px;
    height: auto;
    display: block;
}
.nav-wordmark {
    font-family: "Barlow Condensed", "Arial Narrow", sans-serif;
    font-weight: 900;
    font-size: 26px;
    letter-spacing: 3px;
    color: #f5f0eb;
    text-decoration: none;
    line-height: 1;
    font-style: normal;
}
.umlaut {
    color: #ff5500 !important;
    font-style: normal;
}

.nav-links {
    display: flex;
    gap: 36px;
    list-style: none;
    align-items: center;
}
.nav-links a {
    color: #888888;
    text-decoration: none;
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: color 0.2s;
}
.nav-links a:hover {
    color: #ff8c00;
}
.nav-cta {
    background-color: #ff8c00 !important;
    color: #111111 !important;
    padding: 10px 22px !important;
    font-weight: 500 !important;
    letter-spacing: 1.5px !important;
}
.nav-cta:hover {
    background-color: #ff5500 !important;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    z-index: 300;
}
.hamburger span {
    display: block;
    width: 26px;
    height: 2px;
    background: #f5f0eb;
    transition:
        transform 0.3s,
        opacity 0.3s;
}
.hamburger.open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}
.hamburger.open span:nth-child(2) {
    opacity: 0;
}
.hamburger.open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.mobile-nav {
    display: none;
    position: fixed;
    inset: 0;
    background: #111111;
    z-index: 150;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 40px;
    opacity: 0;
    transition: opacity 0.3s;
}
.mobile-nav.open {
    opacity: 1;
}
.mobile-nav a {
    font-family: "Barlow Condensed", sans-serif;
    font-weight: 700;
    font-size: 36px;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: #f5f0eb;
    text-decoration: none;
    transition: color 0.2s;
}
.mobile-nav a:hover {
    color: #ff8c00;
}
.mobile-nav .m-cta {
    background-color: #ff8c00;
    color: #111111 !important;
    padding: 16px 40px;
    font-size: 18px;
}

@media (max-width: 768px) {
    nav {
        padding: 16px 20px;
    }
    nav.scrolled {
        padding: 12px 20px;
    }
    .nav-links {
        display: none;
    }
    .hamburger {
        display: flex;
    }
    .mobile-nav {
        display: flex;
    }
    .nav-logo-image {
        width: 180px;
    }
}

/* ── HERO ── */
.hero {
    min-height: 82vh;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    padding: 128px 40px 48px;
    position: relative;
    overflow: hidden;
    background-color: #1a1a1a;
}
.hero-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        radial-gradient(
            ellipse 70% 55% at 68% 38%,
            rgba(255, 140, 0, 0.13) 0%,
            transparent 70%
        ),
        radial-gradient(
            ellipse 38% 38% at 84% 14%,
            rgba(62, 201, 92, 0.07) 0%,
            transparent 60%
        );
}
.hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 40px;
    right: 40px;
    bottom: 0;
    background-image: repeating-linear-gradient(
        90deg,
        rgba(255, 140, 0, 0.035) 0px,
        rgba(255, 140, 0, 0.035) 1px,
        transparent 1px,
        transparent 12.5%
    );
    pointer-events: none;
}
.hero-mango {
    position: absolute;
    right: 6%;
    top: 58%;
    transform: translateY(-50%);
    opacity: 0.16;
    animation: floatMango 7s ease-in-out infinite;
    pointer-events: none;
}
@keyframes floatMango {
    0%,
    100% {
        transform: translateY(-50%) rotate(-4deg);
    }
    50% {
        transform: translateY(calc(-50% - 18px)) rotate(4deg);
    }
}
@media (max-width: 768px) {
    .hero {
        min-height: 100vh;
        min-height: 100dvh;
        padding: 100px 20px 60px;
        justify-content: flex-end;
    }
    .hero-mango {
        width: 240px;
        height: 240px;
        right: -50px;
        opacity: 0.09;
    }
    .hero::before {
        left: 20px;
        right: 20px;
    }
}

.hero-eyebrow {
    font-family: "Barlow Condensed", sans-serif;
    font-size: 12px;
    letter-spacing: 5px;
    text-transform: uppercase;
    color: #ff8c00;
    margin-bottom: 20px;
    opacity: 0;
    animation: fadeUp 0.8s 0.2s forwards;
}
.hero-headline {
    font-family: "Barlow Condensed", sans-serif;
    font-weight: 900;
    font-size: clamp(58px, 11vw, 150px);
    line-height: 0.93;
    letter-spacing: -1px;
    text-transform: uppercase;
    color: #f5f0eb;
    opacity: 0;
    animation: fadeUp 0.8s 0.4s forwards;
}
.hero-headline em {
    font-style: normal;
    color: #ff5500;
    display: block;
}
.hero-headline .outline {
    -webkit-text-stroke: 2px #f5f0eb;
    color: transparent;
}
.hero-sub {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-top: 44px;
    gap: 24px;
    opacity: 0;
    animation: fadeUp 0.8s 0.65s forwards;
}
.hero-sub p {
    font-size: 16px;
    line-height: 1.75;
    max-width: 360px;
    color: rgba(245, 240, 235, 0.62);
}
.hero-cta {
    display: flex;
    gap: 16px;
    align-items: center;
    flex-shrink: 0;
}

@media (max-width: 640px) {
    .hero-sub {
        flex-direction: column;
        align-items: flex-start;
    }
    .hero-sub p {
        font-size: 15px;
        max-width: 100%;
    }
    .hero-cta {
        flex-direction: column;
        align-items: stretch;
        width: 100%;
    }
    .btn-primary {
        text-align: center;
    }
}

.scroll-indicator {
    position: absolute;
    bottom: 28px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    opacity: 0;
    animation: fadeIn 1s 1.6s forwards;
}
.scroll-indicator span {
    font-size: 10px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #888888;
}
.scroll-line {
    width: 1px;
    height: 44px;
    background: linear-gradient(to bottom, #ff8c00, transparent);
    animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
    0%,
    100% {
        opacity: 1;
    }
    50% {
        opacity: 0.35;
    }
}
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(28px);
    }
    to {
        opacity: 1;
        transform: none;
    }
}
@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

/* ── BUTTONS ── */
.btn-primary {
    background-color: #ff8c00;
    color: #111111;
    padding: 15px 34px;
    font-family: "Barlow Condensed", sans-serif;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-decoration: none;
    border: none;
    cursor: pointer;
    display: inline-block;
    clip-path: polygon(
        0 0,
        calc(100% - 10px) 0,
        100% 10px,
        100% 100%,
        10px 100%,
        0 calc(100% - 10px)
    );
    transition:
        background-color 0.2s,
        transform 0.2s;
}
.btn-primary:hover {
    background-color: #ff5500;
    transform: translateY(-2px);
}
.btn-ghost {
    color: #f5f0eb;
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-decoration: none;
    padding-bottom: 2px;
    border-bottom: 1px solid rgba(245, 240, 235, 0.3);
    transition:
        color 0.2s,
        border-color 0.2s;
    white-space: nowrap;
}
.btn-ghost:hover {
    color: #ff8c00;
    border-color: #ff8c00;
}

/* ── MARQUEE ── */
.marquee-strip {
    background-color: #ff8c00;
    padding: 13px 0;
    overflow: hidden;
    white-space: nowrap;
}
.marquee-track {
    display: inline-block;
    animation: marquee 28s linear infinite;
}
.marquee-track span {
    font-family: "Barlow Condensed", sans-serif;
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: #111111;
    padding: 0 36px;
}
.marquee-track .dot {
    opacity: 0.35;
    padding: 0 8px;
}
@keyframes marquee {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%);
    }
}

/* ── SECTIONS ── */
section {
    padding: 100px 40px;
}
@media (max-width: 768px) {
    section {
        padding: 64px 20px;
    }
}

.section-label {
    font-family: "Barlow Condensed", sans-serif;
    font-size: 11px;
    letter-spacing: 5px;
    text-transform: uppercase;
    color: #ff8c00;
    margin-bottom: 14px;
}
.section-title {
    font-family: "Barlow Condensed", sans-serif;
    font-weight: 900;
    font-size: clamp(40px, 6vw, 76px);
    line-height: 1;
    text-transform: uppercase;
    letter-spacing: -1px;
    color: #f5f0eb;
}
.section-title span {
    color: #ff5500;
}

/* ── SERVICES ── */
.services {
    background-color: #111111;
}
.services-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2px;
    margin-top: 56px;
}
@media (max-width: 600px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
}
.service-card {
    background-color: #1a1a1a;
    padding: 40px 36px;
    position: relative;
    overflow: hidden;
    transition: background-color 0.3s;
}
@media (max-width: 768px) {
    .service-card {
        padding: 28px 24px;
    }
}
.service-card::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 3px;
    height: 0;
    background: #ff8c00;
    transition: height 0.4s;
}
.service-card:hover {
    background-color: #1f1f1f;
}
.service-card:hover::before {
    height: 100%;
}
.service-num {
    font-family: "Barlow Condensed", sans-serif;
    font-size: 64px;
    font-weight: 900;
    color: rgba(255, 140, 0, 0.07);
    position: absolute;
    top: 16px;
    right: 24px;
    line-height: 1;
}
.service-icon {
    width: 36px;
    height: 36px;
    margin-bottom: 20px;
    color: #ff8c00;
}
.service-card h3 {
    font-family: "Barlow Condensed", sans-serif;
    font-weight: 700;
    font-size: 22px;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 12px;
    color: #f5f0eb;
}
.service-card p {
    color: rgba(245, 240, 235, 0.52);
    font-size: 14px;
    line-height: 1.8;
}
.service-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
    margin-top: 20px;
}
.tag {
    background: rgba(255, 140, 0, 0.1);
    color: #ff8c00;
    font-size: 10px;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 4px 10px;
    border: 1px solid rgba(255, 140, 0, 0.2);
}

/* ── PRICING ── */
.pricing {
    background-color: #1a1a1a;
}
.pricing-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
    margin-top: 56px;
}
@media (max-width: 720px) {
    .pricing-grid {
        grid-template-columns: 1fr;
    }
}
.price-card {
    background: linear-gradient(180deg, #1f1f1f, #161616);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 36px 32px;
    position: relative;
    overflow: hidden;
}
.price-card::before {
    content: "";
    position: absolute;
    inset: 0 auto 0 0;
    width: 4px;
    background: linear-gradient(#ff8c00, #ff5500);
}
.price-card h3 {
    font-family: "Barlow Condensed", sans-serif;
    font-weight: 700;
    font-size: 28px;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #f5f0eb;
    margin-bottom: 10px;
}
.price-value {
    font-family: "Barlow Condensed", sans-serif;
    font-weight: 900;
    font-size: clamp(58px, 8vw, 82px);
    line-height: 0.9;
    letter-spacing: -2px;
    color: #ff8c00;
    margin-bottom: 18px;
}
.price-card p {
    color: rgba(245, 240, 235, 0.62);
    font-size: 15px;
    line-height: 1.75;
    margin-bottom: 22px;
}
.price-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.price-features li {
    color: #f5f0eb;
    font-size: 13px;
    letter-spacing: 1px;
    text-transform: uppercase;
}
.price-cta {
    margin-top: 26px;
}
.pricing-compare {
    margin-top: 30px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}
.compare-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 22px 24px;
}
.compare-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 14px;
}
.compare-head h3 {
    font-family: "Barlow Condensed", sans-serif;
    font-size: 22px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
}
.compare-badge {
    font-family: "Barlow Condensed", sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #111111;
    background: linear-gradient(135deg, #3ec95c, #9bf07d);
    padding: 7px 10px;
}
.compare-boxes {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    align-items: center;
    margin-bottom: 18px;
}
.compare-box {
    flex: 1;
    min-height: 110px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 10px;
    padding: 18px;
    border-radius: 18px;
    text-align: center;
}
.compare-box-normal {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
}
.compare-box-own {
    background: rgba(255, 140, 0, 0.12);
    border: 1px solid rgba(255, 140, 0, 0.22);
}
.compare-label {
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(245, 240, 235, 0.65);
}
.compare-box strong {
    font-family: "Barlow Condensed", sans-serif;
    font-size: clamp(28px, 4vw, 40px);
    line-height: 1;
    color: #f5f0eb;
}
.compare-box-own strong {
    color: #ff8c00;
}
.compare-arrow {
    font-family: "Barlow Condensed", sans-serif;
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(245, 240, 235, 0.5);
}
.compare-saving {
    color: #9bf07d;
    font-family: "Barlow Condensed", sans-serif;
    font-size: 24px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
}
.pricing-source {
    grid-column: 1 / -1;
    color: rgba(245, 240, 235, 0.52);
    font-size: 13px;
    line-height: 1.6;
}
.pricing-source a {
    color: #ff8c00;
}
@media (max-width: 720px) {
    .pricing-compare {
        grid-template-columns: 1fr;
    }
    .compare-boxes {
        flex-direction: column;
        align-items: stretch;
    }
    .compare-arrow {
        align-self: center;
    }
}

/* ── WORK ── */
.work {
    background-color: #1a1a1a;
}
.work-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 48px;
    gap: 16px;
}
@media (max-width: 480px) {
    .work-header {
        flex-direction: column;
        align-items: flex-start;
    }
}
.projects-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
}
.project-card:first-child {
    grid-column: span 2;
    aspect-ratio: 16/9;
}
@media (max-width: 860px) {
    .projects-grid {
        grid-template-columns: 1fr 1fr;
    }
    .project-card:first-child {
        grid-column: span 2;
        aspect-ratio: 4/3;
    }
}
@media (max-width: 500px) {
    .projects-grid {
        grid-template-columns: 1fr;
    }
    .project-card:first-child {
        grid-column: span 1;
    }
}
.project-card {
    position: relative;
    overflow: hidden;
    background-color: #2c2c2c;
    aspect-ratio: 4/5;
    cursor: pointer;
}
.project-visual {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: "Barlow Condensed", sans-serif;
    font-weight: 900;
    font-size: 56px;
    color: rgba(255, 255, 255, 0.04);
    letter-spacing: -2px;
    text-transform: uppercase;
    transition: transform 0.6s;
    position: relative;
    overflow: hidden;
}
.project-card:hover .project-visual {
    transform: scale(1.04);
}
.p1 {
    background: linear-gradient(135deg, #1a1a1a, #2c2c2c);
}
.p1::after {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(
        circle at 30% 60%,
        rgba(255, 140, 0, 0.22),
        transparent 60%
    );
}
.p2 {
    background: linear-gradient(135deg, #111, #222);
}
.p2::after {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(
        circle at 70% 30%,
        rgba(62, 201, 92, 0.16),
        transparent 60%
    );
}
.p3 {
    background: linear-gradient(135deg, #1c1c1c, #2a2a2a);
}
.p3::after {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(
        circle at 50% 80%,
        rgba(255, 85, 0, 0.18),
        transparent 60%
    );
}
.p4 {
    background: linear-gradient(135deg, #181818, #252525);
}
.p4::after {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(
        circle at 20% 20%,
        rgba(255, 140, 0, 0.13),
        transparent 60%
    );
}
.project-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(0, 0, 0, 0.88) 0%,
        transparent 55%
    );
    padding: 22px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}
.project-cat {
    font-size: 10px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #ff8c00;
    margin-bottom: 6px;
}
.project-name {
    font-family: "Barlow Condensed", sans-serif;
    font-weight: 700;
    font-size: 20px;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #f5f0eb;
}
.project-arrow {
    position: absolute;
    top: 18px;
    right: 18px;
    width: 34px;
    height: 34px;
    background-color: #ff8c00;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition:
        opacity 0.3s,
        transform 0.3s;
    transform: translate(8px, -8px);
}
.project-card:hover .project-arrow {
    opacity: 1;
    transform: translate(0, 0);
}

/* ── STATS ── */
.stats-bar {
    background-color: #c24a17;
    padding: 52px 40px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
}
@media (max-width: 640px) {
    .stats-bar {
        grid-template-columns: 1fr 1fr;
        padding: 40px 20px;
        gap: 32px 0;
    }
    .stat {
        border-right: none !important;
        padding: 0 16px !important;
    }
    .stat:nth-child(odd) {
        border-right: 2px solid rgba(0, 0, 0, 0.12) !important;
    }
}
.stat {
    padding: 0 36px;
    border-right: 2px solid rgba(0, 0, 0, 0.12);
}
.stat:first-child {
    padding-left: 0;
}
.stat:last-child {
    border-right: none;
}
.stat-num {
    font-family: "Barlow Condensed", sans-serif;
    font-weight: 900;
    font-size: clamp(40px, 5.5vw, 58px);
    line-height: 1;
    color: #111111;
    letter-spacing: -2px;
}
.stat-label {
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(0, 0, 0, 0.48);
    margin-top: 6px;
}

/* ── PROCESS ── */
.process {
    background-color: #111111;
}
.process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    margin-top: 64px;
    border: 1px solid rgba(255, 255, 255, 0.06);
}
@media (max-width: 860px) {
    .process-steps {
        grid-template-columns: 1fr 1fr;
    }
    .step {
        border-bottom: 1px solid rgba(255, 255, 255, 0.06) !important;
        border-right: none !important;
    }
    .step:nth-child(odd) {
        border-right: 1px solid rgba(255, 255, 255, 0.06) !important;
    }
    .step:last-child,
    .step:nth-last-child(2) {
        border-bottom: none !important;
    }
}
@media (max-width: 480px) {
    .process-steps {
        grid-template-columns: 1fr;
    }
    .step {
        border-right: none !important;
        border-bottom: 1px solid rgba(255, 255, 255, 0.06) !important;
    }
    .step:last-child {
        border-bottom: none !important;
    }
}
.step {
    padding: 36px 28px;
    border-right: 1px solid rgba(255, 255, 255, 0.06);
    transition: background-color 0.3s;
}
.step:last-child {
    border-right: none;
}
.step:hover {
    background-color: rgba(255, 140, 0, 0.04);
}
.step-num {
    font-family: "Barlow Condensed", sans-serif;
    font-size: 11px;
    letter-spacing: 3px;
    color: #ff8c00;
    margin-bottom: 18px;
}
.step h3 {
    font-family: "Barlow Condensed", sans-serif;
    font-weight: 700;
    font-size: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
    color: #f5f0eb;
}
.step p {
    color: rgba(245, 240, 235, 0.48);
    font-size: 13px;
    line-height: 1.85;
}

/* ── ABOUT ── */
.about {
    background-color: #1a1a1a;
}
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 72px;
    margin-top: 56px;
    align-items: center;
}
@media (max-width: 860px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .about-visual {
        display: none;
    }
}
.about-text p {
    font-size: 15px;
    line-height: 1.9;
    color: rgba(245, 240, 235, 0.62);
    margin-bottom: 18px;
}
.about-text strong {
    color: #f5f0eb;
    font-weight: 500;
}
.about-visual {
    position: relative;
    height: 460px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.about-blob {
    position: absolute;
    width: 360px;
    height: 360px;
    background: radial-gradient(
        circle,
        rgba(255, 140, 0, 0.11) 0%,
        transparent 70%
    );
    border-radius: 50%;
    animation: pulse 4s ease-in-out infinite;
    filter: blur(10px);
    transform: translate(30px, 16px);
}
@keyframes pulse {
    0%,
    100% {
        transform: translate(30px, 16px) scale(1);
        opacity: 0.6;
    }
    50% {
        transform: translate(30px, 16px) scale(1.1);
        opacity: 1;
    }
}
.about-logo-big {
    position: relative;
    z-index: 0;
    width: 380px;
    aspect-ratio: 1 / 1;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.28;
    transform: translate(40px, 12px) scale(1.08);
}
.about-mango-shape {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    filter: drop-shadow(0 24px 40px rgba(0, 0, 0, 0.18));
}
.about-mango-shape path:first-child {
    fill: #ff8c00;
}
.about-mango-shape path:nth-child(2) {
    fill: #3ec95c;
}
.about-mango-shape line {
    stroke: #27a045;
    stroke-width: 2.6;
    stroke-linecap: round;
}
.about-logo-image {
    position: relative;
    width: 220px;
    height: auto;
    display: block;
    transform: translateY(8px);
    opacity: 0.9;
}
.about-badges {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-top: 36px;
}
.badge {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 18px;
    background: rgba(255, 140, 0, 0.06);
    border-left: 3px solid #ff8c00;
}
.badge-icon {
    color: #ff8c00;
    font-size: 18px;
    flex-shrink: 0;
}
.badge-text {
    font-size: 13px;
    color: rgba(245, 240, 235, 0.68);
}
.badge-text strong {
    color: #f5f0eb;
    display: block;
    font-size: 14px;
    font-weight: 500;
}

/* ── CONTACT ── */
.contact {
    background-color: #111111;
    position: relative;
    overflow: hidden;
}
.contact::before {
    content: "";
    position: absolute;
    top: -80px;
    right: -80px;
    width: 440px;
    height: 440px;
    background: radial-gradient(
        circle,
        rgba(255, 140, 0, 0.07) 0%,
        transparent 70%
    );
    border-radius: 50%;
    pointer-events: none;
}
.contact-inner {
    max-width: 680px;
    position: relative;
}
.contact-inner .section-title {
    margin-bottom: 20px;
}
.contact-inner > p {
    font-size: 16px;
    line-height: 1.8;
    color: rgba(245, 240, 235, 0.58);
    margin-bottom: 44px;
}
.contact-cta {
    align-self: flex-start;
    padding: 16px 40px;
    font-size: 14px;
}

/* ── FOOTER ── */
footer {
    background-color: #1a1a1a;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding: 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}
@media (max-width: 520px) {
    footer {
        padding: 32px 20px;
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }
    .footer-links {
        flex-wrap: wrap;
        gap: 18px;
    }
}
.footer-copy {
    font-size: 12px;
    color: #888888;
}
.footer-links {
    display: flex;
    gap: 28px;
}
.footer-links a {
    color: #888888;
    text-decoration: none;
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: color 0.2s;
}
.footer-links a:hover {
    color: #ff8c00;
}

/* ── REVEAL ── */
.reveal {
    opacity: 0;
    transform: translateY(22px);
    transition:
        opacity 0.65s,
        transform 0.65s;
}
.reveal.visible {
    opacity: 1;
    transform: none;
}
