/* =========================================================
   iCode Consultancy — Modern UX Design System
   ========================================================= */

@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:ital,wght@0,400;0,500;0,600;0,700;0,800;1,500&family=Sora:wght@600;700;800&display=swap');

:root {
  --primary: #135ce0;
  --primary-dark: #0b3c9c;
  --primary-light: #eaf2fe;
  --primary-100: #d7e6fc;
  --accent: #ff7a33;
  --accent-dark: #e0611c;
  --savanna: #1c9b6b;
  --ink: #0d1526;
  --ink-soft: #57616f;
  --ink-faint: #8892a0;
  --surface: #ffffff;
  --surface-alt: #f5f8fc;
  --surface-dim: #eef2f8;
  --surface-dark: #0a1220;
  --surface-dark-2: #101b30;
  --border: #e3e9f2;
  --border-dark: #1e2a42;
  --radius-sm: 10px;
  --radius: 16px;
  --radius-lg: 24px;
  --shadow-sm: 0 2px 8px rgba(13, 21, 38, 0.06);
  --shadow-md: 0 12px 32px rgba(13, 21, 38, 0.10);
  --shadow-lg: 0 24px 60px rgba(13, 21, 38, 0.16);
  --container: 1180px;
  --ease: cubic-bezier(.22, 1, .36, 1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

html, body.modern { max-width: 100%; overflow-x: hidden; }

body.modern {
  margin: 0;
  font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--ink);
  background: var(--surface);
  -webkit-font-smoothing: antialiased;
  line-height: 1.6;
  overflow-x: hidden;
}

.modern h1, .modern h2, .modern h3, .modern h4, .modern h5 {
  font-family: 'Sora', 'Plus Jakarta Sans', sans-serif;
  color: var(--ink);
  line-height: 1.2;
  margin: 0 0 16px;
  letter-spacing: -0.01em;
}

.modern p { margin: 0 0 16px; color: var(--ink-soft); }
.modern a { color: inherit; text-decoration: none; }
.modern img { max-width: 100%; display: block; }
.modern ul { margin: 0; padding: 0; list-style: none; }

.wrap {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--primary);
  background: var(--primary-light);
  padding: 7px 14px;
  border-radius: 999px;
  margin-bottom: 18px;
}
.eyebrow.accent { color: var(--accent-dark); background: #fff0e6; }
.eyebrow.savanna { color: var(--savanna); background: #e7f8f0; }
.eyebrow.on-dark { background: rgba(255,255,255,0.08); color: #cfe0ff; }

.section-head { max-width: 640px; margin: 0 0 48px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head h2 { font-size: clamp(28px, 3.4vw, 40px); }
.section-head p { font-size: 17px; }

section { position: relative; }
.section-pad { padding: 96px 0; }
.section-pad-sm { padding: 64px 0; }

@media (max-width: 768px) {
  .section-pad { padding: 64px 0; }
  .section-pad-sm { padding: 48px 0; }
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: inherit;
  font-weight: 700;
  font-size: 15px;
  padding: 15px 28px;
  border-radius: 999px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .25s var(--ease), color .25s var(--ease), border-color .25s var(--ease);
  white-space: nowrap;
}
.btn-primary { background: var(--primary); color: #fff; box-shadow: 0 10px 24px rgba(19, 92, 224, 0.28); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 16px 32px rgba(19, 92, 224, 0.36); }
.btn-accent { background: var(--accent); color: #fff; box-shadow: 0 10px 24px rgba(255, 122, 51, 0.32); }
.btn-accent:hover { transform: translateY(-2px); box-shadow: 0 16px 32px rgba(255, 122, 51, 0.4); }
.btn-outline { border-color: var(--border); color: var(--ink); background: transparent; }
.btn-outline:hover { border-color: var(--primary); color: var(--primary); transform: translateY(-2px); }
.btn-outline-light { border-color: rgba(255,255,255,0.35); color: #fff; }
.btn-outline-light:hover { border-color: #fff; background: rgba(255,255,255,0.08); transform: translateY(-2px); }
.btn-ghost { color: var(--primary); padding: 15px 8px; }
.btn-ghost:hover { color: var(--primary-dark); }
.btn-sm { padding: 11px 20px; font-size: 14px; }
.btn svg { width: 18px; height: 18px; flex-shrink: 0; }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.85);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: box-shadow .3s var(--ease), border-color .3s var(--ease);
}
.site-header.scrolled { box-shadow: var(--shadow-sm); border-bottom-color: var(--border); }
.site-header .wrap { display: flex; align-items: center; justify-content: space-between; height: 84px; }
.brand { display: flex; align-items: center; gap: 10px; }
.brand img { height: 34px; width: auto; }

.main-nav { display: flex; align-items: center; gap: 4px; }
.main-nav a {
  padding: 10px 16px;
  font-weight: 600;
  font-size: 15px;
  color: var(--ink-soft);
  border-radius: 999px;
  transition: color .2s, background .2s;
}
.main-nav a:hover, .main-nav a.active { color: var(--primary); background: var(--primary-light); }

.header-actions { display: flex; align-items: center; gap: 12px; }
.nav-toggle {
  display: none;
  width: 44px; height: 44px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: #fff;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.nav-toggle span, .nav-toggle::before, .nav-toggle::after { display: none; }
.nav-toggle svg { width: 20px; height: 20px; }

@media (max-width: 900px) {
  .main-nav {
    position: fixed;
    inset: 84px 16px auto 16px;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    flex-direction: column;
    align-items: stretch;
    padding: 10px;
    gap: 2px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: opacity .25s var(--ease), transform .25s var(--ease), visibility .25s;
  }
  .main-nav.open { opacity: 1; visibility: visible; transform: translateY(0); }
  .main-nav a { padding: 14px 16px; }
  .header-actions .btn-primary.desktop-only { display: none; }
  .nav-toggle { display: inline-flex; }
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  padding: 108px 0 100px;
  background: var(--surface);
  overflow: hidden;
  text-align: center;
}
.hero::before {
  /* faint tiled "code" texture */
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='420' height='260'%3E%3Cg%3E%3Crect x='24' y='24' width='118' height='7' rx='3.5' fill='%23135ce0' opacity='0.16'/%3E%3Crect x='152' y='24' width='58' height='7' rx='3.5' fill='%238892a0' opacity='0.16'/%3E%3Crect x='24' y='44' width='84' height='7' rx='3.5' fill='%238892a0' opacity='0.14'/%3E%3Crect x='118' y='44' width='36' height='7' rx='3.5' fill='%23ff7a33' opacity='0.16'/%3E%3Crect x='44' y='64' width='150' height='7' rx='3.5' fill='%238892a0' opacity='0.14'/%3E%3Crect x='44' y='84' width='64' height='7' rx='3.5' fill='%23135ce0' opacity='0.16'/%3E%3Crect x='118' y='84' width='40' height='7' rx='3.5' fill='%238892a0' opacity='0.12'/%3E%3Crect x='24' y='104' width='30' height='7' rx='3.5' fill='%238892a0' opacity='0.14'/%3E%3Crect x='236' y='120' width='100' height='7' rx='3.5' fill='%238892a0' opacity='0.14'/%3E%3Crect x='346' y='120' width='50' height='7' rx='3.5' fill='%23135ce0' opacity='0.16'/%3E%3Crect x='256' y='140' width='70' height='7' rx='3.5' fill='%238892a0' opacity='0.12'/%3E%3Crect x='276' y='160' width='128' height='7' rx='3.5' fill='%23ff7a33' opacity='0.14'/%3E%3Crect x='256' y='180' width='54' height='7' rx='3.5' fill='%23135ce0' opacity='0.16'/%3E%3Crect x='320' y='180' width='34' height='7' rx='3.5' fill='%238892a0' opacity='0.12'/%3E%3Crect x='236' y='200' width='24' height='7' rx='3.5' fill='%238892a0' opacity='0.14'/%3E%3Crect x='24' y='196' width='96' height='7' rx='3.5' fill='%238892a0' opacity='0.12'/%3E%3Crect x='24' y='216' width='60' height='7' rx='3.5' fill='%23135ce0' opacity='0.14'/%3E%3C/g%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 420px 260px;
  -webkit-mask-image: radial-gradient(ellipse 70% 65% at 50% 30%, rgba(0,0,0,0.9), transparent 75%);
  mask-image: radial-gradient(ellipse 70% 65% at 50% 30%, rgba(0,0,0,0.9), transparent 75%);
}
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(900px 480px at 50% -10%, rgba(19,92,224,0.14), transparent 60%),
    radial-gradient(600px 360px at 50% 105%, rgba(28,155,107,0.10), transparent 60%);
}
.hero .wrap { position: relative; z-index: 1; max-width: 760px; min-width: 0; }
.hero-copy { display: flex; flex-direction: column; align-items: center; }
.hero h1 { font-size: clamp(34px, 5vw, 56px); }
.hero .lead { font-size: 19px; max-width: 560px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 30px; justify-content: center; }
.hero-badges { display: flex; gap: 28px; margin-top: 44px; flex-wrap: wrap; justify-content: center; }
.hero-badge { display: flex; align-items: center; gap: 10px; font-size: 14px; font-weight: 600; color: var(--ink-soft); }
.hero-badge svg { width: 20px; height: 20px; color: var(--primary); flex-shrink: 0; }

/* ---------- Services grid ---------- */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
@media (max-width: 900px) { .services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .services-grid { grid-template-columns: 1fr; } }

.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 28px;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s var(--ease);
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: transparent; }
.icon-tile {
  width: 52px; height: 52px;
  border-radius: 14px;
  background: var(--primary-light);
  color: var(--primary);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
  flex-shrink: 0;
}
.icon-tile svg { width: 26px; height: 26px; }
.card h4 { font-size: 18px; margin-bottom: 10px; }
.card p { font-size: 15px; margin-bottom: 0; }

.card.featured { border: 1.5px solid var(--accent); background: linear-gradient(180deg, #fff8f2 0%, #fff 60%); position: relative; }
.card.featured .icon-tile { background: #ffe6d3; color: var(--accent-dark); }
.card.featured .tag {
  position: absolute; top: -12px; right: 24px;
  background: var(--accent); color: #fff; font-size: 11px; font-weight: 800;
  letter-spacing: .06em; text-transform: uppercase; padding: 5px 12px; border-radius: 999px;
  box-shadow: 0 6px 14px rgba(255,122,51,0.35);
}
.card.featured a.card-link { display: inline-flex; align-items: center; gap: 6px; margin-top: 12px; font-weight: 700; color: var(--accent-dark); font-size: 14px; }
.card.featured a.card-link svg { width: 15px; height: 15px; }

/* ---------- Split feature ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; min-width: 0; }
.split > * { min-width: 0; }
@media (max-width: 900px) { .split { grid-template-columns: 1fr; gap: 36px; } }
.split.reverse .split-media { order: 2; }
.split-media img { border-radius: var(--radius-lg); box-shadow: var(--shadow-md); width: 100%; height: auto; object-fit: cover; }
.check-list { margin-top: 22px; display: flex; flex-direction: column; gap: 14px; }
.check-list li { display: flex; align-items: flex-start; gap: 12px; font-weight: 600; color: var(--ink); font-size: 15.5px; }
.check-list li svg { width: 20px; height: 20px; color: var(--savanna); flex-shrink: 0; margin-top: 1px; }

.bg-tint { background: var(--surface-alt); }

/* ---------- Belief / dark feature band ---------- */
.belief-band {
  background: linear-gradient(160deg, var(--surface-dark) 0%, #0d1c38 100%);
  color: #fff;
  border-radius: var(--radius-lg);
  padding: 64px;
  position: relative;
  overflow: hidden;
}
.belief-band::after {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(500px 300px at 90% 10%, rgba(19,92,224,0.35), transparent 60%);
}
.belief-band > * { position: relative; }
.belief-band h2 { color: #fff; }
.belief-band p { color: rgba(255,255,255,0.72); font-size: 17px; max-width: 640px; }
@media (max-width: 768px) { .belief-band { padding: 40px 28px; } }

/* ---------- Game Spotlight (Afro Run) ---------- */
.game-spotlight {
  background: linear-gradient(155deg, #0c3320 0%, #103e28 55%, #16512f 100%);
  border-radius: var(--radius-lg);
  color: #fff;
  overflow: hidden;
  position: relative;
}
.game-spotlight::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(420px 320px at 90% 0%, rgba(255,199,79,0.22), transparent 60%),
    radial-gradient(360px 280px at 0% 100%, rgba(19,92,224,0.25), transparent 60%);
}
.game-spotlight-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  padding: 64px;
  min-width: 0;
}
.game-spotlight-inner > * { min-width: 0; }
@media (max-width: 900px) { .game-spotlight-inner { grid-template-columns: 1fr; padding: 40px 28px; } }

.game-copy .eyebrow { background: rgba(255,255,255,0.12); color: #ffe1a8; }
.game-copy h2 { color: #fff; font-size: clamp(26px, 3.2vw, 38px); }
.game-copy .lead { color: rgba(255,255,255,0.82); font-size: 17px; }
.game-copy .quote {
  border-left: 3px solid #ffc74f;
  padding-left: 16px;
  font-style: italic;
  color: #ffe9c2;
  margin: 22px 0;
  font-size: 15px;
}
.game-feature-list { display: grid; grid-template-columns: 1fr 1fr; gap: 12px 20px; margin: 22px 0 30px; }
.game-feature-list li { display: flex; gap: 10px; align-items: flex-start; font-size: 14.5px; font-weight: 600; color: #eaf7ee; }
.game-feature-list li svg { width: 18px; height: 18px; color: #ffc74f; flex-shrink: 0; margin-top: 2px; }
@media (max-width: 480px) { .game-feature-list { grid-template-columns: 1fr; } }

.game-meta { display: grid; grid-template-columns: repeat(auto-fit, minmax(120px, 1fr)); gap: 18px 22px; margin-top: 8px; margin-bottom: 28px; max-width: 460px; }
.game-meta div { display: flex; flex-direction: column; }
.game-meta span.k { font-size: 12px; text-transform: uppercase; letter-spacing: .06em; color: rgba(255,255,255,0.55); font-weight: 700; }
.game-meta span.v { font-size: 15px; font-weight: 700; color: #fff; }

.play-badge {
  display: inline-flex; align-items: center; gap: 12px;
  background: #0a0f0c; color: #fff;
  padding: 12px 22px 12px 16px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.14);
  transition: transform .25s var(--ease), background .25s var(--ease);
}
.play-badge:hover { transform: translateY(-2px); background: #16201a; }
.play-badge svg { width: 26px; height: 26px; flex-shrink: 0; }
.play-badge .lines { display: flex; flex-direction: column; line-height: 1.2; }
.play-badge .lines small { font-size: 10.5px; color: rgba(255,255,255,0.7); letter-spacing: .03em; }
.play-badge .lines strong { font-size: 16.5px; font-family: 'Sora', sans-serif; }

.game-media { position: relative; display: flex; justify-content: center; align-items: center; padding: 20px 0; }
.game-media-stack { position: relative; height: 100%; width: 100%; max-width: 360px; display: flex; align-items: center; justify-content: center; }
.shot-mock {
  width: 78%;
  aspect-ratio: 16 / 9;
  border-radius: 16px;
  border: 4px solid rgba(255,255,255,0.16);
  box-shadow: 0 24px 50px rgba(0,0,0,0.45);
  overflow: hidden;
  background: #0c1a12;
  position: absolute;
  z-index: 2;
}
.shot-mock img { width: 100%; height: 100%; display: block; object-fit: cover; }
.shot-mock.tilt-back { transform: rotate(7deg) translate(30px, -34px); opacity: 0.65; filter: saturate(0.85); z-index: 1; }
.shot-mock.tilt-front { transform: rotate(-5deg) translate(-14px, 26px); }
.rating-chip {
  position: absolute; top: 0; left: 0;
  background: #fff; color: var(--ink);
  border-radius: 14px; padding: 10px 14px;
  box-shadow: var(--shadow-md);
  display: flex; align-items: center; gap: 8px;
  font-weight: 800; font-size: 14px;
  z-index: 3;
}
.rating-chip svg { width: 18px; height: 18px; color: #ffb400; }

/* ---------- Tabs (vision/mission/approach) ---------- */
.tabs-card { background: #fff; border: 1px solid var(--border); border-radius: var(--radius-lg); box-shadow: var(--shadow-md); padding: 8px; }
.tab-nav { display: flex; gap: 4px; padding: 8px; }
.tab-nav button {
  flex: 1; padding: 12px 16px; border: none; background: transparent; cursor: pointer;
  font-family: inherit; font-weight: 700; font-size: 14.5px; color: var(--ink-soft);
  border-radius: 999px; transition: background .2s, color .2s;
}
.tab-nav button.active { background: var(--primary); color: #fff; }
.tab-panels { padding: 8px 28px 30px; }
.tab-panel { display: none; }
.tab-panel.active { display: block; animation: fadeIn .35s var(--ease); }
.tab-panel p { font-size: 16px; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(6px);} to { opacity: 1; transform: translateY(0);} }

/* ---------- Values ---------- */
.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
@media (max-width: 900px) { .values-grid { grid-template-columns: 1fr; } }
.value-card { padding: 4px; }
.value-card .icon-tile { background: rgba(19,92,224,0.14); color: #9dc0ff; }
.value-card h4 { color: #fff; }
.value-card p { color: rgba(255,255,255,0.68); font-size: 15px; }

/* ---------- CTA band ---------- */
.cta-band {
  background: linear-gradient(135deg, var(--primary) 0%, #0a2c78 100%);
  border-radius: var(--radius-lg);
  padding: 64px;
  text-align: center;
  color: #fff;
  position: relative;
  overflow: hidden;
}
.cta-band::before { content:''; position:absolute; inset:0; background: radial-gradient(500px 260px at 15% 0%, rgba(255,255,255,0.16), transparent 60%); }
.cta-band > * { position: relative; }
.cta-band h2 { color: #fff; max-width: 640px; margin: 0 auto 14px; }
.cta-band p { color: rgba(255,255,255,0.82); max-width: 560px; margin: 0 auto 32px; font-size: 17px; }
.cta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
@media (max-width: 768px) { .cta-band { padding: 44px 26px; } }

/* ---------- Page title (inner pages) ---------- */
.page-hero {
  padding: 64px 0 56px;
  background:
    radial-gradient(700px 360px at 90% -20%, rgba(19,92,224,0.14), transparent 60%),
    var(--surface-alt);
  border-bottom: 1px solid var(--border);
}
.page-hero .crumb { display: flex; align-items: center; gap: 8px; font-size: 13px; font-weight: 700; color: var(--ink-faint); margin-bottom: 14px; text-transform: uppercase; letter-spacing: .04em; }
.page-hero .crumb svg { width: 14px; height: 14px; }
.page-hero h1 { font-size: clamp(30px, 4vw, 44px); margin-bottom: 10px; }
.page-hero p { font-size: 17px; max-width: 560px; margin: 0; }

/* ---------- Footer ---------- */
.site-footer { background: var(--surface-dark); color: rgba(255,255,255,0.7); }
.footer-top { padding: 72px 0 48px; display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 40px; }
@media (max-width: 900px) { .footer-top { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .footer-top { grid-template-columns: 1fr; } }
.footer-brand img { height: 30px; margin-bottom: 16px; }
.footer-brand p { color: rgba(255,255,255,0.55); font-size: 14.5px; max-width: 280px; }
.footer-col h5 { color: #fff; font-size: 14px; text-transform: uppercase; letter-spacing: .06em; margin-bottom: 18px; }
.footer-col ul { display: flex; flex-direction: column; gap: 12px; }
.footer-col a { font-size: 14.5px; color: rgba(255,255,255,0.62); transition: color .2s; }
.footer-col a:hover { color: #fff; }
.footer-col .addr-item { display: flex; align-items: flex-start; gap: 10px; font-size: 14.5px; color: rgba(255,255,255,0.62); }
.footer-col .addr-item svg { width: 17px; height: 17px; flex-shrink: 0; margin-top: 2px; color: var(--primary-100); }
.footer-social { display: flex; gap: 10px; margin-top: 18px; }
.footer-social a { width: 38px; height: 38px; border-radius: 10px; background: rgba(255,255,255,0.06); display: flex; align-items: center; justify-content: center; transition: background .2s, transform .2s; }
.footer-social a:hover { background: var(--primary); transform: translateY(-2px); }
.footer-social svg { width: 17px; height: 17px; color: #fff; }
.footer-bottom { border-top: 1px solid var(--border-dark); padding: 22px 0; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 10px; font-size: 13.5px; color: rgba(255,255,255,0.45); }
.footer-bottom a { color: rgba(255,255,255,0.55); }
.footer-bottom a:hover { color: #fff; }

/* ---------- Reveal-on-scroll ---------- */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.in { opacity: 1; transform: translateY(0); }

/* ---------- Contact page ---------- */
.contact-grid { display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 48px; align-items: start; }
@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; } }
.form-card { background: #fff; border: 1px solid var(--border); border-radius: var(--radius-lg); box-shadow: var(--shadow-md); padding: 40px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
@media (max-width: 560px) { .form-row { grid-template-columns: 1fr; } }
.field { margin-bottom: 18px; }
.field label { display: block; font-size: 13.5px; font-weight: 700; color: var(--ink); margin-bottom: 8px; }
.field input, .field textarea {
  width: 100%; font-family: inherit; font-size: 15px; padding: 14px 16px;
  border: 1.5px solid var(--border); border-radius: 12px; background: var(--surface-alt);
  transition: border-color .2s, background .2s;
  resize: vertical;
}
.field input:focus, .field textarea:focus { outline: none; border-color: var(--primary); background: #fff; }
.form-status { font-size: 14.5px; font-weight: 700; padding: 12px 16px; border-radius: 10px; margin-top: 6px; display: none; }
.form-status.success { background: #e7f8f0; color: #167a4f; }
.form-status.error { background: #fdeceb; color: #c23b2f; }

.info-card { background: var(--surface-alt); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 36px; margin-bottom: 20px; }
.info-card h3 { font-size: 19px; margin-bottom: 20px; }
.info-list { display: flex; flex-direction: column; gap: 16px; }
.info-list li { display: flex; align-items: flex-start; gap: 14px; font-weight: 600; font-size: 15px; }
.info-list li svg { width: 20px; height: 20px; color: var(--primary); flex-shrink: 0; margin-top: 2px; }
.info-list li a { color: var(--ink); }
.info-list li a:hover { color: var(--primary); }

/* Icode utility */
.text-primary { color: var(--primary); }
.mt-0 { margin-top: 0 !important; }
