/* ==========================================================================
   Vett.hu — Web Engineering & Development Agency
   Aesthetic: Architectural, Sharp, Swiss Grid, High-Contrast Warm Gold
   ========================================================================== */

:root {
    --accent: #fca503;
    --accent-dark: #d97706;
    --accent-light: #fbbf24;
    --accent-glow: rgba(252, 165, 3, 0.25);
    --accent-subtle: rgba(252, 165, 3, 0.08);
    
    --green: #fca503;
    --green-dark: #d97706;
    --green-light: #fbbf24;
    --green-glow: rgba(252, 165, 3, 0.25);
    --green-subtle: rgba(252, 165, 3, 0.08);
    
    --ink: #090d11;
    --ink-soft: #334155;
    --ink-faint: #64748b;
    --line: #cbd5e1;
    --line-dark: #1e2632;
    --paper: #ffffff;
    --paper-alt: #eaf0f6;
    --paper-dark: #090c0f;
    --font-heading: 'Space Grotesk', -apple-system, sans-serif;
    --font-body: 'Inter', -apple-system, sans-serif;
    --font-mono: 'JetBrains Mono', monospace;
    
    /* Strict Sharp Angles — No rounded blobs */
    --radius: 0px;
}

*, *::before, *::after { 
    margin: 0; 
    padding: 0; 
    box-sizing: border-box; 
    border-radius: var(--radius) !important; 
    min-width: 0;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 72px;
    width: 100%;
    overflow-x: hidden;
}

body {
    font-family: var(--font-body);
    color: var(--ink);
    background: var(--paper);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    font-size: 15px;
    width: 100%;
    overflow-x: hidden;
    position: relative;
}

a { color: inherit; text-decoration: none; }
ul { list-style: none; }
img, svg { max-width: 100%; height: auto; display: block; }
button { font-family: inherit; }

main {
    width: 100%;
    overflow-x: hidden;
    position: relative;
}

/* ==========================================================================
   Header Navigation
   ========================================================================== */

.header {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    background: var(--paper-dark);
    border-bottom: 1px solid var(--line-dark);
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    width: 100%;
}

.header-inner {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 28px;
    height: 66px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 18px;
    letter-spacing: 1px;
    color: #fff;
    text-decoration: none;
    flex-shrink: 0;
}

.logo-mark { flex-shrink: 0; }

.logo-text-hl { color: var(--green); }

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

.nav a {
    font-family: var(--font-mono);
    font-size: 13px;
    font-weight: 500;
    color: #ffffff;
    transition: color 0.15s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    padding: 6px 0;
}

.nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--green);
    transition: width 0.2s ease;
}

.nav a:hover::after { width: 100%; }
.nav a:hover { color: var(--green-light); }

.nav-cta {
    background: var(--green) !important;
    color: var(--paper-dark) !important;
    font-weight: 700 !important;
    padding: 8px 18px !important;
    border: 1px solid var(--green) !important;
    transition: all 0.2s ease !important;
}

.nav-cta::after { display: none !important; }
.nav-cta:hover {
    background: #fff !important;
    border-color: #fff !important;
    color: var(--paper-dark) !important;
}

.menu-toggle {
    display: none;
    background: none;
    border: 1px solid var(--line-dark);
    cursor: pointer;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    padding: 8px;
    z-index: 1001;
}

.menu-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: #fff;
    transition: transform 0.25s ease, opacity 0.2s ease;
}

.menu-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.menu-toggle.active span:nth-child(2) { transform: rotate(-45deg); }

/* ==========================================================================
   Side Sticky Scroll-Spy Navigation
   ========================================================================== */

.side-scroll-nav {
    position: fixed;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 900;
    display: flex;
    align-items: center;
    pointer-events: auto;
}

.side-nav-track {
    position: absolute;
    right: 3px;
    top: 6px;
    bottom: 6px;
    width: 2px;
    background: rgba(0, 0, 0, 0.08);
    z-index: 1;
}

.side-nav-bar {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 0%;
    background: var(--green);
    transition: height 0.15s ease-out;
}

.side-nav-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
    position: relative;
    z-index: 2;
}

.side-nav-item {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 12px;
    text-decoration: none;
    padding: 2px 0;
    cursor: pointer;
}

.side-nav-label {
    font-family: var(--font-mono);
    font-size: 11px;
    font-weight: 700;
    color: var(--paper-dark);
    background: #fff;
    border: 1px solid var(--line);
    padding: 3px 8px;
    letter-spacing: 0.5px;
    opacity: 0;
    transform: translateX(10px);
    transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
    pointer-events: none;
    white-space: nowrap;
    box-shadow: 4px 4px 0px rgba(0, 0, 0, 0.06);
}

.side-nav-item:hover .side-nav-label,
.side-nav-item.active .side-nav-label {
    opacity: 1;
    transform: translateX(0);
}

.side-nav-item.active .side-nav-label {
    background: var(--paper-dark);
    color: var(--green);
    border-color: var(--line-dark);
    box-shadow: 4px 4px 0px var(--green);
}

.side-nav-bullet {
    width: 8px;
    height: 8px;
    background: #fff;
    border: 1.5px solid #8d9baa;
    transition: all 0.2s ease;
    flex-shrink: 0;
}

