:root {
  --navy: #0a1628;
  --navy-2: #1a2847;
  --navy-3: #0f1f3d;
  --ink: #0d1526;
  --amber: #fbbf24;
  --amber-dark: #f59e0b;
  --amber-light: #fde68a;
  --slate: #475569;
  --muted: #64748b;
  --line: #e2e8f0;
  --soft: #f8fafc;
  --cream: #fefdfb;
  --white: #ffffff;
  --danger: #ef4444;
  --success: #10b981;
  --warn: #f59e0b;
  --grad-1: linear-gradient(135deg, #fbbf24 0%, #f97316 100%);
  --grad-2: linear-gradient(135deg, #0a1628 0%, #1a2847 100%);
  --grad-3: linear-gradient(135deg, #0a1628 0%, #f97316 100%);
  --grad-soft: linear-gradient(135deg, rgba(251, 191, 36, 0.1) 0%, rgba(249, 115, 22, 0.08) 100%);
  --shadow-sm: 0 2px 8px rgba(10, 22, 40, 0.06);
  --shadow: 0 12px 32px rgba(10, 22, 40, 0.1);
  --shadow-lg: 0 30px 60px rgba(10, 22, 40, 0.18);
  --shadow-glow: 0 15px 45px rgba(251, 191, 36, 0.35);
  --radius-sm: 8px;
  --radius: 14px;
  --radius-lg: 22px;
  --radius-xl: 28px;
  --font: 'Inter', -apple-system, sans-serif;
  --display: 'Instrument Serif', Georgia, serif;
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 100px; }

body {
  font-family: var(--font);
  color: var(--ink);
  line-height: 1.7;
  background: var(--cream);
  overflow-x: hidden;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; transition: all 0.3s var(--ease); }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
ul { list-style: none; }

.container { max-width: 1280px; margin: 0 auto; padding: 0 24px; }

h1, h2, h3, h4, h5 {
  font-family: var(--font);
  color: var(--ink);
  line-height: 1.15;
  font-weight: 700;
  letter-spacing: -0.02em;
}

/* ===== Background Canvas ===== */
.bg-canvas {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
  overflow: hidden;
}

.beam {
  position: absolute;
  background: linear-gradient(90deg, transparent, rgba(251, 191, 36, 0.08), transparent);
  transform-origin: center;
}

.beam-1 {
  width: 200%;
  height: 1px;
  top: 30%;
  left: -50%;
  transform: rotate(-15deg);
  animation: sweep 30s infinite linear;
}

.beam-2 {
  width: 200%;
  height: 1px;
  top: 60%;
  left: -50%;
  transform: rotate(10deg);
  animation: sweep 40s infinite linear reverse;
}

.beam-3 {
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(251, 191, 36, 0.1) 0%, transparent 60%);
  border-radius: 50%;
  top: -200px;
  right: -200px;
  animation: pulse-bg 20s infinite ease-in-out;
}

.grid-overlay {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(10, 22, 40, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(10, 22, 40, 0.025) 1px, transparent 1px);
  background-size: 60px 60px;
}

@keyframes sweep {
  from { transform: rotate(-15deg) translateX(-100px); }
  to { transform: rotate(-15deg) translateX(100px); }
}

@keyframes pulse-bg {
  0%, 100% { opacity: 0.4; transform: scale(1); }
  50% { opacity: 0.8; transform: scale(1.2); }
}

/* ===== Navigation ===== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 18px 0;
  background: rgba(254, 253, 251, 0.8);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(226, 232, 240, 0.5);
  transition: all 0.3s var(--ease);
}

.nav.scrolled {
  padding: 12px 0;
  background: rgba(254, 253, 251, 0.95);
  box-shadow: var(--shadow);
}

.nav-wrap {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-mark {
  position: relative;
  width: 46px;
  height: 46px;
  background: var(--navy);
  border-radius: 10px;
  display: grid;
  place-items: center;
  color: var(--amber);
  font-size: 1.2rem;
  overflow: hidden;
}

.logo-stripe {
  position: absolute;
  bottom: 6px;
  left: 6px;
  right: 6px;
  height: 3px;
  background: var(--amber);
  border-radius: 2px;
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.logo-text strong {
  font-size: 1.35rem;
  font-weight: 900;
  color: var(--navy);
  letter-spacing: 0.02em;
}

.logo-text span {
  font-size: 0.65rem;
  color: var(--muted);
  letter-spacing: 0.25em;
  text-transform: uppercase;
  font-weight: 500;
  margin-top: 2px;
}

.nav-menu {
  display: flex;
  gap: 32px;
}

.nav-menu a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--slate);
  position: relative;
}

.nav-menu a::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--amber);
  transition: width 0.3s var(--ease);
}

.nav-menu a:hover { color: var(--navy); }
.nav-menu a:hover::after { width: 100%; }

.nav-call {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 16px;
  background: var(--navy);
  color: white;
  border-radius: 100px;
  transition: all 0.3s var(--ease);
}

.nav-call:hover {
  background: var(--amber-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-glow);
}

.nav-call i {
  font-size: 1rem;
  color: var(--amber);
}

.nav-call .call-label {
  display: block;
  font-size: 0.62rem;
  letter-spacing: 0.15em;
  color: rgba(255, 255, 255, 0.6);
  font-weight: 600;
}

.nav-call .call-num {
  display: block;
  font-size: 0.88rem;
  font-weight: 700;
  color: white;
}

.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}

.burger span {
  width: 22px;
  height: 2px;
  background: var(--navy);
  transition: all 0.3s var(--ease);
  border-radius: 2px;
}

/* ===== Buttons ===== */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 28px;
  background: var(--navy);
  color: white;
  border-radius: 100px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.3s var(--ease);
  box-shadow: var(--shadow);
}

.btn-primary:hover {
  background: var(--amber-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-glow);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 28px;
  background: white;
  color: var(--navy);
  border: 1.5px solid var(--line);
  border-radius: 100px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.3s var(--ease);
}

.btn-outline:hover {
  border-color: var(--amber);
  color: var(--amber-dark);
  transform: translateY(-2px);
}

.btn-full { width: 100%; }

/* ===== Hero Cinematic ===== */
.hero-cinematic {
  min-height: 100vh;
  padding: 160px 0 80px;
  position: relative;
  overflow: hidden;
}

.hero-diagonal {
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-2) 100%);
  clip-path: polygon(20% 0, 100% 0, 100% 100%, 0% 100%);
  z-index: -1;
}

