/* ── RESET & ROOT ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --blue:       #3d6fa8;
  --blue-dark:  #2d5280;
  --blue-light: #5a8fc8;
  --blue-tint:  #eef4fb;
  --blue-dim:   #c5d9ee;
  --text:       #1a2332;
  --text-mid:   #3d5068;
  --muted:      #6b82a0;
  --border:     #d4e2f0;
  --bg:         #ffffff;
  --bg-alt:     #f5f9fe;
  --bg-warm:    #f7f5f0;
  --bg-beige:   #f0ece4;
  --bg-dark:    #1a2332;
  --max-w:      1140px;
  --pad-x:      2.5rem;
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 400;
  line-height: 1.6;
  overflow-x: hidden;
  font-size: 16px;
}

/* ── UTILITY ── */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--pad-x);
}

/* ── NAV ── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow 0.3s;
}
nav.scrolled { box-shadow: 0 2px 20px rgba(61,111,168,0.08); }

.nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--pad-x);
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo img { height: 28px; display: block; }

nav ul { list-style: none; display: flex; gap: 2rem; align-items: center; }
nav ul a { text-decoration: none; color: var(--muted); font-size: 0.875rem; font-weight: 500; transition: color 0.2s; }
nav ul a:hover { color: var(--blue); }

.nav-cta {
  background: var(--blue) !important;
  color: #fff !important;
  padding: 0.45rem 1.1rem !important;
  border-radius: 6px;
  font-weight: 600 !important;
  transition: background 0.2s !important;
  white-space: nowrap;
}
.nav-cta:hover { background: var(--blue-dark) !important; }

.nav-secondary {
  color: var(--blue) !important;
  font-weight: 600 !important;
  border: 1px solid var(--blue-dim) !important;
  padding: 0.45rem 1.1rem !important;
  border-radius: 6px;
  transition: background 0.2s !important;
  white-space: nowrap;
  text-decoration: none;
}
.nav-secondary:hover { background: var(--blue-tint) !important; }

/* ── HERO ── */
.hero {
  background: var(--bg-warm);
  padding-top: 64px;
  padding-bottom: 4.5rem;
  position: relative;
  overflow: hidden;
}

.hero-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 4.5rem var(--pad-x) 0;
  width: 100%;
}

.hero-content {
  max-width: 700px;
}

.hero-lead {
  font-size: 1.1rem;
  color: var(--text-mid);
  max-width: 560px;
  margin-bottom: 2rem;
  line-height: 1.75;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 1.1rem;
  background: var(--blue-tint);
  border: 1px solid var(--blue-dim);
  padding: 0.25rem 0.75rem;
  border-radius: 100px;
}

.hero h1 {
  font-weight: 800;
  font-size: clamp(2.8rem, 5.5vw, 4.5rem);
  line-height: 1.08;
  letter-spacing: -0.03em;
  color: var(--text);
  margin-bottom: 1.2rem;
}
.hero h1 em { font-style: normal; color: var(--blue); }


.hero-actions { display: flex; gap: 0.875rem; align-items: center; flex-wrap: wrap; }

/* ── BUTTONS ── */
.btn-primary {
  background: var(--blue);
  color: #fff;
  padding: 0.75rem 1.75rem;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  display: inline-block;
  box-shadow: 0 4px 14px rgba(61,111,168,0.3);
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  white-space: nowrap;
}
.btn-primary:hover { background: var(--blue-dark); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(61,111,168,0.38); }

.btn-ghost {
  color: var(--blue);
  font-size: 0.875rem;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  transition: gap 0.2s;
  white-space: nowrap;
}
.btn-ghost:hover { gap: 0.55rem; }
.btn-ghost::after { content: '→'; }

/* ── MOCKUP (poistettu käytöstä) ── */

.mockup {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 16px 48px rgba(61,111,168,0.13), 0 2px 6px rgba(0,0,0,0.04);
  animation: float 6s ease-in-out infinite;
}
@keyframes float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-7px); } }

