:root {
    --black: #0a0a0a;
    --white: #f5f3ee;
    --cream: #ede9e1;
    --green-dark: #2d8c1e;
    --green-mid: #3db52a;
    --green-light: #6fcc00;
    --green-grad: linear-gradient(135deg, #2d8c1e 0%, #6fcc00 100%);
    --accent: #6fcc00;
    --accent-dark: #2d8c1e;
    --mid: #1a1a1a;
    --gray: #6b6b6b;
    --font-display: 'Bebas Neue', sans-serif;
    --font-heading: 'Syne', sans-serif;
    --font-body: 'DM Sans', sans-serif;
}

*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background: var(--black);
    color: var(--white);
    font-family: var(--font-body);
    font-weight: 300;
    overflow-x: hidden;
}

/* NOISE */
body::before {
    content: '';
    position: fixed;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.035'/%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 9990;
}

/* ─── NAV ─── */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 20px 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: background 0.4s ease, padding 0.4s ease, border-color 0.4s ease;
    border-bottom: 1px solid transparent;
}

nav.scrolled {
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 14px 60px;
    border-color: rgba(255, 255, 255, 0.06);
}

.nav-logo img {
    height: 38px;
    width: auto;
    display: block;
}

.nav-links {
    display: flex;
    gap: 40px;
    list-style: none;
}

.nav-links a {
    color: rgba(245, 243, 238, 0.7);
    text-decoration: none;
    font-family: var(--font-heading);
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    transition: color 0.3s ease;
}

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

.nav-cta {
    font-family: var(--font-heading);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--black);
    background: var(--green-grad);
    padding: 12px 28px;
    border: none;
    text-decoration: none;
    transition: opacity 0.3s ease, transform 0.3s ease;
    border-radius: 2px;
    display: inline-block;
}

.nav-cta:hover {
    opacity: 0.9;
    transform: translateY(-2px);
}

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

.hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--white);
    transition: all 0.3s ease;
    border-radius: 2px;
}

.hamburger.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

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

.hamburger.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.mobile-menu {
    display: none;
    position: fixed;
    inset: 0;
    background: var(--black);
    z-index: 999;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 32px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
}

.mobile-menu.open {
    display: flex;
    opacity: 1;
    pointer-events: all;
}

.mobile-menu a {
    font-family: var(--font-display);
    font-size: 48px;
    color: var(--white);
    text-decoration: none;
    letter-spacing: 0.05em;
    transition: color 0.3s ease;
}

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

.mobile-menu .m-cta {
    margin-top: 16px;
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--black);
    background: var(--green-grad);
    padding: 16px 40px;
    border-radius: 2px;
}

/* ─── HERO ─── */
.hero {
    min-height: 100vh;
    min-height: 100svh;
    display: flex;
    align-items: flex-end;
    padding: 140px 60px 100px;
    position: relative;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: var(--black);
}

.hero-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(111, 204, 0, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(111, 204, 0, 0.04) 1px, transparent 1px);
    background-size: 80px 80px;
}

.hero-orb {
    position: absolute;
    width: 600px;
    height: 600px;
    right: -80px;
    top: -80px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(111, 204, 0, 0.12) 0%, transparent 70%);
    filter: blur(60px);
}

.hero-orb2 {
    position: absolute;
    width: 400px;
    height: 400px;
    left: 15%;
    bottom: 0;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(45, 140, 30, 0.1) 0%, transparent 70%);
    filter: blur(80px);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    width: 100%;
}

.hero-tag {
    font-family: var(--font-heading);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 28px;
    display: flex;
    align-items: center;
    gap: 12px;
    opacity: 0;
}

.hero-tag::before {
    content: '';
    display: block;
    width: 40px;
    height: 1px;
    background: var(--accent);
}

.hero-headline {
    font-family: var(--font-display);
    font-size: clamp(56px, 10vw, 150px);
    line-height: 0.93;
    letter-spacing: 0.01em;
    color: var(--white);
    margin-bottom: 48px;
}

.hero-headline .line {
    display: block;
    overflow: hidden;
    padding-bottom: 0.08em;
}

.hero-headline .line-inner {
    display: block;
    transform: translateY(110%);
    will-change: transform;
}

