:root {
  --navy: #0b2545;
  --navy-2: #13315c;
  --navy-3: #1d3a5f;
  --blue: #1b5fb0;
  --blue-2: #2b6fc7;
  --blue-soft: #eaf1fb;
  --blue-soft-2: #f4f8fd;
  --accent: #b8902a;
  --accent-soft: #f5edd6;
  --ink: #1a2230;
  --ink-2: #2c3849;
  --muted: #5b6675;
  --muted-2: #7a8595;
  --line: #e3e8ef;
  --line-2: #eef2f7;
  --bg: #ffffff;
  --bg-alt: #f7f9fc;
  --bg-warm: #fbfaf7;
  --radius: 12px;
  --radius-lg: 18px;
  --shadow-sm: 0 2px 8px rgba(11, 37, 69, 0.06);
  --shadow: 0 8px 28px rgba(11, 37, 69, 0.08);
  --shadow-lg: 0 24px 60px rgba(11, 37, 69, 0.14);
  --container: 1160px;
  --serif: "Source Serif 4", Georgia, "Times New Roman", serif;
  --sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--sans);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-feature-settings: "ss01", "cv11";
}

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 32px;
}

a { color: var(--blue); text-decoration: none; transition: color 0.15s ease; }
a:hover { color: var(--navy); text-decoration: underline; }

h1, h2, h3, h4 {
  font-family: var(--sans);
  color: var(--navy);
  line-height: 1.18;
  margin: 0 0 0.5em;
  font-weight: 700;
  letter-spacing: -0.018em;
}
h1 { font-size: clamp(2.1rem, 4.6vw, 3.4rem); font-weight: 800; letter-spacing: -0.025em; }
h2 { font-size: clamp(1.7rem, 3.2vw, 2.5rem); font-weight: 700; }
h3 { font-size: 1.2rem; font-weight: 600; }
h4 { font-size: 1.02rem; font-weight: 600; }

p { margin: 0 0 1em; }

.eyebrow {
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.74rem;
  font-weight: 600;
  color: var(--blue);
  margin: 0 0 1em;
}
.eyebrow.center { display: block; text-align: center; }

.lead {
  font-size: 1.18rem;
  color: var(--muted);
  max-width: 58ch;
  line-height: 1.6;
  font-weight: 400;
}

.section-sub {
  color: var(--muted);
  font-size: 1.08rem;
  max-width: 64ch;
  margin: 0 auto;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 24px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.95rem;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, background 0.15s ease, box-shadow 0.15s ease, border-color 0.15s ease;
  text-decoration: none;
  font-family: var(--sans);
  letter-spacing: 0.005em;
}
.btn:hover { text-decoration: none; transform: translateY(-1px); }
.btn:active { transform: translateY(0); }
.btn-primary {
  background: var(--navy);
  color: #fff;
  box-shadow: 0 4px 14px rgba(11, 37, 69, 0.18);
}
.btn-primary:hover { background: var(--navy-2); color: #fff; box-shadow: 0 6px 20px rgba(11, 37, 69, 0.24); }
.btn-ghost {
  background: transparent;
  color: var(--navy);
  border-color: var(--line);
}
.btn-ghost:hover { border-color: var(--navy); color: var(--navy); background: var(--bg-alt); }
.btn-block { width: 100%; justify-content: center; }

/* Top bar */
.topbar {
  background: var(--navy);
  color: #c9d4e6;
  font-size: 0.82rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.topbar-inner {
  display: flex;
  align-items: center;
  gap: 24px;
  height: 38px;
  padding-top: 0;
  padding-bottom: 0;
}
.topbar-item { display: inline-flex; align-items: center; gap: 6px; }
.topbar-item svg { opacity: 0.7; }
.topbar-item a { color: #c9d4e6; }
.topbar-item a:hover { color: #fff; }
.topbar-spacer { flex: 1; }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: saturate(180%) blur(12px);
  -webkit-backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid var(--line);
}
.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--navy);
  font-weight: 700;
}
.brand:hover { text-decoration: none; color: var(--navy); }
.brand-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 8px;
  flex-shrink: 0;
}
.brand-text { display: flex; flex-direction: column; line-height: 1.1; }
.brand-name { font-size: 1.02rem; font-weight: 700; letter-spacing: -0.01em; }
.brand-suffix { font-size: 0.72rem; color: var(--muted); font-weight: 500; letter-spacing: 0.04em; text-transform: uppercase; }

