
@font-face{font-family:'Plus Jakarta Sans';src:url('assets/fonts/plus-jakarta-sans-regular.woff2') format('woff2');font-weight:400;font-style:normal;font-display:swap}
@font-face{font-family:'Plus Jakarta Sans';src:url('assets/fonts/plus-jakarta-sans-500.woff2') format('woff2');font-weight:500;font-style:normal;font-display:swap}
@font-face{font-family:'Plus Jakarta Sans';src:url('assets/fonts/plus-jakarta-sans-600.woff2') format('woff2');font-weight:600;font-style:normal;font-display:swap}
@font-face{font-family:'Plus Jakarta Sans';src:url('assets/fonts/plus-jakarta-sans-700.woff2') format('woff2');font-weight:700;font-style:normal;font-display:swap}
@font-face{font-family:'Plus Jakarta Sans';src:url('assets/fonts/plus-jakarta-sans-800.woff2') format('woff2');font-weight:800;font-style:normal;font-display:swap}
@font-face{font-family:'Lora';src:url('assets/fonts/lora-regular.woff2') format('woff2');font-weight:400;font-style:normal;font-display:swap}
@font-face{font-family:'Lora';src:url('assets/fonts/lora-600.woff2') format('woff2');font-weight:600;font-style:normal;font-display:swap}

:root {
  --green:        #1a7a3c;
  --green-dark:   #145e2d;
  --green-light:  #e8f5ed;
  --green-mid:    #2e9d52;
  --accent:       #e67e22;
  --text:         #1c1c1e;
  --text-2:       #4a4a4f;
  --text-3:       #7c7c82;
  --border:       #e2e4e8;
  --bg:           #ffffff;
  --bg-alt:       #f6f8f6;
  --bg-alt2:      #eef3ee;
  --radius:       6px;
  --radius-lg:    10px;
  --shadow:       0 1px 4px rgba(0,0,0,.08);
  --shadow-md:    0 4px 16px rgba(0,0,0,.1);
  --font:         'Plus Jakarta Sans',sans-serif;
  --max-w:        1100px;
  --transition:   0.2s ease;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; text-size-adjust: 100%; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font);
  font-size: 1rem;
  line-height: 1.75;
  color: var(--text);
  background: var(--bg);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

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

/* ---- TYPOGRAPHY ---- */
.section-title {
  font-size: clamp(1.35rem, 2.8vw, 1.6rem);
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.5rem;
  text-align: center;
  letter-spacing: -0.02em;
  line-height: 1.3;
}
.section-sub {
  text-align: center;
  color: var(--text-2);
  margin-bottom: 2rem;
  font-size: 1.0625rem;
}
.sub-title { font-size: 1.1rem; font-weight: 600; color: var(--text); margin-bottom: 1rem; }
.prose p { color: var(--text-2); font-size: 1.0625rem; line-height: 1.8; margin-bottom: 1rem; }
.prose p:last-child { margin-bottom: 0; }
.text-link { color: var(--green); text-decoration: underline; text-underline-offset: 2px; transition: color var(--transition); }
.text-link:hover { color: var(--green-dark); }
.table-note { font-size: 0.875rem; color: var(--text-3); margin-top: 0.5rem; }
.table-note a { color: var(--green); text-decoration: underline; }

