@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&family=DM+Sans:wght@300;400;500;600&display=swap');

*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --gold:           #c9a84c;
  --gold-light:     #e8c97a;
  --gold-dim:       rgba(201,168,76,0.15);
  --onyx:           #0a0a0f;
  --charcoal:       #0d0d12;
  --surface:        #16161f;
  --surface-raised: #1e1e2a;
  --border:         rgba(201,168,76,0.18);
  --text-primary:   #f0ede6;
  --text-secondary: #9e9b94;
  --text-muted:     #5a5855;
  --white:          #ffffff;

  --font-display: 'Playfair Display', Georgia, serif;
  --font-body:    'DM Sans', sans-serif;

  --shadow-gold:  0 0 40px rgba(201,168,76,0.08);
  --shadow-card:  0 8px 32px rgba(0,0,0,0.45);
  --shadow-hover: 0 20px 60px rgba(0,0,0,0.6);
  --glow-gold:    0 0 60px rgba(201,168,76,0.12);

  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 40px;

  --transition: 0.38s cubic-bezier(0.4, 0, 0.2, 1);
}

::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--onyx); }
::-webkit-scrollbar-thumb {
  background: var(--gold);
  border-radius: 99px;
}

html { scroll-behavior: smooth; }

body {
  background-color: var(--onyx);
  color: var(--text-primary);
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.7;
  overflow-x: hidden;
  background-image:
    radial-gradient(ellipse 80% 50% at 20% -10%, rgba(201,168,76,0.06) 0%, transparent 60%),
    radial-gradient(ellipse 60% 40% at 80% 110%, rgba(201,168,76,0.04) 0%, transparent 60%);
}

img {
  max-width: 100%;
  height: auto;
  border-radius: var(--radius-md);
  display: block;
}

::selection {
  background: var(--gold);
  color: var(--onyx);
}

/* ══════════════════════════════════════════════════
   HEADER — Full Responsive
══════════════════════════════════════════════════ */
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 60px;
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(10,10,15,0.85);
  backdrop-filter: blur(20px) saturate(1.4);
  border-bottom: 1px solid var(--border);
  transition: var(--transition);
}

header::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 200px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

/* ── Logo ────────────────────────────────────────── */
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-display);
  font-size: 1.6em;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.02em;
  text-decoration: none;
  transition: var(--transition);
  z-index: 1001;
  flex-shrink: 0;
}

.logo img {
  height: 40px;
  width: auto;
  border-radius: 0;
  filter: brightness(1.1);
}

.logo:hover {
  color: var(--gold-light);
  text-shadow: 0 0 20px rgba(201,168,76,0.35);
}

/* ── Desktop nav ─────────────────────────────────── */
nav {
  display: flex;
  gap: 36px;
  align-items: center;
}

nav a {
  text-decoration: none;
  color: var(--text-secondary);
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.88em;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  position: relative;
  transition: var(--transition);
}

nav a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: var(--transition);
  box-shadow: 0 0 8px var(--gold);
}

nav a:hover { color: var(--gold-light); }
nav a:hover::after { width: 100%; }

/* ── Hamburger button ────────────────────────────── */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: transparent;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  cursor: pointer;
  z-index: 1001;
  flex-shrink: 0;
  transition: border-color 0.3s;
  padding: 0;
}

.nav-toggle:hover {
  border-color: var(--gold);
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 1.5px;
  background: var(--gold);
  border-radius: 99px;
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1),
              opacity 0.35s ease,
              width 0.35s ease;
  transform-origin: center;
}

/* Hamburger → X animation */
.nav-toggle.open span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}
.nav-toggle.open span:nth-child(2) {
  opacity: 0;
  width: 0;
}
.nav-toggle.open span:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}

/* ══════════════════════════════════════════════════
   RESPONSIVE BREAKPOINTS
══════════════════════════════════════════════════ */

/* ── Large tablet (max 1024px) ───────────────────── */
@media (max-width: 1024px) {
  header {
    padding: 18px 40px;
  }
  nav { gap: 24px; }
  nav a { font-size: 0.84em; letter-spacing: 0.08em; }
}

/* ── Tablet (max 900px) — show hamburger ─────────── */
@media (max-width: 900px) {
  header {
    padding: 16px 28px;
  }

  .nav-toggle {
    display: flex;
  }

  nav {
    /* Full screen overlay drawer */
    position: fixed;
    inset: 0;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 0;
    background: rgba(10,10,15,0.97);
    backdrop-filter: blur(24px) saturate(1.5);
    z-index: 1000;

    /* Hidden state */
    opacity: 0;
    pointer-events: none;
    transform: translateY(-12px);
    transition: opacity 0.35s ease, transform 0.35s ease;
  }

  nav.open {
    opacity: 1;
    pointer-events: all;
    transform: translateY(0);
  }

  nav a {
    font-size: 1.1em;
    letter-spacing: 0.15em;
    color: var(--text-secondary);
    padding: 18px 40px;
    width: 100%;
    text-align: center;
    border-bottom: 1px solid rgba(201,168,76,0.08);
    opacity: 0;
    transform: translateY(16px);
    transition: color 0.3s, opacity 0.4s ease, transform 0.4s ease;
  }

  nav a:last-child { border-bottom: none; }

  /* Stagger nav links in */
  nav.open a:nth-child(1) { opacity: 1; transform: translateY(0); transition-delay: 0.05s; }
  nav.open a:nth-child(2) { opacity: 1; transform: translateY(0); transition-delay: 0.10s; }
  nav.open a:nth-child(3) { opacity: 1; transform: translateY(0); transition-delay: 0.15s; }
  nav.open a:nth-child(4) { opacity: 1; transform: translateY(0); transition-delay: 0.20s; }
  nav.open a:nth-child(5) { opacity: 1; transform: translateY(0); transition-delay: 0.25s; }
  nav.open a:nth-child(6) { opacity: 1; transform: translateY(0); transition-delay: 0.30s; }

  nav a::after { display: none; }

  nav a:hover {
    color: var(--gold-light);
    background: rgba(201,168,76,0.04);
  }

  /* Gold accent line in mobile menu */
  nav::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 200px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    opacity: 0.3;
  }
}

/* ── Mobile (max 600px) ──────────────────────────── */
@media (max-width: 600px) {
  header {
    padding: 14px 18px;
  }

  .logo {
    font-size: 1.3em;
    gap: 10px;
  }

  .logo img {
    height: 32px;
  }

  nav a {
    font-size: 1em;
    padding: 16px 28px;
    letter-spacing: 0.12em;
  }
}