.nav { display: flex; align-items: center; gap: 30px; }
.nav a {
  color: var(--ink-2);
  font-weight: 500;
  font-size: 0.94rem;
  position: relative;
  padding: 4px 0;
}
.nav a:hover { color: var(--navy); text-decoration: none; }
.nav a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: width 0.2s ease;
}
.nav a:not(.nav-cta):hover::after { width: 100%; }
.nav-cta {
  background: transparent;
  color: var(--navy);
  padding: 4px 0;
  border-radius: 0;
  font-weight: 600;
}
.nav-cta:hover { background: transparent; color: var(--blue); }
.nav-cta::after { display: none; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: 0;
  cursor: pointer;
  padding: 6px;
}
.nav-toggle span {
  width: 24px;
  height: 2px;
  background: var(--navy);
  display: block;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

/* Hero */
.hero {
  position: relative;
  padding: 88px 0 80px;
  overflow: hidden;
  background: var(--navy);
  color: #fff;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    url("Website1.webp") center/cover no-repeat,
    linear-gradient(180deg, rgba(11, 37, 69, 0.85) 0%, rgba(11, 37, 69, 0.92) 100%);
  background-blend-mode: overlay;
  pointer-events: none;
}
.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.35fr 1fr;
  gap: 56px;
  align-items: start;
}
.hero h1 { color: #fff; }
.hero .lead { color: #c2cde0; }
.hero .eyebrow { color: var(--accent); }
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; margin: 32px 0 40px; }

.hero-meta {
  display: flex;
  align-items: center;
  gap: 24px;
  padding-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}
.hero-meta-item { display: flex; flex-direction: column; }
.hero-meta-item strong {
  font-size: 1.15rem;
  color: #fff;
  font-weight: 700;
  letter-spacing: -0.01em;
}
.hero-meta-item span { font-size: 0.82rem; color: #8a99b3; }
.hero-meta-divider {
  width: 1px;
  height: 32px;
  background: rgba(255, 255, 255, 0.12);
}

.hero-cta .btn-ghost {
  border-color: rgba(255, 255, 255, 0.3);
  color: #fff;
}
.hero-cta .btn-ghost:hover {
  border-color: #fff;
  background: rgba(255, 255, 255, 0.08);
}

/* Hero panel */
.hero-panel {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-lg);
  position: relative;
}
.hero-panel::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--navy) 0%, var(--blue) 100%);
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}
.hero-panel-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 22px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line-2);
}
.hero-panel-label {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-weight: 600;
  color: var(--navy);
}
.hero-panel-badge {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--accent);
  background: var(--accent-soft);
  padding: 4px 10px;
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.hero-panel-list { list-style: none; padding: 0; margin: 0; }
.hero-panel-list li {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 13px 0;
  border-bottom: 1px solid var(--line-2);
  font-weight: 500;
  color: var(--ink-2);
  font-size: 0.96rem;
}
.hero-panel-list li:last-child { border-bottom: 0; }
.check {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--blue-soft);
  position: relative;
}
.check::after {
  content: "";
  position: absolute;
  left: 6px;
  top: 3px;
  width: 5px;
  height: 9px;
  border: solid var(--blue);
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

/* Credentials */
.credentials {
  background: var(--navy);
  color: #dce4f0;
  padding: 0;
}
.credentials-grid {
  display: grid;
  grid-template-columns: repeat(7, auto);
  align-items: center;
  gap: 0;
  padding: 36px 32px;
}
.cred-item {
  display: flex;
  align-items: center;
  gap: 18px;
  grid-column: span 2;
}
.cred-item:last-child { grid-column: span 1; }
.cred-num {
  font-family: var(--serif);
  font-size: 2.6rem;
  font-weight: 600;
  color: #fff;
  line-height: 1;
  letter-spacing: -0.02em;
}
.cred-num sup { font-size: 1.2rem; color: var(--accent); top: -0.6em; }
.cred-label {
  font-size: 0.86rem;
  color: #aebccc;
  line-height: 1.4;
}
.cred-divider {
  width: 1px;
  height: 48px;
  background: rgba(255, 255, 255, 0.12);
}

/* Sections */
.section { padding: 96px 0; }
.section-alt { background: var(--bg-alt); }
.section-head { max-width: 780px; margin: 0 auto 56px; text-align: center; }
.section-head h2 { margin-bottom: 16px; }

/* Services section - left aligned */
#services .section-head {
  text-align: left;
  margin-left: 0;
  margin-right: 0;
}
#services .section-head .eyebrow.center { display: inline-block; text-align: left; }
#services .section-sub {
  margin-left: 0;
  margin-right: 0;
}