.side-nav-item:hover .side-nav-bullet {
    border-color: var(--green);
    background: var(--green);
    transform: scale(1.3);
}

.side-nav-item.active .side-nav-bullet {
    background: var(--green);
    border-color: var(--paper-dark);
    transform: scale(1.4);
    box-shadow: 0 0 0 3px rgba(252, 165, 3, 0.3);
}

/* ==========================================================================
   Hero Section
   ========================================================================== */

.hero {
    padding: 130px 28px 80px;
    background: var(--paper);
    position: relative;
    border-bottom: 1px solid var(--line);
    width: 100%;
}

.hero-grid-bg {
    position: absolute;
    inset: 0;
    background-size: 40px 40px;
    background-image: 
        linear-gradient(to right, rgba(0, 0, 0, 0.03) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(0, 0, 0, 0.03) 1px, transparent 1px);
    pointer-events: none;
}

.hero-inner {
    max-width: 1240px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 48px;
    align-items: center;
    position: relative;
    z-index: 1;
    width: 100%;
}

.hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--paper-alt);
    border: 1px solid var(--line);
    padding: 4px 10px;
    margin-bottom: 20px;
    max-width: 100%;
    flex-wrap: wrap;
}

.tag-icon {
    color: #eab308;
    font-size: 15px;
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.hero-tag-code {
    font-family: var(--font-mono);
    font-size: 11px;
    font-weight: 600;
    color: var(--green-dark);
}

.hero-tag-text {
    font-size: 12px;
    font-weight: 600;
    color: var(--ink-soft);
}

.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(34px, 5vw, 58px);
    font-weight: 700;
    letter-spacing: -1.5px;
    line-height: 1.08;
    margin-bottom: 20px;
    color: var(--ink);
    text-transform: uppercase;
    word-break: break-word;
    overflow-wrap: break-word;
}

.text-green { color: var(--green-dark); }

.hero-sub {
    font-size: 16px;
    color: var(--ink-soft);
    max-width: 520px;
    margin-bottom: 32px;
    line-height: 1.6;
}

.hero-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.hero-stats {
    display: flex;
    gap: 40px;
    padding-top: 20px;
    border-top: 1px solid var(--line);
    width: 100%;
}

.hstat {
    display: flex;
    align-items: baseline;
    gap: 2px;
    flex-wrap: wrap;
}

.hstat-num {
    font-family: var(--font-heading);
    font-size: 34px;
    font-weight: 700;
    color: var(--ink);
    letter-spacing: -1px;
    line-height: 1;
}

.hstat-plus {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 700;
    color: var(--green);
}

.hstat-label {
    width: 100%;
    font-family: var(--font-mono);
    font-size: 10.5px;
    color: var(--ink-faint);
    font-weight: 600;
    margin-top: 4px;
    letter-spacing: 0.5px;
}

.hero-figure {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    width: 100%;
}

.hero-person-img {
    width: 100%;
    max-width: 440px;
    height: auto;
    max-height: 500px;
    object-fit: contain;
    filter: drop-shadow(0 16px 36px rgba(0, 0, 0, 0.12));
    transition: transform 0.3s ease;
}

.hero-person-img:hover {
    transform: translateY(-4px);
}

/* ==========================================================================
   Buttons
   ========================================================================== */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: var(--font-mono);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.5px;
    padding: 12px 24px;
    border: 1px solid transparent;
    cursor: pointer;
    transition: all 0.18s ease;
    text-transform: uppercase;
    text-align: center;
    max-width: 100%;
}

.btn-primary {
    background: var(--green);
    color: var(--paper-dark);
    border-color: var(--green);
    font-weight: 700;
}

.btn-primary:hover {
    background: var(--green-dark);
    border-color: var(--green-dark);
    color: #fff;
    transform: translate(-2px, -2px);
    box-shadow: 4px 4px 0px var(--ink);
}

.btn-ghost {
    background: transparent;
    color: var(--ink);
    border: 1px solid var(--line);
}

.btn-ghost:hover {
    background: var(--ink);
    border-color: var(--ink);
    color: #fff;
    transform: translate(-2px, -2px);
    box-shadow: 4px 4px 0px var(--green);
}

.btn-ghost-dark {
    background: transparent;
    color: #fff;
    border: 1px solid #323d49;
}

.btn-ghost-dark:hover {
    background: #fff;
    border-color: #fff;
    color: var(--paper-dark);
    transform: translate(-2px, -2px);
    box-shadow: 4px 4px 0px var(--green);
}

.btn-block { width: 100%; }

.btn-large {
    padding: 15px 30px;
    font-size: 13.5px;
}

/* ==========================================================================
   Sections Common Structure
   ========================================================================== */

section { 
    padding: 84px 0; 
    position: relative; 
    width: 100%;
}

.section-inner {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 28px;
    position: relative;
    z-index: 1;
    width: 100%;
}

.section-head {
    margin-bottom: 40px;
    text-align: left;
    width: 100%;
}

.section-tag {
    font-family: var(--font-mono);
    font-size: 11.5px;
    font-weight: 600;
    letter-spacing: 1px;
    color: var(--green-dark);
    display: block;
    margin-bottom: 8px;
}

