/* ===================================================================
   Card Payments Made Easy — Design System
   =================================================================== */

:root {
  /* Brand */
  --green: #16B178;
  --green-dark: #0B5B3E;
  --green-light: #4CDBA4;
  --violet: #6C4BFF;      /* Teya partnership accent */
  --violet-light: #9B82FF;

  /* Neutrals */
  --ink: #0B1210;
  --grey: #6B7570;
  --grey-light: #8A9490;
  --bg-light: #F9FAF8;
  --white: #FFFFFF;

  /* Dark surfaces */
  --dark-900: #080B0D;
  --dark-800: #0A0E12;
  --dark-700: #101720;
  --dark-600: #16202B;
  --border-dark: rgba(255, 255, 255, 0.09);
  --border-light: rgba(11, 18, 16, 0.08);

  /* Type */
  --font-head: 'Montserrat', -apple-system, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  --font-body: 'Montserrat', -apple-system, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  --font-mono: 'JetBrains Mono', 'SF Mono', 'Consolas', 'Courier New', monospace;

  /* Scale */
  --container: 1180px;
  --radius-sm: 10px;
  --radius-md: 18px;
  --radius-lg: 28px;
  --shadow-soft: 0 20px 60px -20px rgba(8, 20, 16, 0.35);
  --shadow-card: 0 10px 30px -12px rgba(8, 20, 16, 0.25);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body, h1, h2, h3, h4, p, figure, blockquote, ul, ol, dl, dd { margin: 0; }
ul, ol { padding: 0; list-style: none; }
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; }
input, textarea, select { font: inherit; }

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--bg-light);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

section { position: relative; }

h1, h2, h3, h4 {
  font-family: var(--font-head);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.01em;
}

h1 { font-size: clamp(2.4rem, 5vw, 4.2rem); }
h2 { font-size: clamp(1.9rem, 3.4vw, 2.8rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.5rem); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--green);
  font-weight: 600;
  margin-bottom: 14px;
}
.eyebrow::before {
  content: '';
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 4px rgba(22, 177, 120, 0.18);
}

.lede {
  font-size: clamp(1.02rem, 1.4vw, 1.18rem);
  color: var(--grey);
  max-width: 620px;
}

.section-head {
  max-width: 680px;
  margin-bottom: 52px;
}
.section-head.center { margin-inline: auto; text-align: center; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 28px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.95rem;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, border-color .25s ease;
  white-space: nowrap;
}
.btn-primary {
  background: linear-gradient(135deg, var(--green) 0%, var(--green-dark) 100%);
  color: var(--white);
  box-shadow: 0 12px 30px -8px rgba(22, 177, 120, 0.55);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 16px 36px -8px rgba(22, 177, 120, 0.65); }
.btn-ghost {
  background: rgba(255,255,255,0.06);
  color: var(--white);
  border: 1px solid var(--border-dark);
  backdrop-filter: blur(6px);
}
.btn-ghost:hover { background: rgba(255,255,255,0.12); transform: translateY(-2px); }
.btn-outline-dark {
  background: transparent;
  color: var(--ink);
  border: 1.5px solid var(--border-light);
}
.btn-outline-dark:hover { border-color: var(--green); color: var(--green-dark); }
.btn-sm { padding: 11px 20px; font-size: 0.85rem; }
.btn-block { width: 100%; }
.btn svg { width: 16px; height: 16px; flex-shrink: 0; }

/* ---------- Nav ---------- */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 22px 0;
  transition: padding 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.site-header.is-scrolled {
  padding: 12px 0;
  background: rgba(8, 11, 13, 0.72);
  backdrop-filter: blur(14px) saturate(140%);
  box-shadow: 0 8px 30px -12px rgba(0,0,0,0.4);
  border-bottom: 1px solid var(--border-dark);
}
.brand { display: flex; align-items: center; gap: 10px; }
.brand img { height: 34px; width: auto; }
.brand-text {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1rem;
  color: var(--white);
  letter-spacing: -0.01em;
}
.brand-text span { color: var(--green-light); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
}
.nav-links a {
  padding: 10px 16px;
  border-radius: 999px;
  font-size: 0.92rem;
  font-weight: 600;
  color: rgba(255,255,255,0.82);
  transition: background 0.2s ease, color 0.2s ease;
}
.nav-links a:hover { background: rgba(255,255,255,0.08); color: var(--white); }
.nav-links a.is-active { background: rgba(22,177,120,0.16); color: var(--green-light); }