/* ── Very small (max 380px) ──────────────────────── */
@media (max-width: 380px) {
  header { padding: 12px 14px; }
  .logo  { font-size: 1.15em; gap: 8px; }
  .logo img { height: 28px; }
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(201,168,76,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201,168,76,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 70% at 50% 40%, black 20%, transparent 80%);
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 1px;
  height: 80px;
  background: linear-gradient(180deg, transparent, var(--gold));
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.6em, 6vw, 4.8em);
  font-weight: 700;
  line-height: 1.15;
  color: var(--text-primary);
  letter-spacing: -0.02em;
  margin-bottom: 24px;
  position: relative;
  z-index: 1;
}

.hero h1 em {
  font-style: italic;
  color: var(--gold);
}

.hero p {
  font-size: 1.15em;
  max-width: 640px;
  color: var(--text-secondary);
  margin-bottom: 44px;
  font-weight: 300;
  letter-spacing: 0.01em;
  position: relative;
  z-index: 1;
}

.hero button {
  position: relative;
  z-index: 1;
  background: transparent;
  border: 1px solid var(--gold);
  color: var(--gold);
  padding: 15px 48px;
  border-radius: var(--radius-xl);
  font-family: var(--font-body);
  font-size: 0.9em;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  transition: var(--transition);
  overflow: hidden;
}

.hero button::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: var(--transition);
  z-index: -1;
}

.hero button:hover {
  color: var(--onyx);
  box-shadow: 0 0 30px rgba(201,168,76,0.35);
}

.hero button:hover::before { transform: scaleX(1); }

section {
  padding: 110px 24px;
  max-width: 1200px;
  margin: 0 auto;
}

section h2 {
  text-align: center;
  margin-bottom: 70px;
  font-family: var(--font-display);
  font-size: clamp(2em, 4vw, 3em);
  font-weight: 700;
  color: var(--text-primary);
  letter-spacing: -0.02em;
  position: relative;
}

section h2::after {
  content: '';
  display: block;
  margin: 18px auto 0;
  width: 48px;
  height: 2px;
  background: var(--gold);
  border-radius: 99px;
  box-shadow: 0 0 10px var(--gold);
}

.about {
  display: flex;
  gap: 72px;
  align-items: center;
  flex-wrap: wrap;
}

.about img {
  max-width: 460px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card), 0 0 0 1px var(--border);
  filter: brightness(0.9) contrast(1.05);
  transition: var(--transition);
}

.about img:hover {
  transform: scale(1.02);
  box-shadow: var(--shadow-hover), 0 0 0 1px rgba(201,168,76,0.3);
}

.about .content {
  flex: 1;
  min-width: 280px;
}

.about .content p {
  font-size: 1.05em;
  color: var(--text-secondary);
  font-weight: 300;
  line-height: 1.85;
}

.offerings {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 28px;
}

.card {
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 40px 32px;
  border-radius: var(--radius-md);
  text-align: center;
  box-shadow: var(--shadow-card);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 2px;
  background: var(--gold);
  border-radius: 0 0 4px 4px;
  transition: var(--transition);
  box-shadow: 0 0 10px var(--gold);
}

.card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% -20%, rgba(201,168,76,0.08) 0%, transparent 65%);
  opacity: 0;
  transition: var(--transition);
  pointer-events: none;
}

.card:hover {
  transform: translateY(-10px);
  border-color: rgba(201,168,76,0.4);
  box-shadow: var(--shadow-hover), var(--glow-gold);
}

.card:hover::before { width: 120px; }
.card:hover::after  { opacity: 1; }

.card h3 {
  font-family: var(--font-display);
  font-size: 1.25em;
  color: var(--gold-light);
  margin-bottom: 14px;
  font-weight: 600;
}

.card p {
  color: var(--text-secondary);
  font-weight: 300;
  font-size: 0.97em;
  line-height: 1.75;
}

.jobs {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 24px;
}

.jobs-desc {
  text-align: center;
  margin-bottom: 50px;
  color: var(--text-secondary);
  font-weight: 300;
  font-size: 1.05em;
}

.jobs-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

.job-card {
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 36px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.job-card::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: var(--gold);
  border-radius: 0 2px 2px 0;
  box-shadow: 0 0 12px var(--gold);
  transform: scaleY(0.3);
  transform-origin: top;
  transition: var(--transition);
}

.job-card:hover {
  transform: translateY(-6px);
  border-color: rgba(201,168,76,0.35);
  box-shadow: var(--shadow-hover);
}

.job-card:hover::before { transform: scaleY(1); }

.job-card h3 {
  font-family: var(--font-display);
  color: var(--text-primary);
  margin-bottom: 10px;
  font-size: 1.28rem;
  font-weight: 600;
}

.job-meta {
  color: var(--gold);
  font-weight: 600;
  font-size: 0.88em;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.job-card ul  { padding-left: 18px; margin-bottom: 16px; }
.job-card li  { margin-bottom: 7px; color: var(--text-secondary); font-size: 0.96em; font-weight: 300; }
.job-info     { margin-bottom: 8px; color: var(--text-secondary); font-size: 0.92em; }

.apply-btn {
  display: inline-block;
  margin-top: 18px;
  background: transparent;
  border: 1px solid var(--gold);
  color: var(--gold);
  padding: 11px 26px;
  border-radius: var(--radius-sm);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.86em;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  z-index: 0;
}

.apply-btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: var(--transition);
  z-index: -1;
}

.apply-btn:hover { color: var(--onyx); }
.apply-btn:hover::before { transform: scaleX(1); }

.contact-container {
  display: flex;
  gap: 44px;
  flex-wrap: wrap;
}

.contact form {
  display: flex;
  flex-direction: column;
  flex: 1;
  min-width: 300px;
}

.contact input,
.contact textarea {
  padding: 15px 18px;
  margin-bottom: 18px;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(201,168,76,0.2);
  background: var(--surface-raised);
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 0.97em;
  font-weight: 300;
  transition: var(--transition);
}

.contact input::placeholder,
.contact textarea::placeholder { color: var(--text-muted); }

.contact input:focus,
.contact textarea:focus {
  outline: none;
  border-color: var(--gold);
  background: var(--surface);
  box-shadow: 0 0 0 3px rgba(201,168,76,0.1), var(--shadow-gold);
}

.contact textarea { min-height: 130px; resize: vertical; }

.contact button {
  background: transparent;
  border: 1px solid var(--gold);
  color: var(--gold);
  padding: 15px;
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.9em;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  z-index: 0;
}

