/* ============ TAXAS — Podvojné účtovníctvo ============ */

:root {
  --c-navy: #0D2A4F;
  --c-navy-700: #143461;
  --c-navy-900: #081C36;
  --c-accent: #F5A623;
  --c-accent-700: #E0941B;
  --c-text: #1C2331;
  --c-text-muted: #5C6775;
  --c-line: #E5EAF2;
  --c-bg: #FFFFFF;
  --c-bg-soft: #F7F9FC;
  --c-bg-tint: #EEF3FB;
  --c-success: #1B9F5C;
  --c-error: #D33C3C;

  --shadow-sm: 0 1px 2px rgba(13,42,79,.06), 0 1px 3px rgba(13,42,79,.04);
  --shadow-md: 0 4px 14px rgba(13,42,79,.08), 0 2px 4px rgba(13,42,79,.05);
  --shadow-lg: 0 24px 48px rgba(13,42,79,.12), 0 8px 16px rgba(13,42,79,.06);
  --shadow-xl: 0 40px 80px rgba(13,42,79,.18), 0 12px 24px rgba(13,42,79,.08);

  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;

  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;

  --container: 1200px;
}

/* ----- Reset & base ----- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.6;
  color: var(--c-text);
  background: var(--c-bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img, svg { display: block; max-width: 100%; }
a { color: var(--c-navy); text-decoration: none; }
a:hover { color: var(--c-accent); }
button { font-family: inherit; cursor: pointer; }

h1, h2, h3, h4 {
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin: 0 0 .5em;
  color: var(--c-navy);
}
h1 { font-size: clamp(2rem, 4.2vw, 3.4rem); font-weight: 800; letter-spacing: -0.03em; }
h2 { font-size: clamp(1.6rem, 3.2vw, 2.4rem); }
h3 { font-size: clamp(1.05rem, 1.6vw, 1.2rem); }

p { margin: 0 0 1em; color: var(--c-text); }

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

.eyebrow {
  display: inline-block;
  font-size: .8125rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--c-accent-700);
  margin-bottom: .85rem;
}
.eyebrow--light { color: var(--c-accent); }

.section-head { text-align: center; max-width: 720px; margin: 0 auto 3rem; }
.section-lead { font-size: 1.05rem; color: var(--c-text-muted); margin-top: .5rem; }

/* ----- Buttons ----- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .55rem;
  padding: .85rem 1.4rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: .95rem;
  letter-spacing: -.01em;
  border: 2px solid transparent;
  transition: transform .15s ease, box-shadow .2s ease, background .2s ease, color .2s ease, border-color .2s ease;
  text-decoration: none;
  white-space: nowrap;
  cursor: pointer;
}
.btn--primary {
  background: var(--c-accent);
  color: #1A1300;
  border-color: var(--c-accent);
  box-shadow: 0 8px 18px rgba(245,166,35,.32);
}
.btn--primary:hover {
  background: var(--c-accent-700);
  border-color: var(--c-accent-700);
  color: #1A1300;
  transform: translateY(-1px);
  box-shadow: 0 12px 24px rgba(245,166,35,.42);
}
.btn--ghost {
  background: transparent;
  color: var(--c-navy);
  border-color: var(--c-line);
}
.btn--ghost:hover {
  background: var(--c-navy);
  color: #fff;
  border-color: var(--c-navy);
}
.btn--lg { padding: 1.05rem 1.7rem; font-size: 1rem; }
.btn--sm { padding: .55rem 1rem; font-size: .85rem; }
.btn--block { display: flex; width: 100%; }

/* ----- Topbar ----- */
.topbar {
  background: var(--c-navy-900);
  color: #C9D5E8;
  font-size: .82rem;
  padding: .55rem 0;
}
.topbar__inner { display: flex; gap: 1.5rem; align-items: center; flex-wrap: wrap; }
.topbar__item { display: inline-flex; align-items: center; gap: .4rem; }
.topbar__item a { color: #fff; }
.topbar__item a:hover { color: var(--c-accent); }
.topbar__item--ghost { margin-left: auto; color: #93A4BD; }

/* ----- Header ----- */
.header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,.92);
  backdrop-filter: saturate(160%) blur(10px);
  -webkit-backdrop-filter: saturate(160%) blur(10px);
  border-bottom: 1px solid var(--c-line);
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: .9rem 1.25rem;
}
.logo {
  display: inline-flex;
  align-items: center;
  gap: .65rem;
  color: var(--c-navy);
  font-weight: 800;
  letter-spacing: -.02em;
}
.logo__mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--c-navy) 0%, var(--c-navy-700) 100%);
  color: #fff;
  font-size: 1.15rem;
  font-weight: 800;
  box-shadow: 0 6px 14px rgba(13,42,79,.25);
}
.logo__text {
  display: flex;
  flex-direction: column;
  line-height: 1;
  font-size: 1.05rem;
}
.logo__text small {
  font-size: .68rem;
  font-weight: 500;
  letter-spacing: .02em;
  color: var(--c-text-muted);
  margin-top: 3px;
}
.nav {
  display: flex;
  gap: 1.6rem;
  margin-left: auto;
  margin-right: 1rem;
}
.nav a {
  color: var(--c-text);
  font-weight: 500;
  font-size: .95rem;
  position: relative;
}
.nav a::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: -6px;
  height: 2px;
  background: var(--c-accent);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform .2s ease;
}
.nav a:hover { color: var(--c-navy); }
.nav a:hover::after { transform: scaleX(1); }

