:root {
  --bg: #F4FAFD;
  --bg-alt: #E3F2FA;
  --bg-deep: #2F2F2F;
  --ink: #0A0A0A;
  --ink-soft: #333333;
  --ink-mute: #5E5E5E;
  --line: #C5E5F5;
  --gold: #5BAED1;
  --gold-deep: #1E6E9E;
  --gold-soft: #D0EBF8;
  --white: #FFFFFF;
  --shadow-sm: 0 1px 2px rgba(31,41,55,.04), 0 1px 3px rgba(31,41,55,.06);
  --shadow-md: 0 8px 30px rgba(31,41,55,.06);
  --shadow-lg: 0 24px 60px rgba(31,41,55,.10);
  --radius: 4px;
  --radius-lg: 10px;
  --maxw: 1200px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Assistant', -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-weight: 400;
  font-size: 17px;
  line-height: 1.7;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Assistant', sans-serif;
  font-weight: 400;
  color: var(--ink);
  letter-spacing: 0;
  margin: 0;
}
p { margin: 0; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

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

/* ---------- NAV ---------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(250, 248, 244, 0.85);
  backdrop-filter: saturate(140%) blur(10px);
  -webkit-backdrop-filter: saturate(140%) blur(10px);
  border-bottom: 1px solid transparent;
  transition: border-color .3s ease, background .3s ease;
}
.nav.scrolled { border-bottom-color: var(--line); }
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Assistant', sans-serif;
  font-weight: 700;
  font-size: 22px;
  letter-spacing: -0.01em;
}
.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.logo-name {
  font-family: 'Assistant', sans-serif;
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 0;
}
.logo-tagline {
  font-family: 'Assistant', sans-serif;
  font-weight: 500;
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-top: 4px;
}
.logo-mark {
  width: 36px; height: 36px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  display: grid; place-items: center;
  color: var(--gold-deep);
  font-family: 'Assistant', sans-serif;
  font-size: 18px;
  font-weight: 700;
}
.nav-links {
  display: flex;
  gap: 36px;
  align-items: center;
}
.nav-links a {
  font-size: 15px;
  color: var(--ink-soft);
  transition: color .2s;
  position: relative;
}
.nav-links a:hover { color: var(--ink); }
.nav-links a::after {
  content: "";
  position: absolute;
  bottom: -6px;
  right: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width .3s ease;
}
.nav-links a:hover::after { width: 100%; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 26px;
  font-family: 'Assistant', sans-serif;
  font-weight: 500;
  font-size: 15px;
  letter-spacing: 0.01em;
  border-radius: var(--radius);
  transition: all .25s ease;
  cursor: pointer;
  border: 1px solid transparent;
  white-space: nowrap;
}
.btn-primary {
  background: var(--bg-deep);
  color: var(--bg);
  border-color: var(--bg-deep);
}
.btn-primary:hover {
  background: var(--gold-deep);
  border-color: var(--gold-deep);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}
.btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--ink);
}
.btn-ghost:hover {
  background: var(--ink);
  color: var(--bg);
}
.btn-gold {
  background: var(--gold);
  color: var(--white);
  border-color: var(--gold);
}
.btn-gold:hover { background: var(--gold-deep); border-color: var(--gold-deep); }

.nav-cta { padding: 10px 22px; font-size: 14px; }

.hamburger { display: none; }

/* ---------- HERO ---------- */
.hero {
  position: relative;
  padding: 100px 0 120px;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  top: -120px; left: -120px;
  width: 460px; height: 460px;
  background: radial-gradient(circle, var(--gold-soft) 0%, transparent 70%);
  opacity: .55;
  pointer-events: none;
}
.hero::after {
  content: "";
  position: absolute;
  bottom: -160px; right: -100px;
  width: 380px; height: 380px;
  background: radial-gradient(circle, var(--gold-soft) 0%, transparent 70%);
  opacity: .35;
  pointer-events: none;
}
.hero-grid {
  display: block;
  max-width: 880px;
  margin: 0 auto;
  text-align: center;
  position: relative;
}
.hero-ornament {
  display: flex;
  justify-content: center;
  margin-bottom: 28px;
  color: var(--gold-deep);
}
.hero-ornament svg { display: block; }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  letter-spacing: 0.18em;
  color: var(--gold-deep);
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 28px;
}
.eyebrow::before {
  content: "";
  display: inline-block;
  width: 28px; height: 1px; background: var(--gold);
}
.hero h1 {
  font-size: clamp(44px, 6.8vw, 84px);
  line-height: 1.05;
  font-weight: 500;
  margin-bottom: 28px;
  letter-spacing: -0.01em;
}
.hero h1 em {
  font-style: italic;
  color: var(--gold-deep);
  font-weight: 400;
}
.hero-lead {
  font-size: 20px;
  color: var(--ink-soft);
  max-width: 620px;
  margin: 0 auto 44px;
  line-height: 1.7;
}
.hero-cta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
}
.hero-meta {
  margin-top: 80px;
  padding-top: 44px;
  border-top: 1px solid var(--line);
  display: flex;
  gap: 44px;
  flex-wrap: wrap;
  justify-content: center;
}
.hero-meta-item { text-align: center; }
.hero-meta-item {
  display: flex;
  flex-direction: column;
}
.hero-meta-num {
  font-family: 'Assistant', sans-serif;
  font-size: 32px;
  font-weight: 500;
  color: var(--ink);
  line-height: 1;
  margin-bottom: 6px;
}
.hero-meta-num span { color: var(--gold-deep); }
.hero-meta-label {
  font-size: 13px;
  color: var(--ink-mute);
  letter-spacing: 0.04em;
}

