@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,700;1,400&family=Rubik:wght@300;400;500&display=swap');

/* ============================================
   DESIGN TOKENS
   ============================================ */
:root {
  --bg:          #070d1a;
  --surface:     #0d1b2e;
  --surface-2:   #111d35;
  --border:      #1e3a5f;
  --border-dim:  rgba(30, 58, 95, 0.5);
  --border-blue: rgba(59, 130, 246, 0.25);
  --accent:      #3b82f6;
  --accent-lt:   #60c0ff;
  --accent-glow: rgba(59, 130, 246, 0.28);
  --violet:      #8b5cf6;
  --text:        #f1f5f9;
  --muted:       #94a3b8;
  --muted-2:     #64748b;

  --serif: 'Playfair Display', Georgia, serif;
  --sans:  'Rubik', system-ui, sans-serif;

  --r:    12px;
  --r-lg: 20px;
  --ease: 0.3s ease;
  --nav:  72px;
  --max:  1280px;
}

/* ============================================
   RESET
   ============================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img, video { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; color: inherit; }
ul { list-style: none; }

/* ============================================
   TYPOGRAPHY
   ============================================ */
h1, h2, h3 {
  font-family: var(--serif);
  line-height: 1.12;
  font-weight: 700;
  color: var(--text);
}
h1 { font-size: clamp(2.8rem, 6vw, 5.5rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.3rem, 2vw, 1.75rem); }
p  { color: var(--muted); max-width: 64ch; line-height: 1.75; }

/* ============================================
   LAYOUT UTILITIES
   ============================================ */
.container {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 2rem;
}
section { padding: 6rem 0; }

/* ============================================
   NAV
   ============================================ */
.nav {
  position: fixed;
  inset: 0 0 auto;
  height: var(--nav);
  z-index: 100;
  border-bottom: 1px solid transparent;
  transition: background var(--ease), backdrop-filter var(--ease), border-color var(--ease);
}
.nav.scrolled {
  background: rgba(7, 13, 26, 0.88);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom-color: var(--border-blue);
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 2rem;
}
.nav__logo {
  font-family: var(--serif);
  font-size: 1.45rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--text);
}
.nav__logo span { color: var(--accent); }
.nav__links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}
.nav__links a {
  font-size: 0.875rem;
  color: var(--muted);
  letter-spacing: 0.02em;
  position: relative;
  transition: color var(--ease);
}
.nav__links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--accent);
  transition: width var(--ease);
}
.nav__links a:hover,
.nav__links a.active { color: var(--text); }
.nav__links a:hover::after,
.nav__links a.active::after { width: 100%; }

/* Hamburger */
.nav__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 26px;
  padding: 6px 0;
}
.nav__burger span {
  display: block;
  height: 1.5px;
  background: var(--text);
  transition: var(--ease);
  transform-origin: left center;
}
.nav__burger.open span:nth-child(1) { transform: rotate(45deg) translateY(-1px); }
.nav__burger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav__burger.open span:nth-child(3) { transform: rotate(-45deg) translateY(1px); }

/* Mobile overlay */
.nav__mobile {
  position: fixed;
  inset: 0;
  background: var(--bg);
  z-index: 99;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--ease);
}
.nav__mobile.open { opacity: 1; pointer-events: all; }
.nav__mobile a {
  font-family: var(--serif);
  font-size: 2.75rem;
  font-weight: 700;
  color: var(--muted-2);
  transition: color var(--ease);
}
.nav__mobile a:hover { color: var(--text); }

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 2rem;
  border-radius: var(--r);
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  transition: all var(--ease);
  white-space: nowrap;
}
.btn--primary {
  background: var(--accent);
  color: #fff;
}
.btn--primary:hover {
  background: var(--accent-lt);
  box-shadow: 0 0 28px var(--accent-glow);
  transform: translateY(-2px);
}
.btn--outline {
  border: 1px solid var(--border);
  color: var(--text);
}
.btn--outline:hover {
  border-color: var(--accent);
  color: var(--accent);
  transform: translateY(-2px);
}
.btn--sm { padding: 0.65rem 1.5rem; font-size: 0.8rem; }