.nav-cta { display: flex; align-items: center; gap: 14px; }
.nav-toggle {
  display: none;
  width: 42px; height: 42px;
  border-radius: 10px;
  background: rgba(255,255,255,0.08);
  align-items: center; justify-content: center;
  flex-direction: column; gap: 4px;
}
.nav-toggle span { width: 18px; height: 2px; background: var(--white); border-radius: 2px; }

.mobile-nav {
  position: fixed;
  inset: 0;
  z-index: 99;
  background: var(--dark-900);
  display: flex;
  flex-direction: column;
  padding: 100px 32px 40px;
  gap: 8px;
  transform: translateY(-100%);
  transition: transform 0.35s ease;
}
.mobile-nav.is-open { transform: translateY(0); }
.mobile-nav a {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--white);
  padding: 14px 0;
  border-bottom: 1px solid var(--border-dark);
  font-family: var(--font-head);
}
.mobile-nav .btn { margin-top: 24px; }

/* ---------- Dark hero / sections ---------- */
.dark-surface {
  background: radial-gradient(circle at 15% 0%, #0f2a1f 0%, var(--dark-800) 55%), var(--dark-800);
  color: var(--white);
}
.dark-surface .grey-text { color: rgba(255,255,255,0.62); }

.dot-grid {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255,255,255,0.08) 1px, transparent 1.5px);
  background-size: 26px 26px;
  mask-image: radial-gradient(circle at 50% 0%, black, transparent 75%);
  pointer-events: none;
}

.blob-field {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
}
.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.55;
}
.blob-1 { width: 480px; height: 480px; background: var(--green); top: -140px; left: -100px; animation: float-a 18s ease-in-out infinite; }
.blob-2 { width: 380px; height: 380px; background: var(--violet); top: 120px; right: -120px; animation: float-b 22s ease-in-out infinite; }
.blob-3 { width: 320px; height: 320px; background: var(--green-light); bottom: -160px; left: 30%; animation: float-c 20s ease-in-out infinite; opacity: 0.35; }

/* ---------- Hero ---------- */
.hero { padding: 178px 0 130px; position: relative; z-index: 1; }
.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 56px;
  align-items: center;
}
.hero h1 { color: var(--white); margin-bottom: 22px; }
.hero h1 em { font-style: normal; color: var(--green-light); }
.hero .lede { color: rgba(255,255,255,0.68); margin-bottom: 34px; }
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 46px; }
.hero-meta { display: flex; gap: 30px; flex-wrap: wrap; }
.hero-meta div { display: flex; flex-direction: column; gap: 2px; }
.hero-meta strong { font-family: var(--font-mono); color: var(--white); font-size: 1.3rem; }
.hero-meta span { font-size: 0.8rem; color: rgba(255,255,255,0.55); }

.hero-art { position: relative; }
.hero-card {
  position: relative;
  background: linear-gradient(160deg, rgba(255,255,255,0.08), rgba(255,255,255,0.02));
  border: 1px solid var(--border-dark);
  border-radius: var(--radius-lg);
  padding: 28px;
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow-soft);
}
.hero-card img, .hero-card svg { border-radius: var(--radius-md); width: 100%; }
.floating-chip {
  position: absolute;
  background: var(--white);
  color: var(--ink);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 20px 40px -10px rgba(0,0,0,0.45);
  font-size: 0.82rem;
  font-weight: 700;
  animation: bob 5s ease-in-out infinite;
}
.floating-chip.chip-1 { top: -22px; right: -18px; }
.floating-chip.chip-2 { bottom: -20px; left: -22px; animation-delay: 1s; }
.floating-chip .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--green); }

/* ---------- Wave divider ---------- */
.wave-divider { display: block; width: 100%; height: 90px; }
.wave-divider path { fill: var(--bg-light); }
.wave-divider.to-dark path { fill: var(--dark-800); }
.wave-divider.to-light path { fill: var(--bg-light); }

