/* ================================================================
   SAAMPARK Technology & Research
   Aesthetic: INDUSTRIAL / HEAVY MACHINERY
   Fonts: Barlow Condensed (display) + IBM Plex Mono (body)
   Palette: Forged steel · Hazard amber · Rust iron · Slag white
   ================================================================ */

@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:ital,wght@0,400;0,600;0,700;0,800;0,900;1,700&family=IBM+Plex+Mono:wght@300;400;500;600&display=swap');

/* ── Design Tokens ── */
:root {
    --steel-dark:   #0e1012;
    --steel-mid:    #1a1e23;
    --steel-light:  #252b33;
    --steel-panel:  #2e3540;
    --plate:        #3a424e;
    --rivet:        #4a5568;
    --amber:        #f5a623;
    --amber-hot:    #ff7b00;
    --rust:         #c0392b;
    --slag:         #e8eaed;
    --chalk:        #f0f2f5;
    --weld:         #5dade2;
    --hazard-y:     #f5a623;
    --hazard-b:     #0e1012;
    --font-display: 'Barlow Condensed', sans-serif;
    --font-body:    'IBM Plex Mono', monospace;
    --nav-h:        70px;
    --primary-blue: #1a73e8;
    --accent-green: #34a853;
    --text-dark:    #202124;
}

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

body {
    background: var(--steel-dark);
    color: var(--slag);
    font-family: var(--font-body);
    font-size: 15px;
    line-height: 1.6;
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='4' height='4'%3E%3Crect width='4' height='4' fill='%230e1012'/%3E%3Crect x='0' y='0' width='1' height='1' fill='%23ffffff08'/%3E%3Crect x='2' y='2' width='1' height='1' fill='%23ffffff04'/%3E%3C/svg%3E");
}

a { text-decoration: none; }
img { max-width: 100%; display: block; }

::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--steel-dark); }
::-webkit-scrollbar-thumb { background: var(--amber); border-radius: 0; }

/* ── Industrial utilities ── */
.ind-label {
    font-family: var(--font-display);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--amber);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 14px;
}
.ind-label::before { content: ''; display: block; width: 24px; height: 2px; background: var(--amber); }
.ind-label::after  { content: '//'; opacity: 0.5; letter-spacing: 0; }

/* ================================================================
   NAVBAR
   ================================================================ */
nav, nav#navbar {
    background: var(--steel-mid);
    border-bottom: 3px solid var(--amber);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 60px;
    height: var(--nav-h);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    transition: background 0.3s;
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.07), 0 4px 20px rgba(0,0,0,0.6);
}
nav.scrolled, nav#navbar.scrolled {
    background: rgba(14,16,18,0.97);
    backdrop-filter: blur(10px);
}

/* Rivet decoration */
nav::before {
    content: '● ● ● ●';
    position: absolute; left: 20px; top: 50%; transform: translateY(-50%);
    font-size: 4px; letter-spacing: 6px; color: var(--rivet); pointer-events: none;
}
nav::after {
    content: '● ● ● ●';
    position: absolute; right: 20px; top: 50%; transform: translateY(-50%);
    font-size: 4px; letter-spacing: 6px; color: var(--rivet); pointer-events: none;
}

.logo-container {
    display: flex; align-items: center; gap: 14px; cursor: pointer; z-index: 2;
}

.logo-img {
    height: 44px;
    border-radius: 0;
    border: 2px solid var(--amber);
    padding: 3px;
    background: var(--steel-dark);
    clip-path: polygon(8px 0%, 100% 0%, calc(100% - 8px) 100%, 0% 100%);
}

.brand-name {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 900;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--chalk);
    line-height: 1.1;
}
.brand-name span {
    font-size: 0.62rem !important;
    font-weight: 400 !important;
    color: var(--amber) !important;
    letter-spacing: 0.15em;
    font-family: var(--font-body) !important;
}

.nav-links {
    display: flex; list-style: none; gap: 4px; align-items: center; z-index: 2;
}
.nav-links li a {
    color: var(--slag);
    font-family: var(--font-display);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    cursor: pointer;
    padding: 6px 14px;
    border: 1px solid transparent;
    transition: 0.2s;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}
.nav-links li a:hover {
    color: var(--amber);
    border-color: rgba(245,166,35,0.3);
    background: rgba(245,166,35,0.05);
}
.nav-links li:last-child {
    color: var(--slag); padding: 6px 12px;
    border: 1px solid var(--rivet);
    cursor: pointer; font-size: 0.85rem; transition: 0.2s;
}
.nav-links li:last-child:hover { color: var(--amber); border-color: var(--amber); }

/* ── Mega Menu ── */
.mega-menu {
    position: absolute;
    top: var(--nav-h);
    left: 50%;
    transform: translateX(-50%) translateY(-4px);
    width: 82%; max-width: 960px;
    background: var(--steel-light);
    border: 1px solid var(--plate);
    border-top: 3px solid var(--amber);
    border-radius: 0;
    box-shadow: 0 20px 60px rgba(0,0,0,0.7);
    display: grid; grid-template-columns: 1fr 1fr;
    padding: 36px; gap: 24px;
    visibility: hidden; opacity: 0;
    transition: all 0.35s cubic-bezier(0.165,0.84,0.44,1);
    z-index: 1001;
}
.mega-menu.active {
    visibility: visible; opacity: 1;
    transform: translateX(-50%) translateY(0);
}

.menu-item {
    display: flex; gap: 18px; align-items: flex-start;
    padding: 16px; border: 1px solid transparent; cursor: pointer; transition: 0.2s;
}
.menu-item:hover { background: var(--steel-panel); border-color: var(--plate); }

.icon-box {
    background: rgba(245,166,35,0.1); color: var(--amber);
    width: 46px; height: 46px; flex-shrink: 0;
    display: flex; align-items: center; justify-content: center;
    border-radius: 0; font-size: 1.3rem;
    border: 1px solid rgba(245,166,35,0.25);
    clip-path: polygon(6px 0%, 100% 0%, calc(100% - 6px) 100%, 0% 100%);
}
.menu-item:hover .icon-box { background: var(--amber); color: var(--steel-dark); }

