@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700&display=swap");

/* GLOBAL VISIBILITY FIXES */
.mobile-only-btn,
.burger-btn {
  display: none !important;
}

.desktop-only-btn {
  display: inline-flex !important;
}

@media (max-width: 991px) {
  .desktop-only-btn {
    display: none !important;
  }

  .mobile-only-btn,
  .burger-btn {
    display: flex !important;
  }
}

:root {
  --color-bg: #f5f7fa;
  --color-bg-alt: #ffffff;
  --color-primary: #003366;
  --color-primary-dark: #001f4d;
  --color-accent: #2CA4DE;
  --color-accent-2: #58119B;
  --color-accent-soft: #e5f6ff;
  --color-text: #111827;
  --color-text-soft: #4b5563;
  --color-border: #d1d5db;
  --radius-lg: 16px;
  --radius-md: 10px;
  --shadow-soft: 0 18px 45px rgba(15, 23, 42, 0.18);
  --shadow-card: 0 10px 35px rgba(15, 23, 42, 0.12);
  --max-width: 1160px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Montserrat", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: radial-gradient(circle at top left, #e5f1ff 0, #f5f7fa 40%, #ffffff 100%);
  color: var(--color-text);
  line-height: 1.6;
}

html {
  scroll-behavior: smooth;
}

html, body {
  overflow-x: clip;
}

img {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

button,
input,
select,
textarea {
  font-family: inherit;
}

.page {
  min-height: 100vh;
  color: var(--color-text);
}

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 20px;
}

header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(18px);
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0.85));
  border-bottom: 1px solid rgba(148, 163, 184, 0.3);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  gap: 20px;
}

.logo-group {
  display: flex;
  align-items: center;
  gap: 14px;
}

.logo-image {
  width: 72px;
  height: 72px;
  display: block;
}

.logo-mark {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: radial-gradient(circle at 20% 0, var(--color-accent), var(--color-accent-2));
  display: flex;
  align-items: center;
  justify-content: center;
  color: #f9fafb;
  font-weight: 700;
  font-size: 20px;
}

.logo-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.logo-text span {
  font-family: "Montserrat", system-ui, sans-serif;
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--color-primary);
}

.logo-text small {
  font-size: 12px;
  color: var(--color-text-soft);
}

nav {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 13px;
  flex-shrink: 0;
}

nav a {
  color: var(--color-text-soft);
  font-weight: 500;
  position: relative;
  padding-bottom: 3px;
}

nav a:hover, nav a.active {
  color: var(--color-text);
}

nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--color-accent), var(--color-accent-2));
  transition: width 0.2s ease;
}

nav a:hover::after, nav a.active::after {
  width: 100%;
}

.nav-cta {
  display: flex;
  gap: 10px;
  align-items: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  border-radius: 999px;
  padding: 8px 16px;
  font-weight: 600;
  font-size: 13px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all 0.16s ease;
  white-space: nowrap;
  flex-shrink: 0;
  text-align: center;
}

.btn-primary {
  background: linear-gradient(135deg, var(--color-accent), var(--color-accent-2));
  color: #f9fafb;
  box-shadow: 0 14px 30px rgba(15, 23, 42, 0.45);
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 20px 40px rgba(15, 23, 42, 0.55);
}

.btn-outline {
  background: rgba(255, 255, 255, 0.9);
  color: var(--color-primary);
  border-color: rgba(15, 23, 42, 0.12);
}

.btn-outline:hover {
  background: #e0f2fe;
  border-color: rgba(44, 164, 222, 0.55);
}

.hero {
  padding: 40px 0 64px;
}

.hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
  gap: 40px;
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 4px 12px 4px 4px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 10px 25px rgba(15, 23, 42, 0.14);
  border: 1px solid rgba(148, 163, 184, 0.4);
  margin-bottom: 18px;
}

.eyebrow-pill {
  padding: 3px 10px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--color-accent), var(--color-accent-2));
  color: #f9fafb;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-family: "Montserrat", system-ui, sans-serif;
}

.eyebrow span {
  font-size: 12px;
  color: var(--color-text-soft);
}

.hero h1 {
  font-family: "Montserrat", system-ui, sans-serif;
  font-weight: 700;
  font-size: clamp(30px, 3.1vw, 38px);
  letter-spacing: -0.03em;
  color: var(--color-primary-dark);
  margin-bottom: 16px;
}

.hero p.lead {
  font-size: 17px;
  color: var(--color-text-soft);
  max-width: 640px;
  margin-bottom: 20px;
}

.hero-highlight {
  font-size: 15px;
  color: var(--color-primary);
  background: rgba(219, 234, 254, 0.7);
  padding: 8px 12px;
  border-radius: 10px;
  display: inline-block;
  margin-bottom: 22px;
  border: 1px solid rgba(37, 99, 235, 0.18);
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 22px;
}