.hero-visual {
  position: relative;
  aspect-ratio: 4/5;
  max-height: 560px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: linear-gradient(135deg, var(--bg-alt) 0%, var(--gold-soft) 100%);
  box-shadow: var(--shadow-lg);
}
.hero-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 30% 20%, rgba(184,153,104,0.25) 0%, transparent 50%),
    radial-gradient(circle at 80% 75%, rgba(27,31,35,0.15) 0%, transparent 50%);
}
.hero-card {
  position: absolute;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 18px 22px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--line);
  display: flex;
  align-items: center;
  gap: 14px;
}
.hero-card-1 { top: 8%; right: -28px; }
.hero-card-2 { bottom: 12%; left: -28px; }
.hero-card-icon {
  width: 40px; height: 40px;
  background: var(--gold-soft);
  color: var(--gold-deep);
  border-radius: 50%;
  display: grid; place-items: center;
  flex-shrink: 0;
}
.hero-card-icon svg { width: 20px; height: 20px; }
.hero-card-text { line-height: 1.3; }
.hero-card-text strong { display: block; font-size: 14px; color: var(--ink); font-weight: 600; }
.hero-card-text span { font-size: 12px; color: var(--ink-mute); }

.hero-portrait {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ---------- TRUSTBAR ---------- */
.trustbar {
  padding: 36px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--bg);
}
.trust-inner {
  display: flex;
  align-items: center;
  gap: 56px;
  flex-wrap: wrap;
  justify-content: center;
}
.trust-label {
  font-size: 12px;
  letter-spacing: 0.18em;
  color: var(--ink-mute);
  text-transform: uppercase;
}
.trust-logo {
  font-family: 'Assistant', sans-serif;
  font-size: 18px;
  color: var(--ink-mute);
  font-weight: 500;
  opacity: .7;
  letter-spacing: 0.04em;
}
.trust-logo-styled {
  font-size: 22px;
  opacity: 0.9;
  transition: opacity .25s;
}
.trust-logo-styled:hover { opacity: 1; }
.trust-logo-hashav {
  font-family: 'Assistant', sans-serif;
  font-weight: 900;
  letter-spacing: 0.04em;
  color: #0F4C81;
}
.trust-logo-intelect {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  font-family: 'Assistant', sans-serif;
  line-height: 1;
}
.trust-logo-intelect .intelect-mark {
  font-size: 22px;
  font-weight: 300;
  color: #1F2937;
  letter-spacing: 0.08em;
  text-transform: lowercase;
}
.trust-logo-intelect .intelect-dot {
  display: inline-block;
  width: 7px;
  height: 7px;
  background: #D63B3B;
  border-radius: 50%;
  margin: 0 2px;
  vertical-align: middle;
  transform: translateY(-2px);
}
.trust-logo-intelect .intelect-tag {
  font-size: 8px;
  font-weight: 400;
  color: #374151;
  letter-spacing: 0.32em;
  margin-top: 4px;
  text-transform: lowercase;
}
.trust-logo-amplication {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: 'Assistant', sans-serif;
  font-weight: 700;
  font-size: 22px;
  letter-spacing: -0.015em;
  text-transform: lowercase;
  color: #0A0A0A;
}
.trust-logo-amplication .amp-mark {
  width: 26px;
  height: 26px;
  flex-shrink: 0;
}
.trust-logo-overcut {
  display: inline-flex;
  align-items: center;
  color: #000;
}
.trust-logo-overcut .trust-logo-wordmark {
  height: 22px;
  width: auto;
  display: block;
}