.mockup-bar {
  background: var(--bg-alt);
  padding: 0.55rem 0.9rem;
  display: flex; align-items: center; gap: 0.4rem;
  border-bottom: 1px solid var(--border);
}
.mockup-dot { width: 8px; height: 8px; border-radius: 50%; }
.mockup-dot:nth-child(1) { background: #ff5f57; }
.mockup-dot:nth-child(2) { background: #febc2e; }
.mockup-dot:nth-child(3) { background: #28c840; }
.mockup-url { margin-left: 0.5rem; background: var(--blue-dim); border-radius: 3px; padding: 0.15rem 0.6rem; font-size: 0.65rem; color: var(--text-mid); flex: 1; max-width: 180px; }

.mockup-content { padding: 0.9rem 1rem; }
.cal-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 0.65rem; }
.cal-title { font-weight: 700; font-size: 0.75rem; color: var(--text); }
.cal-nav { display: flex; gap: 0.25rem; }
.cal-btn { width: 20px; height: 20px; background: var(--blue-tint); border-radius: 3px; display: flex; align-items: center; justify-content: center; font-size: 0.6rem; color: var(--blue); }

.cal-grid { display: grid; grid-template-columns: 46px repeat(5,1fr); gap: 2px; font-size: 0.57rem; }
.cal-day-header { text-align: center; color: var(--muted); padding: 0.25rem 0; font-weight: 700; }
.cal-time { color: var(--muted); text-align: right; padding-right: 0.4rem; padding-top: 0.15rem; font-size: 0.55rem; }
.cal-cell { height: 23px; border-radius: 2px; background: var(--bg-alt); }
.cal-event { height: 23px; border-radius: 2px; padding: 0 0.35rem; font-size: 0.54rem; font-weight: 600; display: flex; align-items: center; white-space: nowrap; overflow: hidden; }
.ev-blue  { background: rgba(61,111,168,0.11); color: #2d5280; border-left: 2px solid var(--blue); }
.ev-teal  { background: rgba(20,160,150,0.11); color: #0d7a72; border-left: 2px solid #14a096; }
.ev-amber { background: rgba(205,140,20,0.12); color: #8a5e00; border-left: 2px solid #cd8c14; }
.ev-rose  { background: rgba(185,55,90,0.1); color: #8c2040; border-left: 2px solid #b9375a; }

/* ── SECTIONS ── */
.section {
  padding: 5rem 0;
  background: var(--bg);
}
.section-alt {
  padding: 5rem 0;
  background: var(--bg-warm);
  border-top: 1px solid #e8e4dc;
  border-bottom: 1px solid #e8e4dc;
}
.section-blue {
  padding: 5rem 0;
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.section-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--pad-x);
}

.section-label { font-size: 0.68rem; letter-spacing: 0.11em; text-transform: uppercase; color: var(--blue); margin-bottom: 0.6rem; font-weight: 700; }

.section-title {
  font-weight: 800;
  font-size: clamp(1.6rem, 2.8vw, 2.2rem);
  line-height: 1.15;
  letter-spacing: -0.025em;
  color: var(--text);
  max-width: 540px;
  margin-bottom: 0.8rem;
}

.section-lead { color: var(--text-mid); max-width: 520px; margin-bottom: 2.5rem; font-size: 0.97rem; line-height: 1.78; }

/* ── WHY GRID ── */
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.stakeholder-list { display: flex; flex-wrap: wrap; gap: 0.4rem; margin: 1rem 0 1.25rem; }
.stakeholder-tag {
  background: var(--blue-tint);
  border: 1px solid var(--blue-dim);
  color: var(--blue-dark);
  font-size: 0.74rem;
  font-weight: 600;
  padding: 0.25rem 0.7rem;
  border-radius: 100px;
}

.why-text p { color: var(--text-mid); line-height: 1.78; margin-bottom: 0.9rem; font-size: 0.95rem; }

.orchestra-quote {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
  border-left: 3px solid var(--blue);
  padding: 0.75rem 1.1rem;
  margin-top: 1.5rem;
  background: var(--blue-tint);
  border-radius: 0 6px 6px 0;
  line-height: 1.5;
}

/* ── STATS ── */
.why-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  align-self: start;
  margin-top: 2.5rem;
}
.stat-card { background: #fff; padding: 1.5rem; }
.stat-card:hover { background: var(--blue-tint); }
.stat-num { font-size: 1.9rem; font-weight: 800; color: var(--blue); letter-spacing: -0.03em; line-height: 1; margin-bottom: 0.35rem; }
.stat-label { font-size: 0.78rem; color: var(--muted); line-height: 1.45; }

/* ── FEATURES GRID ── */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 1.5rem;
}
.feature-card { background: #fff; padding: 1.75rem; transition: background 0.2s; }
.feature-card:hover { background: var(--blue-tint); }

.feature-title { font-weight: 700; font-size: 0.92rem; color: var(--text); margin-bottom: 0.45rem; }
.feature-desc { font-size: 0.835rem; color: var(--muted); line-height: 1.65; }

/* ── INTEGRATION STRIP ── */
.integration-strip {
  display: flex; align-items: center; gap: 1.5rem;
  background: var(--blue-tint);
  border: 1px solid var(--blue-dim);
  border-radius: 8px;
  padding: 1rem 1.5rem;
  margin-top: 1.5rem;
}
.integration-label { font-size: 0.7rem; font-weight: 700; letter-spacing: 0.09em; text-transform: uppercase; color: var(--blue); white-space: nowrap; }
.integration-items { display: flex; gap: 0.75rem; flex-wrap: wrap; }
.integration-item { font-weight: 700; font-size: 0.85rem; color: var(--text-mid); background: #fff; border: 1px solid var(--blue-dim); padding: 0.3rem 0.85rem; border-radius: 5px; }

/* ── HORIZON ── */
.horizon-section {
  padding: 5rem 0;
  background: var(--bg-dark);
  position: relative;
  overflow: hidden;
}
.horizon-section::before {
  content: '';
  position: absolute; top: -200px; right: -200px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(61,111,168,0.25) 0%, transparent 70%);
  pointer-events: none;
}

.horizon-section .section-label { color: var(--blue-light); }
.horizon-section .section-title { color: #fff; max-width: 580px; }
.horizon-section .section-lead { color: rgba(255,255,255,0.55); max-width: 520px; }

.horizon-pillars { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.25rem; margin-top: 0; }
.horizon-pillar { background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1); border-radius: 10px; padding: 1.6rem; }
.horizon-pillar-num { font-size: 0.67rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--blue-light); margin-bottom: 0.6rem; }
.horizon-pillar-title { font-weight: 700; font-size: 0.97rem; color: #fff; margin-bottom: 0.45rem; }
.horizon-pillar-desc { font-size: 0.825rem; color: rgba(255,255,255,0.5); line-height: 1.65; }

/* ── WHO WE ARE ── */
.who-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: start; }
.who-text p { color: rgba(255,255,255,0.7); line-height: 1.78; margin-bottom: 0.9rem; font-size: 0.95rem; }
.who-text a { color: var(--blue-light); font-weight: 600; text-decoration: none; }
.who-text a:hover { text-decoration: underline; }

.who-cards { display: flex; flex-direction: column; gap: 1rem; margin-top: 2.5rem; }
.who-card { background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.12); border-radius: 10px; padding: 1.5rem; }
.who-card-title { font-weight: 800; font-size: 0.95rem; color: #fff; margin-bottom: 0.45rem; }
.who-card-desc { font-size: 0.845rem; color: rgba(255,255,255,0.6); line-height: 1.65; margin-bottom: 0.5rem; }
.who-card-link { font-size: 0.845rem; color: var(--blue-light); font-weight: 600; text-decoration: none; }
.who-card-link:hover { text-decoration: underline; }

/* ── CTA ── */
.cta-section {
  padding: 5.5rem 0;
  background: linear-gradient(155deg, var(--blue-tint) 0%, #fff 60%);
  text-align: center;
}
.cta-inner { max-width: 560px; margin: 0 auto; padding: 0 var(--pad-x); }
.cta-section .section-title { max-width: 100%; margin: 0 auto 0.8rem; }
.cta-section .section-lead { max-width: 100%; margin: 0 auto 2rem; text-align: center; }
.cta-actions { display: flex; gap: 0.875rem; justify-content: center; align-items: center; flex-wrap: wrap; }
.cta-note { margin-top: 1rem; font-size: 0.78rem; color: var(--muted); }

/* ── FOOTER ── */
footer {
  border-top: 1px solid var(--border);
  background: #fff;
}
.footer-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 1.5rem var(--pad-x);
  display: flex; justify-content: space-between; align-items: center;
}
.footer-logo img { height: 22px; }
.footer-links { display: flex; gap: 1.75rem; list-style: none; }
.footer-links a { text-decoration: none; color: var(--muted); font-size: 0.78rem; font-weight: 500; transition: color 0.2s; }
.footer-links a:hover { color: var(--blue); }
.footer-copy { font-size: 0.74rem; color: var(--muted); }

/* ── ANIMATIONS ── */
.fade-up { opacity: 0; transform: translateY(18px); transition: opacity 0.6s ease, transform 0.6s ease; }
.fade-up.visible { opacity: 1; transform: translateY(0); }
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }

/* ── RESPONSIVE ── */
@media (max-width: 960px) {
  :root { --pad-x: 1.5rem; }
  .hero-inner { padding: 2.5rem var(--pad-x) 0; }
  .why-grid, .who-grid { grid-template-columns: 1fr; gap: 2rem; }
  .why-stats, .who-cards { margin-top: 0; }
  .features-grid { grid-template-columns: 1fr 1fr; }
  .horizon-pillars { grid-template-columns: 1fr; gap: 1rem; }
  .section, .section-alt, .horizon-section, .cta-section { padding: 3.5rem 0; }
}

@media (max-width: 600px) {
  .features-grid { grid-template-columns: 1fr; }
  nav ul { gap: 0.75rem; }
  nav ul li:nth-child(1), nav ul li:nth-child(2), nav ul li:nth-child(3) { display: none; }
  .footer-inner { flex-direction: column; gap: 1rem; text-align: center; }
  .why-stats { grid-template-columns: 1fr 1fr; }
}

/* ── KAKSI PILARIA ── */
.pillars-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}
.pillar-card {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 2rem;
  position: relative;
  transition: border-color 0.2s, background 0.2s;
}
.pillar-card:hover { border-color: var(--blue-dim); background: var(--blue-tint); }
.pillar-num {
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  color: var(--blue);
  margin-bottom: 0.6rem;
}
.pillar-title { font-weight: 800; font-size: 1.15rem; color: var(--text); margin-bottom: 0.7rem; }
.pillar-desc { font-size: 0.875rem; color: var(--text-mid); line-height: 1.7; margin-bottom: 1.1rem; }
.pillar-link { font-size: 0.825rem; font-weight: 700; color: var(--blue); text-decoration: none; display: inline-flex; align-items: center; gap: 0.3rem; transition: gap 0.2s; }
.pillar-link:hover { gap: 0.5rem; }

.stakeholder-block { margin-top: 2rem; padding-top: 2rem; border-top: 1px solid var(--border); }
.stakeholder-label { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--muted); margin-bottom: 0.75rem; }

/* ── PILLAR HEADER ── */
.pillar-header {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  margin-bottom: 1.25rem;
}
.pillar-header-num {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--blue-dim);
  line-height: 1;
  letter-spacing: -0.03em;
  flex-shrink: 0;
}