.hero-subnote {
  font-size: 16px;
  color: var(--color-text-soft);
  display: flex;
  align-items: center;
  gap: 8px;
}

.hero-subnote span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  border-radius: 999px;
  background: #bbf7d0;
  color: #166534;
  font-size: 12px;
  font-weight: 700;
}

.hero-card {
  background: radial-gradient(circle at 0 0, rgba(44, 164, 222, 1) 0, rgba(88, 17, 155, 0.75) 28%, #0f172a 55%, #020617 100%);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  padding: 20px 20px 18px;
  color: #e5e7eb;
  position: relative;
  overflow: hidden;
}

.hero-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 10% -10%, rgba(44, 164, 222, 0.28), transparent 55%),
    radial-gradient(circle at 110% 0%, rgba(88, 17, 155, 0.24), transparent 55%);
  mix-blend-mode: screen;
  opacity: 0.9;
  pointer-events: none;
}

.hero-card-inner {
  position: relative;
  z-index: 1;
}

.hero-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}

.hero-card-title {
  font-family: "Montserrat", system-ui, sans-serif;
  font-size: 13px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #bfdbfe;
  font-weight: 600;
}

.badge-trust {
  font-size: 11px;
  padding: 4px 9px;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.5);
  background: linear-gradient(135deg, rgba(44, 164, 222, 0.22), rgba(88, 17, 155, 0.2));
  color: #e5e7eb;
}

.hero-card-main {
  margin-bottom: 16px;
}

.hero-card-main h2 {
  font-family: "Montserrat", system-ui, sans-serif;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 6px;
  color: #f9fafb;
}

.hero-card-main p {
  font-size: 13px;
  color: #cbd5f5;
}

.pill-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  margin-bottom: 14px;
}

.pill {
  font-size: 12px;
  padding: 7px 9px;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.7);
  background:
    linear-gradient(135deg, rgba(44, 164, 222, 0.16), rgba(88, 17, 155, 0.14)),
    rgba(15, 23, 42, 0.82);
  display: flex;
  align-items: center;
  gap: 7px;
  color: #e5e7eb;
}

.pill span {
  display: inline-flex;
  width: 18px;
  min-width: 18px;
  height: 18px;
  aspect-ratio: 1;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: rgba(56, 189, 248, 0.18);
  font-size: 12px;
  flex-shrink: 0;
}

.hero-card-footer {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 12px;
  color: #9ca3af;
}

.trust-logos {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 6px;
}

.trust-logo-pill {
  padding: 5px 9px;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.5);
  background:
    linear-gradient(135deg, rgba(44, 164, 222, 0.14), rgba(88, 17, 155, 0.14)),
    rgba(15, 23, 42, 0.72);
  font-size: 11px;
  color: #e5e7eb;
}

section {
  padding: 40px 0;
}

section[id] {
  scroll-margin-top: 90px;
}

.section-header {
  max-width: 720px;
  margin-bottom: 26px;
}

.section-kicker {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 6px;
  font-family: "Montserrat", system-ui, sans-serif;
}

.section-title {
  font-family: "Montserrat", system-ui, sans-serif;
  font-size: 24px;
  letter-spacing: -0.02em;
  margin-bottom: 8px;
  color: var(--color-primary-dark);
}

.section-subtitle {
  font-size: 15px;
  color: var(--color-text-soft);
}

.problem {
  background: radial-gradient(circle at top, #e5f1ff 0, #ffffff 60%);
  border-top: 1px solid rgba(148, 163, 184, 0.18);
  border-bottom: 1px solid rgba(148, 163, 184, 0.18);
}

.problem-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  gap: 28px;
  align-items: flex-start;
}

.problem-highlight {
  padding: 12px 14px;
  border-radius: var(--radius-md);
  background: #fee2e2;
  border: 1px solid #fecaca;
  color: #b91c1c;
  font-size: 13px;
  margin-bottom: 16px;
}

.problem-list {
  list-style: none;
  display: grid;
  gap: 8px;
  margin: 14px 0 0;
  font-size: 14px;
  color: var(--color-text-soft);
}

.problem-list li::before {
  content: "•";
  color: #b91c1c;
  margin-right: 6px;
}

.problem-badges {
  margin-top: 14px;
  display: grid;
  gap: 8px;
  font-size: 14px;
}

.problem-badge {
  padding: 8px 10px;
  border-radius: var(--radius-md);
  background: #fef2f2;
  border: 1px dashed #fecaca;
  color: #7f1d1d;
}

.problem-card {
  background:
    radial-gradient(circle at 10% 0, rgba(44, 164, 222, 0.22), transparent 55%),
    radial-gradient(circle at 90% 0, rgba(88, 17, 155, 0.2), transparent 55%),
    #0f172a;
  color: #e5e7eb;
  border-radius: var(--radius-lg);
  padding: 18px 18px 16px;
  box-shadow: var(--shadow-card);
  border: 1px solid rgba(148, 163, 184, 0.4);
}

