/* ===== TOKENS ===== */
:root {
    --g: #1BC97B;
    --gd: #14a862;
    --gl: #f0fbf6;
    --blk: #111111;
    --wht: #ffffff;
    --off: #f7f7f7;
    --bdr: #e8e8e8;
    --t1: #111111;
    --t2: #555555;
    --t3: #999999;
    --tr: 0.22s ease;
    --r: 14px;
}

/* ===== BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'Plus Jakarta Sans', sans-serif; background: var(--wht); color: var(--t1); line-height: 1.6; overflow-x: hidden; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--off); }
::-webkit-scrollbar-thumb { background: var(--g); border-radius: 2px; }

/* ===== LAYOUT ===== */
.wrap { max-width: 1160px; margin: 0 auto; padding: 0 32px; }
.sec { padding: 96px 0; }

/* ===== REVEAL ===== */
[data-reveal] { opacity: 0; transform: translateY(20px); transition: opacity 0.55s ease, transform 0.55s ease; }
[data-reveal].revealed { opacity: 1; transform: none; }

/* ===== BUTTONS ===== */
.btn-black {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 14px 28px; background: var(--g); color: var(--wht);
    border-radius: 50px; font-weight: 700; font-size: 15px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    border: none; cursor: pointer; transition: var(--tr);
}
.btn-black:hover { background: var(--gd); transform: translateY(-1px); }
.btn-ghost {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 14px 28px; background: transparent; color: var(--t1);
    border: 1.5px solid var(--bdr); border-radius: 50px;
    font-weight: 600; font-size: 15px; cursor: pointer; transition: var(--tr);
}
.btn-ghost:hover { border-color: var(--g); color: var(--g); }
.btn-full { width: 100%; justify-content: center; }

/* ===== LABELS ===== */
.sec-tag {
    display: inline-flex; align-items: center; gap: 8px;
    font-size: 11px; font-weight: 800;
    color: var(--g); text-transform: uppercase; letter-spacing: 2.5px;
    margin-bottom: 12px;
}
.sec-tag::before { content: ''; display: inline-block; width: 18px; height: 2px; background: var(--g); border-radius: 2px; }
.sec-tag-inv { color: rgba(255,255,255,0.6); }
.sec-tag-inv::before { background: rgba(255,255,255,0.4); }

.sec-head { margin-bottom: 52px; }
.sec-title { font-size: clamp(38px, 5.2vw, 72px); font-weight: 900; letter-spacing: -3px; line-height: 1.02; }

/* ===== NAVBAR ===== */
.navbar { position: fixed; top: 0; left: 0; right: 0; z-index: 100; padding: 22px 0; transition: all 0.3s ease; }
.navbar.scrolled { padding: 14px 0; background: rgba(255,255,255,0.96); backdrop-filter: blur(20px); border-bottom: 1px solid var(--bdr); }
.nav-inner {
    display: flex; align-items: center;
    max-width: 1160px; margin: 0 auto; padding: 0 32px;
}
.logo { font-size: 18px; font-weight: 800; letter-spacing: -0.5px; display: flex; align-items: center; gap: 8px; color: var(--t1); }
.logo-img { height: 28px; width: auto; display: block; }
.nav-links { display: flex; gap: 36px; margin: 0 auto; }
.nav-links a { font-size: 14px; font-weight: 500; color: var(--t2); transition: color var(--tr); position: relative; }
.nav-links a::after { content: ''; position: absolute; bottom: -3px; left: 0; width: 0; height: 2px; background: var(--g); border-radius: 2px; transition: width var(--tr); }
.nav-links a:hover, .nav-links a.active { color: var(--t1); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.nav-cta { font-size: 13px; font-weight: 700; padding: 10px 20px; background: var(--blk); color: var(--wht); border-radius: 50px; transition: var(--tr); white-space: nowrap; }
.nav-cta:hover { background: var(--g); }

.menu-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; margin-left: auto; }
.menu-toggle span { width: 22px; height: 2px; background: var(--t1); border-radius: 2px; transition: var(--tr); }
.menu-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle.open span:nth-child(2) { opacity: 0; }
.menu-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ===== HERO ===== */
.hero {
    display: flex; align-items: center;
    padding: 120px 0 72px; background: var(--wht); position: relative; overflow: hidden;
}
.hero-bg-dots {
    position: absolute; inset: 0; pointer-events: none;
    background-image: radial-gradient(rgba(0,0,0,0.055) 1px, transparent 1px);
    background-size: 26px 26px;
}
.hero-glow {
    position: absolute; width: 700px; height: 700px; pointer-events: none;
    background: radial-gradient(circle, rgba(27,201,123,0.13), transparent 68%);
    top: -180px; right: -180px;
}
.hero-watermark {
    position: absolute; top: 50%; left: 50%;
    transform: translate(-50%, -54%);
    font-size: clamp(100px, 19vw, 260px);
    font-weight: 900; letter-spacing: -8px;
    color: transparent;
    -webkit-text-stroke: 1.5px rgba(27,201,123,0.13);
    white-space: nowrap; pointer-events: none;
    user-select: none; z-index: 0; line-height: 1;
}

