/* ==============================
   VISUAL GROUP — PREMIUM REDESIGN
   ============================== */

/* === TOKENS === */
:root {
    --bg: #080D1A;
    --bg2: #0F1B40;
    --navy: #023E73;
    --teal: #56B5BF;
    --gold: #F2CC85;
    --red: #F2CC85;
    --cyan: #56B5BF;
    --text: #F2F2F2;
    --muted: rgba(242,242,242,0.52);
    --border: rgba(86,181,191,0.14);
    --card-bg: rgba(242,242,242,0.03);
    --font-head: 'Syne', sans-serif;
    --font-body: 'Inter', sans-serif;
    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-in-out: cubic-bezier(0.76, 0, 0.24, 1);
}

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

html { font-size: 16px; }

body {
    background: var(--bg);
    color: var(--text);
    font-family: var(--font-body);
    overflow-x: hidden;
    cursor: none;
}

a { text-decoration: none; color: inherit; }
img { display: block; max-width: 100%; }
ul { list-style: none; }
button { cursor: none; border: none; background: none; }

/* === CUSTOM CURSOR === */
.cursor {
    position: fixed;
    width: 40px; height: 40px;
    border: 1.5px solid rgba(86,181,191,0.6);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    top: -20px; left: -20px;
    transition: transform 0.15s var(--ease-out), border-color 0.3s, opacity 0.3s;
    mix-blend-mode: difference;
}

.cursor-dot {
    position: fixed;
    width: 6px; height: 6px;
    background: var(--cyan);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    top: -3px; left: -3px;
    transition: transform 0.08s var(--ease-out);
}

.cursor.is-hovering { transform: scale(2.2); border-color: var(--red); }
.cursor.is-clicking { transform: scale(0.8); }

/* === LOADER === */
.loader {
    position: fixed;
    inset: 0;
    background: #080D1A;
    z-index: 9000;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.loader-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 28px;
}

.loader-logo-wrap {
    display: flex;
    align-items: center;
    gap: 0;
    overflow: hidden;
}

.loader-word {
    display: flex;
    gap: 2px;
    overflow: hidden;
}

.loader-word span {
    font-family: var(--font-head);
    font-size: clamp(30px, 6vw, 76px);
    font-weight: 800;
    letter-spacing: 0.08em;
    color: var(--text);
    display: inline-block;
    transform: translateY(120%);
    line-height: 1;
}

.loader-word--group span {
    color: var(--cyan);
}

.loader-sep {
    width: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--red), var(--cyan));
    align-self: center;
    margin: 0 16px;
    border-radius: 99px;
    overflow: hidden;
}

.loader-tagline {
    font-family: var(--font-body);
    font-size: clamp(14px, 2vw, 18px);
    color: var(--muted);
    letter-spacing: 0.15em;
    text-transform: uppercase;
    opacity: 0;
}

.loader-tagline em { color: var(--cyan); font-style: normal; }

.loader-bar-wrap {
    width: 280px;
    height: 2px;
    background: rgba(255,255,255,0.1);
    border-radius: 99px;
    overflow: hidden;
}

.loader-bar {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, var(--red), var(--cyan));
    border-radius: 99px;
}

.loader-counter {
    font-family: var(--font-head);
    font-size: 13px;
    color: var(--muted);
    letter-spacing: 0.1em;
    position: absolute;
    bottom: -56px;
    right: 0;
}

.loader-particles {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.loader-particle {
    position: absolute;
    width: 2px; height: 2px;
    background: var(--cyan);
    border-radius: 50%;
    opacity: 0;
}

/* === NAVBAR === */
.navbar {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 800;
    transition: background 0.4s, backdrop-filter 0.4s, border-color 0.4s;
    border-bottom: 1px solid transparent;
}

.navbar.scrolled {
    background: rgba(8,13,26,0.95);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border-color: var(--border);
}

.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 5%;
    max-width: 1600px;
    margin: 0 auto;
}

.nav-logo-img {
    height: 56px;
    width: auto;
    object-fit: contain;
    filter: brightness(1);
    transition: transform 0.3s;
}

.nav-logo:hover .nav-logo-img { transform: scale(1.04); }

.nav-links {
    display: flex;
    align-items: center;
    gap: 40px;
}

.nav-link {
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 500;
    color: rgba(255,255,255,0.7);
    letter-spacing: 0.04em;
    transition: color 0.2s;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px; left: 0;
    width: 0; height: 1px;
    background: var(--cyan);
    transition: width 0.3s var(--ease-out);
}

.nav-link:hover { color: #fff; }
.nav-link:hover::after { width: 100%; }

.nav-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

/* NAV TOGGLE */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 6px;
}

.nav-toggle span {
    display: block;
    width: 24px; height: 2px;
    background: #fff;
    border-radius: 99px;
    transition: transform 0.3s, opacity 0.3s;
}

.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* MOBILE MENU */
.mobile-menu {
    position: fixed;
    inset: 0;
    background: rgba(8,13,26,0.97);
    backdrop-filter: blur(30px);
    z-index: 700;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 32px;
    transform: translateX(100%);
    transition: transform 0.5s var(--ease-in-out);
}

.mobile-menu.open { transform: translateX(0); }

.mobile-close {
    position: absolute;
    top: 28px; right: 5%;
    font-size: 28px;
    color: var(--muted);
    transition: color 0.2s;
}

.mobile-close:hover { color: #fff; }

.mobile-links {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
}

.mobile-link {
    font-family: var(--font-head);
    font-size: clamp(32px, 8vw, 56px);
    font-weight: 700;
    color: rgba(255,255,255,0.85);
    transition: color 0.2s;
}

.mobile-link:hover { color: var(--cyan); }
.mobile-footer-text { font-size: 13px; color: var(--muted); margin-top: 16px; }

/* === BUTTONS === */
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    background: var(--gold);
    color: #080D1A;
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 600;
    border-radius: 999px;
    transition: background 0.3s, transform 0.2s, box-shadow 0.3s;
    white-space: nowrap;
}