.hero-diagonal::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(45deg, transparent, transparent 40px, rgba(251, 191, 36, 0.04) 40px, rgba(251, 191, 36, 0.04) 41px);
}

.hero-wrap {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
}

.hero-tag {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 28px;
}

.tag-bar {
  width: 40px;
  height: 3px;
  background: var(--amber);
  border-radius: 2px;
}

.hero-tag span {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: 0.15em;
}

.hero-cinematic h1 {
  font-size: clamp(2.2rem, 5vw, 4rem);
  margin-bottom: 28px;
  line-height: 1.05;
  letter-spacing: -0.03em;
}

.h-line {
  display: block;
}

.h-small {
  font-size: 0.45em;
  color: var(--slate);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  margin-bottom: 12px;
  font-weight: 600;
}

.h-big {
  font-family: var(--display);
  font-style: italic;
  font-weight: 400;
}

.h-accent {
  font-size: 0.5em;
  color: var(--amber-dark);
  font-weight: 500;
  margin-top: 16px;
  display: block;
}

.hero-desc {
  font-size: 1.08rem;
  color: var(--slate);
  margin-bottom: 36px;
  max-width: 560px;
}

.hero-cta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.hero-badges {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: white;
  border: 1px solid var(--line);
  border-radius: 100px;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--slate);
}

.badge i { color: var(--amber-dark); }

/* Hero Right - Dispatch Card */
.hero-right {
  position: relative;
  height: 500px;
}

.dispatch-card {
  position: relative;
  background: white;
  padding: 24px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-lg);
  z-index: 2;
}

.dispatch-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line);
}

.status-indicator {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--navy);
}

.pulse-dot {
  width: 8px;
  height: 8px;
  background: var(--success);
  border-radius: 50%;
  animation: pulse 1.5s infinite;
}

@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.6); }
  50% { box-shadow: 0 0 0 8px rgba(16, 185, 129, 0); }
}

.dispatch-time {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--amber-dark);
  padding: 4px 10px;
  background: rgba(251, 191, 36, 0.15);
  border-radius: 100px;
}

