/* ================================================================
   Merit Career Guidance Academy — style.css
   Pixel-matched to Figma export assets
   ================================================================ */

/* ── Google Fonts (loaded via HTML) ── */

/* ── Variables ── */
:root {
  --gold:       #E8A020;
  --navy:       #1A2B4A;
  --blue-btn:   #1565C0;
  --white:      #ffffff;
  --gray-bg:    #FDF6E9;
  --text:       #1a1a1a;
  --text-body:  #444444;
  --text-light: #666666;
  --border:     #e2e2e2;
  --font-h: 'Poppins', sans-serif;
  --font-b: 'Open Sans', sans-serif;
  --max-w: 1200px;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html  { scroll-behavior: smooth; }
body  { font-family: var(--font-b); color: var(--text); background: #fff; overflow-x: hidden; }
img   { display: block; max-width: 100%; }
a     { text-decoration: none; color: inherit; }
ul    { list-style: none; }
button{ cursor: pointer; border: none; background: none; font-family: var(--font-b); }
input, textarea { font-family: var(--font-b); }

/* ── Container ── */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 48px;
}

/* ── Scroll reveal ── */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity .55s ease, transform .55s ease; }
.reveal.in { opacity: 1; transform: translateY(0); }

/* ================================================================
   NAVBAR
   ================================================================ */
.navbar {
  position: sticky;
  top: 0;
  z-index: 999;
  background: #fff;
  box-shadow: 0 1px 10px rgba(0,0,0,0.08);
}
/* Needed so .nav-links.open (position:absolute) anchors to navbar */
.nav-inner {
  position: relative;
}
.nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 48px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo img {
  height: 52px;
  width: auto;
  object-fit: contain;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}
.nav-links a {
  font-family: var(--font-b);
  font-size: 14px;
  font-weight: 500;
  color: var(--text);
  transition: color .2s;
}
.nav-links a.active,
.nav-links a:hover { color: var(--gold); }
.nav-cta {
  background: var(--navy) !important;
  color: #fff !important;
  padding: 10px 22px;
  border-radius: 6px;
  font-weight: 600 !important;
  transition: background .2s !important;
}
.nav-cta:hover { background: #253d6a !important; color: #fff !important; }
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}
.nav-hamburger span {
  display: block;
  width: 24px;
  height: 3px;
  background: var(--navy);
  border-radius: 2px;
  transition: transform .25s ease, opacity .25s ease;
}
/* Hamburger → X animation when open */
.nav-hamburger.active span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav-hamburger.active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-hamburger.active span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }
.nav-links.open {
  display: flex !important;
  flex-direction: column;
  align-items: flex-start;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  width: 100%;
  background: #fff;
  padding: 0 18px 16px;
  gap: 0;
  box-shadow: 0 8px 24px rgba(0,0,0,.12);
  z-index: 1000;
  border-top: 2px solid var(--gold);
}
.nav-links.open li {
  width: 100%;
  border-bottom: 1px solid #f0f0f0;
}
.nav-links.open li:last-child {
  border-bottom: none;
}
.nav-links.open li a {
  display: block;
  width: 100%;
  padding: 14px 6px;
  font-size: 15px;
  font-weight: 600;
}
.nav-links.open .nav-cta {
  display: inline-block !important;
  width: auto !important;
  margin-top: 8px;
  padding: 10px 22px !important;
  border-radius: 6px;
}

/* ================================================================
   HERO
   ================================================================ */
.hero {
  padding: 56px 0 44px;
  background: #fff;
}
.hero .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 52px;
  align-items: center;
}
.hero-left h1 {
  font-family: var(--font-h);
  font-size: 38px;
  font-weight: 800;
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 6px;
}
.hero-left h1 .gold { color: var(--gold); }
.hero-subtitle {
  font-family: var(--font-h);
  font-size: 17px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 16px;
}
.hero-badge {
  display: inline-block;
  background: var(--navy);
  color: #fff;
  font-size: 12.5px;
  font-weight: 600;
  padding: 8px 14px;
  border-radius: 4px;
  margin-bottom: 18px;
  letter-spacing: .1px;
}
.hero-desc {
  font-size: 13.5px;
  color: var(--text-body);
  line-height: 1.85;
  max-width: 500px;
}
.hero-right {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  height: 320px;
  background: #f0f0f0;
}
.hero-right img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 54px;
  height: 54px;
  background: rgba(255,255,255,0.92);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 18px rgba(0,0,0,0.25);
  cursor: pointer;
  transition: transform .2s;
}
.hero-play:hover { transform: translate(-50%,-50%) scale(1.1); }
.hero-play i { color: var(--navy); font-size: 18px; margin-left: 3px; }