.menu-item h4 {
    font-family: var(--font-display); font-size: 1rem; font-weight: 700;
    letter-spacing: 0.05em; text-transform: uppercase; color: var(--chalk); margin-bottom: 5px;
}
.menu-item p { font-size: 0.78rem; line-height: 1.6; color: #8a9ab0; }

/* ================================================================
   HAMBURGER — 3-DOT VERTICAL BUTTON
   ================================================================ */
.hamburger {
    display: none;          /* shown only on mobile via media query */
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    width: 40px;
    height: 40px;
    cursor: pointer;
    z-index: 1100;
    background: transparent;
    border: 1.5px solid var(--rivet);
    padding: 0;
    flex-shrink: 0;
    transition: border-color 0.2s, background 0.2s;
    position: relative;
}
.hamburger:hover {
    border-color: var(--amber);
    background: rgba(245,166,35,0.08);
}

/* Three visible dots */
.hamburger .dot {
    display: block;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--slag);
    transition: background 0.2s, transform 0.3s;
}
.hamburger:hover .dot { background: var(--amber); }

/* Animate dots → X when open */
.hamburger.open { border-color: var(--amber); }
.hamburger.open .dot:nth-child(1) { transform: translateY(10px) scaleX(3) rotate(0deg); border-radius: 0; width: 5px; height: 2px; }
.hamburger.open .dot:nth-child(2) { opacity: 0; transform: scale(0); }
.hamburger.open .dot:nth-child(3) { transform: translateY(-10px) scaleX(3) rotate(0deg); border-radius: 0; width: 5px; height: 2px; }

/* ================================================================
   MOBILE DRAWER MENU
   ================================================================ */
.mobile-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.65);
    z-index: 1098;
    backdrop-filter: blur(3px);
}
.mobile-overlay.open { display: block; }

.mobile-menu {
    position: fixed;
    top: 0; right: 0;
    width: 80%; max-width: 300px;
    height: 100vh;
    background: var(--steel-mid);
    border-left: 3px solid var(--amber);
    z-index: 1099;
    transform: translateX(100%);
    transition: transform 0.35s cubic-bezier(0.165, 0.84, 0.44, 1);
    display: flex;
    flex-direction: column;
    padding: 80px 0 40px;
    box-shadow: -10px 0 40px rgba(0,0,0,0.6);
    overflow-y: auto;
}
.mobile-menu.open { transform: translateX(0); }

.mobile-menu ul {
    list-style: none;
    padding: 0 28px;
    margin: 0;
    flex: 1;
}
.mobile-menu ul li { border-bottom: 1px solid rgba(255,255,255,0.05); }
.mobile-menu ul li a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px 0;
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--slag);
    text-decoration: none;
    transition: color 0.2s, padding-left 0.2s;
}
.mobile-menu ul li a:hover { color: var(--amber); padding-left: 6px; }
.mobile-menu ul li a i { color: var(--amber); font-size: 0.85rem; width: 18px; text-align: center; }

.mobile-menu-footer {
    padding: 24px 28px 0;
    border-top: 1px solid var(--plate);
    margin-top: 20px;
}
.mobile-menu-footer .btn-main {
    display: block;
    text-align: center;
    width: 100%;
    clip-path: none;
    padding: 13px 20px;
    font-size: 0.82rem;
}

/* ================================================================
   HERO
   ================================================================ */
.hero {
    height: 100vh; min-height: 640px;
    position: relative;
    display: flex; align-items: center;
    padding: var(--nav-h) 100px 0;
    overflow: hidden;
}

.slide {
    position: absolute; inset: 0;
    background-size: cover; background-position: center;
    opacity: 0; transition: opacity 1.6s ease-in-out; z-index: 1;
}
.slide.active { opacity: 1; }

.hero-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(105deg,
        rgba(14,16,18,0.96) 0%,
        rgba(14,16,18,0.75) 50%,
        rgba(14,16,18,0.2) 100%);
    z-index: 2;
}