.dispatch-grid {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.dispatch-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px;
  background: var(--soft);
  border-radius: var(--radius-sm);
  transition: all 0.3s var(--ease);
}

.dispatch-item:hover {
  background: white;
  box-shadow: var(--shadow-sm);
  transform: translateX(4px);
}

.dispatch-item i {
  width: 40px;
  height: 40px;
  background: var(--navy);
  color: var(--amber);
  border-radius: 10px;
  display: grid;
  place-items: center;
  font-size: 1rem;
}

.dispatch-item strong {
  display: block;
  font-size: 0.9rem;
  color: var(--navy);
}

.dispatch-item span {
  font-size: 0.75rem;
  color: var(--muted);
}

.dispatch-footer {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px dashed var(--line);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.78rem;
  color: var(--muted);
  font-weight: 500;
}

.dispatch-footer i { color: var(--success); }

/* Floating Stats */
.floating-stat {
  position: absolute;
  background: white;
  padding: 14px 20px;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
  z-index: 3;
  animation: float-stat 5s infinite ease-in-out;
}

.stat-1 {
  top: -20px;
  right: 20px;
  animation-delay: -1s;
}

.stat-2 {
  bottom: 40px;
  left: -30px;
  animation-delay: -3s;
}

@keyframes float-stat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.floating-stat .stat-icon {
  width: 40px;
  height: 40px;
  background: var(--grad-1);
  color: white;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 0.95rem;
}

.floating-stat strong {
  display: block;
  font-family: var(--display);
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--navy);
  line-height: 1;
}

.floating-stat span {
  font-size: 0.72rem;
  color: var(--muted);
}

/* Stats Bar */
.stats-bar {
  max-width: 1100px;
  margin: 80px auto 0;
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 32px;
  display: flex;
  justify-content: space-around;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  box-shadow: var(--shadow);
}

.stat-col { text-align: center; }

.stat-col h3 {
  font-family: var(--display);
  font-size: 2.6rem;
  font-weight: 400;
  color: var(--navy);
  line-height: 1;
  margin-bottom: 4px;
}

.stat-col p {
  font-size: 0.78rem;
  color: var(--muted);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 600;
}

.divider {
  width: 1px;
  height: 50px;
  background: var(--line);
}

/* ===== Section Common ===== */
section { padding: 120px 0; position: relative; }

.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 64px;
}

.section-tag {
  display: inline-block;
  padding: 6px 16px;
  background: var(--navy);
  color: var(--amber);
  border-radius: 100px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  margin-bottom: 18px;
}

.section-header h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 16px;
  font-family: var(--display);
  font-weight: 400;
  font-style: italic;
}

.section-header p {
  font-size: 1.05rem;
  color: var(--muted);
}

/* ===== Services Vertical ===== */
.services-vertical { background: white; }

.svc-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 1000px;
  margin: 0 auto;
}

.svc-row {
  display: grid;
  grid-template-columns: auto auto 1fr auto;
  gap: 24px;
  align-items: center;
  background: var(--cream);
  padding: 28px 32px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  transition: all 0.4s var(--ease);
  position: relative;
  overflow: hidden;
}

.svc-row::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: var(--accent, var(--amber));
  opacity: 0;
  transition: opacity 0.3s var(--ease);
}

