/* ═══════════════════════════════════════════════════════
   ArcadeView Marketing Site — Stylesheet
   ═══════════════════════════════════════════════════════ */

/* ── Tokens ───────────────────────────────────────────── */
:root {
  --pink:    #E91E8C;
  --purple:  #8B3A8B;
  --grad:    linear-gradient(135deg, #E91E8C 0%, #8B3A8B 100%);
  --dark:    #1a1a2e;
  --text:    #2d3748;
  --muted:   #718096;
  --border:  #e2e8f0;
  --bg:      #f8fafc;
  --white:   #ffffff;
  --shadow:  0 4px 24px rgba(0,0,0,0.08);
  --shadow-lg: 0 12px 48px rgba(0,0,0,0.12);
  --radius:  14px;
}

/* ── Reset ────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a  { text-decoration: none; color: inherit; }

/* ── Utilities ────────────────────────────────────────── */
.container { max-width: 1160px; margin: 0 auto; padding: 0 24px; }
.section    { padding: 96px 0; }
.section--alt { background: var(--bg); }
.text-center { text-align: center; }
.grad-text {
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── Badge ────────────────────────────────────────────── */
.badge {
  display: inline-block;
  padding: 5px 14px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .8px;
  background: rgba(233,30,140,0.1);
  color: var(--pink);
  margin-bottom: 16px;
}

/* ── Section headings ─────────────────────────────────── */
.section-title {
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 16px;
  letter-spacing: -0.5px;
}
.section-sub {
  font-size: 18px;
  color: var(--muted);
  max-width: 600px;
  margin: 0 auto 56px;
  line-height: 1.7;
}

/* ── Buttons ──────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  border: none;
  transition: all 0.2s;
  white-space: nowrap;
}
.btn-primary {
  background: var(--grad);
  color: var(--white);
  box-shadow: 0 4px 16px rgba(233,30,140,0.3);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(233,30,140,0.4); }
.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.5);
}
.btn-outline:hover { background: rgba(255,255,255,0.12); border-color: white; }
.btn-dark {
  background: var(--white);
  color: var(--dark);
}
.btn-dark:hover { box-shadow: var(--shadow); }

/* ══════════════════════════════════════════════════════
   NAVIGATION
   ══════════════════════════════════════════════════════ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}
.nav-brand {
  display: flex;
  align-items: center;
  gap: 10px;
}
.nav-logo { height: 36px; width: 36px; object-fit: contain; }
.nav-name {
  font-size: 20px;
  font-weight: 800;
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}
.nav-links a {
  font-size: 14px;
  font-weight: 600;
  color: var(--muted);
  transition: color 0.15s;
}
.nav-links a:hover { color: var(--pink); }
.nav-cta {
  padding: 10px 22px;
  background: var(--grad);
  color: white;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 700;
  transition: all 0.2s;
}
.nav-cta:hover { box-shadow: 0 4px 16px rgba(233,30,140,0.3); transform: translateY(-1px); }

/* Language switcher */
.nav-lang {
  display: flex;
  gap: 4px;
  align-items: center;
}
.lang-btn {
  padding: 5px 11px;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .5px;
  color: var(--muted);
  border: 1.5px solid var(--border);
  transition: all .15s;
}
.lang-btn:hover { border-color: var(--pink); color: var(--pink); }
.lang-btn-active {
  background: var(--grad);
  color: white;
  border-color: transparent;
}

/* Hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}
.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all 0.25s;
}
.nav-mobile {
  display: none;
  flex-direction: column;
  gap: 4px;
  padding: 12px 24px 20px;
  border-top: 1px solid var(--border);
  background: white;
}
.nav-mobile a {
  padding: 10px 0;
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
  border-bottom: 1px solid var(--border);
}
.nav-mobile a:last-child { border-bottom: none; }
.nav-mobile.open { display: flex; }

/* ══════════════════════════════════════════════════════
   HERO
   ══════════════════════════════════════════════════════ */
.hero {
  background: var(--grad);
  padding: 100px 0 80px;
  overflow: hidden;
  position: relative;
}
.hero::before {
  content: '';
  position: absolute;
  top: -40%;
  right: -10%;
  width: 700px;
  height: 700px;
  background: rgba(255,255,255,0.06);
  border-radius: 50%;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -5%;
  width: 500px;
  height: 500px;
  background: rgba(255,255,255,0.04);
  border-radius: 50%;
}
.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 20px;
  padding: 6px 16px;
  font-size: 13px;
  font-weight: 600;
  color: white;
  margin-bottom: 24px;
}
.hero-tag-dot { width: 8px; height: 8px; background: #4ade80; border-radius: 50%; }
.hero-title {
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -1px;
  color: white;
  margin-bottom: 20px;
}
.hero-title span {
  display: block;
  opacity: 0.85;
}
.hero-sub {
  font-size: 18px;
  color: rgba(255,255,255,0.8);
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 480px;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-stats {
  display: flex;
  gap: 32px;
  margin-top: 48px;
}
.hero-stat-value {
  font-size: 28px;
  font-weight: 900;
  color: white;
}
.hero-stat-label {
  font-size: 12px;
  color: rgba(255,255,255,0.65);
  text-transform: uppercase;
  letter-spacing: .6px;
  margin-top: 2px;
}

/* Dashboard mockup */
.hero-visual {
  display: flex;
  justify-content: flex-end;
}
.mockup-window {
  background: white;
  border-radius: 16px;
  box-shadow: 0 32px 80px rgba(0,0,0,0.35);
  overflow: hidden;
  width: 100%;
  max-width: 480px;
}
.mockup-bar {
  background: #1e293b;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.mockup-dot { width: 12px; height: 12px; border-radius: 50%; }
.mockup-dot-r { background: #ef4444; }
.mockup-dot-y { background: #f59e0b; }
.mockup-dot-g { background: #22c55e; }
.mockup-url {
  flex: 1;
  background: rgba(255,255,255,0.08);
  border-radius: 6px;
  padding: 5px 12px;
  font-size: 11px;
  color: rgba(255,255,255,0.5);
  font-family: monospace;
}
.mockup-body { padding: 20px; background: #f8fafc; }
.mockup-kpi-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  margin-bottom: 16px;
}
.mockup-kpi {
  background: white;
  border-radius: 10px;
  padding: 14px 12px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}
.mockup-kpi-v { font-size: 18px; font-weight: 800; color: var(--text); }
.mockup-kpi-l { font-size: 9px; color: var(--muted); text-transform: uppercase; letter-spacing: .5px; margin-top: 2px; }
.mockup-kpi-v.pink  { color: var(--pink); }
.mockup-kpi-v.green { color: #22c55e; }
.mockup-chart {
  background: white;
  border-radius: 10px;
  padding: 16px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
  margin-bottom: 12px;
}
.mockup-chart-title { font-size: 11px; font-weight: 700; color: var(--muted); text-transform: uppercase; letter-spacing: .5px; margin-bottom: 12px; }
.mockup-bars { display: flex; align-items: flex-end; gap: 6px; height: 70px; }
.mockup-bar-item {
  flex: 1;
  border-radius: 4px 4px 0 0;
  background: var(--grad);
  opacity: 0.8;
}
.mockup-table {
  background: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}
.mockup-table-row {
  display: flex;
  justify-content: space-between;
  padding: 9px 14px;
  font-size: 11px;
  border-bottom: 1px solid #f0f0f0;
  align-items: center;
}
.mockup-table-row:last-child { border-bottom: none; }
.mockup-badge {
  padding: 2px 8px;
  border-radius: 10px;
  font-size: 9px;
  font-weight: 700;
}
.mockup-badge-green { background: #dcfce7; color: #166534; }
.mockup-badge-amber { background: #fef3c7; color: #92400e; }

/* ══════════════════════════════════════════════════════
   OVERVIEW / NUMBERS
   ══════════════════════════════════════════════════════ */
.overview-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.overview-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 24px;
  text-align: center;
  box-shadow: var(--shadow);
  transition: transform 0.2s, box-shadow 0.2s;
}
.overview-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.overview-icon { font-size: 36px; margin-bottom: 14px; }
.overview-num  { font-size: 36px; font-weight: 900; background: var(--grad); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.overview-label { font-size: 14px; color: var(--muted); margin-top: 4px; font-weight: 600; }

/* ══════════════════════════════════════════════════════
   APPLICATIONS
   ══════════════════════════════════════════════════════ */
.apps-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: start;
}
.app-card {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
}
.app-card-header {
  padding: 32px;
  color: white;
}
.app-card--office .app-card-header { background: linear-gradient(135deg, #1e293b, #334155); }
.app-card--field  .app-card-header { background: var(--grad); }
.app-icon { font-size: 40px; margin-bottom: 14px; }
.app-title { font-size: 24px; font-weight: 800; margin-bottom: 8px; }
.app-desc  { font-size: 15px; opacity: 0.8; line-height: 1.6; }
.app-card-body { background: white; padding: 28px 32px; }
.app-features { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.app-features li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14px;
  color: var(--text);
}
.app-features li::before {
  content: '✓';
  width: 22px;
  height: 22px;
  background: rgba(233,30,140,0.1);
  color: var(--pink);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 900;
  flex-shrink: 0;
  margin-top: 1px;
}
.app-roles {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
}
.app-role {
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
  background: var(--bg);
  color: var(--muted);
  border: 1px solid var(--border);
}

/* ══════════════════════════════════════════════════════
   FEATURES GRID
   ══════════════════════════════════════════════════════ */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.feature-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow);
  transition: all 0.2s;
  position: relative;
  overflow: hidden;
}
.feature-card::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--grad);
  opacity: 0;
  transition: opacity 0.2s;
}
.feature-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.feature-card:hover::after { opacity: 1; }
.feature-icon { font-size: 32px; margin-bottom: 14px; }
.feature-title { font-size: 17px; font-weight: 700; margin-bottom: 8px; color: var(--text); }
.feature-desc  { font-size: 14px; color: var(--muted); line-height: 1.65; }

/* ══════════════════════════════════════════════════════
   REPORTING
   ══════════════════════════════════════════════════════ */
.reports-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.report-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
  box-shadow: var(--shadow);
  transition: all 0.2s;
}
.report-card:hover { box-shadow: var(--shadow-lg); border-color: rgba(233,30,140,0.3); }
.report-icon-wrap {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(233,30,140,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  flex-shrink: 0;
}
.report-title { font-size: 15px; font-weight: 700; color: var(--text); margin-bottom: 4px; }
.report-desc  { font-size: 13px; color: var(--muted); line-height: 1.5; }

/* ══════════════════════════════════════════════════════
   TECHNOLOGY
   ══════════════════════════════════════════════════════ */
.tech-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.tech-visual {
  background: var(--dark);
  border-radius: var(--radius);
  padding: 32px;
  font-family: 'Consolas', 'Courier New', monospace;
  font-size: 13px;
  line-height: 1.8;
  color: #e2e8f0;
  box-shadow: var(--shadow-lg);
}
.tech-line-comment { color: #64748b; }
.tech-line-key     { color: #7dd3fc; }
.tech-line-val     { color: #86efac; }
.tech-line-str     { color: #fda4af; }
.tech-stack {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.tech-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px;
  background: white;
  border: 1px solid var(--border);
  border-radius: 12px;
  box-shadow: var(--shadow);
}
.tech-item-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  flex-shrink: 0;
}
.tech-item-title { font-size: 15px; font-weight: 700; color: var(--text); margin-bottom: 2px; }
.tech-item-desc  { font-size: 13px; color: var(--muted); }
.bg-blue   { background: rgba(59,130,246,0.1); }
.bg-green  { background: rgba(34,197,94,0.1); }
.bg-purple { background: rgba(139,58,139,0.1); }
.bg-orange { background: rgba(249,115,22,0.1); }
.bg-pink   { background: rgba(233,30,140,0.1); }
.bg-teal   { background: rgba(20,184,166,0.1); }

/* ══════════════════════════════════════════════════════
   ROLES / ACCESS
   ══════════════════════════════════════════════════════ */
.roles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.role-card {
  border-radius: var(--radius);
  padding: 32px;
  text-align: center;
  border: 2px solid transparent;
  transition: all 0.2s;
}
.role-card--admin  { background: linear-gradient(135deg, rgba(233,30,140,0.06), rgba(139,58,139,0.06)); border-color: rgba(233,30,140,0.2); }
.role-card--office { background: linear-gradient(135deg, rgba(59,130,246,0.06), rgba(34,197,94,0.06));  border-color: rgba(59,130,246,0.2); }
.role-card--field  { background: linear-gradient(135deg, rgba(249,115,22,0.06), rgba(234,179,8,0.06));  border-color: rgba(249,115,22,0.2); }
.role-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.role-icon { font-size: 42px; margin-bottom: 14px; }
.role-name { font-size: 20px; font-weight: 800; margin-bottom: 8px; }
.role-desc { font-size: 14px; color: var(--muted); line-height: 1.6; margin-bottom: 20px; }
.role-perms { text-align: left; list-style: none; display: flex; flex-direction: column; gap: 8px; }
.role-perms li { display: flex; align-items: center; gap: 8px; font-size: 13px; color: var(--text); }
.role-perms li::before { content: '→'; color: var(--pink); font-weight: 900; }

/* ══════════════════════════════════════════════════════
   WORKFLOW
   ══════════════════════════════════════════════════════ */
.workflow {
  display: flex;
  align-items: flex-start;
  gap: 0;
  position: relative;
}
.workflow::before {
  content: '';
  position: absolute;
  top: 28px;
  left: calc(28px + 24px);
  right: calc(28px + 24px);
  height: 2px;
  background: linear-gradient(to right, var(--pink), var(--purple));
  z-index: 0;
}
.workflow-step {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  z-index: 1;
}
.workflow-num {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--grad);
  color: white;
  font-size: 20px;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  box-shadow: 0 4px 16px rgba(233,30,140,0.35);
}
.workflow-title { font-size: 15px; font-weight: 700; margin-bottom: 6px; }
.workflow-desc  { font-size: 13px; color: var(--muted); max-width: 160px; line-height: 1.5; }

/* ══════════════════════════════════════════════════════
   CTA BANNER
   ══════════════════════════════════════════════════════ */
.cta-banner {
  background: var(--grad);
  padding: 80px 0;
  text-align: center;
}
.cta-banner h2 {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 900;
  color: white;
  margin-bottom: 16px;
  letter-spacing: -0.5px;
}
.cta-banner p {
  font-size: 18px;
  color: rgba(255,255,255,0.8);
  margin-bottom: 36px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}
.cta-actions { display: flex; justify-content: center; gap: 14px; flex-wrap: wrap; }

/* ══════════════════════════════════════════════════════
   FOOTER
   ══════════════════════════════════════════════════════ */
.site-footer {
  background: var(--dark);
  color: rgba(255,255,255,0.65);
  padding: 56px 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-brand { display: flex; align-items: center; gap: 10px; margin-bottom: 12px; }
.footer-logo  { height: 32px; width: 32px; object-fit: contain; }
.footer-name  { font-size: 18px; font-weight: 800; color: white; }
.footer-tagline { font-size: 13px; line-height: 1.6; max-width: 260px; margin-bottom: 20px; }
.footer-col-title { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: .8px; color: white; margin-bottom: 14px; }
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.footer-links a { font-size: 14px; color: rgba(255,255,255,0.55); transition: color 0.15s; }
.footer-links a:hover { color: var(--pink); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
}
.footer-bottom-right { display: flex; gap: 20px; }
.footer-bottom-right a { color: rgba(255,255,255,0.4); font-size: 13px; }
.footer-bottom-right a:hover { color: rgba(255,255,255,0.7); }

/* ══════════════════════════════════════════════════════
   CONTACT PAGE
   ══════════════════════════════════════════════════════ */
.contact-hero {
  background: var(--grad);
  padding: 80px 0;
  color: white;
  text-align: center;
}
.contact-hero h1 { font-size: clamp(32px, 5vw, 48px); font-weight: 900; margin-bottom: 12px; }
.contact-hero p  { font-size: 18px; opacity: 0.8; max-width: 500px; margin: 0 auto; }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 64px;
  align-items: start;
}
.contact-info h2 { font-size: 26px; font-weight: 800; margin-bottom: 16px; }
.contact-info p  { font-size: 15px; color: var(--muted); line-height: 1.7; margin-bottom: 32px; }
.contact-points  { display: flex; flex-direction: column; gap: 20px; }
.contact-point   { display: flex; align-items: flex-start; gap: 14px; }
.contact-point-icon {
  width: 44px; height: 44px;
  border-radius: 10px;
  background: rgba(233,30,140,0.1);
  display: flex; align-items: center; justify-content: center;
  font-size: 20px; flex-shrink: 0;
}
.contact-point-title { font-size: 14px; font-weight: 700; color: var(--text); margin-bottom: 2px; }
.contact-point-val   { font-size: 14px; color: var(--muted); }

.contact-form-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 40px;
  box-shadow: var(--shadow-lg);
}
.contact-form-title { font-size: 22px; font-weight: 800; margin-bottom: 6px; }
.contact-form-sub   { font-size: 14px; color: var(--muted); margin-bottom: 28px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; }
.form-group label { font-size: 13px; font-weight: 600; color: var(--text); }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1.5px solid var(--border);
  border-radius: 10px;
  font-size: 14px;
  font-family: inherit;
  color: var(--text);
  background: white;
  transition: border-color 0.15s;
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--pink); }
.form-group textarea { resize: vertical; min-height: 120px; }
.form-submit {
  width: 100%;
  padding: 15px;
  background: var(--grad);
  color: white;
  border: none;
  border-radius: 10px;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s;
  box-shadow: 0 4px 16px rgba(233,30,140,0.3);
}
.form-submit:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(233,30,140,0.4); }
.form-success {
  display: none;
  text-align: center;
  padding: 32px;
}
.form-success-icon { font-size: 56px; margin-bottom: 16px; }
.form-success h3   { font-size: 22px; font-weight: 800; margin-bottom: 8px; }
.form-success p    { font-size: 15px; color: var(--muted); }
.req { color: var(--pink); }

/* ══════════════════════════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .overview-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-inner    { grid-template-columns: 1fr; gap: 48px; }
  .hero-visual   { justify-content: center; }
  .mockup-window { max-width: 440px; }
  .tech-inner    { grid-template-columns: 1fr; }
  .tech-visual   { order: -1; }
  .footer-grid   { grid-template-columns: 1fr 1fr; gap: 32px; }
}

@media (max-width: 768px) {
  .section { padding: 64px 0; }
  .nav-links, .nav-cta-wrap { display: none; }
  .nav-hamburger { display: flex; }
  .hero { padding: 64px 0 56px; }
  .hero-stats { gap: 20px; flex-wrap: wrap; }
  .apps-grid     { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: 1fr 1fr; }
  .reports-grid  { grid-template-columns: 1fr; }
  .roles-grid    { grid-template-columns: 1fr; }
  .workflow      { flex-direction: column; gap: 24px; align-items: flex-start; }
  .workflow::before { display: none; }
  .workflow-step { flex-direction: row; text-align: left; align-items: flex-start; gap: 16px; }
  .workflow-num  { margin-bottom: 0; flex-shrink: 0; }
  .workflow-desc { max-width: none; }
  .contact-grid  { grid-template-columns: 1fr; }
  .form-row      { grid-template-columns: 1fr; }
  .footer-grid   { grid-template-columns: 1fr; gap: 24px; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
}

@media (max-width: 480px) {
  .features-grid { grid-template-columns: 1fr; }
  .overview-grid { grid-template-columns: 1fr 1fr; }
  .hero-actions  { flex-direction: column; }
  .btn { justify-content: center; }
}