/* Industrial grid overlay */
.hero::before {
    content: '';
    position: absolute; inset: 0; z-index: 3;
    background-image:
        linear-gradient(rgba(245,166,35,0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(245,166,35,0.04) 1px, transparent 1px);
    background-size: 80px 80px;
    pointer-events: none;
}

/* Amber left-edge accent bar */
.hero::after {
    content: '';
    position: absolute; left: 0; top: 0; bottom: 0; width: 4px;
    background: linear-gradient(to bottom, var(--amber), var(--amber-hot), transparent);
    z-index: 4;
}

.hero-content {
    position: relative; z-index: 10; max-width: 720px;
}
.hero-content h1,
.hero-content p { transition: opacity 0.5s ease, transform 0.5s ease; }
.fade-out { opacity: 0 !important; transform: translateY(12px) !important; }

.hero-eyebrow {
    font-family: var(--font-body); font-size: 0.7rem; font-weight: 500;
    letter-spacing: 0.2em; text-transform: uppercase; color: var(--amber);
    margin-bottom: 18px;
    display: inline-flex; align-items: center; gap: 12px;
    border-left: 3px solid var(--amber); padding-left: 12px;
}

.hero-content h1 {
    font-family: var(--font-display);
    font-size: clamp(3rem, 6vw, 6rem);
    font-weight: 900; line-height: 0.95;
    margin-bottom: 24px; letter-spacing: -0.01em;
    text-transform: uppercase; color: var(--chalk);
}
.hero-content h1 span {
    color: var(--amber);
    text-shadow: 3px 3px 0px rgba(0,0,0,0.5);
}

.hero-content p {
    font-size: 0.9rem; color: #8a9ab0;
    margin-bottom: 36px; line-height: 1.75; max-width: 520px;
    border-left: 1px solid var(--plate); padding-left: 16px;
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.btn-main {
    font-family: var(--font-display);
    font-size: 0.9rem; font-weight: 800;
    letter-spacing: 0.15em; text-transform: uppercase;
    padding: 16px 40px;
    background: var(--amber); color: var(--steel-dark);
    display: inline-block; transition: 0.2s;
    border-radius: 0;
    clip-path: polygon(10px 0%, 100% 0%, calc(100% - 10px) 100%, 0% 100%);
    position: relative;
}
.btn-main::before {
    content: '';
    position: absolute; inset: 2px;
    border: 1px solid rgba(255,255,255,0.2);
    clip-path: polygon(8px 0%, 100% 0%, calc(100% - 8px) 100%, 0% 100%);
}
.btn-main:hover {
    background: var(--amber-hot);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(245,166,35,0.4);
}

/* ================================================================
   ABOUT
   ================================================================ */
.about-section {
    padding: 100px 8%;
    background: var(--steel-mid);
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 70px; align-items: center;
    position: relative; overflow: hidden;
    border-top: 1px solid var(--plate);
    width: 100%; box-sizing: border-box;
}
.about-section::before {
    content: '';
    position: absolute; top: 0; left: 0;
    width: 60px; height: 60px;
    border-top: 2px solid var(--amber); border-left: 2px solid var(--amber);
    pointer-events: none;
}
.about-section::after {
    content: '';
    position: absolute; bottom: 0; right: 0;
    width: 60px; height: 60px;
    border-bottom: 2px solid var(--amber); border-right: 2px solid var(--amber);
    pointer-events: none;
}

.about-image-container {
    position: relative; aspect-ratio: 4/3;
    border: 1px solid var(--plate); overflow: hidden;
    min-height: 280px; width: 100%;
}
.about-image-container::before {
    content: '';
    position: absolute; top: 0; left: 0;
    width: 30px; height: 30px;
    border-top: 3px solid var(--amber); border-left: 3px solid var(--amber);
    z-index: 2; pointer-events: none;
}
.about-image-container::after {
    content: '';
    position: absolute; bottom: 0; right: 0;
    width: 30px; height: 30px;
    border-bottom: 3px solid var(--amber); border-right: 3px solid var(--amber);
    z-index: 2; pointer-events: none;
}

.team-slide {
    position: absolute; inset: 0;
    background-size: cover; background-position: center;
    opacity: 0; transition: opacity 1.4s ease;
}
.team-slide.active { opacity: 1; }

.about-content h2 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 900; line-height: 1.0;
    text-transform: uppercase; letter-spacing: 0.02em;
    color: var(--chalk); margin-bottom: 24px;
}
.about-content h2 span { color: var(--amber); }

.about-content p {
    font-size: 0.85rem; color: #8a9ab0;
    line-height: 1.85; margin-bottom: 16px;
    border-left: 2px solid var(--plate); padding-left: 14px;
}

.about-features { list-style: none; padding: 0; margin-bottom: 30px; }
.about-features li {
    display: flex; align-items: center; gap: 10px;
    font-family: var(--font-display); font-size: 0.9rem;
    font-weight: 600; letter-spacing: 0.05em; text-transform: uppercase;
    color: var(--slag); padding: 8px 0;
    border-bottom: 1px solid rgba(255,255,255,0.04);
}
.about-features i { color: var(--amber); font-size: 0.8rem; }

.sub-heading {
    font-family: var(--font-body); font-size: 0.7rem;
    letter-spacing: 0.2em; text-transform: uppercase;
    color: var(--amber); font-weight: 600;
}

.heading-line {
    width: 50px; height: 3px; background: var(--amber);
    margin-bottom: 22px; position: relative;
}
.heading-line::after {
    content: '';
    position: absolute; left: 56px; top: 0;
    width: 10px; height: 3px; background: var(--amber-hot);
}

.highlight-text {
    font-family: var(--font-display); font-size: 1rem;
    font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em;
    color: var(--chalk); margin-bottom: 12px;
}

.btn-about {
    font-family: var(--font-display); font-size: 0.85rem;
    font-weight: 800; letter-spacing: 0.15em; text-transform: uppercase;
    display: inline-flex; align-items: center; gap: 10px;
    padding: 13px 28px; border: 2px solid var(--amber);
    color: var(--amber); background: transparent; transition: 0.2s;
    clip-path: polygon(8px 0%, 100% 0%, calc(100% - 8px) 100%, 0% 100%);
}
.btn-about:hover {
    background: var(--amber); color: var(--steel-dark);
    box-shadow: 0 0 20px rgba(245,166,35,0.3);
}

.stats-overlay {
    background: var(--steel-panel); border: 1px solid var(--plate);
    border-top: 2px solid var(--amber); padding: 20px 24px;
    display: flex; gap: 24px; margin-top: 10px; flex-wrap: wrap;
}
.stat-item { display: flex; align-items: center; gap: 12px; }
.stat-item i { font-size: 1.6rem; color: var(--amber); }
.stat-item strong {
    display: block; font-family: var(--font-display);
    font-size: 1.2rem; font-weight: 900; color: var(--chalk);
}
.stat-item span {
    font-size: 0.7rem; letter-spacing: 0.08em;
    text-transform: uppercase; color: #8a9ab0;
}

/* ================================================================
   SDLC
   ================================================================ */
.sdlc-container {
    padding: 100px 20px;
    background: var(--steel-dark);
    text-align: center; overflow: hidden; position: relative;
}
.sdlc-container::before {
    content: 'SDLC';
    position: absolute; top: 50%; left: 50%;
    transform: translate(-50%,-50%);
    font-family: var(--font-display); font-size: 22vw; font-weight: 900;
    color: rgba(255,255,255,0.02); pointer-events: none; z-index: 0;
    letter-spacing: -0.05em;
}

.sdlc-container h2 {
    font-family: var(--font-display);
    font-size: clamp(2.2rem, 5vw, 4rem);
    font-weight: 900; text-transform: uppercase; letter-spacing: 0.04em;
    color: var(--chalk); position: relative; z-index: 2;
}
.sdlc-container h2 span { color: var(--amber); }
.sdlc-container p { color: #8a9ab0; font-size: 0.85rem; position: relative; z-index: 2; }

/* sdlc-container .hero-content and section-header scoping */
.sdlc-container .hero-content,
.sdlc-container .section-header,
.services-carousel-container .hero-content,
.services-carousel-container .section-header {
    position: static; color: var(--text, var(--chalk)); max-width: 100%;
}

.sdlc-wrapper {
    display: flex; justify-content: center; align-items: center;
    position: relative; max-width: 1100px;
    margin: 60px auto; min-height: 500px; z-index: 2;
}

.sdlc-focus {
    width: 260px; z-index: 5;
    background: var(--steel-panel);
    border: 2px solid var(--amber); border-radius: 0;
    padding: 36px 20px;
    box-shadow: 0 0 0 8px rgba(245,166,35,0.06), 0 20px 50px rgba(0,0,0,0.6);
    clip-path: polygon(16px 0%, 100% 0%, calc(100% - 16px) 100%, 0% 100%);
    position: relative;
}
.sdlc-focus::before {
    content: '';
    position: absolute; inset: 6px;
    border: 1px solid rgba(245,166,35,0.15);
    clip-path: polygon(12px 0%, 100% 0%, calc(100% - 12px) 100%, 0% 100%);
    pointer-events: none;
}

.sdlc-focus h3 {
    font-family: var(--font-display); font-size: 2rem; font-weight: 900;
    letter-spacing: 0.1em; text-transform: uppercase; color: var(--chalk); margin-bottom: 10px;
}
.sdlc-focus span {
    display: block; background: var(--amber); color: var(--steel-dark);
    padding: 6px 16px; font-family: var(--font-display);
    font-weight: 900; letter-spacing: 0.15em; font-size: 1.1rem; margin: 10px 0;
}

.sdlc-node {
    position: absolute; display: flex; align-items: center;
    gap: 14px; width: 240px; transition: 0.3s ease;
}
.sdlc-node:hover { transform: scale(1.06); }

.node-icon {
    width: 56px; height: 56px; border-radius: 0;
    display: flex; align-items: center; justify-content: center;
    color: var(--steel-dark); font-size: 1.4rem; flex-shrink: 0;
    box-shadow: 4px 4px 0px rgba(0,0,0,0.4);
    clip-path: polygon(6px 0%, 100% 0%, calc(100% - 6px) 100%, 0% 100%);
}

.node-text {
    font-family: var(--font-display); font-weight: 700;
    font-size: 0.9rem; letter-spacing: 0.05em; text-transform: uppercase; color: var(--slag);
}

.n1 { top: 0;      left: 8%;  flex-direction: row-reverse; text-align: right; }
.n2 { top: 30%;    left: 0;   flex-direction: row-reverse; text-align: right; }
.n3 { bottom: 30%; left: 0;   flex-direction: row-reverse; text-align: right; }
.n4 { bottom: 0;   left: 8%;  flex-direction: row-reverse; text-align: right; }
.n5 { top: 0;      right: 8%; }
.n6 { top: 30%;    right: 0;  }
.n7 { bottom: 30%; right: 0;  }
.n8 { bottom: 0;   right: 8%; }

.bg-orange { background: #e67e22; }
.bg-purple { background: #8e44ad; }
.bg-blue   { background: #2980b9; }
.bg-yellow { background: var(--amber); }
.bg-green  { background: #27ae60; }
.bg-pink   { background: #c0392b; }
.bg-cyan   { background: #16a085; }
.bg-teal   { background: #1a6b5a; }

/* ================================================================
   SERVICES CAROUSEL
   ================================================================ */
.services-carousel-container {
    padding: 100px 0;
    background: var(--steel-mid);
    overflow: hidden; text-align: center; position: relative;
    border-top: 1px solid var(--plate); border-bottom: 1px solid var(--plate);
}
.services-carousel-container::before,
.services-carousel-container::after {
    content: '';
    position: absolute; top: 0; bottom: 0; width: 120px;
    z-index: 10; pointer-events: none;
}
.services-carousel-container::before { left: 0; background: linear-gradient(90deg, var(--steel-mid), transparent); }
.services-carousel-container::after  { right: 0; background: linear-gradient(-90deg, var(--steel-mid), transparent); }

.services-carousel-container h2 {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 3.5vw, 3rem);
    font-weight: 900; text-transform: uppercase; letter-spacing: 0.06em; color: var(--chalk);
}
.services-carousel-container h2 span { color: var(--amber); }
.services-carousel-container p { color: #8a9ab0; font-size: 0.82rem; }

.slider-track {
    display: flex; width: max-content;
    animation: scroll 28s linear infinite; padding: 40px 0;
}
.slider-track:hover { animation-play-state: paused; }

@keyframes scroll {
    0%   { transform: translateX(0); }
    100% { transform: translateX(calc(-340px * 5)); }
}

.service-card {
    width: 300px; margin: 0 20px;
    background: var(--steel-dark);
    border: 1px solid var(--plate); border-top: 3px solid transparent;
    padding: 36px 28px; border-radius: 0;
    box-shadow: 4px 4px 0 rgba(0,0,0,0.3);
    transition: all 0.4s ease; flex-shrink: 0;
    display: flex; flex-direction: column; align-items: center;
    cursor: pointer; position: relative;
}
.service-card::before { content: '●'; position: absolute; font-size: 5px; color: var(--rivet); top: 8px; left: 8px; }
.service-card::after  { content: '●'; position: absolute; font-size: 5px; color: var(--rivet); top: 8px; right: 8px; }

.service-card i { font-size: 2.2rem; color: var(--amber); margin-bottom: 20px; transition: 0.3s; }
.service-card h4 {
    font-family: var(--font-display); font-size: 1.1rem; font-weight: 800;
    letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 14px; color: var(--chalk);
}
.service-card p { font-size: 0.8rem; color: #8a9ab0; line-height: 1.7; text-align: center; }

.service-card:hover, .service-card.highlight {
    border-top: 3px solid var(--amber); background: var(--steel-light);
    transform: translateY(-6px);
    box-shadow: 4px 10px 0 rgba(0,0,0,0.5), 0 0 20px rgba(245,166,35,0.1);
    z-index: 10;
}
.service-card:hover i, .service-card.highlight i { color: var(--amber-hot); }
.service-card.highlight h4, .service-card.highlight p { color: var(--chalk); }

/* ================================================================
   TESTIMONIALS
   ================================================================ */
.testimonial-section {
    background: var(--steel-dark); padding: 110px 5%;
    position: relative; overflow: hidden;
}
.testimonial-section::before {
    content: '';
    position: absolute; inset: 0;
    background-image: repeating-linear-gradient(
        45deg, transparent, transparent 28px,
        rgba(255,255,255,0.012) 28px, rgba(255,255,255,0.012) 29px
    );
    pointer-events: none;
}

.testimonial-section .container {
    max-width: 1200px; margin: 0 auto;
    display: grid; grid-template-columns: 1fr 1.6fr;
    gap: 80px; align-items: center; position: relative; z-index: 2;
}

.left .logo {
    background: var(--amber); color: var(--steel-dark);
    width: 56px; height: 56px;
    display: flex; align-items: center; justify-content: center;
    border-radius: 0; font-size: 1.5rem; margin-bottom: 24px;
    clip-path: polygon(6px 0%, 100% 0%, calc(100% - 6px) 100%, 0% 100%);
}

.left h1 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 900; line-height: 1.05;
    text-transform: uppercase; letter-spacing: 0.02em;
    color: var(--chalk); margin-bottom: 28px;
}

.arrow {
    display: inline-flex; align-items: center; justify-content: center;
    width: 48px; height: 48px; border: 2px solid var(--amber);
    color: var(--amber); font-size: 1.3rem; cursor: pointer; transition: 0.2s;
    clip-path: polygon(6px 0%, 100% 0%, calc(100% - 6px) 100%, 0% 100%);
}
.arrow:hover { background: var(--amber); color: var(--steel-dark); }

.right {
    display: grid; grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto; gap: 18px; position: relative;
}

.quote-card {
    grid-column: 1 / -1;
    background: var(--steel-panel);
    border: 1px solid var(--plate); border-left: 3px solid var(--amber);
    border-radius: 0; overflow: hidden;
    display: flex; gap: 0; min-height: 170px;
    transition: 0.3s; box-shadow: 4px 4px 0 rgba(0,0,0,0.3);
}
.quote-card:hover { border-left-color: var(--amber-hot); }

.quote-img { width: 160px; object-fit: cover; flex-shrink: 0; filter: grayscale(30%); }

.quote-content {
    padding: 24px; display: flex; flex-direction: column;
    justify-content: center; gap: 14px;
}
.quote-content p {
    font-size: 0.88rem; color: var(--slag); line-height: 1.7;
    font-style: italic; border-left: 2px solid var(--plate); padding-left: 12px;
}
.quote-content .author { display: flex; align-items: center; gap: 10px; }
.quote-content .author img {
    width: 34px; height: 34px; border-radius: 0;
    object-fit: cover; border: 2px solid var(--amber); background: var(--plate);
}
.quote-content .author strong {
    font-family: var(--font-display); font-weight: 700; font-size: 0.85rem;
    letter-spacing: 0.06em; text-transform: uppercase; color: var(--chalk); display: block;
}
.quote-content .author span { font-size: 0.7rem; color: var(--amber); letter-spacing: 0.1em; }

.review-card {
    background: var(--steel-panel); border: 1px solid var(--plate);
    border-top: 2px solid var(--amber); padding: 24px;
    transition: 0.3s; box-shadow: 4px 4px 0 rgba(0,0,0,0.3);
}
.review-card:hover { border-top-color: var(--amber-hot); }
.review-card h4 {
    font-family: var(--font-display); font-weight: 700; font-size: 0.9rem;
    letter-spacing: 0.08em; text-transform: uppercase; color: var(--chalk); margin-bottom: 8px;
}
.stars { color: var(--amber); margin-bottom: 10px; }
.review-content { display: flex; gap: 12px; align-items: center; }
.review-content p { font-size: 0.8rem; color: #8a9ab0; line-height: 1.65; }
.review-content img {
    width: 60px; height: 60px; object-fit: cover;
    filter: grayscale(50%); border: 1px solid var(--plate); flex-shrink: 0;
}

.tag {
    display: inline-flex; align-items: center;
    margin-top: 12px; padding: 4px 12px;
    background: rgba(245,166,35,0.1); color: var(--amber);
    border: 1px solid rgba(245,166,35,0.3);
    font-size: 0.75rem; font-family: var(--font-display);
    font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
}

.badge {
    display: flex; align-items: center; justify-content: center;
    background: var(--steel-panel); border: 1px solid var(--plate);
    border-top: 2px solid var(--plate); font-size: 1.6rem;
    box-shadow: 4px 4px 0 rgba(0,0,0,0.3);
}

/* ================================================================
   JOURNEY
   ================================================================ */
.journey-section {
    position: relative; background: var(--steel-mid);
    padding: 110px 10%; overflow: hidden; color: white;
    border-top: 1px solid var(--plate);
}
.journey-section::before {
    content: '';
    position: absolute; top: 0; right: 0; width: 300px; height: 100%;
    background: repeating-linear-gradient(
        -45deg,
        rgba(245,166,35,0.02) 0px, rgba(245,166,35,0.02) 1px,
        transparent 1px, transparent 12px
    );
    pointer-events: none;
}

#ballCanvas {
    position: absolute; inset: 0; width: 100%; height: 100%;
    z-index: 1; pointer-events: none; opacity: 0.4;
}

.journey-container {
    position: relative; z-index: 2;
    display: flex; align-items: center;
    justify-content: space-between; gap: 60px;
}

.journey-content { flex: 1; }

.journey-title {
    font-family: var(--font-display);
    font-size: clamp(2.2rem, 4vw, 3.8rem);
    font-weight: 900; text-transform: uppercase; letter-spacing: 0.04em;
    color: var(--amber); margin-bottom: 20px;
    text-shadow: 2px 2px 0 rgba(0,0,0,0.5);
}

.journey-text {
    font-size: 0.88rem; color: #8a9ab0; line-height: 1.9; max-width: 460px;
    border-left: 3px solid var(--plate); padding-left: 18px;
}

.journey-stats {
    flex: 1; display: flex; gap: 20px;
    align-items: center; justify-content: center;
}

.stat-bubble {
    width: 150px; height: 150px; border-radius: 0;
    background: var(--steel-panel); border: 1px solid var(--plate);
    border-top: 3px solid var(--rivet);
    display: flex; flex-direction: column;
    justify-content: center; align-items: center; gap: 6px;
    transition: 0.3s; cursor: default;
    clip-path: polygon(12px 0%, 100% 0%, calc(100% - 12px) 100%, 0% 100%);
    box-shadow: 4px 4px 0 rgba(0,0,0,0.3);
}
.stat-bubble.central {
    margin-top: 48px; border-top-color: var(--amber);
    background: rgba(245,166,35,0.06);
    box-shadow: 4px 4px 0 rgba(0,0,0,0.4), 0 0 30px rgba(245,166,35,0.1);
}
.stat-bubble:hover {
    transform: translateY(-4px); border-top-color: var(--amber);
    box-shadow: 4px 8px 0 rgba(0,0,0,0.5), 0 0 20px rgba(245,166,35,0.15);
}
.stat-number {
    font-family: var(--font-display); font-size: 1.6rem; font-weight: 900;
    color: var(--chalk); display: block; letter-spacing: -0.01em;
}
.stat-label {
    font-size: 0.65rem; text-transform: uppercase;
    letter-spacing: 0.12em; color: var(--amber); font-family: var(--font-body);
}

/* ================================================================
   FOOTER
   ================================================================ */
.main-footer {
    position: relative; background: var(--steel-dark);
    color: var(--slag); padding-top: 0; overflow: hidden;
    border-top: 3px solid var(--amber);
}

#footerCanvas {
    position: absolute; inset: 0; width: 100%; height: 100%;
    z-index: 1; pointer-events: none; opacity: 0.2;
}
.footer-wave { display: none; }

.footer-container {
    position: relative; z-index: 2;
    max-width: 1200px; margin: 0 auto;
    display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
    gap: 50px; padding: 60px 30px;
}

.footer-logo { width: 130px; margin-bottom: 24px; filter: brightness(1.1); }

.footer-col h3 {
    font-family: var(--font-display); font-size: 0.7rem; font-weight: 700;
    letter-spacing: 0.2em; text-transform: uppercase; color: var(--amber);
    margin-bottom: 20px; display: flex; align-items: center; gap: 8px;
}
.footer-col h3::after { content: ''; flex: 1; height: 1px; background: var(--plate); }

.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 12px; }
.footer-col ul li a {
    color: #8a9ab0; font-size: 0.82rem; transition: 0.2s;
    display: flex; align-items: center; gap: 8px;
}
.footer-col ul li a::before { content: '›'; color: var(--amber); font-size: 1rem; line-height: 1; }
.footer-col ul li a:hover { color: var(--amber); padding-left: 4px; }

.contact-item {
    display: flex; gap: 12px; align-items: flex-start;
    margin-bottom: 14px; font-size: 0.82rem; color: #8a9ab0;
}
.contact-item .icon { font-size: 0.95rem; flex-shrink: 0; color: var(--amber); }
.contact-item a { color: #8a9ab0; transition: 0.2s; }
.contact-item a:hover { color: var(--amber); }

.demo-tag {
    font-family: var(--font-body); font-size: 0.65rem;
    letter-spacing: 0.2em; text-transform: uppercase;
    color: var(--rust); font-weight: 600; margin: 0 0 8px;
}
.demo-col h2 {
    font-family: var(--font-display); font-size: 1.9rem; font-weight: 900;
    text-transform: uppercase; letter-spacing: 0.05em; color: var(--chalk); margin-bottom: 20px;
}

.footer-input-group {
    display: flex; background: var(--steel-panel);
    border: 1px solid var(--plate); border-radius: 0;
    padding: 4px; max-width: 280px; gap: 6px;
}
.footer-input-group input {
    border: none; background: transparent; padding: 10px 14px;
    flex: 1; outline: none; color: var(--chalk);
    font-family: var(--font-body); font-size: 0.8rem;
}
.footer-input-group input::placeholder { color: #4a5568; }
.footer-input-group button {
    background: var(--amber); color: var(--steel-dark); border: none;
    width: 40px; height: 40px; border-radius: 0; cursor: pointer;
    font-size: 1rem; font-weight: 700; flex-shrink: 0; transition: 0.2s;
    clip-path: polygon(4px 0%, 100% 0%, calc(100% - 4px) 100%, 0% 100%);
}
.footer-input-group button:hover { background: var(--amber-hot); }

.footer-illustration {
    position: absolute; width: 150px; opacity: 0.4;
    bottom: 16px; right: 16px;
    filter: grayscale(1) brightness(0.6);
}

.footer-bottom {
    position: relative; z-index: 2; border-top: 1px solid var(--plate);
    padding: 20px 30px; display: flex;
    justify-content: space-between; align-items: center;
    font-size: 0.72rem; color: #4a5568;
    max-width: 1200px; margin: 0 auto;
    font-family: var(--font-body); letter-spacing: 0.05em;
}
.bottom-links a {
    color: #4a5568; text-decoration: none; margin-left: 18px;
    transition: 0.2s; text-transform: uppercase; font-size: 0.68rem; letter-spacing: 0.1em;
}
.bottom-links a:hover { color: var(--amber); }

/* ================================================================
   SECTION HEADER UTILITY
   ================================================================ */
.section-header {
    text-align: center; width: 100%;
    max-width: 860px; margin: 0 auto 50px; padding: 0 20px;
    position: relative; z-index: 2;
}
.section-header h2 {
    font-family: var(--font-display); font-weight: 900;
    text-transform: uppercase; letter-spacing: 0.04em;
    color: var(--chalk); line-height: 1.05; margin-bottom: 14px;
}
.section-header h2 span { color: var(--amber); }
.section-header p {
    color: #8a9ab0; font-size: 0.85rem;
    max-width: 680px; margin: 0 auto; line-height: 1.75;
}
.section-header .ind-label { justify-content: center; }

/* ================================================================
   HAMBURGER + MOBILE DRAWER
   ================================================================ */
.hamburger {
    display: none; flex-direction: column;
    justify-content: center; align-items: center; gap: 5px;
    width: 40px; height: 40px; cursor: pointer;
    background: var(--steel-panel); border: 1px solid var(--plate);
    padding: 8px; z-index: 1100; flex-shrink: 0;
}
.hamburger span {
    display: block; width: 20px; height: 2px;
    background: var(--amber); transition: all 0.3s; transform-origin: center;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-nav-overlay {
    display: none; position: fixed; inset: 0;
    background: rgba(0,0,0,0.7); z-index: 1050;
}
.mobile-nav-overlay.active { display: block; }

.mobile-nav-drawer {
    position: fixed; top: 0; right: 0;
    width: min(300px, 85vw); height: 100vh;
    background: var(--steel-mid); border-left: 3px solid var(--amber);
    z-index: 1060; padding: 80px 24px 40px;
    transform: translateX(100%);
    transition: transform 0.35s cubic-bezier(0.4,0,0.2,1);
    display: flex; flex-direction: column; gap: 6px; overflow-y: auto;
}
.mobile-nav-drawer.open { transform: translateX(0); }
.mobile-nav-drawer a {
    display: flex; align-items: center; gap: 12px; padding: 13px 16px;
    color: var(--slag); font-family: var(--font-display);
    font-size: 0.95rem; font-weight: 700; letter-spacing: 0.08em;
    text-transform: uppercase; border: 1px solid transparent; transition: 0.2s;
}
.mobile-nav-drawer a:hover {
    color: var(--amber); border-color: var(--plate); background: var(--steel-panel);
}
.mobile-nav-drawer a i { width: 20px; color: var(--amber); }
.mobile-nav-divider { height: 1px; background: var(--plate); margin: 8px 0; }
.mobile-nav-cta {
    margin-top: auto; background: var(--amber) !important;
    color: var(--steel-dark) !important; border: none !important;
    justify-content: center !important;
    clip-path: polygon(8px 0%, 100% 0%, calc(100% - 8px) 100%, 0% 100%);
}

/* ================================================================
   RESPONSIVE
   ================================================================ */
@media (max-width: 1024px) {
    nav, nav#navbar { padding: 0 30px; }
    .hero { padding: var(--nav-h) 50px 0; }
    .about-section { gap: 48px; padding: 80px 6%; }
    .footer-container { grid-template-columns: 1fr 1fr; gap: 32px; }
}

@media (max-width: 768px) {
    nav, nav#navbar { padding: 0 20px; height: 60px; }
    .nav-links { display: none; }
    .hamburger { display: flex; }
    .mega-menu { display: none !important; }

    .hero { padding: 80px 24px 60px; text-align: center; align-items: center; }
    .hero::after { display: none; }
    .hero-content { max-width: 100%; }
    .hero-eyebrow { justify-content: center; }
    .hero-content h1 { font-size: clamp(2.4rem, 9vw, 3.8rem); }
    .hero-content p { margin: 0 auto 30px; border-left: none; padding-left: 0; }
    .btn-main { clip-path: none; width: 100%; text-align: center; }

    .about-section { grid-template-columns: 1fr; padding: 70px 6%; gap: 40px; }
    .about-section::before, .about-section::after { display: none; }
    .about-image-container { aspect-ratio: 16/9; }
    .about-content { text-align: center; }
    .about-content p { border-left: none; padding-left: 0; }
    .about-features li { justify-content: center; }
    .btn-about { clip-path: none; width: 100%; justify-content: center; }

    .sdlc-container { padding: 70px 16px; }
    .sdlc-wrapper { flex-direction: column; min-height: auto; gap: 12px; align-items: stretch; }
    .sdlc-focus { width: 100%; max-width: 280px; margin: 0 auto 8px; clip-path: none; }
    .sdlc-focus::before { display: none; }
    .sdlc-node {
        position: static !important; width: 100%; max-width: 340px;
        flex-direction: row !important; text-align: left !important;
        margin: 0 auto; transform: none !important;
        background: var(--steel-panel); border: 1px solid var(--plate); padding: 12px 16px;
    }
    .sdlc-node:hover { transform: none; }
    .node-icon { clip-path: none; }

    .services-carousel-container { padding: 70px 0; }
    .service-card { width: 260px; padding: 28px 20px; }

    .testimonial-section { padding: 70px 4%; }
    .testimonial-section .container { grid-template-columns: 1fr; gap: 40px; }
    .left { display: flex; flex-direction: column; align-items: center; text-align: center; }
    .left h1 { font-size: 32px; }
    .right { width: 100%; height: auto; display: flex; flex-direction: column; align-items: center; gap: 20px; }
    .quote-card, .review-card { position: static; width: 100%; max-width: 420px; }
    .quote-card { flex-direction: column; }
    .quote-img { width: 100%; height: 160px; }
    .badge { display: none; }

    .journey-section { padding: 70px 6%; }
    .journey-container { flex-direction: column; text-align: center; gap: 40px; }
    .journey-text { border-left: none; padding-left: 0; margin: 0 auto; }
    .journey-stats { flex-wrap: wrap; justify-content: center; }
    .stat-bubble { clip-path: none; width: 130px; height: 130px; }
    .stat-bubble.central { margin-top: 0; }

    .main-footer { padding-top: 0; }
    .footer-container { grid-template-columns: 1fr 1fr; gap: 28px; padding: 40px 20px 50px; }
    .brand-col { grid-column: 1 / -1; }
    .footer-illustration { display: none; }
    .footer-bottom { flex-direction: column; gap: 10px; text-align: center; padding: 18px 20px; }
    .bottom-links { display: flex; gap: 14px; flex-wrap: wrap; justify-content: center; }
    .bottom-links a { margin-left: 0; }
}

@media (max-width: 480px) {
    nav, nav#navbar { height: 56px; }
    .logo-img { height: 36px; clip-path: none; }
    .brand-name { font-size: 1rem; }

    .hero { padding: 70px 18px 50px; }
    .hero-content h1 { font-size: clamp(2rem, 10vw, 3rem); }
    .hero-content p { font-size: 0.82rem; }

    .about-section { padding: 60px 5%; }
    .about-content h2 { font-size: clamp(1.8rem, 8vw, 2.6rem); }

    .sdlc-container { padding: 60px 12px; }
    .service-card { width: 230px; padding: 24px 16px; }

    .testimonial-section { padding: 60px 4%; }
    .journey-section { padding: 60px 5%; }
    .stat-bubble { width: 110px; height: 110px; }
    .stat-number { font-size: 1.3rem; }

    .footer-container { grid-template-columns: 1fr; padding: 36px 18px 48px; }
    .brand-col { grid-column: auto; }
    .demo-col h2 { font-size: 1.6rem; }
    .footer-input-group { max-width: 100%; }
}

@media (max-width: 360px) {
    nav, nav#navbar { padding: 0 14px; }
    .hero-content h1 { font-size: 1.9rem; }
    .about-section { padding: 50px 4%; }
    .stat-bubble { width: 100px; height: 100px; }
    .stat-number { font-size: 1.1rem; }
    .footer-container { padding: 28px 14px 40px; }
}

/* ================================================================
   PRIVACY POLICY (scoped styles preserved)
   ================================================================ */
.header-eyebrow {
    font-size: 0.68rem; letter-spacing: 0.25em; text-transform: uppercase;
    color: var(--amber); margin-bottom: 16px; font-weight: 600;
}
.header-title {
    font-family: var(--font-display);
    font-size: clamp(2.4rem, 5vw, 4rem);
    font-weight: 900; text-transform: uppercase; line-height: 1.0;
    max-width: 700px; margin-bottom: 20px;
}
.header-sub { font-size: 14px; color: #8a9ab0; max-width: 480px; letter-spacing: 0.01em; }
.header-rule { width: 48px; height: 3px; background: var(--amber); margin: 28px 0 0; }

.nav-bar {
    background: var(--steel-mid); border-bottom: 1px solid var(--plate);
    position: sticky; top: 0; z-index: 100;
    padding: 0 5vw; display: flex; gap: 0; overflow-x: auto;
}
.nav-bar a {
    display: block; padding: 16px 20px;
    font-family: var(--font-display); font-size: 0.7rem;
    font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
    color: #8a9ab0; text-decoration: none; white-space: nowrap;
    border-bottom: 3px solid transparent; transition: 0.2s;
}
.nav-bar a:hover { color: var(--amber); border-bottom-color: var(--amber); }

main { max-width: 860px; margin: 0 auto; padding: 64px 5vw 100px; }

.chapter { margin-bottom: 72px; animation: fadeUp 0.6s ease both; }
.chapter:nth-child(1) { animation-delay: 0.05s; }
.chapter:nth-child(2) { animation-delay: 0.1s; }
.chapter:nth-child(3) { animation-delay: 0.15s; }
.chapter:nth-child(4) { animation-delay: 0.2s; }

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

.chapter-header {
    display: flex; align-items: baseline; gap: 18px;
    margin-bottom: 28px; padding-bottom: 16px;
    border-bottom: 2px solid var(--steel-dark);
}
.chapter-num {
    font-family: var(--font-display); font-size: 3rem; font-weight: 900;
    color: var(--amber); line-height: 1; min-width: 52px;
}
.chapter-title {
    font-family: var(--font-display); font-size: 1.6rem; font-weight: 700;
    text-transform: uppercase; line-height: 1.2;
}

.section-policy { margin-bottom: 36px; }
.section-title {
    font-size: 0.65rem; font-weight: 600; letter-spacing: 0.2em;
    text-transform: uppercase; color: var(--rivet); margin-bottom: 14px;
    display: flex; align-items: center; gap: 10px;
}
.section-title::after { content: ''; flex: 1; height: 1px; background: var(--plate); }

.refund-table { width: 100%; border-collapse: collapse; margin: 16px 0 24px; font-size: 14px; }
.refund-table th {
    background: var(--steel-dark); color: var(--chalk); padding: 12px 16px;
    text-align: left; font-family: var(--font-display); font-weight: 700;
    letter-spacing: 0.08em; text-transform: uppercase; font-size: 0.75rem;
}
.refund-table td { padding: 12px 16px; border-bottom: 1px solid var(--plate); vertical-align: middle; }
.refund-table tr:nth-child(even) td { background: var(--steel-light); }

.badge-green  { background: #d4edda; color: #1a6630; }
.badge-yellow { background: #fff3cd; color: #856404; }
.badge-red    { background: #fde0d8; color: #9c2a10; }

.no-refund-grid {
    display: grid; grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 10px; margin: 14px 0;
}
.no-refund-item {
    background: var(--steel-light); border: 1px solid var(--plate);
    border-left: 3px solid var(--amber); padding: 10px 14px;
    font-size: 13.5px; border-radius: 0; color: var(--slag);
}

.disclaimer-card {
    background: var(--steel-light); border: 1px solid var(--plate);
    border-left: 3px solid var(--amber);
    border-radius: 0; padding: 22px 24px; margin-bottom: 16px;
}
.disclaimer-card h4 {
    font-family: var(--font-display); font-size: 1rem; font-weight: 700;
    text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 10px; color: var(--chalk);
}
.disclaimer-card ul { list-style: none; padding: 0; }
.disclaimer-card ul li {
    font-size: 14px; color: var(--slag); padding: 5px 0 5px 18px; position: relative;
}
.disclaimer-card ul li::before {
    content: '×'; position: absolute; left: 0; color: var(--amber); font-weight: 700;
}

.liability-box {
    background: var(--steel-dark); color: var(--chalk);
    border-left: 3px solid var(--amber);
    border-radius: 0; padding: 24px 26px; margin-top: 16px;
}
.liability-box h4 {
    font-family: var(--font-display); font-size: 1rem; font-weight: 700;
    text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 12px; color: var(--amber);
}
.liability-box ul { list-style: none; padding: 0; }
.liability-box ul li {
    font-size: 13.5px; color: #8a9ab0; padding: 4px 0 4px 18px; position: relative;
}
.liability-box ul li::before { content: '—'; position: absolute; left: 0; color: var(--amber); }
.liability-note {
    margin-top: 14px; font-size: 13px; color: var(--amber); font-weight: 500;
    border-top: 1px solid rgba(255,255,255,0.1); padding-top: 12px;
}

.info-collect-grid {
    display: grid; grid-template-columns: repeat(auto-fill, minmax(155px, 1fr));
    gap: 8px; margin: 14px 0;
}
.info-pill {
    background: var(--steel-light); border: 1px solid var(--plate);
    border-left: 2px solid var(--amber);
    padding: 9px 14px; font-size: 13px; border-radius: 0;
    color: var(--slag); display: flex; align-items: center; gap: 8px;
}
.info-pill::before {
    content: ''; width: 6px; height: 6px;
    background: var(--amber); border-radius: 0; flex-shrink: 0;
}

.use-list { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin: 14px 0; }
.use-item {
    font-size: 14px; color: var(--slag); padding: 8px 14px;
    background: var(--steel-panel); border-radius: 0;
    display: flex; align-items: center; gap: 8px;
    border-left: 2px solid var(--amber);
}
.use-item span { font-size: 16px; }

.protection-grid { display: flex; flex-wrap: wrap; gap: 10px; margin: 14px 0; }
.protection-badge {
    background: var(--steel-panel); color: var(--chalk);
    border: 1.5px solid var(--plate); padding: 8px 16px;
    font-size: 0.72rem; font-weight: 700; border-radius: 0;
    letter-spacing: 0.06em; text-transform: uppercase;
    font-family: var(--font-display);
}

.rights-row { display: flex; flex-wrap: wrap; gap: 10px; margin: 14px 0; }
.right-chip {
    background: var(--amber); color: var(--steel-dark);
    padding: 8px 18px; font-size: 0.72rem; font-weight: 700;
    border-radius: 0; letter-spacing: 0.08em; text-transform: uppercase;
    font-family: var(--font-display);
    clip-path: polygon(6px 0%, 100% 0%, calc(100% - 6px) 100%, 0% 100%);
}

.contact-card {
    background: var(--steel-dark); color: var(--chalk);
    border: 1px solid var(--plate); border-top: 3px solid var(--amber);
    border-radius: 0; padding: 32px 36px; margin-top: 20px;
    display: grid; grid-template-columns: 1fr 1fr; gap: 24px;
}
.contact-card h3 {
    font-family: var(--font-display); font-size: 1.1rem; font-weight: 700;
    text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 18px;
    grid-column: 1 / -1; color: var(--chalk);
    border-bottom: 1px solid var(--plate); padding-bottom: 14px;
}
.contact-card .contact-item label {
    display: block; font-size: 0.65rem; letter-spacing: 0.2em;
    text-transform: uppercase; color: var(--amber); margin-bottom: 5px;
}
.contact-card .contact-item a,
.contact-card .contact-item p { font-size: 14px; color: #8a9ab0; text-decoration: none; }
.contact-card .contact-item a:hover { color: var(--amber); }

footer {
    background: var(--steel-dark); color: #4a5568;
    text-align: center; padding: 30px 5vw;
    font-size: 0.72rem; letter-spacing: 0.05em;
    border-top: 1px solid var(--plate);
}
footer strong { color: #8a9ab0; }

.updated-tag {
    display: inline-block;
    background: rgba(245,166,35,0.1); color: var(--amber);
    font-size: 0.65rem; font-weight: 600; letter-spacing: 0.1em;
    text-transform: uppercase; padding: 4px 12px; border-radius: 0;
    margin-left: 12px; vertical-align: middle;
    border: 1px solid rgba(245,166,35,0.3);
    font-family: var(--font-display);
}

@media (max-width: 600px) {
    .contact-card { grid-template-columns: 1fr; }
    .use-list { grid-template-columns: 1fr; }
    .chapter-num { font-size: 2.2rem; }
}