.svc-row:hover {
  transform: translateX(8px);
  background: white;
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.svc-row:hover::before { opacity: 1; }

.svc-num {
  font-family: var(--display);
  font-size: 2.4rem;
  font-weight: 400;
  color: var(--amber-dark);
  font-style: italic;
  width: 60px;
}

.svc-icon-wrap {
  width: 60px;
  height: 60px;
  background: var(--accent, var(--amber));
  border-radius: var(--radius);
  display: grid;
  place-items: center;
  color: white;
  font-size: 1.4rem;
  transition: all 0.4s var(--ease);
  flex-shrink: 0;
}

.svc-row:hover .svc-icon-wrap {
  transform: rotate(-8deg) scale(1.08);
  box-shadow: var(--shadow);
}

.svc-body h3 {
  font-size: 1.3rem;
  margin-bottom: 6px;
}

.svc-body p {
  color: var(--muted);
  font-size: 0.92rem;
  margin-bottom: 12px;
}

.svc-body ul {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.svc-body ul li {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.82rem;
  color: var(--slate);
}

.svc-body ul li i { color: var(--success); font-size: 0.7rem; }

.svc-arrow {
  width: 48px;
  height: 48px;
  background: var(--navy);
  color: white;
  border-radius: 50%;
  display: grid;
  place-items: center;
  transition: all 0.3s var(--ease);
  flex-shrink: 0;
}

.svc-row:hover .svc-arrow {
  background: var(--amber-dark);
  transform: rotate(-45deg);
}

/* ===== Process Section ===== */
.process-section { background: var(--cream); }

.timeline-road {
  position: relative;
  max-width: 1100px;
  margin: 0 auto;
}

.road-line {
  position: absolute;
  top: 50px;
  left: 5%;
  right: 5%;
  height: 4px;
  background: var(--line);
  overflow: hidden;
}

.road-dash {
  width: 100%;
  height: 100%;
  background: repeating-linear-gradient(90deg,
    var(--amber) 0,
    var(--amber) 20px,
    transparent 20px,
    transparent 40px);
  animation: road-move 2s linear infinite;
}

@keyframes road-move {
  from { transform: translateX(0); }
  to { transform: translateX(-40px); }
}

.tl-steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  position: relative;
}

.tl-step {
  position: relative;
  padding-top: 80px;
}

.tl-marker {
  position: absolute;
  top: 30px;
  left: 50%;
  transform: translateX(-50%);
  width: 44px;
  height: 44px;
  background: var(--navy);
  color: var(--amber);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-weight: 800;
  font-size: 1rem;
  z-index: 2;
  border: 4px solid var(--cream);
  transition: all 0.3s var(--ease);
}

.tl-step:hover .tl-marker {
  background: var(--amber-dark);
  color: white;
  transform: translateX(-50%) scale(1.15);
}

.tl-card {
  background: white;
  padding: 24px 18px;
  border-radius: var(--radius);
  text-align: center;
  border: 1px solid var(--line);
  transition: all 0.4s var(--ease);
  min-height: 180px;
}

.tl-step:hover .tl-card {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--amber);
}

.tl-card i {
  width: 48px;
  height: 48px;
  background: var(--grad-soft);
  color: var(--amber-dark);
  border-radius: 50%;
  display: grid;
  place-items: center;
  margin: 0 auto 14px;
  font-size: 1.2rem;
}

.tl-card h4 {
  font-size: 1.05rem;
  margin-bottom: 8px;
  color: var(--navy);
}

.tl-card p {
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.5;
}

/* ===== Portfolio ===== */
.portfolio-section { background: white; }

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 240px;
  gap: 20px;
}

.port-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: pointer;
  transition: all 0.5s var(--ease);
  background: var(--navy);
  display: flex;
  flex-direction: column;
}

.port-lg {
  grid-column: span 2;
  grid-row: span 2;
}

.port-wide {
  grid-column: span 3;
}

.port-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.port-art {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--c1), var(--c2));
  overflow: hidden;
}

.port-lg .port-art, .port-wide .port-art {
  position: relative;
  height: 65%;
}

.port-card:not(.port-lg):not(.port-wide) .port-art {
  position: relative;
  height: 60%;
}

.p-shape {
  position: absolute;
  border-radius: 50%;
}

.ps1 {
  width: 60%;
  height: 60%;
  border: 3px solid rgba(255, 255, 255, 0.4);
  top: 15%;
  left: 15%;
}

.ps2 {
  width: 25%;
  height: 25%;
  background: rgba(255, 255, 255, 0.25);
  bottom: 20%;
  right: 18%;
  border-radius: 10px;
  transform: rotate(15deg);
}

.p-stripe {
  position: absolute;
  width: 50%;
  height: 3px;
  background: rgba(255, 255, 255, 0.6);
  border-radius: 10px;
  bottom: 18%;
  left: 20%;
}

.port-info {
  padding: 20px;
  background: var(--navy);
  color: white;
  position: relative;
  z-index: 1;
  flex: 1;
}

.port-tag {
  display: inline-block;
  padding: 4px 10px;
  background: var(--amber);
  color: var(--navy);
  border-radius: 100px;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.port-info h4 {
  color: white;
  font-size: 1.15rem;
  margin-bottom: 4px;
}

.port-info p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.85rem;
}

