*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy:       #1e2a38;
  --teal:       #0d9488;
  --teal-2:     #0f766e;
  --teal-soft:  rgba(13,148,136,.08);
  --teal-ring:  rgba(13,148,136,.15);
  --white:      #ffffff;
  --bg:         #f8fafc;
  --text:       #0f172a;
  --muted:      #64748b;
  --muted-2:    #94a3b8;
  --border:     rgba(15,23,42,.09);
  --border-f:   rgba(15,23,42,.15);
  --shadow-sm:  0 1px 3px rgba(15,23,42,.06), 0 4px 12px rgba(15,23,42,.06);
  --shadow-md:  0 1px 2px rgba(15,23,42,.04), 0 8px 24px rgba(15,23,42,.08);
  --shadow-lg:  0 4px 6px rgba(15,23,42,.04), 0 16px 48px rgba(15,23,42,.12);
  --radius:     14px;
  --radius-sm:  10px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', ui-sans-serif, system-ui, sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

.container { max-width: 1120px; margin: 0 auto; padding: 0 28px; }

.section-label {
  display: inline-block;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 12px;
}
.section-title {
  font-size: clamp(1.6rem, 3vw, 2.15rem);
  font-weight: 800;
  color: var(--text);
  line-height: 1.2;
  margin-bottom: 14px;
  letter-spacing: -.02em;
}
.section-sub { font-size: 1rem; color: var(--muted); max-width: 540px; line-height: 1.65; }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 22px;
  border-radius: var(--radius-sm);
  font-size: .9rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  text-decoration: none;
  transition: background .15s, transform .12s, box-shadow .15s;
  white-space: nowrap;
}
.btn-teal { background: var(--teal); color: #fff; }
.btn-teal:hover { background: var(--teal-2); transform: translateY(-1px); box-shadow: 0 4px 14px rgba(13,148,136,.3); }

.fade-up { opacity: 0; transform: translateY(22px); transition: opacity .5s ease, transform .5s ease; }
.fade-up.visible { opacity: 1; transform: none; }

/* ── NAVBAR ── */
#navbar {
  position: sticky; top: 0; z-index: 100;
  background: var(--navy);
  height: 64px;
  display: flex; align-items: center;
  padding: 0 20px;
  border-bottom: 1px solid rgba(255,255,255,.05);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; width: 100%; }
