/* ============================================
   ZJ Automate — Base Stylesheet
   Brand guidelines v1.0 (Aug 2026)
   ============================================ */

:root {
  /* Core palette */
  --purple: #6B2A8D;   /* Monarch Purple */
  --violet: #8A35D1;   /* Future Violet */
  --blue: #008FD3;     /* JT Blue */
  --cyan: #18C7E7;     /* Smart Cyan */
  --navy: #10152E;     /* Human Navy */
  --cloud: #F5F7FB;    /* Cloud */
  --white: #FFFFFF;
  --purple-tint: #F3ECF7; /* soft Monarch Purple wash, for the Founders block */
  --blue-tint: #EAF5FC;   /* soft JT Blue wash, for the What We Do block */

  --gradient: linear-gradient(90deg, var(--purple) 0%, var(--blue) 60%, var(--cyan) 100%);
  --gradient-soft: linear-gradient(135deg, rgba(107,42,141,0.08) 0%, rgba(0,143,211,0.08) 60%, rgba(24,199,231,0.08) 100%);

  --font-heading: 'Montserrat', 'Segoe UI', sans-serif;
  --font-body: 'Aptos', 'Calibri', 'Segoe UI', system-ui, -apple-system, sans-serif;

  --max-width: 1180px;
  --radius: 14px;
  --shadow: 0 20px 45px -25px rgba(16, 21, 46, 0.35);
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--navy);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4,
.nav-links a,
.btn,
.eyebrow,
.logo-text {
  font-family: var(--font-heading);
}

h1, h2, h3, h4 {
  margin: 0 0 0.6em;
  line-height: 1.15;
  font-weight: 700;
  color: var(--navy);
  text-wrap: balance;
}

h1 { font-size: clamp(2.1rem, 4.5vw, 3.4rem); }
h2 { font-size: clamp(1.7rem, 3vw, 2.4rem); }
h3 { font-size: 1.25rem; }

p { margin: 0 0 1em; }

a { color: inherit; text-decoration: none; }

img { max-width: 100%; display: block; }

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

.eyebrow {
  display: inline-block;
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.eyebrow--gradient {
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.eyebrow--muted {
  color: rgba(16, 21, 46, 0.5);
}

.section--navy .eyebrow--muted {
  color: rgba(255, 255, 255, 0.6);
}

.section {
  padding: 96px 0;
}

.section--cloud { background: var(--cloud); }
.section--navy { background: var(--navy); color: var(--white); }
.section--navy h2, .section--navy h3 { color: var(--white); }
.section--navy p { color: rgba(255,255,255,0.78); }

.section--tint-purple { background: var(--purple-tint); }
.section--tint-purple h2 { color: var(--purple); }

.section--tint-blue { background: var(--blue-tint); }
.section--tint-blue h2 { color: var(--blue); }

.section--flush-top { padding-top: 0; }

.section-head {
  max-width: 680px;
  margin: 0 0 56px;
}

.section-head.center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.lede {
  font-size: 1.15rem;
  color: rgba(16, 21, 46, 0.72);
}

.section--navy .lede { color: rgba(255,255,255,0.78); }

/* ---------- Buttons ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 15px 30px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease;
  white-space: nowrap;
}

.btn-primary {
  background: var(--gradient);
  background-size: 160% 100%;
  background-position: left center;
  color: var(--white);
  box-shadow: 0 14px 30px -12px rgba(107, 42, 141, 0.55);
}

.btn-primary:hover {
  background-position: right center;
  transform: translateY(-2px);
}

.btn-ghost {
  background: transparent;
  color: var(--navy);
  border: 1.5px solid rgba(16, 21, 46, 0.18);
}

.btn-ghost:hover {
  border-color: var(--navy);
}

.section--navy .btn-ghost {
  color: var(--white);
  border-color: rgba(255,255,255,0.35);
}

.section--navy .btn-ghost:hover {
  border-color: var(--white);
}

/* ---------- Header ---------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(16, 21, 46, 0.06);
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 40px;
  padding-top: 14px;
  padding-bottom: 14px;
}

.nav-links { order: 1; }
.nav-cta { order: 2; }

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  order: 3;
  margin-left: auto;
  flex-shrink: 0;
}

.brand img {
  height: 58px;
  width: auto;
  flex-shrink: 0;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
}

.nav-links a {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--navy);
  opacity: 0.82;
  white-space: nowrap;
  transition: opacity 0.2s ease;
}

.nav-links a:hover { opacity: 1; }

.nav-cta {
  display: flex;
  align-items: center;
  gap: 22px;
  flex-shrink: 0;
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--navy);
  margin: 5px 0;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

/* ---------- Hero ---------- */

.hero {
  position: relative;
  overflow: hidden;
  padding: 120px 0 100px;
  background: var(--navy);
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient);
}

.hero h1,
.hero .lede {
  color: var(--white);
}

.hero .lede {
  color: rgba(255, 255, 255, 0.72);
}

.hero .btn-ghost {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.35);
}