/* ---------- SECTION BASE ---------- */
section { padding: 120px 0; }
.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  letter-spacing: 0.18em;
  color: var(--gold-deep);
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 22px;
}
.section-eyebrow::before {
  content: "";
  display: inline-block;
  width: 28px; height: 1px; background: var(--gold);
}
.section-title {
  font-size: clamp(32px, 3.6vw, 48px);
  line-height: 1.15;
  font-weight: 500;
  margin-bottom: 22px;
}
.section-title em { font-style: italic; color: var(--gold-deep); font-weight: 400; }
.section-lead {
  font-size: 18px;
  color: var(--ink-soft);
  max-width: 640px;
  line-height: 1.65;
}
.section-head { margin-bottom: 72px; }
.section-head.center { text-align: center; }
.section-head.center .section-lead { margin: 0 auto; }
.section-head.center .section-eyebrow,
.section-head.center .section-title { display: inline-block; }

/* ---------- ABOUT ---------- */
.about {
  background: var(--white);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.about-grid {
  display: block;
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}
.about-ornament {
  display: flex;
  justify-content: center;
  margin-bottom: 24px;
  color: var(--gold-deep);
}
.about-grid p { max-width: 640px; margin-left: auto; margin-right: auto; }
.about-image {
  aspect-ratio: 1;
  border-radius: var(--radius-lg);
  background: var(--bg-alt);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.about-image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.about-image::after {
  content: "";
  position: absolute;
  inset: 24px;
  border: 1px solid rgba(255,255,255,0.4);
  border-radius: 6px;
  pointer-events: none;
  z-index: 1;
}
.about p {
  font-size: 17px;
  color: var(--ink-soft);
  margin-bottom: 18px;
  line-height: 1.8;
}
.about p:last-of-type { margin-bottom: 32px; }
.about-sig {
  font-family: 'Assistant', sans-serif;
  font-style: italic;
  font-size: 22px;
  color: var(--gold-deep);
}

/* ---------- SERVICES ---------- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.service {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 40px 36px;
  transition: all .35s ease;
  position: relative;
  overflow: hidden;
}
.service::before {
  content: "";
  position: absolute;
  top: 0; right: 0;
  width: 0; height: 2px;
  background: var(--gold);
  transition: width .4s ease;
}
.service:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--gold-soft);
}
.service:hover::before { width: 100%; }
.service-icon {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--bg-alt);
  color: var(--gold-deep);
  display: grid; place-items: center;
  margin-bottom: 28px;
  transition: background .3s;
}
.service:hover .service-icon { background: var(--gold-soft); }
.service-icon svg { width: 26px; height: 26px; }
.service h3 {
  font-size: 24px;
  font-weight: 500;
  margin-bottom: 14px;
}
.service p {
  color: var(--ink-soft);
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 24px;
}
.service ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.service ul li {
  font-size: 14px;
  color: var(--ink-mute);
  padding: 6px 0 6px 0;
  padding-right: 18px;
  position: relative;
}
.service ul li::before {
  content: "";
  position: absolute;
  right: 0;
  top: 14px;
  width: 6px; height: 6px;
  background: var(--gold);
  border-radius: 50%;
}
.service-tall { grid-column: span 1; }
.service-wide { grid-column: span 2; }

/* ---------- WHY US / PROCESS ---------- */
.process {
  background: var(--bg-deep);
  color: var(--bg);
}
.process .section-title { color: var(--bg); }
.process .section-title em { color: var(--gold-soft); }
.process .section-lead { color: rgba(250,248,244,.85); }
.process .section-eyebrow { color: var(--gold-soft); }
.process .section-eyebrow::before { background: var(--gold-soft); }

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  counter-reset: step;
}
.step {
  position: relative;
  padding-top: 28px;
  border-top: 1px solid rgba(228,212,181,0.25);
  counter-increment: step;
}
.step::before {
  content: counter(step, decimal-leading-zero);
  font-family: 'Assistant', sans-serif;
  font-size: 14px;
  color: var(--gold-soft);
  letter-spacing: 0.14em;
  display: block;
  margin-bottom: 18px;
}
.step h3 {
  color: var(--bg);
  font-size: 22px;
  font-weight: 500;
  margin-bottom: 12px;
}
.step p {
  color: rgba(250,248,244,.65);
  font-size: 15px;
  line-height: 1.7;
}

/* ---------- TESTIMONIALS ---------- */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}
.testimonial {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 40px 34px;
  position: relative;
}
.testimonial::before {
  content: "“";
  position: absolute;
  top: 14px; right: 24px;
  font-family: 'Assistant', sans-serif;
  font-size: 80px;
  line-height: 1;
  color: var(--gold-soft);
}
.testimonial-text {
  font-size: 17px;
  line-height: 1.75;
  color: var(--ink);
  margin-bottom: 24px;
  position: relative;
  z-index: 1;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}