.btn-primary svg { width: 16px; height: 16px; transition: transform 0.3s; }
.btn-primary:hover { background: #e8c070; box-shadow: 0 0 40px rgba(242,204,133,0.3); }
.btn-primary:hover svg { transform: translateX(4px); }

.btn-ghost {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 13px 28px;
    background: transparent;
    color: #fff;
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 500;
    border: 1px solid rgba(255,255,255,0.25);
    border-radius: 999px;
    transition: border-color 0.3s, background 0.3s, transform 0.2s;
    white-space: nowrap;
}

.btn-ghost svg { width: 16px; height: 16px; transition: transform 0.3s; }
.btn-ghost:hover { border-color: rgba(255,255,255,0.7); background: rgba(255,255,255,0.06); }
.btn-ghost:hover svg { transform: translateX(4px); }

.btn-ghost--red { border-color: rgba(242,204,133,0.4); color: var(--red); }
.btn-ghost--red:hover { border-color: var(--red); background: rgba(242,204,133,0.08); }

.btn-nav {
    display: inline-flex;
    align-items: center;
    padding: 11px 24px;
    background: var(--gold);
    color: #080D1A;
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 600;
    border-radius: 999px;
    transition: background 0.3s, box-shadow 0.3s;
    white-space: nowrap;
}

.btn-nav:hover { background: #e8c070; box-shadow: 0 0 30px rgba(242,204,133,0.28); }

/* === ACCENT COLORS === */
.accent-red { color: var(--red); }
.accent-cyan { color: var(--cyan); }

/* === SECTION COMMON === */
.section-head {
    padding: 0 5%;
    margin-bottom: 64px;
    max-width: 1600px;
    margin-left: auto;
    margin-right: auto;
}

.section-label {
    display: block;
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 500;
    color: var(--muted);
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.section-title {
    font-family: var(--font-head);
    font-size: clamp(40px, 6vw, 80px);
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: -0.02em;
}

.section-sub {
    margin-top: 20px;
    font-size: 18px;
    color: var(--muted);
    font-weight: 300;
}

/* === REVEAL ANIMATIONS === */
.reveal-up {
    opacity: 0;
    transform: translateY(60px);
}

.reveal-line {
    display: block;
}

.reveal-line > .line-inner {
    display: block;
    transform: translateY(110%);
}

/* === HERO === */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding: 140px 5% 120px;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-bg-img {
    position: absolute;
    inset: 0;
    width: 100%; height: 100%;
    object-fit: cover;
    object-position: center;
    transform: scale(1.05);
    transition: transform 8s ease;
    pointer-events: none;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to right,
        rgba(8,13,26,0.75) 0%,
        rgba(8,13,26,0.35) 60%,
        rgba(8,13,26,0.15) 100%
    );
}

.hero-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    pointer-events: none;
    z-index: 1;
}

.hero-orb--1 {
    width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(242,204,133,0.15), transparent 70%);
    top: -200px; right: -100px;
    animation: orbFloat 8s ease-in-out infinite;
}

.hero-orb--2 {
    width: 400px; height: 400px;
    background: radial-gradient(circle, rgba(86,181,191,0.1), transparent 70%);
    bottom: 100px; left: 10%;
    animation: orbFloat 10s ease-in-out infinite reverse;
}

.hero-orb--3 {
    width: 300px; height: 300px;
    background: radial-gradient(circle, rgba(242,204,133,0.08), transparent 70%);
    top: 50%; left: 50%;
    animation: orbFloat 12s ease-in-out infinite;
}

@keyframes orbFloat {
    0%, 100% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-30px) scale(1.05); }
}

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

.hero-eyebrow {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    font-weight: 500;
    color: var(--muted);
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-bottom: 28px;
    opacity: 0;
}

.eyebrow-dot {
    width: 6px; height: 6px;
    border-radius: 50%;
    background: var(--cyan);
    display: inline-block;
    box-shadow: 0 0 10px var(--cyan);
    animation: dotPulse 2s ease-in-out infinite;
}

@keyframes dotPulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.4); }
}

.hero-headline {
    font-family: var(--font-head);
    font-size: clamp(36px, 6.5vw, 100px);
    font-weight: 800;
    line-height: 1.0;
    letter-spacing: -0.03em;
    margin-bottom: 32px;
    overflow-wrap: break-word;
    word-break: break-word;
}

.hero-headline .reveal-line {
    overflow: visible;
}

.hero-line--ojos {
    display: flex !important;
    align-items: baseline;
    gap: 0.25em;
    flex-wrap: wrap;
}

.word-ojos {
    position: relative;
    display: inline-block;
    color: var(--cyan);
}

.ojos-text {
    position: relative;
    z-index: 1;
}

.ojos-glow {
    position: absolute;
    inset: -10px -20px;
    background: radial-gradient(ellipse, rgba(86,181,191,0.25), transparent 70%);
    border-radius: 50%;
    animation: ojosGlow 3s ease-in-out infinite;
}

@keyframes ojosGlow {
    0%, 100% { opacity: 0.6; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.15); }
}

.hero-sub {
    font-size: clamp(14px, 1.8vw, 18px);
    color: var(--muted);
    font-weight: 400;
    letter-spacing: 0.04em;
    margin-bottom: 40px;
    opacity: 0;
}

.hero-ctas {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    opacity: 0;
}

/* SCROLL INDICATOR */
.hero-scroll-ind {
    position: absolute;
    bottom: 130px;
    right: 5%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    z-index: 2;
}