/* ---- BUTTONS ---- */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 11px 24px; border-radius: var(--radius);
  font-weight: 600; font-size: 0.9375rem;
  transition: all var(--transition); text-decoration: none;
  line-height: 1.3; gap: 6px;
}
.btn-primary { background: var(--green); color: #fff; box-shadow: 0 2px 8px rgba(26,122,60,.25); }
.btn-primary:hover { background: var(--green-dark); box-shadow: 0 4px 14px rgba(26,122,60,.35); transform: translateY(-1px); }
.btn-outline { background: transparent; color: #fff; border: 1.5px solid rgba(255,255,255,.7); }
.btn-outline:hover { background: rgba(255,255,255,.15); }

/* ---- HEADER ---- */
.site-header { background: var(--green); color: #fff; padding: 0; position: sticky; top: 0; z-index: 100; box-shadow: 0 2px 8px rgba(0,0,0,.15); }
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 56px; }
.logo { display: flex; align-items: center; gap: 4px; text-decoration: none; }
.logo-mark { background: #fff; color: var(--green); font-weight: 800; font-size: 1.1rem; width: 30px; height: 30px; display: flex; align-items: center; justify-content: center; border-radius: 6px; flex-shrink: 0; }
.logo-text { font-size: 1.1rem; font-weight: 700; color: #fff; letter-spacing: -0.01em; }
.main-nav { display: flex; align-items: center; gap: 4px; }
.nav-link { color: rgba(255,255,255,.88); font-size: 0.9rem; font-weight: 500; padding: 6px 12px; border-radius: var(--radius); transition: all var(--transition); text-decoration: none; }
.nav-link:hover, .nav-link.active { color: #fff; background: rgba(255,255,255,.15); }
.menu-btn { display: none; flex-direction: column; gap: 5px; padding: 8px; border-radius: var(--radius); transition: background var(--transition); }
.menu-btn:hover { background: rgba(255,255,255,.15); }
.menu-btn span { display: block; width: 22px; height: 2px; background: #fff; border-radius: 2px; transition: transform 0.3s ease, opacity 0.3s ease, width 0.3s ease; transform-origin: center; }
.menu-btn.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-btn.open span:nth-child(2) { opacity: 0; width: 0; }
.menu-btn.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---- TICKER ---- */
.ticker-bar {
  background: var(--green-light);
  border-bottom: 1px solid #cde5d7;
  overflow: hidden;
  height: 34px;
}
.ticker-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
  height: 34px;
  flex-wrap: nowrap;
}
.ticker-label {
  background: var(--green);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 2px 10px;
  border-radius: 3px;
  white-space: nowrap;
  flex-shrink: 0;
}
.ticker-track {
  flex: 1;
  overflow: hidden;
  height: 100%;
  display: flex;
  align-items: center;
  min-width: 0;
}
.ticker-content {
  display: flex;
  white-space: nowrap;
  gap: 60px;
  animation: ticker-scroll 32s linear infinite;
  width: max-content;
}
.ticker-content span {
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--green-dark);
}
@keyframes ticker-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ---- HERO ---- */
.hero { background: linear-gradient(135deg, var(--green-dark) 0%, var(--green-mid) 100%); color: #fff; padding: 60px 0 70px; }
.hero-content { max-width: 640px; }
.hero-badge { display: inline-block; background: rgba(255,255,255,.2); color: #fff; font-size: 0.75rem; font-weight: 700; padding: 3px 12px; border-radius: 20px; margin-bottom: 16px; letter-spacing: 0.04em; border: 1px solid rgba(255,255,255,.35); }
.hero h1 { font-size: clamp(1.8rem, 4.5vw, 2.75rem); font-weight: 800; line-height: 1.2; margin-bottom: 14px; letter-spacing: -0.03em; }
.hero-sub { font-size: 1.0625rem; color: rgba(255,255,255,.88); line-height: 1.7; margin-bottom: 28px; }
.hero-btns { display: flex; gap: 12px; flex-wrap: wrap; }

/* ---- QUICK LINKS ---- */
.quick-links { padding: 36px 0; background: var(--bg); }
.links-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.ql-card {
  display: flex; align-items: center; gap: 14px;
  background: var(--bg); border: 1.5px solid var(--border);
  border-radius: var(--radius-lg); padding: 16px;
  text-decoration: none; color: var(--text);
  transition: all var(--transition);
}
.ql-card:hover { border-color: var(--green); box-shadow: var(--shadow-md); transform: translateY(-2px); }
.ql-card--internal { border-style: dashed; }
.ql-icon {
  color: var(--green);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: var(--green-light);
  border-radius: 8px;
}
.ql-info { line-height: 1; }
.ql-info strong {
  display: block;
  font-size: 0.9375rem;
  font-weight: 600;
  margin-bottom: 3px;
  line-height: 1.25;
}
.ql-info span {
  font-size: 0.78rem;
  color: var(--text-3);
  line-height: 1.2;
}

/* ---- PORTAL IMAGE SECTION ---- */
.portal-image-section {
  padding: 0;
  background: var(--bg);
}
.portal-image-wrap {
  width: 100%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  max-height: 420px;
  box-shadow: var(--shadow-md);
}
.portal-image-wrap img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  object-position: center;
  display: block;
}

/* ---- SECTIONS ---- */
.section { padding: 56px 0; }
.section--alt { background: var(--bg-alt); }

/* ---- MSP TABLE ---- */
.table-wrap { overflow-x: auto; margin: 1.25rem 0 0.5rem; border-radius: var(--radius); border: 1px solid var(--border); }
.msp-table { width: 100%; border-collapse: collapse; font-size: 0.9375rem; min-width: 380px; }
.msp-table th { background: var(--green); color: #fff; padding: 10px 16px; text-align: left; font-weight: 600; font-size: 0.875rem; }
.msp-table td { padding: 9px 16px; border-bottom: 1px solid var(--border); color: var(--text-2); }
.msp-table tr:last-child td { border-bottom: none; }
.msp-table tr:nth-child(even) td { background: var(--bg-alt); }

/* ---- STEPS GRID ---- */
.steps-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 2rem; }
.step-card { background: var(--bg); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 22px; position: relative; }
.step-num { font-size: 2rem; font-weight: 800; line-height: 1; margin-bottom: 10px; font-variant-numeric: tabular-nums; color: var(--green); opacity: 0.25; }
.step-card h3 { font-size: 1rem; font-weight: 600; margin-bottom: 6px; color: var(--text); }
.step-card p { font-size: 0.9rem; color: var(--text-2); line-height: 1.6; }

/* ---- TWO COL ---- */
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }

/* ---- DOC LIST ---- */
.doc-list { margin-top: 1rem; display: flex; flex-direction: column; gap: 10px; }
.doc-list li { display: flex; align-items: center; gap: 10px; font-size: 1rem; color: var(--text-2); }
.doc-icon { color: var(--green); font-weight: 700; font-size: 1rem; flex-shrink: 0; display: flex; align-items: center; }

/* ---- ERROR GRID ---- */
.error-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 1.5rem; }
.error-card { background: var(--bg); border: 1px solid var(--border); border-left: 3px solid var(--accent); border-radius: var(--radius); padding: 16px; }
.error-card strong { display: block; font-size: 0.9375rem; margin-bottom: 6px; color: var(--text); }
.error-card p { font-size: 0.875rem; color: var(--text-2); line-height: 1.55; }

/* ---- STEPS LIST (payment) ---- */
.steps-list { display: flex; flex-direction: column; gap: 0; margin-top: 1.5rem; border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; }
.step-row { display: flex; align-items: flex-start; gap: 16px; padding: 16px 20px; border-bottom: 1px solid var(--border); font-size: 1rem; color: var(--text-2); background: var(--bg); }
.step-row:last-child { border-bottom: none; }
.step-row:nth-child(even) { background: var(--bg-alt); }
.sr-num { width: 28px; height: 28px; background: var(--green); color: #fff; font-size: 0.8125rem; font-weight: 700; border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-top: 2px; }

/* ---- CTA BOX ---- */
.cta-box { background: var(--green-light); border: 1px solid #b0d9c0; border-radius: var(--radius-lg); padding: 22px 24px; display: flex; align-items: center; justify-content: space-between; gap: 16px; margin-top: 2rem; flex-wrap: wrap; }
.cta-box p { font-weight: 600; font-size: 1rem; color: var(--green-dark); }

/* ---- INFO CARDS ---- */
.info-cards { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; margin-top: 1.5rem; }
.info-card { display: flex; flex-direction: column; gap: 8px; background: var(--bg); border: 1.5px solid var(--border); border-radius: var(--radius-lg); padding: 24px; text-decoration: none; color: var(--text); transition: all var(--transition); }
.info-card:hover { border-color: var(--green); box-shadow: var(--shadow-md); transform: translateY(-2px); }
.ic-icon { color: var(--green); display: flex; }
.info-card h3 { font-size: 1.05rem; font-weight: 700; color: var(--text); }
.info-card p { font-size: 0.9rem; color: var(--text-2); line-height: 1.6; }
.ic-link { font-size: 0.875rem; color: var(--green); font-weight: 600; margin-top: 4px; }

/* ---- BENEFITS SECTION ---- */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 2rem;
}
.benefit-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 22px 18px;
  text-align: center;
  transition: all var(--transition);
}
.benefit-card:hover { border-color: var(--green); box-shadow: var(--shadow-md); transform: translateY(-2px); }
.benefit-icon {
  width: 52px; height: 52px;
  background: var(--green-light);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 14px;
  color: var(--green);
}
.benefit-card h3 { font-size: 0.9375rem; font-weight: 700; color: var(--text); margin-bottom: 6px; }
.benefit-card p { font-size: 0.85rem; color: var(--text-2); line-height: 1.6; }

/* ---- STATS BAR ---- */
.stats-bar {
  background: var(--green);
  padding: 28px 0;
}
.stats-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  text-align: center;
}
.stat-item { color: #fff; }
.stat-num { font-size: clamp(1.5rem, 3vw, 2rem); font-weight: 800; line-height: 1; margin-bottom: 4px; letter-spacing: -0.02em; }
.stat-label { font-size: 0.8125rem; color: rgba(255,255,255,.78); font-weight: 500; }

/* ---- DATES TABLE ---- */
.dates-table-wrap { overflow-x: auto; margin-top: 1.5rem; border-radius: var(--radius); border: 1px solid var(--border); }
.dates-table { width: 100%; border-collapse: collapse; font-size: 0.9375rem; min-width: 360px; }
.dates-table th { background: var(--green); color: #fff; padding: 10px 16px; text-align: left; font-weight: 600; font-size: 0.875rem; }
.dates-table td { padding: 9px 16px; border-bottom: 1px solid var(--border); color: var(--text-2); }
.dates-table tr:last-child td { border-bottom: none; }
.dates-table tr:nth-child(even) td { background: var(--bg-alt); }
.badge-green { background: var(--green-light); color: var(--green-dark); font-size: 0.78rem; font-weight: 700; padding: 2px 8px; border-radius: 4px; white-space: nowrap; }
.badge-orange { background: #fef3e8; color: #c0600a; font-size: 0.78rem; font-weight: 700; padding: 2px 8px; border-radius: 4px; white-space: nowrap; }

/* ---- FAQ ---- */
.faq-list { max-width: 760px; margin: 1.5rem auto 0; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-q {
  display: flex; justify-content: space-between; align-items: center;
  width: 100%; text-align: left; padding: 16px 0;
  font-size: 1rem; font-weight: 600; color: var(--text);
  gap: 12px; background: none; border: none; cursor: pointer;
  transition: color var(--transition);
}
.faq-q:hover { color: var(--green); }
.faq-icon {
  width: 18px; height: 18px; flex-shrink: 0;
  color: var(--green);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
.faq-q[aria-expanded="true"] .faq-icon { transform: rotate(180deg); }
.faq-a {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.38s cubic-bezier(0.4, 0, 0.2, 1),
              opacity  0.3s ease;
  opacity: 0;
}
.faq-a.faq-open { max-height: 400px; opacity: 1; }
.faq-a p { font-size: 0.9375rem; color: var(--text-2); line-height: 1.75; padding-bottom: 16px; }

/* ---- CONTACT ---- */
.contact-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 1.5rem; }
.contact-card { background: var(--bg); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 22px; text-align: center; display: flex; flex-direction: column; align-items: center; gap: 6px; }
.cc-icon { color: var(--green); margin-bottom: 4px; display: flex; }
.contact-card strong { font-size: 0.9375rem; font-weight: 700; }
.contact-card a { color: var(--green); font-size: 0.9375rem; font-weight: 600; text-decoration: underline; text-underline-offset: 2px; }
.contact-card span { font-size: 0.8125rem; color: var(--text-3); }

/* ---- NOTE BOX ---- */
.note-box { background: #fffbea; border-left: 3px solid #f0a500; padding: 12px 16px; border-radius: 0 var(--radius) var(--radius) 0; font-size: 0.9rem; color: var(--text-2); line-height: 1.6; margin: 1rem 0; }

/* ---- PAGE HERO ---- */
.page-hero { background: linear-gradient(135deg, var(--green-dark) 0%, var(--green-mid) 100%); color: #fff; padding: 44px 0 48px; }
.breadcrumb { font-size: 0.8125rem; color: rgba(255,255,255,.7); margin-bottom: 14px; display: flex; align-items: center; gap: 6px; }
.breadcrumb a { color: rgba(255,255,255,.8); text-decoration: underline; }
.breadcrumb a:hover { color: #fff; }
.page-hero h1 { font-size: clamp(1.5rem, 3.5vw, 2.2rem); font-weight: 800; line-height: 1.25; margin-bottom: 12px; letter-spacing: -0.02em; max-width: 640px; }
.page-hero p { font-size: 1.0625rem; color: rgba(255,255,255,.85); max-width: 560px; line-height: 1.65; margin-bottom: 22px; }

/* ---- DOC CARDS ---- */
.doc-cards { display: grid; grid-template-columns: repeat(5, 1fr); gap: 14px; margin-top: 1.5rem; }
.doc-card { background: var(--bg); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 16px; text-align: center; }
.doc-card span { display: block; font-size: 1.6rem; font-weight: 800; color: var(--green); opacity: 0.35; margin-bottom: 6px; line-height: 1; }
.doc-card strong { font-size: 0.875rem; font-weight: 700; display: block; margin-bottom: 4px; }
.doc-card p { font-size: 0.8125rem; color: var(--text-3); line-height: 1.5; }

/* ---- PROCESS STEPS ---- */
.process-steps { display: flex; flex-direction: column; gap: 0; margin-top: 1.5rem; }
.ps-step { display: flex; gap: 20px; position: relative; padding-bottom: 28px; }
.ps-step:last-child { padding-bottom: 0; }
.ps-step:not(:last-child)::before { content: ''; position: absolute; left: 18px; top: 40px; width: 2px; height: calc(100% - 20px); background: var(--border); }
.ps-num { width: 36px; height: 36px; background: var(--green); color: #fff; font-size: 0.875rem; font-weight: 700; border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-top: 2px; z-index: 1; }
.ps-content { flex: 1; }
.ps-content h3 { font-size: 1rem; font-weight: 600; color: var(--text); margin-bottom: 4px; }
.ps-content p { font-size: 0.9375rem; color: var(--text-2); line-height: 1.65; }

/* ---- HIGHLIGHT CARDS ---- */
.highlight-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin-top: 1.5rem; }
.hl-card { background: var(--green-light); border: 1px solid #b0d9c0; border-radius: var(--radius-lg); padding: 18px; }
.hl-card strong { display: block; font-size: 0.9375rem; margin-bottom: 4px; color: var(--green-dark); }
.hl-card p { font-size: 0.875rem; color: var(--text-2); }

/* ---- TIPS GRID ---- */
.tips-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; margin-top: 1.5rem; }
.tip-item { display: flex; gap: 14px; align-items: flex-start; background: var(--bg); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 18px; }
.tip-icon { color: var(--green); flex-shrink: 0; margin-top: 2px; }
.tip-item strong { display: block; font-size: 0.9375rem; font-weight: 600; margin-bottom: 4px; }
.tip-item p { font-size: 0.875rem; color: var(--text-2); line-height: 1.55; }

/* ---- FOOTER ---- */
.site-footer { background: #0e1a12; color: rgba(255,255,255,.75); padding: 48px 0 0; }
.footer-inner { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 32px; padding-bottom: 40px; }
.footer-brand p { font-size: 0.875rem; margin-top: 10px; color: rgba(255,255,255,.55); line-height: 1.6; max-width: 260px; }
.footer-links-group h4 { font-size: 0.8125rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; color: rgba(255,255,255,.5); margin-bottom: 12px; }
.footer-links-group a { display: block; font-size: 0.9rem; color: rgba(255,255,255,.7); margin-bottom: 8px; text-decoration: none; transition: color var(--transition); }
.footer-links-group a:hover { color: #fff; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); padding: 18px 0; display: flex; flex-direction: column; gap: 6px; }
.disclaimer-note { font-size: 0.8125rem; color: rgba(255,255,255,.45); line-height: 1.55; text-align: center; }
.copyright { font-size: 0.8125rem; text-align: center; color: rgba(255,255,255,.35); }
.site-footer .logo-mark { background: rgba(255,255,255,.15); color: #fff; }
.site-footer .logo-text { color: rgba(255,255,255,.9); }

/* ---- SKIP LINK ---- */
.skip-link { position: absolute; top: -40px; left: 8px; background: var(--green); color: #fff; padding: 8px 16px; border-radius: var(--radius); z-index: 9999; font-size: 0.875rem; font-weight: 600; transition: top 0.2s; }
.skip-link:focus { top: 8px; }

/* ============================================================
   RESPONSIVE — TABLET  (max-width: 991px)
   ============================================================ */
@media (max-width: 991px) {
  .container { padding: 0 18px; }

  /* Links grid: 2 columns */
  .links-grid       { grid-template-columns: repeat(2, 1fr); }

  /* Steps: 2 columns */
  .steps-grid       { grid-template-columns: repeat(2, 1fr); }

  /* Error cards: 2 columns */
  .error-grid       { grid-template-columns: repeat(2, 1fr); }

  /* Contact: 2 columns */
  .contact-grid     { grid-template-columns: repeat(2, 1fr); }

  /* Doc cards: 3 columns */
  .doc-cards        { grid-template-columns: repeat(3, 1fr); }

  /* Benefits: 2 columns */
  .benefits-grid    { grid-template-columns: repeat(2, 1fr); }

  /* Stats: 2 columns */
  .stats-inner      { grid-template-columns: repeat(2, 1fr); gap: 24px; }

  /* Highlight cards: 2 columns */
  .highlight-cards  { grid-template-columns: repeat(2, 1fr); }

  /* Portal image — medium height on tablet */
  .portal-image-wrap img { height: 130px; }

  /* Footer — tablet: brand full-width top row, then 3 link columns below */
  .footer-inner {
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 28px;
  }
  .footer-brand {
    grid-column: 1 / -1; /* span all 3 columns */
    display: flex;
    align-items: flex-start;
    gap: 16px;
  }
  .footer-brand p {
    max-width: 480px;
    margin-top: 0;
  }
}

/* ============================================================
   RESPONSIVE — MOBILE  (max-width: 768px)
   ============================================================ */
@media (max-width: 768px) {
  .container { padding: 0 16px; }

  /* Section title */
  .section-title { font-size: 1.45rem; }

  /* Header — hamburger menu */
  .menu-btn { display: flex; }
  .main-nav {
    display: none; position: absolute; top: 56px; left: 0; right: 0;
    background: var(--green-dark); flex-direction: column;
    gap: 0; padding: 8px 0 16px;
    box-shadow: 0 8px 20px rgba(0,0,0,.2); z-index: 200;
  }
  .main-nav.open { display: flex; }
  .nav-link { padding: 12px 20px; border-radius: 0; font-size: 1rem; border-bottom: 1px solid rgba(255,255,255,.08); }

  /* Hero */
  .hero { padding: 44px 0 52px; }
  .hero-btns { flex-direction: column; }
  .hero-btns .btn { width: 100%; max-width: 280px; }

  /* Portal image — smaller on mobile */
  .portal-image-wrap img { height: 100%; }

  /* Grids → single column */
  .links-grid       { grid-template-columns: 1fr; gap: 10px; }
  .steps-grid       { grid-template-columns: 1fr; }
  .two-col          { grid-template-columns: 1fr; gap: 24px; }
  .error-grid       { grid-template-columns: 1fr; }
  .highlight-cards  { grid-template-columns: 1fr; }
  .contact-grid     { grid-template-columns: 1fr; }
  .info-cards       { grid-template-columns: 1fr; }
  .doc-cards        { grid-template-columns: 1fr 1fr; }
  .tips-grid        { grid-template-columns: 1fr; }
  .benefits-grid    { grid-template-columns: repeat(2, 1fr); }
  .stats-inner      { grid-template-columns: repeat(2, 1fr); }

  /* Sections */
  .section { padding: 36px 0; }

  /* CTA box */
  .cta-box { flex-direction: column; align-items: flex-start; }

  /* Page hero */
  .page-hero { padding: 32px 0 36px; }

  /* Footer — single column stack on mobile */
  .footer-inner {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .footer-brand {
    grid-column: auto;
    flex-direction: column;
    gap: 8px;
  }
  .footer-brand p { max-width: 100%; margin-top: 10px; }

  /* Footer link groups: 2 columns side-by-side on mobile */
  .footer-links-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }
}

/* ============================================================
   RESPONSIVE — MOBILE SMALL  (max-width: 480px)
   ============================================================ */
@media (max-width: 480px) {
  .container { padding: 0 14px; }

  .section-title { font-size: 1.3rem; }
  .hero h1 { font-size: 1.6rem; }
  .hero-sub { font-size: 1rem; }

  .btn { padding: 10px 20px; font-size: 0.9rem; }

  .ql-card { padding: 12px; gap: 10px; }
  .ql-info strong { font-size: 0.875rem; }

  /* Portal image */
  .portal-image-wrap img { height: 130px; }

  .doc-cards { grid-template-columns: 1fr; }
  .benefits-grid { grid-template-columns: 1fr; }
  .stats-inner { grid-template-columns: repeat(2, 1fr); }

  .steps-grid .step-card { padding: 16px; }
  .msp-table th, .msp-table td { padding: 8px 12px; font-size: 0.875rem; }

  /* Footer — fully single column at small mobile */
  .footer-inner { grid-template-columns: 1fr; gap: 16px; }
  .footer-brand { grid-column: auto; }
  .footer-links-wrapper { grid-template-columns: 1fr 1fr; gap: 16px; }
}

/* ============================================================
   RESPONSIVE — EXTRA SMALL  (max-width: 360px)
   ============================================================ */
@media (max-width: 360px) {
  .container { padding: 0 12px; }

  .section-title { font-size: 1.2rem; }
  .section-sub { font-size: 0.9375rem; }

  .hero h1 { font-size: 1.45rem; }
  .hero-sub { font-size: 0.9375rem; }
  .hero { padding: 36px 0 44px; }

  .btn { padding: 9px 18px; font-size: 0.875rem; }
  .hero-btns .btn { max-width: 100%; }

  /* Quick link cards: tighter on 360px */
  .ql-card { padding: 10px; gap: 8px; }
  .ql-icon { width: 34px; height: 34px; }
  .ql-info strong { font-size: 0.8125rem; }
  .ql-info span { font-size: 0.72rem; }

  /* Portal image */
  .portal-image-wrap img { height: 120px; }

  /* Stats: single column on 360px */
  .stats-inner { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .stat-num { font-size: 1.35rem; }
  .stat-label { font-size: 0.75rem; }

  /* Benefits: single column on 360px */
  .benefits-grid { grid-template-columns: 1fr; gap: 10px; }
  .benefit-card { padding: 16px 14px; }

  /* Tables: smaller font */
  .msp-table th, .msp-table td { padding: 7px 10px; font-size: 0.8125rem; }
  .dates-table th, .dates-table td { padding: 7px 10px; font-size: 0.8125rem; }

  /* Step cards */
  .step-card { padding: 14px; }
  .step-num { font-size: 1.6rem; }
  .step-card h3 { font-size: 0.9375rem; }
  .step-card p { font-size: 0.85rem; }

  /* FAQ */
  .faq-q { font-size: 0.9375rem; padding: 14px 0; }
  .faq-a p { font-size: 0.875rem; }

  /* Doc cards: single column */
  .doc-cards { grid-template-columns: 1fr; }

  /* Footer */
  .footer-inner { gap: 14px; }
  .footer-links-wrapper { grid-template-columns: 1fr; gap: 14px; }
  .footer-brand p { font-size: 0.8125rem; }
  .footer-links-group a { font-size: 0.875rem; }

  /* Ticker: smaller font */
  .ticker-content span { font-size: 0.75rem; }
  .ticker-label { font-size: 0.7rem; padding: 2px 7px; }

  /* Section padding */
  .section { padding: 28px 0; }
  .page-hero { padding: 26px 0 30px; }
}