.hero .btn-ghost:hover {
  border-color: var(--white);
}

.hero .trust-strip {
  border-top-color: rgba(255, 255, 255, 0.14);
}

.hero .trust-item {
  color: var(--white);
}

.hero .trust-item small {
  color: rgba(255, 255, 255, 0.55);
}

.hero .container {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 56px;
  align-items: center;
}

.hero-eyebrow-full {
  grid-column: 1 / -1;
  font-size: clamp(0.6rem, 2.6vw, 1.2rem);
  letter-spacing: 0.05em;
  margin-bottom: 40px;
  white-space: nowrap;
}

.hero h1 span {
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 34px;
  flex-wrap: wrap;
}

.hero-visual {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 22px;
}

.hero-pulse-link {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--cyan);
  transition: opacity 0.2s ease;
}

.hero-pulse-link:hover {
  opacity: 0.8;
}

.hero-founders-img {
  width: 100%;
  max-width: 400px;
  height: auto;
  filter: drop-shadow(0 30px 45px rgba(0, 0, 0, 0.45));
}

.glow-card {
  background: var(--white);
  border-radius: 24px;
  box-shadow: var(--shadow);
  padding: 42px;
  width: 100%;
  max-width: 420px;
}

.glow-card img {
  width: 100%;
}

.trust-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 34px;
  margin-top: 56px;
  padding-top: 32px;
  border-top: 1px solid rgba(16, 21, 46, 0.08);
}

.trust-item {
  display: flex;
  align-items: baseline;
  gap: 10px;
  font-weight: 700;
  color: var(--navy);
}

.trust-item span.stat {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.trust-item small {
  font-weight: 500;
  color: rgba(16, 21, 46, 0.6);
  font-size: 0.85rem;
}

/* ---------- Promise ---------- */

.promise-hero-band {
  background: var(--cloud);
  padding: 88px 0 64px;
}

.promise-hero-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 56px;
  align-items: center;
}

.promise-photo img {
  width: 100%;
  max-width: 420px;
  height: auto;
  filter: drop-shadow(0 20px 30px rgba(16, 21, 46, 0.18));
}

.promise-hero-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 22px;
}

.promise-hero-logo {
  width: 100%;
  max-width: 320px;
  height: auto;
}

.promise-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.promise-tagline {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.5rem;
  color: var(--navy);
  margin: 0;
}

.promise-tagline span {
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.promise-quote-band {
  background: var(--navy);
  padding: 72px 0;
}

.promise-quote-content {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

.promise-quote-content .eyebrow--muted {
  color: rgba(255, 255, 255, 0.6);
}

.promise-quote-content h2,
.promise-quote-content .lede {
  color: var(--white);
}

.promise-quote-content .lede {
  color: rgba(255, 255, 255, 0.78);
}

.promise-quote {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 1.4;
  color: var(--white);
  border-left: 4px solid transparent;
  border-image: var(--gradient) 1;
  padding-left: 26px;
  text-align: left;
  margin: 32px 0 0;
}

.promise-slogan {
  margin-top: 28px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* ---------- Cards / Services ---------- */

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 34px 30px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}

.card-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: var(--gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-weight: 700;
  font-family: var(--font-heading);
  margin-bottom: 20px;
  font-size: 1.1rem;
}

.card p {
  color: rgba(16, 21, 46, 0.68);
  margin-bottom: 0;
}

/* ---------- Personality strip ---------- */

.trait-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}

.trait {
  padding: 28px 0 0;
  border-top: 3px solid;
  border-image: var(--gradient) 1;
}

.trait h3 { font-size: 1.05rem; }

.trait p {
  font-size: 0.92rem;
  color: rgba(16, 21, 46, 0.65);
  margin-bottom: 0;
}

/* ---------- Process ---------- */

.process-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  counter-reset: step;
}

.process-step {
  position: relative;
  padding: 30px 24px 24px;
  background: var(--cloud);
  border-radius: var(--radius);
}

.process-step::before {
  counter-increment: step;
  content: counter(step, decimal-leading-zero);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  display: block;
  margin-bottom: 14px;
}

.process-step h3 { font-size: 1.05rem; }
.process-step p { font-size: 0.92rem; color: rgba(16, 21, 46, 0.65); margin-bottom: 0; }

/* ---------- Founders: origin story ---------- */

.story-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 60px;
  align-items: center;
  margin-bottom: 96px;
}