/* ── DIGITAALINEN TOIMISTO ── */
.office-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-bottom: 2rem;
}
.office-card {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1.75rem;
  transition: background 0.2s;
}
.office-card:hover { background: var(--blue-tint); }
.office-icon { font-size: 1.5rem; margin-bottom: 0.75rem; display: block; }
.office-title { font-weight: 700; font-size: 0.97rem; color: var(--text); margin-bottom: 0.5rem; }
.office-desc { font-size: 0.845rem; color: var(--muted); line-height: 1.65; margin-bottom: 0.75rem; }

.badge-coming {
  display: inline-block;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  background: var(--blue-tint);
  color: var(--blue);
  border: 1px solid var(--blue-dim);
  padding: 0.12rem 0.5rem;
  border-radius: 4px;
}

.office-quote {
  background: var(--blue-tint);
  border-left: 3px solid var(--blue);
  border-radius: 0 8px 8px 0;
  padding: 1.25rem 1.5rem;
}
.office-quote p { font-size: 0.97rem; color: var(--text-mid); line-height: 1.75; font-style: italic; }

/* ── WHO STATS MINI ── */
.who-stats-mini {
  display: flex;
  gap: 0;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 10px;
  overflow: hidden;
  margin-top: 1rem;
}
.stat-mini { background: transparent; flex: 1; padding: 1rem; text-align: center; }
.stat-mini-num { display: block; font-size: 1.4rem; font-weight: 800; color: var(--blue-light); letter-spacing: -0.02em; line-height: 1; margin-bottom: 0.25rem; }
.stat-mini-label { display: block; font-size: 0.7rem; color: rgba(255,255,255,0.5); line-height: 1.3; }