.hamburger {
  display: none;
  background: transparent;
  border: 0;
  width: 38px; height: 38px;
  flex-direction: column;
  gap: 5px;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 51;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--c-navy);
  border-radius: 2px;
  transition: transform .25s ease, opacity .2s ease;
  transform-origin: center;
}
.hamburger[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.hamburger[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}
.hamburger[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

body.menu-open { overflow: hidden; }

/* ----- Hero ----- */
.hero {
  position: relative;
  padding: 4rem 0 5rem;
  background:
    radial-gradient(1200px 500px at 90% -10%, rgba(245,166,35,.12), transparent 60%),
    radial-gradient(900px 600px at -10% 30%, rgba(13,42,79,.08), transparent 50%),
    linear-gradient(180deg, #fff 0%, var(--c-bg-soft) 100%);
  overflow: hidden;
}
.hero__inner {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 3rem;
  align-items: center;
}
.hero__content { max-width: 600px; }
.badge {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .42rem .9rem;
  border-radius: 999px;
  background: rgba(27,159,92,.1);
  color: #14834A;
  font-size: .8125rem;
  font-weight: 600;
  margin-bottom: 1.3rem;
}
.hero__accent {
  display: inline-block;
  background: linear-gradient(120deg, var(--c-accent) 0%, #F4B752 100%);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}
.hero__lead {
  font-size: 1.125rem;
  color: var(--c-text-muted);
  margin: 1rem 0 1.8rem;
  max-width: 520px;
}
.hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: .8rem;
  margin-bottom: 1.8rem;
}
.hero__bullets {
  list-style: none;
  margin: 0; padding: 0;
  display: flex;
  flex-direction: column;
  gap: .55rem;
}
.hero__bullets li {
  display: flex;
  align-items: center;
  gap: .55rem;
  font-size: .95rem;
  color: var(--c-text);
}
.hero__bullets svg { color: var(--c-success); flex-shrink: 0; }

.hero__visual {
  position: relative;
  min-height: 460px;
}

.card {
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  padding: 1.6rem 1.6rem 1.4rem;
  border: 1px solid var(--c-line);
}
.card--hero {
  position: relative;
  z-index: 2;
  transform: rotate(-1.2deg);
  max-width: 420px;
  margin-left: auto;
}
.card__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--c-line);
}
.card__title { font-weight: 700; color: var(--c-navy); font-size: 1.05rem; }
.card__badge {
  background: var(--c-bg-tint);
  color: var(--c-navy);
  padding: .25rem .65rem;
  border-radius: 999px;
  font-size: .75rem;
  font-weight: 600;
}
.card__row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: .6rem 0;
  font-size: .92rem;
  color: var(--c-text-muted);
}
.card__row strong { color: var(--c-text); font-weight: 600; }
.card__row--accent {
  margin: .35rem 0;
  padding: .85rem .95rem;
  background: linear-gradient(120deg, rgba(13,42,79,.04) 0%, rgba(245,166,35,.08) 100%);
  border-radius: 12px;
  font-size: 1rem;
}
.card__row--accent strong { color: var(--c-success); font-size: 1.1rem; font-weight: 700; }
.card__row--small { font-size: .82rem; padding: .35rem 0; }
.card__bar {
  height: 6px;
  background: var(--c-bg-tint);
  border-radius: 999px;
  overflow: hidden;
  margin: .8rem 0 .9rem;
}
.card__bar-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--c-navy) 0%, var(--c-accent) 100%);
  border-radius: 999px;
}