/* ===== Article Section ===== */
.article-section { background: var(--cream); }

.article-wrap {
  max-width: 820px;
  margin: 0 auto;
}

.article-header {
  text-align: center;
  margin-bottom: 48px;
  padding-bottom: 32px;
  border-bottom: 2px solid var(--navy);
}

.article-tag {
  display: inline-block;
  padding: 6px 16px;
  background: var(--navy);
  color: var(--amber);
  border-radius: 100px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  margin-bottom: 20px;
}

.article-header h1 {
  font-family: var(--display);
  font-weight: 400;
  font-style: italic;
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 20px;
  line-height: 1.15;
}

.article-meta {
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
  font-size: 0.88rem;
  color: var(--muted);
}

.article-meta span {
  display: flex;
  align-items: center;
  gap: 6px;
}

.article-meta i { color: var(--amber-dark); }

.article-content h2 {
  font-family: var(--display);
  font-weight: 400;
  font-style: italic;
  font-size: 2rem;
  margin: 56px 0 20px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  position: relative;
}

.article-content h2::before {
  content: '';
  position: absolute;
  top: -1px;
  left: 0;
  width: 60px;
  height: 3px;
  background: var(--grad-1);
  border-radius: 10px;
}

.article-content h2:first-of-type { border-top: none; padding-top: 0; }
.article-content h2:first-of-type::before { display: none; }

.article-content h3 {
  font-size: 1.35rem;
  margin: 36px 0 14px;
  color: var(--navy);
}

.article-content p {
  font-size: 1.05rem;
  color: var(--slate);
  margin-bottom: 20px;
  line-height: 1.85;
}

.lead {
  font-size: 1.2rem !important;
  color: var(--ink) !important;
  font-weight: 500;
  font-family: var(--display);
  font-style: italic;
  line-height: 1.6 !important;
}

.article-content a {
  color: var(--amber-dark);
  font-weight: 600;
  border-bottom: 1.5px solid var(--amber);
}

.article-content a:hover {
  color: var(--navy);
  border-color: var(--navy);
}

/* Pull Quote */
.pull-quote {
  position: relative;
  padding: 40px 40px 40px 70px;
  margin: 40px 0;
  background: var(--navy);
  color: white;
  border-radius: var(--radius-lg);
}

.pull-quote i {
  position: absolute;
  top: 24px;
  left: 28px;
  font-size: 2rem;
  color: var(--amber);
}

.pull-quote p {
  color: white !important;
  font-family: var(--display);
  font-style: italic;
  font-size: 1.35rem !important;
  line-height: 1.5 !important;
  margin: 0;
  font-weight: 400;
}

/* Info Box */
.info-box {
  display: flex;
  gap: 16px;
  padding: 22px;
  border-radius: var(--radius);
  margin: 28px 0;
  border-left: 4px solid;
}

.info-box.tip { background: var(--amber-light); border-color: var(--amber-dark); }
.info-box.warn { background: #fef2f2; border-color: var(--danger); }

.box-icon {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  background: white;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 1.1rem;
  box-shadow: var(--shadow-sm);
}

.info-box.tip .box-icon { color: var(--amber-dark); }
.info-box.warn .box-icon { color: var(--danger); }

.info-box h4 {
  font-family: var(--font);
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 6px;
}

.info-box p { margin: 0; font-size: 0.95rem; }

/* Stat Box */
.stat-box {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin: 32px 0;
}

.mini-stat {
  background: var(--navy);
  color: white;
  padding: 24px 18px;
  border-radius: var(--radius);
  text-align: center;
}

.mini-stat strong {
  font-family: var(--display);
  font-size: 2.2rem;
  font-weight: 400;
  display: block;
  line-height: 1;
  margin-bottom: 6px;
  color: var(--amber);
}

.mini-stat span {
  font-size: 0.78rem;
  opacity: 0.85;
  line-height: 1.3;
  display: block;
}

/* Scenario Grid */
.scenario-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin: 32px 0;
}

.scenario-card {
  background: white;
  padding: 24px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  transition: all 0.3s var(--ease);
}

.scenario-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: var(--amber);
}

.scenario-card i {
  width: 48px;
  height: 48px;
  background: var(--grad-soft);
  color: var(--amber-dark);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 1.2rem;
  margin-bottom: 14px;
}

