/* ═══════════════════════════════════════════
   WebMitra Solutions — style.css
   Apple-inspired design system
═══════════════════════════════════════════ */

/* ── CSS VARIABLES ── */
:root {
  --font: -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'SF Pro Text', 'Helvetica Neue', 'Segoe UI', sans-serif;
  --black: #1d1d1f;
  --white: #ffffff;
  --light: #f5f5f7;
  --body: #6e6e73;
  --border: #d2d2d7;
  --blue: #0071e3;
  --gold: #bf9000;
  --gold-btn: #bf9000;
  --t: 0.28s 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%;
}
body {
  font-family: var(--font);
  background: var(--white);
  color: var(--black);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; display: block; }
button { cursor: pointer; font-family: var(--font); border: none; background: none; }

/* ── NAV ── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: 48px;
  background: rgba(255,255,255,.85);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  border-bottom: 1px solid rgba(0,0,0,.08);
  transition: background var(--t);
}
.nav-inner {
  max-width: 980px;
  margin: 0 auto;
  padding: 0 22px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 17px;
  font-weight: 700;
  color: var(--black);
  letter-spacing: -.01em;
}
.nav-logo-mark {
  width: 26px; height: 26px;
  background: var(--black);
  color: white;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
  flex-shrink: 0;
}
.nav-links {
  display: flex;
  align-items: center;
  list-style: none;
}
.nav-links a {
  font-size: 12px;
  color: var(--black);
  padding: 0 12px;
  height: 48px;
  display: flex;
  align-items: center;
  transition: color var(--t);
  letter-spacing: .01em;
}
.nav-links a:hover { color: var(--blue); }
.nav-links a.active { color: var(--blue); }
.nav-cta {
  background: var(--black) !important;
  color: white !important;
  border-radius: 980px;
  padding: 6px 14px !important;
  height: auto !important;
  font-size: 12px !important;
  font-weight: 600 !important;
  transition: background var(--t) !important;
}
.nav-cta:hover { background: #3a3a3c !important; }
.nav-cta.active { color: white !important; }
.nav-ham {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
  background: none;
  border: none;
}
.nav-ham span {
  display: block;
  width: 18px;
  height: 1.5px;
  background: var(--black);
  border-radius: 2px;
  transition: var(--t);
}

/* ── SHARED ── */
.apple-rule {
  border: none;
  border-top: 1px solid var(--border);
  margin: 0;
}
.page-top {
  padding: 88px 24px 48px;
  text-align: center;
  background: var(--white);
}