.problem-card h3 {
  font-family: "Montserrat", system-ui, sans-serif;
  font-size: 16px;
  margin-bottom: 8px;
  color: #f9fafb;
}

.problem-card p {
  font-size: 13px;
  color: #cbd5f5;
  margin-bottom: 10px;
}

.problem-mini-list {
  display: grid;
  gap: 6px;
  font-size: 13px;
}

.problem-mini-item {
  display: flex;
  gap: 8px;
  align-items: flex-start;
}

.problem-mini-item span {
  font-size: 14px;
  margin-top: 2px;
}

.solution-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  gap: 28px;
  align-items: stretch;
}

.content-card-white {
  background: #ffffff;
  border-radius: var(--radius-lg);
  padding: 20px 22px;
  border: 1px solid var(--color-border);
  box-shadow: 0 10px 26px rgba(148, 163, 184, 0.18);
}

.solution-list {
  list-style: none;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 10px;
  margin-top: 14px;
  font-size: 14px;
}

.solution-list li {
  padding: 9px 10px;
  border-radius: var(--radius-md);
  background: #f3f4ff;
  border: 1px solid #e5e7eb;
  display: flex;
  align-items: center;
  gap: 8px;
}

.solution-list li span {
  font-size: 14px;
  color: #22c55e;
}

.solution-note {
  margin-top: 16px;
  font-size: 13px;
  color: var(--color-text-soft);
}

.solution-card {
  background:
    radial-gradient(circle at 10% 0, rgba(44, 164, 222, 0.22), transparent 55%),
    radial-gradient(circle at 90% 0, rgba(88, 17, 155, 0.2), transparent 55%),
    #020617;
  border-radius: var(--radius-lg);
  padding: 16px 16px 14px;
  color: #e5e7eb;
  border: 1px solid rgba(148, 163, 184, 0.5);
  box-shadow: var(--shadow-card);
}

.solution-steps {
  display: grid;
  gap: 7px;
  font-size: 13px;
}

.solution-step {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  padding: 7px 8px;
  border-radius: 10px;
  background:
    linear-gradient(135deg, rgba(44, 164, 222, 0.12), rgba(88, 17, 155, 0.12)),
    rgba(15, 23, 42, 0.9);
}

.solution-step-number {
  width: 22px;
  min-width: 22px;
  height: 22px;
  aspect-ratio: 1;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--color-accent), var(--color-accent-2));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  flex-shrink: 0;
}

.pillars {
  background: var(--color-bg);
}

.pillar-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.pillar-card {
  background: #ffffff;
  border-radius: var(--radius-lg);
  padding: 24px 20px;
  border: 1px solid var(--color-border);
  box-shadow: 0 12px 30px rgba(148, 163, 184, 0.25);
  display: flex;
  flex-direction: column;
}

.pillar-kicker {
  font-size: 14px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--color-accent);
  font-weight: 600;
  margin-bottom: 4px;
  font-family: "Montserrat", system-ui, sans-serif;
  text-align: center;
}



.pillar-logo {
  max-width: 260px;
  max-height: 90px;
  object-fit: contain;
  margin: 10px auto 25px; /* Slightly reduced general margin */
  display: block;
}

.pillar-logo.logo-moore {
  margin-top: 22px; /* Fine-tuned Moore alignment */
}

.pillar-logo.logo-26house {
  margin-top: 2px; /* 26house logo needs to be higher */
}

.pillar-logo.logo-small {
  max-width: 170px;
  max-height: 55px;
}

.pillar-sub {
  font-size: 13px;
  color: var(--color-text-soft);
  margin-bottom: 20px;
  text-align: center;
}

.pillar-person {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  margin-top: auto;
  padding-top: 20px;
  text-align: center;
}

.person-img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 12px;
  border: 4px solid var(--color-bg);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
  transition: transform 0.3s ease;
}

.pillar-person:hover .person-img {
  transform: scale(1.05);
}

.person-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.person-name {
  font-weight: 700;
  font-size: 16px;
  color: var(--color-primary-dark);
  font-family: "Montserrat", system-ui, sans-serif;
}

.person-title {
  font-size: 12px;
  color: var(--color-text-soft);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 2px;
}

.person-link {
  font-size: 14px;
  color: var(--color-accent);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.2s;
}

.person-link:hover {
  color: var(--color-primary);
  text-decoration: underline;
}

.pillar-list {
  list-style: none;
  display: grid;
  gap: 6px;
  font-size: 13px;
  color: var(--color-text-soft);
}