.author-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--bg-alt);
  color: var(--gold-deep);
  display: grid; place-items: center;
  font-family: 'Assistant', sans-serif;
  font-weight: 500;
  font-size: 18px;
  flex-shrink: 0;
}
.author-info { line-height: 1.4; }
.author-info strong { font-size: 15px; font-weight: 600; color: var(--ink); display: block; }
.author-info span { font-size: 13px; color: var(--ink-mute); }

/* ---------- CONTACT ---------- */
.contact {
  background: var(--bg);
  border-top: 1px solid var(--line);
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 80px;
  align-items: start;
}
.contact-info h2 { margin-bottom: 22px; }
.contact-info > p {
  color: var(--ink-soft);
  font-size: 18px;
  line-height: 1.7;
  margin-bottom: 40px;
}
.contact-list {
  display: flex;
  flex-direction: column;
  gap: 22px;
  margin-bottom: 40px;
}
.contact-item {
  display: flex;
  align-items: center;
  gap: 18px;
  color: var(--ink);
  transition: color .2s;
}
.contact-item:hover { color: var(--gold-deep); }
.contact-item-icon {
  width: 48px; height: 48px;
  border: 1px solid var(--line);
  border-radius: 50%;
  display: grid; place-items: center;
  color: var(--gold-deep);
  flex-shrink: 0;
  background: var(--white);
  transition: all .25s;
}
.contact-item:hover .contact-item-icon {
  background: var(--gold-soft);
  border-color: var(--gold-soft);
}
.contact-item-icon svg { width: 20px; height: 20px; }
.contact-item-info { line-height: 1.4; }
.contact-item-info span {
  display: block;
  font-size: 12px;
  color: var(--ink-mute);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 2px;
}
.contact-item-info strong { font-size: 17px; font-weight: 500; color: inherit; }

.contact-hours {
  padding: 22px 24px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  font-size: 14px;
  color: var(--ink-soft);
  line-height: 1.7;
}
.contact-hours strong { color: var(--ink); display: block; margin-bottom: 6px; }