@media (max-width: 960px) {
  .pillars-grid { grid-template-columns: 1fr; }
  .office-grid { grid-template-columns: 1fr; }
  .pillar-header { gap: 0.75rem; }
  .pillar-header-num { font-size: 1.75rem; }
}

/* ── YDINLUPAUS ── */
.core-promise {
  max-width: 680px;
  margin-bottom: 3rem;
}
.core-promise p {
  color: var(--text-mid);
  line-height: 1.8;
  font-size: 0.98rem;
  margin-bottom: 1rem;
}
.core-promise p:last-child { margin-bottom: 0; }

/* ── KOLME TOIMINTOA ── */
.features-trio {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-bottom: 2.5rem;
}

.trio-card {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1.75rem;
  transition: background 0.2s, border-color 0.2s;
  display: flex;
  flex-direction: column;
}
.trio-card:hover { background: var(--blue-tint); border-color: var(--blue-dim); }

.trio-card-locked {
  background: var(--bg-alt);
  border: 1px dashed var(--border);
  opacity: 0.65;
  position: relative;
}
.trio-card-locked:hover { background: var(--bg-alt); border-color: var(--border); }

.trio-icon { font-size: 1.4rem; margin-bottom: 0.75rem; }
.trio-lock { font-size: 1.2rem; margin-bottom: 0.75rem; filter: grayscale(1); }