.pillar-list li::before {
  content: "›";
  color: var(--color-accent-2);
  margin-right: 6px;
}

.pillar-footer {
  margin-top: 10px;
  font-size: 12px;
  color: #6b7280;
}

.forwho-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  gap: 26px;
  align-items: stretch;
}

.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: flex-start; /* Aligned back to the left */
}

.tag {
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid #bae6fd;
  background: #f0f9ff;
  font-size: 13px;
  color: #0369a1;
  font-weight: 500;
  transition: all 0.2s ease;
}

.tag:hover {
  background: #e0f2fe;
  transform: translateY(-1px);
}

.forwho-card {
  background:
    radial-gradient(circle at 10% 0, rgba(44, 164, 222, 0.22), transparent 55%),
    radial-gradient(circle at 90% 0, rgba(88, 17, 155, 0.2), transparent 55%),
    #020617;
  border-radius: var(--radius-lg);
  padding: 16px 16px 14px;
  color: #e5e7eb;
  border: 1px solid rgba(148, 163, 184, 0.5);
  box-shadow: var(--shadow-card);
  font-size: 13px;
}

.forwho-card h3 {
  font-size: 14px;
  margin-bottom: 6px;
}

.forwho-card ul {
  list-style: none;
  display: grid;
  gap: 4px;
}

.forwho-card ul li::before {
  content: "✓";
  color: #22c55e;
  margin-right: 6px;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.step-card {
  background: #ffffff;
  border-radius: var(--radius-lg);
  padding: 14px 14px 12px;
  border: 1px solid var(--color-border);
  box-shadow: 0 10px 26px rgba(148, 163, 184, 0.25);
  font-size: 14px;
}

.step-number {
  width: 26px;
  min-width: 26px;
  height: 26px;
  aspect-ratio: 1;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--color-accent), var(--color-accent-2));
  display: flex;
  align-items: center;
  justify-content: center;
  color: #f9fafb;
  font-weight: 700;
  font-size: 13px;
  margin-bottom: 6px;
  flex-shrink: 0;
}

.step-title {
  font-weight: 600;
  color: var(--color-primary-dark);
  margin-bottom: 4px;
  font-family: "Montserrat", system-ui, sans-serif;
  font-size: 14px;
}

.step-desc {
  font-size: 13px;
  color: var(--color-text-soft);
}

.benefits-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  gap: 24px;
  align-items: stretch;
}

.benefit-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.benefit-chip {
  padding: 7px 11px;
  border-radius: 999px;
  background: #ecfdf5;
  color: #15803d;
  border: 1px solid #bbf7d0;
  font-size: 13px;
}

.risk-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 20px;
}

.risk-chip {
  padding: 10px 15px;
  border-radius: 999px;
  background: #fef2f2;
  color: #b91c1c;
  border: 1px solid #fecaca;
  font-size: 15px;
  font-weight: 500;
  box-shadow: 0 4px 6px rgba(185, 28, 28, 0.05);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.risk-chip:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(185, 28, 28, 0.1);
}

.cred-card {
  background:
    radial-gradient(circle at 10% 0, rgba(44, 164, 222, 0.22), transparent 55%),
    radial-gradient(circle at 90% 0, rgba(88, 17, 155, 0.2), transparent 55%),
    #020617;
  border-radius: var(--radius-lg);
  padding: 16px 16px 14px;
  color: #e5e7eb;
  border: 1px solid rgba(148, 163, 184, 0.5);
  box-shadow: var(--shadow-card);
  font-size: 13px;
}

.cred-card h3 {
  font-size: 14px;
  margin-bottom: 6px;
}

.cred-card ul {
  list-style: none;
  display: grid;
  gap: 4px;
}

.cred-card li::before {
  content: "★";
  color: #facc15;
  margin-right: 6px;
}

.lead {
  background: radial-gradient(circle at top, #e0f2fe 0, #ffffff 60%);
  border-top: 1px solid rgba(148, 163, 184, 0.18);
  border-bottom: 1px solid rgba(148, 163, 184, 0.18);
}

.lead-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  gap: 28px;
  align-items: start;
}

.lead-box {
  background:
    radial-gradient(circle at 10% 0, rgba(44, 164, 222, 0.22), transparent 55%),
    radial-gradient(circle at 90% 0, rgba(88, 17, 155, 0.2), transparent 55%),
    #0f172a;
  border-radius: var(--radius-lg);
  padding: 18px 18px 16px;
  color: #e5e7eb;
  border: 1px solid rgba(148, 163, 184, 0.5);
  box-shadow: var(--shadow-soft);
}

.lead-box h3 {
  font-family: "Montserrat", system-ui, sans-serif;
  font-size: 16px;
  margin-bottom: 8px;
  color: #f9fafb;
}

.lead-box p {
  font-size: 13px;
  color: #cbd5f5;
  margin-bottom: 10px;
}