/* ---------- FORM ---------- */
.form-card {
  background: var(--white);
  padding: 48px 44px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-md);
}
.field { margin-bottom: 22px; }
.field label {
  display: block;
  font-size: 14px;
  color: var(--ink-soft);
  margin-bottom: 8px;
  font-weight: 500;
}
.field label .req { color: var(--gold-deep); margin-right: 2px; }
.field input, .field textarea, .field select {
  width: 100%;
  padding: 14px 16px;
  font-family: inherit;
  font-size: 16px;
  color: var(--ink);
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: border-color .2s, background .2s;
}
.field input:focus, .field textarea:focus, .field select:focus {
  outline: none;
  border-color: var(--gold);
  background: var(--white);
}
.field textarea { min-height: 120px; resize: vertical; }
.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-card .btn {
  width: 100%;
  padding: 16px 28px;
  font-size: 16px;
  margin-top: 6px;
}
.form-note {
  font-size: 13px;
  color: var(--ink-mute);
  margin-top: 16px;
  text-align: center;
}
.form-success {
  display: none;
  padding: 18px 20px;
  background: #F0F7F1;
  border: 1px solid #C8E0CC;
  color: #2F6037;
  border-radius: var(--radius);
  margin-bottom: 20px;
  font-size: 15px;
}
.form-success.show { display: block; }

/* ---------- FOOTER ---------- */
footer {
  background: var(--bg-deep);
  color: rgba(250,248,244,.7);
  padding: 60px 0 30px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 56px;
  margin-bottom: 50px;
}
.footer-grid h3 {
  font-family: 'Assistant', sans-serif;
  font-size: 17px;
  color: var(--bg);
  margin: 0 0 20px;
  font-weight: 500;
}
.footer-grid ul { list-style: none; padding: 0; margin: 0; }
.footer-grid li { margin-bottom: 10px; font-size: 14px; }
.footer-grid a { color: rgba(250,248,244,.7); transition: color .2s; }
.footer-grid a:hover { color: var(--gold-soft); }
.footer-brand {
  font-family: 'Assistant', sans-serif;
  font-size: 24px;
  color: var(--bg);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.footer-brand .logo-mark { border-color: var(--gold-soft); color: var(--gold-soft); }
.footer-brand-text { display: flex; flex-direction: column; line-height: 1.1; }
.footer-brand-name {
  font-family: 'Assistant', sans-serif;
  font-size: 22px;
  font-weight: 600;
  letter-spacing: 0;
}
.footer-brand-tagline {
  font-family: 'Assistant', sans-serif;
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-soft);
  margin-top: 4px;
}
.footer-grid p { font-size: 14px; line-height: 1.7; max-width: 320px; }
.footer-bottom {
  border-top: 1px solid rgba(228,212,181,0.15);
  padding-top: 22px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 13px;
  color: rgba(250,248,244,.75);
}

/* ---------- WHATSAPP FLOAT ---------- */
.wa-float {
  position: fixed;
  bottom: 26px;
  left: 26px;
  width: 58px; height: 58px;
  background: #25D366;
  color: white;
  border-radius: 50%;
  display: grid; place-items: center;
  box-shadow: 0 12px 30px rgba(37,211,102,0.35);
  z-index: 100;
  transition: transform .25s;
}
.wa-float:hover { transform: scale(1.08) rotate(-4deg); }
.wa-float svg { width: 28px; height: 28px; }

/* ---------- ANIMATIONS ---------- */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .8s ease, transform .8s ease;
}
.reveal.in {
  opacity: 1;
  transform: none;
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 980px) {
  section { padding: 80px 0; }
  .hero { padding: 60px 0 80px; }
  .hero-grid { grid-template-columns: 1fr; gap: 56px; }
  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: repeat(2, 1fr); gap: 36px; }
  .contact-grid { grid-template-columns: 1fr; gap: 56px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .nav-links { display: none; }
  .hamburger {
    display: grid; place-items: center;
    width: 42px; height: 42px;
    background: transparent;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    cursor: pointer;
  }
  .hamburger span {
    display: block;
    width: 18px; height: 1px; background: var(--ink);
    position: relative;
  }
  .hamburger span::before, .hamburger span::after {
    content: ""; position: absolute; left: 0;
    width: 18px; height: 1px; background: var(--ink);
  }
  .hamburger span::before { top: -6px; }
  .hamburger span::after { top: 6px; }
  .nav-cta { display: none; }
  .hero-card { display: none; }
}
@media (max-width: 620px) {
  .container { padding: 0 20px; }
  .services-grid { grid-template-columns: 1fr; }
  .field-row { grid-template-columns: 1fr; }
  .form-card { padding: 32px 26px; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero h1 { font-size: 40px; }
  .hero-meta { gap: 28px; }
}