.section-tag-dark {
    font-family: var(--font-mono);
    font-size: 11.5px;
    font-weight: 600;
    letter-spacing: 1px;
    color: var(--green-light);
    display: block;
    margin-bottom: 8px;
}

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(24px, 3.5vw, 36px);
    font-weight: 700;
    letter-spacing: -1px;
    line-height: 1.15;
    color: var(--ink);
    text-transform: uppercase;
    word-break: break-word;
}

.section-subtitle {
    font-size: 15px;
    color: var(--ink-soft);
    margin-top: 8px;
    max-width: 600px;
    line-height: 1.5;
}

/* ==========================================================================
   Trust Bar
   ========================================================================== */

.trust-bar {
    padding: 32px 0;
    background: #0a0e13;
    border-top: 2px solid #1a232e;
    border-bottom: 2px solid #1a232e;
    width: 100%;
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    border-left: 1px solid #1a232e;
    width: 100%;
}

.trust-item {
    padding: 0 20px;
    border-right: 1px solid #1a232e;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.t-icon-box {
    display: flex;
    align-items: center;
    margin-bottom: 2px;
}

.t-icon-yellow { color: #fca503; }
.t-icon-blue { color: #38bdf8; }
.t-icon-green { color: #10b981; }
.t-icon-purple { color: #c084fc; }

.trust-item h4 {
    font-size: 13.5px;
    font-weight: 700;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: -0.2px;
}

.trust-item p {
    font-size: 12.5px;
    color: #94a3b8;
    line-height: 1.5;
}

/* ==========================================================================
   Services Section (Modular Grid)
   ========================================================================== */

.services {
    background: var(--paper-alt);
    border-bottom: 2px solid var(--line);
    width: 100%;
}

.services-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    width: 100%;
}

.service-item {
    background: #fff;
    border: 1px solid var(--line);
    padding: 32px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: all 0.2s ease;
    box-shadow: 4px 4px 0px rgba(15, 23, 42, 0.05);
}

.service-item:hover {
    border-color: var(--ink);
    transform: translate(-3px, -3px);
    box-shadow: 6px 6px 0px rgba(0, 0, 0, 0.1);
}

.service-item-highlight {
    border-color: var(--green);
    background: #fff;
}

.service-item-highlight:hover {
    border-color: var(--green-dark);
    box-shadow: 6px 6px 0px var(--green-subtle);
}

.s-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 18px;
}

.s-title-group {
    display: flex;
    align-items: center;
    gap: 8px;
}

.s-head-icon {
    transition: transform 0.2s ease, filter 0.2s ease;
    flex-shrink: 0;
}

.service-item:hover .s-head-icon {
    transform: scale(1.15) translateY(-1px);
    filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.15));
}

