/* ==========================================================================
   Cafentra marketing site — Surge v2 brand tokens (ported from cafentra-design)
   Violet-forward, dark, RTL. Body: Vazirmatn. Display: Space Grotesk.
   ========================================================================== */

@font-face {
  font-family: 'Space Grotesk';
  src: url('../fonts/SpaceGrotesk-Bold.ttf') format('truetype');
  font-weight: 700;
  font-display: swap;
}
@font-face {
  font-family: 'Space Grotesk';
  src: url('../fonts/SpaceGrotesk-SemiBold.ttf') format('truetype');
  font-weight: 600;
  font-display: swap;
}

:root {
  /* Backgrounds */
  --bg-base:    #0A0912;
  --bg-darkest: #07060D;
  --bg-window:  #0F0E1A;

  /* Surfaces */
  --surface-card:   #16142A;
  --surface-2:      #1E1B36;
  --surface-accent: #241F44;
  --surface-muted:  #1A1730;

  /* Borders */
  --border-steel:  #2A2748;
  --border-subtle: rgba(255,255,255,0.06);
  --border-default:rgba(255,255,255,0.10);

  /* Accents — violet primary, green secondary */
  --violet-300:#B6A8FF; --violet-400:#9B86FF; --violet-500:#7C5CFF; --violet-600:#5E3FE0;
  --green-400:#4DE89D;  --green-500:#2BE08B;
  --accent: var(--violet-500);
  --accent-hover: var(--violet-400);
  --accent-2: var(--green-500);
  --on-accent:#FFFFFF;
  --on-accent-2:#06140D;

  /* Text */
  --text-hi:#F4F3FB; --text-mid:#A29FBD; --text-soft:#CFCDE0; --text-lo:#6E6A8C;

  /* Semantic */
  --success:#2BE08B; --warning:#FFB02E; --warning-alt:#FF8C42; --danger:#FF5470;
  --postpaid:#C77DFF; --reserved:#6E8BFF; --booking:#9B86FF; --indigo:#7C5CFF;

  /* PC / device tile states (match the real Admin/Server tiles) */
  --pc-free-bg:#0C2A1C; --pc-inuse-bg:#2C0F18; --pc-locked-bg:#2C220A;
  --pc-reserved-bg:#161634; --pc-offline-bg:#0F0E1A;

  /* Extra surface / border tokens used by the demo */
  --surface-3:#262144; --surface-4:#2E284F; --surface-muted:#1A1730;
  --border-faint:#201C38; --text-faint:#4A4762;
  --danger-bg:#2C0F18; --danger-bg2:#3A1320; --danger-soft:#FF8298;
  --success-bg:#0C2A1C; --warning-bg:#2C220A;
  --grad-lock:linear-gradient(135deg,#0A0912 0%,#120F26 100%);
  --grad-session:linear-gradient(135deg,#07060D 0%,#0B1410 100%);
  --font-mono:'Cascadia Code',ui-monospace,Consolas,monospace;

  /* Effects */
  --r-sm:6px; --r-md:8px; --r-lg:12px; --r-xl:16px; --r-pill:999px;
  --shadow-card:0 2px 10px rgba(0,0,0,0.45);
  --shadow-modal:0 20px 60px rgba(0,0,0,0.55);
  --glow-brand:0 8px 40px -12px rgba(124,92,255,0.45);
  --focus-ring:rgba(124,92,255,0.55);

  --grad-brand:linear-gradient(120deg,#7C5CFF 0%,#2BE08B 100%);
  --grad-soft:linear-gradient(120deg,rgba(124,92,255,0.16),rgba(43,224,139,0.10));

  --font-display:'Space Grotesk','Manrope',system-ui,sans-serif;
  --font-body:'Vazirmatn','Segoe UI',Tahoma,sans-serif;

  --maxw:1200px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration:.001ms !important; transition-duration:.001ms !important; }
}

body {
  margin: 0;
  font-family: var(--font-body);
  background: var(--bg-base);
  color: var(--text-soft);
  line-height: 1.75;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
/* English prefers a Latin UI stack; Space Grotesk still drives display headings */
body.lang-en { font-family: 'Segoe UI', system-ui, -apple-system, 'Manrope', sans-serif; line-height: 1.65; }
/* Persian: use Vazirmatn everywhere, including display headings/buttons/prices (Space Grotesk
   is Latin-only and has no Persian glyphs). Overriding the custom property cascades to every
   element that resolves var(--font-display). */
body.lang-fa { --font-display: 'Vazirmatn','Segoe UI',Tahoma,sans-serif; }

/* Ambient glow backdrop */
body::before {
  content:"";
  position: fixed; inset: 0;
  background:
    radial-gradient(60vw 50vh at 80% -10%, rgba(124,92,255,0.18), transparent 60%),
    radial-gradient(50vw 40vh at 10% 10%, rgba(43,224,139,0.10), transparent 60%);
  pointer-events: none;
  z-index: 0;
}

h1,h2,h3,.display { font-family: var(--font-display); color: var(--text-hi); line-height:1.2; letter-spacing:0; }

a { color: inherit; text-decoration: none; }

.container { max-width: var(--maxw); margin: 0 auto; padding: 0 24px; position: relative; z-index: 1; }

section { padding: 96px 0; position: relative; z-index: 1; }

.eyebrow {
  display:inline-flex; align-items:center; gap:8px;
  font-family:var(--font-display); font-size:13px; font-weight:600;
  color: var(--violet-300);
  background: var(--surface-muted);
  border:1px solid var(--border-steel);
  border-radius: var(--r-pill);
  padding:6px 14px;
  letter-spacing:.02em;
}

.section-head { text-align:center; max-width:680px; margin:0 auto 56px; }
.section-head h2 { font-size:clamp(26px,4vw,40px); margin:16px 0 12px; }
.section-head p { color:var(--text-mid); font-size:17px; margin:0; }

/* ---------- Buttons ---------- */
.btn {
  display:inline-flex; align-items:center; justify-content:center; gap:8px;
  font-family:var(--font-display); font-weight:600; font-size:15px;
  padding:13px 26px; border-radius:var(--r-md);
  border:1px solid transparent; cursor:pointer;
  transition: background-color .2s ease, border-color .2s ease, color .2s ease, box-shadow .2s ease;
  min-height:48px;
}
.btn-primary { background:var(--accent); color:var(--on-accent); box-shadow:var(--glow-brand); }
.btn-primary:hover { background:var(--accent-hover); }
.btn-ghost { background:transparent; color:var(--text-hi); border-color:var(--border-default); }
.btn-ghost:hover { border-color:var(--accent); color:var(--violet-300); }
.btn:focus-visible { outline:none; box-shadow:0 0 0 3px var(--focus-ring); }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top:0; z-index:50;
  background: rgba(10,9,18,0.72);
  backdrop-filter: blur(12px);
  border-bottom:1px solid var(--border-subtle);
}
.nav { display:flex; align-items:center; justify-content:space-between; height:72px; gap:24px; }
.nav-logo { display:flex; align-items:center; gap:10px; }
.nav-logo img { height:34px; width:auto; display:block; }
.nav-logo .wordmark { font-family:var(--font-display); font-weight:700; font-size:20px; color:var(--text-hi); }
.nav-links { display:flex; align-items:center; gap:4px; list-style:none; margin:0; padding:0; flex-wrap:nowrap; }
.nav-links li { flex:0 0 auto; }
.nav-links a { padding:9px 14px; border-radius:var(--r-sm); font-size:15px; color:var(--text-mid); transition:color .2s, background-color .2s; white-space:nowrap; }
.nav-links a:hover { color:var(--text-hi); background:var(--surface-muted); }
.nav-cta { display:flex; align-items:center; gap:10px; flex-wrap:nowrap; }
.nav-cta .btn, .nav-cta .btn-lang { white-space:nowrap; flex:0 0 auto; }
.btn-lang {
  display:inline-flex; align-items:center; gap:6px;
  font-family:var(--font-display); font-size:14px; font-weight:600;
  color:var(--text-mid); padding:9px 12px; border-radius:var(--r-sm);
  border:1px solid var(--border-default); transition:color .2s, border-color .2s, background-color .2s;
}
.btn-lang:hover { color:var(--violet-300); border-color:var(--accent); }
.btn-lang:focus-visible { outline:none; box-shadow:0 0 0 3px var(--focus-ring); }
.nav-toggle { display:none; background:none; border:1px solid var(--border-default); border-radius:var(--r-sm); color:var(--text-hi); width:44px; height:44px; cursor:pointer; font-size:22px; align-items:center; justify-content:center; }

/* ---------- Hero ---------- */
.hero { padding:110px 0 90px; text-align:center; }
.hero h1 { font-size:clamp(32px,5.4vw,60px); margin:22px auto 20px; max-width:900px; }
.hero .lead { font-size:clamp(16px,2vw,20px); color:var(--text-mid); max-width:680px; margin:0 auto 36px; }
.hero-grad { background:var(--grad-brand); -webkit-background-clip:text; background-clip:text; color:transparent; }
.hero-actions { display:flex; gap:14px; justify-content:center; flex-wrap:wrap; }
.hero-stats { display:flex; gap:20px; justify-content:center; flex-wrap:wrap; margin-top:56px; }
.hero-stat { background:var(--surface-card); border:1px solid var(--border-steel); border-radius:var(--r-lg); padding:22px 30px; min-width:160px; }
.hero-stat .v { font-family:var(--font-display); font-weight:700; font-size:30px; color:var(--text-hi); }
.hero-stat .l { color:var(--text-mid); font-size:14px; margin-top:4px; }

/* Dashboard mock frame */
.hero-frame {
  margin:64px auto 0; max-width:960px;
  background:var(--surface-card); border:1px solid var(--border-steel);
  border-radius:var(--r-xl); box-shadow:var(--shadow-modal); overflow:hidden;
}
.hero-frame-bar { display:flex; align-items:center; gap:8px; padding:14px 18px; background:var(--bg-darkest); border-bottom:1px solid var(--border-steel); }
.hero-frame-bar .dot { width:11px; height:11px; border-radius:50%; }
.hero-frame-bar .dot.r{background:#FF5470;} .hero-frame-bar .dot.y{background:#FFB02E;} .hero-frame-bar .dot.g{background:#2BE08B;}
.hero-frame-bar .hf-brand { display:flex; align-items:center; gap:6px; margin-inline-start:12px; font-family:var(--font-display); font-size:14px; font-weight:700; color:var(--text-hi); }
.hero-frame-bar .hf-brand em { color:var(--accent); font-style:normal; font-weight:600; }
.hero-frame-bar .t { margin-inline-start:auto; font-family:var(--font-display); font-size:12px; color:var(--text-lo); }

/* Admin-console layout: rail + main */
.hf-body { display:flex; text-align:start; direction:ltr; }
.hf-rail { flex:none; width:52px; background:var(--bg-base); border-inline-end:1px solid var(--border-faint); padding:12px 0; display:flex; flex-direction:column; align-items:center; gap:6px; }
.hf-rail-item { width:34px; height:34px; border-radius:var(--r-md); display:flex; align-items:center; justify-content:center; font-size:18px; color:var(--text-lo); }
.hf-rail-item.active { background:color-mix(in srgb, var(--accent) 16%, transparent); color:var(--accent); }
.hf-main { flex:1; min-width:0; padding:16px; }
.hf-stats { display:flex; gap:10px; margin-bottom:14px; }
.hf-stat { flex:1; background:var(--surface-card); border:1px solid var(--border-steel); border-radius:var(--r-lg); padding:10px 14px; display:flex; flex-direction:column; gap:2px; }
.hf-stat .l { font-size:10px; font-weight:700; letter-spacing:.04em; text-transform:uppercase; color:var(--text-mid); }
.hf-stat .v { font-family:var(--font-display); font-weight:700; font-size:24px; font-variant-numeric:tabular-nums; }

/* Rich PC tiles — mirror the demo .pc tile */
.pc-grid { display:grid; grid-template-columns:repeat(auto-fill,minmax(112px,1fr)); gap:10px; }
.pc-tile { border-radius:var(--r-xl); border:2px solid var(--border-steel); background:var(--surface-muted); padding:8px; display:flex; flex-direction:column; min-height:118px; }
.pc-tile .pt-top { display:flex; justify-content:space-between; align-items:center; }
.pc-tile .pt-type { font-size:9px; font-weight:700; padding:2px 5px; border-radius:var(--r-sm); background:var(--surface-accent); color:var(--accent); }
.pc-tile .pt-rate { font-size:9px; color:var(--text-lo); }
.pc-tile .pt-mid { flex:1; display:flex; flex-direction:column; align-items:center; justify-content:center; gap:1px; }
.pc-tile .pt-mid i { font-size:22px; }
.pc-tile .pt-name { font-family:var(--font-display); font-weight:700; font-size:13px; color:var(--text-hi); }
.pc-tile .pt-status { font-size:10px; font-weight:700; }
.pc-tile .pt-foot { min-height:22px; text-align:center; }
.pc-tile .pt-member { display:block; font-size:9px; color:var(--accent); overflow:hidden; text-overflow:ellipsis; white-space:nowrap; }
.pc-tile .pt-timer { display:block; font-size:11px; font-weight:700; font-variant-numeric:tabular-nums; color:var(--warning); }
.pc-tile .pt-timer.low { color:var(--danger); }
.pc-tile .pt-timer.postpaid { color:var(--postpaid); }
.pc-free  { background:var(--pc-free-bg);   border-color:#1c4a33; } .pc-free .pt-mid i, .pc-free .pt-status { color:var(--success); }
.pc-inuse { background:var(--pc-inuse-bg);  border-color:#5a1a2a; } .pc-inuse .pt-mid i, .pc-inuse .pt-status { color:var(--danger); }
.pc-locked{ background:var(--pc-locked-bg); border-color:#5a4a1a; } .pc-locked .pt-mid i, .pc-locked .pt-status { color:var(--warning); }
.pc-reserved { background:var(--pc-reserved-bg); border-color:#2e3a6a; } .pc-reserved .pt-mid i, .pc-reserved .pt-status { color:var(--reserved); }

/* ---------- Feature grid ---------- */
.feature-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:20px; }
.feature-card {
  background:var(--surface-card); border:1px solid var(--border-steel);
  border-radius:var(--r-lg); padding:28px; transition:border-color .2s, transform .2s, box-shadow .2s;
}
.feature-card:hover { border-color:var(--accent); transform:translateY(-3px); box-shadow:var(--shadow-card); }
.feature-icon {
  width:52px; height:52px; border-radius:var(--r-md);
  display:flex; align-items:center; justify-content:center; font-size:26px;
  background:var(--grad-soft); color:var(--violet-300); border:1px solid var(--border-steel);
  margin-bottom:18px;
}
.feature-card h3 { font-size:19px; margin:0 0 10px; }
.feature-card p { color:var(--text-mid); font-size:15px; margin:0; }

/* ---------- How it works ---------- */
.steps { display:grid; grid-template-columns:repeat(3,1fr); gap:24px; }
.step { text-align:center; padding:28px; }
.step-num {
  width:56px; height:56px; margin:0 auto 18px; border-radius:50%;
  display:flex; align-items:center; justify-content:center;
  font-family:var(--font-display); font-weight:700; font-size:24px;
  color:var(--on-accent-2); background:var(--accent-2);
}
.step h3 { font-size:18px; margin:0 0 8px; }
.step p { color:var(--text-mid); font-size:15px; margin:0; }

/* ---------- Modules ---------- */
.modules-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:20px; }
.module-card {
  background:linear-gradient(180deg,var(--surface-2),var(--surface-card));
  border:1px solid var(--border-steel); border-radius:var(--r-lg); padding:30px;
}
.module-card .mi { font-size:34px; color:var(--accent-2); margin-bottom:14px; display:block; }
.module-card h3 { font-size:22px; margin:0 0 4px; }
.module-card .sub { color:var(--violet-300); font-family:var(--font-display); font-size:14px; }
.module-card p { color:var(--text-mid); font-size:15px; margin:14px 0 0; }

/* ---------- Pricing ---------- */
.pricing-grid { display:grid; grid-template-columns:repeat(4,1fr); gap:22px; align-items:stretch; }
.price-card {
  background:var(--surface-card); border:1px solid var(--border-steel);
  border-radius:var(--r-lg); padding:32px; display:flex; flex-direction:column;
}
.price-card.featured { border-color:var(--accent); box-shadow:var(--glow-brand); position:relative; }
.price-badge {
  position:absolute; top:-13px; inset-inline-start:50%; transform:translateX(50%);
  background:var(--accent); color:var(--on-accent); font-family:var(--font-display);
  font-size:12px; font-weight:600; padding:5px 14px; border-radius:var(--r-pill);
}
.price-card h3 { font-size:20px; margin:0 0 6px; }
.price-amount { font-family:var(--font-display); font-weight:700; font-size:36px; color:var(--text-hi); margin:10px 0 2px; }
.price-period { color:var(--text-lo); font-size:14px; margin-bottom:20px; }
.price-features { list-style:none; margin:0 0 26px; padding:0; flex:1; }
.price-features li { display:flex; align-items:flex-start; gap:10px; padding:8px 0; color:var(--text-soft); font-size:15px; border-bottom:1px solid var(--border-subtle); }
.price-features li i { color:var(--accent-2); font-size:18px; margin-top:4px; flex-shrink:0; }

/* ---------- Testimonials ---------- */
.testi-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:20px; }
.testi-card { background:var(--surface-card); border:1px solid var(--border-steel); border-radius:var(--r-lg); padding:28px; }
.testi-card .q { color:var(--text-soft); font-size:16px; margin:0 0 20px; }
.testi-card .who { display:flex; align-items:center; gap:12px; }
.testi-avatar { width:44px; height:44px; border-radius:50%; background:var(--grad-brand); display:flex; align-items:center; justify-content:center; font-family:var(--font-display); font-weight:700; color:#fff; }
.testi-card .name { font-family:var(--font-display); color:var(--text-hi); font-size:15px; }
.testi-card .role { color:var(--text-lo); font-size:13px; }
.stars { color:var(--warning); font-size:15px; margin-bottom:14px; letter-spacing:2px; }

/* ---------- FAQ ---------- */
.faq-list { max-width:820px; margin:0 auto; }
.faq-item { background:var(--surface-card); border:1px solid var(--border-steel); border-radius:var(--r-md); margin-bottom:12px; overflow:hidden; }
.faq-q { width:100%; text-align:start; background:none; border:none; color:var(--text-hi); font-family:var(--font-body); font-weight:600; font-size:16px; padding:20px 22px; cursor:pointer; display:flex; align-items:center; justify-content:space-between; gap:16px; }
.faq-q i { color:var(--accent); transition:transform .2s; flex-shrink:0; }
.faq-item.open .faq-q i { transform:rotate(180deg); }
.faq-a { max-height:0; overflow:hidden; transition:max-height .28s ease; }
.faq-a-inner { padding:0 22px 20px; color:var(--text-mid); font-size:15px; }

/* ---------- CTA band ---------- */
.cta-band { text-align:center; background:var(--grad-soft); border-top:1px solid var(--border-steel); border-bottom:1px solid var(--border-steel); }
.cta-band h2 { font-size:clamp(26px,4vw,40px); margin:0 0 14px; }
.cta-band p { color:var(--text-mid); font-size:18px; margin:0 auto 30px; max-width:560px; }

/* ---------- Footer ---------- */
.site-footer { background:var(--bg-darkest); border-top:1px solid var(--border-steel); padding:64px 0 32px; }
.footer-grid { display:grid; grid-template-columns:2fr 1fr 1fr; gap:40px; margin-bottom:40px; }
.footer-brand .wordmark { font-family:var(--font-display); font-weight:700; font-size:22px; color:var(--text-hi); }
.footer-brand p { color:var(--text-mid); font-size:15px; margin:14px 0 0; max-width:320px; }
.footer-col h4 { font-family:var(--font-display); font-size:15px; color:var(--text-hi); margin:0 0 16px; }
.footer-col ul { list-style:none; margin:0; padding:0; }
.footer-col li { margin-bottom:10px; }
.footer-col a { color:var(--text-mid); font-size:15px; transition:color .2s; }
.footer-col a:hover { color:var(--violet-300); }
.footer-bottom { border-top:1px solid var(--border-subtle); padding-top:24px; text-align:center; color:var(--text-lo); font-size:14px; }

/* ---------- Responsive ---------- */
@media (max-width: 1200px) {
  /* Tighten the nav CTA cluster so the extra buttons (Account, Buy) stay on one line. */
  .nav { gap:12px; }
  .nav-cta { gap:6px; }
  .nav-cta .btn { padding:10px 14px; font-size:14px; }
  .btn-lang { padding:9px 10px; }
}
@media (max-width: 1000px) {
  .pricing-grid { grid-template-columns:repeat(2,1fr); }
}
/* Collapse inline nav links into the hamburger before they crowd the CTA buttons. */
@media (max-width: 1080px) {
  .nav-links { display:none; }
  .nav-toggle { display:flex; }
  .nav-links.open {
    display:flex; flex-direction:column; position:absolute; top:72px; inset-inline:0;
    background:var(--bg-window); border-bottom:1px solid var(--border-steel); padding:12px; gap:2px;
  }
  .nav-links.open a { padding:14px; }
}
@media (max-width: 900px) {
  .feature-grid, .steps, .modules-grid, .testi-grid { grid-template-columns:1fr; }
  .footer-grid { grid-template-columns:1fr; gap:28px; }
  .nav-cta .nav-contact { display:none; }
  .hf-rail { display:none; }
  .hf-main { padding:12px; }
  .hf-stats { gap:8px; }
  .hf-stat .v { font-size:20px; }
  .pc-grid { grid-template-columns:repeat(auto-fill,minmax(96px,1fr)); gap:8px; }
  .pc-tile { min-height:104px; }
  section { padding:64px 0; }
}
@media (min-width:901px) and (max-width:1100px){
  .feature-grid { grid-template-columns:repeat(2,1fr); }
}
@media (max-width:560px){
  .pricing-grid { grid-template-columns:1fr; }
}

/* ---------- Contact form ---------- */
.contact-section { padding: 92px 0 80px; }
.contact-grid { display:grid; grid-template-columns:1.6fr 1fr; gap:28px; align-items:start; max-width:1000px; margin:0 auto; }
.contact-form {
  background:var(--surface-card); border:1px solid var(--border-steel);
  border-radius:var(--r-lg); padding:30px;
}
.contact-form .field { margin-bottom:18px; }
.contact-form .field-row { display:grid; grid-template-columns:1fr 1fr; gap:16px; }
.contact-form label { display:block; font-size:14px; font-weight:600; color:var(--text-soft); margin-bottom:8px; }
.contact-form label .req { color:var(--danger); }
.contact-form .dm-input { font-size:15px; padding:11px 13px; }
.contact-form textarea.dm-input { resize:vertical; min-height:120px; line-height:1.7; }
.contact-form select.dm-input { cursor:pointer; }
.dm-input.invalid { border-color:var(--danger); }
.field-err { display:block; color:var(--danger-soft); font-size:13px; margin-top:6px; min-height:1px; }
.contact-form .btn { width:100%; margin-top:6px; }
.contact-form .btn:disabled { opacity:.6; cursor:wait; }
.hp { position:absolute; left:-9999px; width:1px; height:1px; overflow:hidden; }

.form-flash { border-radius:var(--r-md); font-size:14px; margin-bottom:4px; }
.form-flash.ok { background:var(--success-bg); color:var(--success); padding:13px 15px; margin-bottom:20px; }
.form-flash.err { background:var(--danger-bg2); color:var(--danger-soft); padding:13px 15px; margin-bottom:20px; }
.form-flash i { vertical-align:-2px; margin-inline-end:6px; }

.contact-info {
  background:var(--surface-2); border:1px solid var(--border-steel);
  border-radius:var(--r-lg); padding:28px;
}
.contact-info h3 { font-family:var(--font-display); font-size:18px; color:var(--text-hi); margin:0 0 20px; }
.info-item { display:flex; align-items:center; gap:12px; padding:13px 0; color:var(--text-soft); font-size:15px; border-bottom:1px solid var(--border-subtle); transition:color .2s; }
.info-item:last-child { border-bottom:0; }
a.info-item:hover { color:var(--violet-300); }
.info-item i { font-size:20px; color:var(--accent); flex-shrink:0; }
.info-item.static { cursor:default; }

@media (max-width:860px) {
  .contact-grid { grid-template-columns:1fr; }
  .contact-form .field-row { grid-template-columns:1fr; gap:0; }
}