.scenario-card h4 {
  font-family: var(--font);
  font-weight: 700;
  font-size: 1.05rem;
  margin-bottom: 8px;
  color: var(--navy);
}

.scenario-card p { font-size: 0.88rem; margin: 0; }

/* Checklist */
.checklist {
  background: linear-gradient(135deg, #ecfdf5, #d1fae5);
  border: 1px solid #a7f3d0;
  border-radius: var(--radius);
  padding: 28px;
  margin: 32px 0;
}

.checklist h4 {
  font-family: var(--font);
  color: #065f46;
  font-weight: 700;
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.05rem;
}

.checklist ul {
  display: grid;
  gap: 8px;
}

.checklist li {
  padding: 10px 14px 10px 40px;
  background: rgba(255, 255, 255, 0.6);
  border-radius: var(--radius-sm);
  position: relative;
  font-size: 0.92rem;
  color: var(--slate);
}

.checklist li::before {
  content: '\f00c';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--success);
}

/* Comparison Table */
.comparison-table {
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  margin: 36px 0;
}

.comparison-table table {
  width: 100%;
  border-collapse: collapse;
}

.comparison-table th {
  padding: 16px 20px;
  background: var(--navy);
  color: white;
  text-align: left;
  font-weight: 600;
  font-size: 0.9rem;
}

.comparison-table td {
  padding: 14px 20px;
  border-bottom: 1px solid var(--line);
  font-size: 0.92rem;
  color: var(--slate);
}

.comparison-table tr:last-child td { border-bottom: none; }
.comparison-table tbody tr:hover { background: var(--soft); }
.comparison-table td:first-child { color: var(--navy); font-weight: 600; }

/* Cost Bars */
.cost-bars {
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
  margin: 32px 0;
}

.cost-bars h4 {
  font-family: var(--font);
  font-weight: 700;
  margin-bottom: 22px;
  color: var(--navy);
}

.cost-item {
  display: grid;
  grid-template-columns: 160px 1fr 90px;
  gap: 16px;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px dashed var(--line);
}

.cost-item:last-child { border-bottom: none; }

.cost-label { font-weight: 600; font-size: 0.9rem; color: var(--navy); }

.cost-bar-wrap {
  height: 10px;
  background: var(--soft);
  border-radius: 100px;
  overflow: hidden;
}

.cost-bar {
  height: 100%;
  width: var(--w);
  background: var(--grad-1);
  border-radius: 100px;
}

.cost-val { font-weight: 700; color: var(--amber-dark); font-size: 0.9rem; }

/* Feature Box */
.feature-box {
  display: flex;
  gap: 20px;
  padding: 24px;
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  margin: 32px 0;
  align-items: center;
}

.feature-box .feature-icon {
  width: 60px;
  height: 60px;
  background: var(--navy);
  color: var(--amber);
  border-radius: var(--radius);
  display: grid;
  place-items: center;
  font-size: 1.4rem;
  flex-shrink: 0;
}

.feature-box h4 {
  font-family: var(--font);
  font-weight: 700;
  margin-bottom: 6px;
  color: var(--navy);
}

.feature-box p { margin: 0; font-size: 0.95rem; }

/* Pros Cons */
.pros-cons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin: 32px 0;
}

.pc-col {
  padding: 24px;
  border-radius: var(--radius);
}

.pc-col.pros {
  background: #ecfdf5;
  border: 1px solid #a7f3d0;
}

.pc-col.cons {
  background: #fef2f2;
  border: 1px solid #fecaca;
}

.pc-col h5 {
  font-family: var(--font);
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
  font-size: 1rem;
}

.pc-col.pros h5 { color: #065f46; }
.pc-col.cons h5 { color: #991b1b; }

.pc-col ul { display: grid; gap: 6px; }

.pc-col li {
  padding: 8px 0 8px 28px;
  position: relative;
  font-size: 0.92rem;
}

.pc-col.pros li::before {
  content: '\f00c';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  position: absolute;
  left: 0;
  color: var(--success);
}

.pc-col.cons li::before {
  content: '\f00d';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  position: absolute;
  left: 0;
  color: var(--danger);
}

/* ===== Testimonials ===== */
.testimonials-section { background: var(--navy); padding: 120px 0; }

.testimonials-section .section-tag { background: var(--amber); color: var(--navy); }
.testimonials-section .section-header h2 { color: white; }
.testimonials-section .section-header p { color: rgba(255, 255, 255, 0.65); }

.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.testi-card {
  background: white;
  padding: 32px;
  border-radius: var(--radius-lg);
  position: relative;
  transition: all 0.4s var(--ease);
}

.testi-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-glow);
}