.s-icon-green { color: #00b87a; }
.s-icon-blue { color: #3b82f6; }
.s-icon-purple { color: #a855f7; }
.s-icon-amber { color: #fca503; }

.s-code {
    font-family: var(--font-mono);
    font-size: 11.5px;
    font-weight: 600;
    color: var(--ink-faint);
}

.s-code-hl {
    color: var(--green-dark);
    font-weight: 700;
}

.s-tech-row {
    display: flex;
    gap: 10px;
    color: var(--ink-faint);
}

.service-item h3 {
    font-family: var(--font-heading);
    font-size: 19px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--ink);
    letter-spacing: -0.4px;
}

.service-item p {
    font-size: 14px;
    color: var(--ink-soft);
    line-height: 1.6;
    margin-bottom: 20px;
}

.s-specs {
    display: flex;
    flex-wrap: wrap;
    gap: 6px 14px;
    padding-top: 14px;
    border-top: 1px dashed var(--line);
}

.s-specs span {
    font-family: var(--font-mono);
    font-size: 11.5px;
    color: var(--ink-faint);
    font-weight: 500;
}

/* ==========================================================================
   Tech Stack
   ========================================================================== */

.tech-stack {
    padding: 60px 0;
    background: #fff;
    border-bottom: 2px solid var(--line);
    width: 100%;
}

.tech-header {
    margin-bottom: 24px;
}

.tech-title {
    font-family: var(--font-heading);
    font-size: 19px;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.tech-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    border-top: 1px solid var(--line);
    border-left: 1px solid var(--line);
    width: 100%;
}

.tech-cell {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 16px 10px;
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    transition: all 0.18s ease;
    background: #fff;
}

.tech-cell:hover {
    background: var(--paper-alt);
    border-color: var(--ink);
}

.tech-cell span {
    font-family: var(--font-mono);
    font-size: 11px;
    font-weight: 600;
    color: var(--ink-soft);
}

/* ==========================================================================
   Standards & Benchmark Specification Section
   ========================================================================== */

.standards-section {
    background: var(--paper-alt);
    border-bottom: 2px solid var(--line);
    width: 100%;
}

.spec-matrix {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 24px;
    width: 100%;
}

.spec-row {
    background: #fff;
    border: 1px solid var(--line);
    padding: 28px 32px;
    display: grid;
    grid-template-columns: 1.25fr 0.95fr;
    gap: 32px;
    align-items: center;
    box-shadow: 4px 4px 0px rgba(15, 23, 42, 0.05);
    transition: all 0.2s ease;
    width: 100%;
}

.spec-row:hover {
    border-color: var(--ink);
    transform: translate(-3px, -3px);
    box-shadow: 6px 6px 0px rgba(0, 0, 0, 0.1);
}

.spec-num-tag {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-mono);
    font-size: 11.5px;
    font-weight: 700;
    color: var(--ink-faint);
    margin-bottom: 10px;
    letter-spacing: 0.5px;
}

.spec-icon { flex-shrink: 0; }
.spec-icon-blue { color: #38bdf8; }
.spec-icon-amber { color: #fca503; }
.spec-icon-green { color: #10b981; }
.spec-icon-purple { color: #c084fc; }

.spec-col-info h3 {
    font-family: var(--font-heading);
    font-size: 19px;
    font-weight: 700;
    color: var(--ink);
    margin-bottom: 8px;
    letter-spacing: -0.4px;
}

.spec-col-info p {
    font-size: 13.5px;
    color: var(--ink-soft);
    line-height: 1.6;
}

.spec-col-checks {
    display: flex;
    flex-direction: column;
    gap: 10px;
    border-left: 2px solid var(--line);
    padding-left: 28px;
    width: 100%;
}

.spec-check-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    background: var(--paper-alt);
    border: 1px solid var(--line);
    padding: 10px 14px;
    transition: all 0.2s ease;
    width: 100%;
}

.spec-row:hover .spec-check-item {
    background: #fff;
    border-color: var(--ink-faint);
}

.spec-check-mark {
    color: var(--green);
    font-weight: 900;
    font-size: 13px;
    flex-shrink: 0;
    margin-top: 1px;
}

.spec-check-content {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.spec-check-content strong {
    font-family: var(--font-heading);
    font-size: 13.5px;
    font-weight: 700;
    color: var(--ink);
    letter-spacing: -0.2px;
}

.spec-check-content span {
    font-family: var(--font-mono);
    font-size: 10.5px;
    color: var(--ink-faint);
    font-weight: 500;
}

/* Pilot Client Callout Box */
.std-pilot-box {
    background: #0d1218;
    border: 1px solid var(--line-dark);
    padding: 28px 32px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 28px;
    box-shadow: 6px 6px 0px rgba(0, 0, 0, 0.08);
    width: 100%;
}

.std-pilot-content {
    max-width: 680px;
}

.std-pilot-tag {
    font-family: var(--font-mono);
    font-size: 10.5px;
    font-weight: 800;
    color: var(--green);
    display: block;
    margin-bottom: 6px;
    letter-spacing: 0.8px;
}

.std-pilot-content h4 {
    font-family: var(--font-heading);
    font-size: 19px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 6px;
    letter-spacing: -0.3px;
}

.std-pilot-content p {
    font-size: 13.5px;
    color: #94a3b8;
    line-height: 1.5;
}

.std-pilot-content strong {
    color: #fff;
}

/* ==========================================================================
   Guarantee Section
   ========================================================================== */

.guarantee-section {
    background: #090c0f;
    border-top: 2px solid #1c2530;
    border-bottom: 2px solid #1c2530;
    padding: 84px 0;
    width: 100%;
}

.guarantee-box {
    background: transparent;
    border: none;
    padding: 0;
    color: #fff;
    box-shadow: none;
    width: 100%;
}

.g-header {
    margin-bottom: 36px;
}

.g-title {
    font-family: var(--font-heading);
    font-size: clamp(24px, 3.5vw, 34px);
    font-weight: 700;
    letter-spacing: -1px;
    line-height: 1.15;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.g-desc {
    font-size: 14.5px;
    color: #9aa8b8;
    max-width: 600px;
}

.g-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    width: 100%;
}

.g-cell {
    background: #121820;
    border: 1px solid var(--line-dark);
    padding: 28px 24px;
}

.g-cell-highlight {
    border-color: var(--green-dark);
    background: #0f1c19;
}

.g-cell-badge {
    font-family: var(--font-mono);
    font-size: 11px;
    font-weight: 700;
    color: #fff;
    background: var(--green);
    color: var(--paper-dark);
    display: inline-block;
    padding: 3px 8px;
    margin-bottom: 12px;
    letter-spacing: 0.5px;
}

.g-cell-badge-alt {
    background: #374151;
    color: #fff;
}

.g-cell h3 {
    font-family: var(--font-heading);
    font-size: 19px;
    font-weight: 700;
    margin-bottom: 16px;
    color: #fff;
    letter-spacing: -0.3px;
}

.g-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.g-list li {
    font-size: 13.5px;
    color: #c4d0dc;
    line-height: 1.5;
    position: relative;
    padding-left: 18px;
}

.g-list li::before {
    content: '■';
    color: var(--green-light);
    font-size: 7px;
    position: absolute;
    left: 0;
    top: 6px;
}

.g-list strong { color: #fff; }

/* ==========================================================================
   Pricing Section
   ========================================================================== */

.pricing {
    background: #ffffff;
    border-bottom: 2px solid var(--line);
    width: 100%;
}

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

.price-box {
    background: #fff;
    border: 1px solid var(--line);
    padding: 32px 24px;
    display: flex;
    flex-direction: column;
    transition: all 0.2s ease;
    position: relative;
    box-shadow: 4px 4px 0px rgba(15, 23, 42, 0.05);
}

.price-box:hover {
    border-color: var(--ink);
    transform: translate(-3px, -3px);
    box-shadow: 6px 6px 0px rgba(0, 0, 0, 0.1);
}

.price-box-featured {
    border: 2px solid var(--green);
    background: #fff;
}

.price-box-featured:hover {
    border-color: var(--green-dark);
    box-shadow: 6px 6px 0px var(--green-subtle);
}

.p-featured-badge {
    position: absolute;
    top: -12px;
    left: 20px;
    background: var(--green);
    color: var(--paper-dark);
    font-family: var(--font-mono);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.5px;
    padding: 3px 10px;
}

.price-box-header {
    border-bottom: 1px solid var(--line);
    padding-bottom: 20px;
    margin-bottom: 20px;
}

.p-top-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 6px;
}

.p-header-icon {
    color: var(--ink-faint);
    transition: transform 0.2s ease, color 0.2s ease;
}

.price-box:hover .p-header-icon {
    color: var(--ink);
    transform: translateY(-2px);
}

.p-header-icon-hl { color: var(--green-dark); }

.p-tier {
    font-family: var(--font-mono);
    font-size: 11px;
    font-weight: 600;
    color: var(--ink-faint);
    display: block;
}

.price-box-header h3 {
    font-family: var(--font-heading);
    font-size: 19px;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--ink);
}

.p-cost {
    font-family: var(--font-heading);
    font-size: 40px;
    font-weight: 700;
    letter-spacing: -1.5px;
    color: var(--ink);
    line-height: 1;
    margin-bottom: 6px;
}

.p-sub {
    font-family: var(--font-mono);
    font-size: 11.5px;
    color: var(--green-dark);
    font-weight: 600;
}

.price-spec-list {
    margin-bottom: 28px;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.price-spec-list li {
    font-size: 13px;
    color: var(--ink-soft);
    display: flex;
    align-items: flex-start;
    gap: 8px;
    line-height: 1.4;
}

.p-tick {
    color: var(--green-dark);
    font-weight: 800;
    font-size: 12px;
    margin-top: 2px;
    flex-shrink: 0;
}

.price-box-footer {
    padding-top: 12px;
}

.p-guarantee-note {
    font-family: var(--font-mono);
    font-size: 10.5px;
    font-weight: 700;
    color: var(--green-dark);
    text-align: center;
    margin-top: 12px;
    background: var(--green-subtle);
    padding: 6px;
    border: 1px dashed var(--green);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.yellow-icon {
    color: #eab308;
    font-size: 14px;
    flex-shrink: 0;
}

.p-deposit-note {
    font-family: var(--font-mono);
    font-size: 10.5px;
    color: var(--ink-faint);
    text-align: center;
    margin-top: 10px;
}

/* ==========================================================================
   Process Section
   ========================================================================== */

.process {
    background: var(--paper-alt);
    border-bottom: 2px solid var(--line);
    width: 100%;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
    border: none;
    width: 100%;
}

.process-box {
    padding: 30px 22px;
    border: 1px solid var(--line);
    background: #fff;
    transition: all 0.2s ease;
    box-shadow: 4px 4px 0px rgba(15, 23, 42, 0.05);
}

.process-box:hover {
    background: #fff;
    border-color: var(--ink);
    transform: translate(-3px, -3px);
    box-shadow: 6px 6px 0px rgba(0, 0, 0, 0.1);
}

.proc-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 14px;
}

.proc-icon {
    transition: transform 0.25s ease, filter 0.25s ease;
}

.proc-icon-red { color: #ef4444; }
.proc-icon-amber { color: #f59e0b; }
.proc-icon-blue { color: #3b82f6; }
.proc-icon-green { color: #00b87a; }

.process-box:hover .proc-icon {
    transform: scale(1.18) translateY(-2px);
    filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.15));
}

.proc-num {
    font-family: var(--font-mono);
    font-size: 26px;
    font-weight: 700;
    color: var(--green-dark);
    display: block;
}

.process-box h4 {
    font-family: var(--font-heading);
    font-size: 16.5px;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--ink);
}

.process-box p {
    font-size: 13px;
    color: var(--ink-soft);
    line-height: 1.55;
}

/* ==========================================================================
   FAQ Section
   ========================================================================== */

.faq-section {
    background: #ffffff;
    border-bottom: 2px solid var(--line);
    width: 100%;
}

.faq-accordion {
    max-width: 920px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: 100%;
}

.faq-item {
    border: 1px solid var(--line);
    background: #fff;
    transition: all 0.2s ease;
    box-shadow: 2px 2px 0px rgba(15, 23, 42, 0.04);
}

.faq-item:hover {
    border-color: var(--ink-faint);
    transform: translate(-1px, -1px);
    box-shadow: 4px 4px 0px rgba(0, 0, 0, 0.06);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 18px 22px;
    background: none;
    border: none;
    cursor: pointer;
    font-family: var(--font-heading);
    font-size: 15.5px;
    font-weight: 700;
    color: var(--ink);
    text-align: left;
}

.faq-icon {
    font-family: var(--font-mono);
    font-size: 18px;
    font-weight: 700;
    color: var(--green-dark);
    line-height: 1;
    transition: transform 0.2s ease;
    flex-shrink: 0;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
    color: var(--ink);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s cubic-bezier(0.16, 1, 0.3, 1), padding 0.3s ease;
    padding: 0 22px;
}

.faq-item.active .faq-answer {
    padding: 0 22px 18px 22px;
}

.faq-answer p {
    font-size: 14px;
    color: var(--ink-soft);
    line-height: 1.6;
    border-top: 1px solid var(--line);
    padding-top: 12px;
}

/* ==========================================================================
   CTA Banner
   ========================================================================== */

.cta-banner {
    background: var(--paper-dark);
    border-bottom: 1px solid var(--line-dark);
    padding: 72px 0;
    width: 100%;
}

.cta-banner-content {
    text-align: center;
    max-width: 760px;
    margin: 0 auto;
    width: 100%;
}

.cta-code {
    font-family: var(--font-mono);
    font-size: 11.5px;
    font-weight: 600;
    color: var(--green-light);
    display: block;
    margin-bottom: 12px;
}

.cta-title {
    font-family: var(--font-heading);
    font-size: clamp(26px, 3.8vw, 38px);
    font-weight: 700;
    letter-spacing: -1px;
    line-height: 1.15;
    color: #fff;
    margin-bottom: 14px;
    text-transform: uppercase;
}

.cta-sub {
    font-size: 15px;
    color: #9aa8b8;
    margin-bottom: 32px;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
}

/* ==========================================================================
   Contact Section
   ========================================================================== */

.contact {
    background: var(--paper-alt);
    border-bottom: 2px solid var(--line);
    width: 100%;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 48px;
    align-items: start;
    width: 100%;
}

.contact-text {
    font-size: 14.5px;
    color: var(--ink-soft);
    max-width: 440px;
    margin-bottom: 28px;
    line-height: 1.6;
}

.contact-info-boxes {
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: 100%;
}

.c-info-box {
    border: 1px solid var(--line);
    padding: 14px 18px;
    background: #fff;
    box-shadow: 4px 4px 0px rgba(15, 23, 42, 0.04);
    transition: all 0.2s ease;
    width: 100%;
}

.c-info-box:hover {
    border-color: var(--ink);
    transform: translate(-2px, -2px);
    box-shadow: 6px 6px 0px rgba(0, 0, 0, 0.08);
}

.c-box-top {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 4px;
}

.c-box-icon { flex-shrink: 0; }
.c-icon-blue { color: #3b82f6; }
.c-icon-red { color: #ef4444; }
.c-icon-green { color: #00b87a; }

.c-label {
    font-family: var(--font-mono);
    font-size: 11px;
    font-weight: 700;
    color: var(--green-dark);
    display: block;
}

.c-info-box a {
    font-size: 14.5px;
    font-weight: 600;
    color: var(--ink);
}

.c-info-box a:hover { color: var(--green-dark); }

.c-info-box address,
.c-info-box span {
    font-style: normal;
    font-size: 13.5px;
    color: var(--ink);
}

.contact-form {
    background: #fff;
    border: 1px solid var(--line);
    padding: 32px;
    display: flex;
    flex-direction: column;
    gap: 18px;
    box-shadow: 6px 6px 0px rgba(15, 23, 42, 0.06);
    width: 100%;
}

.form-row-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    width: 100%;
}

.field {
    display: flex;
    flex-direction: column;
    gap: 6px;
    width: 100%;
}

.field label {
    font-family: var(--font-mono);
    font-size: 11px;
    font-weight: 700;
    color: var(--ink);
    letter-spacing: 0.3px;
}

.field input,
.field select,
.field textarea {
    font-family: var(--font-body);
    font-size: 14px;
    color: var(--ink);
    background: #fff;
    border: 1px solid var(--line);
    padding: 11px 13px;
    outline: none;
    transition: all 0.15s ease;
    resize: vertical;
    width: 100%;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
    border-color: var(--green-dark);
    box-shadow: 3px 3px 0px var(--green);
}

.form-privacy {
    font-family: var(--font-mono);
    font-size: 10.5px;
    color: var(--ink-faint);
    text-align: center;
}

/* ==========================================================================
   Footer
   ========================================================================== */

.footer {
    background: var(--paper-dark);
    color: #9aa8b8;
    padding: 64px 0 28px;
    width: 100%;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1.5fr;
    gap: 40px;
    margin-bottom: 40px;
    width: 100%;
}

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

.footer-desc {
    font-size: 13px;
    color: #8292a2;
    line-height: 1.6;
    margin-bottom: 16px;
    max-width: 360px;
}

.footer-tag {
    font-family: var(--font-mono);
    font-size: 11px;
    font-weight: 700;
    color: var(--green-light);
    border: 1px solid #1f2730;
    padding: 6px 12px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #11161d;
}

.footer-col h4 {
    color: #fff;
    font-family: var(--font-mono);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 18px;
}

.footer-col ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-col li a {
    font-size: 13px;
    color: #8292a2;
    transition: color 0.15s ease;
}

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

.footer-legal p {
    font-size: 12.5px;
    color: #8292a2;
    margin-bottom: 8px;
    line-height: 1.4;
    display: flex;
    align-items: center;
    gap: 8px;
}

.foot-icon {
    color: var(--green);
    flex-shrink: 0;
}

.footer-legal strong { color: #fff; }

.footer-bottom {
    border-top: 1px solid var(--line-dark);
    padding-top: 20px;
    text-align: center;
    font-family: var(--font-mono);
    font-size: 11.5px;
    color: #556372;
}

/* ==========================================================================
   Animations
   ========================================================================== */

@keyframes fadeUp {
    from { opacity: 0; transform: translateY(16px); }
    to { opacity: 1; transform: translateY(0); }
}

.animate-fade-up {
    animation: fadeUp 0.6s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }
.delay-3 { animation-delay: 0.3s; }
.delay-4 { animation-delay: 0.4s; }

.anim-item {
    opacity: 0;
    transform: translateY(16px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.anim-item.visible {
    opacity: 1;
    transform: translateY(0);
}

.anim-scale {
    opacity: 0;
    transform: scale(0.9);
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.anim-scale.visible {
    opacity: 1;
    transform: scale(1);
}

/* ==========================================================================
   Privacy Policy Modal
   ========================================================================== */

.footer-privacy-link {
    color: #9aa8b8;
    text-decoration: underline;
    transition: color 0.15s ease;
}

.footer-privacy-link:hover { color: var(--green); }

.privacy-modal {
    position: fixed;
    inset: 0;
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px;
}

.privacy-modal[hidden] { display: none; }

.privacy-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(9, 12, 15, 0.85);
    backdrop-filter: blur(8px);
}

.privacy-modal-box {
    position: relative;
    z-index: 2;
    background: #fff;
    border: 2px solid var(--ink);
    max-width: 580px;
    width: 100%;
    padding: 28px;
    box-shadow: 8px 8px 0px rgba(0, 0, 0, 0.3);
    animation: fadeUp 0.25s cubic-bezier(0.16, 1, 0.3, 1) both;
}

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

.privacy-tag {
    font-family: var(--font-mono);
    font-size: 11px;
    font-weight: 700;
    color: var(--green-dark);
}

.privacy-close-btn {
    background: none;
    border: 1px solid var(--line);
    font-size: 18px;
    line-height: 1;
    cursor: pointer;
    padding: 4px 10px;
    color: var(--ink);
    transition: all 0.15s ease;
}

.privacy-close-btn:hover {
    background: var(--ink);
    color: #fff;
}

.privacy-modal-box h3 {
    font-family: var(--font-heading);
    font-size: 19px;
    font-weight: 700;
    color: var(--ink);
    margin-bottom: 16px;
    letter-spacing: -0.4px;
}

.privacy-modal-body {
    display: flex;
    flex-direction: column;
    gap: 12px;
    font-size: 13px;
    color: var(--ink-soft);
    line-height: 1.6;
    margin-bottom: 24px;
    max-height: 50vh;
    overflow-y: auto;
    padding-right: 6px;
}

.privacy-modal-body strong { color: var(--ink); }
.privacy-modal-footer .btn { width: 100%; }

/* ==========================================================================
   Responsive & Mobile Overhaul
   ========================================================================== */

@media (max-width: 1200px) {
    .side-scroll-nav {
        display: none !important;
    }
}

@media (max-width: 1024px) {
    /* Header & Mobile Navigation */
    .header-inner {
        padding: 0 20px;
        height: 60px;
        position: relative;
    }

    .logo {
        font-size: 16px;
    }

    .nav {
        display: none;
    }

    .menu-toggle {
        display: flex;
        margin-left: auto;
    }

    .nav.open {
        display: flex !important;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        position: fixed;
        top: 60px;
        left: 0;
        right: 0;
        width: 100%;
        max-width: 100vw;
        background: #090c0f;
        padding: 16px 20px 24px;
        border-bottom: 2px solid var(--green);
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.7);
        z-index: 1000;
        box-sizing: border-box;
    }

    .nav.open a {
        width: 100%;
        font-size: 14px;
        padding: 12px 0;
        border-bottom: 1px solid #1a232e;
        display: block;
        box-sizing: border-box;
    }

    .nav.open a:hover {
        color: var(--green);
        padding-left: 4px;
    }

    .nav.open a.nav-cta {
        border-bottom: none !important;
        margin-top: 14px;
        text-align: center;
        padding: 12px 18px !important;
        width: 100%;
        display: block;
    }

    /* Trust Grid */
    .trust-grid {
        grid-template-columns: repeat(2, 1fr);
        border-top: 1px solid #1a232e;
        border-left: none;
    }
    
    .trust-item {
        padding: 18px 20px;
        border-right: 1px solid #1a232e;
        border-bottom: 1px solid #1a232e;
    }

    .tech-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .process-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

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

@media (max-width: 768px) {
    /* Section Spacing */
    section {
        padding: 56px 0;
    }

    .section-inner {
        padding: 0 16px;
    }

    .section-head {
        margin-bottom: 28px;
    }

    .section-title {
        font-size: 23px;
        letter-spacing: -0.8px;
    }

    .section-subtitle {
        font-size: 14px;
    }

    /* Hero Section */
    .hero {
        padding: 86px 16px 36px;
    }

    .hero-inner {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .hero-tag {
        margin-bottom: 14px;
        padding: 4px 8px;
    }

    .hero-title {
        font-size: clamp(25px, 7.5vw, 34px);
        letter-spacing: -1px;
        margin-bottom: 14px;
    }

    .hero-sub {
        font-size: 14.5px;
        margin-bottom: 22px;
        line-height: 1.55;
    }

    .hero-actions {
        flex-direction: column;
        width: 100%;
        gap: 10px;
        margin-bottom: 26px;
    }

    .hero-actions .btn {
        width: 100%;
        padding: 13px 18px;
        font-size: 12.5px;
    }

    .hero-stats {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 8px;
        padding-top: 16px;
        text-align: center;
    }

    .hstat {
        justify-content: center;
    }

    .hstat-num {
        font-size: 24px;
    }

    .hstat-plus {
        font-size: 15px;
    }

    .hstat-label {
        font-size: 9px;
        letter-spacing: 0.2px;
    }

    .hero-figure {
        order: -1;
    }

    .hero-person-img {
        max-height: 260px;
        margin: 0 auto;
    }

    /* Trust Bar */
    .trust-bar {
        padding: 16px 0;
    }

    .trust-grid {
        grid-template-columns: 1fr;
        border-left: none;
        border-top: none;
    }

    .trust-item {
        padding: 12px 16px;
        border-right: none;
        border-bottom: 1px solid #1a232e;
        flex-direction: row;
        align-items: flex-start;
        gap: 12px;
    }

    .trust-item:last-child {
        border-bottom: none;
    }

    /* Services Section */
    .services-list {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .service-item {
        padding: 22px 16px;
    }

    .service-item h3 {
        font-size: 17.5px;
    }

    /* Tech Stack */
    .tech-stack {
        padding: 40px 0;
    }

    .tech-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .tech-cell {
        padding: 12px 6px;
    }

    .tech-cell span {
        font-size: 9.5px;
    }

    /* Standards Section */
    .spec-matrix {
        gap: 12px;
    }

    .spec-row {
        grid-template-columns: 1fr;
        gap: 16px;
        padding: 20px 16px;
    }

    .spec-col-info h3 {
        font-size: 17.5px;
    }

    .spec-col-checks {
        border-left: none;
        border-top: 1px dashed var(--line);
        padding-left: 0;
        padding-top: 14px;
        gap: 8px;
    }

    .spec-check-item {
        padding: 8px 10px;
        gap: 8px;
    }

    .spec-check-content strong {
        font-size: 12.5px;
    }

    .spec-check-content span {
        font-size: 10px;
    }

    .std-pilot-box {
        flex-direction: column;
        align-items: flex-start;
        padding: 20px 16px;
        gap: 16px;
    }

    .std-pilot-content h4 {
        font-size: 17.5px;
    }

    .std-pilot-box .btn {
        width: 100%;
        text-align: center;
    }

    /* Guarantee Section */
    .guarantee-section {
        padding: 56px 0;
    }

    .g-title {
        font-size: 22px;
    }

    .g-desc {
        font-size: 13.5px;
        margin-bottom: 24px;
    }

    .g-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .g-cell {
        padding: 20px 16px;
    }

    .g-cell h3 {
        font-size: 17.5px;
    }

    /* Pricing Section */
    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .price-box {
        padding: 26px 16px;
    }

    .price-box-header h3 {
        font-size: 18px;
    }

    .p-cost {
        font-size: 34px;
    }

    .price-spec-list li {
        font-size: 12.5px;
        padding: 6px 0;
    }

    /* Process Section */
    .process-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .process-box {
        padding: 20px 16px;
    }

    .proc-num {
        font-size: 22px;
    }

    /* FAQ Section */
    .faq-question {
        padding: 14px 16px;
        font-size: 14.5px;
        gap: 10px;
    }

    .faq-answer {
        padding: 0 16px;
    }

    .faq-item.active .faq-answer {
        padding: 0 16px 14px 16px;
    }

    .faq-answer p {
        font-size: 13px;
        line-height: 1.5;
    }

    /* CTA Banner */
    .cta-banner {
        padding: 50px 0;
    }

    .cta-title {
        font-size: 22px;
    }

    .cta-sub {
        font-size: 13.5px;
        margin-bottom: 20px;
    }

    .cta-buttons {
        flex-direction: column;
        width: 100%;
        gap: 10px;
    }

    .cta-buttons .btn {
        width: 100%;
    }

    /* Contact Section */
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .c-info-box {
        padding: 12px 14px;
    }

    .contact-form {
        padding: 20px 16px;
        gap: 14px;
    }

    .form-row-2 {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    /* Prevent iOS auto-zoom on form inputs */
    .field input,
    .field select,
    .field textarea {
        font-size: 16px !important;
        padding: 10px 12px;
    }

    /* Footer */
    .footer {
        padding: 40px 0 20px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 24px;
        margin-bottom: 24px;
    }
}

@media (max-width: 360px) {
    .hero-stats {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .tech-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