.scroll-line-anim {
    width: 1px;
    height: 60px;
    background: linear-gradient(to bottom, transparent, var(--cyan));
    position: relative;
    overflow: hidden;
}

.scroll-line-anim::after {
    content: '';
    position: absolute;
    top: -100%;
    width: 100%; height: 100%;
    background: var(--cyan);
    animation: scrollLine 2s ease-in-out infinite;
}

@keyframes scrollLine {
    0% { top: -100%; }
    100% { top: 200%; }
}

.hero-scroll-ind span {
    font-size: 11px;
    color: var(--muted);
    letter-spacing: 0.15em;
    writing-mode: vertical-rl;
    text-transform: uppercase;
}

/* MARQUEE */
.hero-marquee,
.marquee-section {
    position: relative;
    z-index: 2;
    overflow: hidden;
    border-top: 1px solid var(--border);
}

.hero-marquee {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    padding: 20px 0;
    background: rgba(8,13,26,0.6);
    backdrop-filter: blur(10px);
}

.marquee-section {
    padding: 24px 0;
    background: rgba(242,204,133,0.05);
    border-top: 1px solid rgba(242,204,133,0.15);
    border-bottom: 1px solid rgba(242,204,133,0.15);
}

.marquee-track {
    display: flex;
    align-items: center;
    gap: 32px;
    white-space: nowrap;
    animation: marqueeScroll 30s linear infinite;
    width: max-content;
}

.marquee-track--slow { animation-duration: 45s; }

.marquee-track span {
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 500;
    color: var(--muted);
    letter-spacing: 0.06em;
}

.mdot {
    color: var(--cyan) !important;
    font-size: 10px !important;
}

@keyframes marqueeScroll {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

/* === MANIFESTO === */
.manifesto {
    padding: 160px 5%;
    position: relative;
    overflow: hidden;
    background: var(--bg2);
}

.manifesto::before {
    content: '';
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 800px; height: 800px;
    background: radial-gradient(circle, rgba(86,181,191,0.04), transparent 60%);
    pointer-events: none;
}

.manifesto-inner {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 48px;
}

.manifesto-line {
    font-family: var(--font-head);
    font-size: clamp(24px, 3.5vw, 52px);
    font-weight: 700;
    line-height: 1.2;
    color: rgba(255,255,255,0.2);
    transition: color 0.5s;
    overflow-wrap: break-word;
    word-break: break-word;
}

.manifesto-line.is-active { color: rgba(255,255,255,1); }
.manifesto-mid { font-size: clamp(32px, 5vw, 72px); font-weight: 800; }
.manifesto-bold { font-size: clamp(36px, 6vw, 88px); font-weight: 800; }
.manifesto-bold em { color: var(--red); font-style: normal; }
.manifesto-pause { font-size: clamp(20px, 3vw, 40px); color: rgba(255,255,255,0.15); }
.manifesto-pause.is-active { color: rgba(255,255,255,0.6); }
.manifesto-climax { font-size: clamp(28px, 4vw, 66px); }
.manifesto-climax.is-active { color: #fff; }

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

.services .section-head {
    margin-bottom: 48px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2px;
    background: var(--border);
}

.service-card {
    position: relative;
    min-height: 520px;
    overflow: hidden;
    background: var(--bg);
    cursor: none;
}

.service-bg {
    position: absolute;
    inset: 0;
}

.service-img {
    width: 100%; height: 100%;
    object-fit: cover;
    transform: scale(1.08);
    transition: transform 0.8s var(--ease-out), opacity 0.8s;
    opacity: 0.85;
}

.service-card:hover .service-img {
    transform: scale(1.0);
    opacity: 1;
}

.service-bg-veil {
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg,
        rgba(8,13,26,0.88) 0%,
        rgba(8,13,26,0.35) 45%,
        rgba(8,13,26,0.0) 100%
    );
    transition: background 0.5s;
}

.service-card:hover .service-bg-veil {
    background: linear-gradient(0deg,
        rgba(8,13,26,0.92) 0%,
        rgba(8,13,26,0.40) 40%,
        rgba(8,13,26,0.0) 100%
    );
}

.service-body {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 48px;
}

.service-num {
    position: absolute;
    top: 36px; right: 40px;
    font-family: var(--font-head);
    font-size: 72px;
    font-weight: 800;
    color: rgba(255,255,255,0.05);
    line-height: 1;
    transition: color 0.4s;
}

.service-card:hover .service-num { color: rgba(86,181,191,0.08); }

.service-text h3 {
    font-family: var(--font-head);
    font-size: clamp(28px, 3vw, 40px);
    font-weight: 600;
    line-height: 1.1;
    margin-bottom: 16px;
}

.service-text h3 strong { font-weight: 800; color: var(--cyan); }

.service-text p {
    font-size: 15px;
    color: rgba(255,255,255,0.6);
    line-height: 1.7;
    margin-bottom: 20px;
    max-width: 400px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s var(--ease-out), opacity 0.4s;
    opacity: 0;
}

.service-card:hover .service-text p {
    max-height: 200px;
    opacity: 1;
}

.service-text ul {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 24px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s var(--ease-out), opacity 0.4s 0.1s;
    opacity: 0;
}

.service-card:hover .service-text ul {
    max-height: 200px;
    opacity: 1;
}

.service-text li {
    font-size: 13px;
    color: var(--muted);
    padding-left: 16px;
    position: relative;
}

.service-text li::before {
    content: '✦';
    position: absolute;
    left: 0;
    color: var(--red);
    font-size: 8px;
    top: 2px;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 600;
    color: var(--cyan);
    letter-spacing: 0.06em;
    opacity: 0;
    transform: translateX(-10px);
    transition: opacity 0.4s 0.15s, transform 0.4s 0.15s;
}

.service-link svg { width: 14px; height: 14px; transition: transform 0.3s; }
.service-link:hover svg { transform: translateX(4px); }

.service-card:hover .service-link {
    opacity: 1;
    transform: translateX(0);
}

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

.portfolio .section-head { margin-bottom: 40px; }

.portfolio-filters {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    padding: 0 5%;
    margin-bottom: 40px;
    max-width: 1600px;
    margin-left: auto;
    margin-right: auto;
}

.filter-btn {
    padding: 9px 20px;
    border: 1px solid var(--border);
    border-radius: 999px;
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 500;
    color: var(--muted);
    background: transparent;
    transition: all 0.25s;
    cursor: none;
}

.filter-btn:hover { border-color: rgba(255,255,255,0.3); color: #fff; }

.filter-btn.active {
    background: var(--gold);
    border-color: var(--gold);
    color: #080D1A;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: auto;
    gap: 16px;
    padding: 0 5%;
    max-width: 1600px;
    margin: 0 auto;
}

.pf-item {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    aspect-ratio: 1;
    background: #0F1B40;
    transition: transform 0.4s var(--ease-out), opacity 0.4s;
}

.pf-item.hidden { opacity: 0; pointer-events: none; transform: scale(0.95); }
.pf-tall { aspect-ratio: 1 / 1.6; grid-row: span 2; }
.pf-wide { grid-column: span 2; aspect-ratio: 2 / 1; }

.pf-inner {
    position: relative;
    width: 100%; height: 100%;
}

.pf-inner img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.6s var(--ease-out);
}

.pf-item:hover .pf-inner img { transform: scale(1.06); }

.pf-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(8,13,26,0.9) 0%, rgba(8,13,26,0.3) 60%, transparent 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 28px;
    opacity: 0;
    transition: opacity 0.4s;
}

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

