/* ============================================================
   Livioo Brand CSS — Health Management DX for Foreign Workers
   Version 3.0 — Production Build
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@300;400;500;600;700;900&family=Inter:wght@300;400;500;600;700;800;900&display=swap');

/* ── CSS Custom Properties ── */
:root {
  /* Primary Brand */
  --lb:       #2563EB;   /* Livioo Blue */
  --lt:       #0D9488;   /* Livioo Teal */
  --lb-dark:  #1D4ED8;
  --lt-dark:  #0F766E;
  --lb-light: #EFF6FF;
  --lt-light: #F0FDFA;
  --lb-mid:   #BFDBFE;
  --lt-mid:   #99F6E4;

  /* Status */
  --green:    #16A34A;
  --green-l:  #DCFCE7;
  --green-d:  #15803D;
  --amber:    #D97706;
  --amber-l:  #FEF3C7;
  --red:      #DC2626;
  --red-l:    #FEE2E2;
  --red-d:    #B91C1C;

  /* Neutral */
  --ink:      #0F172A;
  --ink-2:    #1E293B;
  --slate:    #334155;
  --muted:    #64748B;
  --subtle:   #94A3B8;
  --border:   #E2E8F0;
  --border-l: #F1F5F9;
  --bg:       #F8FAFC;
  --bg-2:     #F1F5F9;
  --white:    #FFFFFF;

  /* Typography */
  --ja: 'Noto Sans JP', 'Hiragino Kaku Gothic ProN', 'Yu Gothic', sans-serif;
  --en: 'Inter', system-ui, -apple-system, sans-serif;

  /* Layout */
  --max:    1140px;
  --max-w:  860px;
  --max-n:  720px;

  /* Radius */
  --r-xs:   4px;
  --r-sm:   8px;
  --r-md:   14px;
  --r-lg:   20px;
  --r-xl:   28px;
  --r-2xl:  40px;

  /* Shadow */
  --sh-xs: 0 1px 2px rgba(0,0,0,.05);
  --sh-sm: 0 1px 4px rgba(0,0,0,.07), 0 1px 2px rgba(0,0,0,.04);
  --sh-md: 0 4px 16px rgba(0,0,0,.08), 0 1px 4px rgba(0,0,0,.04);
  --sh-lg: 0 12px 40px rgba(0,0,0,.10), 0 3px 10px rgba(0,0,0,.05);
  --sh-xl: 0 24px 64px rgba(0,0,0,.12), 0 6px 20px rgba(0,0,0,.06);
  --sh-2xl:0 40px 96px rgba(0,0,0,.16), 0 12px 32px rgba(0,0,0,.08);

  /* Transition */
  --tr: .2s cubic-bezier(.4,0,.2,1);
  --tr-slow: .35s cubic-bezier(.4,0,.2,1);
}

/* ── Reset ── */
*,*::before,*::after { box-sizing: border-box; margin: 0; padding: 0 }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; tab-size: 4 }
body {
  font-family: var(--ja);
  color: var(--ink);
  background: var(--white);
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; height: auto; display: block }
a { color: inherit; text-decoration: none }
ul, ol { list-style: none }
button { font-family: var(--ja); cursor: pointer; border: none; background: none }
input, select, textarea { font-family: var(--ja) }

/* ── Layout ── */
.wrap   { max-width: var(--max); margin: 0 auto; padding: 0 24px }
.wrap-w { max-width: var(--max-w); margin: 0 auto; padding: 0 24px }
.wrap-n { max-width: var(--max-n); margin: 0 auto; padding: 0 24px }
.sec    { padding: 96px 24px }
.sec--gray  { background: var(--bg) }
.sec--blue  { background: var(--lb-light) }
.sec--teal  { background: var(--lt-light) }
.sec--dark  { background: var(--ink-2); color: var(--white) }
.sec--ink   { background: var(--ink); color: var(--white) }

/* ── Grid ── */
.g2 { display: grid; grid-template-columns: repeat(2,1fr); gap: 24px }
.g3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px }
.g4 { display: grid; grid-template-columns: repeat(4,1fr); gap: 24px }