.story-photo {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.story-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.story-photo figcaption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 18px 22px;
  background: linear-gradient(0deg, rgba(16,21,46,0.82), transparent);
  color: var(--white);
  font-size: 0.85rem;
  font-weight: 600;
}

.social-callout {
  background: var(--cloud);
  border-radius: var(--radius);
  padding: 34px 36px;
  position: relative;
  border-left: 4px solid transparent;
  border-image: var(--gradient) 1;
}

.social-callout .tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(16, 21, 46, 0.5);
  margin-bottom: 16px;
}

.social-callout p {
  font-size: 1.05rem;
  margin-bottom: 0.5em;
}

.social-callout .infinity {
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-weight: 700;
}

/* ---------- Founders: team cards ---------- */

.team-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.team-card {
  background: var(--white);
  border: 1px solid rgba(16, 21, 46, 0.08);
  border-radius: var(--radius);
  padding: 34px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.team-card .photo {
  width: 100%;
  max-width: 210px;
  margin-bottom: 24px;
}

.team-card .photo img {
  width: 100%;
  height: auto;
  display: block;
  filter: drop-shadow(0 18px 24px rgba(16, 21, 46, 0.22));
}

.team-card > div:last-child {
  text-align: left;
  width: 100%;
}

.team-card h3 {
  margin-bottom: 2px;
}

.team-card .role {
  display: block;
  font-size: 0.82rem;
  font-weight: 700;
  margin-bottom: 12px;
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.team-card p {
  font-size: 0.92rem;
  color: rgba(16, 21, 46, 0.68);
  margin-bottom: 10px;
}

.team-card .site-link-label {
  font-size: 0.85rem;
  color: rgba(16, 21, 46, 0.55);
  margin-right: 6px;
}

.team-card a.site-link {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--navy);
  border-bottom: 1.5px solid var(--cyan);
}

.credentials {
  list-style: none;
  margin: 0 0 16px;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.credentials li {
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  color: var(--navy);
  background: var(--cloud);
  border: 1px solid rgba(16, 21, 46, 0.08);
  border-radius: 999px;
  padding: 6px 13px;
}

/* ---------- CTA ---------- */

.cta {
  background: var(--navy);
  border-radius: 28px;
  padding: 72px 56px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 20%, rgba(138, 53, 209, 0.35), transparent 45%),
              radial-gradient(circle at 80% 80%, rgba(24, 199, 231, 0.3), transparent 45%);
}

.cta > * { position: relative; z-index: 1; }

.cta h2 { color: var(--white); }
.cta p { color: rgba(255,255,255,0.78); max-width: 560px; margin-left: auto; margin-right: auto; }

.cta .btn-ghost {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.4);
}

.cta .btn-ghost:hover {
  border-color: var(--white);
}

.cta-actions {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
  flex-wrap: wrap;
}

/* ---------- Contact ---------- */

.cta-band {
  background: var(--gradient);
  padding: 64px 0 52px;
  margin-bottom: 60px;
}

.cta-band .section-head {
  margin-bottom: 0;
}

.cta-band .eyebrow--gradient {
  background: none;
  -webkit-background-clip: initial;
  background-clip: initial;
  -webkit-text-fill-color: initial;
  color: rgba(255, 255, 255, 0.85);
}

.cta-band h2,
.cta-band .lede {
  color: var(--white);
}

.cta-band .lede {
  color: rgba(255, 255, 255, 0.85);
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 56px;
  align-items: start;
}

.info-block {
  margin-bottom: 44px;
}

.info-block h3 {
  font-size: 1.05rem;
  margin-bottom: 18px;
}

.info-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.info-list li {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.info-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: var(--gradient);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
}

.info-list strong {
  display: block;
  font-size: 0.95rem;
  margin-bottom: 2px;
}

.info-list span,
.info-list a {
  font-size: 0.92rem;
  color: rgba(16, 21, 46, 0.68);
}

.info-list a { text-decoration: underline; text-decoration-color: var(--cyan); text-underline-offset: 3px; }