.lead-list {
  list-style: none;
  display: grid;
  gap: 6px;
  font-size: 13px;
}

.lead-list li::before {
  content: "•";
  color: var(--color-accent);
  margin-right: 6px;
}

.badge-free {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  padding: 5px 10px;
  border-radius: 999px;
  border: 1px solid rgba(59, 130, 246, 0.6);
  background: rgba(15, 23, 42, 0.9);
  margin-top: 10px;
}

.form-card {
  background: #ffffff;
  border-radius: var(--radius-lg);
  padding: 18px 16px 16px;
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-card);
}

.form-card h3 {
  font-family: "Montserrat", system-ui, sans-serif;
  font-size: 15px;
  margin-bottom: 6px;
  color: var(--color-primary-dark);
}

.form-card p {
  font-size: 13px;
  color: var(--color-text-soft);
  margin-bottom: 12px;
}

.form-grid {
  display: grid;
  gap: 10px;
  margin-bottom: 10px;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-size: 13px;
}

.field label {
  color: var(--color-text-soft);
  font-weight: 500;
}

.field input,
.field textarea {
  border-radius: 10px;
  border: 1px solid var(--color-border);
  padding: 8px 10px;
  font-size: 14px;
  font-family: inherit;
  outline: none;
  transition: border-color 0.16s ease, box-shadow 0.16s ease, background 0.16s ease;
  background: #f9fafb;
}

.field textarea {
  resize: vertical;
  min-height: 72px;
}

.field input:focus,
.field textarea:focus {
  border-color: var(--color-accent-2);
  box-shadow: 0 0 0 1px rgba(88, 17, 155, 0.28);
  background: #ffffff;
}

.form-footnote {
  font-size: 11px;
  color: #6b7280;
  margin-top: 6px;
}

.final-cta {
  text-align: center;
}

.final-cta h2 {
  font-family: "Montserrat", system-ui, sans-serif;
  font-size: 22px;
  color: var(--color-primary-dark);
  margin-bottom: 8px;
}

.final-cta p {
  font-size: 14px;
  color: var(--color-text-soft);
  margin-bottom: 16px;
}

.final-note {
  font-size: 12px;
  color: var(--color-text-soft);
  margin-top: 8px;
}

/* PEPPOL HERO (Odoo + Peppol) */

.peppol-hero {
  border-radius: var(--radius-lg);
  border: 1px solid rgba(148, 163, 184, 0.35);
  background:
    radial-gradient(circle at 0 0, rgba(44, 164, 222, 0.22), transparent 45%),
    radial-gradient(circle at 100% 0, rgba(88, 17, 155, 0.18), transparent 45%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0.82));
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.12);
  padding: 18px;
}

.peppol-hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(0, 1fr);
  gap: 18px;
  align-items: start;
}

.peppol-hero-title {
  font-family: "Montserrat", system-ui, sans-serif;
  font-size: clamp(22px, 2.2vw, 28px);
  letter-spacing: -0.02em;
  color: var(--color-primary-dark);
  margin: 6px 0 10px;
  line-height: 1.2;
}

.peppol-hero-lead {
  font-size: 14px;
  color: var(--color-text-soft);
  margin-bottom: 12px;
}

.peppol-hero-lead strong {
  color: var(--color-primary-dark);
}

.peppol-hero-points {
  display: grid;
  gap: 10px;
  margin-top: 12px;
}

.peppol-point {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  padding: 10px 12px;
  border-radius: 14px;
  border: 1px solid rgba(148, 163, 184, 0.35);
  background: rgba(255, 255, 255, 0.7);
}

.peppol-point span {
  width: 22px;
  height: 22px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: #ffffff;
  background: linear-gradient(135deg, var(--color-accent), var(--color-accent-2));
  flex: 0 0 auto;
  margin-top: 1px;
}

.peppol-point strong {
  color: var(--color-primary-dark);
}

.peppol-point div {
  font-size: 13px;
  color: var(--color-text-soft);
  line-height: 1.45;
}

.peppol-hero-card {
  background:
    radial-gradient(circle at 10% 0, rgba(44, 164, 222, 0.22), transparent 55%),
    radial-gradient(circle at 90% 0, rgba(88, 17, 155, 0.2), transparent 55%),
    #020617;
  border-radius: var(--radius-lg);
  padding: 16px 16px 14px;
  color: #e5e7eb;
  border: 1px solid rgba(148, 163, 184, 0.5);
  box-shadow: var(--shadow-card);
}

.peppol-flow {
  display: grid;
  gap: 8px;
  margin-top: 8px;
}

.peppol-flow-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 10px;
  border-radius: 12px;
  background:
    linear-gradient(135deg, rgba(44, 164, 222, 0.12), rgba(88, 17, 155, 0.12)),
    rgba(15, 23, 42, 0.92);
  border: 1px solid rgba(148, 163, 184, 0.25);
  font-size: 13px;
  color: #e5e7eb;
}