.floating {
  position: absolute;
  background: #fff;
  border-radius: 14px;
  padding: .65rem .9rem;
  display: flex;
  align-items: center;
  gap: .55rem;
  font-size: .85rem;
  font-weight: 600;
  color: var(--c-navy);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--c-line);
  z-index: 3;
}
.floating--check {
  top: 14%;
  left: -1%;
  color: var(--c-success);
  animation: float 6s ease-in-out infinite;
}
.floating--check svg { color: var(--c-success); }
.floating--shield {
  bottom: 8%;
  right: -2%;
  color: var(--c-navy);
  animation: float 7s ease-in-out infinite reverse;
}
.floating--shield svg { color: var(--c-accent); }
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

/* ----- Trust ----- */
.trust {
  background: var(--c-navy);
  color: #fff;
  padding: 2rem 0;
}
.trust__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  text-align: center;
}
.trust__grid > div { display: flex; flex-direction: column; gap: .15rem; }
.trust__grid strong {
  font-size: clamp(1.6rem, 2.4vw, 2.1rem);
  font-weight: 800;
  letter-spacing: -.02em;
  color: var(--c-accent);
}
.trust__grid span {
  font-size: .85rem;
  color: #C9D5E8;
}

/* ----- Pains ----- */
.pains { padding: 5rem 0; background: var(--c-bg-soft); }
.pains__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.pain {
  background: #fff;
  border: 1px solid var(--c-line);
  border-radius: var(--radius-md);
  padding: 1.8rem;
  transition: transform .2s ease, box-shadow .2s ease;
}
.pain:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.pain__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px; height: 56px;
  border-radius: 14px;
  background: rgba(245,166,35,.12);
  color: var(--c-accent-700);
  margin-bottom: 1.1rem;
}
.pain h3 { margin-bottom: .45rem; }
.pain p { color: var(--c-text-muted); font-size: .95rem; margin: 0; }

/* ----- Services ----- */
.services { padding: 5rem 0; }
.services__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
.service {
  background: #fff;
  border: 1px solid var(--c-line);
  border-radius: var(--radius-md);
  padding: 1.5rem 1.4rem;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.service:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: rgba(13,42,79,.18);
}
.service__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px; height: 44px;
  border-radius: 11px;
  background: linear-gradient(135deg, var(--c-navy) 0%, var(--c-navy-700) 100%);
  color: #fff;
  margin-bottom: 1rem;
}
.service h3 { font-size: 1.02rem; margin-bottom: .35rem; }
.service p { color: var(--c-text-muted); font-size: .88rem; margin: 0; line-height: 1.55; }

