/* ===========================
   TOKENS
   =========================== */
:root {
  --navy:     #0D2B4E;
  --navy-mid: #1A3F6F;
  --navy-lt:  #D4E4F4;
  --gold:     #C9A84C;
  --gold-lt:  #F5EDD6;
  --dark:     #0D1B2A;
  --mid:      #4A5568;
  --light:    #F7F9FC;
  --white:    #FFFFFF;
  --border:   #E2E8F0;

  --ff-head: 'Manrope', sans-serif;
  --ff-body: 'Nunito Sans', sans-serif;

  --radius: 14px;
  --shadow: 0 4px 28px rgba(13,43,78,0.10);
  --shadow-hover: 0 10px 48px rgba(13,43,78,0.18);
  --transition: 0.22s cubic-bezier(0.4,0,0.2,1);
  --max-w: 1160px;
  --nav-h: 100px;
}

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

/* ===========================
   UTILITIES
   =========================== */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 28px; }
.section-eyebrow {
  font-family: var(--ff-head);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}

.btn-primary {
  display: inline-block;
  background: var(--gold);
  color: var(--navy);
  font-family: var(--ff-head);
  font-size: 0.875rem;
  font-weight: 700;
  padding: 15px 30px;
  border-radius: 8px;
  letter-spacing: 0.02em;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  box-shadow: 0 2px 12px rgba(201,168,76,0.3);
}
.btn-primary:hover { background: #b8932f; transform: translateY(-2px); box-shadow: 0 6px 20px rgba(201,168,76,0.4); }

.btn-ghost {
  display: inline-block;
  color: var(--white);
  font-family: var(--ff-head);
  font-size: 0.875rem;
  font-weight: 700;
  padding: 15px 30px;
  border-radius: 8px;
  border: 2px solid rgba(255,255,255,0.5);
  transition: background var(--transition), border-color var(--transition);
}
.btn-ghost:hover { background: rgba(255,255,255,0.12); border-color: var(--white); }

.btn-light {
  display: inline-block;
  background: var(--white);
  color: var(--navy);
  font-family: var(--ff-head);
  font-size: 0.875rem;
  font-weight: 700;
  padding: 15px 30px;
  border-radius: 8px;
  transition: background var(--transition), transform var(--transition);
}
.btn-light:hover { background: var(--gold-lt); transform: translateY(-2px); }

/* ===========================
   NAV
   =========================== */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(13,27,42,0.96);
  backdrop-filter: blur(16px);
  height: var(--nav-h);
  border-bottom: 1px solid rgba(201,168,76,0.2);
  transition: box-shadow var(--transition);
}
.nav.scrolled { box-shadow: 0 4px 24px rgba(0,0,0,0.3); }
.nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 28px;
  height: 100%;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 16px;
}
.nav-logo { display: flex; justify-content: center; justify-self: center; align-items: center; }
.nav-logo-img { height: 72px; width: auto; object-fit: contain; }
.nav-links { display: flex; align-items: center; gap: 32px; justify-content: flex-start; justify-self: start; }
.nav-links a {
  font-family: var(--ff-head);
  font-size: 0.875rem;
  font-weight: 600;
  color: rgba(255,255,255,0.75);
  transition: color var(--transition);
}
.nav-links a:hover { color: var(--white); }
.nav-cta-wrap { display: flex; justify-content: flex-end; justify-self: end; align-items: center; gap: 16px; }
.nav-cta-wrap .nav-cta {
  background: var(--gold);
  color: var(--navy) !important;
  padding: 10px 22px;
  border-radius: 8px;
  font-family: var(--ff-head);
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: background var(--transition), transform var(--transition);
}
.nav-cta-wrap .nav-cta:hover { background: #b8932f; transform: translateY(-1px); }

.nav-burger { display: none; flex-direction: column; gap: 5px; padding: 4px; }
.nav-burger span { display: block; width: 24px; height: 2px; background: var(--white); border-radius: 2px; }
.nav-mobile {
  display: none;
  flex-direction: column;
  padding: 16px 28px 28px;
  background: var(--navy);
  border-top: 1px solid rgba(201,168,76,0.2);
}
.nav-mobile a {
  font-family: var(--ff-head);
  font-size: 1rem;
  font-weight: 600;
  color: rgba(255,255,255,0.8);
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.nav-mobile a:last-child { border-bottom: none; color: var(--gold); }
.nav-mobile.open { display: flex; }

/* ===========================
   HERO
   =========================== */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: calc(var(--nav-h) + 80px) 28px 100px;
  position: relative;
  overflow: hidden;
  background: var(--navy);
}
.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(13,27,42,0.82) 0%, rgba(13,43,78,0.75) 60%, rgba(13,27,42,0.88) 100%);
  z-index: 0;
}
.hero-inner {
  position: relative;
  z-index: 1;
  max-width: 780px;
  width: 100%;
}
.hero-eyebrow {
  font-family: var(--ff-head);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
}
.hero-headline {
  font-family: var(--ff-head);
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  font-weight: 500;
  line-height: 1.18;
  color: var(--white);
  letter-spacing: -0.02em;
  margin-bottom: 28px;
}
.hero-sub {
  font-family: var(--ff-body);
  font-size: 1rem;
  color: rgba(255,255,255,0.82);
  margin-bottom: 48px;
  line-height: 1.6;
  max-width: 540px;
  margin-left: auto;
  margin-right: auto;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; justify-content: center; }