.hero-headline em {
    font-style: normal;
    background: var(--green-grad);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-bottom {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 40px;
}

.hero-sub {
    max-width: 400px;
    font-size: 16px;
    line-height: 1.75;
    color: rgba(245, 243, 238, 0.5);
    opacity: 0;
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 20px;
    opacity: 0;
    flex-shrink: 0;
}

.btn-primary {
    font-family: var(--font-heading);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--black);
    background: var(--green-grad);
    padding: 18px 36px;
    border: none;
    text-decoration: none;
    transition: opacity 0.3s ease, transform 0.3s ease;
    display: inline-block;
    border-radius: 2px;
}

.btn-primary:hover {
    opacity: 0.9;
    transform: translateY(-3px);
}

.btn-ghost {
    font-family: var(--font-heading);
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(245, 243, 238, 0.55);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: color 0.3s ease;
}

.btn-ghost:hover {
    color: var(--white);
}

.btn-ghost svg {
    transition: transform 0.3s ease;
}

.btn-ghost:hover svg {
    transform: translateX(4px);
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 40px;
    right: 60px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    opacity: 0;
}

.hero-scroll-indicator span {
    font-family: var(--font-heading);
    font-size: 10px;
    letter-spacing: 0.2em;
    color: rgba(245, 243, 238, 0.3);
    text-transform: uppercase;
    writing-mode: vertical-rl;
    transform: rotate(180deg);
}

.scroll-bar {
    width: 1px;
    height: 50px;
    background: linear-gradient(to bottom, var(--accent), transparent);
    animation: pulse-scroll 2s ease-in-out infinite;
}

@keyframes pulse-scroll {

    0%,
    100% {
        opacity: 0.4;
        transform: scaleY(1);
    }

    50% {
        opacity: 1;
        transform: scaleY(1.15);
    }
}

.marquee-wrap {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    overflow: hidden;
    padding: 14px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(8px);
}

.marquee-track {
    display: flex;
    white-space: nowrap;
    animation: marquee 30s linear infinite;
    width: max-content;
}

.marquee-item {
    font-family: var(--font-heading);
    font-size: 11px;
    letter-spacing: 0.22em;
    color: rgba(245, 243, 238, 0.22);
    padding: 0 36px;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    gap: 36px;
}

.marquee-dot {
    color: var(--accent);
    font-size: 16px;
    line-height: 1;
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* ─── SHARED ─── */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 60px;
}

.section-label {
    font-family: var(--font-heading);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.section-label::after {
    content: '';
    display: block;
    height: 1px;
    width: 36px;
    background: currentColor;
    opacity: 0.35;
}

/* ─── ABOUT ─── */
.about {
    padding: 140px 0;
    background: var(--white);
    color: var(--black);
}

.about .section-label {
    color: var(--green-dark);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-headline {
    font-family: var(--font-display);
    font-size: clamp(48px, 6vw, 88px);
    line-height: 0.95;
    letter-spacing: 0.01em;
    margin-bottom: 28px;
    margin-top: 16px;
}

.about-headline em {
    font-style: normal;
    background: var(--green-grad);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.about-body {
    font-size: 16px;
    line-height: 1.8;
    color: rgba(10, 10, 10, 0.6);
    margin-bottom: 20px;
}

.about-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
    margin-top: 48px;
    padding-top: 36px;
    border-top: 1px solid rgba(10, 10, 10, 0.08);
}

.stat-num {
    font-family: var(--font-display);
    font-size: 58px;
    line-height: 1;
    background: var(--green-grad);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: flex;
    align-items: baseline;
    gap: 3px;
}

.stat-num sup {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 700;
    background: var(--green-grad);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.stat-label {
    font-family: var(--font-heading);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(10, 10, 10, 0.4);
    margin-top: 4px;
}

/* About Visual */
.about-visual {
    position: relative;
    height: 500px;
}

.av-main {
    position: absolute;
    right: 0;
    top: 0;
    width: 300px;
    height: 380px;
    background: var(--black);
    border-radius: 2px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
    padding: 32px;
    overflow: hidden;
}

.av-main::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(45, 140, 30, 0.15) 0%, transparent 60%);
}

.av-main-logo {
    width: 180px;
    position: relative;
    z-index: 1;
}

.av-main-tagline {
    font-family: var(--font-heading);
    font-size: 10px;
    letter-spacing: 0.28em;
    color: rgba(255, 255, 255, 0.3);
    text-transform: uppercase;
    text-align: center;
    position: relative;
    z-index: 1;
}

.av-badge {
    position: absolute;
    left: 0;
    bottom: 40px;
    width: 160px;
    height: 160px;
    background: var(--green-grad);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-radius: 2px;
}

.av-badge-num {
    font-family: var(--font-display);
    font-size: 52px;
    color: var(--black);
    line-height: 1;
}

.av-badge-label {
    font-family: var(--font-heading);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(0, 0, 0, 0.55);
    margin-top: 4px;
}

.av-dots {
    position: absolute;
    left: 160px;
    top: 20px;
    width: 120px;
    height: 120px;
    background-image: repeating-conic-gradient(rgba(10, 10, 10, 0.08) 0% 25%, transparent 0% 50%);
    background-size: 16px 16px;
    border-radius: 2px;
}

/* ─── SERVICES ─── */
.services {
    padding: 140px 0;
    background: var(--black);
}

.services .section-label {
    color: rgba(111, 204, 0, 0.6);
}

.services-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 70px;
    gap: 40px;
}