/* ----- Pricing ----- */
.pricing { padding: 5rem 0; background: var(--c-bg-soft); }
.pricing__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  align-items: stretch;
}
.plan {
  background: #fff;
  border: 1px solid var(--c-line);
  border-radius: var(--radius-lg);
  padding: 2rem 1.8rem 1.8rem;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: transform .2s ease, box-shadow .2s ease;
}
.plan:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.plan--featured {
  background: linear-gradient(180deg, var(--c-navy) 0%, var(--c-navy-700) 100%);
  color: #fff;
  border-color: var(--c-navy);
  transform: scale(1.03);
  box-shadow: var(--shadow-lg);
}
.plan--featured:hover { transform: scale(1.03) translateY(-4px); }
.plan--featured h3, .plan--featured .plan__name { color: #fff; }
.plan--featured .plan__sub, .plan--featured .plan__period, .plan--featured .plan__from { color: #C9D5E8; }
.plan--featured .plan__amount { color: #fff; }
.plan--featured .plan__features li { color: #DCE6F4; }
.plan--featured .plan__features li::before { background: var(--c-accent); }
.plan__badge {
  position: absolute;
  top: -12px;
  right: 1.5rem;
  background: var(--c-accent);
  color: #1A1300;
  padding: .35rem .8rem;
  border-radius: 999px;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  box-shadow: 0 4px 10px rgba(245,166,35,.4);
}
.plan__head { margin-bottom: 1.2rem; }
.plan__name {
  display: block;
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--c-navy);
  letter-spacing: -.02em;
}
.plan__sub {
  font-size: .85rem;
  color: var(--c-text-muted);
}
.plan__price {
  display: flex;
  align-items: baseline;
  gap: .35rem;
  margin: 0 0 1.4rem;
  padding-bottom: 1.4rem;
  border-bottom: 1px solid var(--c-line);
}
.plan--featured .plan__price { border-bottom-color: rgba(255,255,255,.15); }
.plan__from { font-size: .85rem; color: var(--c-text-muted); font-weight: 500; }
.plan__amount {
  font-size: 2.6rem;
  font-weight: 800;
  letter-spacing: -.03em;
  color: var(--c-navy);
  line-height: 1;
}
.plan__period { font-size: .9rem; color: var(--c-text-muted); }
.plan__features {
  list-style: none;
  margin: 0 0 1.6rem;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: .65rem;
  flex-grow: 1;
}
.plan__features li {
  position: relative;
  padding-left: 1.65rem;
  font-size: .92rem;
  color: var(--c-text);
}
.plan__features li::before {
  content: '';
  position: absolute;
  left: 0; top: .55em;
  width: 16px; height: 16px;
  background: var(--c-success);
  -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3.5'><polyline points='20,6 9,17 4,12'/></svg>") center / contain no-repeat;
  mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3.5'><polyline points='20,6 9,17 4,12'/></svg>") center / contain no-repeat;
}
.plan--featured .btn--ghost {
  border-color: rgba(255,255,255,.3);
  color: #fff;
}
.plan--featured .btn--ghost:hover {
  background: #fff;
  color: var(--c-navy);
  border-color: #fff;
}
.pricing__note {
  text-align: center;
  margin: 2rem 0 0;
  color: var(--c-text-muted);
  font-size: .95rem;
}

/* ----- Process ----- */
.process { padding: 5rem 0; }
.process__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  position: relative;
}
.step {
  background: #fff;
  border: 1px solid var(--c-line);
  border-radius: var(--radius-md);
  padding: 1.8rem 1.5rem;
  position: relative;
  transition: transform .2s ease, box-shadow .2s ease;
}
.step:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.step__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px; height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--c-accent) 0%, #F4B752 100%);
  color: #1A1300;
  font-weight: 800;
  font-size: 1.1rem;
  margin-bottom: 1rem;
  box-shadow: 0 6px 14px rgba(245,166,35,.32);
}
.step h3 { font-size: 1.05rem; margin-bottom: .35rem; }
.step p { color: var(--c-text-muted); font-size: .92rem; margin: 0; }