/* ---------- Marquee ---------- */
.marquee-section { padding: 52px 0; background: var(--dark-700); overflow: hidden; }
.marquee-label {
  text-align: center;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  margin-bottom: 26px;
}
.marquee-track {
  display: flex;
  width: max-content;
  gap: 64px;
  animation: marquee 26s linear infinite;
}
.marquee-track .brand-name {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.3rem;
  color: rgba(255,255,255,0.4);
  display: flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
}
.marquee-track .brand-name.is-teya { color: var(--violet-light); }
.marquee-track .brand-name.is-teya::after {
  content: 'Official Partner';
  font-family: var(--font-body);
  font-size: 0.62rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  background: rgba(108,75,255,0.18);
  color: var(--violet-light);
  padding: 4px 9px;
  border-radius: 999px;
}
.marquee-track .brand-name.is-hds { color: var(--green-light); }
.marquee-track .brand-name.is-hds::after {
  content: 'EPOS Platform Partner';
  font-family: var(--font-body);
  font-size: 0.62rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  background: rgba(22,177,120,0.18);
  color: var(--green-light);
  padding: 4px 9px;
  border-radius: 999px;
}

/* ---------- Bento services grid ---------- */
.bento {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.bento-card {
  position: relative;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 32px;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-card);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  overflow: hidden;
}
.bento-card::before {
  content: '';
  position: absolute; inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(135deg, rgba(22,177,120,0.5), transparent 60%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor; mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.bento-card:hover { transform: translateY(-6px) rotate(-0.3deg); box-shadow: 0 24px 50px -16px rgba(11,18,16,0.22); }
.bento-card:hover::before { opacity: 1; }
.bento-card.span-2 { grid-column: span 2; }
.card-icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(22,177,120,0.14), rgba(22,177,120,0.04));
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
}
.card-icon svg { width: 26px; height: 26px; stroke: var(--green-dark); }
.bento-card h3 { margin-bottom: 10px; }
.bento-card p { color: var(--grey); font-size: 0.96rem; }
.card-link {
  display: inline-flex; align-items: center; gap: 6px;
  margin-top: 18px; font-weight: 700; font-size: 0.88rem; color: var(--green-dark);
}
.card-link svg { width: 14px; height: 14px; transition: transform 0.2s ease; }
.bento-card:hover .card-link svg { transform: translateX(3px); }

/* ---------- Stats ---------- */
.stats-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  padding: 46px 0;
}
.stat { text-align: center; }
.stat .num {
  font-family: var(--font-mono);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 700;
  color: var(--green);
}
.stat .label { font-size: 0.85rem; color: var(--grey); margin-top: 4px; }
.dark-surface .stat .label { color: rgba(255,255,255,0.55); }