.trio-title { font-weight: 700; font-size: 1rem; color: var(--text); margin-bottom: 0.6rem; }
.trio-title-locked { color: var(--muted); }

.trio-desc { font-size: 0.855rem; color: var(--text-mid); line-height: 1.65; margin-bottom: 1rem; flex: 1; }
.trio-desc-locked { color: var(--muted); }

.trio-link { font-size: 0.825rem; font-weight: 700; color: var(--blue); text-decoration: none; display: inline-flex; align-items: center; gap: 0.3rem; transition: gap 0.2s; margin-top: auto; }
.trio-link:hover { gap: 0.5rem; }

.trio-badge {
  display: inline-block;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  background: var(--border);
  color: var(--muted);
  padding: 0.2rem 0.6rem;
  border-radius: 4px;
  margin-top: auto;
}

@media (max-width: 960px) {
  .features-trio { grid-template-columns: 1fr; }
  .core-promise { max-width: 100%; }
}

/* ── SECTION-BLUE ── */
.section-blue {
  padding: 5rem 0;
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

/* ── CTA / YHTEYDENOTTO ── */
.cta-section {
  padding: 5.5rem 0;
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
}

.cta-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--pad-x);
}

.cta-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}

.cta-text .section-title { max-width: 100%; }
.cta-text .section-lead { max-width: 100%; margin-bottom: 1.5rem; }

.cta-phone {
  font-size: 0.95rem;
  color: var(--text-mid);
}
.cta-phone a {
  color: var(--blue);
  font-weight: 600;
  text-decoration: none;
}
.cta-phone a:hover { text-decoration: underline; }

/* ── CONTACT FORM ── */
.contact-form {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 2rem;
}

.form-group {
  margin-bottom: 1.25rem;
}