/* ── FADE ANIMATIONS ── */
.fade {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .6s ease, transform .6s ease;
}
.fade.in {
  opacity: 1;
  transform: translateY(0);
}
.d1 { transition-delay: .1s; }
.d2 { transition-delay: .2s; }
.d3 { transition-delay: .3s; }
.d4 { transition-delay: .4s; }
.d5 { transition-delay: .5s; }

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 12px 22px;
  border-radius: 980px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--t);
  border: none;
  font-family: var(--font);
  white-space: nowrap;
}
.btn-blue { background: var(--blue); color: white; }
.btn-blue:hover { background: #0077ed; box-shadow: 0 4px 16px rgba(0,113,227,.3); }
.btn-gold { background: var(--gold-btn); color: white; }
.btn-gold:hover { background: #a07800; box-shadow: 0 4px 16px rgba(191,144,0,.3); }
.btn-wa { background: #25D366; color: white; }
.btn-wa:hover { background: #20b558; box-shadow: 0 4px 16px rgba(37,211,102,.3); }
.btn-ghost {
  background: transparent;
  color: var(--blue);
  font-size: 15px;
  font-weight: 400;
  padding: 0;
  border-radius: 0;
  display: inline-flex;
  align-items: center;
}
.btn-ghost:hover { text-decoration: underline; }

/* ── FORM FIELDS ── */
.field { margin-bottom: 14px; }
.field label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  color: var(--black);
  margin-bottom: 5px;
  letter-spacing: .3px;
}
.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 11px 14px;
  border: 1px solid var(--border);
  border-radius: 10px;
  font-size: 15px;
  font-family: var(--font);
  color: var(--black);
  background: var(--white);
  outline: none;
  transition: border-color var(--t);
  appearance: none;
  -webkit-appearance: none;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(0,113,227,.1);
}
.field textarea { height: 100px; resize: vertical; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }

/* ── FOOTER ── */
footer {
  background: var(--black);
  padding: 52px 24px 32px;
}
.footer-cols {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 32px;
  max-width: 980px;
  margin: 0 auto 40px;
}
.footer-col h5 {
  font-size: 12px;
  font-weight: 600;
  color: rgba(255,255,255,.5);
  letter-spacing: .5px;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 9px; }
.footer-col a {
  font-size: 13px;
  color: rgba(255,255,255,.65);
  transition: color var(--t);
}
.footer-col a:hover { color: white; }
.footer-bottom {
  max-width: 980px;
  margin: 0 auto;
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}
.footer-bottom p { font-size: 12px; color: rgba(255,255,255,.4); }
.footer-bottom a { color: rgba(255,255,255,.4); font-size: 12px; }
.footer-bottom a:hover { color: rgba(255,255,255,.7); }

/* ── WHATSAPP FLOAT ── */
.wa-float {
  position: fixed;
  bottom: 24px; right: 24px;
  z-index: 200;
  width: 52px; height: 52px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,.45);
  transition: transform var(--t), box-shadow var(--t);
}
.wa-float:hover {
  transform: scale(1.08);
  box-shadow: 0 6px 28px rgba(37,211,102,.55);
}
.wa-float svg { width: 28px; height: 28px; fill: white; }

/* ══════════════════════════════════════════
   HOME — HERO
══════════════════════════════════════════ */
.hero {
  padding: 80px 24px 60px;
  text-align: center;
  background: var(--white);
}
.hero-eyebrow { color: var(--gold); font-size: 17px; font-weight: 600; margin-bottom: 10px; }
.hero-h {
  font-size: clamp(48px, 7vw, 80px);
  font-weight: 700;
  line-height: 1.04;
  letter-spacing: -.005em;
  color: var(--black);
  margin-bottom: 10px;
}
.hero-sub {
  font-size: clamp(19px, 2.5vw, 28px);
  font-weight: 400;
  color: var(--body);
  margin-bottom: 28px;
}
.hero-btns {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  align-items: center;
}
.hero-btns .btn-blue { font-size: 17px; }
.hero-btns .btn-ghost { font-size: 17px; color: var(--blue); }

/* Hero Browser Mockup */
.hero-visual {
  margin: 52px auto 0;
  max-width: 860px;
  background: linear-gradient(170deg, #1d1d1f 0%, #2d2d2f 100%);
  border-radius: 20px;
  padding: 28px 28px 0;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0,0,0,.18);
}
.browser-bar { display: flex; align-items: center; gap: 7px; margin-bottom: 20px; }
.b-dot { width: 10px; height: 10px; border-radius: 50%; }
.b-dot:nth-child(1) { background: #ff5f57; }
.b-dot:nth-child(2) { background: #febc2e; }
.b-dot:nth-child(3) { background: #28c840; }
.browser-url {
  flex: 1;
  background: rgba(255,255,255,.08);
  border-radius: 6px;
  height: 22px;
  margin-left: 8px;
  display: flex;
  align-items: center;
  padding: 0 10px;
}
.browser-url span { font-size: 11px; color: rgba(255,255,255,.4); }
.browser-screen {
  background: var(--white);
  border-radius: 8px 8px 0 0;
  overflow: hidden;
  min-height: 280px;
}
.screen-nav {
  background: rgba(255,255,255,.9);
  border-bottom: 1px solid var(--border);
  height: 42px;
  display: flex;
  align-items: center;
  padding: 0 20px;
  gap: 6px;
}
.screen-nav-dot { width: 36px; height: 6px; background: rgba(0,0,0,.08); border-radius: 3px; }
.screen-nav-dot.active { background: var(--black); width: 50px; }
.screen-body { padding: 32px 28px; }
.s-hero-line { height: 14px; background: var(--black); border-radius: 7px; width: 65%; margin-bottom: 10px; }
.s-hero-line.sm { height: 10px; background: rgba(0,0,0,.15); width: 45%; margin-bottom: 20px; }
.s-btns-row { display: flex; gap: 10px; }
.s-btn { height: 32px; border-radius: 16px; width: 110px; }
.s-btn.a { background: var(--blue); }
.s-btn.b { background: rgba(0,0,0,.08); }

/* ══════════════════════════════════════════
   STATS ROW
══════════════════════════════════════════ */
.stats-row {
  background: var(--light);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 48px 24px;
}
.stats-inner {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  max-width: 860px;
  margin: 0 auto;
}
.stat-item {
  text-align: center;
  padding: 0 24px;
  border-right: 1px solid var(--border);
}
.stat-item:last-child { border-right: none; }
.stat-n { font-size: 48px; font-weight: 700; letter-spacing: -.005em; color: var(--black); line-height: 1; }
.stat-l { font-size: 14px; color: var(--body); margin-top: 6px; }

/* ══════════════════════════════════════════
   TILES
══════════════════════════════════════════ */
.tile { padding: 80px 24px; text-align: center; }
.tile.dark  { background: var(--black); }
.tile.light { background: var(--light); }
.tile.white { background: var(--white); }
.tile-eyebrow { font-size: 17px; font-weight: 600; margin-bottom: 8px; }
.tile.dark .tile-eyebrow { color: #a1a1a6; }
.tile-h {
  font-size: clamp(28px, 4.5vw, 56px);
  font-weight: 700;
  line-height: 1.07;
  letter-spacing: -.005em;
  margin-bottom: 10px;
}
.tile.dark .tile-h { color: var(--white); }
.tile-sub {
  font-size: clamp(17px, 2vw, 21px);
  font-weight: 400;
  color: var(--body);
  max-width: 560px;
  margin: 0 auto 24px;
  line-height: 1.52;
}
.tile.dark .tile-sub { color: #a1a1a6; }

/* 2-col tile */
.tile-2col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  max-width: 860px;
  margin: 40px auto 0;
  text-align: left;
}
.tile-card {
  border-radius: 18px;
  padding: 36px 28px;
  background: var(--white);
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.tile.dark  .tile-card { background: #1d1d1f; border: 1px solid #3a3a3c; }
.tile.light .tile-card { background: var(--white); }
.tile-card-icon { font-size: 28px; }
.tile-card-h { font-size: 19px; font-weight: 700; color: var(--black); }
.tile.dark .tile-card-h { color: var(--white); }
.tile-card-p { font-size: 15px; color: var(--body); line-height: 1.58; flex: 1; }
.tile.dark .tile-card-p { color: #a1a1a6; }
.tile-card-link { font-size: 15px; color: var(--blue); margin-top: 8px; display: inline-flex; align-items: center; gap: 2px; }
.tile-card-link::after { content: ' ›'; }

/* 3-col tile */
.tile-3col {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 16px;
  max-width: 980px;
  margin: 40px auto 0;
  text-align: left;
}

/* ══════════════════════════════════════════
   PROCESS
══════════════════════════════════════════ */
.process-row {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 0;
  max-width: 860px;
  margin: 52px auto 0;
  border: 1px solid var(--border);
  border-radius: 18px;
  overflow: hidden;
}
.proc { background: var(--white); padding: 32px 24px; border-right: 1px solid var(--border); }
.proc:last-child { border-right: none; }
.proc-n { font-size: 13px; font-weight: 600; color: var(--gold); letter-spacing: 1px; margin-bottom: 14px; }
.proc-h { font-size: 17px; font-weight: 600; color: var(--black); margin-bottom: 8px; }
.proc-p { font-size: 13px; color: var(--body); line-height: 1.58; }

/* ══════════════════════════════════════════
   REVIEWS
══════════════════════════════════════════ */
.rev-grid {
  display: grid;
  grid-template-columns: repeat(2,1fr);
  gap: 16px;
  max-width: 860px;
  margin: 40px auto 0;
  text-align: left;
}
.rev { background: var(--light); border-radius: 18px; padding: 28px; }
.rev-stars { color: var(--gold); font-size: 14px; margin-bottom: 12px; letter-spacing: 2px; }
.rev-text { font-size: 15px; color: var(--black); line-height: 1.6; margin-bottom: 18px; font-weight: 400; }
.rev-name { font-size: 13px; font-weight: 600; color: var(--black); }
.rev-role  { font-size: 12px; color: var(--body); }

/* ══════════════════════════════════════════
   CTA TILE
══════════════════════════════════════════ */
.cta-tile {
  background: linear-gradient(145deg, #1d1d1f 0%, #2d2d2f 100%);
  padding: 100px 24px;
  text-align: center;
}

/* ══════════════════════════════════════════
   PORTFOLIO
══════════════════════════════════════════ */
.port-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 16px;
  max-width: 980px;
  margin: 40px auto 0;
}
.pc {
  display: block;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid var(--border);
  text-decoration: none;
  transition: .28s cubic-bezier(.4,0,.2,1);
  background: var(--white);
}
.pc:hover { transform: translateY(-4px); box-shadow: 0 20px 48px rgba(0,0,0,.1); border-color: var(--gold); }
.pc-img { height: 200px; background: var(--bg,#eee); position: relative; overflow: hidden; }
.pc-ov {
  position: absolute; inset: 0;
  background: rgba(0,0,0,.5);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: .28s;
}
.pc:hover .pc-ov { opacity: 1; }
.pc-ov span { color: white; font-size: 13px; font-weight: 600; border: 1px solid rgba(255,255,255,.5); padding: 7px 16px; border-radius: 980px; }
.pc-mock { padding: 20px 18px; width: 100%; }
.pc-bar { height: 8px; background: rgba(255,255,255,.28); border-radius: 4px; margin-bottom: 10px; width: 68%; }
.pc-lines span { display: block; height: 5px; background: rgba(255,255,255,.18); border-radius: 3px; margin-bottom: 6px; }
.pc-lines span:last-child { width: 50%; }
.pc-body { padding: 18px 20px 22px; }
.pc-cat { font-size: 11px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; color: var(--body); display: block; margin-bottom: 6px; }
.pc-body h3 { font-size: 16px; font-weight: 600; color: var(--black); margin-bottom: 4px; }
.pc-body p { font-size: 13px; color: var(--body); line-height: 1.55; }
.pc-link { font-size: 13px; color: var(--blue); margin-top: 10px; display: inline-block; }

/* ══════════════════════════════════════════
   SERVICES / PRICING
══════════════════════════════════════════ */
.plans-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 16px;
  max-width: 860px;
  margin: 48px auto 0;
  text-align: left;
}
.plan { border: 1px solid var(--border); border-radius: 18px; padding: 32px 28px; background: var(--white); position: relative; }
.plan.featured { background: var(--black); border-color: var(--black); }
.plan-pop { position: absolute; top: -12px; left: 28px; background: var(--gold); color: white; font-size: 11px; font-weight: 700; padding: 3px 12px; border-radius: 980px; letter-spacing: .5px; }
.plan-name { font-size: 12px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; color: var(--body); margin-bottom: 16px; }
.plan.featured .plan-name { color: #6e6e73; }
.plan-price { font-size: 48px; font-weight: 700; letter-spacing: -.005em; color: var(--black); line-height: 1; margin-bottom: 6px; }
.plan.featured .plan-price { color: var(--gold); }
.plan-price sub { font-size: 20px; font-weight: 400; vertical-align: baseline; }
.plan-desc { font-size: 14px; color: var(--body); margin-bottom: 24px; padding-bottom: 24px; border-bottom: 1px solid var(--border); line-height: 1.5; }
.plan.featured .plan-desc { color: #6e6e73; border-color: #3a3a3c; }
.plan-feats { display: flex; flex-direction: column; gap: 0; flex: 1; margin-bottom: 28px; }
.plan-feats li { font-size: 14px; color: var(--body); padding: 9px 0; border-bottom: 1px solid rgba(0,0,0,.04); display: flex; align-items: flex-start; gap: 8px; line-height: 1.4; }
.plan.featured .plan-feats li { color: #a1a1a6; border-color: rgba(255,255,255,.05); }
.plan-feats li::before { content: '✓'; font-size: 10px; font-weight: 700; color: #22C55E; background: rgba(34,197,94,.1); width: 16px; height: 16px; border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-top: 2px; }
.plan.featured .plan-feats li::before { color: var(--gold); background: rgba(191,135,0,.15); }

/* Compare table */
.compare-wrap { max-width: 860px; margin: 0 auto; overflow-x: auto; }
.ctable { width: 100%; border-collapse: collapse; border-radius: 12px; overflow: hidden; border: 1px solid var(--border); }
.ctable th { background: var(--black); color: white; padding: 14px 20px; font-size: 12px; font-weight: 600; letter-spacing: .5px; text-align: left; }
.ctable th:not(:first-child) { text-align: center; }
.ctable td { padding: 12px 20px; font-size: 14px; color: var(--body); border-bottom: 1px solid var(--border); }
.ctable tr:last-child td { border-bottom: none; }
.ctable td:first-child { font-weight: 500; color: var(--black); }
.ctable td:not(:first-child) { text-align: center; }
.ctable tr:hover td { background: var(--light); }
.ck { color: #22C55E; font-weight: 700; }
.cx { color: var(--border); }

/* ══════════════════════════════════════════
   ABOUT
══════════════════════════════════════════ */
.ab2 { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; max-width: 860px; margin: 0 auto; align-items: center; }
.ab-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; background: var(--border); border: 1px solid var(--border); border-radius: 18px; overflow: hidden; }
.abs { background: var(--white); padding: 28px 24px; }
.abs-n { font-size: 40px; font-weight: 700; letter-spacing: -.005em; color: var(--black); line-height: 1; }
.abs-n.g { color: var(--gold); }
.abs p { font-size: 13px; color: var(--body); margin-top: 5px; }
.val-row { display: grid; grid-template-columns: repeat(4,1fr); gap: 1px; background: var(--border); border: 1px solid var(--border); border-radius: 18px; overflow: hidden; max-width: 860px; margin: 40px auto 0; }
.val { background: var(--white); padding: 28px 22px; }
.val-ico { font-size: 24px; margin-bottom: 12px; }
.val h3 { font-size: 15px; font-weight: 600; color: var(--black); margin-bottom: 6px; }
.val p { font-size: 13px; color: var(--body); line-height: 1.6; }

/* ══════════════════════════════════════════
   CONTACT
══════════════════════════════════════════ */
.ct-layout { display: grid; grid-template-columns: 1fr 1.6fr; gap: 64px; max-width: 860px; margin: 0 auto; align-items: start; }
.ct-info h2 { font-size: clamp(22px,3vw,32px); font-weight: 700; letter-spacing: -.005em; color: var(--black); margin-bottom: 12px; }
.ct-info > p { font-size: 17px; color: var(--body); line-height: 1.65; margin-bottom: 32px; }
.ct-row { display: flex; align-items: flex-start; gap: 12px; margin-bottom: 18px; }
.ct-ico { width: 36px; height: 36px; background: var(--light); border: 1px solid var(--border); border-radius: 9px; display: flex; align-items: center; justify-content: center; font-size: 15px; flex-shrink: 0; }
.ct-txt strong { display: block; font-size: 14px; font-weight: 600; color: var(--black); }
.ct-txt span, .ct-txt a { font-size: 14px; color: var(--body); }
.ct-txt a:hover { color: var(--blue); }
.ct-box { background: var(--light); border: 1px solid var(--border); border-radius: 18px; padding: 32px; }
.ct-box h3 { font-size: 19px; font-weight: 700; color: var(--black); margin-bottom: 4px; }
.ct-box > p { font-size: 14px; color: var(--body); margin-bottom: 24px; }
.sub-btn { width: 100%; padding: 14px; border: none; border-radius: 980px; background: var(--black); color: white; font-family: var(--font); font-size: 15px; font-weight: 600; cursor: pointer; display: flex; align-items: center; justify-content: center; gap: 8px; transition: .28s; }
.sub-btn:hover { background: #25D366; box-shadow: 0 6px 20px rgba(37,211,102,.3); }
.sub-note { text-align: center; font-size: 12px; color: var(--body); margin-top: 10px; }

/* ══════════════════════════════════════════
   FAQ
══════════════════════════════════════════ */
.faq-wrap { max-width: 680px; margin: 0 auto; }
.faq-cat-lbl { font-size: 12px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; color: var(--gold); margin: 48px 0 16px; display: flex; align-items: center; gap: 12px; }
.faq-cat-lbl::after { content: ''; flex: 1; height: 1px; background: var(--border); }
.faq-cat-lbl:first-child { margin-top: 0; }
.faq-it { border-bottom: 1px solid var(--border); }
.faq-q { display: flex; justify-content: space-between; align-items: center; padding: 18px 0; cursor: pointer; gap: 16px; }
.faq-q h4 { font-size: 15px; font-weight: 500; color: var(--black); flex: 1; line-height: 1.4; }
.faq-tog { width: 26px; height: 26px; border-radius: 50%; border: 1px solid var(--border); display: flex; align-items: center; justify-content: center; flex-shrink: 0; font-size: 16px; color: var(--body); transition: .28s; font-weight: 300; }
.faq-it.open .faq-tog { background: var(--black); border-color: var(--black); color: white; transform: rotate(45deg); }
.faq-ans { max-height: 0; overflow: hidden; transition: max-height .35s ease; }
.faq-it.open .faq-ans { max-height: 260px; }
.faq-ans p { font-size: 15px; color: var(--body); line-height: 1.7; padding-bottom: 18px; }
.faq-ans a { color: var(--blue); }

/* ══════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════ */
@media (max-width: 860px) {
  .port-grid { grid-template-columns: repeat(2,1fr); }
  .plans-grid { grid-template-columns: 1fr; max-width: 400px; margin-left: auto; margin-right: auto; }
  .ab2 { grid-template-columns: 1fr; gap: 32px; }
  .val-row { grid-template-columns: 1fr 1fr; }
  .ct-layout { grid-template-columns: 1fr; }
  .footer-cols { grid-template-columns: repeat(2,1fr); gap: 24px; }
}
@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .nav-ham { display: flex; }
  .stats-inner { grid-template-columns: 1fr 1fr; }
  .stat-item:nth-child(2) { border-right: none; }
  .tile-2col, .tile-3col { grid-template-columns: 1fr; }
  .process-row { grid-template-columns: 1fr 1fr; }
  .proc:nth-child(2) { border-right: none; }
  .proc:nth-child(3) { border-right: 1px solid var(--border); }
  .proc:nth-child(4) { border-right: none; }
  .rev-grid { grid-template-columns: 1fr; }
  .hero-visual { margin-top: 40px; }
}
@media (max-width: 540px) {
  .port-grid { grid-template-columns: 1fr; }
  .val-row { grid-template-columns: 1fr; }
  .field-row { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .process-row { grid-template-columns: 1fr; border-radius: 18px; }
  .proc { border-right: none; border-bottom: 1px solid var(--border); }
  .proc:last-child { border-bottom: none; }
  .footer-cols { grid-template-columns: 1fr 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

/* ── MOBILE NAV DRAWER ── */
.nav-mobile {
  display: none;
  position: fixed;
  top: 48px; left: 0; right: 0; bottom: 0;
  background: rgba(255,255,255,.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  z-index: 99;
  flex-direction: column;
  padding: 24px 22px;
  gap: 0;
}
.nav-mobile.open { display: flex; }
.nav-mobile a {
  font-size: 17px;
  font-weight: 500;
  color: var(--black);
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
  text-decoration: none;
}
.nav-mobile a:last-child { border-bottom: none; }
.nav-mobile a.active { color: var(--blue); }
.notice-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.6);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.notice-modal.show {
  display: flex;
}

.notice-box {
  background: #111;
  color: #fff;
  width: 60%;
  max-width: 700px;
  padding: 30px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 15px 40px rgba(0,0,0,0.4);
  position: relative;
  animation: fadeIn 0.4s ease;
}

.notice-box h2 {
  margin-bottom: 10px;
}

.notice-box p {
  color: #ccc;
  font-size: 15px;
  line-height: 1.5;
}

.notice-close {
  position: absolute;
  top: 10px;
  right: 15px;
  background: transparent;
  border: none;
  font-size: 20px;
  color: #aaa;
  cursor: pointer;
}

.notice-close:hover {
  color: #fff;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}