/* ================================================================
   ACTION CARDS (3 col)
   ================================================================ */
.action-cards {
  padding: 0 0 56px;
  background: #fff;
}
.action-cards .container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.acard {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  height: 180px;
  cursor: pointer;
  transition: transform .25s, box-shadow .25s;
}
.acard:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 36px rgba(0,0,0,0.22);
}
.acard > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s;
}
.acard:hover > img { transform: scale(1.05); }
.acard-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.0) 30%, rgba(10,25,60,0.72) 100%);
}
.acard-label {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 16px 18px 18px;
  color: #fff;
  font-family: var(--font-h);
  font-weight: 700;
  font-size: 15px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.acard-label i { font-size: 12px; }

/* ================================================================
   WHY SECTION  — gold background, student left, text right
   ================================================================ */
.why-section {
  background: transparent;
  padding: 40px 0;
  overflow: visible;
}
.why-section .container {
  display: grid;
  grid-template-columns: 320px 1fr;
  align-items: flex-end;
  min-height: 300px;
  padding-top: 0;
  padding-bottom: 0;
  padding-left: 0;
  padding-right: 0;
  gap: 16px;
  background: var(--gold);
  border-radius: 24px;
  overflow: hidden;
  margin-left: 48px;
  margin-right: 48px;
  max-width: calc(var(--max-w) - 96px);
}
.why-img {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  height: 300px;
  overflow: hidden;
}
.why-img img {
  height: 100%;
  width: auto;
  object-fit: contain;
  object-position: bottom;
}
.why-content {
  padding: 44px 40px 44px 24px;
}
.why-content h2 {
  font-family: var(--font-h);
  font-size: 26px;
  font-weight: 800;
  color: var(--navy);
  line-height: 1.3;
  margin-bottom: 18px;
}
.why-badge {
  display: inline-block;
  background: var(--blue-btn);
  color: #fff;
  font-family: var(--font-h);
  font-size: 15px;
  font-weight: 700;
  padding: 10px 22px;
  border-radius: 5px;
  margin-bottom: 22px;
}
.why-list { display: flex; flex-direction: column; gap: 12px; }
.why-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 500;
  color: var(--navy);
}
.why-list li i { color: var(--blue-btn); font-size: 17px; flex-shrink: 0; }

/* ================================================================
   OUR SERVICES
   ================================================================ */