/* Cards */
.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
  position: relative;
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--blue-soft);
}
.card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}
.card-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 10px;
  background: var(--blue-soft);
  color: var(--blue);
}
.card-num {
  font-family: var(--serif);
  font-size: 1.6rem;
  font-weight: 500;
  color: var(--line);
  letter-spacing: -0.02em;
}
.card h3 { margin-bottom: 10px; color: var(--navy); }
.card p { color: var(--muted); margin: 0; font-size: 0.96rem; }

/* Approach */
.approach-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.approach-note {
  margin-top: 24px;
  padding: 18px 22px;
  background: var(--bg-warm);
  border-left: 3px solid var(--accent);
  border-radius: 0 8px 8px 0;
  font-size: 0.95rem;
  color: var(--ink-2);
}
.approach-steps { list-style: none; padding: 0; margin: 0; }
.approach-steps li {
  display: flex;
  gap: 22px;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
  position: relative;
}
.approach-steps li:last-child { border-bottom: 0; }
.step-num {
  flex-shrink: 0;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #fff;
  border: 2px solid var(--navy);
  color: var(--navy);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.05rem;
  font-family: var(--serif);
}
.step-body h4 { margin: 0 0 4px; color: var(--navy); }
.step-body p { margin: 0; color: var(--muted); font-size: 0.94rem; }

/* How We Work - dark navy section */
#how.section-alt {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-2) 100%);
  color: #d6e0ee;
}
#how .eyebrow { color: var(--accent); }
#how h2 { color: #fff; }
#how .approach-copy > p,
#how .approach-note,
#how .step-body p,
#how .delivery-label { color: #d6e0ee; }
#how .approach-note {
  background: rgba(255, 255, 255, 0.06);
  border-left-color: var(--accent);
}
#how .delivery-channels { border-top-color: rgba(255, 255, 255, 0.12); }
#how .delivery-tag {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.16);
  color: #fff;
}
#how .approach-steps li { border-bottom-color: rgba(255, 255, 255, 0.12); }
#how .step-num {
  background: #fff;
  border-color: #fff;
  color: var(--navy);
}
#how .step-body h4 { color: #fff; }

/* About */
.about-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 72px;
  align-items: center;
}
.about-visual {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
}
.about-portrait {
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: var(--radius-lg);
  background: url("Website2.jpg") center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}