.hero-scroll {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 1.25rem;
  color: var(--gold);
  opacity: 0.7;
  animation: bounce 2.2s infinite;
  z-index: 1;
}
@keyframes bounce { 0%,100% { transform: translateX(-50%) translateY(0); } 50% { transform: translateX(-50%) translateY(10px); } }

/* ===========================
   FOR YOU
   =========================== */
.for-you { background: var(--navy); padding: 88px 0; color: var(--white); }
.for-you .section-eyebrow { color: var(--gold); }
.for-you h2 {
  font-family: var(--ff-head);
  font-size: clamp(1.6rem, 3vw, 2.25rem);
  font-weight: 500;
  line-height: 1.2;
  margin-bottom: 52px;
  max-width: 620px;
  letter-spacing: -0.02em;
}
.for-you-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 20px; }
.for-you-item {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(201,168,76,0.2);
  border-radius: var(--radius);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: background var(--transition), border-color var(--transition);
}
.for-you-item:hover { background: rgba(201,168,76,0.08); border-color: rgba(201,168,76,0.4); }
.for-you-icon { width: 40px; height: 40px; flex-shrink: 0; }
.for-you-icon svg { width: 40px; height: 40px; }
.for-you-item p { font-size: 0.95rem; color: rgba(255,255,255,0.85); line-height: 1.55; }

/* ===========================
   HOW
   =========================== */
.how { padding: 96px 0; background: var(--light); }
.how h2 {
  font-family: var(--ff-head);
  font-size: clamp(1.6rem, 3vw, 2.25rem);
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 52px;
  max-width: 520px;
}
.how-steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 28px; }
.how-step {
  background: var(--white);
  border-radius: var(--radius);
  padding: 36px 32px;
  box-shadow: var(--shadow);
  border-top: 3px solid var(--gold);
  transition: box-shadow var(--transition), transform var(--transition);
}
.how-step:hover { box-shadow: var(--shadow-hover); transform: translateY(-3px); }
.how-num {
  font-family: var(--ff-head);
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--gold-lt);
  line-height: 1;
  margin-bottom: 18px;
}
.how-step h3 { font-family: var(--ff-head); font-size: 1.1rem; font-weight: 700; color: var(--navy); margin-bottom: 10px; }
.how-step p { font-size: 0.93rem; color: var(--mid); line-height: 1.65; }

/* ===========================
   SERVICES
   =========================== */
