/* ===== Victory Tech Solutions — Base Styles ===== */
:root {
  --gold-1: #F6E8C6;
  --gold-2: #E4C77A;
  --gold-3: #C89A44;
  --gold-4: #A9772E;
  --gold-5: #8A5E26;
  --teal: #3E9C90;
  --teal-dark: #2F7D73;
  --cream: #FFF8EA;
  --cream-2: #FFF3DC;
  --ink: #26262A;
  --ink-soft: #4A4A50;
  --border: #EDE2C8;
  --radius: 14px;
  --shadow: 0 10px 30px rgba(138, 94, 38, 0.10);
  --gold-grad: linear-gradient(120deg, var(--gold-1), var(--gold-2) 30%, var(--gold-3) 55%, var(--gold-4) 78%, var(--gold-5));
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: "Segoe UI", -apple-system, BlinkMacSystemFont, Roboto, "Helvetica Neue", Arial, sans-serif;
  color: var(--ink-soft);
  background: #ffffff;
  line-height: 1.65;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { margin: 0; padding: 0; list-style: none; }

.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

h1, h2, h3, h4 { color: var(--ink); font-weight: 700; margin: 0 0 16px; line-height: 1.25; }
h1 { font-size: clamp(2rem, 4vw, 3rem); }
h2 { font-size: clamp(1.6rem, 3vw, 2.25rem); }
h3 { font-size: 1.25rem; }
p { margin: 0 0 16px; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold-5);
  background: var(--cream-2);
  border: 1px solid var(--border);
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 16px;
}

.section { padding: 72px 0; }
.section-alt { background: var(--cream); }
.section-title { text-align: center; max-width: 720px; margin: 0 auto 48px; }
.section-title p { color: var(--ink-soft); }

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 30px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.95rem;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
}
.btn-primary {
  background: var(--teal);
  color: #fff;
  box-shadow: 0 8px 20px rgba(62, 156, 144, 0.35);
}
.btn-primary:hover { background: var(--teal-dark); transform: translateY(-2px); }
.btn-gold {
  background: var(--gold-grad);
  color: #3a2a10;
  box-shadow: 0 8px 20px rgba(169, 119, 46, 0.3);
}
.btn-gold:hover { transform: translateY(-2px); }
.btn-outline {
  background: transparent;
  border-color: var(--teal);
  color: var(--teal);
}
.btn-outline:hover { background: var(--teal); color: #fff; }

/* ===== Header ===== */
.topbar {
  background: var(--ink);
  color: #ddd;
  font-size: 0.85rem;
}
.topbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 8px;
  padding-bottom: 8px;
  flex-wrap: wrap;
  gap: 8px;
}
.topbar a { color: var(--gold-2); font-weight: 600; }
.topbar .topbar-links { display: flex; gap: 20px; }

header.site-header {
  background: #fff;
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 50;
}
.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}
.brand img { width: 46px; height: 46px; }
.brand-name {
  font-weight: 800;
  font-size: 1.15rem;
  color: var(--ink);
  line-height: 1.1;
}
.brand-name span {
  display: block;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold-4);
}

nav.main-nav ul { display: flex; gap: 32px; align-items: center; }
nav.main-nav a {
  font-weight: 600;
  color: var(--ink-soft);
  padding: 8px 2px;
  border-bottom: 2px solid transparent;
  transition: color 0.2s, border-color 0.2s;
}
nav.main-nav a:hover, nav.main-nav a.active { color: var(--teal-dark); border-color: var(--gold-3); }

.nav-dropdown { position: relative; }
.nav-dropdown-toggle {
  display: flex;
  align-items: center;
  gap: 5px;
  background: none;
  border: none;
  font: inherit;
  cursor: pointer;
  font-weight: 600;
  color: var(--ink-soft);
  padding: 8px 2px;
  border-bottom: 2px solid transparent;
  transition: color 0.2s, border-color 0.2s;
}
.nav-dropdown-toggle:hover, .nav-dropdown-toggle.active { color: var(--teal-dark); border-color: var(--gold-3); }
.nav-dropdown-toggle .caret { font-size: 0.65rem; transition: transform 0.2s ease; }
.nav-dropdown.open .nav-dropdown-toggle .caret { transform: rotate(180deg); }