.about-portrait::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(11, 37, 69, 0.45) 0%, rgba(11, 37, 69, 0.25) 100%);
}
.about-monogram {
  font-family: var(--serif);
  font-size: 5rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.22);
  letter-spacing: 0.08em;
  position: relative;
}
.about-ring {
  position: absolute;
  width: 70%;
  height: 70%;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 50%;
}
.about-stat {
  text-align: center;
  padding: 20px 28px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.about-stat strong {
  display: block;
  font-family: var(--serif);
  font-size: 1.6rem;
  color: var(--navy);
  font-weight: 600;
}
.about-stat span { font-size: 0.86rem; color: var(--muted); }

.about-highlights {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px 24px;
  margin: 24px 0 32px;
}
.about-highlight {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.94rem;
  color: var(--ink-2);
  font-weight: 500;
}
.about-highlight svg { color: var(--blue); flex-shrink: 0; }

/* Clients */
.client-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-bottom: 56px;
}
.client-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}
.client-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.client-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: var(--blue-soft);
  color: var(--blue);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.client-card h3 { margin-bottom: 8px; font-size: 1.08rem; }
.client-card p { margin: 0; color: var(--muted); font-size: 0.92rem; }

.engagement-note {
  display: flex;
  gap: 20px;
  max-width: 820px;
  margin: 0 auto;
  background: #fff;
  border: 1px solid var(--line);
  border-left: 4px solid var(--accent);
  border-radius: var(--radius);
  padding: 28px 32px;
  box-shadow: var(--shadow-sm);
}
.engagement-note-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--accent-soft);
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.engagement-note h3 { margin: 0 0 6px; }
.engagement-note p { margin: 0; color: var(--muted); font-size: 0.96rem; }

/* Contact */
#contact.section {
  position: relative;
  background: linear-gradient(135deg, rgba(11, 37, 69, 0.92) 0%, rgba(19, 49, 92, 0.88) 100%), url("website3.jpg") center/cover no-repeat;
  background-blend-mode: normal;
  color: #fff;
  overflow: hidden;
}
#contact .eyebrow { color: var(--accent); }
#contact h2 { color: #fff; }
#contact .contact-copy > p { color: #c2cde0; }
#contact .contact-list li { border-bottom-color: rgba(255, 255, 255, 0.12); }
#contact .contact-list-icon { background: rgba(255, 255, 255, 0.1); color: #fff; }
#contact .contact-list-label { color: #8a99b3; }
#contact .contact-list strong { color: #fff; }
#contact .contact-list strong a { color: #fff; }
#contact .contact-list strong a:hover { color: var(--accent); }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 72px;
  align-items: start;
}
.contact-list { list-style: none; padding: 0; margin: 32px 0 0; }
.contact-list li {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}
.contact-list li:last-child { border-bottom: 0; }
.contact-list-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--blue-soft);
  color: var(--blue);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.contact-list-label {
  display: block;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted);
  font-weight: 600;
  margin-bottom: 2px;
}
.contact-list strong { color: var(--navy); font-weight: 600; font-size: 1.02rem; }

.contact-form {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow);
}
.form-head { margin-bottom: 24px; }
.form-head h3 { margin: 0 0 4px; }
.form-head p { margin: 0; font-size: 0.86rem; color: var(--muted); }
.form-head em { color: var(--accent); font-style: normal; font-weight: 600; }

.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-bottom: 18px;
}
.field { margin-bottom: 18px; }
.field-row .field { margin-bottom: 18px; }
.field label {
  display: block;
  font-size: 0.86rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 7px;
  letter-spacing: 0.005em;
}
.field label em { color: var(--accent); font-style: normal; }
.field input, .field textarea {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid var(--line);
  border-radius: 8px;
  font: inherit;
  font-size: 0.96rem;
  color: var(--ink);
  background: #fff;
  transition: border 0.15s ease, box-shadow 0.15s ease;
}
.field input::placeholder, .field textarea::placeholder { color: var(--muted-2); }
.field input:focus, .field textarea:focus {
  outline: none;
  border-color: var(--blue);
  box-shadow: 0 0 0 3px var(--blue-soft);
}
.field textarea { resize: vertical; min-height: 100px; }