.services { padding: 96px 0; background: var(--white); }
.services h2 {
  font-family: var(--ff-head);
  font-size: clamp(1.6rem, 3vw, 2.25rem);
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 52px;
  max-width: 520px;
}
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 28px; }
.service-card {
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: box-shadow var(--transition), transform var(--transition), border-color var(--transition);
}
.service-card:hover { box-shadow: var(--shadow-hover); transform: translateY(-3px); border-color: var(--gold); }
.service-tag {
  display: inline-block;
  font-family: var(--ff-head);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  background: var(--gold-lt);
  padding: 5px 12px;
  border-radius: 4px;
  width: fit-content;
}
.service-card h3 { font-family: var(--ff-head); font-size: 1.4rem; font-weight: 800; color: var(--navy); line-height: 1.2; }
.service-intro { font-size: 0.93rem; color: var(--mid); line-height: 1.7; }
.service-card ul { display: flex; flex-direction: column; gap: 10px; }
.service-card li {
  font-size: 0.875rem;
  color: var(--mid);
  line-height: 1.55;
  padding-left: 18px;
  position: relative;
}
.service-card li::before { content: '→'; position: absolute; left: 0; color: var(--gold); font-size: 0.75rem; top: 3px; }
.service-outcome {
  font-size: 0.875rem;
  color: var(--navy);
  background: var(--gold-lt);
  border-left: 3px solid var(--gold);
  padding: 12px 16px;
  border-radius: 0 8px 8px 0;
  line-height: 1.5;
}
.service-price { font-family: var(--ff-head); font-size: 1rem; font-weight: 700; color: var(--navy); margin-top: auto; }

/* ===========================
   CASES
   =========================== */
.cases { padding: 96px 0; background: var(--light); }
.cases h2 {
  font-family: var(--ff-head);
  font-size: clamp(1.6rem, 3vw, 2.25rem);
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 52px;
  max-width: 480px;
}
.cases-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 28px; }
.case-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 36px 32px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 14px;
  border-bottom: 3px solid var(--gold);
  transition: box-shadow var(--transition), transform var(--transition);
}
.case-card:hover { box-shadow: var(--shadow-hover); transform: translateY(-3px); }
.case-industry {
  display: inline-block;
  font-family: var(--ff-head);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--white);
  background: var(--navy);
  padding: 5px 12px;
  border-radius: 4px;
  width: fit-content;
}
.case-card h3 { font-family: var(--ff-head); font-size: 1.15rem; font-weight: 700; color: var(--dark); line-height: 1.3; }
.case-card p { font-size: 0.9rem; color: var(--mid); line-height: 1.65; flex: 1; }
.case-link { font-family: var(--ff-head); font-size: 0.875rem; font-weight: 700; color: var(--gold); transition: color var(--transition); }
.case-link:hover { color: var(--navy); }

/* ===========================
   ABOUT
   =========================== */
.about { padding: 96px 0; background: var(--white); }
.about-inner { display: grid; grid-template-columns: 360px 1fr; gap: 72px; align-items: center; }
.about-img-wrap { position: relative; }
.about-img-wrap::after {
  content: '';
  position: absolute;
  bottom: -16px; right: -16px;
  width: 100%; height: 100%;
  border: 2px solid var(--gold);
  border-radius: var(--radius);
  z-index: 0;
}
.about-img {
  width: 100%;
  border-radius: var(--radius);
  object-fit: cover;
  aspect-ratio: 4/5;
  position: relative;
  z-index: 1;
}
.about-text { display: flex; flex-direction: column; gap: 20px; }
.about-text h2 {
  font-family: var(--ff-head);
  font-size: clamp(1.6rem, 3vw, 2.1rem);
  font-weight: 500;
  line-height: 1.2;
  color: var(--navy);
  letter-spacing: -0.02em;
}
.about-text p { font-size: 0.97rem; color: var(--mid); line-height: 1.8; }
.about-logos { display: flex; flex-wrap: wrap; gap: 20px; margin: 8px 0; align-items: center; }
.logo-badge {
  display: inline-flex;
  align-items: center;
  padding: 8px 12px;
  background: var(--light);
  border: 1px solid var(--border);
  border-radius: 8px;
  width: fit-content;
  white-space: nowrap;
}
.logo-badge svg { height: 20px; width: auto; display: block; }
.logo-text {
  font-family: var(--ff-head);
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: 0.02em;
  white-space: nowrap;
}
.logo-dot { color: var(--gold); }