/* ============================================
   HERO
   ============================================ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: var(--nav) 2rem 4rem;
  position: relative;
  overflow: hidden;
}
.hero__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 90% 55% at 50% -5%, rgba(59,130,246,0.14) 0%, transparent 65%),
    radial-gradient(ellipse 45% 40% at 85% 85%, rgba(139,92,246,0.09) 0%, transparent 55%),
    var(--bg);
}
.hero__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(59,130,246,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(59,130,246,0.04) 1px, transparent 1px);
  background-size: 64px 64px;
}
.hero__content {
  position: relative;
  z-index: 1;
  max-width: 900px;
}
.hero__label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  padding: 0.4rem 1.1rem;
  border: 1px solid var(--border-blue);
  border-radius: 100px;
  background: rgba(59,130,246,0.07);
  margin-bottom: 1.75rem;
}
.hero__label::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  animation: pulse 2s ease infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.5; transform: scale(1.4); }
}
.hero__title {
  font-size: clamp(3rem, 7vw, 5.75rem);
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.08;
}
.hero__title .blue { color: var(--accent-lt); }
.hero__sub {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--muted);
  max-width: 560px;
  margin: 0 auto 2.75rem;
}
.hero__ctas { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.hero__scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: var(--muted-2);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  z-index: 1;
  animation: scrollBob 2.2s ease-in-out infinite;
}
.hero__scroll::after {
  content: '';
  width: 1px;
  height: 44px;
  background: linear-gradient(to bottom, var(--muted-2), transparent);
}
@keyframes scrollBob {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(7px); }
}

/* ============================================
   SECTION LABELS & HEADERS
   ============================================ */
.sec-label {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1rem;
}
.sec-header { margin-bottom: 3rem; }
.sec-header--center { text-align: center; }
.sec-header--center p { margin: 0.75rem auto 0; }
.sec-header p { margin-top: 0.75rem; }

/* ============================================
   VIDEO SECTION
   ============================================ */
.video-section {
  background: var(--surface);
  border-top: 1px solid var(--border-blue);
  border-bottom: 1px solid var(--border-blue);
}
.video-wrap {
  max-width: 820px;
  margin: 0 auto;
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: 0 0 70px rgba(59,130,246,0.12);
}
.video-placeholder {
  aspect-ratio: 16/9;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  background: var(--surface-2);
  color: var(--muted);
  text-align: center;
  padding: 2rem;
}
.video-placeholder svg { color: var(--border); }
.video-placeholder p { font-size: 0.9rem; max-width: none; }
.video-placeholder strong { display: block; color: var(--muted); font-size: 1rem; font-weight: 500; margin-bottom: 0.25rem; }

/* ============================================
   WHY US
   ============================================ */
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}
.why-features { display: flex; flex-direction: column; gap: 2rem; margin-top: 2.5rem; }
.feat {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
}
.feat__icon {
  width: 44px;
  height: 44px;
  border-radius: var(--r);
  background: rgba(59,130,246,0.09);
  border: 1px solid var(--border-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--accent);
}
.feat__icon svg { width: 20px; height: 20px; }
.feat h4 {
  font-family: var(--sans);
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text);
  margin-bottom: 0.3rem;
}
.feat p { font-size: 0.9rem; max-width: none; }

/* ============================================
   PORTFOLIO PREVIEW (HOMEPAGE)
   ============================================ */
.port-preview-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}
.port-card {
  position: relative;
  border-radius: var(--r);
  overflow: hidden;
  aspect-ratio: 3/4;
  cursor: pointer;
  background: var(--surface);
}
.port-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.55s ease;
}
.port-card::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--r);
  border: 1px solid transparent;
  transition: border-color var(--ease), box-shadow var(--ease);
  pointer-events: none;
}
.port-card:hover img { transform: scale(1.06); }
.port-card:hover::after {
  border-color: var(--accent);
  box-shadow: 0 0 32px var(--accent-glow), inset 0 0 24px rgba(59,130,246,0.05);
}
.port-link-wrap { text-align: center; }

/* ============================================
   PAGE HEADER (inner pages)
   ============================================ */
.page-header {
  padding: calc(var(--nav) + 4.5rem) 0 4rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 65% 80% at 50% 0%, rgba(59,130,246,0.11) 0%, transparent 70%);
}
.page-header .container { position: relative; }
.page-header h1 { margin-bottom: 1rem; }
.page-header > .container > p { margin: 0 auto; font-size: 1.1rem; }

/* ============================================
   FULL PORTFOLIO PAGE
   ============================================ */