.form-note {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 18px 0 0;
  padding: 14px 18px;
  background: var(--blue-soft);
  color: var(--navy);
  border-radius: 8px;
  font-weight: 500;
  font-size: 0.94rem;
}
.form-note svg { color: var(--blue); flex-shrink: 0; }

/* Footer */
.site-footer {
  background: var(--navy);
  color: #c2cde0;
  padding: 64px 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  align-items: start;
}
.brand-footer .brand-name { color: #fff; }
.brand-footer .brand-suffix { color: #8a99b3; }
.footer-tag {
  margin: 20px 0 8px;
  font-size: 0.96rem;
  color: #c2cde0;
}
.footer-meta { font-size: 0.88rem; color: #8a99b3; margin: 0; }
.footer-nav-col h4, .footer-contact-col h4 {
  color: #fff;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 18px;
}
.footer-nav { display: flex; flex-direction: column; gap: 10px; }
.footer-nav a { color: #c2cde0; font-size: 0.94rem; }
.footer-nav a:hover { color: #fff; }
.footer-contact-item { margin: 0 0 10px; font-size: 0.94rem; color: #c2cde0; }
.footer-contact-item a { color: #c2cde0; }
.footer-contact-item a:hover { color: #fff; }
.footer-bottom {
  grid-column: 1 / -1;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 40px;
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-copy { font-size: 0.84rem; color: #8a99b3; margin: 0; }
.footer-disc { font-size: 0.82rem; color: #6b7a93; margin: 0; }

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.75s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 0.75s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: opacity, transform;
}
.reveal.in {
  opacity: 1;
  transform: translateY(0);
}

/* Hero load transition */
.hero-copy > *,
.hero-panel {
  opacity: 0;
  transform: translateY(30px);
  animation: slideUp 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}
.hero-copy .eyebrow { animation-delay: 0.05s; }
.hero-copy h1 { animation-delay: 0.15s; }
.hero-copy .lead { animation-delay: 0.25s; }
.hero-copy .hero-cta { animation-delay: 0.35s; }
.hero-copy .hero-meta { animation-delay: 0.45s; }
.hero-panel { animation-delay: 0.3s; }

@keyframes slideUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Card hover lift */
.card,
.client-card {
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

/* Smooth transitions for interactive elements */
a, .btn, .nav a, .footer-nav a, .contact-list a, .client-card, .step-num, .delivery-tag, .client-tags span {
  transition: color 0.15s ease, background 0.15s ease, border-color 0.15s ease, transform 0.15s ease, box-shadow 0.15s ease;
}

/* Positioning statement */
.positioning {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-2) 100%);
  border-top: 1px solid rgba(255,255,255,0.08);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  padding: 64px 0;
  position: relative;
  overflow: hidden;
}
.positioning-inner {
  position: relative;
  z-index: 2;
  text-align: left;
}
.positioning-inner .eyebrow { color: var(--accent); display: inline-block; }
.positioning-statement { max-width: 78ch; }
.positioning-emoji {
  position: absolute;
  right: 2%;
  bottom: 5%;
  top: auto;
  transform: none;
  font-size: clamp(5rem, 10vw, 8rem);
  line-height: 1;
  opacity: 0.22;
  z-index: 1;
  user-select: none;
  pointer-events: none;
}
.positioning-statement {
  font-family: var(--serif);
  font-size: clamp(1.25rem, 2.2vw, 1.6rem);
  line-height: 1.55;
  color: #d6e0ee;
  margin: 0;
  font-weight: 400;
  text-align: left;
}
.positioning-statement strong { color: #fff; font-weight: 600; }

/* Card lists (service activities) */
.card-list {
  list-style: none;
  padding: 0;
  margin: 16px 0 0;
  border-top: 1px solid var(--line-2);
}
.card-list li {
  position: relative;
  padding: 8px 0 8px 18px;
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.5;
  border-bottom: 1px solid var(--line-2);
}
.card-list li:last-child { border-bottom: 0; }
.card-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 14px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
}

/* Delivery channels */
.delivery-channels {
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}
.delivery-label {
  display: block;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 12px;
}
.delivery-tag {
  display: inline-block;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 7px 14px;
  font-size: 0.86rem;
  font-weight: 500;
  color: var(--ink-2);
  margin: 0 8px 8px 0;
}

/* Client card need/language */
.client-need {
  font-size: 0.86rem;
  color: var(--muted);
  margin: 0 0 10px;
  font-style: italic;
}
.client-need::before { content: "Need: "; font-style: normal; font-weight: 600; color: var(--navy); }
.client-lang {
  font-size: 0.92rem;
  color: var(--ink-2);
  margin: 0;
  padding-top: 10px;
  border-top: 1px solid var(--line-2);
  font-weight: 500;
}

/* Geographic line */
.geo-line {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  max-width: 820px;
  margin: 48px auto 0;
  padding: 24px 28px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}
.geo-line svg { color: var(--blue); flex-shrink: 0; }
.geo-line p {
  margin: 0;
  font-family: var(--serif);
  font-size: 1.08rem;
  color: var(--navy);
  font-weight: 500;
  line-height: 1.5;
}

/* Boundaries section */
.boundaries {
  background: var(--navy);
  color: #c2cde0;
  padding: 88px 0;
}
.boundaries-inner { max-width: 960px; margin: 0 auto; }
.boundaries-head { text-align: center; margin-bottom: 48px; }
.boundaries-head .eyebrow { color: var(--accent); display: block; text-align: center; }
.boundaries-head h2 { color: #fff; }
.boundaries-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}
.boundaries-col {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  padding: 32px;
}
.boundaries-title {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.05rem;
  font-weight: 600;
  margin: 0 0 20px;
  color: #fff;
}
.boundaries-yes svg { color: #5cb285; }
.boundaries-no svg { color: #d97070; }
.boundaries-col ul { list-style: none; padding: 0; margin: 0; }
.boundaries-col li {
  padding: 11px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.94rem;
  color: #c2cde0;
  line-height: 1.5;
}
.boundaries-col li:last-child { border-bottom: 0; }

/* Footer summary */
.footer-summary {
  font-size: 0.88rem;
  color: #8a99b3;
  margin: 12px 0 0;
  line-height: 1.6;
  max-width: 42ch;
}

/* Responsive */
@media (max-width: 980px) {
  .hero-grid, .approach-grid, .about-grid, .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .cards, .client-grid { grid-template-columns: repeat(2, 1fr); }
  .credentials-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .cred-item { grid-column: span 1; }
  .cred-divider { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .boundaries-grid { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .container { padding: 0 20px; }
  .topbar-inner { gap: 14px; }
  .topbar-item:nth-child(3) { display: none; }
  .nav { display: none; }
  .nav-toggle { display: flex; }
  .nav.open {
    display: flex;
    position: absolute;
    top: 76px;
    left: 0;
    right: 0;
    background: #fff;
    flex-direction: column;
    align-items: stretch;
    padding: 18px 24px 24px;
    border-bottom: 1px solid var(--line);
    gap: 16px;
    box-shadow: var(--shadow);
  }
  .nav.open a { padding: 8px 0; }
  .nav-cta { text-align: center; }
  .cards, .client-grid { grid-template-columns: 1fr; }
  .credentials-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .section { padding: 64px 0; }
  .hero { padding: 56px 0 56px; }
  .hero-meta { flex-wrap: wrap; gap: 16px; }
  .hero-meta-divider { display: none; }
  .field-row { grid-template-columns: 1fr; gap: 0; }
  .about-highlights { grid-template-columns: 1fr; }
  .engagement-note { flex-direction: column; }
  .geo-line { flex-direction: column; text-align: center; gap: 10px; }
  .boundaries { padding: 64px 0; }
  .positioning-emoji { display: none; }
  .positioning-statement { text-align: left; }
}