.services-headline {
    font-family: var(--font-display);
    font-size: clamp(44px, 6vw, 82px);
    line-height: 0.94;
}

.services-desc {
    max-width: 280px;
    font-size: 15px;
    line-height: 1.7;
    color: rgba(245, 243, 238, 0.4);
    flex-shrink: 0;
}

.services-list {
    border-top: 1px solid rgba(255, 255, 255, 0.07);
}

.services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
    border-top: none;
}

.service-card {
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 0;
    padding: 20px 0;
    text-decoration: none;
    color: inherit;
    transition: all 0.45s cubic-bezier(0.76, 0, 0.24, 1);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 24px;
    min-height: auto;
}

.service-card:hover {
    background: rgba(111, 204, 0, 0.03);
    border-color: rgba(111, 204, 0, 0.3);
    transform: none;
    box-shadow: none;
    padding-left: 12px;
}

.service-card-content {
    text-align: left;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 16px;
    flex: 1;
}

.service-card-icon {
    font-size: 32px;
    margin-bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: rgba(111, 204, 0, 0.08);
    border-radius: 4px;
    border: 1px solid rgba(111, 204, 0, 0.15);
    color: var(--accent);
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.service-card:hover .service-card-icon {
    background: var(--green-grad);
    color: var(--black);
    border-color: transparent;
}

.service-card-icon svg {
    width: 28px;
    height: 28px;
}

.service-card-text {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.service-card-name {
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 700;
    color: var(--white);
}

.service-card-desc {
    font-size: 13px;
    color: rgba(245, 243, 238, 0.45);
    line-height: 1.4;
}

.service-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
    display: grid;
    grid-template-columns: 60px 1fr auto;
    align-items: center;
    gap: 32px;
    padding: 32px 0;
    position: relative;
    transition: padding-left 0.45s cubic-bezier(0.76, 0, 0.24, 1);
    overflow: hidden;
}

.service-item::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(111, 204, 0, 0.03);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.45s cubic-bezier(0.76, 0, 0.24, 1);
}

.service-item:hover::before {
    transform: scaleX(1);
}

.service-item:hover {
    padding-left: 16px;
}

.service-num {
    font-family: var(--font-display);
    font-size: 42px;
    color: rgba(245, 243, 238, 0.1);
    transition: color 0.3s ease;
    line-height: 1;
}

.service-item:hover .service-num {
    color: var(--accent);
}

.service-name {
    font-family: var(--font-heading);
    font-size: clamp(20px, 2.5vw, 32px);
    font-weight: 700;
    margin-bottom: 6px;
}

.service-sub {
    font-size: 14px;
    color: rgba(245, 243, 238, 0.4);
    line-height: 1.6;
    max-width: 480px;
}

.service-icon-wrap {
    width: 44px;
    height: 44px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: rgba(245, 243, 238, 0.5);
    transition: background 0.3s, border-color 0.3s, color 0.3s, transform 0.4s;
}

.service-item:hover .service-icon-wrap {
    background: var(--green-grad);
    border-color: transparent;
    color: var(--black);
    transform: rotate(45deg);
}