.contact button::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gold);
  transform: scaleY(0);
  transform-origin: bottom;
  transition: var(--transition);
  z-index: -1;
}

.contact button:hover { color: var(--onyx); }
.contact button:hover::before { transform: scaleY(1); }

.address-box {
  flex: 1;
  min-width: 300px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 44px;
  box-shadow: var(--shadow-card);
  position: relative;
  overflow: hidden;
}

.address-box::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 120px;
  height: 120px;
  background: radial-gradient(circle at top right, rgba(201,168,76,0.1), transparent 70%);
  pointer-events: none;
}

.address-box h3 {
  font-family: var(--font-display);
  margin-bottom: 18px;
  color: var(--gold-light);
  font-size: 1.3em;
  font-weight: 600;
}

.address-box p {
  color: var(--text-secondary);
  margin-bottom: 12px;
  font-weight: 300;
  font-size: 0.97em;
}

.address-box a {
  color: var(--gold);
  text-decoration: none;
  font-weight: 500;
  transition: var(--transition);
  border-bottom: 1px solid transparent;
}

.address-box a:hover {
  color: var(--gold-light);
  border-bottom-color: var(--gold-light);
}

.modal {
  display: none;
  position: fixed;
  z-index: 2000;
  inset: 0;
  background: rgba(0,0,0,0.75);
  backdrop-filter: blur(8px);
  justify-content: center;
  align-items: center;
}

.modal-content {
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 44px;
  border-radius: var(--radius-md);
  width: 92%;
  max-width: 460px;
  position: relative;
  box-shadow: var(--shadow-hover), var(--glow-gold);
  animation: popup 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes popup {
  from { transform: scale(0.85) translateY(20px); opacity: 0; }
  to   { transform: scale(1)    translateY(0);    opacity: 1; }
}

.close-btn {
  position: absolute;
  right: 18px;
  top: 14px;
  font-size: 22px;
  cursor: pointer;
  color: var(--text-muted);
  transition: var(--transition);
  line-height: 1;
}

.close-btn:hover { color: var(--gold); }

.modal-content form { display: flex; flex-direction: column; }

.modal-content input,
.modal-content textarea {
  padding: 13px 16px;
  margin-bottom: 16px;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(201,168,76,0.2);
  background: var(--surface-raised);
  color: var(--text-primary);
  font-family: var(--font-body);
  font-weight: 300;
  transition: var(--transition);
}

.modal-content input:focus,
.modal-content textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,168,76,0.1);
}

.modal-content textarea { min-height: 90px; resize: vertical; }

.submit-btn {
  background: var(--gold);
  color: var(--onyx);
  border: none;
  padding: 14px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.9em;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: var(--transition);
}

.submit-btn:hover {
  background: var(--gold-light);
  box-shadow: 0 0 25px rgba(201,168,76,0.35);
  transform: translateY(-1px);
}

footer {
  background: var(--charcoal);
  border-top: 1px solid rgba(201,168,76,0.35);
  padding: 64px 50px 0;
  font-family: var(--font-body);
  position: relative;
  margin-top: 80px;
}

footer::before {
  content: '';
  position: absolute;
  top: -1px;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), var(--gold-light), var(--gold), transparent);
  border-radius: 99px;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1.6fr;
  gap: 48px;
  max-width: 1200px;
  margin: 0 auto;
  padding-bottom: 52px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  margin-bottom: 18px;
}

.footer-logo img {
  height: 36px;
  width: auto;
  border-radius: 0;
  filter: brightness(1.1);
}

.footer-logo span {
  font-family: var(--font-display);
  font-size: 1.35em;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.04em;
}

.footer-tagline {
  font-size: 1em;
  color: rgba(255,255,255,0.38);
  line-height: 1.8;
  max-width: 280px;
  font-weight: 300;
}

.footer-heading {
  font-size: 0.88em;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 22px;
  position: relative;
  padding-bottom: 10px;
}

.footer-heading::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 28px;
  height: 1.5px;
  background: linear-gradient(90deg, var(--gold), transparent);
  border-radius: 99px;
}

.footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links ul li {
  margin-bottom: 13px;
}

.footer-links ul li a {
  font-size: 1em;
  color: var(--text-secondary);
  text-decoration: none;
  font-weight: 400;
  transition: color 0.3s, padding-left 0.3s;
  position: relative;
  display: inline-block;
}

.footer-links ul li a::before {
  content: '›';
  position: absolute;
  left: -14px;
  opacity: 0;
  color: var(--gold);
  transition: opacity 0.3s, left 0.3s;
}

.footer-links ul li a:hover {
  color: var(--gold);
  padding-left: 14px;
}

.footer-links ul li a:hover::before {
  opacity: 1;
  left: 0;
}

.footer-contact p {
  font-size: 1em;
  color: var(--text-secondary);
  line-height: 1.85;
  margin-bottom: 14px;
  font-weight: 300;
}

.footer-contact a {
  color: var(--text-secondary);
  text-decoration: none;
  transition: color 0.3s;
  word-break: break-word;
}

.footer-contact a:hover {
  color: var(--gold);
}

.footer-bottom {
  border-top: 1px solid rgba(201,168,76,0.12);
  max-width: 1200px;
  margin: 0 auto;
  padding: 22px 0;
}

.footer-bottom p {
  font-size: 0.92em;
  color: var(--text-muted);
  font-weight: 300;
  letter-spacing: 0.04em;
  text-align: left;
  margin: 0;
}