nav.main-nav .nav-dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  margin-top: 10px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 12px;
  box-shadow: var(--shadow);
  min-width: 210px;
  padding: 8px;
  display: none;
  flex-direction: column;
  gap: 2px;
  z-index: 60;
}
nav.main-nav .nav-dropdown.open .nav-dropdown-menu { display: flex; }
.nav-dropdown-menu a {
  padding: 10px 12px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--ink);
  border-bottom: none !important;
}
.nav-dropdown-menu a:hover, .nav-dropdown-menu a.active { background: var(--cream-2); color: var(--teal-dark); }

.nav-actions { display: flex; align-items: center; gap: 18px; }
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.nav-toggle span { width: 26px; height: 3px; background: var(--ink); border-radius: 2px; }

/* ===== Hero ===== */
.hero {
  background: linear-gradient(180deg, var(--cream) 0%, #ffffff 100%);
  padding: 80px 0 60px;
  position: relative;
  overflow: hidden;
}
.hero .container {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
}
.hero h1 { margin-bottom: 20px; }
.hero h1 .accent { background: var(--gold-grad); -webkit-background-clip: text; background-clip: text; color: transparent; }
.hero p.lead { font-size: 1.1rem; max-width: 520px; }
.hero-cta { display: flex; gap: 16px; margin-top: 28px; flex-wrap: wrap; }
.hero-stats { display: flex; gap: 32px; margin-top: 40px; flex-wrap: wrap; }
.hero-stats div strong { display: block; font-size: 1.6rem; color: var(--ink); }
.hero-stats div span { font-size: 0.85rem; color: var(--ink-soft); }

.hero-art {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 40px;
  box-shadow: var(--shadow);
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-art img { width: 100%; max-width: 320px; border-radius: 16px; }

/* ===== Cards ===== */
.grid { display: grid; gap: 28px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

.card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: var(--gold-3); }
.card-icon {
  width: 54px; height: 54px;
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  background: var(--cream-2);
  margin-bottom: 18px;
  font-size: 1.4rem;
}

.course-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.course-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: var(--teal); }
.course-card .links-row { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-top: auto; }
.link-locked {
  color: var(--teal-dark);
  font-weight: 700;
  font-size: 0.85rem;
  white-space: nowrap;
  background: none;
  border: none;
  font-family: inherit;
  padding: 0;
  cursor: pointer;
}
.link-locked:hover { color: var(--teal); }
.card .link-locked { display: inline-flex; margin-top: 16px; }
.course-card .tag {
  align-self: flex-start;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--teal-dark);
  background: rgba(62,156,144,0.1);
  padding: 4px 10px;
  border-radius: 999px;
}
.course-card h3 { margin-bottom: 4px; }
.course-card a.link { color: var(--gold-5); font-weight: 700; font-size: 0.9rem; margin-top: auto; }

/* ===== Mission / Vision split ===== */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}
.split .card { background: var(--cream); }

/* ===== Why choose list ===== */
.check-list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin-bottom: 16px;
}
.check-list li .dot {
  width: 26px; height: 26px; min-width: 26px;
  border-radius: 50%;
  background: var(--gold-grad);
  color: #3a2a10;
  display: flex; align-items: center; justify-content: center;
  font-weight: 800;
  font-size: 0.8rem;
  margin-top: 2px;
}

/* ===== CTA band ===== */
.cta-band {
  background: linear-gradient(120deg, var(--teal-dark), var(--teal));
  color: #fff;
  border-radius: 24px;
  padding: 56px;
  text-align: center;
  margin: 0 24px;
}
.cta-band h2 { color: #fff; }
.cta-band p { color: rgba(255,255,255,0.9); max-width: 560px; margin: 0 auto 28px; }

/* ===== Steps ===== */
.steps { display: grid; grid-template-columns: repeat(5, 1fr); gap: 20px; text-align: center; }
.steps .step-num {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--gold-grad);
  color: #3a2a10;
  font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 14px;
}