/* ── Navigation ── */
.nav {
  position: sticky; top: 0; z-index: 200;
  background: rgba(255,255,255,.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  padding: 0 24px;
  transition: box-shadow var(--tr);
}
.nav.scrolled { box-shadow: var(--sh-md) }
.nav__i {
  max-width: var(--max); margin: 0 auto;
  height: 64px; display: flex; align-items: center;
  justify-content: space-between; gap: 20px;
}
.logo {
  font-family: var(--en); font-weight: 900; font-size: 1.5rem;
  color: var(--ink); letter-spacing: -1px; flex-shrink: 0;
  display: flex; align-items: center; gap: 1px;
}
.logo__oo {
  color: #008f3a;
}
.nav__links { display: flex; align-items: center; gap: 2px }
.nav__a {
  padding: 7px 13px; border-radius: var(--r-sm);
  font-size: .85rem; font-weight: 500; color: var(--slate);
  transition: all var(--tr); white-space: nowrap;
}
.nav__a:hover, .nav__a--on { background: var(--lb-light); color: var(--lb); font-weight: 600 }
.nav__cta {
  padding: 9px 20px; background: var(--lb); color: var(--white) !important;
  border-radius: var(--r-sm); font-size: .85rem; font-weight: 700;
  transition: all var(--tr); white-space: nowrap;
  box-shadow: 0 2px 8px rgba(37,99,235,.28);
}
.nav__cta:hover { background: var(--lb-dark); transform: translateY(-1px); box-shadow: 0 6px 18px rgba(37,99,235,.36) }
.nav__burger {
  display: none; flex-direction: column; gap: 5px;
  padding: 6px; border-radius: var(--r-sm);
}
.nav__burger span {
  display: block; width: 22px; height: 2px;
  background: var(--ink); border-radius: 2px; transition: all .3s;
}
.nav.open .nav__burger span:nth-child(1) { transform: translateY(7px) rotate(45deg) }
.nav.open .nav__burger span:nth-child(2) { opacity: 0; transform: scaleX(0) }
.nav.open .nav__burger span:nth-child(3) { transform: translateY(-7px) rotate(-45deg) }
.nav__mob {
  display: none; flex-direction: column; gap: 2px;
  padding: 12px 0 16px; border-top: 1px solid var(--border);
}
.nav.open .nav__mob { display: flex }

/* ── Buttons ── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 13px 28px; border-radius: var(--r-md);
  font-weight: 700; font-size: .95rem; transition: all var(--tr);
  border: none; cursor: pointer; white-space: nowrap; text-align: center;
  font-family: var(--ja);
}
.btn-p  { background: var(--lb); color: var(--white); box-shadow: 0 2px 8px rgba(37,99,235,.28) }
.btn-p:hover { background: var(--lb-dark); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(37,99,235,.38) }
.btn-t  { background: var(--lt); color: var(--white); box-shadow: 0 2px 8px rgba(13,148,136,.28) }
.btn-t:hover { background: var(--lt-dark); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(13,148,136,.38) }
.btn-o  { background: var(--white); color: var(--lb); border: 2px solid var(--lb) }
.btn-o:hover { background: var(--lb-light); transform: translateY(-2px) }
.btn-ot { background: var(--white); color: var(--lt); border: 2px solid var(--lt) }
.btn-ot:hover { background: var(--lt-light); transform: translateY(-2px) }
.btn-ow { background: transparent; color: var(--white); border: 2px solid rgba(255,255,255,.6) }
.btn-ow:hover { background: rgba(255,255,255,.12); border-color: rgba(255,255,255,.85) }
.btn-lg { padding: 17px 36px; font-size: 1.05rem; border-radius: var(--r-lg) }
.btn-sm { padding: 8px 16px; font-size: .82rem; border-radius: var(--r-sm) }
.btn-xs { padding: 5px 12px; font-size: .75rem; border-radius: var(--r-xs) }
.btn-full { width: 100%; max-width: 380px }
.w-full { width: 100% }

/* ── Section header ── */
.stag {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 5px 14px; border-radius: 100px;
  font-size: .72rem; font-weight: 700; letter-spacing: .07em; text-transform: uppercase;
  margin-bottom: 16px;
}
.stag-b { background: var(--lb-light); color: var(--lb); border: 1px solid var(--lb-mid) }
.stag-t { background: var(--lt-light); color: var(--lt); border: 1px solid var(--lt-mid) }
.stag-g { background: var(--bg-2); color: var(--muted); border: 1px solid var(--border) }
.stag-w { background: rgba(255,255,255,.15); color: rgba(255,255,255,.9); border: 1px solid rgba(255,255,255,.2) }
.stag-a { background: var(--amber-l); color: var(--amber); border: 1px solid #FDE68A }

.sh   { font-size: clamp(1.5rem, 3.2vw, 2.35rem); font-weight: 800; line-height: 1.38; letter-spacing: -.025em; color: var(--ink) }
.sh--w { color: var(--white) }
.ss   { font-size: 1rem; color: var(--muted); line-height: 1.88; margin-top: 12px; max-width: 640px }
.ss--w { color: rgba(255,255,255,.78) }
.sec-hd { margin-bottom: 56px }
.sec-hd--c { text-align: center }
.sec-hd--c .ss { margin: 12px auto 0 }

/* ── Card ── */
.card {
  background: var(--white); border-radius: var(--r-xl);
  padding: 30px; box-shadow: var(--sh-md); border: 1px solid var(--border);
  transition: transform var(--tr), box-shadow var(--tr);
}
.card:hover { transform: translateY(-4px); box-shadow: var(--sh-lg) }
.card--flat { box-shadow: none; border: 1px solid var(--border) }
.card--hi   { border-top: 3px solid var(--lb) }
.card--ht   { border-top: 3px solid var(--lt) }
.card--hg   { border-top: 3px solid var(--green) }

/* ── Icon wrap ── */
.iw {
  width: 48px; height: 48px; border-radius: var(--r-md);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px; flex-shrink: 0; font-size: 1.25rem;
}
.iw-b { background: var(--lb-light); color: var(--lb) }
.iw-t { background: var(--lt-light); color: var(--lt) }
.iw-g { background: var(--green-l);  color: var(--green) }
.iw-a { background: var(--amber-l);  color: var(--amber) }
.iw-r { background: var(--red-l);    color: var(--red) }

/* ── Badge ── */
.badge {
  display: inline-flex; align-items: center; gap: 5px;
  padding: 3px 10px; border-radius: 100px;
  font-size: .72rem; font-weight: 700;
}
.bg-g { background: var(--green-l); color: var(--green) }
.bg-a { background: var(--amber-l); color: var(--amber) }
.bg-r { background: var(--red-l);   color: var(--red) }
.bg-b { background: var(--lb-light); color: var(--lb) }
.bg-t { background: var(--lt-light); color: var(--lt) }

/* ── Disclaimer / Info Box ── */
.info-box {
  background: var(--lb-light); border: 1px solid var(--lb-mid);
  border-radius: var(--r-md); padding: 20px 24px;
  display: flex; gap: 14px; align-items: flex-start;
}
.info-box--amber { background: var(--amber-l); border-color: #FDE68A }
.info-box--red   { background: var(--red-l);   border-color: #FECACA }
.info-box--teal  { background: var(--lt-light); border-color: var(--lt-mid) }
.info-box__ic { width: 22px; height: 22px; flex-shrink: 0; margin-top: 1px; color: var(--lb) }
.info-box--amber .info-box__ic { color: var(--amber) }
.info-box--teal  .info-box__ic { color: var(--lt) }

/* ── FAQ Accordion ── */
.faq-item { border-bottom: 1px solid var(--border) }
.faq-q {
  width: 100%; text-align: left; padding: 20px 0;
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
  font-weight: 600; font-size: .93rem; color: var(--ink);
  transition: color var(--tr);
}
.faq-q:hover { color: var(--lb) }
.faq-ic {
  width: 24px; height: 24px; border-radius: 50%;
  border: 1.5px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; transition: all .3s; color: var(--muted); font-size: .72rem;
}
.faq-item.open .faq-ic { background: var(--lb); border-color: var(--lb); color: var(--white); transform: rotate(45deg) }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .38s ease, padding-bottom .3s }
.faq-item.open .faq-a { max-height: 260px; padding-bottom: 20px }
.faq-a p { font-size: .88rem; color: var(--slate); line-height: 1.85 }

/* ── Step flow — horizontal ── */
.steps-h { display: grid; gap: 0; position: relative }
.steps-h4 { grid-template-columns: repeat(4,1fr) }
.steps-h3 { grid-template-columns: repeat(3,1fr) }
.step {
  display: flex; flex-direction: column; align-items: center;
  text-align: center; padding: 0 16px; position: relative;
}
.step:not(:last-child)::after {
  content: ''; position: absolute; top: 26px; right: -6%; width: 12%; height: 2px;
  background: linear-gradient(90deg, var(--lb), var(--lt)); z-index: 1;
}
.step-n {
  width: 54px; height: 54px; border-radius: 50%;
  background: linear-gradient(135deg, var(--lb), var(--lt));
  color: var(--white); display: flex; align-items: center; justify-content: center;
  font-weight: 900; font-size: 1.15rem; font-family: var(--en);
  margin-bottom: 16px; position: relative; z-index: 2;
  box-shadow: 0 4px 16px rgba(37,99,235,.32);
}
.step-t { font-weight: 700; font-size: .95rem; color: var(--ink); margin-bottom: 6px }
.step-d { font-size: .83rem; color: var(--muted); line-height: 1.68 }

/* ── Steps vertical ── */
.steps-v { display: flex; flex-direction: column; gap: 0; max-width: 600px; margin: 0 auto }
.step-v { display: flex; gap: 22px; padding-bottom: 36px; position: relative }
.step-v:last-child { padding-bottom: 0 }
.step-v__left { display: flex; flex-direction: column; align-items: center; flex-shrink: 0 }
.step-v__n {
  width: 52px; height: 52px; border-radius: 50%;
  background: linear-gradient(135deg, var(--lb), var(--lt));
  color: var(--white); display: flex; align-items: center; justify-content: center;
  font-weight: 900; font-size: 1.05rem; font-family: var(--en);
  position: relative; z-index: 2; flex-shrink: 0;
  box-shadow: 0 4px 14px rgba(37,99,235,.30);
}
.step-v__line {
  width: 2px; flex: 1;
  background: linear-gradient(180deg, rgba(37,99,235,.25), rgba(13,148,136,.15));
  margin-top: 8px; min-height: 28px;
}
.step-v:last-child .step-v__line { display: none }
.step-v__body { padding-top: 10px; flex: 1 }
.step-v__t { font-weight: 700; font-size: 1.02rem; color: var(--ink); margin-bottom: 7px }
.step-v__d { font-size: .875rem; color: var(--muted); line-height: 1.8 }

/* ── CTA section ── */
.cta-sec { padding: 96px 24px; text-align: center }
.cta-sec--grad {
  background: linear-gradient(140deg, #1E3A8A 0%, #155E75 50%, #0F766E 100%);
  color: var(--white);
}
.cta-sec__h { font-size: clamp(1.5rem, 2.9vw, 2.15rem); font-weight: 800; margin-bottom: 12px; line-height: 1.42 }
.cta-sec__s { font-size: 1rem; margin-bottom: 36px; line-height: 1.88; opacity: .88 }
.cta-g { display: flex; align-items: center; justify-content: center; gap: 12px; flex-wrap: wrap }

/* ── Footer ── */
.footer { background: var(--ink); color: rgba(255,255,255,.6); padding: 72px 24px 36px }
.footer__i { max-width: var(--max); margin: 0 auto }
.footer__top {
  display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr 1.2fr;
  gap: 40px; padding-bottom: 40px; border-bottom: 1px solid rgba(255,255,255,.08);
}
.footer__logo { font-family: var(--en); font-weight: 900; font-size: 1.45rem; color: var(--white); margin-bottom: 10px }
.footer__tag  { font-size: .83rem; line-height: 1.75; max-width: 240px; color: rgba(255,255,255,.5) }
.footer__ht   { font-size: .7rem; font-weight: 700; text-transform: uppercase; letter-spacing: .09em; color: rgba(255,255,255,.32); margin-bottom: 16px }
.footer__links { display: flex; flex-direction: column; gap: 10px }
.footer__lnk  { font-size: .83rem; color: rgba(255,255,255,.56); transition: color var(--tr) }
.footer__lnk:hover { color: var(--white) }
.footer__bot  { display: flex; align-items: center; justify-content: space-between; padding-top: 28px; gap: 12px; flex-wrap: wrap }
.footer__cp   { font-size: .75rem; color: rgba(255,255,255,.3) }
.footer__disc { font-size: .72rem; color: rgba(255,255,255,.26); max-width: 580px; text-align: right; line-height: 1.65 }

/* 運営会社カード */
.footer__company {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 12px;
  padding: 16px 18px;
  display: flex; flex-direction: column; gap: 6px;
}
/* SumLuck リンク */
.footer__company-link {
  text-decoration: none; display: flex; flex-direction: column; gap: 4px;
  transition: opacity .18s;
}
.footer__company-link:hover { opacity: .72; }
.footer__company-name {
  font-size: .88rem; font-weight: 700; color: rgba(255,255,255,.88);
  letter-spacing: .01em;
}
.footer__company-en {
  font-size: .7rem; color: rgba(255,255,255,.38);
  font-family: var(--en); letter-spacing: .02em;
}
.footer__company-detail {
  font-size: .75rem; color: rgba(255,255,255,.46); line-height: 1.6; margin-top: 4px;
}
/* コピーライト内リンク */
.footer__cp-link {
  color: inherit; text-decoration: underline;
  text-underline-offset: 3px; opacity: .78;
  transition: opacity .18s;
}
.footer__cp-link:hover { opacity: 1; }

/* 大分大学連携バッジ */
.footer__univ {
  display: flex; align-items: flex-start; gap: 12px;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 12px;
  padding: 16px 20px;
  margin-top: 28px;
}
.footer__univ-icon {
  width: 36px; height: 36px; flex-shrink: 0;
  background: linear-gradient(135deg, var(--lb), var(--lt));
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; color: var(--white);
}
.footer__univ-label {
  font-size: .65rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: .1em; color: rgba(255,255,255,.38);
  margin-bottom: 4px;
}
.footer__univ-title {
  font-size: .83rem; font-weight: 700; color: rgba(255,255,255,.82);
  line-height: 1.4; margin-bottom: 5px;
}
.footer__univ-body {
  font-size: .73rem; color: rgba(255,255,255,.44); line-height: 1.72;
}

/* 事業パートナーバッジ */
.footer__partner {
  display: flex; align-items: flex-start; gap: 12px;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 12px;
  padding: 16px 20px;
  margin-top: 12px;
}
.footer__partner-icon {
  width: 36px; height: 36px; flex-shrink: 0;
  background: linear-gradient(135deg, #008f3a, #0D9488);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; color: var(--white);
}
.footer__partner-label {
  font-size: .65rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: .1em; color: rgba(255,255,255,.38);
  margin-bottom: 4px;
}
.footer__partner-name {
  font-size: .83rem; font-weight: 700; color: rgba(255,255,255,.82);
  line-height: 1.4;
}
.footer__partner-name a {
  color: rgba(255,255,255,.82);
  text-decoration: underline; text-underline-offset: 3px;
  text-decoration-color: rgba(255,255,255,.28);
}
.footer__partner-name a:hover { color: var(--white); }

/* ── Form components ── */
.form-wrap {
  background: var(--white); border-radius: var(--r-xl);
  padding: 44px; box-shadow: var(--sh-lg); border: 1px solid var(--border);
}
.form-group  { margin-bottom: 20px }
.form-row    { display: grid; grid-template-columns: 1fr 1fr; gap: 16px }
.form-label  { display: block; font-size: .83rem; font-weight: 600; color: var(--slate); margin-bottom: 6px }
.form-input  {
  width: 100%; padding: 12px 15px;
  border: 1.5px solid var(--border); border-radius: var(--r-sm);
  font-size: .9rem; font-family: var(--ja); color: var(--ink); outline: none;
  transition: border-color var(--tr), box-shadow var(--tr);
  background: var(--white); appearance: none;
}
.form-input:focus { border-color: var(--lb); box-shadow: 0 0 0 3px rgba(37,99,235,.12) }
.form-input::placeholder { color: var(--subtle) }
textarea.form-input { resize: vertical; min-height: 96px }
.req { color: var(--red); font-size: .72rem; margin-left: 2px }
.form-note { font-size: .75rem; color: var(--muted); margin-top: 8px; text-align: center; line-height: 1.65 }

/* ── Scroll animations ── */
.fu {
  opacity: 0; transform: translateY(24px);
  transition: opacity .65s ease, transform .65s ease;
}
.fu.in { opacity: 1; transform: translateY(0) }
.fu:nth-child(2) { transition-delay: .08s }
.fu:nth-child(3) { transition-delay: .16s }
.fu:nth-child(4) { transition-delay: .24s }
.fu:nth-child(5) { transition-delay: .32s }
.fu:nth-child(6) { transition-delay: .40s }
.fu:nth-child(7) { transition-delay: .48s }

/* ── Utility ── */
.tc   { text-align: center }
.tl   { text-align: left }
.tr   { text-align: right }
.flex { display: flex }
.ai-c { align-items: center }
.jc-c { justify-content: center }
.fw   { flex-wrap: wrap }
.fd-c { flex-direction: column }
.gap-6  { gap: 6px }  .gap-8  { gap: 8px }  .gap-12 { gap: 12px }
.gap-16 { gap: 16px } .gap-20 { gap: 20px } .gap-24 { gap: 24px }
.gap-22 { gap: 22px } .gap-28 { gap: 28px }
.gap-32 { gap: 32px } .gap-40 { gap: 40px } .gap-48 { gap: 48px }
.mt-4  { margin-top:  4px }  .mt-8  { margin-top:  8px }  .mt-12 { margin-top: 12px }
.mt-16 { margin-top: 16px }  .mt-20 { margin-top: 20px }  .mt-24 { margin-top: 24px }
.mt-32 { margin-top: 32px }  .mt-40 { margin-top: 40px }  .mt-44 { margin-top: 44px }
.mt-48 { margin-top: 48px }  .mt-56 { margin-top: 56px }  .mt-64 { margin-top: 64px }
.mt-72 { margin-top: 72px }  .mt-80 { margin-top: 80px }
.mb-8  { margin-bottom: 8px }   .mb-12 { margin-bottom: 12px } .mb-16 { margin-bottom: 16px }
.mb-24 { margin-bottom: 24px }  .mb-32 { margin-bottom: 32px } .mb-40 { margin-bottom: 40px }
.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border-width: 0;
}

/* ── Responsive breakpoints ── */
@media (max-width: 1024px) {
  .g4 { grid-template-columns: repeat(2,1fr) }
  .footer__top { grid-template-columns: 1fr 1fr; gap: 28px }
  .steps-h4 { grid-template-columns: repeat(2,1fr); row-gap: 40px }
  .step:nth-child(2)::after, .step:nth-child(3)::after { display: none }
}
@media (max-width: 768px) {
  .sec { padding: 60px 20px }
  .cta-sec { padding: 72px 20px }
  .g2, .g3 { grid-template-columns: 1fr }
  .nav__links { display: none }
  .nav__burger { display: flex }
  .footer__top { grid-template-columns: 1fr }
  .footer__bot { flex-direction: column; align-items: flex-start }
  .footer__disc { text-align: left }
  .cta-g { flex-direction: column; align-items: stretch }
  .cta-g .btn { width: 100% }
  .steps-h4 { grid-template-columns: 1fr; row-gap: 36px }
  .steps-h3 { grid-template-columns: 1fr; row-gap: 36px }
  .step::after { display: none !important }
  .form-wrap { padding: 28px 20px }
  .form-row { grid-template-columns: 1fr }
}
@media (max-width: 480px) {
  .sec { padding: 48px 16px }
  .sh { font-size: 1.45rem }
  .card { padding: 22px }
}