.testi-quote {
  position: absolute;
  top: 24px;
  right: 28px;
  width: 40px;
  height: 40px;
  background: var(--grad-1);
  color: white;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 0.95rem;
}

.testi-stars {
  color: var(--amber-dark);
  font-size: 0.9rem;
  margin-bottom: 16px;
  letter-spacing: 2px;
}

.testi-review {
  font-size: 0.98rem;
  color: var(--slate);
  line-height: 1.7;
  margin-bottom: 24px;
  font-style: italic;
}

.testi-person {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}

.testi-initials {
  width: 48px;
  height: 48px;
  background: var(--navy);
  color: var(--amber);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-weight: 700;
  font-size: 0.95rem;
}

.testi-person strong {
  display: block;
  font-size: 0.95rem;
  color: var(--navy);
}

.testi-person span {
  color: var(--muted);
  font-size: 0.82rem;
}

/* ===== FAQ ===== */
.faq-section { background: white; }

.faq-list {
  max-width: 860px;
  margin: 0 auto;
  display: grid;
  gap: 12px;
}

.faq-item {
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all 0.3s var(--ease);
}

.faq-item.active {
  border-color: var(--amber);
  box-shadow: var(--shadow);
  background: white;
}

.faq-q {
  width: 100%;
  padding: 22px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-align: left;
  font-weight: 600;
  font-size: 1rem;
  color: var(--navy);
  gap: 16px;
}

.faq-q i {
  color: var(--amber-dark);
  font-size: 0.9rem;
  transition: transform 0.3s var(--ease);
  flex-shrink: 0;
}

.faq-item.active .faq-q i { transform: rotate(45deg); }

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
}

.faq-item.active .faq-a {
  max-height: 400px;
  padding: 0 24px 22px;
}

.faq-a p {
  color: var(--slate);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* ===== Contact ===== */
.contact-section { background: var(--cream); }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: start;
}

.contact-info {
  background: var(--navy);
  color: white;
  padding: 40px;
  border-radius: var(--radius-lg);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.contact-info::before {
  content: '';
  position: absolute;
  top: -80px;
  right: -80px;
  width: 250px;
  height: 250px;
  background: var(--amber);
  border-radius: 50%;
  opacity: 0.1;
  filter: blur(40px);
}

.contact-info::after {
  content: '';
  position: absolute;
  bottom: -60px;
  left: -60px;
  width: 200px;
  height: 200px;
  background: var(--amber-dark);
  border-radius: 50%;
  opacity: 0.08;
  filter: blur(40px);
}

.contact-info h3 {
  color: white;
  font-size: 1.6rem;
  margin-bottom: 32px;
  position: relative;
  z-index: 1;
}

.info-row {
  display: flex;
  gap: 16px;
  margin-bottom: 24px;
  position: relative;
  z-index: 1;
}

.info-row .info-icon {
  width: 44px;
  height: 44px;
  background: rgba(251, 191, 36, 0.15);
  border: 1px solid rgba(251, 191, 36, 0.3);
  border-radius: var(--radius-sm);
  display: grid;
  place-items: center;
  color: var(--amber);
  font-size: 1.05rem;
  flex-shrink: 0;
}

.info-row strong {
  display: block;
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.55);
  letter-spacing: 0.15em;
  margin-bottom: 4px;
}

.info-row a, .info-row span {
  color: white;
  font-size: 0.95rem;
  line-height: 1.5;
}

.info-row a:hover { color: var(--amber); }

.contact-buttons {
  display: flex;
  gap: 12px;
  margin-top: 32px;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

.contact-buttons .btn-primary {
  background: var(--amber-dark);
}

.contact-buttons .btn-primary:hover {
  background: var(--amber);
  color: var(--navy);
}

.contact-buttons .btn-outline {
  background: transparent;
  color: white;
  border-color: rgba(255, 255, 255, 0.3);
}

.contact-buttons .btn-outline:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: white;
  color: white;
}