.filter-tabs { display: flex; gap: 0.5rem; margin-bottom: 2.5rem; flex-wrap: wrap; }
.ftab {
  padding: 0.5rem 1.35rem;
  border-radius: 100px;
  font-size: 0.82rem;
  color: var(--muted);
  border: 1px solid var(--border);
  background: transparent;
  transition: all var(--ease);
  font-family: var(--sans);
}
.ftab.active, .ftab:hover {
  color: var(--accent);
  border-color: var(--accent);
  background: rgba(59,130,246,0.08);
}
.port-full-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.port-full-card {
  position: relative;
  border-radius: var(--r);
  overflow: hidden;
  aspect-ratio: 3/4;
  cursor: pointer;
  background: var(--surface);
}
.port-full-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.55s ease;
}
.port-full-card::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--r);
  border: 1px solid transparent;
  transition: all var(--ease);
  pointer-events: none;
}
.port-full-card:hover img { transform: scale(1.06); }
.port-full-card:hover::after {
  border-color: var(--accent);
  box-shadow: 0 0 32px var(--accent-glow);
}
.port-tag {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text);
  background: rgba(7,13,26,0.75);
  backdrop-filter: blur(8px);
  padding: 0.3rem 0.75rem;
  border-radius: 100px;
  border: 1px solid var(--border-blue);
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 300;
  background: rgba(0,0,0,0.93);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--ease);
}
.lightbox.open { opacity: 1; pointer-events: all; }
.lightbox img {
  max-width: 92vw;
  max-height: 90vh;
  border-radius: var(--r);
  object-fit: contain;
}
.lb-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--surface);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  transition: all var(--ease);
}
.lb-close:hover { background: var(--accent); border-color: var(--accent); }

/* ============================================
   SERVICES PAGE
   ============================================ */
.svc-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 5rem;
}
.svc-card {
  background: var(--surface);
  border: 1px solid var(--border-blue);
  border-radius: var(--r-lg);
  padding: 2.5rem;
  transition: border-color var(--ease), box-shadow var(--ease);
}
.svc-card:hover {
  border-color: var(--accent);
  box-shadow: 0 0 48px var(--accent-glow);
}
.svc-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--r);
  background: rgba(59,130,246,0.1);
  border: 1px solid var(--border-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  margin-bottom: 1.5rem;
}
.svc-card h3 { font-size: 1.6rem; margin-bottom: 0.85rem; }
.svc-card p { margin-bottom: 1.5rem; font-size: 0.95rem; }
.svc-price {
  display: inline-block;
  font-size: 0.8rem;
  color: var(--accent);
  font-weight: 500;
  padding: 0.4rem 1rem;
  background: rgba(59,130,246,0.09);
  border: 1px solid var(--border-blue);
  border-radius: 100px;
}

/* Pricing table */
.price-table-wrap {
  background: var(--surface);
  border: 1px solid var(--border-blue);
  border-radius: var(--r-lg);
  overflow: hidden;
  margin-top: 2rem;
}
.price-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.95rem;
}
.price-table thead th {
  font-family: var(--sans);
  font-weight: 500;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted-2);
  padding: 1.25rem 1.75rem;
  text-align: left;
  border-bottom: 1px solid var(--border-dim);
}
.price-table tbody td {
  padding: 1.1rem 1.75rem;
  border-bottom: 1px solid var(--border-dim);
  color: var(--muted);
}
.price-table tbody tr:last-child td { border-bottom: none; }
.price-table tbody td:first-child { color: var(--text); font-weight: 500; }
.price-table tbody td:last-child { color: var(--accent); font-weight: 500; }
.price-table tbody tr:hover td { background: var(--surface-2); }

/* Steps */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}
.step { text-align: center; }
.step__num {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(59,130,246,0.09);
  border: 1px solid var(--border-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--serif);
  font-size: 1.3rem;
  color: var(--accent);
  margin: 0 auto 1.25rem;
}
.step h4 { font-family: var(--sans); font-weight: 500; color: var(--text); margin-bottom: 0.5rem; }
.step p { margin: 0 auto; font-size: 0.9rem; }

/* Value prop */
.value-box {
  background: var(--surface);
  border: 1px solid var(--border-blue);
  border-radius: var(--r-lg);
  padding: 3rem;
  margin-top: 5rem;
}
.value-box h3 { font-size: 1.8rem; margin-bottom: 1rem; }
.value-box > p { margin-bottom: 2rem; }
.value-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 2.5rem;
}
.value-item {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  font-size: 0.95rem;
  color: var(--muted);
}
.value-item::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
}