.pf-cat {
    font-size: 11px;
    font-weight: 600;
    color: var(--cyan);
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-bottom: 6px;
}

.pf-overlay h4 {
    font-family: var(--font-head);
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 4px;
}

.pf-overlay p {
    font-size: 13px;
    color: var(--muted);
}

.portfolio-cta {
    text-align: center;
    margin-top: 56px;
    padding: 0 5%;
}

/* === STATS === */
.stats {
    position: relative;
    padding: 120px 5%;
    overflow: hidden;
    background: var(--bg2);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.stats-bg-word {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    font-family: var(--font-head);
    font-size: clamp(120px, 20vw, 280px);
    font-weight: 800;
    color: rgba(255,255,255,0.02);
    pointer-events: none;
    white-space: nowrap;
    letter-spacing: -0.05em;
}

.stats-grid {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.stat-item {
    flex: 1;
    min-width: 200px;
    text-align: center;
    padding: 40px 20px;
}

.stat-num {
    font-family: var(--font-head);
    font-size: clamp(56px, 8vw, 96px);
    font-weight: 800;
    line-height: 1;
    background: linear-gradient(135deg, #fff 0%, var(--cyan) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 12px;
    letter-spacing: -0.03em;
}

.stat-label {
    font-size: 14px;
    color: var(--muted);
    font-weight: 400;
    letter-spacing: 0.04em;
}

.stat-div {
    width: 1px;
    height: 80px;
    background: var(--border);
    flex-shrink: 0;
}

/* === PACKAGES === */
.packages {
    padding: 120px 5%;
}

.packages-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto;
    align-items: stretch;
}

.pkg-card {
    position: relative;
    border: 1px solid var(--border);
    border-radius: 28px;
    padding: 44px 36px;
    background: var(--card-bg);
    overflow: hidden;
    transition: border-color 0.4s, transform 0.4s var(--ease-out), box-shadow 0.4s;
    display: flex;
    flex-direction: column;
}

.pkg-card:hover { transform: translateY(-12px); }
.pkg-featured { border-color: rgba(86,181,191,0.3); transform: translateY(-8px); }
.pkg-featured:hover { transform: translateY(-20px); box-shadow: 0 40px 80px rgba(86,181,191,0.1); }

.pkg-badge {
    position: absolute;
    top: 24px; right: 24px;
    background: var(--cyan);
    color: #000;
    font-size: 11px;
    font-weight: 700;
    padding: 4px 14px;
    border-radius: 999px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.pkg-glow {
    position: absolute;
    inset: -1px;
    border-radius: 28px;
    opacity: 0;
    transition: opacity 0.4s;
    pointer-events: none;
}

.pkg-glow::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: radial-gradient(ellipse at top, rgba(255,255,255,0.04), transparent 70%);
}

.pkg-glow--cyan { box-shadow: 0 0 60px rgba(86,181,191,0.12); }
.pkg-glow--red { box-shadow: 0 0 60px rgba(242,204,133,0.12); }
.pkg-card:hover .pkg-glow { opacity: 1; }

.pkg-header { margin-bottom: 32px; }

.pkg-tier {
    display: block;
    font-family: var(--font-head);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 20px;
}

.pkg-price {
    display: flex;
    align-items: baseline;
    gap: 4px;
    margin-bottom: 12px;
}

.psym {
    font-family: var(--font-head);
    font-size: 24px;
    font-weight: 600;
    color: var(--muted);
}

.pval {
    font-family: var(--font-head);
    font-size: clamp(44px, 5vw, 60px);
    font-weight: 800;
    line-height: 1;
    letter-spacing: -0.03em;
}

.pmo {
    font-size: 15px;
    color: var(--muted);
    font-weight: 400;
}

.pkg-tag {
    font-size: 14px;
    color: var(--muted);
    font-style: italic;
}

.pkg-features {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 36px;
    flex: 1;
}

.pkg-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: rgba(255,255,255,0.8);
}

.fc { color: var(--muted); font-size: 10px; flex-shrink: 0; }
.fc--cyan { color: var(--cyan); }
.fc--red { color: var(--red); }

.feat-off { opacity: 0.3; text-decoration: line-through; }
.feat-off .fc { color: var(--muted); }

.pkg-btn { width: 100%; justify-content: center; margin-top: auto; }

/* === SHOWREEL === */
.showreel {
    padding: 120px 5%;
    overflow: hidden;
}

.showreel-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 64px;
}