.form-group label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 0.4rem;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.7rem 0.9rem;
  border: 1px solid var(--border);
  border-radius: 6px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.88rem;
  color: var(--text);
  background: var(--bg);
  transition: border-color 0.2s;
  outline: none;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(61,111,168,0.08);
}

.form-group textarea { resize: vertical; }

.btn-full { width: 100%; text-align: center; }

.form-note {
  font-size: 0.72rem;
  color: var(--muted);
  margin-top: 0.75rem;
}

.form-success {
  background: var(--blue-tint);
  border: 1px solid var(--blue-dim);
  border-radius: 12px;
  padding: 2rem;
  text-align: center;
  color: var(--blue-dark);
  font-weight: 600;
}

@media (max-width: 960px) {
  .cta-grid { grid-template-columns: 1fr; gap: 2.5rem; }
}

/* ── HERO TITLE TWO-LINE ── */
.hero h1 {
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--text);
  margin-bottom: 1.2rem;
  display: flex;
  flex-direction: column;
}
.hero-title-product {
  font-size: clamp(3.2rem, 6vw, 5rem);
  color: var(--blue);
  display: block;
}
.hero-title-sub {
  font-size: clamp(2rem, 4vw, 3.2rem);
  color: var(--text);
  display: block;
}

/* ── FOOTER MINIMAL ── */
footer {
  background: var(--bg-dark);
  border-top: none;
}
.footer-bottom-bar {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 1.4rem var(--pad-x);
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: rgba(255,255,255,0.45);
  font-size: 0.78rem;
}
.footer-legal {
  display: flex;
  gap: 2rem;
}
.footer-legal a {
  color: rgba(255,255,255,0.45);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-legal a:hover { color: rgba(255,255,255,0.8); }

/* ── FORM CONSENT ── */
.form-consent { margin-bottom: 1.25rem; }
.consent-label {
  display: flex;
  gap: 0.6rem;
  align-items: flex-start;
  font-size: 0.8rem;
  color: var(--text-mid);
  font-weight: 400;
  cursor: pointer;
  line-height: 1.5;
}
.consent-label input { margin-top: 0.15rem; flex-shrink: 0; }
.consent-label a { color: var(--blue); }

.form-error {
  background: #fef2f2;
  border: 1px solid #fecaca;
  color: #dc2626;
  border-radius: 6px;
  padding: 0.6rem 0.9rem;
  font-size: 0.82rem;
  margin-bottom: 1rem;
}

@media (max-width: 960px) {
  .footer-bottom-bar { flex-direction: column; gap: 0.75rem; text-align: center; }
  .footer-legal { gap: 1.25rem; }
}

/* ── CONTACT CARD ── */
.contact-card {
  margin-top: 2rem;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1.25rem 1.5rem;
  display: inline-block;
  min-width: 280px;
}

.contact-card-role {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 1rem;
}

.contact-card-person {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.contact-card-photo {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center top;
  flex-shrink: 0;
}

.contact-card-info {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.contact-card-name {
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--text);
}

.contact-card-email,
.contact-card-phone {
  font-size: 0.82rem;
  color: var(--blue);
  text-decoration: none;
  transition: color 0.2s;
}
.contact-card-email:hover,
.contact-card-phone:hover { color: var(--blue-dark); text-decoration: underline; }

/* ── CONTACT CARD ── */
.contact-card {
  margin-top: 2rem;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1.25rem 1.5rem;
  display: inline-block;
  min-width: 280px;
}
.contact-card-role {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 1rem;
}
.contact-card-person {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.contact-card-photo {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center top;
  flex-shrink: 0;
}
.contact-card-info {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}
.contact-card-name {
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--text);
}
.contact-card-email,
.contact-card-phone {
  font-size: 0.82rem;
  color: var(--blue);
  text-decoration: none;
  transition: color 0.2s;
}
.contact-card-email:hover,
.contact-card-phone:hover { color: var(--blue-dark); text-decoration: underline; }

/* ── BUTTON DISABLED ── */
.btn-primary:disabled,
.btn-primary[disabled] {
  background: #ccc;
  color: #888;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}
