/* ==========================================================================
   Terbit Capital Sdn. Bhd. — Site stylesheet
   Brand colours sampled directly from the official logo:
     green  #00903C   yellow #FCF000   black #000000
   Supports LTR (en, ms, id, th) and RTL (ar) via [dir] attribute.
   ========================================================================== */

:root {
  /* Brand */
  --green: #00903C;
  --green-dark: #00702F;
  --green-darker: #0A4A22;
  --green-deep: #063A1B;
  --yellow: #FCF000;
  --yellow-warm: #F5C518;

  /* Neutrals */
  --ink: #101614;
  --ink-soft: #2C3A34;
  --grey: #5A6B63;
  --grey-light: #8A9992;
  --line: #E2E8E5;
  --bg: #FFFFFF;
  --bg-soft: #F6F9F7;
  --bg-tint: #EEF5F0;

  /* Type */
  --font: "Inter", "Helvetica Neue", Arial, system-ui, -apple-system, sans-serif;
  --font-ar: "Noto Kufi Arabic", "Segoe UI", Tahoma, sans-serif;
  --font-th: "Noto Sans Thai", "Leelawadee UI", Tahoma, sans-serif;

  /* Layout */
  --wrap: 1200px;
  --wrap-narrow: 760px;
  --radius: 14px;
  --radius-sm: 9px;
  --shadow: 0 1px 2px rgba(16,22,20,.05), 0 8px 24px rgba(16,22,20,.06);
  --shadow-lg: 0 2px 4px rgba(16,22,20,.06), 0 18px 48px rgba(16,22,20,.10);
  --header-h: 72px;
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body { overflow-wrap: break-word;
  margin: 0;
  font-family: var(--font);
  font-size: 17px;
  line-height: 1.7;
  color: var(--ink-soft);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

html[lang="ar"] body { font-family: var(--font-ar); font-size: 18px; line-height: 1.9; }
html[lang="th"] body { font-family: var(--font-th); line-height: 1.85; }

img { max-width: 100%; height: auto; display: block; }

h1, h2, h3, h4 {
  color: var(--ink);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin: 0 0 .6em;
}
html[lang="ar"] h1, html[lang="ar"] h2, html[lang="ar"] h3, html[lang="ar"] h4,
html[lang="th"] h1, html[lang="th"] h2, html[lang="th"] h3, html[lang="th"] h4 {
  letter-spacing: normal;
  line-height: 1.4;
}

h1 { font-size: clamp(2.05rem, 5vw, 3.6rem); }
h2 { font-size: clamp(1.6rem, 3.2vw, 2.4rem); }
h3 { font-size: clamp(1.15rem, 2vw, 1.4rem); }
p { margin: 0 0 1.15em; }

a { color: var(--green-dark); text-decoration: none; }
a:hover { text-decoration: underline; }

/* ---------- Layout ---------- */
.wrap { width: 100%; max-width: var(--wrap); margin: 0 auto; padding: 0 24px; }
.narrow { max-width: var(--wrap-narrow); }
section { padding: 84px 0; }
.section-soft { background: var(--bg-soft); }
.section-tint { background: var(--bg-tint); }

.eyebrow {
  display: inline-block;
  font-size: .76rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--green-dark);
  margin-bottom: 14px;
}
html[lang="ar"] .eyebrow, html[lang="th"] .eyebrow { letter-spacing: .04em; text-transform: none; }

.lead { font-size: 1.12rem; color: var(--grey); max-width: 66ch; }
.section-head { max-width: 70ch; margin-bottom: 48px; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 13px 26px;
  border-radius: 999px;
  font-size: .96rem;
  font-weight: 600;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: transform .16s ease, box-shadow .16s ease, background .16s ease;
  text-decoration: none !important;
  line-height: 1.3;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary { background: var(--green); color: #fff; box-shadow: 0 6px 18px rgba(0,144,60,.26); }
.btn-primary:hover { background: var(--green-dark); box-shadow: 0 10px 26px rgba(0,144,60,.32); }
.btn-outline { border-color: rgba(255,255,255,.55); color: #fff; }
.btn-outline:hover { background: rgba(255,255,255,.12); border-color: #fff; }
.btn-ghost { border-color: var(--line); color: var(--ink); background: #fff; }
.btn-ghost:hover { border-color: var(--green); color: var(--green-dark); }
.btn-yellow { background: var(--yellow); color: var(--ink); box-shadow: 0 6px 18px rgba(252,240,0,.3); }
.btn-sm { padding: 9px 18px; font-size: .875rem; }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 200;
  background: rgba(255,255,255,.94);
  backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid var(--line);
}
.header-inner {
  height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.logo { display: flex; align-items: center; gap: 11px; text-decoration: none !important; flex-shrink: 0; }
.logo img { height: 42px; width: auto; }
.logo-text { display: flex; flex-direction: column; line-height: 1.05; }
.logo-name { font-size: 1.16rem; font-weight: 800; color: var(--ink); letter-spacing: -.02em; }
.logo-tag { font-size: .66rem; font-weight: 600; color: var(--green); letter-spacing: .04em; }

.nav { display: flex; align-items: center; gap: 4px; }
.nav a {
  padding: 9px 13px;
  font-size: .93rem;
  font-weight: 500;
  color: var(--ink-soft);
  border-radius: 8px;
  white-space: nowrap;
}
.nav a:hover { background: var(--bg-tint); color: var(--green-dark); text-decoration: none; }
.nav a.active { color: var(--green-dark); font-weight: 600; }

.header-actions { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }

/* Language switcher */
.lang { position: relative; }
.lang-btn {
  display: flex; align-items: center; gap: 7px;
  padding: 8px 13px; font-size: .875rem; font-weight: 600;
  background: #fff; border: 1.5px solid var(--line); border-radius: 999px;
  color: var(--ink); cursor: pointer;
}
.lang-btn:hover { border-color: var(--green); }
.lang-menu {
  position: absolute; top: calc(100% + 8px); inset-inline-end: 0;
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-sm);
  box-shadow: var(--shadow-lg); min-width: 178px; padding: 6px;
  opacity: 0; visibility: hidden; transform: translateY(-6px);
  transition: all .16s ease; z-index: 300;
}
.lang.open .lang-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.lang-menu a {
  display: flex; align-items: center; justify-content: space-between; gap: 10px;
  padding: 9px 12px; font-size: .9rem; color: var(--ink-soft); border-radius: 6px;
}
.lang-menu a:hover { background: var(--bg-tint); text-decoration: none; }
.lang-menu a.current { color: var(--green-dark); font-weight: 700; background: var(--bg-tint); }
.lang-code { font-size: .7rem; color: var(--grey-light); font-weight: 600; text-transform: uppercase; }

.burger {
  display: none; width: 42px; height: 42px; align-items: center; justify-content: center;
  background: #fff; border: 1.5px solid var(--line); border-radius: 10px; cursor: pointer;
}
.burger span { display: block; width: 18px; height: 2px; background: var(--ink); position: relative; }
.burger span::before, .burger span::after {
  content: ""; position: absolute; left: 0; width: 18px; height: 2px; background: var(--ink);
}
.burger span::before { top: -6px; }
.burger span::after { top: 6px; }

/* ---------- Hero ---------- */
.hero { position: relative; min-height: 640px; display: flex; align-items: center; padding: 0; overflow: hidden; }
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; }
.hero-bg::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(100deg, rgba(6,58,27,.93) 0%, rgba(6,58,27,.80) 34%, rgba(6,58,27,.36) 60%, rgba(6,58,27,.14) 100%);
}
html[dir="rtl"] .hero-bg::after {
  background: linear-gradient(260deg, rgba(6,58,27,.93) 0%, rgba(6,58,27,.80) 34%, rgba(6,58,27,.36) 60%, rgba(6,58,27,.14) 100%);
}
.hero-inner { position: relative; z-index: 1; padding: 90px 0; width: 100%; }
.hero-content { max-width: 640px; }
.hero-logo { margin-bottom: 26px; }
.hero-logo img {
  height: 108px; width: auto;
  filter: drop-shadow(0 4px 16px rgba(0,0,0,.35));
  background: rgba(255,255,255,.96);
  padding: 14px 20px;
  border-radius: var(--radius);
}
.hero .eyebrow { color: var(--yellow); }
.hero h1 { color: #fff; margin-bottom: 20px; text-shadow: 0 2px 20px rgba(0,0,0,.28); }
.hero p { color: rgba(255,255,255,.93); font-size: 1.14rem; max-width: 56ch; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 13px; margin-top: 32px; }

.hero-stats {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px;
  background: var(--line); border-top: 1px solid var(--line);
}
.hero-stat { background: #fff; padding: 26px 22px; text-align: center; }
.hero-stat .v { font-size: 1.85rem; font-weight: 800; color: var(--green); letter-spacing: -.03em; line-height: 1; }
.hero-stat .l { font-size: .8rem; color: var(--grey); margin-top: 8px; line-height: 1.4; }

/* ---------- Cards & grids ---------- */
.grid { display: grid; gap: 26px; }
.grid-2 { grid-template-columns: repeat(2, minmax(0,1fr)); }
.grid-3 { grid-template-columns: repeat(3, minmax(0,1fr)); }
.grid-4 { grid-template-columns: repeat(4, minmax(0,1fr)); }

.card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  overflow: hidden; transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
  display: flex; flex-direction: column;
}
.card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); border-color: #D3DED8; }
.card-media { aspect-ratio: 16/10; overflow: hidden; background: var(--bg-tint); }
.card-media img { width: 100%; height: 100%; object-fit: cover; }
.card-body { padding: 26px; flex: 1; display: flex; flex-direction: column; }
.card-body h3 { margin-bottom: 10px; }
.card-body p { color: var(--grey); font-size: .96rem; flex: 1; }
.card-link { font-weight: 600; font-size: .93rem; color: var(--green-dark); margin-top: 6px; display: inline-flex; gap: 6px; }
.card-link::after { content: "→"; transition: transform .16s ease; }
html[dir="rtl"] .card-link::after { content: "←"; }
.card:hover .card-link::after { transform: translateX(3px); }
html[dir="rtl"] .card:hover .card-link::after { transform: translateX(-3px); }

/* Product feature rows */
.feature-row { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.feature-row.reverse .feature-media { order: 2; }
.feature-media img { border-radius: var(--radius); box-shadow: var(--shadow-lg); }
.spec-list { list-style: none; padding: 0; margin: 22px 0 0; }
.spec-list li {
  padding: 11px 0 11px 30px; border-bottom: 1px solid var(--line);
  font-size: .96rem; position: relative;
}
html[dir="rtl"] .spec-list li { padding: 11px 30px 11px 0; }
.spec-list li::before {
  content: ""; position: absolute; inset-inline-start: 4px; top: 19px;
  width: 8px; height: 8px; border-radius: 50%; background: var(--green);
}
.spec-list li strong { color: var(--ink); }

/* Icon feature */
.icon-item { display: flex; gap: 18px; align-items: flex-start; }
.icon-badge {
  flex-shrink: 0; width: 46px; height: 46px; border-radius: 12px;
  background: var(--bg-tint); color: var(--green-dark);
  display: flex; align-items: center; justify-content: center; font-size: 1.2rem;
}
.icon-item h3 { font-size: 1.08rem; margin-bottom: 6px; }
.icon-item p { font-size: .94rem; color: var(--grey); margin: 0; }

/* ---------- Dark band ---------- */
.band-dark { position: relative; background: var(--green-deep); color: #fff; overflow: hidden; }
.band-dark .band-bg { position: absolute; inset: 0; opacity: .3; }
.band-dark .band-bg img { width: 100%; height: 100%; object-fit: cover; }
.band-dark .wrap { position: relative; z-index: 1; }
.band-dark h2 { color: #fff; }
.band-dark p { color: rgba(255,255,255,.9); }
.band-dark .lead { color: rgba(255,255,255,.88); }

/* ---------- Closing mockup section ---------- */
.closing { text-align: center; background: var(--bg-soft); }
.closing-mockup {
  max-width: 820px; margin: 0 auto 40px;
  border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-lg);
}
.closing h2 { font-size: clamp(1.9rem, 4vw, 2.9rem); }
.closing .lead { margin: 0 auto 30px; }

/* ---------- Tool Box ---------- */
.tool-group { margin-bottom: 54px; }
.tool-group-head { display: flex; align-items: baseline; gap: 12px; margin-bottom: 22px; padding-bottom: 12px; border-bottom: 2px solid var(--line); }
.tool-group-head h3 { margin: 0; font-size: 1.2rem; }
.tool-count { font-size: .82rem; color: var(--grey-light); font-weight: 600; }
.tool-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 26px; display: flex; flex-direction: column;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.tool-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); border-color: var(--green); }
.tool-icon {
  width: 48px; height: 48px; border-radius: 12px; margin-bottom: 16px;
  background: linear-gradient(135deg, var(--green) 0%, var(--green-dark) 100%);
  color: #fff; display: flex; align-items: center; justify-content: center;
}
.tool-icon svg { width: 24px; height: 24px; }
.tool-card h4 { font-size: 1.06rem; margin-bottom: 4px; color: var(--ink); }
.tool-tag {
  display: inline-block; font-size: .7rem; font-weight: 700; letter-spacing: .04em;
  color: var(--green-dark); background: var(--bg-tint);
  padding: 3px 9px; border-radius: 999px; margin-bottom: 12px;
}
.tool-card p { font-size: .92rem; color: var(--grey); flex: 1; margin-bottom: 16px; }
.tool-open { font-size: .9rem; font-weight: 600; color: var(--green-dark); display: inline-flex; gap: 6px; align-items: center; }
.tool-open::after { content: "↗"; font-size: .85em; }

/* ---------- Blog ---------- */
.post-card .card-media { aspect-ratio: 16/9; }
.post-meta { font-size: .8rem; color: var(--grey-light); margin-bottom: 10px; display: flex; gap: 10px; align-items: center; }
.post-meta .dot { width: 3px; height: 3px; border-radius: 50%; background: var(--grey-light); }
.post-card h3 { font-size: 1.14rem; line-height: 1.32; }

/* Article page */
.article-hero { padding: 54px 0 0; }
.article-head { max-width: var(--wrap-narrow); margin: 0 auto; }
.breadcrumb { font-size: .85rem; color: var(--grey-light); margin-bottom: 20px; }
.breadcrumb a { color: var(--grey); }
.article-head h1 { font-size: clamp(1.85rem, 4vw, 2.9rem); margin-bottom: 18px; }
.article-figure { max-width: 980px; margin: 40px auto; border-radius: var(--radius); overflow: hidden; }

.article-body { max-width: var(--wrap-narrow); margin: 0 auto; padding: 8px 0 60px; font-size: 1.06rem; }
.article-body h2 { font-size: 1.55rem; margin: 2em 0 .7em; padding-top: .2em; }
.article-body h3 { font-size: 1.2rem; margin: 1.7em 0 .5em; }
.article-body p { margin-bottom: 1.35em; }
.article-body ul, .article-body ol { margin: 0 0 1.4em; padding-inline-start: 24px; }
.article-body li { margin-bottom: .5em; }
.article-body strong { color: var(--ink); }
.article-body blockquote {
  margin: 1.8em 0; padding: 20px 26px;
  border-inline-start: 4px solid var(--green);
  background: var(--bg-soft); border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-size: 1.04rem; color: var(--ink-soft);
}
html[dir="rtl"] .article-body blockquote { border-radius: var(--radius-sm) 0 0 var(--radius-sm); }
.article-body blockquote p:last-child { margin-bottom: 0; }
.article-body a { text-decoration: underline; text-underline-offset: 2px; }

.table-scroll { overflow-x: auto; margin: 1.8em 0; border: 1px solid var(--line); border-radius: var(--radius-sm); }
.article-body table { width: 100%; border-collapse: collapse; font-size: .93rem; }
.article-body th, .article-body td {
  padding: 12px 15px; text-align: start; border-bottom: 1px solid var(--line); vertical-align: top;
}
.article-body th { background: var(--bg-soft); font-weight: 700; color: var(--ink); white-space: nowrap; }
.article-body tr:last-child td { border-bottom: none; }

.article-body hr { border: none; border-top: 1px solid var(--line); margin: 2.4em 0; }

.faq-item { border: 1px solid var(--line); border-radius: var(--radius-sm); margin-bottom: 12px; overflow: hidden; }
.faq-item h3 { margin: 0; font-size: 1.02rem; padding: 16px 20px; background: var(--bg-soft); }
.faq-item .faq-a { padding: 16px 20px 4px; }

.share-row { display: flex; flex-wrap: wrap; align-items: center; gap: 10px; padding: 24px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); margin: 40px 0; }
.share-row span { font-size: .9rem; font-weight: 600; color: var(--grey); }
.share-btn {
  width: 38px; height: 38px; border-radius: 10px; border: 1px solid var(--line);
  display: inline-flex; align-items: center; justify-content: center; color: var(--grey);
  background: #fff; transition: all .15s ease;
}
.share-btn:hover { border-color: var(--green); color: var(--green-dark); transform: translateY(-2px); }
.share-btn svg { width: 17px; height: 17px; }

/* ---------- Contact form ---------- */
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field { display: flex; flex-direction: column; gap: 7px; }
.field.full { grid-column: 1 / -1; }
.field label { font-size: .87rem; font-weight: 600; color: var(--ink); }
.field input, .field select, .field textarea {
  font-family: inherit; font-size: .97rem; padding: 12px 15px;
  border: 1.5px solid var(--line); border-radius: var(--radius-sm);
  background: #fff; color: var(--ink); width: 100%;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--green); box-shadow: 0 0 0 3px rgba(0,144,60,.12);
}
.field textarea { resize: vertical; min-height: 130px; }
.form-note { font-size: .85rem; color: var(--grey-light); margin-top: 14px; }

.contact-detail { display: flex; gap: 14px; margin-bottom: 24px; }
.contact-detail .icon-badge { width: 40px; height: 40px; border-radius: 10px; }
.contact-detail h4 { font-size: .93rem; margin-bottom: 3px; }
.contact-detail p, .contact-detail a { font-size: .95rem; color: var(--grey); margin: 0; }

/* ---------- Footer ---------- */
.site-footer { background: var(--green-deep); color: rgba(255,255,255,.74); padding: 66px 0 0; font-size: .93rem; }
.footer-top { display: grid; grid-template-columns: minmax(0,1.6fr) minmax(0,1fr) minmax(0,1fr) minmax(0,1.4fr); gap: 44px; padding-bottom: 46px; }
.footer-brand img { height: 62px; width: auto; background: rgba(255,255,255,.96); padding: 9px 13px; border-radius: 10px; margin-bottom: 16px; }
.footer-brand p { color: rgba(255,255,255,.7); font-size: .92rem; max-width: 34ch; }
.site-footer h4 { color: #fff; font-size: .82rem; letter-spacing: .1em; text-transform: uppercase; margin-bottom: 16px; }
html[lang="ar"] .site-footer h4, html[lang="th"] .site-footer h4 { letter-spacing: .03em; text-transform: none; font-size: .95rem; }
.site-footer ul { list-style: none; padding: 0; margin: 0; }
.site-footer li { margin-bottom: 9px; }
.site-footer a { color: rgba(255,255,255,.74); }
.site-footer a:hover { color: var(--yellow); text-decoration: none; }

.newsletter-form { display: flex; gap: 8px; margin-top: 14px; flex-wrap: wrap; }
.newsletter-form input {
  flex: 1; min-width: 160px; padding: 11px 14px; font-family: inherit; font-size: .9rem;
  border: 1px solid rgba(255,255,255,.24); border-radius: 999px;
  background: rgba(255,255,255,.08); color: #fff;
}
.newsletter-form input::placeholder { color: rgba(255,255,255,.5); }
.newsletter-form input:focus { outline: none; border-color: var(--yellow); }

.socials { display: flex; gap: 9px; margin-top: 18px; flex-wrap: wrap; }
.social-btn {
  width: 36px; height: 36px; border-radius: 9px; background: rgba(255,255,255,.1);
  display: inline-flex; align-items: center; justify-content: center; color: #fff;
  transition: all .15s ease;
}
.social-btn:hover { background: var(--green); transform: translateY(-2px); }
.social-btn svg { width: 16px; height: 16px; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.12); padding: 22px 0;
  display: flex; flex-wrap: wrap; gap: 14px; justify-content: space-between;
  font-size: .85rem; color: rgba(255,255,255,.56);
}
.footer-bottom-links { display: flex; gap: 18px; flex-wrap: wrap; }

/* ---------- Form: honeypot and status ---------- */
/* The honeypot must be invisible to humans but still present in the DOM and
   submitted by bots. `display:none` is avoided because some bots skip such
   fields; this pushes it out of view while remaining a real, fillable input. */
.hp-field {
  position: absolute; left: -9999px; top: auto;
  width: 1px; height: 1px; overflow: hidden;
}

.form-status {
  border-radius: var(--radius-sm); padding: 16px 18px; margin-bottom: 22px;
  font-size: .95rem; line-height: 1.55;
}
.form-status.is-ok {
  background: rgba(0,144,60,.09); border: 1px solid rgba(0,144,60,.3);
  color: var(--green-dark);
}
.form-status.is-warn {
  background: rgba(252,240,0,.16); border: 1px solid rgba(180,150,0,.4);
  color: #6B5600;
}
.form-status p { margin: 0; font-weight: 600; }

/* ---------- Utilities ---------- */
.center { text-align: center; }
.mt-0 { margin-top: 0; }
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .nav { display: none; }
  .burger { display: flex; }
  .site-header.nav-open .nav {
    display: flex; flex-direction: column; align-items: stretch;
    position: absolute; top: var(--header-h); inset-inline: 0;
    background: #fff; border-bottom: 1px solid var(--line);
    padding: 12px; gap: 2px; box-shadow: var(--shadow-lg);
  }
  .site-header.nav-open .nav a { padding: 13px 16px; font-size: 1rem; }
  .footer-top { grid-template-columns: minmax(0,1fr) minmax(0,1fr); gap: 34px; }
  .feature-row { gap: 40px; }
}

@media (max-width: 860px) {
  section { padding: 62px 0; }
  .grid-3, .grid-4 { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .hero { min-height: 560px; }
  .hero-stats { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .feature-row { grid-template-columns: minmax(0,1fr); gap: 30px; }
  .feature-row.reverse .feature-media { order: 0; }
  .form-grid { grid-template-columns: minmax(0,1fr); }
}

@media (max-width: 620px) {
  body { font-size: 16px; }
  .wrap { padding: 0 18px; }
  section { padding: 50px 0; }
  .grid { gap: 18px; }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: minmax(0,1fr); }
  .hero { min-height: 0; }
  .hero-inner { padding: 62px 0; }
  .hero-logo img { height: 82px; padding: 11px 15px; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .logo img { height: 36px; }
  .logo-name { font-size: 1.04rem; }
  .logo-tag { display: none; }
  .hero-stat { padding: 20px 14px; }
  .hero-stat .v { font-size: 1.5rem; }
  .card-body { padding: 20px; }
  .footer-top { grid-template-columns: minmax(0,1fr); gap: 30px; }
  .article-body { font-size: 1.01rem; }
  .article-body h2 { font-size: 1.35rem; }
  .closing-mockup { margin-bottom: 28px; }
  .header-actions .btn-primary { display: none; }
}

@media print {
  .site-header, .site-footer, .share-row, .hero-actions { display: none; }
  body { font-size: 11pt; }
}