.peppol-flow-item span {
  width: 22px;
  height: 22px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  background: linear-gradient(135deg, var(--color-accent), var(--color-accent-2));
  color: #ffffff;
  flex: 0 0 auto;
}

.peppol-hero-note {
  font-size: 12px;
  color: #cbd5f5;
  margin-top: 10px;
}

/* FAQ */

.faq {
  display: grid;
  gap: 12px;
  margin-top: 16px;
}

.faq-item {
  border-radius: var(--radius-lg);
  border: 1px solid rgba(148, 163, 184, 0.35);
  background:
    radial-gradient(circle at 0 0, rgba(44, 164, 222, 0.12), transparent 45%),
    radial-gradient(circle at 100% 0, rgba(88, 17, 155, 0.1), transparent 45%),
    rgba(255, 255, 255, 0.9);
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.08);
  overflow: hidden;
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 14px 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  font-weight: 600;
  color: var(--color-primary-dark);
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-icon {
  width: 28px;
  height: 28px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--color-accent), var(--color-accent-2));
  color: #ffffff;
  flex: 0 0 auto;
  font-weight: 800;
  transition: transform 0.18s ease;
}

.faq-item[open] .faq-icon {
  transform: rotate(45deg);
}

.faq-content {
  padding: 0 14px 14px;
  color: var(--color-text-soft);
  font-size: 14px;
  line-height: 1.6;
  overflow: hidden;
  transition: max-height 0.3s ease, opacity 0.3s ease;
}

/* Timeline (Míľniky) */

.timeline {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 8px;
  align-items: start;
}

.timeline-step {
  display: flex;
  gap: 10px;
  align-items: center;
  padding: 10px 10px;
  border-radius: 14px;
  background:
    linear-gradient(135deg, rgba(44, 164, 222, 0.12), rgba(88, 17, 155, 0.12)),
    rgba(15, 23, 42, 0.92);
  border: 1px solid rgba(148, 163, 184, 0.25);
}

.timeline-badge {
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  color: #ffffff;
  background: linear-gradient(135deg, var(--color-accent), var(--color-accent-2));
  flex: 0 0 auto;
  line-height: 1.1;
  margin-top: 1px;
}

.timeline-body {
  font-size: 13px;
  color: #e5e7eb;
  line-height: 1.45;
}

.timeline-body strong {
  color: #f9fafb;
}

.timeline-arrow {
  font-weight: 900;
  font-size: 18px;
  color: rgba(226, 232, 240, 0.85);
  text-align: center;
  transform: rotate(90deg);
  opacity: 0.95;
  padding: 2px 0;
}

footer {
  padding: 16px 0 22px;
  border-top: 1px solid rgba(148, 163, 184, 0.4);
  background:
    radial-gradient(circle at 10% 0, rgba(44, 164, 222, 0.24), transparent 55%),
    radial-gradient(circle at 90% 0, rgba(88, 17, 155, 0.22), transparent 55%),
    #0b1120;
  color: #9ca3af;
  font-size: 12px;
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  justify-content: space-between;
}

.footer-links {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.footer-links a {
  color: #9ca3af;
}

@media (max-width: 991px) {
  nav {
    display: none;
  }

  .hero-inner {
    grid-template-columns: minmax(0, 1fr);
  }

  .hero {
    padding-top: 26px;
  }

  .problem-grid,
  .solution-grid,
  .forwho-grid,
  .benefits-grid,
  .lead-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .lead-grid {
    gap: 20px;
  }

  .peppol-hero-inner {
    grid-template-columns: minmax(0, 1fr);
  }

  /* timeline already vertical on all sizes */
}

@media (max-width: 800px) {

  .pillar-grid,
  .steps-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .hero-ctas {
    flex-direction: column;
    align-items: stretch;
  }

  .btn {
    white-space: normal;
    word-wrap: break-word;
    padding: 10px 16px;
  }

  .pill-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .solution-list {
    grid-template-columns: minmax(0, 1fr);
  }

  .pillar-grid,
  .steps-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  header {
    position: sticky !important;
    top: 0 !important;
    z-index: 1000 !important;
    background: white !important;
  }

  .header-inner {
    padding: 10px 16px;
  }

  .container {
    padding: 0 16px;
  }

  section {
    padding: 28px 0;
  }

  .hero {
    padding-bottom: 40px;
  }

  .hero-countdown {
    width: 100%;
    justify-content: center;
    flex-wrap: wrap;
  }

  .cd-timer {
    gap: 10px;
  }

  .cd-item {
    min-width: 38px;
  }

  .cd-val {
    font-size: 20px;
  }
}


/* Cookie Banner */
.cookie-banner {
  position: fixed;
  bottom: 20px;
  left: 20px;
  right: 20px;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(148, 163, 184, 0.3);
  border-radius: var(--radius-lg);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
  padding: 24px;
  z-index: 1000;
  display: none;
  flex-direction: column;
  gap: 20px;
  max-width: calc(var(--max-width) - 40px);
  margin: 0 auto;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.cookie-banner.show {
  display: flex;
  opacity: 1;
  transform: translateY(0);
}

@media (min-width: 992px) {
  .cookie-banner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 24px 40px;
  }
}

.cookie-content {
  flex: 1;
}

.cookie-title {
  font-weight: 700;
  font-size: 18px;
  color: var(--color-primary-dark);
  margin-bottom: 8px;
  display: block;
}

.cookie-text {
  font-size: 14px;
  color: var(--color-text-soft);
  line-height: 1.5;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  flex-shrink: 0;
}

.cookie-actions .btn {
  padding: 12px 24px;
}

/* Cookie Modal */
.cookie-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.6);
  backdrop-filter: blur(8px);
  z-index: 1100;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.cookie-modal-overlay.show {
  display: flex;
  opacity: 1;
}