/* ----- Why ----- */
.why { padding: 5rem 0; background: var(--c-bg-soft); }
.why__inner {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 3rem;
  align-items: center;
}
.why__content p { font-size: 1.05rem; color: var(--c-text-muted); margin: 0 0 1.4rem; }
.why__list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: .85rem; }
.why__list li {
  display: flex;
  align-items: flex-start;
  gap: .65rem;
  font-size: .98rem;
  color: var(--c-text);
}
.why__list svg { color: var(--c-success); flex-shrink: 0; margin-top: 2px; }

.why__quote {
  background: var(--c-navy);
  color: #fff;
  border-radius: var(--radius-lg);
  padding: 2.2rem 2rem;
  position: relative;
  box-shadow: var(--shadow-lg);
}
.why__quote::before {
  content: '"';
  position: absolute;
  top: -10px;
  left: 24px;
  font-family: Georgia, serif;
  font-size: 6rem;
  line-height: 1;
  color: var(--c-accent);
  font-weight: 700;
}
.why__quote blockquote { margin: 0; }
.why__quote p {
  font-size: 1.1rem;
  font-style: italic;
  color: #fff;
  margin: 0 0 1rem;
  line-height: 1.6;
}
.why__quote footer { color: var(--c-accent); font-weight: 600; font-style: normal; }

/* ----- FAQ ----- */
.faq { padding: 5rem 0; }
.faq__list {
  max-width: 820px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: .65rem;
}
.faq__item {
  background: #fff;
  border: 1px solid var(--c-line);
  border-radius: var(--radius-md);
  transition: border-color .2s ease, box-shadow .2s ease;
  overflow: hidden;
}
.faq__item[open] {
  border-color: rgba(13,42,79,.2);
  box-shadow: var(--shadow-sm);
}
.faq__item summary {
  list-style: none;
  cursor: pointer;
  padding: 1.1rem 3.2rem 1.1rem 1.4rem;
  font-weight: 600;
  color: var(--c-navy);
  position: relative;
  font-size: 1.02rem;
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after {
  content: '+';
  position: absolute;
  right: 1.4rem;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--c-accent-700);
  transition: transform .2s ease;
  width: 28px; height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(245,166,35,.12);
}
.faq__item[open] summary::after {
  content: '−';
  transform: translateY(-50%) rotate(180deg);
}
.faq__answer { padding: 0 1.4rem 1.2rem; color: var(--c-text-muted); }
.faq__answer p { margin: 0; }