.showreel-text span { display: block; margin-bottom: 16px; }

.showreel-text h2 {
    font-family: var(--font-head);
    font-size: clamp(40px, 6vw, 80px);
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: -0.02em;
}

.showreel-frame {
    position: relative;
    border-radius: 32px;
    overflow: hidden;
    aspect-ratio: 16 / 7;
}

.showreel-thumb {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.6s var(--ease-out);
}

.showreel-frame:hover .showreel-thumb { transform: scale(1.04); }

.showreel-veil {
    position: absolute;
    inset: 0;
    background: rgba(8,13,26,0.30);
}

.play-btn {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.play-circle {
    width: 88px; height: 88px;
    background: var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
    transition: transform 0.3s, background 0.3s;
}

.play-btn:hover .play-circle { transform: scale(1.1); background: var(--red); }

.play-circle svg { width: 32px; height: 32px; color: #080D1A; margin-left: 4px; }

.play-ring {
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(242,204,133,0.4);
}

.play-ring--1 { width: 120px; height: 120px; animation: ringPulse 2s ease-out infinite; }
.play-ring--2 { width: 160px; height: 160px; animation: ringPulse 2s ease-out infinite 0.5s; }

@keyframes ringPulse {
    0% { transform: scale(0.8); opacity: 1; }
    100% { transform: scale(1.3); opacity: 0; }
}

/* === TESTIMONIALS === */
.testimonials {
    padding: 120px 5%;
    overflow: hidden;
}

.testi-slider {
    overflow: hidden;
    margin: 48px 0;
}

.testi-track {
    display: flex;
    gap: 24px;
    transition: transform 0.6s var(--ease-in-out);
}

.testi-card {
    flex: 0 0 calc(33.333% - 16px);
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: 24px;
    padding: 40px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    transition: border-color 0.3s, transform 0.3s;
}

.testi-card:hover { border-color: rgba(86,181,191,0.2); transform: translateY(-4px); }

.testi-stars { color: var(--cyan); letter-spacing: 4px; font-size: 14px; }

.testi-card p {
    font-size: 15px;
    line-height: 1.8;
    color: rgba(255,255,255,0.75);
    font-style: italic;
    flex: 1;
}

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

.author-av {
    width: 46px; height: 46px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--red), var(--cyan));
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-head);
    font-size: 14px;
    font-weight: 700;
    flex-shrink: 0;
}

.testi-author strong {
    display: block;
    font-size: 14px;
    font-weight: 600;
}

.testi-author span {
    display: block;
    font-size: 12px;
    color: var(--muted);
    margin-top: 2px;
}

.testi-controls {
    display: flex;
    align-items: center;
    gap: 20px;
    justify-content: center;
    margin-top: 32px;
}

.testi-btn {
    width: 48px; height: 48px;
    border: 1px solid var(--border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: border-color 0.3s, background 0.3s;
    cursor: none;
}

.testi-btn:hover { border-color: rgba(255,255,255,0.4); background: rgba(255,255,255,0.05); }
.testi-btn svg { width: 18px; height: 18px; }

.testi-dots { display: flex; gap: 8px; }

.tdot {
    width: 6px; height: 6px;
    border-radius: 50%;
    background: var(--muted);
    transition: background 0.3s, transform 0.3s;
    cursor: none;
}

.tdot.active { background: var(--cyan); transform: scale(1.4); }

/* === CONTACT === */
.contact {
    padding: 120px 5%;
    position: relative;
    overflow: hidden;
}

.contact::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--border), transparent);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    max-width: 1200px;
    margin: 0 auto;
    align-items: start;
}

.contact-title {
    font-family: var(--font-head);
    font-size: clamp(36px, 5vw, 64px);
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: -0.02em;
    margin: 16px 0 20px;
}

.contact-sub {
    font-size: 16px;
    color: var(--muted);
    line-height: 1.7;
    margin-bottom: 40px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.cd-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px 20px;
    border: 1px solid var(--border);
    border-radius: 16px;
    background: var(--card-bg);
    transition: border-color 0.3s, transform 0.3s;
    font-size: 14px;
    color: rgba(255,255,255,0.8);
}

.cd-item:hover { border-color: rgba(255,255,255,0.2); transform: translateX(6px); }