@media (max-width: 900px) {
  footer {
    padding: 52px 28px 0;
  }

  .footer-inner {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 768px) {
  footer {
    padding: 44px 24px 0;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-tagline {
    max-width: 100%;
  }

  .footer-bottom p {
    text-align: center;
  }
}

@media (max-width: 600px) {
  footer {
    padding: 40px 18px 0;
  }

  .footer-logo span {
    font-size: 1.2em;
  }

  .footer-tagline {
    font-size: 0.95em;
  }

  .footer-links ul li a,
  .footer-contact p {
    font-size: 0.95em;
  }

  .footer-bottom p {
    font-size: 0.85em;
    text-align: center;
  }
}

/* ── Hero Canvas Layers ─────────────────────── */
.hero {
  position: relative;
  overflow: hidden;
}

.hero canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

#particleCanvas { z-index: 0; }
#waveCanvas     { z-index: 1; }

.hero h1,
.hero p,
.hero button {
  position: relative;
  z-index: 2;
}

/* ══════════════════════════════════════════════════
   AMS PROCESS — Enhanced v2
══════════════════════════════════════════════════ */
.ams-process {
  padding: 120px 60px 140px;
  max-width: 1300px;
  margin: 0 auto;
  position: relative;
  z-index: 5;
  overflow: visible;
}

/* Subtle section background glow */
.ams-process::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80%;
  height: 60%;
  background: radial-gradient(ellipse at center, rgba(201,168,76,0.04) 0%, transparent 70%);
  pointer-events: none;
}

.ams-process__header {
  text-align: center;
  margin-bottom: 100px;
}

.ams-process__header h2 {
  font-family: var(--font-display);
  font-size: clamp(2.2em, 4.5vw, 3.4em);
  font-weight: 700;
  color: var(--text-primary);
  letter-spacing: -0.02em;
  margin-bottom: 20px;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.ams-process__header h2.visible {
  opacity: 1;
  transform: translateY(0);
}

.ams-process__header h2 em {
  font-style: italic;
  color: var(--gold);
  position: relative;
}

/* Underline shimmer on the italic word */
.ams-process__header h2 em::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light), var(--gold));
  transition: width 1.2s ease 0.6s;
}

.ams-process__header h2.visible em::after {
  width: 100%;
}

.ams-process__header h2::after {
  content: '';
  display: block;
  margin: 20px auto 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), var(--gold-light), var(--gold), transparent);
  border-radius: 99px;
  box-shadow: 0 0 12px var(--gold);
  transition: width 1s ease 0.4s;
}

.ams-process__header h2.visible::after {
  width: 80px;
}

.ams-process__header p {
  font-size: 1.08em;
  color: var(--text-secondary);
  max-width: 540px;
  margin: 0 auto;
  font-weight: 300;
  line-height: 1.85;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.8s ease 0.3s, transform 0.8s ease 0.3s;
}

.ams-process__header p.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── Track ───────────────────────────────────────── */
.ams-process__track {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

/* ── The line — sits at circle center ───────────── */
.ams-process__line {
  position: absolute;
  top: calc(140px + 36px); /* content min-height + half node */
  left: 0;
  right: 0;
  height: 1px;
  z-index: 0;
}

/* Dim track underneath */
.ams-process__line::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(201,168,76,0.12);
  border-radius: 99px;
}

/* Animated gold fill */
.ams-process__line-fill {
  position: absolute;
  top: 0; left: 0;
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--gold), var(--gold-light), var(--gold));
  background-size: 200% 100%;
  border-radius: 99px;
  transition: width 2s cubic-bezier(0.4, 0, 0.2, 1) 0.3s;
  box-shadow: 0 0 8px rgba(201,168,76,0.6), 0 0 20px rgba(201,168,76,0.3);
  animation: line-shimmer 3s linear infinite;
}

.ams-process__line-fill.animate {
  width: 100%;
}

@keyframes line-shimmer {
  0%   { background-position: 0% 0%; }
  100% { background-position: 200% 0%; }
}

/* Moving dot that travels along the line */
.ams-process__line-dot {
  position: absolute;
  top: 50%;
  left: 0%;
  transform: translate(-50%, -50%);
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold-light);
  box-shadow: 0 0 10px var(--gold), 0 0 20px rgba(201,168,76,0.5);
  opacity: 0;
  transition: left 2s cubic-bezier(0.4, 0, 0.2, 1) 0.3s, opacity 0.3s ease 0.3s;
}

.ams-process__line-dot.animate {
  left: 100%;
  opacity: 1;
}

