:root {
  --yellow: #FDC535;
  --yellow-strong: #FFC400;
  --yellow-soft: #FFF7DD;
  --navy: #022159;
  --navy-2: #001844;
  --navy-3: #0B3472;
  --ink: #101828;
  --muted: #5E6878;
  --line: #E7EAF0;
  --paper: #FFFFFF;
  --soft: #F7F9FC;
  --green: #129447;
  --green-soft: #EAF8EF;
  --red: #D92D20;
  --blue: #1E5BB8;
  --shadow-sm: 0 10px 30px rgba(1, 25, 68, .08);
  --shadow-lg: 0 28px 70px rgba(1, 25, 68, .18);
  --radius: 20px;
  --radius-sm: 14px;
  --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, "Noto Sans Devanagari", "Segoe UI", Arial, sans-serif;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
figure { margin: 0; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
button { cursor: pointer; }

.skip-link {
  position: absolute;
  left: -9999px;
  top: 8px;
  z-index: 9999;
  background: #fff;
  color: var(--navy);
  padding: 10px 14px;
  border-radius: 10px;
}
.skip-link:focus { left: 10px; }

.container { width: min(var(--max), calc(100% - 40px)); margin-inline: auto; }
.section { padding: 82px 0; }
.section-sm { padding: 56px 0; }
.section-soft { background: var(--soft); }
.section-title {
  margin: 0 auto 14px;
  max-width: 820px;
  text-align: center;
  color: var(--navy);
  font-size: clamp(1.9rem, 3vw, 2.65rem);
  line-height: 1.15;
  letter-spacing: -.025em;
}
.section-subtitle {
  max-width: 760px;
  margin: 0 auto 42px;
  text-align: center;
  color: var(--muted);
  font-size: 1.03rem;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 12px;
  border-radius: 999px;
  background: var(--yellow-soft);
  color: var(--navy);
  border: 1px solid rgba(253,197,53,.5);
  font-weight: 800;
  font-size: .82rem;
  letter-spacing: .02em;
}
.eyebrow-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--yellow-strong); }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(2,33,89,.97);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.nav-shell { min-height: 72px; display: flex; align-items: center; gap: 24px; }
.brand { display: flex; align-items: center; gap: 11px; min-width: 215px; color: #fff; }
.brand img { width: 46px; height: 46px; border-radius: 12px; box-shadow: 0 8px 24px rgba(0,0,0,.18); }
.brand-copy { display: flex; flex-direction: column; line-height: 1.1; }
.brand-title { font-weight: 900; letter-spacing: -.02em; font-size: 1.14rem; }
.brand-hi { margin-top: 4px; font-size: .78rem; color: #DDE7FF; font-weight: 700; }
.primary-nav { margin-left: auto; display: flex; align-items: center; gap: 28px; }
.primary-nav a { color: #fff; font-size: .94rem; font-weight: 700; opacity: .88; position: relative; }
.primary-nav a:hover, .primary-nav a.active { opacity: 1; }
.primary-nav a.active::after, .primary-nav a:hover::after {
  content: "";
  position: absolute;
  height: 2px;
  left: 0;
  right: 0;
  bottom: -9px;
  background: var(--yellow);
  border-radius: 2px;
}
.nav-actions { display: flex; align-items: center; gap: 10px; }
.lang-switch {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 7px;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 999px;
  color: #fff;
  font-size: .78rem;
  font-weight: 800;
}
.lang-switch a { padding: 2px 6px; opacity: .72; }
.lang-switch a.current { background: #fff; color: var(--navy); border-radius: 999px; opacity: 1; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 46px;
  padding: 0 18px;
  border-radius: 12px;
  font-weight: 850;
  border: 1px solid transparent;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary { background: var(--yellow); color: var(--navy-2); box-shadow: 0 8px 20px rgba(253,197,53,.22); }
.btn-primary:hover { background: #FFD24F; }
.btn-navy { background: var(--navy); color: #fff; box-shadow: 0 10px 28px rgba(2,33,89,.18); }
.btn-outline { border-color: #D7DCE7; color: var(--navy); background: #fff; }
.btn-small { min-height: 42px; padding-inline: 15px; font-size: .88rem; }
.mobile-toggle { display: none; border: 0; background: transparent; color: #fff; width: 42px; height: 42px; padding: 8px; }
.mobile-toggle span { display: block; height: 2px; background: #fff; margin: 6px 0; border-radius: 4px; }

/* Hero */
.hero {
  position: relative;
  overflow: hidden;
  padding: 68px 0 0;
  background:
    radial-gradient(circle at 82% 30%, rgba(253,197,53,.16), transparent 32%),
    linear-gradient(180deg, #fff 0%, #fff 82%, #f7f9fc 100%);
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: .24;
  background-image:
    linear-gradient(90deg, transparent 0 77%, rgba(2,33,89,.08) 77% 77.18%, transparent 77.18%),
    linear-gradient(180deg, transparent 0 70%, rgba(2,33,89,.06) 70% 70.2%, transparent 70.2%);
}
.hero::after {
  content: "";
  position: absolute;
  left: -8%; right: -8%; bottom: -68px;
  height: 145px;
  background: var(--navy);
  transform: rotate(2deg);
  border-top: 8px solid var(--yellow);
  z-index: 0;
}
.hero-grid { position: relative; z-index: 2; display: grid; grid-template-columns: .94fr 1.06fr; gap: 44px; align-items: center; min-height: 620px; padding-bottom: 80px; }
.hero-copy { padding-bottom: 34px; }
.hero h1 {
  color: var(--navy);
  font-size: clamp(2.45rem, 4.4vw, 3.75rem);
  line-height: 1.12;
  letter-spacing: -.035em;
  margin: 18px 0 18px;
  max-width: 720px;
}
.hero h1 .accent { color: #D79B00; }
.hero-title-line { display: block; }
.hero-title-line.devanagari-title { line-height: 1.18; padding-block: .03em .08em; }
.hero h1, .page-hero h1, .section-title { overflow-wrap: anywhere; text-wrap: balance; }
.hero h1 .accent, .hero h1 .devanagari-title { word-break: keep-all; }
.hero-lead { font-size: clamp(1.02rem, 2vw, 1.22rem); color: #3D4655; max-width: 630px; margin: 0 0 24px; }
.hero-inline-features { display: flex; flex-wrap: wrap; gap: 12px 20px; margin: 24px 0; }
.hero-inline-feature { display: flex; align-items: center; gap: 8px; color: var(--navy); font-weight: 800; font-size: .9rem; }
.hero-inline-feature .mini-icon {
  width: 32px; height: 32px; border-radius: 9px; display: grid; place-items: center; background: var(--yellow-soft); color: var(--navy); border: 1px solid #F4E2A2; font-weight: 900;
}
.store-buttons { display: flex; flex-wrap: wrap; align-items: center; gap: 14px; margin: 26px 0 18px; }
.store-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 176px;
  min-height: 58px;
  padding: 6px 10px;
  border: 1px solid rgba(2,33,89,.14);
  border-radius: 14px;
  background: #050505;
  box-shadow: 0 12px 28px rgba(1,25,68,.16);
  transition: transform .2s ease, box-shadow .2s ease;
  overflow: hidden;
}
.store-link:hover { transform: translateY(-2px); box-shadow: 0 16px 34px rgba(1,25,68,.22); }
.store-link img { width: 150px; height: auto; border-radius: 7px; image-rendering: auto; }
.store-link.is-disabled { opacity: 1; filter: none; cursor: default; }
.store-link.is-disabled:hover { transform: none; box-shadow: 0 12px 28px rgba(1,25,68,.16); }
.hero-trust { display: flex; align-items: center; gap: 10px; color: #475467; font-size: .9rem; font-weight: 700; }
.shield-mark { width: 24px; height: 24px; border: 2px solid var(--navy); border-radius: 7px 7px 10px 10px; display: grid; place-items: center; font-size: .72rem; color: var(--navy); }

.hero-visual { position: relative; min-height: 590px; }
.phone-stage { position: absolute; inset: 0; display: flex; justify-content: center; align-items: end; }
.phone-shot { position: absolute; width: 250px; filter: drop-shadow(0 25px 28px rgba(0, 24, 64, .20)); transform-origin: bottom center; }
.phone-shot img { width: 100%; }
.phone-shot.center { z-index: 3; left: 50%; transform: translateX(-50%) translateY(2px); width: 275px; }
.phone-shot.left { z-index: 2; left: 6%; transform: rotate(-2.5deg) translateY(26px); width: 248px; }
.phone-shot.right { z-index: 1; right: 0; transform: rotate(2.6deg) translateY(34px); width: 242px; }
.hero-badge {
  position: absolute;
  right: 14px;
  top: 15px;
  background: #fff;
  border: 1px solid #EDF0F5;
  border-radius: 14px;
  box-shadow: var(--shadow-sm);
  padding: 10px 14px;
  display: flex; align-items: center; gap: 9px;
  color: var(--navy); font-weight: 850; font-size: .83rem;
  z-index: 4;
}
.hero-badge span:first-child { width: 10px; height: 10px; border-radius: 50%; background: var(--green); }

/* Feature cards */
.feature-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 14px; }
.feature-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 22px 16px;
  min-height: 208px;
  text-align: center;
  box-shadow: 0 8px 24px rgba(2,33,89,.04);
  transition: transform .22s ease, box-shadow .22s ease;
}
.feature-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-sm); }
.feature-card img { width: 58px; height: 58px; object-fit: cover; border-radius: 50%; margin: 0 auto 10px; }
.feature-card h3 { margin: 0 0 8px; color: var(--navy); font-size: 1rem; line-height: 1.25; }
.feature-card p { margin: 0; color: var(--muted); font-size: .84rem; line-height: 1.5; }

/* Audience */
.audience-grid { display: grid; grid-template-columns: repeat(6,1fr); gap: 14px; }
.audience-card { border: 1px solid rgba(253,197,53,.48); border-radius: 18px; overflow: hidden; background: #fff; box-shadow: 0 8px 24px rgba(2,33,89,.035); }
.audience-card .portrait { height: 132px; display: grid; place-items: end center; background: linear-gradient(180deg,#fffaf1,#fff); overflow: hidden; }
.audience-card .portrait img { width: 100%; height: 100%; object-fit: cover; object-position: center 25%; }
.audience-copy { padding: 14px 14px 17px; text-align: center; border-top: 1px solid #F2E2AA; }
.audience-copy h3 { margin: 0 0 6px; color: var(--navy); font-size: 1rem; }
.audience-copy p { margin: 0; color: var(--muted); font-size: .82rem; line-height: 1.45; }


/* Construction role and wage education */
.role-detail-grid { display:grid; grid-template-columns:repeat(4,1fr); gap:16px; margin-top:34px; }
.role-detail-card { background:#fff; border:1px solid var(--line); border-radius:18px; padding:22px; box-shadow:0 8px 24px rgba(2,33,89,.045); }
.role-detail-card .role-kicker { display:inline-flex; align-items:center; min-height:28px; padding:4px 9px; border-radius:999px; background:var(--yellow-soft); color:#8B6500; font-size:.73rem; font-weight:850; margin-bottom:10px; }
.role-detail-card h3 { margin:0 0 8px; color:var(--navy); font-size:1.02rem; line-height:1.3; }
.role-detail-card p { margin:0; color:var(--muted); font-size:.88rem; line-height:1.58; }
.wage-methods { display:grid; grid-template-columns:repeat(3,1fr); gap:16px; margin-top:26px; }
.wage-card { border:1px solid rgba(253,197,53,.55); background:linear-gradient(180deg,#fffdf7,#fff); border-radius:18px; padding:22px; }
.wage-card h3 { color:var(--navy); margin:0 0 8px; font-size:1.03rem; }
.wage-card p { color:#515B6B; margin:0; font-size:.9rem; }
.wage-card .formula { display:block; margin-top:12px; padding:10px 12px; border-radius:12px; background:#F8FAFC; border:1px solid #E8ECF2; color:var(--navy); font-size:.82rem; font-weight:800; }
.construction-note { max-width:900px; margin:28px auto 0; padding:16px 18px; border-left:4px solid var(--yellow); border-radius:0 14px 14px 0; background:var(--yellow-soft); color:#51451C; font-size:.9rem; }

/* Related CodeMicros construction product */
.civil-promo { padding:0 0 82px; }
.civil-promo-card { display:grid; grid-template-columns:auto 1fr auto; align-items:center; gap:22px; border:1px solid #DCE5F3; border-radius:22px; background:linear-gradient(120deg,#F7FAFF,#FFF9E8); padding:26px 28px; box-shadow:0 12px 34px rgba(2,33,89,.07); }
.civil-promo-icon { width:72px; height:72px; border-radius:18px; display:grid; place-items:center; background:var(--navy); color:var(--yellow); box-shadow:0 10px 26px rgba(2,33,89,.16); }
.civil-promo-icon svg { width:42px; height:42px; }
.civil-promo-copy h2 { margin:0 0 6px; color:var(--navy); font-size:1.35rem; line-height:1.25; }
.civil-promo-copy p { margin:0; color:#515B6B; font-size:.93rem; }
.civil-promo-actions { display:flex; flex-wrap:wrap; gap:10px; justify-content:flex-end; }
.civil-promo-actions .btn { white-space:nowrap; }

/* Guide page helpers */
.definition-grid { display:grid; grid-template-columns:repeat(2,1fr); gap:16px; margin:22px 0 30px; }
.definition-card { border:1px solid var(--line); border-radius:16px; background:#fff; padding:20px; }
.definition-card h3 { margin:0 0 7px; color:var(--navy); font-size:1.02rem; }
.definition-card p { margin:0; color:#4C5667; font-size:.92rem; }
.example-box { margin:20px 0; padding:18px 20px; border-radius:16px; background:#F8FAFC; border:1px solid #E1E6EF; }
.example-box strong { color:var(--navy); }
.related-product-inline { margin:34px 0; padding:22px; border-radius:18px; border:1px solid rgba(253,197,53,.6); background:linear-gradient(120deg,#FFFDF7,#F7FAFF); }
.related-product-inline h2 { margin-top:0; }

/* Screenshot carousel */
.screenshot-wrap { position: relative; }
.screenshot-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 175px;
  gap: 18px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 18px 14px 30px;
  scrollbar-width: none;
}
.screenshot-track::-webkit-scrollbar { display: none; }
.screenshot-item { scroll-snap-align: center; }
.screenshot-item img { width: 100%; border-radius: 20px; filter: drop-shadow(0 12px 14px rgba(1,25,68,.14)); }
.carousel-btn {
  position: absolute;
  top: 48%;
  transform: translateY(-50%);
  z-index: 3;
  width: 44px; height: 44px; border-radius: 50%; border: 0;
  background: var(--navy); color: #fff; box-shadow: var(--shadow-sm); font-size: 1.45rem;
}
.carousel-btn.prev { left: -10px; }
.carousel-btn.next { right: -10px; }

/* Content split */
.content-split { display: grid; grid-template-columns: 1.18fr .82fr; gap: 30px; align-items: stretch; }
.seo-card, .faq-card, .cta-card, .legal-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 10px 32px rgba(2,33,89,.05);
}
.seo-card { padding: 30px; }
.seo-card h2, .seo-card h3 { color: var(--navy); }
.seo-card h2 { margin-top: 0; font-size: 1.65rem; line-height: 1.2; }
.seo-card h3 { margin: 26px 0 8px; font-size: 1.05rem; }
.seo-card p { color: #4D5767; }
.keyword-chips { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 18px; }
.keyword-chip { padding: 7px 10px; border-radius: 999px; border: 1px solid #DDE3EC; background: #fff; color: #344054; font-weight: 700; font-size: .78rem; }

.faq-card { padding: 16px 22px 20px; }
.faq-title { color: var(--navy); margin: 6px 0 8px; font-size: 1.5rem; }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-item:last-child { border-bottom: 0; }
.faq-question { width: 100%; border: 0; background: transparent; display: flex; align-items: center; justify-content: space-between; gap: 15px; text-align: left; padding: 18px 0; color: var(--navy); font-weight: 820; }
.faq-question span:last-child { font-size: 1.25rem; color: #667085; transition: transform .2s ease; }
.faq-item.open .faq-question span:last-child { transform: rotate(45deg); }
.faq-answer { display: none; padding: 0 0 18px; color: var(--muted); font-size: .92rem; }
.faq-item.open .faq-answer { display: block; }

/* CTA */
.download-cta { background: linear-gradient(110deg,var(--yellow),#FFD953); border-top: 1px solid #E9B415; }
.download-cta .container { display: grid; grid-template-columns: 1fr auto; gap: 30px; align-items: center; padding-top: 28px; padding-bottom: 28px; }
.cta-brand { display: flex; align-items: center; gap: 14px; }
.cta-brand img { width: 60px; height: 60px; border-radius: 14px; }
.cta-brand h2 { margin: 0; color: var(--navy-2); font-size: 1.45rem; }
.cta-brand p { margin: 3px 0 0; color: #4B3A00; font-weight: 650; }
.download-cta .store-buttons { margin: 0; }

/* Footer */
.site-footer { background: var(--navy-2); color: #fff; padding: 54px 0 26px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr repeat(3,.85fr); gap: 44px; }
.footer-brand .brand { margin-bottom: 14px; }
.footer-brand p { max-width: 330px; color: #C8D4EC; font-size: .9rem; }
.footer-col h3 { margin: 0 0 14px; font-size: .95rem; color: #fff; }
.footer-col a { display: block; color: #C8D4EC; margin: 7px 0; font-size: .88rem; }
.footer-col a:hover { color: var(--yellow); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.12); margin-top: 36px; padding-top: 20px; display: flex; justify-content: space-between; gap: 20px; color: #AFC0DF; font-size: .78rem; }

/* Inner pages */
.page-hero { background: linear-gradient(135deg,var(--navy),var(--navy-3)); color: #fff; padding: 70px 0 64px; position: relative; overflow: hidden; }
.page-hero::after { content:""; position:absolute; right:-120px; top:-150px; width:420px; height:420px; border-radius:50%; background:rgba(253,197,53,.12); }
.page-hero h1 { font-size: clamp(2rem,4vw,3.5rem); line-height:1.08; margin: 14px 0; letter-spacing:-.035em; max-width:850px; }
.page-hero p { max-width:780px; color:#D9E4F8; font-size:1.05rem; }
.breadcrumbs { color:#C7D5ED; font-size:.84rem; }
.breadcrumbs a { color:var(--yellow); }
.article-shell { max-width: 900px; margin: 0 auto; }
.article-shell h2 { color:var(--navy); margin-top: 38px; line-height:1.2; }
.article-shell h3 { color:var(--navy); margin-top: 28px; }
.article-shell p, .article-shell li { color:#465162; }
.article-shell ul { padding-left: 22px; }
.callout { border-left: 5px solid var(--yellow); background:var(--yellow-soft); padding:18px 20px; border-radius:0 14px 14px 0; margin:28px 0; }
.link-card-grid { display:grid; grid-template-columns:repeat(2,1fr); gap:16px; margin-top:30px; }
.link-card { border:1px solid var(--line); border-radius:16px; padding:20px; background:#fff; }
.link-card h3 { margin-top:0; }

.contact-grid { display:grid; grid-template-columns:1fr 1fr; gap:24px; }
.contact-card { border:1px solid var(--line); border-radius:18px; padding:28px; background:#fff; }
.contact-card h2 { margin-top:0; color:var(--navy); }
.contact-actions { display:flex; flex-wrap:wrap; gap:12px; margin-top:18px; }

/* AdSense future-ready placeholders stay hidden until explicitly enabled */
.ad-slot-placeholder { display:none; }

@media (max-width: 1100px) {
  .feature-grid, .audience-grid { grid-template-columns: repeat(3,1fr); }
  .role-detail-grid { grid-template-columns:repeat(2,1fr); }
  .hero-grid { grid-template-columns: 1fr 1fr; gap: 18px; }
  .phone-shot.center { width: 245px; }
  .phone-shot.left { width: 215px; left: 0; }
  .phone-shot.right { width: 212px; right: -3%; }
  .primary-nav { gap: 18px; }
}

@media (max-width: 900px) {
  .primary-nav, .nav-actions .btn-small { display:none; }
  .mobile-toggle { display:block; margin-left:auto; }
  .nav-actions { margin-left: auto; }
  .nav-shell.open { flex-wrap:wrap; padding-bottom:14px; }
  .nav-shell.open .primary-nav { display:flex; order:4; width:100%; flex-direction:column; align-items:flex-start; gap:8px; padding:8px 0 12px; }
  .nav-shell.open .primary-nav a { width:100%; padding:10px 0; }
  .nav-shell.open .primary-nav a::after { display:none; }
  .hero { padding-top: 36px; }
  .hero-grid { grid-template-columns: 1fr; min-height: auto; padding-bottom: 105px; }
  .hero-copy { text-align:center; padding:0; }
  .hero h1, .hero-lead { margin-left:auto; margin-right:auto; }
  .hero-inline-features, .store-buttons, .hero-trust { justify-content:center; }
  .hero-visual { min-height: 520px; max-width: 650px; width:100%; margin:0 auto; }
  .phone-shot.center { width:260px; }
  .phone-shot.left { width:225px; left:6%; }
  .phone-shot.right { width:220px; right:4%; }
  .content-split { grid-template-columns:1fr; }
  .footer-grid { grid-template-columns:1.3fr 1fr 1fr; }
  .footer-grid .footer-col:last-child { grid-column:2 / span 2; }
  .download-cta .container { grid-template-columns:1fr; text-align:center; }
  .cta-brand { justify-content:center; }
  .download-cta .store-buttons { justify-content:center; }
  .contact-grid { grid-template-columns:1fr; }
  .civil-promo-card { grid-template-columns:auto 1fr; }
  .civil-promo-actions { grid-column:1/-1; justify-content:center; }
}

@media (max-width: 640px) {
  .container { width:min(100% - 28px,var(--max)); }
  .section { padding:64px 0; }
  .brand { min-width:0; }
  .brand-copy { display:none; }
  .lang-switch { font-size:.72rem; }
  .hero h1 { font-size:clamp(2.25rem,11vw,2.75rem); line-height:1.13; letter-spacing:-.025em; }
  .hero-visual { min-height:420px; }
  .phone-shot.center { width:210px; }
  .phone-shot.left { width:178px; left:0; transform:rotate(-3deg) translateY(30px); }
  .phone-shot.right { width:175px; right:-2%; transform:rotate(3deg) translateY(36px); }
  .hero-badge { display:none; }
  .feature-grid, .audience-grid { grid-template-columns:repeat(2,1fr); }
  .feature-card { min-height:190px; padding:18px 12px; }
  .audience-card .portrait { height:118px; }
  .screenshot-track { grid-auto-columns:150px; padding-inline:4px; }
  .carousel-btn { display:none; }
  .seo-card { padding:22px; }
  .footer-grid { grid-template-columns:1fr 1fr; gap:30px; }
  .footer-brand { grid-column:1/-1; }
  .footer-grid .footer-col:last-child { grid-column:auto; }
  .footer-bottom { flex-direction:column; }
  .link-card-grid, .definition-grid { grid-template-columns:1fr; }
  .role-detail-grid, .wage-methods { grid-template-columns:1fr; }
  .civil-promo { padding-bottom:64px; }
  .civil-promo-card { grid-template-columns:1fr; text-align:center; padding:22px; }
  .civil-promo-icon { margin-inline:auto; }
  .civil-promo-actions { justify-content:center; }
  .store-link { min-width:164px; min-height:54px; }
  .store-link img { width:144px; }
}

@media (max-width: 420px) {
  .feature-grid, .audience-grid { grid-template-columns:1fr; }
  .phone-shot.center { width:198px; }
  .phone-shot.left { width:155px; left:-6%; }
  .phone-shot.right { width:150px; right:-7%; }
  .hero-visual { min-height:390px; }
}

@media (prefers-reduced-motion: reduce) {
  * { scroll-behavior:auto !important; transition:none !important; animation:none !important; }
}