/* ─── PORTFOLIO ─── */
.portfolio {
    padding: 120px 0 0;
    background: var(--cream);
    color: var(--black);
}

.portfolio .section-label {
    color: rgba(10, 10, 10, 0.35);
}

.portfolio-header {
    margin-bottom: 50px;
    padding: 0 60px;
}

.portfolio-headline {
    font-family: var(--font-display);
    font-size: clamp(44px, 6vw, 82px);
    line-height: 0.94;
    color: var(--black);
}

.work-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3px;
}

.work-item {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4/3;
}

.work-item.wide {
    grid-column: span 2;
    aspect-ratio: 21/8;
}

.work-bg {
    position: absolute;
    inset: 0;
    transition: transform 0.8s cubic-bezier(0.76, 0, 0.24, 1);
    display: flex;
    align-items: center;
    justify-content: center;
}

.work-item:hover .work-bg {
    transform: scale(1.07);
}

.work-bg-icon {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.06;
}

.work-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.88) 0%, transparent 55%);
    opacity: 0;
    transition: opacity 0.5s ease;
    display: flex;
    align-items: flex-end;
    padding: 36px;
}

.work-item:hover .work-overlay {
    opacity: 1;
}

.work-cat {
    font-family: var(--font-heading);
    font-size: 10px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 6px;
}

.work-title {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 3px;
}

.work-year {
    font-size: 12px;
    color: rgba(245, 243, 238, 0.45);
}