.logo { font-size: 1.3rem; font-weight: 800; color: #fff; text-decoration: none; letter-spacing: -.02em; }
.logo span { color: var(--teal); }
.nav-links { display: flex; align-items: center; gap: 40px; list-style: none; }
.nav-links a { color: rgba(255,255,255,.7); text-decoration: none; font-size: .875rem; font-weight: 500; transition: color .14s; letter-spacing: .01em; }
.nav-links a:hover { color: #fff; }
.nav-cta { display: flex; align-items: center; }
.nav-hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; background: none; border: none; }
.nav-hamburger span { display: block; width: 22px; height: 2px; background: #fff; border-radius: 2px; }
.mobile-menu { display: none; position: fixed; top: 64px; left: 0; right: 0; background: var(--navy); padding: 12px 24px 24px; z-index: 99; border-top: 1px solid rgba(255,255,255,.07); }
.mobile-menu.open { display: block; }
.mobile-menu a { display: block; color: rgba(255,255,255,.8); text-decoration: none; font-size: .9rem; font-weight: 500; padding: 11px 0; border-bottom: 1px solid rgba(255,255,255,.06); }
.mobile-menu .btn { margin-top: 14px; width: 100%; justify-content: center; }

@media (max-width: 780px) {
  .nav-links, .nav-cta { display: none; }
  .nav-hamburger { display: flex; }
}

/* ── HERO ── */
#hero { background: var(--navy); padding: 96px 0 112px; }
.hero-inner { max-width: 680px; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(13,148,136,.14); border: 1px solid rgba(13,148,136,.28);
  color: #5eead4; font-size: .78rem; font-weight: 600;
  padding: 5px 13px; border-radius: 100px; margin-bottom: 22px;
}
.hero-badge-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--teal); animation: blink 2s infinite; }
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:.35} }
.hero-title { font-size: clamp(1.9rem, 3.8vw, 2.9rem); font-weight: 800; color: #fff; line-height: 1.13; margin-bottom: 18px; letter-spacing: -.025em; }
.hero-title .teal { color: var(--teal); }
.hero-sub { font-size: 1.05rem; color: rgba(255,255,255,.6); line-height: 1.7; margin-bottom: 32px; max-width: 460px; }

@media (max-width: 480px) { #hero { padding: 64px 0 80px; } }

/* ── ROI ── */
#roi { padding: 56px 0; background: #fff; border-bottom: 1px solid var(--border); }
.roi-inner {
  background: var(--navy);
  border-radius: var(--radius);
  padding: 40px 48px;
}
.roi-lead {
  font-size: 1.05rem;
  color: rgba(255,255,255,.7);
  line-height: 1.7;
  max-width: 600px;
  margin-bottom: 36px;
}
.roi-lead strong { color: #fff; font-weight: 700; }
.roi-stats {
  display: flex;
  align-items: center;
  gap: 0;
}
.roi-stat { flex: 1; }
.roi-val {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 800;
  color: var(--teal);
  letter-spacing: -.03em;
  line-height: 1;
  margin-bottom: 6px;
}
.roi-label { font-size: .82rem; color: rgba(255,255,255,.5); font-weight: 500; }
.roi-divider {
  width: 1px;
  height: 48px;
  background: rgba(255,255,255,.1);
  margin: 0 40px;
  flex-shrink: 0;
}

@media (max-width: 640px) {
  .roi-inner { padding: 28px 24px; }
  .roi-stats { flex-direction: column; align-items: flex-start; gap: 24px; }
  .roi-divider { display: none; }
}

/* ── DEMO TABS ── */
#demo { padding: 96px 0; background: var(--bg); }
.demo-head { text-align: center; margin-bottom: 44px; }
.demo-head .section-sub { margin: 0 auto; }
.demo-tabs {
  display: flex; gap: 3px;
  background: rgba(15,23,42,.07); border-radius: 10px; padding: 4px;
  width: fit-content; margin: 0 auto 28px;
}
.demo-tab {
  padding: 8px 20px; border-radius: 7px; font-size: .84rem; font-weight: 600;
  cursor: pointer; border: none; background: transparent; color: var(--muted);
  transition: background .14s, color .14s, box-shadow .14s;
}
.demo-tab.active { background: #fff; color: var(--text); box-shadow: var(--shadow-sm); }
.demo-panel { display: none; }
.demo-panel.active { display: block; }

/* Booking demo */
.demo-booking-wrap {
  background: #f1f5f9;
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(15,23,42,.07);
}
.demo-booking-title {
  text-align: center; font-size: 22px; font-weight: 800;
  color: var(--text); margin-bottom: 20px; letter-spacing: -.02em;
}
.demo-booking-inner { display: grid; grid-template-columns: 1.4fr 1fr; gap: 16px; }
.demo-card {
  background: #fff;
  border: 1px solid rgba(15,23,42,.09);
  border-radius: var(--radius);
  box-shadow: 0 1px 2px rgba(15,23,42,.04), 0 8px 24px rgba(15,23,42,.08);
  overflow: hidden;
}
.demo-card-title { padding: 14px 16px; font-size: 13px; font-weight: 700; border-bottom: 1px solid rgba(15,23,42,.09); color: var(--text); }
.demo-usluga { padding: 12px 16px 0; }
.demo-usluga-label { font-size: 9.5px; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: var(--muted); margin-bottom: 7px; }
.demo-chips { display: flex; flex-wrap: wrap; gap: 6px; padding-bottom: 12px; }
.demo-chip { padding: 5px 12px; border-radius: 100px; font-size: 12px; font-weight: 500; border: 1.5px solid rgba(15,23,42,.09); color: var(--text); background: transparent; }
.demo-chip.active { background: var(--teal); border-color: var(--teal); color: #fff; font-weight: 600; }
.demo-kal { padding: 12px 16px; }
.demo-kal-nav { display: flex; justify-content: space-between; align-items: center; margin-bottom: 9px; }
.demo-kal-title { font-size: 13px; font-weight: 700; }
.demo-kal-btn { width: 26px; height: 26px; border: 1.5px solid rgba(15,23,42,.09); border-radius: 6px; background: #fff; display: flex; align-items: center; justify-content: center; font-size: 13px; color: var(--muted); cursor: pointer; }
.demo-kal-days { display: grid; grid-template-columns: repeat(7,1fr); gap: 2px; margin-bottom: 4px; }
.demo-kal-dn { text-align: center; font-size: 8.5px; font-weight: 700; color: var(--muted); padding: 3px 0; text-transform: uppercase; letter-spacing: .05em; }
.demo-kal-grid { display: grid; grid-template-columns: repeat(7,1fr); gap: 2px; }
.demo-kd { height: 28px; display: flex; align-items: center; justify-content: center; border-radius: 6px; font-size: 11.5px; font-weight: 500; color: var(--text); }
.demo-kd.a { background: rgba(13,148,136,.08); font-weight: 600; }
.demo-kd.s { background: var(--teal); color: #fff; font-weight: 700; }
.demo-kd.t { border: 2px solid var(--teal); color: var(--teal); font-weight: 800; }
.demo-kd.o { color: rgba(100,116,139,.22); }
.demo-slots-wrap { padding: 0 16px 14px; }
.demo-slots-label { font-size: 9.5px; font-weight: 700; text-transform: uppercase; letter-spacing: .07em; color: var(--muted); margin-bottom: 7px; }
.demo-slots { display: grid; grid-template-columns: repeat(4,1fr); gap: 5px; }
.demo-slot { padding: 8px 4px; text-align: center; border: 1.5px solid rgba(15,23,42,.09); border-radius: 8px; font-size: 11.5px; font-weight: 600; color: var(--text); background: #fff; }
.demo-slot.s { background: var(--teal); border-color: var(--teal); color: #fff; }
.demo-slot.x { color: rgba(100,116,139,.3); border-color: transparent; text-decoration: line-through; }
.demo-forma { padding: 14px 16px; border-top: 1px solid rgba(15,23,42,.09); display: flex; flex-direction: column; gap: 9px; }
.demo-input { padding: 10px 13px; border: 1.5px solid rgba(15,23,42,.09); border-radius: 9px; font-size: 12.5px; color: rgba(100,116,139,.6); background: #f8fafc; }
.demo-submit { padding: 11px; background: var(--teal); color: #fff; border: none; border-radius: 9px; font-size: 12.5px; font-weight: 700; text-align: center; }
.demo-info { display: flex; flex-direction: column; gap: 12px; }
.demo-stepper-card { background: #fff; border: 1px solid rgba(15,23,42,.09); border-radius: var(--radius); box-shadow: 0 1px 2px rgba(15,23,42,.04), 0 8px 24px rgba(15,23,42,.08); overflow: hidden; }
.demo-stepper-title { padding: 11px 14px; font-size: 9.5px; font-weight: 700; letter-spacing: .07em; text-transform: uppercase; color: var(--muted); border-bottom: 1px solid rgba(15,23,42,.09); }
.demo-stepper { padding: 14px; display: flex; flex-direction: column; }
.demo-step { display: flex; gap: 11px; }
.demo-step-left { display: flex; flex-direction: column; align-items: center; }
.demo-step-num { width: 24px; height: 24px; border-radius: 50%; background: var(--teal); color: #fff; font-size: 11px; font-weight: 700; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.demo-step-num.last { background: rgba(13,148,136,.08); color: var(--teal); border: 2px solid var(--teal); }
.demo-step-line { flex: 1; width: 2px; background: rgba(15,23,42,.09); margin: 4px 0; min-height: 18px; border-radius: 2px; }
.demo-step-body { padding-bottom: 16px; }
.demo-step-body.last { padding-bottom: 4px; }
.demo-step-title { font-size: 12px; font-weight: 700; color: var(--text); padding-top: 3px; margin-bottom: 2px; }
.demo-step-desc { font-size: 10.5px; color: var(--muted); line-height: 1.4; }
.demo-stats { display: grid; grid-template-columns: repeat(3,1fr); gap: 7px; }
.demo-stat { background: #fff; border: 1px solid rgba(15,23,42,.09); border-radius: 9px; padding: 12px 6px; text-align: center; box-shadow: var(--shadow-sm); }
.demo-stat-val { font-size: 18px; font-weight: 800; color: var(--teal); line-height: 1; letter-spacing: -.02em; }
.demo-stat-label { font-size: 9px; color: var(--muted); margin-top: 4px; font-weight: 600; letter-spacing: .05em; text-transform: uppercase; }
.demo-kontakt { background: #fff; border: 1px solid rgba(15,23,42,.09); border-radius: 9px; padding: 12px 14px; display: flex; flex-direction: column; gap: 8px; box-shadow: var(--shadow-sm); }
.demo-kontakt-red { display: flex; align-items: center; gap: 8px; color: var(--muted); font-size: 11.5px; }
.demo-kontakt-red svg { color: var(--teal); flex-shrink: 0; }

@media (max-width: 700px) { .demo-booking-inner { grid-template-columns: 1fr; } .demo-info { display: none; } }
@media (max-width: 560px) { .demo-tabs { flex-wrap: wrap; width: 100%; } .demo-tab { flex: 1; text-align: center; font-size: .78rem; padding: 7px 10px; } }

/* Admin demo */
.demo-admin-wrap {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid #e0e2e6;
  display: grid;
  grid-template-columns: 220px 1fr;
  min-height: 460px;
}
.da-sidebar { background: #1e2a38; display: flex; flex-direction: column; }
.da-logo { padding: 20px 20px 16px; border-bottom: 1px solid rgba(255,255,255,.07); }
.da-logo-text { font-size: 16px; font-weight: 700; color: #fff; letter-spacing: -.3px; }
.da-logo-text span { color: #0d9488; }
.da-brand { font-size: 11.5px; color: rgba(255,255,255,.38); margin-top: 5px; }
.da-nav { padding: 10px 0; flex: 1; }
.da-section-label {
  font-size: 10px; font-weight: 700; letter-spacing: .09em; text-transform: uppercase;
  color: rgba(255,255,255,.22); padding: 14px 20px 5px;
}
.da-item {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 20px 10px 17px;
  font-size: 13px; font-weight: 500;
  color: rgba(255,255,255,.48);
  border-left: 3px solid transparent;
}
.da-item.active { color: #fff; background: rgba(13,148,136,.16); border-left-color: #0d9488; }
.da-item svg { flex-shrink: 0; opacity: .6; }
.da-item.active svg { opacity: 1; }
.da-content { background: #fff; display: flex; flex-direction: column; }
.da-panel { border: 1px solid #e0e2e6; border-radius: 12px; overflow: hidden; box-shadow: 0 1px 4px rgba(0,0,0,.06), 0 4px 16px rgba(0,0,0,.04); margin: 24px; }
.da-panel-head {
  padding: 0 22px; border-bottom: 1px solid #d1d5db;
  background: #e5e7eb;
  display: flex; align-items: stretch;
  min-height: 48px;
}
.da-status-tabs { display: flex; height: 100%; }
.da-stab {
  padding: 0 16px; height: 48px;
  background: transparent; border: none; border-right: 1px solid #e5e7eb;
  font-size: 12.5px; color: #64748b; cursor: pointer;
  display: inline-flex; align-items: center; gap: 6px;
  position: relative; font-family: inherit; font-weight: 500;
}
.da-stab.active { color: #0f172a; font-weight: 600; }
.da-stab.active::after { content: ''; position: absolute; left: 0; right: 0; bottom: -1px; height: 2px; background: #0d9488; }
.da-stab-count {
  font-size: 10px; padding: 1px 6px;
  background: #f1efe8; color: #64748b; border: 1px solid #e5e7eb;
  font-weight: 400;
}
.da-stab.active .da-stab-count { background: rgba(13,148,136,.08); color: #0d9488; border-color: rgba(13,148,136,.3); }
.da-row {
  display: grid; grid-template-columns: 100px 1fr auto;
  gap: 20px; padding: 14px 22px;
  border-bottom: 1px solid #e5e7eb;
  align-items: flex-start; background: #fff;
}
.da-row:last-child { border-bottom: none; }
.da-when { border-left: 2px solid #0d9488; padding: 1px 0 1px 10px; }
.da-when.muted { border-left-color: #e2e8f0; }
.da-when-date { font-size: 12.5px; font-weight: 600; color: #0f172a; }
.da-when-time { font-size: 11.5px; color: #64748b; margin-top: 2px; }
.da-info { min-width: 0; }
.da-name-row { display: flex; align-items: baseline; gap: 7px; flex-wrap: wrap; margin-bottom: 4px; }
.da-name { font-size: 13.5px; font-weight: 600; color: #0f172a; }
.da-email { font-size: 11.5px; color: #64748b; }
.da-service-tag {
  display: inline-block; font-size: 10.5px; padding: 2px 8px;
  background: #e5e7eb; color: #0f172a; border: 1px solid #e5e7eb;
}
.da-actions { display: flex; flex-direction: column; align-items: flex-end; gap: 4px; }
.da-btn-group { display: flex; }
.da-btn-odbij {
  padding: 6px 12px; background: #fff; color: #0f172a;
  border: 1px solid rgba(15,23,42,.12); border-right: none;
  border-radius: 7px 0 0 7px; font-size: 11.5px; font-weight: 500;
  cursor: pointer; font-family: inherit;
}
.da-btn-potvrdi {
  padding: 6px 12px; background: #0d9488; color: #fff;
  border: 1px solid #0d9488; border-radius: 0 7px 7px 0;
  font-size: 11.5px; font-weight: 600; cursor: pointer; font-family: inherit;
}
.da-btn-otkazi {
  padding: 6px 12px; background: #fff; color: #dc2626;
  border: 1px solid #e5e7eb; border-radius: 7px;
  font-size: 11.5px; font-weight: 500; cursor: pointer; font-family: inherit;
}

@media (max-width: 700px) { .demo-admin-wrap { grid-template-columns: 1fr; } .da-sidebar { display: none; } }

/* ── FEATURES ── */
#features { padding: 96px 0; background: #fff; }
.features-head { text-align: center; margin-bottom: 52px; }
.features-head .section-sub { margin: 0 auto; }
.features-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.feature-card {
  background: var(--bg); border: 1px solid rgba(15,23,42,.08);
  border-radius: var(--radius); padding: 26px;
  transition: box-shadow .2s, transform .2s;
}
.feature-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.feature-icon {
  width: 40px; height: 40px; border-radius: 10px;
  background: rgba(13,148,136,.08);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 14px; color: var(--teal);
}
.feature-title { font-size: .95rem; font-weight: 700; color: var(--text); margin-bottom: 7px; }
.feature-desc { font-size: .84rem; color: var(--muted); line-height: 1.6; }

@media (max-width: 880px) { .features-grid { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 540px) { .features-grid { grid-template-columns: 1fr; } }

/* ── HOW IT WORKS ── */
#how { padding: 96px 0; background: var(--bg); }
.how-head { text-align: center; margin-bottom: 60px; }
.how-steps { display: grid; grid-template-columns: repeat(3,1fr); gap: 0; position: relative; }
.how-steps::before {
  content: ''; position: absolute; top: 27px;
  left: calc(16.67% + 18px); right: calc(16.67% + 18px);
  height: 2px; background: rgba(15,23,42,.1); z-index: 0;
}
.how-step { display: flex; flex-direction: column; align-items: center; text-align: center; padding: 0 28px; position: relative; z-index: 1; }
.how-num { width: 54px; height: 54px; border-radius: 50%; background: var(--teal); color: #fff; font-size: 1.05rem; font-weight: 800; display: flex; align-items: center; justify-content: center; margin-bottom: 18px; box-shadow: 0 0 0 6px var(--bg); flex-shrink: 0; }
.how-step-title { font-size: 1rem; font-weight: 700; color: var(--text); margin-bottom: 7px; }
.how-step-desc { font-size: .84rem; color: var(--muted); line-height: 1.6; }

@media (max-width: 620px) { .how-steps { grid-template-columns: 1fr; gap: 36px; } .how-steps::before { display: none; } }

/* ── PRICING ── */
#pricing { padding: 96px 0; background: #fff; }
.pricing-head { text-align: center; margin-bottom: 44px; }
.pricing-card-wrap { display: flex; justify-content: center; }
.pricing-card {
  background: #fff; border: 2px solid rgba(15,23,42,.1);
  border-radius: var(--radius); padding: 40px 44px;
  max-width: 460px; width: 100%;
  box-shadow: var(--shadow-lg); text-align: center;
  transition: transform .2s;
}
.pricing-card:hover { transform: translateY(-4px); }
.pricing-plan { font-size: .78rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: var(--teal); margin-bottom: 10px; }
.pricing-trial {
  display: inline-block;
  background: rgba(13,148,136,.08);
  border: 1px solid rgba(13,148,136,.2);
  color: var(--teal-2);
  font-size: .78rem;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 100px;
  margin-bottom: 16px;
}
.pricing-price { font-size: 2.9rem; font-weight: 800; color: var(--text); line-height: 1; margin-bottom: 4px; letter-spacing: -.03em; }
.pricing-price sup { font-size: 1.3rem; vertical-align: super; }
.pricing-period { font-size: .85rem; color: var(--muted); margin-bottom: 30px; }
.pricing-list { list-style: none; text-align: left; margin-bottom: 32px; }
.pricing-list li { display: flex; align-items: flex-start; gap: 10px; font-size: .875rem; color: var(--text); padding: 8px 0; border-bottom: 1px solid rgba(15,23,42,.07); }
.pricing-list li:last-child { border: none; }
.pricing-check { width: 17px; height: 17px; border-radius: 50%; background: rgba(13,148,136,.1); color: var(--teal); display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-top: 2px; }
.pricing-card .btn { width: 100%; justify-content: center; font-size: .95rem; padding: 13px; }
.pricing-note { text-align: center; margin-top: 18px; font-size: .78rem; color: var(--muted-2); }

@media (max-width: 540px) { .pricing-card { padding: 28px 20px; } }

/* ── CONTACT ── */
#contact { padding: 96px 0; background: var(--bg); }
.contact-head { text-align: center; margin-bottom: 52px; }
.contact-head .section-sub { margin: 0 auto; }
.contact-inner { display: grid; grid-template-columns: 1fr 1.55fr; gap: 60px; align-items: start; }
.contact-info-title { font-size: 1rem; font-weight: 700; color: var(--text); margin-bottom: 22px; }
.contact-item { display: flex; align-items: flex-start; gap: 11px; margin-bottom: 18px; }
.contact-icon { width: 34px; height: 34px; border-radius: 8px; background: rgba(13,148,136,.08); display: flex; align-items: center; justify-content: center; flex-shrink: 0; color: var(--teal); }
.contact-label { font-size: .72rem; font-weight: 600; color: var(--muted); text-transform: uppercase; letter-spacing: .05em; }
.contact-value { font-size: .875rem; font-weight: 500; color: var(--text); }
.contact-form { background: #fff; border: 1px solid rgba(15,23,42,.09); border-radius: var(--radius); padding: 32px; box-shadow: var(--shadow-sm); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-group { margin-bottom: 14px; }
.form-group label { display: block; font-size: .78rem; font-weight: 600; color: var(--text); margin-bottom: 6px; }
.form-group input, .form-group textarea {
  width: 100%; padding: 10px 13px;
  border: 1.5px solid rgba(15,23,42,.12); border-radius: var(--radius-sm);
  font-size: .875rem; font-family: inherit; color: var(--text); background: #fff;
  outline: none; transition: border-color .14s, box-shadow .14s;
}
.form-group input:focus, .form-group textarea:focus { border-color: var(--teal); box-shadow: 0 0 0 3px rgba(13,148,136,.11); }
.form-group textarea { resize: vertical; min-height: 100px; }
.form-check { display: flex; align-items: flex-start; gap: 9px; margin-bottom: 18px; }
.form-check input[type="checkbox"] { width: 15px; height: 15px; accent-color: var(--teal); flex-shrink: 0; margin-top: 2px; }
.form-check label { font-size: .8rem; color: var(--muted); line-height: 1.5; }
.form-check a { color: var(--teal); text-decoration: none; }
.form-check a:hover { text-decoration: underline; }
.form-submit { width: 100%; justify-content: center; font-size: .9rem; padding: 12px; }
.form-success { display: none; background: rgba(13,148,136,.07); border: 1px solid rgba(13,148,136,.18); border-radius: var(--radius-sm); padding: 12px 14px; font-size: .84rem; color: var(--teal-2); font-weight: 500; margin-top: 10px; text-align: center; }

@media (max-width: 780px) { .contact-inner { grid-template-columns: 1fr; gap: 36px; } }
@media (max-width: 520px) { .form-row { grid-template-columns: 1fr; } .contact-form { padding: 20px; } }

/* ── FOOTER ��─ */
footer { background: var(--navy); padding: 36px 0; border-top: 1px solid rgba(255,255,255,.05); }
.footer-inner { display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap; }
.footer-left .logo { font-size: 1.05rem; display: block; margin-bottom: 3px; }
.footer-tagline { font-size: .78rem; color: rgba(255,255,255,.38); }
.footer-links { display: flex; gap: 24px; flex-wrap: wrap; }
.footer-links a { font-size: .8rem; color: rgba(255,255,255,.45); text-decoration: none; transition: color .14s; }
.footer-links a:hover { color: #fff; }
.footer-copy { font-size: .75rem; color: rgba(255,255,255,.28); width: 100%; text-align: center; margin-top: 22px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.05); }

/* ── HERO POSITIONING ── */
.hero-positioning {
  font-size: .88rem;
  color: rgba(255,255,255,.38);
  line-height: 1.5;
  margin-bottom: 28px;
  margin-top: -18px;
  font-style: italic;
}

/* ── FOR WHO ── */
#for-who { padding: 80px 0; background: var(--navy); }
.forwhom-inner { max-width: 680px; margin: 0 auto; text-align: center; }
.forwhom-title { font-size: clamp(1.3rem, 2.5vw, 1.7rem); font-weight: 800; color: #fff; margin-bottom: 18px; letter-spacing: -.02em; }
.forwhom-text { font-size: 1rem; color: rgba(255,255,255,.65); line-height: 1.7; margin-bottom: 14px; }
.forwhom-note { font-size: .875rem; color: rgba(255,255,255,.38); line-height: 1.6; font-style: italic; }

/* ── PRICING RISK ── */
.pricing-risk { font-size: .8rem; color: var(--muted); line-height: 1.6; margin-top: 14px; text-align: center; }

/* ── TRUST BAR ── */
.trust-bar { background: #f1f5f9; border-top: 1px solid rgba(15,23,42,.07); padding: 14px 0; text-align: center; }
.trust-text { font-size: .78rem; color: var(--muted-2); }
