/* =========================================================
   Honor Group — Engineering Design Landing
   ========================================================= */

:root {
  --navy:        #0B1C2C;
  --navy-2:      #102636;
  --steel:       #1E3A52;
  --steel-soft:  #26455F;
  --accent:      #E8A43C;
  --accent-hot:  #F25C3C;
  --accent-soft: #F6D69B;
  --bg:          #F7F6F2;
  --bg-card:     #FFFFFF;
  --text:        #0F1E2C;
  --muted:       #5C6B7A;
  --line:        #DFE4EA;
  --line-dark:   #24425C;
  --ok:          #3BA776;

  --radius:      14px;
  --radius-lg:   22px;
  --shadow-sm:   0 1px 2px rgba(11,28,44,.06), 0 1px 3px rgba(11,28,44,.05);
  --shadow-md:   0 6px 18px -8px rgba(11,28,44,.25), 0 2px 6px rgba(11,28,44,.06);
  --shadow-lg:   0 24px 60px -24px rgba(11,28,44,.35);

  --container:   1200px;
  --ease:        cubic-bezier(.2,.7,.2,1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  font-feature-settings: "ss01","cv11";
  line-height: 1.55;
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }

h1,h2,h3,h4 {
  font-family: 'Manrope', Inter, sans-serif;
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin: 0 0 .5em;
  font-weight: 700;
}
h1 { font-size: clamp(2.25rem, 4.8vw, 4rem); font-weight: 800; }
h2 { font-size: clamp(1.75rem, 3.2vw, 2.75rem); }
h3 { font-size: 1.25rem; }

p  { margin: 0 0 1em; color: var(--text); }
.muted { color: var(--muted); }

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

/* =========================================================
   NAV
   ========================================================= */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(247,246,242,.85);
  backdrop-filter: saturate(140%) blur(14px);
  -webkit-backdrop-filter: saturate(140%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .2s var(--ease), background .2s var(--ease);
}
.nav.scrolled {
  border-bottom-color: var(--line);
  background: rgba(247,246,242,.94);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 112px;
}
.brand {
  display: flex; align-items: center; gap: 12px;
  font-family: 'Manrope', sans-serif;
  font-weight: 800; letter-spacing: -0.02em;
  font-size: 1.05rem;
}
.brand-mark {
  width: 38px; height: 38px; border-radius: 10px;
  background: var(--navy);
  display: grid; place-items: center;
  color: var(--accent);
  box-shadow: inset 0 0 0 1px rgba(232,164,60,.3);
}
.brand-mark svg { width: 22px; height: 22px; }
.brand small {
  display: block; font-weight: 500; font-size: .72rem;
  color: var(--muted); letter-spacing: .04em; text-transform: uppercase;
}
.brand-logo {
  display: block;
  height: 120px;
  width: auto;
  max-width: 420px;
  object-fit: contain;
  /* negative margins compensate for whitespace baked into the PNG */
  margin: -16px 0;
}
@media (max-width: 960px) {
  .brand-logo { height: 96px; margin: -12px 0; }
}
@media (max-width: 560px) {
  .brand-logo { height: 72px; margin: -10px 0; max-width: 220px; }
}
.nav-links {
  display: flex; gap: 28px; align-items: center;
}
.nav-links a {
  font-size: .94rem; color: var(--text); font-weight: 500;
  opacity: .82; transition: opacity .15s var(--ease);
}
.nav-links a:hover { opacity: 1; color: var(--navy); }

.nav-cta {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 18px; border-radius: 999px;
  background: var(--navy); color: #fff;
  font-weight: 600; font-size: .92rem;
  transition: transform .15s var(--ease), background .2s var(--ease);
}
.nav-cta:hover { background: var(--steel); transform: translateY(-1px); }

.burger { display: none; background: none; border: 0; padding: 8px; cursor: pointer; }
.burger svg { width: 26px; height: 26px; }

/* Language switcher */
.lang-switch {
  display: inline-flex;
  align-items: center;
  background: rgba(11,28,44,.06);
  border-radius: 999px;
  padding: 3px;
  gap: 0;
}
.lang-switch button {
  border: 0; background: transparent; cursor: pointer;
  font-family: 'Manrope', sans-serif; font-weight: 700;
  font-size: .78rem; letter-spacing: .06em;
  padding: 7px 13px; border-radius: 999px;
  color: var(--muted);
  transition: background .18s var(--ease), color .18s var(--ease);
}
.lang-switch button:hover:not(.active) { color: var(--navy); }
.lang-switch button.active {
  background: var(--navy); color: #fff;
  box-shadow: 0 2px 6px rgba(11,28,44,.25);
}
.nav-side {
  display: flex; align-items: center; gap: 14px;
}
@media (max-width: 960px) {
  .nav-side .nav-cta { display: none; }
  .nav-side { gap: 8px; }
}

/* =========================================================
   BUTTONS
   ========================================================= */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 15px 26px; border-radius: 999px;
  font-family: 'Manrope', sans-serif; font-weight: 700; font-size: 1rem;
  cursor: pointer; border: 0;
  transition: transform .15s var(--ease), background .2s var(--ease), box-shadow .2s var(--ease);
}
.btn-primary {
  background: var(--accent-hot); color: #fff;
  box-shadow: 0 10px 30px -10px rgba(242,92,60,.6);
}
.btn-primary:hover { background: #DE5131; transform: translateY(-2px); }
.btn-ghost {
  background: transparent; color: var(--navy);
  box-shadow: inset 0 0 0 1.5px var(--navy);
}
.btn-ghost:hover { background: var(--navy); color: #fff; }
.btn-light {
  background: #fff; color: var(--navy);
}
.btn-light:hover { background: var(--accent); color: var(--navy); }

/* =========================================================
   HERO
   ========================================================= */
.hero {
  position: relative;
  background-color: #0A1A29;
  background-image: url('hero.png');
  background-size: cover;
  background-position: right center;
  background-repeat: no-repeat;
  color: #E8EDF3;
  overflow: hidden;
  padding: clamp(80px, 12vw, 150px) 0 clamp(100px, 14vw, 180px);
  min-height: 88vh;
}
/* Left-side darkening gradient so the text remains readable over the image */
.hero::before {
  content: "";
  position: absolute; inset: 0;
  background:
    linear-gradient(
      90deg,
      #0A1A29 0%,
      rgba(10,26,41,.94) 28%,
      rgba(10,26,41,.72) 45%,
      rgba(10,26,41,.32) 62%,
      rgba(10,26,41,.05) 80%,
      transparent 100%
    );
  pointer-events: none;
  z-index: 1;
}
/* Subtle amber bloom — echoes the warm glow in the image */
.hero::after {
  content: "";
  position: absolute; right: -10%; bottom: -30%;
  width: 55%; aspect-ratio: 1;
  background: radial-gradient(circle, rgba(232,164,60,.18), transparent 60%);
  filter: blur(10px); pointer-events: none;
  z-index: 1;
}
.hero .container { position: relative; z-index: 2; }
.hero-content { max-width: 640px; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 8px 14px; border-radius: 999px;
  background: rgba(232,164,60,.12); color: var(--accent);
  font-size: .82rem; font-weight: 600; letter-spacing: .02em;
  border: 1px solid rgba(232,164,60,.3);
}
.eyebrow .dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--accent); box-shadow: 0 0 0 4px rgba(232,164,60,.25);
}
.hero h1 {
  color: #fff;
  margin: 22px 0 22px;
}
.hero h1 em {
  font-style: normal;
  background: linear-gradient(120deg, var(--accent) 20%, var(--accent-hot) 80%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.hero-lead {
  font-size: 1.12rem; max-width: 540px;
  color: rgba(232,237,243,.78);
}
.hero-ctas {
  display: flex; gap: 14px; flex-wrap: wrap; margin-top: 34px;
}
.hero-ghost {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 15px 22px; border-radius: 999px;
  color: #fff; font-family: 'Manrope', sans-serif; font-weight: 600;
  box-shadow: inset 0 0 0 1.5px rgba(255,255,255,.22);
  transition: background .2s var(--ease);
}
.hero-ghost:hover { background: rgba(255,255,255,.08); }

.hero-stats {
  margin-top: 50px;
  display: grid; grid-template-columns: repeat(3, auto); gap: 36px;
  padding-top: 28px; border-top: 1px solid rgba(255,255,255,.12);
}
.hero-stats strong {
  font-family: 'Manrope', sans-serif; font-size: 1.9rem;
  font-weight: 800; color: #fff; letter-spacing: -.02em;
  display: block; line-height: 1;
}
.hero-stats span { font-size: .82rem; color: rgba(232,237,243,.6); }


/* Scroll hint */
.scroll-hint {
  position: absolute; bottom: 26px; left: 50%; transform: translateX(-50%);
  font-size: .76rem; color: rgba(232,237,243,.5);
  display: flex; flex-direction: column; align-items: center; gap: 6px;
  z-index: 2; letter-spacing: .12em; text-transform: uppercase;
}
.scroll-hint .line {
  width: 1px; height: 42px; background: linear-gradient(180deg, rgba(232,237,243,.5), transparent);
  animation: scroll-pulse 2.4s ease-in-out infinite;
}
@keyframes scroll-pulse {
  0%,100% { transform: scaleY(1); opacity: 1; }
  50%     { transform: scaleY(.4); opacity: .4; }
}

/* =========================================================
   TRUST BAR
   ========================================================= */
.trust {
  background: #fff;
  border-bottom: 1px solid var(--line);
}
.trust-inner {
  display: flex; flex-wrap: wrap; gap: 16px 40px;
  padding-top: 26px; padding-bottom: 26px;
  align-items: center; justify-content: space-between;
}
.trust-label {
  font-size: .78rem; letter-spacing: .16em; text-transform: uppercase;
  color: var(--muted); font-weight: 600;
}
.trust-items {
  display: flex; flex-wrap: wrap; gap: 28px; align-items: center;
}
.trust-item {
  display: flex; align-items: center; gap: 10px;
  font-family: 'Manrope', sans-serif; font-weight: 700;
  color: var(--navy); font-size: .98rem;
}
.trust-item svg { width: 22px; height: 22px; color: var(--accent-hot); }

/* =========================================================
   SECTION SHARED
   ========================================================= */
section { padding: clamp(70px, 9vw, 120px) 0; }
.section-head {
  max-width: 720px; margin-bottom: 54px;
}
.section-tag {
  display: inline-flex; align-items: center; gap: 8px;
  color: var(--accent-hot); font-weight: 700; font-size: .82rem;
  letter-spacing: .14em; text-transform: uppercase; margin-bottom: 14px;
}
.section-tag .bar { width: 26px; height: 2px; background: var(--accent-hot); }

/* =========================================================
   SERVICES
   ========================================================= */
.services { background: var(--bg); }
.services-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
}
.svc-card {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 30px 28px 28px;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), border-color .2s var(--ease);
  display: flex; flex-direction: column;
  position: relative; overflow: hidden;
}
.svc-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}
.svc-card::before {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(135deg, transparent 60%, rgba(232,164,60,.08));
  opacity: 0; transition: opacity .3s var(--ease);
}
.svc-card:hover::before { opacity: 1; }
.svc-icon {
  width: 56px; height: 56px; border-radius: 14px;
  background: linear-gradient(135deg, #F8E9CD, #FFF6E2);
  display: grid; place-items: center;
  color: var(--accent-hot); margin-bottom: 22px;
}
.svc-icon svg { width: 30px; height: 30px; }
.svc-card h3 { font-size: 1.2rem; }
.svc-card ul {
  list-style: none; padding: 0; margin: 14px 0 0;
  color: var(--muted); font-size: .92rem;
}
.svc-card ul li {
  padding: 7px 0 7px 18px; position: relative;
  border-bottom: 1px dashed var(--line);
}
.svc-card ul li:last-child { border-bottom: 0; }
.svc-card ul li::before {
  content: ""; position: absolute; left: 0; top: 14px;
  width: 8px; height: 2px; background: var(--accent-hot); border-radius: 1px;
}

/* =========================================================
   PROCESS
   ========================================================= */
.process { background: var(--navy); color: #E8EDF3; position: relative; overflow: hidden;}
.process::before {
  content: ""; position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: linear-gradient(180deg, transparent, black 50%, transparent);
  -webkit-mask-image: linear-gradient(180deg, transparent, black 50%, transparent);
}
.process .container { position: relative; z-index: 1; }
.process h2 { color: #fff; }
.process .section-tag { color: var(--accent); }
.process .section-tag .bar { background: var(--accent); }
.process .muted { color: rgba(232,237,243,.65); }

.steps {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px;
  margin-top: 20px;
}
.step {
  padding: 26px 24px 28px;
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius-lg);
  position: relative;
}
.step-num {
  font-family: 'Manrope', sans-serif; font-weight: 800;
  font-size: 2.6rem; color: var(--accent);
  line-height: 1; letter-spacing: -.03em;
  opacity: .9;
}
.step h3 { color: #fff; margin-top: 18px; font-size: 1.1rem; }
.step p { color: rgba(232,237,243,.65); font-size: .92rem; margin: 8px 0 0; }

/* =========================================================
   DELIVERABLES
   ========================================================= */
.deliverables { background: #fff; }
.deliverables-grid {
  display: grid; grid-template-columns: 1.05fr 1fr; gap: 60px; align-items: center;
}
.deliverables ul {
  list-style: none; padding: 0; margin: 0;
  display: grid; grid-template-columns: 1fr 1fr; gap: 10px 22px;
}
.deliverables ul li {
  padding: 10px 0 10px 28px;
  position: relative;
  font-size: .96rem;
  color: var(--text);
  border-bottom: 1px solid var(--line);
}
.deliverables ul li::before {
  content: ""; position: absolute; left: 0; top: 14px;
  width: 18px; height: 18px;
  background: var(--accent);
  mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'><polyline points='20 6 9 17 4 12'/></svg>") center/contain no-repeat;
  -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'><polyline points='20 6 9 17 4 12'/></svg>") center/contain no-repeat;
}

.section-image {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 3 / 2;
  background: var(--navy);
}
.section-image img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .8s var(--ease);
}
.section-image:hover img { transform: scale(1.03); }
/* subtle amber edge to tie the photo into the brand palette */
.section-image::after {
  content: "";
  position: absolute; inset: 0;
  border-radius: inherit;
  box-shadow: inset 0 0 0 1px rgba(232,164,60,.18);
  pointer-events: none;
}

/* =========================================================
   ABOUT / STATS
   ========================================================= */
.about { background: var(--bg); }
.about-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px;
}
.about-copy p { font-size: 1.02rem; color: var(--muted); }
.about-meta {
  margin-top: 30px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 18px;
}
.meta-item {
  padding: 18px 20px;
  background: #fff; border: 1px solid var(--line);
  border-radius: var(--radius);
}
.meta-item span {
  font-size: .74rem; text-transform: uppercase; color: var(--muted);
  letter-spacing: .1em; font-weight: 600;
}
.meta-item strong {
  display: block; margin-top: 4px;
  font-family: 'Manrope', sans-serif; font-weight: 700;
  color: var(--navy); font-size: 1.02rem;
}

.stats-card {
  background: linear-gradient(135deg, var(--navy) 0%, var(--steel) 100%);
  color: #fff; border-radius: var(--radius-lg);
  padding: 40px; position: relative; overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.stats-card::before {
  content: ""; position: absolute; right: -80px; bottom: -80px;
  width: 260px; height: 260px; border-radius: 50%;
  background: radial-gradient(circle, rgba(232,164,60,.35), transparent 70%);
}
.stats-card h3 {
  color: #fff; font-size: 1.3rem; margin-bottom: 24px; position: relative;
}
.stats-row {
  display: grid; grid-template-columns: 1fr 1fr; gap: 22px;
  position: relative;
}
.stat {
  padding: 18px 20px;
  background: rgba(255,255,255,.05);
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,.08);
}
.stat strong {
  display: block; font-family: 'Manrope', sans-serif;
  font-weight: 800; font-size: 2rem;
  background: linear-gradient(120deg, #fff, var(--accent));
  -webkit-background-clip: text; background-clip: text; color: transparent;
  line-height: 1;
}
.stat span {
  display: block; margin-top: 10px; font-size: .88rem;
  color: rgba(255,255,255,.7);
}

/* =========================================================
   CONTACT
   ========================================================= */
.contact {
  background: #fff;
  border-top: 1px solid var(--line);
}
.contact-grid {
  display: grid; grid-template-columns: 1fr 1.1fr; gap: 60px;
}
.contact-info h2 { max-width: 420px; }
.contact-info .muted { max-width: 440px; }

.contact-list {
  margin-top: 34px; display: grid; gap: 16px;
}
.contact-item {
  display: flex; gap: 16px; align-items: flex-start;
}
.contact-item .ic {
  width: 44px; height: 44px; border-radius: 12px;
  background: rgba(232,164,60,.14);
  color: var(--accent-hot);
  display: grid; place-items: center; flex-shrink: 0;
}
.contact-item .ic svg { width: 22px; height: 22px; }
.contact-item span { display: block; font-size: .78rem; color: var(--muted); text-transform: uppercase; letter-spacing: .08em; font-weight: 600;}
.contact-item a, .contact-item p {
  font-family: 'Manrope', sans-serif; font-weight: 600;
  color: var(--navy); font-size: 1.02rem; margin: 2px 0 0;
  transition: color .15s var(--ease);
}
.contact-item a:hover { color: var(--accent-hot); }

/* Form */
.form-card {
  background: var(--bg);
  border-radius: var(--radius-lg);
  padding: 38px;
  border: 1px solid var(--line);
}
.form-card h3 { font-size: 1.4rem; }
.form-row { display: grid; gap: 16px; }
.form-row.two { grid-template-columns: 1fr 1fr; }
.field {
  display: flex; flex-direction: column; gap: 6px;
}
.field label {
  font-size: .8rem; font-weight: 600; color: var(--muted);
  letter-spacing: .04em;
}
.field input, .field textarea, .field select {
  width: 100%;
  font-family: inherit; font-size: 1rem;
  padding: 13px 16px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  color: var(--text);
  transition: border-color .2s var(--ease), box-shadow .2s var(--ease);
}
.field input:focus, .field textarea:focus, .field select:focus {
  outline: 0; border-color: var(--accent);
  box-shadow: 0 0 0 4px rgba(232,164,60,.18);
}
.field textarea { min-height: 120px; resize: vertical; }
.checkbox {
  display: flex; gap: 10px; align-items: flex-start;
  font-size: .85rem; color: var(--muted); cursor: pointer;
}
.checkbox input { accent-color: var(--accent-hot); margin-top: 4px; }
.checkbox a { color: var(--navy); text-decoration: underline; text-underline-offset: 3px; }

/* =========================================================
   CTA STRIP
   ========================================================= */
.cta-strip {
  background: linear-gradient(115deg, var(--accent-hot) 0%, #D9461F 100%);
  color: #fff; text-align: center;
  padding: 60px 20px;
}
.cta-strip h2 { color: #fff; margin-bottom: 10px; }
.cta-strip p { color: rgba(255,255,255,.9); max-width: 560px; margin: 0 auto 24px; }

/* =========================================================
   FOOTER
   ========================================================= */
footer {
  background: var(--navy); color: rgba(232,237,243,.7);
  padding: 70px 0 30px;
  position: relative;
}
.foot-grid {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px;
  margin-bottom: 40px;
}
footer h4 {
  color: #fff; font-size: .82rem; letter-spacing: .14em;
  text-transform: uppercase; margin-bottom: 18px;
}
footer ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; font-size: .92rem; }
footer ul a { color: rgba(232,237,243,.7); transition: color .15s var(--ease); }
footer ul a:hover { color: var(--accent); }
footer .brand { color: #fff; margin-bottom: 16px; }
footer .brand small { color: rgba(232,237,243,.55); }
.foot-desc { font-size: .92rem; line-height: 1.7; max-width: 360px; }
.foot-bottom {
  padding-top: 22px;
  border-top: 1px solid rgba(255,255,255,.08);
  display: flex; justify-content: space-between; gap: 20px; flex-wrap: wrap;
  font-size: .82rem;
}
.foot-bottom a:hover { color: #fff; }

/* =========================================================
   LEGAL PAGES
   ========================================================= */
.legal {
  background: var(--bg);
  padding: clamp(60px, 8vw, 100px) 0;
}
.legal-inner {
  max-width: 820px; margin: 0 auto;
  background: #fff; border-radius: var(--radius-lg);
  padding: clamp(30px, 5vw, 60px);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
}
.legal h1 { font-size: clamp(1.8rem, 3vw, 2.4rem); margin-bottom: 8px; }
.legal .meta { color: var(--muted); font-size: .9rem; margin-bottom: 40px; }
.legal h2 { font-size: 1.25rem; margin-top: 36px; color: var(--navy); }
.legal p, .legal li { font-size: .98rem; color: var(--text); line-height: 1.7; }
.legal ul, .legal ol { padding-left: 20px; }
.legal li { margin-bottom: 6px; }
.back-link {
  display: inline-flex; align-items: center; gap: 8px;
  color: var(--accent-hot); font-weight: 600; margin-bottom: 28px;
}
.back-link svg { width: 16px; height: 16px; }

/* =========================================================
   THANK YOU
   ========================================================= */
.thankyou {
  min-height: 80vh;
  display: grid; place-items: center;
  background: linear-gradient(180deg, var(--bg), #fff);
  padding: 80px 20px;
}
.thankyou-card {
  max-width: 620px; text-align: center;
  background: #fff; border-radius: var(--radius-lg);
  padding: 60px 40px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-lg);
}
.thankyou-icon {
  width: 90px; height: 90px; margin: 0 auto 28px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent-hot));
  display: grid; place-items: center; color: #fff;
  box-shadow: 0 20px 40px -15px rgba(242,92,60,.6);
  animation: pop .6s var(--ease);
}
.thankyou-icon svg { width: 44px; height: 44px; }
@keyframes pop {
  0% { transform: scale(.4); opacity: 0; }
  60% { transform: scale(1.15); }
  100% { transform: scale(1); opacity: 1; }
}
.thankyou h1 { font-size: clamp(1.8rem, 3vw, 2.4rem); }
.thankyou p { color: var(--muted); max-width: 460px; margin: 0 auto 28px; }

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 960px) {
  .nav-links { display: none; }
  .burger { display: inline-flex; }
  .nav-links.open {
    display: flex; flex-direction: column; align-items: stretch;
    position: absolute; left: 16px; right: 16px; top: 108px;
    background: #fff; padding: 18px 20px; border-radius: var(--radius-lg);
    gap: 14px; box-shadow: var(--shadow-lg); border: 1px solid var(--line);
  }
  .hero { min-height: 72vh; background-position: 72% center; }
  .hero::before {
    background:
      linear-gradient(90deg, #0A1A29 0%, rgba(10,26,41,.92) 55%, rgba(10,26,41,.55) 85%, rgba(10,26,41,.25) 100%),
      linear-gradient(180deg, transparent 40%, rgba(10,26,41,.7) 100%);
  }
  .hero-content { max-width: 100%; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .deliverables-grid, .about-grid, .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .deliverables ul { grid-template-columns: 1fr; }
  .foot-grid { grid-template-columns: 1fr 1fr; gap: 30px; }
}
@media (max-width: 560px) {
  .services-grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .hero-stats { grid-template-columns: 1fr 1fr; gap: 22px; }
  .foot-grid { grid-template-columns: 1fr; }
  .form-row.two { grid-template-columns: 1fr; }
  .stats-row { grid-template-columns: 1fr; }
  .about-meta { grid-template-columns: 1fr; }
  .btn { padding: 14px 20px; font-size: .95rem; }
}

/* Utility */
.reveal {
  opacity: 0; transform: translateY(20px);
  transition: opacity .6s var(--ease), transform .6s var(--ease);
}
.reveal.visible {
  opacity: 1; transform: none;
}