.services { padding: 64px 0 60px; background: #fff; }
.sec-title {
  font-family: var(--font-h);
  font-size: 32px;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 10px;
}
.sec-title .gold { color: var(--gold); }
.sec-desc {
  font-size: 14px;
  color: var(--text-body);
  line-height: 1.75;
  margin-bottom: 36px;
  max-width: 720px;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.svc-card {
  border: 1.5px solid var(--border);
  border-radius: 10px;
  padding: 24px 22px;
  background: #fff;
  transition: box-shadow .25s, border-color .25s, transform .2s;
}
.svc-card:hover {
  box-shadow: 0 8px 28px rgba(0,0,0,0.08);
  border-color: #bbb;
  transform: translateY(-2px);
}
.svc-icon {
  width: 48px;
  height: 52px;
  margin-bottom: 14px;
  object-fit: contain;
}
.svc-card h4 {
  font-family: var(--font-h);
  font-size: 14px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
}
.svc-card p {
  font-size: 13px;
  color: var(--text-body);
  line-height: 1.72;
}

/* ================================================================
   STUDENT WORKFLOW  — beige bg, doodles, steps left, photo right
   ================================================================ */
.workflow {
  background: var(--gray-bg);
  padding: 60px 0;
  position: relative;
  overflow: hidden;
}
/* Left doodle illustration bg */
.workflow-doodle {
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 200px;
  pointer-events: none;
  opacity: .55;
  object-fit: contain;
  object-position: left center;
}
.workflow .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 52px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.workflow-left h2 {
  font-family: var(--font-h);
  font-size: 30px;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 28px;
}
.wf-steps { display: flex; flex-direction: column; gap: 10px; margin-bottom: 28px; }
.wf-step {
  display: flex;
  align-items: center;
  gap: 13px;
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  padding: 12px 14px;
  font-size: 14px;
  font-weight: 500;
  color: var(--navy);
  cursor: pointer;
  transition: border-color .2s, box-shadow .2s;
}
.wf-step:hover, .wf-step.active {
  border-color: var(--gold);
  box-shadow: 0 3px 12px rgba(0,0,0,.07);
}
.wf-ico {
  width: 34px; height: 34px;
  border-radius: 8px;
  background: var(--gold);
  display: flex; align-items: center; justify-content: center;
  color: var(--navy);
  font-size: 14px;
  flex-shrink: 0;
}
.wf-arrow {
  margin-left: auto;
  width: 28px; height: 28px;
  background: var(--navy);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 10px;
  flex-shrink: 0;
}
.btn-navy {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--navy);
  color: #fff;
  padding: 13px 26px;
  border-radius: 8px;
  font-family: var(--font-h);
  font-size: 14px;
  font-weight: 700;
  border: none;
  cursor: pointer;
  transition: background .2s, transform .2s;
}
.btn-navy:hover { background: #253d6a; transform: translateY(-1px); }

.workflow-right {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  height: 340px;
  box-shadow: 0 8px 32px rgba(0,0,0,.15);
}
.workflow-right img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.wf-play {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  width: 52px; height: 52px;
  background: rgba(255,255,255,.9);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 16px rgba(0,0,0,.22);
  transition: transform .2s;
}
.wf-play:hover { transform: translate(-50%,-50%) scale(1.1); }
.wf-play i { color: var(--navy); font-size: 18px; margin-left: 3px; }

/* ================================================================
   CUTOFF CALCULATOR  — gold bg
   ================================================================ */
.calc-section {
  background: var(--gold);
  padding: 44px 0;
}
.calc-section .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.calc-left {
  display: flex;
  align-items: center;
  gap: 0;
  flex-shrink: 0;
}
.calc-left img {
  width: 160px;
  object-fit: contain;
}
.calc-center {
  text-align: center;
  flex: 1;
}
.calc-center h2 {
  font-family: var(--font-h);
  font-size: 40px;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 6px;
}
.calc-center p {
  font-family: var(--font-h);
  font-size: 16px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 22px;
}
.btn-calc {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--navy);
  color: #fff;
  padding: 13px 28px;
  border-radius: 8px;
  font-family: var(--font-h);
  font-size: 14px;
  font-weight: 700;
  border: none;
  cursor: pointer;
  transition: background .2s;
}
.btn-calc:hover { background: #253d6a; }
.calc-right {
  flex-shrink: 0;
  text-align: center;
}
.calc-right img {
  width: 180px;
  object-fit: contain;
}

/* ================================================================
   STUDENT FEEDBACK
   ================================================================ */
.feedback { padding: 64px 0 56px; background: #fff; }
.feedback .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.feedback-left h2 {
  font-family: var(--font-h);
  font-size: 32px;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 8px;
}
.feedback-left h2 .gold { color: var(--gold); }
.feedback-tagline {
  font-family: var(--font-h);
  font-size: 15px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 12px;
}
.feedback-desc {
  font-size: 13.5px;
  color: var(--text-body);
  line-height: 1.8;
}
.tcard {
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: 14px;
  padding: 26px 24px 20px;
  box-shadow: 0 4px 18px rgba(0,0,0,.07);
}
.tcard-stars { color: #f59e0b; font-size: 17px; letter-spacing: 2px; margin-bottom: 12px; }
.tcard-text { font-size: 13.5px; color: var(--text-body); line-height: 1.75; margin-bottom: 18px; }
.tcard-footer { display: flex; align-items: center; justify-content: space-between; }
.tcard-author { display: flex; align-items: center; gap: 11px; }
.tcard-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--gold);
  background: var(--gold);
}
.tcard-name { font-family: var(--font-h); font-size: 14px; font-weight: 700; color: var(--navy); }
.tcard-arrow {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--navy);
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 12px;
  cursor: pointer;
  transition: background .2s;
}
.tcard-arrow:hover { background: var(--blue-btn); }
.tcard-dots { display: flex; gap: 5px; margin-top: 16px; }
.tcard-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--border); }
.tcard-dot.on { background: var(--navy); }

/* ================================================================
   OUR PARTNERS
   ================================================================ */