.cd-icon {
    width: 40px; height: 40px;
    border-radius: 12px;
    background: rgba(242,204,133,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.cd-icon svg { width: 18px; height: 18px; color: var(--red); }

/* FORM */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-field {
    position: relative;
}

.f-input {
    width: 100%;
    background: rgba(255,255,255,0.04);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 16px 20px;
    font-family: var(--font-body);
    font-size: 14px;
    color: #fff;
    outline: none;
    transition: border-color 0.3s, background 0.3s;
    -webkit-appearance: none;
    appearance: none;
}

.f-input::placeholder { color: rgba(255,255,255,0.3); }
.f-input:focus { border-color: rgba(86,181,191,0.4); background: rgba(86,181,191,0.03); }
.f-textarea { min-height: 120px; resize: vertical; }

.f-select {
    cursor: none;
    color: rgba(255,255,255,0.5);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='rgba(255,255,255,0.3)' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
}

.f-select option { background: #0F1B40; color: var(--text); }

.form-submit {
    border: none;
    justify-content: center;
    padding: 18px 32px;
    font-size: 16px;
}

/* === FOOTER === */
.footer {
    position: relative;
    overflow: hidden;
    border-top: 1px solid var(--border);
}

.footer-inner {
    max-width: 1600px;
    margin: 0 auto;
    padding: 80px 5% 40px;
}

.footer-top {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 80px;
    margin-bottom: 60px;
    padding-bottom: 60px;
    border-bottom: 1px solid var(--border);
}

.footer-logo { height: 60px; width: auto; object-fit: contain; margin-bottom: 16px; }

.footer-brand p {
    font-size: 14px;
    color: var(--muted);
    font-style: italic;
}

.footer-nav {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.footer-col h5 {
    font-family: var(--font-head);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 20px;
}

.footer-col a,
.footer-col span {
    display: block;
    font-size: 14px;
    color: rgba(255,255,255,0.55);
    margin-bottom: 10px;
    transition: color 0.2s;
}

.footer-col a:hover { color: #fff; }

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 13px;
    color: rgba(255,255,255,0.25);
}

.footer-bg-word {
    position: absolute;
    bottom: -20px; right: -20px;
    font-family: var(--font-head);
    font-size: clamp(80px, 15vw, 200px);
    font-weight: 800;
    color: rgba(255,255,255,0.02);
    pointer-events: none;
    line-height: 1;
    letter-spacing: -0.05em;
}

/* === WHATSAPP FLOAT === */
.wa-float {
    position: fixed;
    right: 32px;
    bottom: 32px;
    z-index: 500;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wa-icon {
    width: 60px; height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
    box-shadow: 0 8px 32px rgba(37,211,102,0.35);
    transition: transform 0.3s var(--ease-out), box-shadow 0.3s;
}

.wa-icon svg { width: 28px; height: 28px; color: #fff; }
.wa-float:hover .wa-icon { transform: scale(1.1); box-shadow: 0 16px 48px rgba(37,211,102,0.5); }

.wa-pulse {
    position: absolute;
    width: 60px; height: 60px;
    border-radius: 50%;
    background: rgba(37,211,102,0.3);
    animation: waPulse 2.5s ease-out infinite;
}

@keyframes waPulse {
    0% { transform: scale(1); opacity: 0.6; }
    100% { transform: scale(2); opacity: 0; }
}

.wa-tooltip {
    position: absolute;
    right: 72px;
    background: rgba(8,13,26,0.95);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 10px 16px;
    font-size: 13px;
    font-weight: 500;
    color: #fff;
    white-space: nowrap;
    opacity: 0;
    transform: translateX(8px);
    transition: opacity 0.3s, transform 0.3s;
    pointer-events: none;
    backdrop-filter: blur(10px);
}

.wa-float:hover .wa-tooltip { opacity: 1; transform: translateX(0); }

/* === HERO CHIPS === */
.hero-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 32px;
}

.hero-chip {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 8px 16px;
    background: rgba(86,181,191,0.07);
    border: 1px solid rgba(86,181,191,0.2);
    border-radius: 999px;
    font-size: 12px;
    font-weight: 500;
    color: rgba(242,242,242,0.75);
    letter-spacing: 0.04em;
    transition: background 0.25s, border-color 0.25s, color 0.25s;
}

.hero-chip svg {
    width: 14px; height: 14px;
    color: var(--teal);
    flex-shrink: 0;
}

.hero-chip:hover {
    background: rgba(86,181,191,0.14);
    border-color: rgba(86,181,191,0.4);
    color: var(--text);
}

.hero-chip--gold {
    background: rgba(242,204,133,0.08);
    border-color: rgba(242,204,133,0.22);
}

.hero-chip--gold svg { color: var(--gold); }
.hero-chip--gold:hover {
    background: rgba(242,204,133,0.15);
    border-color: rgba(242,204,133,0.4);
}

/* === STAT ICONS === */
.stat-icon {
    width: 48px; height: 48px;
    border: 1px solid rgba(86,181,191,0.2);
    border-radius: 14px;
    background: rgba(86,181,191,0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
}

.stat-icon svg {
    width: 22px; height: 22px;
    color: var(--teal);
}

/* === FOOTER SOCIAL === */
.footer-social {
    display: flex;
    gap: 10px;
    margin-top: 20px;
    flex-wrap: wrap;
}

.social-link {
    width: 38px; height: 38px;
    border: 1px solid var(--border);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--muted);
    transition: border-color 0.25s, color 0.25s, background 0.25s;
}

.social-link svg { width: 16px; height: 16px; }

.social-link:hover {
    border-color: var(--teal);
    color: var(--teal);
    background: rgba(86,181,191,0.08);
}

/* === MAGNETIC BUTTON WRAPPER === */
.magnetic { position: relative; }

/* === KEYFRAMES UTILITY === */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(40px); }
    to { opacity: 1; transform: translateY(0); }
}

/* === RESPONSIVE === */
@media (max-width: 1024px) {
    .services-grid { grid-template-columns: 1fr; }
    .packages-grid { grid-template-columns: 1fr 1fr; }
    .contact-grid { grid-template-columns: 1fr; gap: 48px; }
    .footer-top { grid-template-columns: 1fr; gap: 40px; }
    .footer-nav { grid-template-columns: repeat(3, 1fr); }
    .portfolio-grid { grid-template-columns: 1fr 1fr; }
    .pf-wide { grid-column: span 1; aspect-ratio: 1; }
    .testi-card { flex: 0 0 calc(50% - 12px); }
}

@media (max-width: 768px) {
    .nav-links { display: none; }
    .nav-toggle { display: flex; }
    .btn-nav { display: none; }

    .hero { padding: 120px 5% 100px; }
    .hero-headline { font-size: clamp(30px, 9vw, 60px); }
    .hero-scroll-ind { display: none; }
    .pf-overlay { opacity: 1; }

    .manifesto { padding: 100px 5%; }
    .manifesto-inner { gap: 32px; }

    .services { padding: 80px 0; }

    .portfolio-grid {
        grid-template-columns: 1fr;
        padding: 0 5%;
    }

    .pf-tall { aspect-ratio: 1; grid-row: span 1; }
    .pf-wide { grid-column: span 1; aspect-ratio: 1; }

    .stats-grid { flex-direction: column; }
    .stat-div { width: 80px; height: 1px; }

    .packages-grid { grid-template-columns: 1fr; }
    .pkg-featured { transform: none; }

    .showreel-frame { aspect-ratio: 16 / 9; border-radius: 20px; }

    .testi-card { flex: 0 0 calc(85vw); }

    .form-row { grid-template-columns: 1fr; }

    .footer-nav { grid-template-columns: 1fr 1fr; }
    .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }

    body { cursor: auto; }
    .cursor, .cursor-dot { display: none; }
    button { cursor: pointer; }
    a { cursor: pointer; }
    .filter-btn { cursor: pointer; }
    .testi-btn { cursor: pointer; }
    .tdot { cursor: pointer; }
    .nav-toggle { cursor: pointer; }
    .mobile-close { cursor: pointer; }
}

@media (max-width: 480px) {
    .hero-headline { font-size: clamp(28px, 10vw, 48px); }
    .hero-ctas { flex-direction: column; }
    .hero-ctas a { width: 100%; justify-content: center; }
    .portfolio-filters { gap: 6px; }
    .filter-btn { padding: 7px 14px; font-size: 12px; }
    .pf-overlay { opacity: 1; }
    .section-title { font-size: clamp(28px, 8vw, 56px); }
    .manifesto { padding: 80px 5%; }
    .manifesto-inner { gap: 24px; }
    .contact-title { font-size: clamp(28px, 8vw, 48px); }
    .showreel-text h2 { font-size: clamp(28px, 8vw, 48px); }
}

/* ===================================
   VISUAL WEB SECTION
   =================================== */
.vweb {
    position: relative;
    padding: 130px 0 100px;
    background: #060B18;
    overflow: hidden;
    border-top: 1px solid rgba(86,181,191,0.12);
    border-bottom: 1px solid rgba(86,181,191,0.12);
}

/* Grid bg pattern */
.vweb-grid-bg {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(86,181,191,0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(86,181,191,0.04) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none;
}

.vweb-watermark {
    position: absolute;
    top: 50%;
    right: -40px;
    transform: translateY(-50%);
    font-family: var(--font-head);
    font-size: clamp(160px, 22vw, 320px);
    font-weight: 800;
    color: rgba(86,181,191,0.03);
    pointer-events: none;
    line-height: 1;
    letter-spacing: -0.05em;
    user-select: none;
}

.vweb-inner {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 5%;
    position: relative;
    z-index: 2;
}

.vweb-head {
    margin-bottom: 64px;
    padding: 0;
}

/* ── Product Types ── */
.vweb-types {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2px;
    background: rgba(86,181,191,0.08);
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 80px;
}

.vweb-type {
    background: #030303;
    padding: 32px 28px;
    transition: background 0.3s;
    position: relative;
}

.vweb-type::before {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--cyan), transparent);
    opacity: 0;
    transition: opacity 0.3s;
}

.vweb-type:hover { background: rgba(86,181,191,0.04); }
.vweb-type:hover::before { opacity: 1; }

.vweb-type-icon {
    width: 48px; height: 48px;
    border: 1px solid rgba(86,181,191,0.25);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: border-color 0.3s, background 0.3s;
}

.vweb-type:hover .vweb-type-icon {
    border-color: var(--cyan);
    background: rgba(86,181,191,0.08);
}

.vweb-type-icon svg {
    width: 22px; height: 22px;
    color: var(--cyan);
}

.vweb-type h4 {
    font-family: var(--font-head);
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 8px;
    letter-spacing: -0.01em;
}

.vweb-type p {
    font-size: 13px;
    color: var(--muted);
    line-height: 1.6;
}

/* ── Pricing label ── */
.vweb-pricing-label {
    margin-bottom: 32px;
}

/* ── Plans Grid ── */
.vweb-plans {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 40px;
    align-items: stretch;
}

.vweb-plan {
    position: relative;
    border: 1px solid var(--border);
    border-radius: 24px;
    padding: 36px 32px;
    background: rgba(255,255,255,0.02);
    display: flex;
    flex-direction: column;
    gap: 0;
    transition: border-color 0.4s, transform 0.4s var(--ease-out), box-shadow 0.4s;
    overflow: hidden;
}

.vweb-plan:hover { transform: translateY(-8px); box-shadow: 0 32px 64px rgba(0,0,0,0.4); }

.vweb-plan--featured {
    border-color: rgba(86,181,191,0.4);
    background: rgba(86,181,191,0.03);
    transform: translateY(-6px);
    box-shadow: 0 0 60px rgba(86,181,191,0.06);
}

.vweb-plan--featured:hover {
    transform: translateY(-14px);
    box-shadow: 0 40px 80px rgba(86,181,191,0.12);
}

.vweb-plan-badge {
    position: absolute;
    top: 20px; right: 20px;
    background: var(--cyan);
    color: #000;
    font-size: 10px;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 999px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.vweb-plan-icon {
    width: 44px; height: 44px;
    border: 1px solid var(--border);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.vweb-plan-icon--cyan {
    border-color: rgba(86,181,191,0.3);
    background: rgba(86,181,191,0.06);
}

.vweb-plan-icon svg { width: 20px; height: 20px; color: rgba(255,255,255,0.5); }
.vweb-plan-icon--cyan svg { color: var(--cyan); }

.vweb-plan-head { margin-bottom: 28px; }

.vweb-plan-name {
    display: block;
    font-family: var(--font-head);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 14px;
}

.vweb-plan-price {
    display: flex;
    align-items: baseline;
    gap: 4px;
    margin-bottom: 8px;
}

.vwp-sym {
    font-family: var(--font-head);
    font-size: 20px;
    font-weight: 600;
    color: var(--muted);
}

.vwp-val {
    font-family: var(--font-head);
    font-size: clamp(40px, 4.5vw, 56px);
    font-weight: 800;
    line-height: 1;
    letter-spacing: -0.03em;
    color: #fff;
}

.vweb-plan--featured .vwp-val { color: var(--cyan); }

.vweb-plan-tag {
    font-size: 12px;
    color: var(--muted);
}

.vweb-plan-items {
    display: flex;
    flex-direction: column;
    gap: 11px;
    flex: 1;
    margin-bottom: 32px;
}

.vweb-plan-items li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 13.5px;
    color: rgba(255,255,255,0.8);
    line-height: 1.5;
}

.vwi { color: var(--muted); font-size: 9px; flex-shrink: 0; margin-top: 4px; }
.vwi--c { color: var(--cyan); }
.vwi--r { color: var(--red); }

.vwi-off { opacity: 0.25; text-decoration: line-through; }

.vweb-plan-btn { width: 100%; justify-content: center; margin-top: auto; }

/* ── Portal Callout ── */
.vweb-portal {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    background: rgba(86,181,191,0.04);
    border: 1px solid rgba(86,181,191,0.18);
    border-radius: 24px;
    padding: 36px 40px;
    margin-bottom: 64px;
}

.vweb-portal-left {
    display: flex;
    align-items: flex-start;
    gap: 24px;
    flex: 1;
}

.vweb-portal-icon {
    width: 52px; height: 52px;
    border: 1px solid rgba(86,181,191,0.3);
    border-radius: 16px;
    background: rgba(86,181,191,0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 4px;
}

.vweb-portal-icon svg { width: 24px; height: 24px; color: var(--cyan); }

.vweb-portal-left h3 {
    font-family: var(--font-head);
    font-size: clamp(18px, 2.5vw, 26px);
    font-weight: 700;
    margin-bottom: 10px;
    letter-spacing: -0.01em;
}

.vweb-portal-left p {
    font-size: 14px;
    color: var(--muted);
    line-height: 1.7;
    margin-bottom: 20px;
    max-width: 560px;
}

.vweb-portal-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.vweb-portal-tags span {
    font-size: 12px;
    font-weight: 500;
    color: var(--cyan);
    background: rgba(86,181,191,0.08);
    border: 1px solid rgba(86,181,191,0.2);
    border-radius: 999px;
    padding: 5px 14px;
    letter-spacing: 0.04em;
}

.vweb-portal-cta { flex-shrink: 0; }

/* ── Tech Stack ── */
.vweb-tech {
    border-top: 1px solid var(--border);
    padding-top: 48px;
    margin-bottom: 64px;
}

.vweb-tech-label {
    font-size: 12px;
    font-weight: 600;
    color: var(--muted);
    letter-spacing: 0.14em;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.vweb-tech-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.vweb-tech-list span {
    font-size: 13px;
    font-weight: 500;
    color: rgba(255,255,255,0.6);
    background: rgba(255,255,255,0.04);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 7px 16px;
    letter-spacing: 0.04em;
    transition: color 0.2s, border-color 0.2s, background 0.2s;
}

.vweb-tech-list span:hover {
    color: var(--cyan);
    border-color: rgba(86,181,191,0.3);
    background: rgba(86,181,191,0.05);
}

/* ── Process ── */
.vweb-process {
    border-top: 1px solid var(--border);
    padding-top: 48px;
}

.vweb-steps {
    display: flex;
    align-items: flex-start;
    gap: 0;
}

.vweb-step {
    flex: 1;
    padding: 0 24px 0 0;
}

.vweb-step-num {
    font-family: var(--font-head);
    font-size: 40px;
    font-weight: 800;
    color: rgba(86,181,191,0.15);
    line-height: 1;
    margin-bottom: 12px;
    letter-spacing: -0.03em;
}

.vweb-step h5 {
    font-family: var(--font-head);
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 8px;
}

.vweb-step p {
    font-size: 13px;
    color: var(--muted);
    line-height: 1.65;
}

.vweb-step-arrow {
    color: rgba(86,181,191,0.3);
    font-size: 24px;
    padding: 24px 8px 0;
    flex-shrink: 0;
}

/* ── Responsive ── */
@media (max-width: 1024px) {
    .vweb-types { grid-template-columns: repeat(2, 1fr); }
    .vweb-plans { grid-template-columns: 1fr; max-width: 500px; margin-left: auto; margin-right: auto; }
    .vweb-plan--featured { transform: none; }
    .vweb-portal { flex-direction: column; align-items: flex-start; }
    .vweb-steps { flex-direction: column; gap: 32px; }
    .vweb-step-arrow { display: none; }
    .vweb-step { padding: 0; }
}

@media (max-width: 768px) {
    .vweb-types { grid-template-columns: 1fr 1fr; }
    .vweb-portal-left { flex-direction: column; gap: 16px; }
    .vweb-portal { padding: 28px 24px; }
}

@media (max-width: 480px) {
    .vweb-types { grid-template-columns: 1fr; }
    .vweb-plans { max-width: 100%; }
    .vweb-type { padding: 24px 20px; }
}