/* ---------- Teya spotlight ---------- */
.teya-spotlight {
  background: linear-gradient(135deg, #150F33 0%, #241a52 100%);
  border-radius: var(--radius-lg);
  padding: 56px;
  color: var(--white);
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.teya-spotlight::after {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(circle at 90% 10%, rgba(155,130,255,0.35), transparent 55%);
  z-index: -1;
}
.teya-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.teya-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  padding: 8px 16px;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  margin-bottom: 20px;
}
.teya-badge svg { width: 14px; height: 14px; }
.teya-perks { display: flex; flex-direction: column; gap: 16px; margin-top: 10px; }
.teya-perk { display: flex; gap: 12px; align-items: flex-start; }
.teya-perk .tick {
  flex-shrink: 0; width: 24px; height: 24px; border-radius: 50%;
  background: rgba(108,75,255,0.25); border: 1px solid var(--violet-light);
  display: flex; align-items: center; justify-content: center;
}
.teya-perk .tick svg { width: 12px; height: 12px; stroke: var(--violet-light); }
.teya-perk strong { display: block; font-size: 0.98rem; }
.teya-perk span { font-size: 0.86rem; color: rgba(255,255,255,0.62); }
.teya-visual {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: var(--radius-md);
  padding: 24px;
}

/* ---------- FAQ ---------- */
.faq-list { max-width: 780px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  overflow: hidden;
}
.faq-q {
  width: 100%;
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 24px;
  font-weight: 700;
  text-align: left;
  gap: 16px;
}
.faq-q .plus { flex-shrink: 0; width: 22px; height: 22px; position: relative; }
.faq-q .plus::before, .faq-q .plus::after {
  content: ''; position: absolute; background: var(--green-dark);
  top: 50%; left: 50%; transform: translate(-50%, -50%);
}
.faq-q .plus::before { width: 14px; height: 2px; }
.faq-q .plus::after { width: 2px; height: 14px; transition: transform 0.25s ease; }
.faq-item.is-open .faq-q .plus::after { transform: translate(-50%, -50%) rotate(90deg) scale(0); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.3s ease; }
.faq-a p { padding: 0 24px 20px; color: var(--grey); font-size: 0.94rem; }

/* ---------- CTA band ---------- */
.cta-band {
  border-radius: var(--radius-lg);
  padding: 60px;
  text-align: center;
  background: linear-gradient(135deg, var(--green-dark), #052e1f);
  color: var(--white);
}
.cta-band h2 { margin-bottom: 16px; }
.cta-band .lede { color: rgba(255,255,255,0.72); margin: 0 auto 30px; }
.cta-band .hero-cta { justify-content: center; margin-bottom: 0; }

/* ---------- Footer ---------- */
.site-footer { background: var(--dark-900); color: rgba(255,255,255,0.6); padding: 70px 0 30px; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--border-dark);
}
.footer-brand .brand-text { color: var(--white); }
.footer-brand p { margin-top: 16px; max-width: 280px; font-size: 0.9rem; }
.footer-col h4 { font-size: 0.82rem; text-transform: uppercase; letter-spacing: 0.08em; color: rgba(255,255,255,0.85); margin-bottom: 16px; font-family: var(--font-mono); font-weight: 700; }
.footer-col a, .footer-col span { display: block; font-size: 0.9rem; margin-bottom: 10px; color: rgba(255,255,255,0.6); }
.footer-col a:hover { color: var(--green-light); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; padding-top: 26px; font-size: 0.82rem; flex-wrap: wrap; gap: 12px; }
.footer-socials { display: flex; gap: 10px; }
.footer-socials a { width: 36px; height: 36px; border-radius: 50%; background: rgba(255,255,255,0.06); display: flex; align-items: center; justify-content: center; }
.footer-socials svg { width: 16px; height: 16px; }

/* ---------- Page hero (non-home pages) ---------- */
.page-hero { padding: 168px 0 90px; position: relative; z-index: 1; }
.breadcrumb { display: flex; gap: 8px; align-items: center; font-size: 0.82rem; color: rgba(255,255,255,0.5); margin-bottom: 20px; font-family: var(--font-mono); }
.breadcrumb a:hover { color: var(--white); }
.page-hero h1 { color: var(--white); max-width: 760px; }
.page-hero .lede { color: rgba(255,255,255,0.65); margin-top: 18px; }
.page-hero .hero-cta { margin-top: 30px; }

/* ---------- Generic content sections ---------- */
.section { padding: 96px 0; }
.section.tight { padding: 70px 0; }
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.pill-list { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 22px; }
.pill { display: inline-flex; align-items: center; gap: 8px; padding: 8px 16px; border-radius: 999px; background: rgba(22,177,120,0.08); color: var(--green-dark); font-size: 0.85rem; font-weight: 700; border: 1px solid rgba(22,177,120,0.18); }

.feature-row { display: flex; gap: 20px; padding: 26px 0; border-bottom: 1px solid var(--border-light); }
.feature-row:last-child { border-bottom: none; }
.feature-row .num { font-family: var(--font-mono); color: var(--green); font-weight: 700; font-size: 1.1rem; flex-shrink: 0; width: 40px; }
.feature-row h4 { margin-bottom: 6px; }
.feature-row p { color: var(--grey); font-size: 0.94rem; }

.module-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.module-chip {
  background: var(--white); border: 1px solid var(--border-light); border-radius: var(--radius-sm);
  padding: 20px; text-align: center; font-weight: 700; font-size: 0.88rem;
  transition: border-color 0.25s ease, transform 0.25s ease;
}
.module-chip:hover { border-color: var(--green); transform: translateY(-3px); }

.pricing-card {
  background: var(--dark-800); color: var(--white); border-radius: var(--radius-lg);
  padding: 44px; text-align: center; position: relative; overflow: hidden;
}
.pricing-card .price { font-family: var(--font-mono); font-size: 3.2rem; font-weight: 700; color: var(--green-light); margin: 14px 0; }
.pricing-card .price span { font-size: 1rem; color: rgba(255,255,255,0.55); font-family: var(--font-body); }

.screenshot-frame {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-card);
}
.screenshot-frame img { width: 100%; height: auto; display: block; }