/* CTA Banner */
.cta-banner {
  text-align: center;
  padding: 5.5rem 0;
  background: var(--surface);
  border-top: 1px solid var(--border-blue);
  border-bottom: 1px solid var(--border-blue);
}
.cta-banner h2 { margin-bottom: 1rem; }
.cta-banner p { margin: 0 auto 2.25rem; }

/* ============================================
   INQUIRE PAGE
   ============================================ */
.inquire-grid {
  display: grid;
  grid-template-columns: 1fr 1.55fr;
  gap: 5rem;
  align-items: start;
}
.inquire-info h2 { font-size: clamp(2rem, 4vw, 2.75rem); margin-bottom: 1rem; }
.inquire-info > p { margin-bottom: 2rem; }
.contact-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--muted);
  font-size: 0.92rem;
  margin-bottom: 0.85rem;
}
.contact-row svg { color: var(--accent); flex-shrink: 0; }
.contact-row a { transition: color var(--ease); }
.contact-row a:hover { color: var(--accent); }

/* Form */
.form { display: flex; flex-direction: column; gap: 1.2rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; }
.fgroup { display: flex; flex-direction: column; gap: 0.45rem; }
.fgroup label {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted-2);
}
.fgroup input,
.fgroup select,
.fgroup textarea {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 0.85rem 1rem;
  color: var(--text);
  font-family: var(--sans);
  font-size: 0.92rem;
  width: 100%;
  transition: border-color var(--ease), box-shadow var(--ease);
}
.fgroup input:focus,
.fgroup select:focus,
.fgroup textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-glow);
}
.fgroup select { -webkit-appearance: none; appearance: none; cursor: pointer; }
.fgroup textarea { resize: vertical; min-height: 130px; }
.fgroup input::placeholder,
.fgroup textarea::placeholder { color: var(--muted-2); }
.check-group { display: flex; gap: 1.5rem; flex-wrap: wrap; }
.check-item { display: flex; align-items: center; gap: 0.5rem; cursor: pointer; font-size: 0.88rem; color: var(--muted); }
.check-item input { accent-color: var(--accent); }

/* ============================================
   ABOUT PAGE
   ============================================ */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.about-img {
  position: relative;
}
.about-img img {
  width: 100%;
  border-radius: var(--r-lg);
  border: 1px solid var(--border);
}
.about-img::before {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: calc(var(--r-lg) + 2px);
  background: linear-gradient(135deg, var(--accent), var(--violet));
  opacity: 0.3;
  z-index: -1;
  filter: blur(2px);
}
.about-img::after {
  content: '';
  position: absolute;
  inset: -20px;
  background: radial-gradient(ellipse at center, var(--accent-glow), transparent 70%);
  z-index: -2;
  opacity: 0.6;
}
.about-text h2 { margin-bottom: 1.5rem; }
.about-text p { margin-bottom: 1.25rem; font-size: 0.98rem; }
.about-contacts { margin-top: 2rem; display: flex; flex-direction: column; gap: 0.75rem; }
.social-links { display: flex; gap: 0.75rem; margin-top: 1.75rem; flex-wrap: wrap; }
.social-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 1.2rem;
  border-radius: var(--r);
  border: 1px solid var(--border);
  color: var(--muted);
  font-size: 0.82rem;
  transition: all var(--ease);
}
.social-link:hover { border-color: var(--accent); color: var(--accent); }

/* ============================================
   FOOTER
   ============================================ */
.footer {
  padding: 3.5rem 0 1.5rem;
  border-top: 1px solid var(--border-blue);
}
.footer__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 2.5rem;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.footer__logo {
  font-family: var(--serif);
  font-size: 1.25rem;
  font-weight: 700;
}
.footer__nav { display: flex; gap: 2rem; flex-wrap: wrap; }
.footer__nav a { font-size: 0.85rem; color: var(--muted); transition: color var(--ease); }
.footer__nav a:hover { color: var(--text); }
.footer__social { display: flex; gap: 0.75rem; }
.footer__social a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  transition: all var(--ease);
}
.footer__social a:hover { border-color: var(--accent); color: var(--accent); }
.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-dim);
  gap: 1rem;
  flex-wrap: wrap;
}
.footer__bottom p,
.footer__bottom a { font-size: 0.78rem; color: var(--muted-2); max-width: none; }
.footer__bottom a:hover { color: var(--accent); }