.partners {
  padding: 50px 0;
  background: #fff;
  border-top: 1px solid #f0f0f0;
}
.partners h2 {
  font-family: var(--font-h);
  font-size: 26px;
  font-weight: 800;
  color: var(--navy);
  text-align: center;
  margin-bottom: 34px;
}
.partners-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}
.partner-logo {
  height: 50px;
  width: auto;
  max-width: 160px;
  object-fit: contain;
  filter: grayscale(30%);
  transition: filter .2s, transform .2s;
}
.partner-logo:hover { filter: grayscale(0%); transform: scale(1.05); }

/* ================================================================
   CONTACT BAND — bg image + gold gradient overlay + logo + title
   ================================================================ */
/* ----------------------------------------------------------------
   CONTACT BAND — left photo | right gradient
   ---------------------------------------------------------------- */
.contact-band {
  display: flex;
  height: 240px;
  overflow: hidden;
}

/* Left half: the "Contact Us img.png" photo */
.contact-band-left {
  width: 50%;
  flex-shrink: 0;
  overflow: hidden;
}
.contact-band-left img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

/* Right half: gradient background with logo + title */
.contact-band-right {
  width: 50%;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 18px;
  padding: 32px 48px;
  background: linear-gradient(135deg,
    #0f1c37 0%,
    #1a2e55 60%,
    #1e3460 100%
  );
}

.contact-logo-block {
  display: flex;
  align-items: center;
  gap: 14px;
  background: rgba(255,255,255,0.92);
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: 12px;
  padding: 12px 18px;
}
.contact-logo-block img {
  height: 60px;
  width: auto;
  object-fit: contain;
  filter: brightness(1.4) drop-shadow(0 2px 6px rgba(0,0,0,0.4));
}
.contact-brand-text {
  font-family: var(--font-h);
  font-size: 14px;
  font-weight: 800;
  color: #fff;
  line-height: 1.6;
  text-transform: uppercase;
  letter-spacing: .6px;
  text-shadow: 0 1px 4px rgba(0,0,0,0.4);
}
.contact-brand-text span { color: var(--gold); text-shadow: 0 1px 4px rgba(0,0,0,0.3); }
.contact-band-title {
  font-family: var(--font-h);
  font-size: 40px;
  font-weight: 800;
  color: #fff;
  text-align: center;
  margin-top: 0;
}

/* ================================================================
   CONTACT US HEADING — above form section
   ================================================================ */
.contact-us-heading {
  background: #fff;
  padding: 40px 0 0;
}
.contact-us-title {
  font-family: var(--font-h);
  font-size: 36px;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 0;
  text-align: center;
}
.contact-us-title span { color: var(--gold); }

/* ================================================================
   FORM SECTION — "Prefer to talk?"
   left: navy info box | right: form
   ================================================================ */
.form-section {
  padding: 28px 0 68px;
  background: #fff;
}
.form-section .container {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 56px;
  align-items: start;
}
/* Navy info box */
.form-info {
  background: var(--navy);
  border-radius: 12px;
  padding: 28px 24px 32px;
  color: #fff;
}
.form-info p {
  font-size: 13px;
  line-height: 1.75;
  color: rgba(255,255,255,.82);
  margin-bottom: 20px;
}
.form-info-heading {
  font-family: var(--font-h);
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 6px;
}
.form-info-sub {
  font-size: 13px;
  color: rgba(255,255,255,.75);
  line-height: 1.65;
  margin-bottom: 20px;
}
.form-info-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  color: rgba(255,255,255,.80);
  margin-bottom: 10px;
  line-height: 1.5;
}
.form-info-row i { color: rgba(255,255,255,.55); font-size: 13px; margin-top: 2px; flex-shrink: 0; }

/* Right form side */
.form-right h2 {
  font-family: var(--font-h);
  font-size: 28px;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 28px;
}
.contact-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.fg { display: flex; flex-direction: column; gap: 6px; }
.fg.full { grid-column: 1/-1; }
.fg label { font-size: 13px; font-weight: 600; color: var(--navy); }

.input-wrap {
  position: relative;
  display: flex;
  align-items: center;
}
.input-wrap .iico {
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  color: #aaa;
  font-size: 14px;
  pointer-events: none;
  line-height: 1;
  z-index: 1;
}
.input-wrap input {
  padding-left: 36px !important;
  width: 100%;
}