/* ===== Team ===== */
.team-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 30px 22px;
  text-align: center;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.team-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: var(--gold-3); }
.team-card .avatar {
  width: 84px; height: 84px;
  border-radius: 50%;
  margin: 0 auto 18px;
  display: flex; align-items: center; justify-content: center;
  color: #3a2a10;
  font-weight: 800;
  font-size: 1.5rem;
  background: var(--gold-grad);
  object-fit: cover;
}
.team-card h3 { margin-bottom: 2px; }
.team-card .role {
  display: block;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--teal-dark);
  margin-bottom: 12px;
}
.team-card p { font-size: 0.92rem; margin-bottom: 16px; }
.team-card .social-row { justify-content: center; }
.team-card .social-row a { background: var(--cream-2); color: var(--gold-5); font-size: 0.8rem; font-weight: 700; }
.team-card .social-row a:hover { background: var(--gold-3); color: #fff; }

/* ===== Chatbot ===== */
.chatbot-launcher {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--gold-grad);
  color: #3a2a10;
  border: none;
  box-shadow: 0 10px 30px rgba(138,94,38,0.35);
  cursor: pointer;
  font-size: 1.6rem;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 200;
  transition: transform 0.2s ease;
}
.chatbot-launcher:hover { transform: scale(1.06); }

.chatbot-teaser {
  position: fixed;
  bottom: 96px;
  right: 24px;
  max-width: 240px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  border-bottom-right-radius: 4px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.18);
  padding: 14px 30px 14px 16px;
  font-size: 0.85rem;
  color: var(--ink);
  cursor: pointer;
  z-index: 199;
  opacity: 0;
  transform: translateY(12px) scale(0.96);
  pointer-events: none;
  transition: opacity 0.25s ease, transform 0.25s ease;
}
.chatbot-teaser.show {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}
.chatbot-teaser .teaser-close {
  position: absolute;
  top: 6px;
  right: 8px;
  background: none;
  border: none;
  font-size: 1rem;
  line-height: 1;
  color: var(--ink-soft);
  cursor: pointer;
  padding: 4px;
}

.chatbot-panel {
  position: fixed;
  bottom: 100px;
  right: 24px;
  width: 360px;
  max-width: calc(100vw - 32px);
  height: 520px;
  max-height: calc(100vh - 140px);
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.25);
  display: none;
  flex-direction: column;
  overflow: hidden;
  z-index: 200;
  border: 1px solid var(--border);
}
.chatbot-panel.open { display: flex; }