/* ----- CTA / Form ----- */
.cta {
  padding: 5rem 0;
  background: linear-gradient(135deg, var(--c-navy-900) 0%, var(--c-navy) 60%, var(--c-navy-700) 100%);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(800px 400px at 80% 10%, rgba(245,166,35,.15), transparent 60%),
    radial-gradient(600px 400px at 10% 90%, rgba(245,166,35,.08), transparent 60%);
  pointer-events: none;
}
.cta__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
  position: relative;
  z-index: 1;
}
.cta__content h2 { color: #fff; }
.cta__content > p { color: #C9D5E8; font-size: 1.05rem; margin-bottom: 1.6rem; }
.cta__bullets { list-style: none; padding: 0; margin: 0 0 2rem; display: flex; flex-direction: column; gap: .6rem; }
.cta__bullets li {
  display: flex;
  align-items: center;
  gap: .55rem;
  color: #fff;
  font-size: .98rem;
}
.cta__bullets svg { color: var(--c-accent); flex-shrink: 0; }

.cta__contact { display: flex; flex-direction: column; gap: .8rem; max-width: 360px; }
.cta__contact-item {
  display: flex;
  align-items: center;
  gap: .85rem;
  padding: .85rem 1.1rem;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 12px;
  color: #fff;
  transition: background .2s ease, border-color .2s ease;
}
.cta__contact-item:hover { background: rgba(255,255,255,.12); border-color: rgba(245,166,35,.4); color: #fff; }
.cta__contact-item svg { color: var(--c-accent); flex-shrink: 0; }
.cta__contact-item span { display: flex; flex-direction: column; line-height: 1.2; }
.cta__contact-item small { font-size: .72rem; color: #93A4BD; text-transform: uppercase; letter-spacing: .06em; margin-bottom: 2px; }
.cta__contact-item strong { font-size: 1rem; }

.form {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 2rem 1.8rem 1.8rem;
  color: var(--c-text);
  box-shadow: var(--shadow-xl);
  position: relative;
}
.form__head { margin-bottom: 1.4rem; padding-bottom: 1.4rem; border-bottom: 1px solid var(--c-line); }
.form__head h3 { font-size: 1.4rem; margin-bottom: .25rem; color: var(--c-navy); }
.form__head p { color: var(--c-text-muted); font-size: .92rem; margin: 0; }

.form__row { margin-bottom: 1rem; }
.form__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-bottom: 1rem; }

.field { display: block; }
.field > span {
  display: block;
  font-size: .85rem;
  font-weight: 600;
  color: var(--c-text);
  margin-bottom: .35rem;
}
.field small { font-weight: 400; color: var(--c-text-muted); }
.field input[type="text"],
.field input[type="email"],
.field input[type="tel"],
.field select,
.field textarea {
  width: 100%;
  padding: .75rem .9rem;
  border: 1.5px solid var(--c-line);
  border-radius: 10px;
  font-family: inherit;
  font-size: .95rem;
  background: var(--c-bg-soft);
  color: var(--c-text);
  transition: border-color .2s ease, background .2s ease, box-shadow .2s ease;
  -webkit-appearance: none;
  appearance: none;
}
.field select {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%235C6775' stroke-width='2.5'><polyline points='6,9 12,15 18,9'/></svg>");
  background-repeat: no-repeat;
  background-position: right .9rem center;
  padding-right: 2.4rem;
}
.field textarea { resize: vertical; min-height: 80px; }
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--c-accent);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(245,166,35,.18);
}
.field--check, .field--consent {
  display: flex;
  align-items: flex-start;
  gap: .6rem;
  font-size: .88rem;
  color: var(--c-text-muted);
  cursor: pointer;
}
.field--check input, .field--consent input {
  width: 18px; height: 18px;
  margin: 2px 0 0;
  cursor: pointer;
  flex-shrink: 0;
  accent-color: var(--c-accent);
}
.field--check span, .field--consent span { font-size: .88rem; }
.field--consent { margin: 1rem 0; }
.field--consent a { color: var(--c-navy); text-decoration: underline; }

.hp {
  position: absolute;
  left: -9999px;
  width: 1px; height: 1px;
  opacity: 0;
}

.form__hint {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .35rem;
  font-size: .78rem;
  color: var(--c-text-muted);
  margin: .8rem 0 0;
  text-align: center;
}
.form__hint svg { color: var(--c-success); }

.form__success, .form__error {
  margin-top: 1rem;
  padding: 1.2rem;
  border-radius: 12px;
  text-align: center;
}
.form__success {
  background: rgba(27,159,92,.08);
  border: 1px solid rgba(27,159,92,.25);
  color: var(--c-text);
}
.form__success-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--c-success);
  color: #fff;
  margin: 0 auto .8rem;
}
.form__success h4 { color: var(--c-success); margin-bottom: .35rem; font-size: 1.2rem; }
.form__success p { margin: 0; color: var(--c-text); }
.form__error {
  background: rgba(211,60,60,.08);
  border: 1px solid rgba(211,60,60,.25);
  color: var(--c-error);
  font-weight: 500;
}