.cookie-modal {
  background: white;
  border-radius: var(--radius-lg);
  padding: 32px;
  max-width: 540px;
  width: 100%;
  box-shadow: var(--shadow-soft);
  transform: scale(0.95);
  transition: transform 0.3s ease;
}

.cookie-modal-overlay.show .cookie-modal {
  transform: scale(1);
}

.cookie-modal h3 {
  font-size: 20px;
  margin-bottom: 24px;
  color: var(--color-primary-dark);
}

.cookie-options {
  margin-bottom: 24px;
}

.cookie-option {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 16px;
  padding: 16px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  transition: border-color 0.2s ease;
}

.cookie-option:hover {
  border-color: var(--color-accent);
}

.cookie-option input[type="checkbox"] {
  width: 20px;
  height: 20px;
  margin-top: 2px;
  cursor: pointer;
  accent-color: var(--color-accent);
}

.cookie-option-info {
  display: flex;
  flex-direction: column;
}

.cookie-option-label {
  font-weight: 600;
  font-size: 15px;
  color: var(--color-primary);
  margin-bottom: 4px;
}

.cookie-option-desc {
  font-size: 13px;
  color: var(--color-text-soft);
  line-height: 1.4;
}

.cookie-modal-footer {
  display: flex;
  justify-content: flex-end;
  gap: 12px;
  padding-top: 12px;
  border-top: 1px solid var(--color-border);
}



/* --- REFINED UI & RESPONSIVE FIXES --- */

/* Trust Badge Centering */
.badge-trust {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  text-align: center !important;
}

/* Header Refinement */
.header-inner {
  display: flex !important;
  justify-content: space-between !important;
  align-items: center !important;
  width: 100% !important;
}

.header-right {
  display: flex;
  align-items: center;
  gap: 15px;
  flex-wrap: nowrap;
}

.logo-group {
  flex-shrink: 0 !important;
}

.burger-btn {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: white;
  border: 1px solid var(--color-border);
  border-radius: 8px;
  cursor: pointer;
  padding: 8px;
  z-index: 1200;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.burger-btn span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--color-primary);
  transition: 0.3s;
  margin: 0 auto;
}

/* Burger Animation */
.burger-btn.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.burger-btn.open span:nth-child(2) {
  opacity: 0;
}

.burger-btn.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* --- MOBILE MENU OVERLAY --- */
@media (max-width: 991px) {
  #main-nav.open {
    display: flex !important;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    width: 100vw;
    margin-left: -20px;
    /* Offset the container padding if necessary, but actually let's just use fixed */
    background: white;
    flex-direction: column;
    align-items: flex-start;
    padding: 20px 40px;
    gap: 15px;
    z-index: 999;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    max-height: 85vh;
    overflow-y: auto;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
  }

  .header-inner {
    position: relative;
  }

  #main-nav.open {
    left: 50%;
    transform: translateX(-50%);
    width: 100vw;
  }

  #main-nav.open a {
    font-size: 16px;
    color: var(--color-primary-dark);
    font-weight: 500;
    padding: 8px 0;
    width: 100%;
    border-bottom: 1px solid #f1f5f9;
  }

  #main-nav.open a:last-child {
    border-bottom: none;
    margin-top: 10px;
  }

  body.menu-open {
    overflow: hidden;
  }
}

@media (max-width: 480px) {
  .logo-text {
    display: flex;
  }
}

@media (max-width: 480px) {
  .logo-text span {
    font-size: 13px;
    line-height: 1.2;
  }

  .logo-text small {
    font-size: 10px;
    line-height: 1.2;
  }

  .logo-image {
    width: 48px;
    height: 48px;
  }

  .logo-group {
    gap: 8px;
  }
}