/* ===========================
   CTA BANNER
   =========================== */
.cta-banner {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  padding: 88px 0;
  text-align: center;
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(201,168,76,0.12) 0%, transparent 70%);
}
.cta-banner h2 {
  font-family: var(--ff-head);
  font-size: clamp(1.6rem, 3vw, 2.25rem);
  font-weight: 500;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}
.cta-banner p { font-size: 1.1rem; opacity: 0.82; margin-bottom: 36px; max-width: 460px; margin-left: auto; margin-right: auto; }

/* ===========================
   CONTACT
   =========================== */
.contact { padding: 96px 0; background: var(--light); }
.contact-inner { display: grid; grid-template-columns: 1fr 1.5fr; gap: 72px; align-items: start; }
.contact-text h2 {
  font-family: var(--ff-head);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 500;
  line-height: 1.25;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
  color: var(--navy);
}
.contact-text p { font-size: 0.95rem; color: var(--mid); line-height: 1.75; margin-bottom: 10px; }
.contact-details { margin-top: 28px; display: flex; flex-direction: column; gap: 12px; }
.contact-details a { font-family: var(--ff-head); font-size: 0.95rem; font-weight: 600; color: var(--gold); transition: color var(--transition); }
.contact-details a:hover { color: var(--navy); }
.contact-form { display: flex; flex-direction: column; gap: 20px; background: var(--white); padding: 36px; border-radius: var(--radius); box-shadow: var(--shadow); }
.form-row { display: flex; flex-direction: column; gap: 6px; }
.form-row label { font-family: var(--ff-head); font-size: 0.8rem; font-weight: 700; color: var(--navy); letter-spacing: 0.02em; }
.form-row input, .form-row textarea {
  font-family: var(--ff-body);
  font-size: 0.95rem;
  color: var(--dark);
  background: var(--light);
  border: 1.5px solid var(--border);
  border-radius: 8px;
  padding: 13px 16px;
  outline: none;
  transition: border-color var(--transition), box-shadow var(--transition);
  resize: vertical;
}
.form-row input:focus, .form-row textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,168,76,0.15);
  background: var(--white);
}
.hidden { display: none; }
.form-note { font-size: 0.75rem; color: var(--mid); }

/* ===========================
   FOOTER
   =========================== */
.footer { background: var(--dark); color: rgba(255,255,255,0.6); padding: 60px 0 0; }
.footer-inner { display: grid; grid-template-columns: 1.6fr 1fr; gap: 48px; padding-bottom: 48px; }
.footer-logo { font-family: var(--ff-head); font-size: 1.4rem; font-weight: 800; color: var(--gold); margin-bottom: 16px; letter-spacing: -0.02em; }
.footer-left p { font-size: 0.875rem; line-height: 1.75; margin-bottom: 8px; }
.footer-right { display: flex; flex-direction: column; gap: 12px; }
.footer-right a { font-size: 0.875rem; color: rgba(255,255,255,0.55); transition: color var(--transition); }
.footer-right a:hover { color: var(--gold); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.08); padding: 20px 28px; text-align: center; font-size: 0.75rem; color: rgba(255,255,255,0.3); }

/* ===========================
   RESPONSIVE
   =========================== */
@media (max-width: 960px) {
  .about-inner { grid-template-columns: 1fr; }
  .about-img-wrap { max-width: 340px; margin: 0 auto; }
  .contact-inner { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
}
@media (max-width: 680px) {
  .nav-links { display: none; }
  .nav-burger { display: flex; }
  .hero-headline { font-size: 1.9rem; }
  .hero-sub { font-size: 1rem; }
  .contact-form { padding: 24px; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
}