.wc1 {
    background: linear-gradient(135deg, #0d1b2a, #1b3a4b);
}

.wc2 {
    background: linear-gradient(135deg, #1a0533, #3d1a6e);
}

.wc3 {
    background: linear-gradient(135deg, #1a0a00, #4a1500);
}

.wc4 {
    background: linear-gradient(135deg, #0a1a00, #1e3d00);
}

.wc5 {
    background: linear-gradient(135deg, #0a0a0f, #1a1a35);
}

/* ─── WHY ─── */
.why {
    padding: 140px 0;
    background: var(--black);
}

.why .section-label {
    color: rgba(111, 204, 0, 0.5);
}

.why-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.why-headline {
    font-family: var(--font-display);
    font-size: clamp(50px, 6vw, 86px);
    line-height: 0.95;
    margin-bottom: 28px;
    margin-top: 16px;
}

.why-headline em {
    font-style: normal;
    background: var(--green-grad);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.why-body {
    font-size: 16px;
    line-height: 1.8;
    color: rgba(245, 243, 238, 0.45);
}

.why-right {
    padding-top: 56px;
}

.why-points {
    display: flex;
    flex-direction: column;
}

.why-point {
    padding: 24px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    display: flex;
    align-items: flex-start;
    gap: 20px;
    transition: padding-left 0.35s ease;
}

.why-point:first-child {
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.why-point:hover {
    padding-left: 10px;
}

.why-icon {
    width: 42px;
    height: 42px;
    background: rgba(111, 204, 0, 0.07);
    border-radius: 2px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--accent);
    transition: background 0.3s ease;
}

.why-point:hover .why-icon {
    background: var(--green-grad);
    color: var(--black);
}

.why-point-title {
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 5px;
}

.why-point-desc {
    font-size: 13px;
    color: rgba(245, 243, 238, 0.4);
    line-height: 1.6;
}

/* ─── TESTIMONIALS ─── */
.testimonials {
    padding: 140px 0;
    background: var(--mid);
}

.testimonials .section-label {
    color: rgba(111, 204, 0, 0.5);
}

.testimonials-header {
    margin-bottom: 56px;
}

.testi-headline {
    font-family: var(--font-display);
    font-size: clamp(44px, 6vw, 78px);
    line-height: 0.94;
}

.testi-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.testi-card {
    background: rgba(255, 255, 255, 0.035);
    border: 1px solid rgba(255, 255, 255, 0.06);
    padding: 36px;
    border-radius: 3px;
    transition: transform 0.4s ease, background 0.4s ease, border-color 0.4s ease;
}

.testi-card:hover {
    transform: translateY(-8px);
    background: rgba(111, 204, 0, 0.04);
    border-color: rgba(111, 204, 0, 0.2);
}

.testi-stars {
    display: flex;
    gap: 4px;
    margin-bottom: 20px;
}

.testi-stars svg {
    color: var(--accent);
}

.testi-quote {
    font-size: 14px;
    line-height: 1.8;
    color: rgba(245, 243, 238, 0.65);
    margin-bottom: 28px;
    font-style: italic;
    position: relative;
    padding-left: 20px;
}

.testi-quote::before {
    content: '';
    position: absolute;
    left: 0;
    top: 4px;
    width: 2px;
    height: calc(100% - 8px);
    background: var(--green-grad);
    border-radius: 2px;
}

.testi-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.testi-avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 18px;
    color: var(--black);
    flex-shrink: 0;
    background: var(--green-grad);
}

.testi-name {
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 700;
}

.testi-role {
    font-size: 11px;
    color: rgba(245, 243, 238, 0.38);
    margin-top: 2px;
}

/* ─── CTA ─── */
.cta {
    padding: 160px 0;
    background: var(--black);
    text-align: center;
    position: relative;
    overflow: hidden;
    border-top: 1px solid rgba(111, 204, 0, 0.1);
}

.cta-glow {
    position: absolute;
    width: 600px;
    height: 600px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    background: radial-gradient(circle, rgba(111, 204, 0, 0.08) 0%, transparent 70%);
    filter: blur(60px);
    pointer-events: none;
}

.cta-label {
    font-family: var(--font-heading);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 20px;
}

.cta-headline {
    font-family: var(--font-display);
    font-size: clamp(56px, 9vw, 130px);
    line-height: 0.92;
    color: var(--white);
    margin-bottom: 28px;
}

.cta-headline em {
    font-style: normal;
    background: var(--green-grad);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cta-sub {
    font-size: 17px;
    color: rgba(245, 243, 238, 0.45);
    margin-bottom: 52px;
    max-width: 440px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
}

.btn-green-big {
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--black);
    background: var(--green-grad);
    padding: 20px 52px;
    border: none;
    text-decoration: none;
    display: inline-block;
    border-radius: 2px;
    transition: opacity 0.3s ease, transform 0.3s ease;
    position: relative;
    z-index: 1;
}

.btn-green-big:hover {
    opacity: 0.9;
    transform: translateY(-4px);
}

.cta-contacts {
    margin-top: 48px;
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

.cta-contact-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-heading);
    font-size: 13px;
    font-weight: 500;
    color: rgba(245, 243, 238, 0.45);
    text-decoration: none;
    transition: color 0.3s ease;
}

.cta-contact-item:hover {
    color: var(--accent);
}

.cta-contact-item svg {
    color: var(--accent);
    flex-shrink: 0;
}

/* ─── FOOTER ─── */
footer {
    background: #050505;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 64px 60px 40px;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 60px;
    margin-bottom: 56px;
}

.footer-brand {}

.footer-logo {
    display: block;
    margin-bottom: 16px;
}

.footer-logo img {
    height: 44px;
    width: auto;
}

.footer-tagline {
    font-size: 13px;
    color: rgba(245, 243, 238, 0.28);
    max-width: 220px;
    line-height: 1.6;
}

.footer-links {
    display: flex;
    gap: 64px;
}

.footer-col-title {
    font-family: var(--font-heading);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: rgba(245, 243, 238, 0.28);
    margin-bottom: 18px;
}

.footer-col a {
    display: block;
    font-size: 14px;
    color: rgba(245, 243, 238, 0.55);
    text-decoration: none;
    margin-bottom: 10px;
    transition: color 0.3s ease;
}

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

.footer-bottom {
    padding-top: 28px;
    border-top: 1px solid rgba(255, 255, 255, 0.04);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

.footer-copy {
    font-size: 12px;
    color: rgba(245, 243, 238, 0.2);
    letter-spacing: 0.04em;
}

.footer-socials {
    display: flex;
    gap: 12px;
}

.footer-social {
    width: 36px;
    height: 36px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: rgba(245, 243, 238, 0.4);
    transition: all 0.3s ease;
    border-radius: 2px;
}

.footer-social:hover {
    background: var(--green-grad);
    border-color: transparent;
    color: var(--black);
    transform: translateY(-3px);
}

/* ─── REVEAL ─── */
.reveal {
    opacity: 0;
    transform: translateY(36px);
}

/* ─── RESPONSIVE ─── */
@media (max-width: 1024px) {
    nav {
        padding: 18px 32px;
    }

    nav.scrolled {
        padding: 14px 32px;
    }

    .container {
        padding: 0 32px;
    }

    .hero {
        padding: 140px 32px 110px;
    }

    .portfolio-header {
        padding: 0 32px;
    }

    footer {
        padding: 56px 32px 36px;
    }
}

@media (max-width: 768px) {

    /* NAV */
    nav {
        padding: 16px 24px;
    }

    nav.scrolled {
        padding: 14px 24px;
    }

    .nav-links {
        display: none;
    }

    .nav-cta {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    /* HERO */
    .hero {
        padding: 0 24px 110px;
        align-items: center;
        padding-top: 100px;
    }

    .hero-headline {
        font-size: clamp(52px, 14vw, 80px);
        margin-bottom: 32px;
    }

    .hero-bottom {
        flex-direction: column;
        align-items: flex-start;
        gap: 28px;
    }

    .hero-sub {
        max-width: 100%;
        font-size: 15px;
    }

    .hero-actions {
        width: 100%;
    }

    .btn-primary {
        width: 100%;
        text-align: center;
        padding: 16px 24px;
    }

    .btn-ghost {
        display: none;
    }

    .hero-scroll-indicator {
        display: none;
    }

    .hero-orb {
        width: 300px;
        height: 300px;
        right: -60px;
        top: -60px;
    }

    .hero-orb2 {
        display: none;
    }

    /* SHARED */
    .container {
        padding: 0 24px;
    }

    .portfolio-header {
        padding: 0 24px;
    }

    footer {
        padding: 48px 24px 32px;
    }

    /* ABOUT */
    .about {
        padding: 90px 0;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .about-visual {
        height: 280px;
        order: -1;
    }

    .av-main {
        width: 100%;
        height: 100%;
        right: auto;
    }

    .av-badge {
        left: auto;
        right: 16px;
        bottom: -20px;
        width: 120px;
        height: 120px;
    }

    .av-badge-num {
        font-size: 40px;
    }

    .av-dots {
        display: none;
    }

    .about-stats {
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }

    .stat-num {
        font-size: 44px;
    }

    /* SERVICES */
    .services {
        padding: 90px 0;
    }

    .services-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

    .services-desc {
        max-width: 100%;
    }

    .service-item {
        grid-template-columns: 44px 1fr auto;
        gap: 16px;
        padding: 24px 0;
    }

    .service-num {
        font-size: 32px;
    }

    .service-name {
        font-size: 18px;
    }

    .service-sub {
        font-size: 13px;
    }

    /* PORTFOLIO */
    .portfolio {
        padding: 90px 0 0;
    }

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

    .work-item.wide {
        grid-column: span 1;
        aspect-ratio: 4/3;
    }

    .work-overlay {
        opacity: 1;
        background: linear-gradient(to top, rgba(0, 0, 0, 0.75) 0%, transparent 60%);
    }

    /* WHY */
    .why {
        padding: 90px 0;
    }

    .why-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .why-right {
        padding-top: 0;
    }

    .why-headline {
        font-size: clamp(44px, 12vw, 72px);
    }

    /* TESTIMONIALS */
    .testimonials {
        padding: 90px 0;
    }

    .testi-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .testi-headline {
        font-size: clamp(40px, 11vw, 64px);
    }

    /* CTA */
    .cta {
        padding: 100px 0;
    }

    .cta-headline {
        font-size: clamp(48px, 12vw, 80px);
    }

    .cta-sub {
        font-size: 15px;
    }

    .cta-contacts {
        flex-direction: column;
        align-items: center;
        gap: 16px;
    }

    .btn-green-big {
        width: 100%;
        max-width: 320px;
        text-align: center;
    }

    /* FOOTER */
    .footer-top {
        flex-direction: column;
        gap: 40px;
        margin-bottom: 40px;
    }

    .footer-links {
        flex-wrap: wrap;
        gap: 32px;
    }

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

@media (max-width: 420px) {
    .hero-headline {
        font-size: 48px;
    }

    .about-stats {
        grid-template-columns: 1fr 1fr;
    }

    .service-item {
        grid-template-columns: 36px 1fr;
    }

    .service-icon-wrap {
        display: none;
    }
}