/* ----- Footer ----- */
.footer { background: var(--c-navy-900); color: #C9D5E8; padding: 3.5rem 0 1.5rem; }
.footer__inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}
.footer__brand .logo { color: #fff; margin-bottom: 1rem; }
.footer__brand .logo__text { color: #fff; }
.footer__brand .logo__text small { color: #93A4BD; }
.footer__brand p { color: #93A4BD; font-size: .9rem; max-width: 320px; }
.footer__col h4 { color: #fff; font-size: .95rem; margin-bottom: .85rem; }
.footer__col a, .footer__col p {
  display: block;
  color: #C9D5E8;
  font-size: .9rem;
  margin-bottom: .45rem;
  text-decoration: none;
}
.footer__col a:hover { color: var(--c-accent); }
.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,.08);
  font-size: .82rem;
  color: #93A4BD;
}
.footer__bottom a { color: #C9D5E8; }
.footer__bottom a:hover { color: var(--c-accent); }

/* ----- Floating call CTA (mobile) ----- */
.floatcta {
  position: fixed;
  bottom: 1.2rem;
  right: 1.2rem;
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--c-accent);
  color: #1A1300;
  display: none;
  align-items: center;
  justify-content: center;
  box-shadow: 0 12px 28px rgba(245,166,35,.5);
  z-index: 40;
  animation: pulse 2.4s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 12px 28px rgba(245,166,35,.5), 0 0 0 0 rgba(245,166,35,.6); }
  50% { box-shadow: 0 12px 28px rgba(245,166,35,.5), 0 0 0 14px rgba(245,166,35,0); }
}

/* ============ Responsive ============ */
@media (max-width: 1024px) {
  .hero__inner { grid-template-columns: 1fr; gap: 2rem; }
  .hero__visual { max-width: 460px; margin: 0 auto; min-height: 380px; }
  .services__grid { grid-template-columns: repeat(2, 1fr); }
  .process__grid { grid-template-columns: repeat(2, 1fr); }
  .footer__inner { grid-template-columns: 1.5fr 1fr 1fr; }
  .footer__col:last-of-type { grid-column: 2 / -1; }
  .pricing__grid { grid-template-columns: 1fr; max-width: 460px; margin: 0 auto; }
  .plan--featured { transform: none; }
  .plan--featured:hover { transform: translateY(-4px); }
  .why__inner { grid-template-columns: 1fr; gap: 2rem; }
  .cta__inner { grid-template-columns: 1fr; gap: 2rem; }
}

@media (max-width: 720px) {
  .topbar { font-size: .75rem; }
  .topbar__item--ghost { display: none; }
  .nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    flex-direction: column;
    gap: 0;
    padding: .5rem 1.25rem 1rem;
    margin: 0;
    border-bottom: 1px solid var(--c-line);
    box-shadow: 0 16px 32px rgba(13,42,79,.12);
  }
  .nav--open { display: flex; }
  .nav a {
    padding: .9rem .25rem;
    border-bottom: 1px solid var(--c-line);
    font-size: 1rem;
  }
  .nav a:last-child { border-bottom: 0; }
  .nav a::after { display: none; }
  .hamburger { display: flex; }
  .header .btn { display: none; }
  .pains__grid { grid-template-columns: 1fr; }
  .services__grid { grid-template-columns: 1fr; }
  .process__grid { grid-template-columns: 1fr; }
  .trust__grid { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
  .footer__inner { grid-template-columns: 1fr; }
  .footer__col:last-of-type { grid-column: 1; }
  .footer__bottom { flex-direction: column; gap: .5rem; text-align: center; }
  .form__grid { grid-template-columns: 1fr; }
  .floatcta { display: inline-flex; }
  .hero { padding: 2.5rem 0 3rem; }
  .pains, .services, .pricing, .process, .why, .faq, .cta { padding: 3.5rem 0; }
  .hero__cta .btn { flex: 1; }
  .card--hero { transform: none; }
  .floating--check { left: -2%; top: 6%; }
  .floating--shield { bottom: 4%; right: -3%; }
  .why__quote { padding: 2rem 1.4rem; }
}

@media (max-width: 420px) {
  .hero__cta { flex-direction: column; align-items: stretch; }
  .hero__cta .btn { width: 100%; }
}