/* ============================================
   ABOUT PAGE — HERO (full-bleed img approach)
   ============================================ */
.about-hero {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
  margin-top: 0; /* sits behind the transparent nav */
}
.about-hero__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 25%;
  display: block;
  transition: transform 8s ease;
}
/* Very slow ambient zoom */
.about-hero:hover .about-hero__img { transform: scale(1.04); }

.about-hero__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to top,  rgba(7,13,26,1) 0%, rgba(7,13,26,0.55) 40%, rgba(7,13,26,0.15) 75%, rgba(7,13,26,0.25) 100%),
    linear-gradient(to right, rgba(7,13,26,0.65) 0%, rgba(7,13,26,0.1) 55%);
}
.about-hero__content {
  position: absolute;
  bottom: 5rem;
  left: 0;
  padding: 0 3rem 0 clamp(2rem, 6vw, 7rem);
  z-index: 2;
  max-width: 720px;
}
.about-hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--accent);
  border: 1px solid var(--border-blue);
  border-radius: 100px;
  padding: 0.4rem 1rem;
  background: rgba(59,130,246,0.08);
  backdrop-filter: blur(8px);
  margin-bottom: 1.5rem;
  display: inline-flex;
}
.about-hero__dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  animation: pulse 2s ease infinite;
}
.about-hero__title {
  font-family: var(--serif);
  font-size: clamp(3rem, 7vw, 6rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.05;
  margin-bottom: 1.25rem;
  text-shadow: 0 4px 60px rgba(0,0,0,0.6);
}
.about-hero__sub {
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  color: rgba(241,245,249,0.7);
  max-width: 420px;
  line-height: 1.65;
}
.about-hero__scroll {
  position: absolute;
  bottom: 2rem;
  right: 2.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: rgba(241,245,249,0.45);
  font-size: 0.68rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  z-index: 2;
  animation: scrollBob 2.4s ease-in-out infinite;
}

/* ============================================
   ABOUT — STATS BAR
   ============================================ */
.about-stats-bar {
  background: var(--surface);
  border-bottom: 1px solid var(--border-blue);
  padding: 2.5rem 0;
}
.about-stats-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}
.about-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
  flex: 1;
  min-width: 120px;
  text-align: center;
}
.about-stat__num {
  font-family: var(--serif);
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
}
.about-stat__label {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--muted-2);
}
.about-stat-divider {
  width: 1px;
  height: 48px;
  background: var(--border-dim);
  flex-shrink: 0;
}

/* ============================================
   ABOUT — PULL QUOTE
   ============================================ */
.about-quote-section {
  padding: 5rem 0 2rem;
}
.about-pullquote {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  max-width: 860px;
  margin: 0 auto;
  text-align: center;
  align-items: center;
}
.about-pullquote__icon {
  color: var(--accent);
  opacity: 0.4;
  width: 36px;
  height: 36px;
}
.about-pullquote blockquote {
  font-family: var(--serif);
  font-size: clamp(1.35rem, 2.8vw, 2rem);
  font-style: italic;
  color: var(--text);
  line-height: 1.55;
  max-width: none;
}

/* ============================================
   ABOUT — BIO SECTION
   ============================================ */
.about-bio-section { padding: 4rem 0 6rem; }

.about-bio-grid {
  display: grid;
  grid-template-columns: 420px 1fr;
  gap: 5rem;
  align-items: start;
}

/* Left column */
.about-bio-image { position: sticky; top: calc(var(--nav) + 2rem); }
.about-bio-img-wrap {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  aspect-ratio: 4/5;
  border: 1px solid var(--border-blue);
}
.about-bio-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
  display: block;
}
.about-bio-img-glow {
  position: absolute;
  inset: -2px;
  border-radius: calc(var(--r-lg) + 2px);
  background: linear-gradient(135deg, rgba(59,130,246,0.25), rgba(139,92,246,0.15));
  pointer-events: none;
  z-index: -1;
  filter: blur(20px);
}

/* Contact card */
.about-contact-card {
  background: var(--surface);
  border: 1px solid var(--border-blue);
  border-radius: var(--r);
  padding: 1.5rem;
  margin-top: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}