/* ── Each Step ───────────────────────────────────── */
.ams-process__step {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1;
  position: relative;
  z-index: 1;
  cursor: pointer;
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.ams-process__step.visible {
  opacity: 1;
  transform: translateY(0);
}

.ams-process__step[data-step="1"] { transition-delay: 0.15s; }
.ams-process__step[data-step="2"] { transition-delay: 0.30s; }
.ams-process__step[data-step="3"] { transition-delay: 0.45s; }
.ams-process__step[data-step="4"] { transition-delay: 0.60s; }
.ams-process__step[data-step="5"] { transition-delay: 0.75s; }
.ams-process__step[data-step="6"] { transition-delay: 0.90s; }

/* ── Content above node ──────────────────────────── */
.ams-process__content {
  text-align: center;
  padding: 0 10px;
  margin-bottom: 22px;
  height: 140px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  transition: var(--transition);
  overflow: hidden;
}

.ams-process__content h3 {
  font-family: var(--font-display);
  font-size: 0.93em;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 9px;
  letter-spacing: 0.01em;
  transition: color 0.35s;
}

.ams-process__content p {
  font-size: 0.75em;
  color: var(--text-secondary);
  font-weight: 300;
  line-height: 1.65;
  max-width: 118px;
  margin: 0 auto;
  transition: color 0.35s;
}

/* Hover / active → brighten text */
.ams-process__step:hover .ams-process__content h3,
.ams-process__step.active .ams-process__content h3 {
  color: var(--gold);
}

.ams-process__step:hover .ams-process__content p,
.ams-process__step.active .ams-process__content p {
  color: var(--text-secondary);
}

/* ── Node ────────────────────────────────────────── */
.ams-process__node {
  position: relative;
  width: 76px;
  height: 76px;
  flex-shrink: 0;
}

/* Outer pulse ring */
.ams-process__ring {
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  border: 1px solid rgba(201,168,76,0);
  transition: border-color 0.4s, box-shadow 0.4s;
}

/* Second decorative orbit ring */
.ams-process__node::before {
  content: '';
  position: absolute;
  inset: -14px;
  border-radius: 50%;
  border: 1px dashed rgba(201,168,76,0);
  transition: border-color 0.5s, transform 0.5s;
  transform: rotate(0deg);
}

.ams-process__step:hover .ams-process__node::before,
.ams-process__step.active .ams-process__node::before {
  border-color: rgba(201,168,76,0.2);
  transform: rotate(45deg);
}

.ams-process__step.active .ams-process__node::before {
  animation: orbit-spin 8s linear infinite;
}

@keyframes orbit-spin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

.ams-process__icon {
  width: 76px;
  height: 76px;
  border-radius: 50%;
  background: var(--surface);
  border: 1px solid rgba(201,168,76,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.4s, border-color 0.4s, box-shadow 0.4s, transform 0.4s;
  position: relative;
  z-index: 1;
  overflow: hidden;
}

/* Inner shimmer sweep on hover */
.ams-process__icon::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -75%;
  width: 50%;
  height: 200%;
  background: linear-gradient(
    105deg,
    transparent 40%,
    rgba(201,168,76,0.18) 50%,
    transparent 60%
  );
  transform: skewX(-15deg);
  transition: left 0s;
  opacity: 0;
}

.ams-process__step:hover .ams-process__icon::before,
.ams-process__step.active .ams-process__icon::before {
  animation: icon-sweep 0.6s ease forwards;
}

@keyframes icon-sweep {
  from { left: -75%; opacity: 1; }
  to   { left: 150%;  opacity: 1; }
}

.ams-process__icon svg {
  width: 27px;
  height: 27px;
  color: var(--text-muted);
  transition: color 0.4s, transform 0.4s;
  position: relative;
  z-index: 1;
}

/* Hover state */
.ams-process__step:hover .ams-process__icon {
  background: var(--surface-raised);
  border-color: rgba(201,168,76,0.5);
  box-shadow:
    0 0 0 1px rgba(201,168,76,0.1),
    0 0 20px rgba(201,168,76,0.2),
    0 12px 32px rgba(0,0,0,0.5);
  transform: translateY(-8px) scale(1.05);
}

/* Active state */
.ams-process__step.active .ams-process__icon {
  background: var(--surface-raised);
  border-color: var(--gold);
  box-shadow:
    0 0 0 1px rgba(201,168,76,0.2),
    0 0 30px rgba(201,168,76,0.35),
    0 0 60px rgba(201,168,76,0.15),
    0 16px 40px rgba(0,0,0,0.6);
  transform: translateY(-10px) scale(1.08);
}

.ams-process__step:hover .ams-process__icon svg,
.ams-process__step.active .ams-process__icon svg {
  color: var(--gold);
  transform: scale(1.1);
}

/* Active pulse ring */
.ams-process__step.active .ams-process__ring {
  border-color: rgba(201,168,76,0.4);
  animation: pulse-ring 2s ease-out infinite;
}

@keyframes pulse-ring {
  0%   { transform: scale(1);    opacity: 0.8; border-color: rgba(201,168,76,0.5); box-shadow: 0 0 0 0 rgba(201,168,76,0.3); }
  70%  { transform: scale(1.5);  opacity: 0;   border-color: rgba(201,168,76,0);   box-shadow: 0 0 0 10px rgba(201,168,76,0); }
  100% { transform: scale(1);    opacity: 0; }
}

/* ── Step number ─────────────────────────────────── */
.ams-process__number {
  margin-top: 18px;
  font-family: var(--font-display);
  font-size: 2.1em;
  font-weight: 700;
  color: rgba(201,168,76,0.35);
  letter-spacing: 0.04em;
  transition: color 0.4s, text-shadow 0.4s;
  line-height: 1;
  user-select: none;
}

.ams-process__step:hover .ams-process__number {
  color: rgba(201,168,76,0.55);
}

.ams-process__step.active .ams-process__number {
  color: rgba(201,168,76,0.75);
  text-shadow: 0 0 30px rgba(201,168,76,0.4);
}

/* ── Floating particles above active node ────────── */
.ams-process__step.active .ams-process__node::after {
  content: '';
  position: absolute;
  top: -18px;
  left: 50%;
  transform: translateX(-50%);
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--gold-light);
  box-shadow: 0 0 6px var(--gold), 14px -8px 0 -1px var(--gold), -12px -14px 0 -1px rgba(201,168,76,0.6);
  animation: particles-float 2.5s ease-in-out infinite;
  pointer-events: none;
}

@keyframes particles-float {
  0%, 100% { transform: translateX(-50%) translateY(0) scale(1);    opacity: 1; }
  50%       { transform: translateX(-50%) translateY(-18px) scale(0.7); opacity: 0.3; }
}

/* ── Step badge (number pill on hover) ───────────── */
.ams-process__step::after {
  content: 'Step ' attr(data-step);
  position: absolute;
  top: -36px;
  left: 50%;
  transform: translateX(-50%) translateY(4px);
  background: var(--surface-raised);
  border: 1px solid var(--border);
  color: var(--gold);
  font-family: var(--font-body);
  font-size: 0.68em;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 99px;
  opacity: 0;
  transition: opacity 0.25s, transform 0.25s;
  pointer-events: none;
  white-space: nowrap;
  box-shadow: 0 4px 12px rgba(0,0,0,0.4);
}