/* Cookie Banner Styles Cleaned */
.cookie-banner {
  position: fixed;
  bottom: 20px;
  left: 20px;
  right: 20px;
  background: white;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  padding: 24px;
  z-index: 2000;
  display: none;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.cookie-banner.show {
  display: flex;
  flex-direction: column;
  gap: 15px;
  opacity: 1;
  transform: translateY(0);
}

@media (min-width: 768px) {
  .cookie-banner.show {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}

.cookie-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 2100;
  padding: 20px;
}

.cookie-modal-overlay.show {
  display: flex;
}

.cookie-modal {
  background: white;
  border-radius: 16px;
  padding: 30px;
  max-width: 500px;
  width: 100%;
}

/* --- COUNTDOWN HERO COMPONENT --- */

.hero-countdown {
  display: inline-flex;
  align-items: center;
  gap: 20px;
  background: white;
  backdrop-filter: blur(10px);
  padding: 12px 24px;
  border-radius: 999px;
  border: 1px solid rgba(44, 164, 222, 0.3);
  box-shadow: 0 15px 45px rgba(0, 51, 102, 0.1);
  margin-bottom: 24px;
  animation: cd-float 4s ease-in-out infinite;
}

@keyframes cd-float {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-5px);
  }
}

.cd-label {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--color-primary);
  border-right: 1px solid rgba(0, 0, 0, 0.1);
}

.cd-timer {
  display: flex;
  gap: 16px;
  align-items: center;
}

.cd-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 45px;
}

.cd-val {
  font-size: 32px;
  font-weight: 800;
  background: linear-gradient(135deg, var(--color-accent), var(--color-accent-2));
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1;
}

.cd-unit {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--color-text-soft);
  margin-top: 2px;
}

@media (max-width: 640px) {
  .hero-countdown {
    padding: 8px 12px;
    gap: 8px;
    width: 100%;
    justify-content: center;
    flex-wrap: wrap;
  }

  .cd-label {
    font-size: 10px;
    padding-right: 8px;
    width: 100%;
    text-align: center;
    border-right: none;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    padding-bottom: 4px;
    margin-bottom: 4px;
  }

  .cd-timer {
    width: 100%;
    justify-content: center;
    gap: 12px;
  }

  .cd-val {
    font-size: 20px;
  }

  .cd-item {
    min-width: 32px;
  }
}

/* --- PROBLEM CHECKLIST COMPONENT --- */

.problem-checklist {
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(10px);
  padding: 24px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(148, 163, 184, 0.3);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}

.problem-checklist h3 {
  font-family: "Montserrat", sans-serif;
  font-size: 19px;
  font-weight: 700;
  color: var(--color-primary-dark);
  margin-bottom: 20px;
  line-height: 1.3;
}

.checklist-grid {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 22px;
}

.check-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 14px;
  cursor: pointer;
  padding: 10px 14px;
  border-radius: 12px;
  background: white;
  border: 1px solid #f1f5f9;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.check-item:hover {
  border-color: var(--color-accent);
  background: #f0f7ff;
  transform: translateX(4px);
}

.check-item input[type="checkbox"] {
  width: 20px;
  height: 20px;
  border-radius: 6px;
  border: 2px solid #cbd5e1;
  accent-color: var(--color-accent);
  cursor: pointer;
  flex-shrink: 0;
  margin-top: 1px;
}

.check-item span {
  color: var(--color-text);
  line-height: 1.4;
  font-weight: 500;
}

.checklist-summary {
  font-weight: 700;
  color: #b91c1c;
  font-size: 15px;
  background: #fee2e2;
  padding: 10px 14px;
  border-radius: 10px;
  display: inline-block;
  margin-bottom: 12px;
}

@media (max-width: 640px) {
  .problem-checklist {
    padding: 18px;
  }
}



/* --- PROBLEM ILLUSTRATION --- */

.problem-right-col {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.problem-illustration {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0;
  margin-bottom: -220px;
  position: relative;
  z-index: 5;
  pointer-events: none;
}

.problem-illustration img {
  max-width: 480px;
  height: auto;
  opacity: 0.9;
  filter: drop-shadow(0 25px 50px rgba(0, 51, 102, 0.12));
  animation: float-slow 8s ease-in-out infinite;
}

@keyframes float-slow {

  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }

  50% {
    transform: translateY(-12px) rotate(1.5deg);
  }
}

.desktop-only {
  display: flex !important;
}

@media (max-width: 991px) {
  .desktop-only {
    display: none !important;
  }
}



/* --- SECTION OVERLAP FIX --- */

#process {
  background: white;
  position: relative;
  z-index: 10;
}

.problem {
  overflow: visible !important;
}