.chatbot-header {
  background: linear-gradient(120deg, var(--teal-dark), var(--teal));
  color: #fff;
  padding: 16px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.chatbot-header img { width: 32px; height: 32px; background: #fff; border-radius: 50%; padding: 3px; }
.chatbot-header .title { font-weight: 800; font-size: 0.95rem; }
.chatbot-header .subtitle { font-size: 0.75rem; opacity: 0.85; }
.chatbot-header .close-btn { margin-left: auto; background: none; border: none; color: #fff; font-size: 1.3rem; cursor: pointer; line-height: 1; }

.chatbot-messages {
  flex: 1;
  overflow-y: auto;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  background: var(--cream);
}

.chat-msg { max-width: 82%; padding: 10px 14px; border-radius: 14px; font-size: 0.88rem; line-height: 1.45; }
.chat-msg.bot { align-self: flex-start; background: #fff; border: 1px solid var(--border); color: var(--ink); border-bottom-left-radius: 4px; }
.chat-msg.user { align-self: flex-end; background: var(--teal); color: #fff; border-bottom-right-radius: 4px; }

.chat-quick-replies { display: flex; flex-wrap: wrap; gap: 8px; align-self: flex-start; max-width: 100%; }
.chat-quick-replies button {
  background: #fff;
  border: 1px solid var(--teal);
  color: var(--teal-dark);
  padding: 7px 14px;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.15s, color 0.15s;
}
.chat-quick-replies button:hover { background: var(--teal); color: #fff; }

.chat-typing { display: flex; gap: 4px; align-self: flex-start; padding: 10px 14px; background: #fff; border: 1px solid var(--border); border-radius: 14px; border-bottom-left-radius: 4px; }
.chat-typing span { width: 6px; height: 6px; border-radius: 50%; background: var(--gold-4); animation: chatTypingBlink 1.2s infinite ease-in-out; }
.chat-typing span:nth-child(2) { animation-delay: 0.2s; }
.chat-typing span:nth-child(3) { animation-delay: 0.4s; }
@keyframes chatTypingBlink { 0%, 80%, 100% { opacity: 0.3; } 40% { opacity: 1; } }

.chatbot-input-row {
  display: flex;
  gap: 8px;
  padding: 12px;
  border-top: 1px solid var(--border);
  background: #fff;
}
.chatbot-input-row input {
  flex: 1;
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 10px 16px;
  font-size: 0.88rem;
}
.chatbot-input-row input:focus { outline: none; border-color: var(--teal); }
.chatbot-input-row button {
  background: var(--teal);
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 40px; height: 40px;
  cursor: pointer;
  font-size: 1rem;
  flex-shrink: 0;
}
.chatbot-input-row button:disabled { opacity: 0.5; cursor: not-allowed; }

@media (max-width: 480px) {
  .chatbot-panel { width: calc(100vw - 24px); right: 12px; bottom: 90px; height: calc(100vh - 160px); }
  .chatbot-launcher { right: 16px; bottom: 16px; }
  .chatbot-teaser { right: 16px; bottom: 86px; max-width: calc(100vw - 90px); }
}

#project-enquiry, #corporate-enquiry, #faq { scroll-margin-top: 90px; }

/* ===== Brochure Download Modal ===== */
.brochure-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(38, 38, 42, 0.55);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  z-index: 300;
}
.brochure-modal-overlay.open { display: flex; }

.brochure-modal {
  background: #fff;
  border-radius: 18px;
  width: 100%;
  max-width: 480px;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 30px 80px rgba(0,0,0,0.3);
}

.brochure-modal-header {
  background: linear-gradient(120deg, var(--teal-dark), var(--teal));
  color: #fff;
  padding: 22px 24px;
  border-radius: 18px 18px 0 0;
  position: relative;
}
.brochure-modal-header h3 { color: #fff; margin: 0 0 4px; font-size: 1.15rem; }
.brochure-modal-header p { color: rgba(255,255,255,0.9); margin: 0; font-size: 0.85rem; }
.brochure-modal-close {
  position: absolute;
  top: 16px;
  right: 18px;
  background: none;
  border: none;
  color: #fff;
  font-size: 1.4rem;
  line-height: 1;
  cursor: pointer;
}

.brochure-modal-body { padding: 24px; }
.brochure-modal-body .form-grid { margin-bottom: 0; }
.brochure-modal-body .form-note { margin-top: 14px; font-weight: 600; display: none; }
.brochure-modal-body button[type="submit"] { width: 100%; justify-content: center; margin-top: 18px; }

/* ===== Brochures ===== */
.brochure-item {
  padding: 40px 0;
  border-bottom: 1px solid var(--border);
  scroll-margin-top: 110px;
}
.brochure-item:last-child { border-bottom: none; }
.brochure-meta { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 20px; }
.brochure-meta span {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--teal-dark);
  background: rgba(62,156,144,0.08);
  padding: 6px 14px;
  border-radius: 999px;
}
.brochure-columns { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
@media (max-width: 720px) {
  .brochure-columns { grid-template-columns: 1fr; }
}

/* ===== FAQ ===== */
.faq-list { max-width: 820px; margin: 0 auto; }
.faq-item {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 14px;
  padding: 4px 24px;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.faq-item[open] { border-color: var(--teal); box-shadow: var(--shadow); }
.faq-item summary {
  cursor: pointer;
  list-style: none;
  padding: 18px 0;
  font-weight: 700;
  color: var(--ink);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--gold-5);
  min-width: 20px;
  text-align: center;
  line-height: 1;
}
.faq-item[open] summary::after { content: "\2212"; }
.faq-item p { margin: 0 0 18px; color: var(--ink-soft); }

/* ===== Footer ===== */
footer.site-footer {
  background: var(--ink);
  color: #cfcfd4;
  padding: 60px 0 24px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1.2fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-grid h4 { color: #fff; font-size: 1rem; margin-bottom: 18px; }
.footer-grid li { margin-bottom: 10px; }
.footer-grid a:hover { color: var(--gold-2); }
.footer-brand { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.footer-brand img { width: 40px; height: 40px; }
.footer-brand span { color: #fff; font-weight: 800; font-size: 1.1rem; }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 20px; font-size: 0.85rem; flex-wrap: wrap; gap: 10px;
}
.social-row { display: flex; gap: 12px; }
.social-row a {
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(255,255,255,0.08);
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s;
}
.social-row a:hover { background: var(--gold-3); }

/* ===== Page header (inner pages) ===== */
.page-header {
  background: var(--cream);
  padding: 56px 0;
  text-align: center;
  border-bottom: 1px solid var(--border);
}
.breadcrumb { color: var(--ink-soft); font-size: 0.9rem; }
.breadcrumb a { color: var(--teal-dark); font-weight: 600; }

/* ===== Forms ===== */
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-grid .full { grid-column: 1 / -1; }
label { display: block; font-weight: 600; font-size: 0.85rem; margin-bottom: 6px; color: var(--ink); }
input, select, textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--border);
  border-radius: 10px;
  font-family: inherit;
  font-size: 0.95rem;
  background: #fff;
  color: var(--ink);
}
input:focus, select:focus, textarea:focus { outline: none; border-color: var(--teal); }
textarea { resize: vertical; min-height: 120px; }

.contact-info-card {
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
}
.contact-info-card .row { display: flex; gap: 14px; margin-bottom: 22px; align-items: flex-start; }
.contact-info-card .row .icon {
  width: 42px; height: 42px; min-width: 42px; border-radius: 12px;
  background: var(--gold-grad);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
}

/* ===== Utility ===== */
.text-center { text-align: center; }
.mt-0 { margin-top: 0; }
.flex-center { display: flex; align-items: center; justify-content: center; }

/* ===== Responsive ===== */
@media (max-width: 960px) {
  .hero .container { grid-template-columns: 1fr; }
  .hero-art { order: -1; max-width: 320px; margin: 0 auto; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .split { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .steps { grid-template-columns: repeat(3, 1fr); }
  .form-grid { grid-template-columns: 1fr; }
}

@media (max-width: 720px) {
  nav.main-nav { position: fixed; top: 0; right: -100%; height: 100vh; width: 280px; background: #fff; box-shadow: -8px 0 30px rgba(0,0,0,0.15); transition: right 0.3s ease; padding: 90px 24px 24px; z-index: 60; }
  nav.main-nav.open { right: 0; }
  nav.main-nav ul { flex-direction: column; align-items: flex-start; gap: 20px; }
  .nav-dropdown { width: 100%; }
  .nav-dropdown-menu {
    position: static;
    box-shadow: none;
    border: none;
    margin: 8px 0 0 12px;
    padding: 0;
    min-width: 0;
  }
  .nav-toggle { display: flex; }
  .nav-actions .btn-gold { display: none; }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr 1fr; }
  .cta-band { padding: 36px 24px; margin: 0 16px; }
  .topbar .container { justify-content: center; text-align: center; }
}