.fg input,
.fg textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1.5px solid var(--border);
  border-radius: 7px;
  font-size: 13.5px;
  color: var(--text);
  background: #fff;
  outline: none;
  transition: border-color .2s, box-shadow .2s;
}
.fg input:focus,
.fg textarea:focus {
  border-color: var(--blue-btn);
  box-shadow: 0 0 0 3px rgba(21,101,192,.1);
}
.fg input::placeholder,
.fg textarea::placeholder { color: #bbb; font-size: 13px; }
.fg textarea { resize: vertical; min-height: 110px; }
.form-submit { grid-column: 1/-1; }
.btn-submit {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: var(--navy);
  color: #fff;
  padding: 14px 36px;
  border-radius: 8px;
  font-family: var(--font-h);
  font-size: 15px;
  font-weight: 700;
  border: none;
  cursor: pointer;
  transition: background .2s, transform .2s;
}
.btn-submit:hover { background: #253d6a; transform: translateY(-1px); }

/* ================================================================
   FOOTER
   ================================================================ */
.footer {
  background: var(--navy);
  text-align: center;
  padding: 26px 20px;
}
.footer h3 {
  font-family: var(--font-h);
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 5px;
}
.footer-copy { font-size: 13px; color: rgba(255,255,255,.5); margin-bottom: 16px; }
.footer-socials { display: flex; justify-content: center; gap: 10px; }
.fsoc {
  width: 38px; height: 38px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  font-size: 15px;
  transition: transform .2s, opacity .2s;
}
.fsoc:hover { transform: translateY(-2px); opacity: .88; }
.fsoc-fb { background: #1877F2; }
.fsoc-ig { background: linear-gradient(45deg,#f58529,#dd2a7b,#8134af); }
.fsoc-yt { background: #FF0000; }

/* ================================================================
   RESPONSIVE — Tablet ≤ 1024px
   ================================================================ */
@media (max-width: 1024px) {
  .container, .nav-inner { padding: 0 28px; }
  .hero-left h1 { font-size: 30px; }
  .why-section .container { grid-template-columns: 260px 1fr; margin-left: 28px; margin-right: 28px; max-width: calc(var(--max-w) - 56px); }
  .calc-center h2 { font-size: 32px; }
  .nav-links.open { padding: 0 28px 16px; }
}

/* ================================================================
   RESPONSIVE — Mobile ≤ 768px
   ================================================================ */
@media (max-width: 768px) {
  .container, .nav-inner { padding: 0 18px; }
  .nav-links { display: none; }
  .nav-hamburger { display: flex !important; }
  .nav-links.open { padding: 0 18px 16px; }

  .hero .container { grid-template-columns: 1fr; }
  .hero-left h1 { font-size: 26px; }
  .hero-right { height: 230px; }

  .action-cards .container { grid-template-columns: 1fr; }
  .acard { height: 170px; }

  .why-section .container { grid-template-columns: 1fr; margin-left: 18px; margin-right: 18px; max-width: calc(var(--max-w) - 36px); border-radius: 18px; }
  .why-img { display: none; }
  .why-content { padding: 28px 24px; }

  .services-grid { grid-template-columns: 1fr; }

  .workflow .container { grid-template-columns: 1fr; }
  .workflow-right { display: none; }

  .calc-section .container { flex-direction: column; text-align: center; }
  .calc-left img, .calc-right img { width: 130px; }
  .calc-center h2 { font-size: 28px; }

  .feedback .container { grid-template-columns: 1fr; gap: 32px; }

  .partners-row { gap: 28px; }
  .partner-logo { height: 38px; }

  .contact-band { flex-direction: column; height: auto; }
  .contact-band-left { width: 100%; height: 200px; }
  .contact-band-right { width: 100%; padding: 32px 24px 40px; flex-direction: column; justify-content: flex-start; align-items: center; gap: 0; }
  .contact-logo-block { margin-bottom: 28px; }
  .contact-band-title { font-size: 32px !important; color: #E8A020 !important; margin-top: 16px !important; }

  .form-section .container { grid-template-columns: 1fr; }
  .contact-form { grid-template-columns: 1fr; }
  .fg.full { grid-column: 1; }
  .form-submit { grid-column: 1; }

  /* Fix icon alignment in form inputs on mobile */
  .input-wrap .iico { font-size: 13px; left: 11px; }
  .input-wrap input { padding-left: 34px !important; }
}

@media (max-width: 480px) {
  .hero-left h1 { font-size: 22px; }
  .hero-badge { font-size: 11px; }
  .sec-title { font-size: 24px; }
  .feedback-left h2 { font-size: 26px; }
}