.timeline { display: flex; flex-direction: column; }
.timeline-item { display: grid; grid-template-columns: 90px 1fr; gap: 24px; padding-bottom: 40px; position: relative; }
.timeline-item::before { content: ''; position: absolute; left: 44px; top: 8px; bottom: -10px; width: 1px; background: var(--border-light); }
.timeline-item:last-child::before { display: none; }
.timeline-item .year { font-family: var(--font-mono); font-weight: 700; color: var(--green-dark); }
.timeline-item .dot-marker { position: absolute; left: 40px; top: 4px; width: 9px; height: 9px; border-radius: 50%; background: var(--green); box-shadow: 0 0 0 4px rgba(22,177,120,0.18); }

.value-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.value-card { padding: 28px; border-radius: var(--radius-md); background: var(--white); border: 1px solid var(--border-light); }

/* ---------- Team ---------- */
.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; align-items: start; }
.team-card { padding: 36px; border-radius: var(--radius-md); background: var(--white); border: 1px solid var(--border-light); box-shadow: var(--shadow-card); }
.avatar-ring {
  width: 68px; height: 68px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--green), var(--green-dark));
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
  box-shadow: 0 10px 24px -8px rgba(22,177,120,0.45);
}
.avatar-ring span { font-family: var(--font-head); font-weight: 800; font-size: 1.5rem; color: var(--white); }
.team-card h3 { margin-bottom: 4px; }
.team-card .role { font-family: var(--font-mono); font-size: 0.76rem; letter-spacing: 0.06em; text-transform: uppercase; color: var(--green-dark); font-weight: 700; margin-bottom: 16px; }
.team-card .bio { color: var(--grey); font-size: 0.94rem; margin-bottom: 12px; }
.team-card .bio:last-child { margin-bottom: 0; }

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1.15fr; gap: 48px; align-items: start; }
.contact-card { background: var(--white); border: 1px solid var(--border-light); border-radius: var(--radius-md); padding: 20px 24px; display: flex; gap: 16px; align-items: flex-start; margin-bottom: 14px; }
.contact-card .card-icon { margin-bottom: 0; }
.contact-card h4 { margin-bottom: 4px; }
.contact-card p, .contact-card a { color: var(--grey); font-size: 0.92rem; }

.form-card { background: var(--white); border-radius: var(--radius-lg); padding: 40px; box-shadow: var(--shadow-card); border: 1px solid var(--border-light); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field { margin-bottom: 18px; }
.field label { display: block; font-size: 0.84rem; font-weight: 700; margin-bottom: 7px; }
.field input, .field select, .field textarea {
  width: 100%; padding: 13px 15px; border-radius: var(--radius-sm);
  border: 1.5px solid var(--border-light); background: var(--bg-light);
  transition: border-color 0.2s ease, background 0.2s ease;
}
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--green); background: var(--white); outline: none; }
.field textarea { resize: vertical; min-height: 120px; }
.hp-field { position: absolute; left: -9999px; opacity: 0; }
.form-note { font-size: 0.8rem; color: var(--grey-light); margin-top: 10px; }
.form-status { margin-top: 16px; font-size: 0.9rem; font-weight: 700; display: none; padding: 12px 16px; border-radius: var(--radius-sm); }
.form-status.is-success { display: block; background: rgba(22,177,120,0.1); color: var(--green-dark); }
.form-status.is-error { display: block; background: rgba(220,38,38,0.08); color: #B91C1C; }

/* ---------- 404 ---------- */
.error-page { min-height: 100vh; display: flex; align-items: center; justify-content: center; text-align: center; }
.error-page .code { font-family: var(--font-mono); font-size: 6rem; font-weight: 800; color: var(--green); line-height: 1; }

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .hero-grid, .two-col, .contact-grid, .teya-grid { grid-template-columns: 1fr; }
  .hero-art { order: -1; }
  .bento { grid-template-columns: repeat(2, 1fr); }
  .bento-card.span-2 { grid-column: span 2; }
  .stats-bar { grid-template-columns: repeat(2, 1fr); gap: 30px; }
  .module-grid { grid-template-columns: repeat(2, 1fr); }
  .value-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 720px) {
  .nav-links { display: none; }
  .nav-toggle { display: flex; }
  .nav-cta .btn:not(.nav-toggle) { display: none; }
  .hero { padding: 140px 0 90px; }
  .bento { grid-template-columns: 1fr; }
  .bento-card.span-2 { grid-column: span 1; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .module-grid { grid-template-columns: 1fr 1fr; }
  .cta-band { padding: 40px 24px; }
  .teya-spotlight { padding: 32px 22px; }
}