.steps-list {
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: steps;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.steps-list li {
  position: relative;
  padding-left: 40px;
  font-size: 0.92rem;
  color: rgba(16, 21, 46, 0.68);
}

.steps-list li::before {
  counter-increment: steps;
  content: counter(steps);
  position: absolute;
  left: 0;
  top: 0;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--cloud);
  color: var(--navy);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.steps-list strong { color: var(--navy); }

/* FAQ accordion */

.faq-item {
  border-bottom: 1px solid rgba(16, 21, 46, 0.1);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 16px 0;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.94rem;
  color: var(--navy);
  text-align: left;
}

.faq-icon {
  flex-shrink: 0;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  border: 1.5px solid rgba(16, 21, 46, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.faq-item.open .faq-icon {
  transform: rotate(45deg);
  background: var(--gradient);
  border-color: transparent;
  color: var(--white);
}

.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.25s ease;
}

.faq-answer p {
  overflow: hidden;
  min-height: 0;
  font-size: 0.9rem;
  color: rgba(16, 21, 46, 0.65);
  margin: 0 0 16px;
}

.faq-item.open .faq-answer {
  grid-template-rows: 1fr;
}

.faq-answer > p {
  grid-row: 1 / -1;
}

/* Contact form card */

.contact-form-card {
  background: var(--cloud);
  border-radius: 20px;
  padding: 40px;
  position: sticky;
  top: 100px;
}

.hp-field {
  position: absolute;
  left: -9999px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.form-field {
  margin-bottom: 18px;
}

.form-field label {
  display: block;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
}

.form-field label span {
  font-weight: 500;
  color: rgba(16, 21, 46, 0.5);
}

.form-field input[type="text"],
.form-field input[type="email"],
.form-field input[type="url"],
.form-field textarea {
  width: 100%;
  font-family: var(--font-body);
  font-size: 0.95rem;
  padding: 13px 15px;
  border-radius: 10px;
  border: 1.5px solid rgba(16, 21, 46, 0.14);
  background: var(--white);
  color: var(--navy);
  transition: border-color 0.2s ease;
}

.form-field input:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--blue);
}

.form-field textarea { resize: vertical; }

.checklist {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 12px;
}

.checklist label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--navy);
  cursor: pointer;
}

.checklist input[type="checkbox"] {
  width: 18px;
  height: 18px;
  accent-color: var(--blue);
  flex-shrink: 0;
}

.time-estimate {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--blue);
  background: rgba(0, 143, 211, 0.08);
  border-radius: 10px;
  padding: 12px 14px;
  margin: 0;
  transition: background 0.2s ease;
}

.time-estimate.has-estimate {
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  background-color: transparent;
}

.btn-block {
  width: 100%;
  justify-content: center;
}

.form-note {
  text-align: center;
  font-size: 0.82rem;
  color: rgba(16, 21, 46, 0.5);
  margin: 14px 0 0;
}

.form-success {
  margin-top: 20px;
  padding: 20px;
  border-radius: 12px;
  background: var(--white);
  border: 1px solid rgba(16, 21, 46, 0.1);
}

.form-success strong { color: var(--navy); }
.form-success p { font-size: 0.9rem; color: rgba(16, 21, 46, 0.68); margin: 6px 0 0; }

/* ---------- Footer ---------- */

.site-footer {
  background: var(--navy);
  color: rgba(255,255,255,0.72);
  padding: 64px 0 28px;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 44px;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}

.footer-brand img { height: 40px; margin-bottom: 18px; }

.footer-brand p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.6);
  max-width: 280px;
}

.footer-col h4 {
  color: var(--white);
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.footer-col ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-col a {
  font-size: 0.92rem;
  color: rgba(255,255,255,0.68);
  transition: color 0.2s ease;
}

.footer-col a:hover { color: var(--white); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 26px;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.5);
  flex-wrap: wrap;
  gap: 12px;
}

.footer-tagline {
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-weight: 700;
}

/* ---------- Responsive ---------- */

@media (max-width: 960px) {
  .hero .container,
  .promise-hero-grid,
  .promise-grid,
  .story-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .promise-hero-content { align-items: center; text-align: center; }

  .hero-visual { order: -1; max-width: 360px; margin: 0 auto; }
  .story-photo { order: -1; min-height: 320px; }

  .card-grid { grid-template-columns: repeat(2, 1fr); }
  .trait-grid { grid-template-columns: repeat(2, 1fr); }
  .process-list { grid-template-columns: repeat(2, 1fr); }
  .team-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; }

  .contact-form-card { position: static; }
}

@media (max-width: 1180px) {
  .nav-links, .nav-cta .btn-ghost { display: none; }
  .nav-toggle { display: block; }
}

@media (max-width: 760px) {

  .section { padding: 72px 0; }

  .card-grid, .trait-grid, .process-list { grid-template-columns: 1fr; }

  .team-card { padding: 26px; }
  .team-card .photo { max-width: 160px; }

  .form-row { grid-template-columns: 1fr; }
  .contact-form-card { padding: 28px 22px; }

  .cta { padding: 52px 26px; }

  .footer-top { grid-template-columns: 1fr; gap: 30px; }

  .footer-bottom { flex-direction: column; align-items: flex-start; }
}

/* Mobile nav drawer */
body.nav-open .nav-links {
  display: flex;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  flex-direction: column;
  background: var(--white);
  padding: 24px;
  gap: 20px;
  border-bottom: 1px solid rgba(16,21,46,0.08);
  box-shadow: var(--shadow);
}

body.nav-open .nav-cta .btn-ghost {
  display: none;
}