.hero-content {
    max-width: 860px; margin: 0 auto; padding: 0 32px;
    text-align: center; position: relative; z-index: 1;
}

.hero-tag {
    display: inline-flex; align-items: center; gap: 8px;
    font-size: 12.5px; font-weight: 600; color: var(--g);
    background: var(--gl); border: 1px solid rgba(27,201,123,0.25);
    padding: 6px 16px; border-radius: 50px; margin-bottom: 24px;
}
.live-dot { width: 7px; height: 7px; background: var(--g); border-radius: 50%; animation: pulse 2s infinite; flex-shrink: 0; }
@keyframes pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:.3;transform:scale(.75)} }

.hero-headline {
    display: flex; flex-direction: column; align-items: center;
    margin-bottom: 20px;
}
.hh-normal {
    font-size: clamp(58px, 8vw, 116px); font-weight: 800;
    color: var(--t1); letter-spacing: -4px; line-height: 1.0;
}
.hh-outline {
    font-size: clamp(58px, 8vw, 116px); font-weight: 800;
    -webkit-text-stroke: 3px var(--t1); color: transparent;
    letter-spacing: -4px; line-height: 1.0;
}
.hh-solid {
    font-size: clamp(58px, 8vw, 116px); font-weight: 800;
    color: var(--g); letter-spacing: -4px; line-height: 1.05;
}

.hero-desc {
    font-size: 17px; color: var(--t2); line-height: 1.8;
    max-width: 520px; margin: 0 auto 28px;
}
.hero-cta { display: flex; gap: 12px; flex-wrap: wrap; justify-content: center; }


/* ===== MARQUEE ===== */
.mq-bar { background: var(--blk); padding: 18px 0; overflow: hidden; }
.mq-track { overflow: hidden; }
.mq-inner {
    display: flex; gap: 36px; align-items: center;
    width: max-content; animation: mq 24s linear infinite;
    font-size: 13px; font-weight: 600; color: rgba(255,255,255,0.35); letter-spacing: 0.5px;
}
.mq-inner em { color: var(--g); font-style: normal; opacity: 0.7; }
@keyframes mq { from{transform:translateX(0)} to{transform:translateX(-50%)} }

/* ===== BENTO SERVICES ===== */
.services-sec { background: var(--off); }
.bento { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }

.bc {
    background: var(--wht); border: 1px solid var(--bdr);
    border-radius: 24px; padding: 36px;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    position: relative; overflow: hidden;
}
.bc::after {
    content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 3px;
    background: linear-gradient(90deg, var(--g), #22d3ee);
    transform: scaleX(0); transform-origin: left; transition: transform 0.35s ease;
    border-radius: 0 0 24px 24px;
}
.bc:hover { border-color: rgba(27,201,123,0.3); transform: translateY(-5px); box-shadow: 0 24px 64px rgba(27,201,123,0.12); }
.bc:hover::after { transform: scaleX(1); }

/* Giant ghost icon in card background */
.bc-bg-ico {
    position: absolute; bottom: -20px; right: -20px;
    font-size: 160px; line-height: 1;
    color: var(--g); opacity: 0.06;
    pointer-events: none;
    transition: opacity 0.35s ease, transform 0.35s ease;
}
.bc:hover .bc-bg-ico { opacity: 0.11; transform: scale(1.1) rotate(-8deg); }


.bc-top { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 24px; }
.bc-n { font-size: 11px; font-weight: 800; color: var(--t3); letter-spacing: 2px; }
.bc-ico {
    width: 54px; height: 54px; background: var(--gl);
    border-radius: 16px; display: flex; align-items: center;
    justify-content: center; color: var(--g); font-size: 22px;
    flex-shrink: 0;
}
.bc h3 { font-size: 21px; font-weight: 700; letter-spacing: -0.4px; margin-bottom: 12px; }
.bc p { font-size: 14.5px; color: var(--t2); line-height: 1.7; margin-bottom: 24px; }
.bc-chips { display: flex; gap: 6px; flex-wrap: wrap; }
.bc-chips span { padding: 5px 13px; background: var(--off); border-radius: 50px; font-size: 11.5px; font-weight: 600; color: var(--t2); }

/* ===== STATS ===== */
.stats-sec { background: var(--blk); padding: 80px 0; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.sg-item { padding: 40px 24px; text-align: center; border-right: 1px solid rgba(255,255,255,0.07); }
.sg-item:last-child { border-right: none; }
.sg-num-wrap { display: flex; align-items: flex-start; justify-content: center; gap: 3px; margin-bottom: 10px; }
.sg-num { font-size: clamp(56px, 6vw, 84px); font-weight: 800; letter-spacing: -4px; color: var(--g); line-height: 1; }
.sg-plus { font-size: 36px; font-weight: 800; color: var(--g); padding-top: 8px; line-height: 1; }
.sg-item p { font-size: 13px; color: rgba(255,255,255,0.35); font-weight: 500; }

/* ===== PRODUCTS ===== */
.products-sec { background: var(--wht); }
.prod-sec-sub { font-size: 16px; color: var(--t2); line-height: 1.75; max-width: 520px; margin-top: 14px; }

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

.prod-card {
    background: var(--wht);
    border-radius: 24px; padding: 28px 26px;
    display: flex; flex-direction: column;
    border: 1.5px solid var(--bdr);
    transition: background 0.25s ease, border-color 0.25s ease;
}
.prod-card:hover { background: var(--gl); border-color: rgba(27,201,123,0.45); }

.pc-1, .pc-2, .pc-3, .pc-4 { background: var(--wht); }

.prod-header {
    display: flex; align-items: center; justify-content: space-between;
    margin-bottom: 18px; gap: 12px;
}

.prod-badge {
    font-size: 11px; font-weight: 700; letter-spacing: 0.4px;
    color: var(--gd); background: rgba(27,201,123,0.13);
    border: 1px solid rgba(27,201,123,0.22);
    padding: 5px 13px; border-radius: 50px;
    white-space: nowrap;
}

.prod-logo-wrap {
    width: 72px; height: 72px; flex-shrink: 0;
    background: var(--wht); border-radius: 16px;
    display: flex; align-items: center; justify-content: center;
    padding: 8px;
    box-shadow: 0 3px 14px rgba(27,201,123,0.1);
    border: 1px solid rgba(27,201,123,0.12);
}
.prod-logo-wrap img { width: 100%; height: 100%; object-fit: contain; }

.prod-name {
    font-size: 30px; font-weight: 900; letter-spacing: -1px;
    color: var(--t1); line-height: 1; margin-bottom: 5px;
}
.prod-tagline {
    font-size: 11px; font-weight: 700; letter-spacing: 0.8px;
    text-transform: uppercase; color: var(--g); margin-bottom: 12px;
}
.prod-desc { font-size: 14px; color: var(--t2); line-height: 1.7; margin-bottom: 20px; }

.prod-features { list-style: none; display: grid; grid-template-columns: 1fr 1fr; gap: 7px 14px; margin-bottom: 24px; }
.prod-features li { display: flex; align-items: center; gap: 8px; font-size: 13px; color: var(--t2); font-weight: 500; }
.prod-features i { color: var(--g); font-size: 12px; flex-shrink: 0; }

.prod-btn {
    display: inline-flex; align-items: center; gap: 8px;
    background: var(--g); color: var(--wht);
    font-size: 13.5px; font-weight: 700;
    padding: 12px 26px; border-radius: 50px;
    transition: all 0.25s ease; align-self: flex-start; margin-top: auto;
}
.prod-btn:hover { background: var(--gd); transform: translateY(-1px); }

/* ===== WORK GRID ===== */
.work-sec { background: var(--off); }
.work-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.wc {
    background: var(--wht);
    border: 1.5px solid var(--bdr);
    border-radius: 20px;
    padding: 28px 26px 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    position: relative;
    overflow: hidden;
    text-decoration: none;
    color: var(--t1);
    transition: background 0.25s ease, border-color 0.25s ease;
}
.wc:hover { background: var(--gl); border-color: rgba(27,201,123,0.45); }
.wc:hover .wc-arr { color: var(--g); transform: rotate(-45deg); }
.wc:hover .wc-name { color: var(--g); }
.wc-num {
    position: absolute;
    top: 16px; right: 20px;
    font-size: 72px;
    font-weight: 900;
    line-height: 1;
    color: var(--g);
    opacity: 0.07;
    letter-spacing: -3px;
    pointer-events: none;
    transition: opacity 0.25s ease;
}
.wc:hover .wc-num { opacity: 0.13; }
.wc-top { display: flex; align-items: center; justify-content: space-between; gap: 8px; }
.wc-cat { font-size: 11px; font-weight: 700; color: var(--gd); background: var(--gl); padding: 4px 12px; border-radius: 50px; letter-spacing: 0.3px; }
.wc-yr { font-size: 12px; color: var(--t3); font-weight: 500; }
.wc-name { font-size: 22px; font-weight: 800; letter-spacing: -0.5px; line-height: 1.15; transition: color 0.2s ease; margin-top: 4px; }
.wc-desc { font-size: 13.5px; color: var(--t2); line-height: 1.55; flex: 1; }
.wc-foot { display: flex; align-items: center; justify-content: space-between; gap: 8px; margin-top: 4px; }
.wc-tags { display: flex; flex-wrap: wrap; gap: 6px; }
.wc-tags em { font-style: normal; font-size: 11px; font-weight: 600; color: var(--t2); background: var(--off); border: 1px solid var(--bdr); border-radius: 50px; padding: 3px 10px; }
.wc-arr { font-size: 14px; color: var(--t3); transition: all 0.2s ease; flex-shrink: 0; }

/* ===== ABOUT ===== */
.about-sec { background: var(--wht); }
.ab-top { margin-bottom: 52px; }
.ab-headline { font-size: clamp(38px, 5.2vw, 72px); font-weight: 900; letter-spacing: -3px; line-height: 1.02; margin-top: 14px; max-width: 860px; color: var(--t1); }
.ab-headline em, .title-em { font-style: normal; color: var(--g); }
.ab-body { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; }
.ab-desc p { font-size: 15.5px; color: var(--t2); line-height: 1.82; margin-bottom: 18px; }
.ab-since { display: flex; align-items: center; gap: 16px; margin-top: 28px; padding: 18px 22px; background: var(--gl); border: 1.5px solid rgba(27,201,123,0.2); border-radius: 14px; }
.ab-year { font-size: 36px; font-weight: 900; color: var(--g); letter-spacing: -2px; line-height: 1; flex-shrink: 0; }
.ab-since-txt { font-size: 13.5px; color: var(--t2); line-height: 1.5; font-weight: 500; }
.ab-pillars { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.ab-pill { background: var(--off); border: 1.5px solid var(--bdr); border-radius: 18px; padding: 24px 20px; display: flex; flex-direction: column; gap: 8px; transition: border-color 0.25s ease, background 0.25s ease, transform 0.25s ease; }
.ab-pill:hover { background: var(--gl); border-color: rgba(27,201,123,0.4); transform: translateY(-3px); }
.ab-pill-ico { width: 40px; height: 40px; background: rgba(27,201,123,0.1); border-radius: 10px; display: flex; align-items: center; justify-content: center; color: var(--g); font-size: 16px; margin-bottom: 4px; }
.ab-pill strong { font-size: 14.5px; font-weight: 700; color: var(--t1); }
.ab-pill span { font-size: 12.5px; color: var(--t3); line-height: 1.55; }

/* ===== PROCESS ===== */
.process-sec { background: var(--off); }
.proc-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.proc-card {
    background: var(--wht);
    border: 1.5px solid var(--bdr);
    border-radius: 20px;
    padding: 28px 22px 26px;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    gap: 12px;
    transition: border-color 0.25s ease, transform 0.25s ease;
}
.proc-card:hover { border-color: rgba(27,201,123,0.42); transform: translateY(-4px); }
.proc-num {
    position: absolute;
    top: 14px; right: 18px;
    font-size: 80px;
    font-weight: 900;
    line-height: 1;
    color: var(--g);
    opacity: 0.06;
    letter-spacing: -4px;
    pointer-events: none;
    transition: opacity 0.25s ease;
}
.proc-card:hover .proc-num { opacity: 0.12; }
.proc-step { font-size: 10.5px; font-weight: 800; color: var(--g); letter-spacing: 1.5px; text-transform: uppercase; }
.proc-ico {
    width: 46px; height: 46px;
    background: rgba(27,201,123,0.1);
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    color: var(--g);
    font-size: 18px;
    margin-top: 4px;
    transition: background 0.25s ease;
}
.proc-card:hover .proc-ico { background: rgba(27,201,123,0.18); }
.proc-card h3 { font-size: 19px; font-weight: 800; letter-spacing: -0.5px; color: var(--t1); margin-top: 2px; }
.proc-card p { font-size: 13.5px; color: var(--t2); line-height: 1.65; flex: 1; }

/* ===== TESTIMONIALS ===== */
.tst-sec { background: var(--off); }
.tst-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 32px; margin-bottom: 52px; flex-wrap: wrap; }
.tst-overall { text-align: right; flex-shrink: 0; }
.tst-overall-stars { font-size: 22px; color: #f59e0b; letter-spacing: 4px; margin-bottom: 4px; }
.tst-overall span { font-size: 12.5px; color: var(--t3); font-weight: 500; }

.tst-slider { max-width: 1100px; margin: 0 auto; }
.tst-track-wrap { overflow: hidden; }
.tst-track { display: flex; transition: transform 0.55s cubic-bezier(0.25, 0.46, 0.45, 0.94); }
.tst-item { min-width: 50%; box-sizing: border-box; padding: 0 10px; }
.tst-item-inner {
    background: var(--wht);
    border-radius: 24px;
    padding: 52px 56px;
    position: relative;
    overflow: hidden;
}
.tst-item-inner::before {
    content: '\201C';
    position: absolute;
    top: -10px; left: 36px;
    font-size: 180px;
    line-height: 1;
    color: var(--g);
    opacity: 0.07;
    font-family: Georgia, serif;
    pointer-events: none;
}
.tst-stars { font-size: 16px; color: #f59e0b; letter-spacing: 4px; margin-bottom: 24px; position: relative; }
.tst-q { font-size: 14.5px; color: var(--t1); line-height: 1.72; font-weight: 500; letter-spacing: -0.1px; margin-bottom: 32px; font-style: normal; position: relative; }
.tst-author { display: flex; align-items: center; gap: 14px; border-top: 1px solid var(--bdr); padding-top: 28px; }
.tst-av { width: 48px; height: 48px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 14px; color: #fff; flex-shrink: 0; }
.tst-author strong { display: block; font-size: 15px; font-weight: 700; color: var(--t1); }
.tst-author span { font-size: 13px; color: var(--t3); display: block; margin-top: 2px; }

.tst-controls { display: flex; align-items: center; justify-content: center; gap: 16px; margin-top: 28px; }
.tst-arrow { width: 44px; height: 44px; border-radius: 50%; border: 1.5px solid var(--bdr); background: var(--wht); color: var(--t2); font-size: 14px; cursor: pointer; display: flex; align-items: center; justify-content: center; flex-shrink: 0; transition: all 0.2s ease; }
.tst-arrow:hover { background: var(--gd); border-color: var(--gd); color: var(--wht); }
.tst-dots { display: flex; align-items: center; gap: 8px; }
.tst-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--bdr); border: none; cursor: pointer; transition: all 0.3s ease; padding: 0; }
.tst-dot.active { background: var(--gd); width: 28px; border-radius: 4px; }

/* ===== CLIENTS MARQUEE ===== */
.clients-sec { background: var(--off); padding: 36px 0 40px; overflow: hidden; border-top: 1px solid var(--bdr); border-bottom: 1px solid var(--bdr); }
.clients-label { text-align: center; margin-bottom: 24px; }
.clients-track {
    overflow: hidden;
    -webkit-mask-image: linear-gradient(to right, transparent 0%, #000 12%, #000 88%, transparent 100%);
    mask-image: linear-gradient(to right, transparent 0%, #000 12%, #000 88%, transparent 100%);
}
.clients-strip {
    display: flex;
    align-items: center;
    gap: 12px;
    width: max-content;
    animation: marquee-scroll 32s linear infinite;
}
.clients-strip:hover { animation-play-state: paused; }
.cl-logo {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 32px;
    background: var(--wht);
    border: 1.5px solid var(--bdr);
    border-radius: 14px;
    flex-shrink: 0;
    height: 80px;
    box-sizing: border-box;
}
.cl-logo img {
    height: 40px;
    width: auto;
    max-width: 140px;
    object-fit: contain;
    filter: grayscale(1) opacity(0.6);
    transition: filter 0.3s ease;
    display: block;
}
.clients-strip:hover .cl-logo img { filter: grayscale(0) opacity(1); }
@keyframes marquee-scroll {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ===== TECH STACK ===== */
.tech-sec { background: var(--wht); }
.tech-tags { display: flex; flex-wrap: wrap; gap: 10px; }
.tech-tags span { padding: 10px 20px; border: 1.5px solid var(--bdr); border-radius: 50px; font-size: 14px; font-weight: 600; color: var(--t2); transition: var(--tr); cursor: default; }
.tech-tags span:hover, .tech-tags span.hl { border-color: var(--g); color: var(--gd); background: var(--gl); }

/* ===== CONTACT ===== */
.contact-sec { display: grid; grid-template-columns: 1fr 1fr; min-height: 90vh; }
.cs-left {
    background: var(--gd);
    display: flex; align-items: center; justify-content: center;
    padding: 80px 60px;
    position: relative; overflow: hidden;
}
.cs-left::before {
    content: ''; position: absolute;
    width: 480px; height: 480px;
    background: rgba(255,255,255,0.05);
    border-radius: 50%; top: -150px; right: -150px;
    pointer-events: none;
}
.cs-left::after {
    content: ''; position: absolute;
    width: 300px; height: 300px;
    background: rgba(255,255,255,0.04);
    border-radius: 50%; bottom: -80px; left: -80px;
    pointer-events: none;
}
.csl-body { max-width: 400px; position: relative; z-index: 1; }
.csl-body h2 { font-size: clamp(28px, 3.2vw, 44px); font-weight: 800; letter-spacing: -1.5px; color: var(--wht); line-height: 1.1; margin: 14px 0 16px; }
.csl-body > p { font-size: 15px; color: rgba(255,255,255,0.88); line-height: 1.75; margin-bottom: 24px; }
.csl-response { display: inline-flex; align-items: center; gap: 8px; background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.2); border-radius: 50px; padding: 8px 16px; font-size: 13px; color: rgba(255,255,255,0.92); margin-bottom: 32px; }
.csl-response strong { color: var(--wht); font-weight: 700; }
.csl-response .live-dot { background: #7effc4; box-shadow: 0 0 0 3px rgba(126,255,196,0.25); flex-shrink: 0; }
.csl-details { display: flex; flex-direction: column; gap: 16px; margin-bottom: 32px; }
.csl-details a, .csl-details span { font-size: 14px; color: rgba(255,255,255,0.9); display: flex; align-items: center; gap: 12px; transition: color var(--tr); text-decoration: none; }
.csl-details a:hover { color: var(--wht); }
.csl-details i { color: var(--wht); width: 16px; flex-shrink: 0; }
.csl-socials { display: flex; gap: 10px; }
.csl-socials a { width: 38px; height: 38px; background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.2); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,0.88); font-size: 14px; transition: var(--tr); }
.csl-socials a:hover { background: rgba(255,255,255,0.22); border-color: rgba(255,255,255,0.3); color: var(--wht); }

.cs-right { background: var(--wht); display: flex; align-items: center; justify-content: center; padding: 80px 60px; }
.csr-body { width: 100%; max-width: 420px; }
.csr-title { font-size: 22px; font-weight: 800; letter-spacing: -0.5px; color: var(--t1); margin-bottom: 6px; }
.csr-sub { font-size: 14px; color: var(--t3); margin-bottom: 28px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.fg { display: flex; flex-direction: column; gap: 7px; margin-bottom: 16px; }
.fg label { font-size: 11px; font-weight: 800; color: var(--t2); text-transform: uppercase; letter-spacing: 1px; }
.fg input, .fg select, .fg textarea {
    background: var(--off); border: 1.5px solid var(--bdr); border-radius: 10px;
    padding: 13px 16px; color: var(--t1); font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 14px; outline: none; transition: border-color var(--tr), background var(--tr);
    width: 100%;
}
.fg input:focus, .fg select:focus, .fg textarea:focus { border-color: var(--g); background: var(--wht); box-shadow: 0 0 0 3px rgba(27,201,123,0.1); }
.fg input::placeholder, .fg textarea::placeholder { color: var(--t3); }
.fg select { appearance: none; cursor: pointer; }
.fg textarea { resize: vertical; min-height: 130px; }
.btn-submit { width: 100%; padding: 14px 28px; background: var(--gd); color: var(--wht); border: none; border-radius: 12px; font-family: 'Plus Jakarta Sans', sans-serif; font-size: 15px; font-weight: 700; cursor: pointer; display: flex; align-items: center; justify-content: center; gap: 10px; margin-top: 6px; transition: background 0.2s ease, transform 0.2s ease; }
.btn-submit:hover { background: #0f5c30; transform: translateY(-1px); }
.btn-submit i { font-size: 14px; }

/* ===== FOOTER ===== */
.footer { border-top: 1px solid var(--bdr); padding: 22px 0; }
.footer-inner { display: flex; align-items: center; gap: 32px; }
.foot-links { display: flex; gap: 28px; margin-left: auto; }
.foot-links a { font-size: 13px; color: var(--t3); transition: color var(--tr); }
.foot-links a:hover { color: var(--t1); }
.foot-copy { font-size: 13px; color: var(--t3); }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .prod-grid { grid-template-columns: 1fr 1fr; }
    .bento { grid-template-columns: repeat(2, 1fr); }
    .bento .bc:last-child:nth-child(odd) { grid-column: span 2; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .sg-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.07); }
    .sg-item:nth-child(odd) { border-right: 1px solid rgba(255,255,255,0.07); }
    .sg-item:nth-child(3), .sg-item:nth-child(4) { border-bottom: none; }
    .ab-body { gap: 40px; }
    .proc-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
    /* ── Navbar ── */
    .menu-toggle { display: flex; position: relative; z-index: 102; }
    .nav-cta { display: none; }
    .nav-links {
        display: none;
        position: fixed;
        inset: 0;
        background: rgba(255,255,255,0.98);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 0;
        z-index: 101;
        padding: 80px 32px 40px;
    }
    .nav-links.open { display: flex; }
    .nav-links li { width: 100%; text-align: center; border-bottom: 1px solid var(--bdr); }
    .nav-links li:last-child { border-bottom: none; }
    .nav-links a { display: block; padding: 18px 0; font-size: 17px; font-weight: 600; }

    /* ── Sections ── */
    .sec { padding: 64px 0; }
    .sec-title { letter-spacing: -1.5px; }

    /* ── Hero ── */
    .hero { padding: 80px 0 56px; }
    .hh-normal, .hh-outline, .hh-solid { font-size: clamp(42px, 10vw, 72px); letter-spacing: -2px; }
    .hero-watermark { letter-spacing: -4px; }

    /* ── Products ── */
    .prod-grid { grid-template-columns: 1fr 1fr; }

    /* ── Services ── */
    .bento { grid-template-columns: 1fr; }
    .bento .bc:last-child:nth-child(odd) { grid-column: span 1; }

    /* ── Work ── */
    .work-grid { grid-template-columns: 1fr 1fr; }

    /* ── About ── */
    .ab-body { grid-template-columns: 1fr; gap: 36px; }
    .ab-headline { letter-spacing: -2px; }

    /* ── Process ── */
    .proc-grid { grid-template-columns: 1fr 1fr; }

    /* ── Testimonials — 1 per slide on tablet/mobile ── */
    .tst-item { min-width: 100%; padding: 0; }
    .tst-item-inner { padding: 40px 32px; }
    .tst-head { flex-direction: column; align-items: flex-start; gap: 16px; }
    .tst-overall { text-align: left; }

    /* ── Contact ── */
    .contact-sec { grid-template-columns: 1fr; min-height: auto; }
    .cs-left { padding: 64px 32px; }
    .cs-right { padding: 64px 32px; }

    /* ── Footer ── */
    .footer-inner { flex-direction: column; align-items: flex-start; gap: 16px; }
    .foot-links { margin-left: 0; flex-wrap: wrap; gap: 14px; }

    /* ── Floating buttons ── */
    .wa-float { bottom: 20px; right: 20px; width: 50px; height: 50px; font-size: 22px; }
    .btt-btn { bottom: 82px; right: 22px; width: 40px; height: 40px; font-size: 13px; }
}

@media (max-width: 480px) {
    /* ── Layout ── */
    .wrap { padding: 0 20px; }
    .nav-inner { padding: 0 20px; }
    .sec { padding: 52px 0; }

    /* ── Hero ── */
    .hero { padding: 72px 0 48px; }
    .hero-content { padding: 0 20px; }
    .hh-normal, .hh-outline, .hh-solid { font-size: 36px; letter-spacing: -1.5px; }
    .hh-outline { -webkit-text-stroke-width: 2px; }
    .hero-desc { font-size: 15px; }
    .hero-cta { flex-direction: column; align-items: stretch; }
    .hero-cta .btn-black, .hero-cta .btn-ghost { justify-content: center; }
    .hero-watermark { font-size: 72px; letter-spacing: -3px; }

    /* ── Titles ── */
    .sec-title { letter-spacing: -1px; }
    .ab-headline { letter-spacing: -1px; }

    /* ── Stats ── */
    .stats-grid { grid-template-columns: 1fr 1fr; }
    .sg-item { padding: 28px 16px; border-right: none; border-bottom: 1px solid rgba(255,255,255,0.07); }
    .sg-item:nth-child(odd) { border-right: 1px solid rgba(255,255,255,0.07); }
    .sg-item:nth-child(3), .sg-item:nth-child(4) { border-bottom: none; }

    /* ── Products ── */
    .prod-grid { grid-template-columns: 1fr; }

    /* ── Work ── */
    .work-grid { grid-template-columns: 1fr; }

    /* ── About ── */
    .ab-pillars { grid-template-columns: 1fr; }

    /* ── Process ── */
    .proc-grid { grid-template-columns: 1fr; }

    /* ── Testimonials ── */
    .tst-item-inner { padding: 32px 24px; }
    .tst-item-inner::before { font-size: 110px; left: 18px; }
    .tst-q { font-size: 13.5px; }

    /* ── Contact ── */
    .cs-left { padding: 48px 20px; }
    .cs-right { padding: 48px 20px; }
    .form-row { grid-template-columns: 1fr; }
    .csl-body h2 { font-size: 26px; }

    /* ── Footer ── */
    .foot-links { gap: 10px; }
    .foot-links a { font-size: 12px; }
    .foot-copy { font-size: 12px; }
}

/* ===== WHATSAPP FLOAT ===== */
.wa-float {
    position: fixed;
    bottom: 32px;
    right: 32px;
    width: 56px;
    height: 56px;
    background: #25D366;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.45);
    z-index: 1000;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.wa-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.6);
    color: #fff;
}

/* ===== BACK TO TOP ===== */
.btt-btn {
    position: fixed;
    bottom: 100px;
    right: 34px;
    width: 44px;
    height: 44px;
    background: var(--wht);
    border: 1.5px solid var(--bdr);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    color: var(--t1);
    cursor: pointer;
    z-index: 1000;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s ease, transform 0.25s ease, background 0.25s ease, border-color 0.25s ease;
    transform: translateY(8px);
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
}
.btt-btn.visible {
    opacity: 1;
    pointer-events: all;
    transform: translateY(0);
}
.btt-btn:hover {
    background: var(--g);
    border-color: var(--g);
    color: var(--wht);
}