.ams-process__step:hover::after,
.ams-process__step.active::after {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

/* ── Responsive ──────────────────────────────────── */
@media (max-width: 1024px) {
  .ams-process { padding: 100px 32px 120px; }
}

@media (max-width: 900px) {
  .ams-process { padding: 70px 24px 80px; }
  .ams-process__header { margin-bottom: 60px; }

  .ams-process__track {
    flex-direction: column;
    align-items: center;
    gap: 0;
  }

  .ams-process__line { display: none; }

  .ams-process__step {
    flex-direction: row;
    align-items: center;
    gap: 22px;
    width: 100%;
    max-width: 480px;
    padding: 20px 0;
    border-bottom: 1px solid var(--border);
    opacity: 1;
    transform: none;
  }

  .ams-process__step:last-child { border-bottom: none; }
  .ams-process__step::after { display: none; }
  .ams-process__step.active .ams-process__node::after { display: none; }

  .ams-process__content {
    text-align: left;
    margin-bottom: 0;
    min-height: auto;
    justify-content: center;
    flex: 1;
  }

  .ams-process__content p { max-width: none; }

  .ams-process__number {
    margin-top: 0;
    font-size: 1.8em;
    min-width: 44px;
    text-align: right;
    order: 3;
  }

  .ams-process__step:hover .ams-process__icon,
  .ams-process__step.active .ams-process__icon {
    transform: scale(1.05);
  }
}

/* ══════════════════════════════════════════════════
   AMS PROCESS — Full Responsive
══════════════════════════════════════════════════ */

/* ── Large desktops (1400px+) ────────────────────── */
@media (min-width: 1400px) {
  .ams-process {
    padding: 140px 80px 160px;
    max-width: 1400px;
  }
  .ams-process__content {
    min-height: 160px;
  }
  .ams-process__content h3 { font-size: 1em; }
  .ams-process__content p  { font-size: 0.8em; max-width: 130px; }
  .ams-process__icon       { width: 84px; height: 84px; }
  .ams-process__node       { width: 84px; height: 84px; }
  .ams-process__icon svg   { width: 32px; height: 32px; }
  .ams-process__line {
    top: calc(160px + 42px);
  }
}

/* ── Standard desktop (1200px–1399px) ────────────── */
@media (max-width: 1399px) and (min-width: 1201px) {
  .ams-process {
    padding: 120px 60px 140px;
    max-width: 1300px;
  }
}

/* ── Small desktop / large laptop (1025px–1200px) ── */
@media (max-width: 1200px) and (min-width: 1025px) {
  .ams-process {
    padding: 100px 40px 120px;
    max-width: 100%;
  }
  .ams-process__content {
    min-height: 150px;
    padding: 0 6px;
  }
  .ams-process__content h3 { font-size: 0.88em; }
  .ams-process__content p  { font-size: 0.72em; max-width: 110px; }
  .ams-process__icon       { width: 70px; height: 70px; }
  .ams-process__node       { width: 70px; height: 70px; }
  .ams-process__line {
    top: calc(150px + 35px);
  }
  .ams-process__number { font-size: 1.8em; }
}

/* ── Laptop (1024px) ─────────────────────────────── */
@media (max-width: 1024px) and (min-width: 901px) {
  .ams-process {
    padding: 90px 32px 110px;
    max-width: 100%;
  }
  .ams-process__header { margin-bottom: 80px; }
  .ams-process__content {
    min-height: 145px;
    padding: 0 4px;
  }
  .ams-process__content h3 { font-size: 0.84em; }
  .ams-process__content p  { font-size: 0.70em; max-width: 100px; }
  .ams-process__icon       { width: 66px; height: 66px; }
  .ams-process__node       { width: 66px; height: 66px; }
  .ams-process__icon svg   { width: 24px; height: 24px; }
  .ams-process__line {
    top: calc(145px + 33px);
  }
  .ams-process__number { font-size: 1.7em; }
}

/* ══════════════════════════════════════════════════
   TABLET + MOBILE — Switch to vertical layout
══════════════════════════════════════════════════ */
@media (max-width: 900px) {
  .ams-process {
    padding: 80px 28px 100px;
  }

  .ams-process__header {
    margin-bottom: 56px;
  }

  .ams-process__header h2 {
    font-size: clamp(1.7em, 5vw, 2.4em);
    /* Force visible on mobile — no scroll trigger needed */
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }

  .ams-process__header h2 em::after {
    width: 100% !important;
    transition: none !important;
  }

  .ams-process__header h2::after {
    width: 60px !important;
    transition: none !important;
  }

  .ams-process__header p {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
    font-size: 1em;
  }

  /* ── Vertical track ──────────────────────────── */
  .ams-process__track {
    flex-direction: column;
    align-items: center;
    gap: 0;
  }

  /* Hide horizontal line, use vertical border instead */
  .ams-process__line { display: none; }

  /* Vertical connector between steps */
  .ams-process__track::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 1px;
    background: linear-gradient(
      180deg,
      transparent 0%,
      rgba(201,168,76,0.15) 5%,
      rgba(201,168,76,0.15) 95%,
      transparent 100%
    );
    transform: translateX(-50%);
    z-index: 0;
  }

  /* Each step: card style */
  .ams-process__step {
    flex-direction: row;
    align-items: center;
    gap: 20px;
    width: 100%;
    max-width: 560px;
    padding: 24px 20px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    margin-bottom: 12px;
    opacity: 1 !important;
    transform: none !important;
    transition: border-color 0.35s, box-shadow 0.35s, background 0.35s !important;
    position: relative;
    z-index: 1;
  }

  .ams-process__step:last-child { margin-bottom: 0; }

  .ams-process__step:hover,
  .ams-process__step.active {
    border-color: rgba(201,168,76,0.35);
    background: var(--surface-raised);
    box-shadow: 0 8px 32px rgba(0,0,0,0.4), 0 0 20px rgba(201,168,76,0.08);
  }

  /* Left accent bar on active */
  .ams-process__step.active::before {
    content: '';
    position: absolute;
    left: 0; top: 0; bottom: 0;
    width: 3px;
    background: var(--gold);
    border-radius: var(--radius-md) 0 0 var(--radius-md);
    box-shadow: 0 0 10px var(--gold);
    animation: none;
    transform: none;
    opacity: 1;
    top: 0; left: 0;
    height: 100%;
    font-size: unset;
    letter-spacing: unset;
    padding: unset;
    border: none;
    border-radius: 4px 0 0 4px;
    background: var(--gold);
    box-shadow: 0 0 12px rgba(201,168,76,0.5);
  }

  /* Hide floating badge tooltip on mobile */
  .ams-process__step::after  { display: none !important; }
  .ams-process__step.active .ams-process__node::after { display: none; }
  .ams-process__step.active .ams-process__node::before { display: none; }

  /* Content: left-aligned text */
  .ams-process__content {
    text-align: left;
    margin-bottom: 0;
    min-height: auto;
    justify-content: center;
    flex: 1;
    padding: 0;
  }

  .ams-process__content h3 {
    font-size: 0.95em;
    margin-bottom: 5px;
  }

  .ams-process__content p {
    font-size: 0.8em;
    max-width: none;
    line-height: 1.6;
  }

  /* Node: smaller, no float animation */
  .ams-process__node {
    width: 60px;
    height: 60px;
    flex-shrink: 0;
  }

  .ams-process__icon {
    width: 60px;
    height: 60px;
  }

  .ams-process__icon svg {
    width: 22px;
    height: 22px;
  }

  /* No translateY on mobile — looks broken in card layout */
  .ams-process__step:hover .ams-process__icon,
  .ams-process__step.active .ams-process__icon {
    transform: scale(1.05);
    border-color: var(--gold);
    box-shadow: 0 0 16px rgba(201,168,76,0.25);
  }

  /* Number: right side */
  .ams-process__number {
    margin-top: 0;
    font-size: 2em;
    min-width: 44px;
    text-align: right;
    order: 3;
    flex-shrink: 0;
  }

  .ams-process__ring { display: none; }
}

/* ── Large tablet portrait (768px–900px) ─────────── */
@media (max-width: 900px) and (min-width: 768px) {
  .ams-process { padding: 80px 40px 100px; }

  .ams-process__step {
    max-width: 640px;
    padding: 26px 24px;
    gap: 24px;
  }

  .ams-process__node { width: 64px; height: 64px; }
  .ams-process__icon { width: 64px; height: 64px; }
  .ams-process__icon svg { width: 24px; height: 24px; }
  .ams-process__content h3 { font-size: 1em; }
  .ams-process__content p  { font-size: 0.84em; }
  .ams-process__number { font-size: 2.2em; }
}