.contact-form-wrap {
  background: white;
  padding: 40px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.contact-form h3 {
  font-size: 1.5rem;
  margin-bottom: 28px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.form-field { margin-bottom: 18px; }

.form-field label {
  display: block;
  margin-bottom: 6px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--slate);
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--line);
  border-radius: var(--radius-sm);
  font-family: inherit;
  font-size: 0.95rem;
  background: var(--soft);
  transition: all 0.2s var(--ease);
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--amber);
  background: white;
  box-shadow: 0 0 0 4px rgba(251, 191, 36, 0.15);
}

.form-field textarea { resize: vertical; min-height: 110px; }

/* ===== Footer ===== */
.site-footer {
  background: var(--navy);
  color: #94a3b8;
  padding: 80px 0 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
}

.footer-logo .logo-mark {
  background: var(--amber);
  color: var(--navy);
}

.footer-logo .logo-mark .logo-stripe { background: var(--navy); }

.footer-logo .logo-text strong { color: white; }
.footer-logo .logo-text span { color: #94a3b8; }

.footer-col p {
  font-size: 0.9rem;
  line-height: 1.7;
  margin-bottom: 16px;
}

.footer-col h4 {
  color: white;
  font-family: var(--font);
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 20px;
  letter-spacing: 0.02em;
}

.footer-col ul li { margin-bottom: 10px; }

.footer-col ul li a {
  color: #94a3b8;
  font-size: 0.9rem;
  transition: all 0.2s var(--ease);
}

.footer-col ul li a:hover {
  color: var(--amber);
  padding-left: 4px;
}

.foot-contact li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.88rem;
}

.foot-contact i {
  color: var(--amber);
  margin-top: 4px;
  flex-shrink: 0;
}

.foot-contact a { color: #94a3b8; }
.foot-contact a:hover { color: white; }

.foot-bottom {
  padding-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  text-align: center;
  font-size: 0.85rem;
}

/* ===== Reveal ===== */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* ===== Responsive ===== */
@media (max-width: 1024px) {
  .hero-wrap { grid-template-columns: 1fr; gap: 60px; }
  .hero-right { height: auto; max-width: 500px; margin: 0 auto; }
  .hero-diagonal { display: none; }
  .services-vertical .svc-row { grid-template-columns: auto 1fr auto; }
  .svc-num { display: none; }
  .tl-steps { grid-template-columns: repeat(3, 1fr); gap: 20px; }
  .road-line { display: none; }
  .portfolio-grid { grid-template-columns: repeat(2, 1fr); }
  .port-lg { grid-column: span 2; }
  .port-wide { grid-column: span 2; }
  .testi-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  section { padding: 80px 0; }
  .nav-menu { display: none; }
  .nav-call div { display: none; }
  .burger { display: flex; }
  .nav-menu.active {
    display: flex;
    position: absolute;
    top: calc(100% + 10px);
    left: 0; right: 0;
    background: white;
    flex-direction: column;
    padding: 24px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    gap: 16px;
    margin: 0 16px;
  }
  .hero-cinematic { padding-top: 130px; }
  .hero-cta { flex-direction: column; }
  .hero-cta a { width: 100%; justify-content: center; }
  .stats-bar { flex-direction: column; gap: 20px; }
  .divider { width: 50px; height: 1px; }
  .svc-row { grid-template-columns: 1fr; gap: 16px; }
  .svc-icon-wrap { margin-bottom: 8px; }
  .svc-arrow { justify-self: start; }
  .tl-steps { grid-template-columns: 1fr; }
  .portfolio-grid { grid-template-columns: 1fr; }
  .port-lg, .port-wide { grid-column: span 1; }
  .stat-box { grid-template-columns: 1fr; }
  .scenario-grid { grid-template-columns: 1fr; }
  .pros-cons { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .form-row { grid-template-columns: 1fr; }
  .contact-info, .contact-form-wrap { padding: 28px; }
  .cost-item { grid-template-columns: 1fr; gap: 8px; }
  .comparison-table { overflow-x: auto; }
}

/* Selection */
::selection {
  background: var(--amber);
  color: var(--navy);
}

/* Scrollbar */
::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: var(--cream); }
::-webkit-scrollbar-thumb {
  background: var(--navy);
  border-radius: 10px;
}