.about-contact-row {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  font-size: 0.9rem;
  color: var(--muted);
}
.about-contact-row svg { color: var(--accent); flex-shrink: 0; }
.about-contact-row a { transition: color var(--ease); }
.about-contact-row a:hover { color: var(--accent); }
.about-social-row {
  display: flex;
  gap: 0.6rem;
  margin-top: 0.25rem;
}
.about-social-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.5rem 1rem;
  border: 1px solid var(--border);
  border-radius: var(--r);
  color: var(--muted);
  font-size: 0.8rem;
  transition: all var(--ease);
}
.about-social-btn:hover { border-color: var(--accent); color: var(--accent); }

/* Right column */
.about-bio-text { padding-top: 0.5rem; }
.about-bio-text h2 {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  margin-top: 0.75rem;
  margin-bottom: 1.75rem;
  line-height: 1.15;
}
.about-bio-text p {
  margin-bottom: 1.4rem;
  font-size: 1rem;
  line-height: 1.8;
}
.about-bio-ctas {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 2.5rem;
}

/* ============================================
   ABOUT — APPROACH SECTION
   ============================================ */
.about-approach-section {
  background: var(--surface);
  border-top: 1px solid var(--border-blue);
  border-bottom: 1px solid var(--border-blue);
  padding: 6rem 0;
}
.about-approach-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3.5rem;
}
.about-approach-card {
  background: var(--bg);
  border: 1px solid var(--border-blue);
  border-radius: var(--r-lg);
  padding: 2.25rem;
  transition: border-color var(--ease), box-shadow var(--ease), transform var(--ease);
}
.about-approach-card:hover {
  border-color: var(--accent);
  box-shadow: 0 0 48px var(--accent-glow);
  transform: translateY(-4px);
}
.about-approach-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--r);
  background: rgba(59,130,246,0.1);
  border: 1px solid var(--border-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  margin-bottom: 1.5rem;
}
.about-approach-card h4 {
  font-family: var(--sans);
  font-size: 1rem;
  font-weight: 500;
  color: var(--text);
  margin-bottom: 0.65rem;
}
.about-approach-card p {
  font-size: 0.9rem;
  line-height: 1.7;
  max-width: none;
}

/* Value strip */
.about-value-strip {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-top: 3rem;
  padding: 2rem;
  background: var(--bg);
  border: 1px solid var(--border-blue);
  border-radius: var(--r-lg);
}
.about-value-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.92rem;
  color: var(--muted);
}
.about-value-item svg { color: var(--accent); flex-shrink: 0; }

/* ============================================
   ABOUT RESPONSIVE
   ============================================ */
@media (max-width: 1100px) {
  .about-bio-grid { grid-template-columns: 340px 1fr; gap: 3.5rem; }
}
@media (max-width: 960px) {
  .about-hero { height: 85vh; }
  .about-hero__content { padding: 0 2rem; bottom: 4rem; }
  .about-bio-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .about-bio-image { position: static; }
  .about-bio-img-wrap { aspect-ratio: 16/9; max-height: 420px; }
  .about-approach-grid { grid-template-columns: 1fr; gap: 1rem; }
  .about-stat-divider { display: none; }
  .about-stats-row { justify-content: center; gap: 2rem; }
  .about-value-strip { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .about-hero { height: 100svh; }
  .about-hero__content { padding: 0 1.5rem; bottom: 3rem; }
  .about-hero__title { font-size: clamp(2.5rem, 9vw, 3.5rem); }
  .about-bio-img-wrap { aspect-ratio: 4/3; }
  .about-stats-row { gap: 1.25rem; }
  .about-stat__num { font-size: 1.8rem; }
}

/* ============================================
   SCROLL ANIMATIONS
   ============================================ */
.fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }
.fade-up:nth-child(2) { transition-delay: 0.1s; }
.fade-up:nth-child(3) { transition-delay: 0.2s; }
.fade-up:nth-child(4) { transition-delay: 0.3s; }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 960px) {
  .nav__links { display: none; }
  .nav__burger { display: flex; }

  .why-grid,
  .svc-grid,
  .about-grid,
  .inquire-grid { grid-template-columns: 1fr; gap: 2.5rem; }

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

  .steps-grid { grid-template-columns: 1fr; gap: 1.75rem; }

  .footer__top { flex-direction: column; align-items: flex-start; }
  .footer__bottom { flex-direction: column; align-items: flex-start; }

  .form-row { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  section { padding: 4rem 0; }
  .port-preview-grid,
  .port-full-grid { grid-template-columns: 1fr; }
  .hero__ctas { flex-direction: column; align-items: center; }
  .value-box { padding: 2rem; }
  .footer__top { flex-direction: column; }
}