/* ── Mobile landscape + small tablet (600px–767px) ─ */
@media (max-width: 767px) and (min-width: 601px) {
  .ams-process { padding: 70px 24px 90px; }

  .ams-process__step {
    max-width: 100%;
    padding: 22px 18px;
    gap: 18px;
  }

  .ams-process__content h3 { font-size: 0.92em; }
  .ams-process__content p  { font-size: 0.78em; }
  .ams-process__number { font-size: 1.9em; min-width: 40px; }
}

/* ── Mobile (max 600px) ──────────────────────────── */
@media (max-width: 600px) {
  .ams-process {
    padding: 60px 16px 80px;
  }

  .ams-process__header {
    margin-bottom: 40px;
  }

  .ams-process__header h2 {
    font-size: clamp(1.5em, 7vw, 2em);
    line-height: 1.2;
  }

  .ams-process__header p {
    font-size: 0.92em;
    padding: 0 4px;
  }

  .ams-process__step {
    padding: 18px 14px;
    gap: 14px;
    border-radius: var(--radius-sm);
    margin-bottom: 10px;
  }

  .ams-process__node { width: 52px; height: 52px; }
  .ams-process__icon { width: 52px; height: 52px; }
  .ams-process__icon svg { width: 20px; height: 20px; }

  .ams-process__content h3 {
    font-size: 0.88em;
    margin-bottom: 4px;
  }

  .ams-process__content p {
    font-size: 0.74em;
    line-height: 1.55;
  }

  .ams-process__number {
    font-size: 1.6em;
    min-width: 36px;
  }
}

/* ── Very small mobile (max 380px) ──────────────── */
@media (max-width: 380px) {
  .ams-process { padding: 50px 12px 70px; }

  .ams-process__step {
    gap: 12px;
    padding: 16px 12px;
  }

  .ams-process__node { width: 46px; height: 46px; }
  .ams-process__icon { width: 46px; height: 46px; }
  .ams-process__icon svg { width: 18px; height: 18px; }

  .ams-process__content h3 { font-size: 0.84em; }
  .ams-process__content p  { font-size: 0.70em; }
  .ams-process__number      { font-size: 1.4em; min-width: 32px; }
}

/* ── Page wrapper ── */
.sdlc-page {
  max-width: 860px;
  margin: 0 auto;
  padding: 56px 32px 72px;
}

/* ── Page title & subtitle ── */
.sdlc-page__title {
  font-family: var(--font-display);
  font-size: clamp(1.9em, 4vw, 2.6em);
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.02em;
  margin-bottom: 4px;
  line-height: 1.2;
}
.sdlc-page__sub {
  font-size: 0.75em;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 36px;
}

/* ── Metric cards grid ── */
.sdlc-metrics {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-bottom: 36px;
}
.sdlc-metric {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 22px 24px;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: var(--transition);
}
.sdlc-metric:hover {
  border-color: rgba(201,168,76,0.35);
  box-shadow: var(--shadow-hover);
}
/* Gold shimmer line at top — uses existing ::before pattern from your .card */
.sdlc-metric::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.sdlc-metric__val {
  font-family: var(--font-display);
  font-size: 2.2em;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 6px;
}
.sdlc-metric__lbl {
  font-size: 0.7em;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-muted);
  font-weight: 500;
}

/* ── Legend ── */
.sdlc-legend {
  display: flex;
  gap: 20px;
  align-items: center;
  margin-bottom: 28px;
  flex-wrap: wrap;
}
.sdlc-legend__item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8em;
  color: var(--text-secondary);
}
.sdlc-legend__dot {
  width: 12px;
  height: 12px;
  border-radius: 3px;
  flex-shrink: 0;
}

/* ── Section headings ── */
.sdlc-section-title {
  font-size: 0.72em;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 18px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(201,168,76,0.12);
  display: flex;
  align-items: center;
  gap: 8px;
}

/* ── Phase section ── */
.sdlc-phases {
  margin-bottom: 40px;
  position: relative;
}
.sdlc-phase {
  margin-bottom: 16px;
}
.sdlc-phase__label {
  font-size: 0.7em;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-secondary);
  margin-bottom: 5px;
  font-weight: 500;
}

/* ── Bar track & fill (reusable for both sections) ── */
.sdlc-bar-track {
  width: 100%;
  height: 30px;
  background: rgba(255,255,255,0.03);
  border-radius: var(--radius-sm);
  margin-bottom: 5px;
  overflow: hidden;
}
.sdlc-bar-fill {
  height: 100%;
  border-radius: var(--radius-sm);
  width: 0%;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding-right: 12px;
  font-size: 0.8em;
  font-weight: 500;
  /* eased animation — same cubic you use in --transition */
  transition: width 1.2s cubic-bezier(0.4, 0, 0.2, 1);
  white-space: nowrap;
  min-width: 0;
}

/* Modifier: traditional (dark purple, no gold) */
.sdlc-bar-fill--trad {
  background: linear-gradient(90deg, #1e1c2a, #2e2b3e);
  color: var(--text-secondary);
  border: 1px solid rgba(100,90,160,0.2);
}
/* Modifier: AI optimised (gold) */
.sdlc-bar-fill--ai {
  background: linear-gradient(90deg, #5a3f10, var(--gold));
  color: var(--onyx);
  font-weight: 600;
}
/* Modifier: innovation speed (green) */
.sdlc-bar-fill--inno {
  background: linear-gradient(90deg, #0f3d28, #2ab87a);
  color: var(--onyx);
  font-weight: 600;
}

/* ── Axis ticks ── */
.sdlc-axis {
  display: flex;
  justify-content: space-between;
  margin-top: 8px;
}
.sdlc-axis__tick {
  font-size: 0.68em;
  color: var(--text-muted);
}

/* ── Replay button — extends your existing .apply-btn pattern ── */
.sdlc-replay-wrap {
  display: flex;
  justify-content: center;
  margin-top: 8px;
}
.sdlc-replay-btn {
  background: transparent;
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 0.88em;
  font-weight: 500;
  padding: 12px 36px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  transition: var(--transition);
  letter-spacing: 0.06em;
  position: relative;
  overflow: hidden;
  z-index: 0;
}
.sdlc-replay-btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gold-dim);
  transform: scaleX(0);
  transform-origin: left;
  transition: var(--transition);
  z-index: -1;
}
.sdlc-replay-btn:hover {
  border-color: var(--gold);
  color: var(--gold);
  box-shadow: var(--shadow-gold);
}
.sdlc-replay-btn:hover::before { transform: scaleX(1); }
.sdlc-replay-btn__icon {
  display: inline-block;
  font-size: 1.1em;
  transition: transform 0.7s ease;
}
.sdlc-replay-btn:hover .sdlc-replay-btn__icon {
  transform: rotate(-360deg);
}

/* ── Responsive ── */
@media (max-width: 640px) {
  .sdlc-page        { padding: 36px 16px 52px; }
  .sdlc-metrics     { grid-template-columns: 1fr; gap: 10px; }
  .sdlc-metric__val { font-size: 1.8em; }
  .sdlc-legend      { gap: 14px; }
  .sdlc-bar-fill    { font-size: 0.72em; padding-right: 8px; }
}
@media (max-width: 400px) {
  .sdlc-axis { display: none; }
}

/* ══════════════════════════════════════════════════
   ABOUT PAGE — All Sections
══════════════════════════════════════════════════ */

/* ── Shared Section Base ─────────────────────────── */
.about-section {
  padding: 90px 60px;
  max-width: 1200px;
  margin: 0 auto;
  border-top: 1px solid var(--border);
}

.section-label {
  display: inline-block;
  font-size: 0.72em;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}

.section-heading {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.25;
}

.gold-line {
  width: 52px;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  border-radius: 2px;
  margin: 16px 0 28px;
}

.gold-line.center {
  margin: 16px auto 28px;
}

.section-header.centered {
  text-align: center;
}

/* ── 1. OUR STORY ────────────────────────────────── */
.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
  margin-top: 48px;
}

.story-text p {
  color: var(--text-secondary);
  font-size: 1.02em;
  line-height: 1.85;
}

.story-text strong {
  color: var(--gold);
}

.story-stats {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.story-stat {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 26px 30px;
  position: relative;
  overflow: hidden;
  transition: var(--transition);
}

.story-stat::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, var(--gold), var(--gold-light));
}

.story-stat:hover {
  border-color: rgba(201, 168, 76, 0.4);
  transform: translateX(6px);
  box-shadow: var(--shadow-card);
}

.stat-value {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}

.stat-label {
  font-size: 0.85em;
  color: var(--text-secondary);
  margin-top: 6px;
}

/* ── 2. OUR VISION ───────────────────────────────── */
.vision-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 60px 72px;
  text-align: center;
  position: relative;
  overflow: hidden;
  margin-top: 40px;
}

.vision-card::before {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 300px; height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201,168,76,0.07), transparent 70%);
  pointer-events: none;
}

.vision-quote {
  font-family: var(--font-display);
  font-size: 8rem;
  line-height: 1;
  color: rgba(201, 168, 76, 0.15);
  display: block;
  margin-bottom: -20px;
}

.vision-text {
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  font-style: italic;
  color: var(--text-primary);
  line-height: 1.75;
  max-width: 700px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.vision-text strong {
  color: var(--gold);
  font-style: normal;
}

/* ── 3. WHAT WE ARE BUILDING ─────────────────────── */
.build-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.build-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 36px 32px;
  position: relative;
  overflow: hidden;
  transition: var(--transition);
  cursor: default;
}

.build-card:hover {
  border-color: rgba(201, 168, 76, 0.38);
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}

.build-tag {
  display: inline-block;
  font-size: 0.72em;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(201, 168, 76, 0.12);
  padding: 4px 12px;
  border-radius: 99px;
  margin-bottom: 14px;
}

.build-icon {
  font-size: 2rem;
  margin-bottom: 16px;
  display: block;
}

.build-card h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 10px;
}

.build-card p {
  font-size: 0.9em;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ── 4. VALUES ───────────────────────────────────── */
.values-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 48px;
}

.value-card {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 28px;
  transition: var(--transition);
}

.value-card:hover {
  border-color: rgba(201, 168, 76, 0.35);
  box-shadow: var(--shadow-card);
}

.value-emoji {
  font-size: 1.8rem;
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  background: rgba(201, 168, 76, 0.12);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
}

.value-info h4 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 6px;
}

.value-info p {
  font-size: 0.88em;
  color: var(--text-secondary);
  line-height: 1.65;
}

/* ── 5. TECHNOLOGIES ─────────────────────────────── */
.tech-list {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 40px;
}

.tech-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 99px;
  padding: 10px 22px;
  font-size: 0.9em;
  font-weight: 500;
  color: var(--text-primary);
  transition: var(--transition);
  cursor: default;
}

.tech-pill::before {
  content: '';
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
}

.tech-pill:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(201, 168, 76, 0.1);
  transform: translateY(-2px);
}

/* ── 6. JOIN OUR JOURNEY ─────────────────────────── */
.journey-section {
  border-bottom: 1px solid var(--border);
}

.journey-band {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 80px 72px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.journey-band::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.journey-band::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.journey-band h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 700;
  color: var(--text-primary);
  margin: 12px 0 18px;
}

.journey-band p {
  color: var(--text-secondary);
  font-size: 1.05em;
  max-width: 560px;
  margin: 0 auto 38px;
  line-height: 1.8;
}

.btn-gold {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--onyx);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.92em;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 16px 40px;
  border-radius: 99px;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 4px 24px rgba(201, 168, 76, 0.28);
}

.btn-gold:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(201, 168, 76, 0.4);
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: var(--onyx);
}

/* ── 7. WHY WORK WITH US ─────────────────────────── */
.why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 48px;
}

.why-item {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 26px 28px;
  transition: var(--transition);
}

.why-item:hover {
  border-color: rgba(201, 168, 76, 0.35);
  transform: translateX(4px);
}

.why-check {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  background: rgba(201, 168, 76, 0.12);
  border: 1px solid rgba(201, 168, 76, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 0.85em;
  font-weight: 700;
}

.why-item p {
  font-size: 0.95em;
  color: var(--text-secondary);
  line-height: 1.65;
}

.why-item p strong {
  color: var(--text-primary);
  font-weight: 600;
}

/* ── Scroll Fade-Up Animation ────────────────────── */
.fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── Responsive ──────────────────────────────────── */
@media (max-width: 900px) {
  .about-section {
    padding: 60px 24px;
  }
  .story-grid,
  .build-grid,
  .values-grid,
  .why-grid {
    grid-template-columns: 1fr;
  }
  .vision-card,
  .journey-band {
    padding: 44px 28px;
  }
  .vision-quote {
    font-size: 5rem;
  }
}



.map-section{
    margin-top:20px;
}

.map-container{
    max-width:1100px;
    margin:auto;
    padding:10px;
}

.direction-btn{
    background:#f4b400;
    color:#000;
    padding:10px 20px;
    border-radius:6px;
    text-decoration:none;
    font-weight:600;
}