@import url("https://fonts.googleapis.com/css2?family=IBM+Plex+Sans:wght@400;500;600&family=Sora:wght@400;500;600;700&display=swap");

/* â”€â”€ Design Tokens â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
:root {
  --bg:          #f0feff;
  --surface:     #ffffff;
  --ink:         #0b1220;
  --muted:       #4d5d78;
  --line:        #dbe5ff;
  --accent:      #4e71ff;
  --accent-2:    #5409da;
  --footer-bg:   #07091a;
  --card-shadow: 0 4px 24px rgba(13, 20, 35, 0.07);
  --card-shadow-hover: 0 16px 48px rgba(13, 20, 35, 0.14);
  --radius-lg:   22px;
  --radius-md:   14px;
  --radius-sm:   10px;
  --max-content: 1160px;
  --section-pad: 96px;
  --gutter:      40px;
}

/* â”€â”€ Reset â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; overflow-x: hidden; }

body {
  margin: 0;
  font-family: "IBM Plex Sans", sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 50% at 50% -10%, rgba(84, 9, 218, 0.12), transparent),
    radial-gradient(ellipse 60% 40% at 10% 50%, rgba(78, 113, 255, 0.08), transparent);
  z-index: -1;
  pointer-events: none;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
main { overflow: hidden; }

/* â”€â”€ Skip Link â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.skip-link {
  position: absolute;
  left: -999px;
  top: 8px;
  background: #fff;
  color: var(--ink);
  padding: 8px 16px;
  border-radius: 999px;
  border: 1px solid var(--line);
  z-index: 200;
  font-size: 0.875rem;
  font-weight: 500;
}
.skip-link:focus { left: 12px; }

/* â”€â”€ Container â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--gutter);
}

/* â”€â”€ Header â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  background: rgba(240, 254, 255, 0.92);
  border-bottom: 1px solid rgba(219, 229, 255, 0.6);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  gap: 16px;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.logo img {
  height: 34px;
  width: auto;
}

.logo-text {
  font-family: "Sora", sans-serif;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.01em;
  color: var(--accent-2);
}

.site-header .logo-text { display: none; }

.nav {
  display: flex;
  gap: 4px;
  flex: 1;
  justify-content: center;
  flex-wrap: nowrap;
}

.nav a {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 500;
  padding: 6px 9px;
  border-radius: 8px;
  transition: color 0.15s, background 0.15s;
  white-space: nowrap;
}

.nav a:hover {
  color: var(--accent-2);
  background: rgba(84, 9, 218, 0.06);
}

.header-actions {
  display: flex;
  gap: 10px;
  align-items: center;
  flex-shrink: 0;
}

.lang-select {
  border: 1px solid var(--line);
  background: #fff;
  padding: 7px 10px;
  border-radius: 999px;
  font-size: 0.78rem;
  font-family: inherit;
  color: var(--muted);
  cursor: pointer;
}

.nav-toggle {
  display: none;
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 10px;
  padding: 7px;
  cursor: pointer;
  color: var(--ink);
  line-height: 0;
  align-items: center;
  justify-content: center;
}

.icon-hamburger { display: block; }
.icon-close     { display: none;  }
.nav-toggle[aria-expanded="true"] .icon-hamburger { display: none;  }
.nav-toggle[aria-expanded="true"] .icon-close     { display: block; }

/* â”€â”€ Hero â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.hero {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 56px;
  align-items: center;
  max-width: var(--max-content);
  margin: 0 auto;
  padding: 96px var(--gutter) 80px;
}

.hero-content h1 {
  font-family: "Sora", sans-serif;
  font-size: clamp(2.1rem, 4.5vw, 3.5rem);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -0.025em;
  color: var(--ink);
  margin: 0 0 18px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-size: 0.68rem;
  font-weight: 600;
  color: var(--accent-2);
  margin: 0 0 16px;
}

.eyebrow::before {
  content: "";
  display: inline-block;
  width: 18px;
  height: 2px;
  background: var(--accent);
  border-radius: 2px;
  flex-shrink: 0;
}

.lead {
  font-size: 1.08rem;
  color: var(--muted);
  line-height: 1.68;
  max-width: 520px;
  margin: 0 0 4px;
}

.micro {
  font-size: 0.84rem;
  color: var(--muted);
  margin-top: 18px;
  opacity: 0.7;
}

.hero-visual {
  background: var(--surface);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--card-shadow);
  border: 1px solid var(--line);
}

/* â”€â”€ Sections â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.section {
  padding: var(--section-pad) var(--gutter);
}

.section.alt {
  background: var(--surface);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

/* â”€â”€ Section Head â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.section-head {
  max-width: 680px;
  margin-bottom: 44px;
}

.section-head h2 {
  margin: 0 0 14px;
  font-family: "Sora", sans-serif;
  font-size: clamp(1.65rem, 3vw, 2.3rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.22;
  color: var(--ink);
}

.section-head p {
  margin: 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.65;
}

/* â”€â”€ Width-constrained section content â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
/* Grids need explicit max-width since they are block elements */
.card-grid,
.steps,
.comparison,
.pill-list,
.inline-list {
  max-width: var(--max-content);
}

/* â”€â”€ Card Grid â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 18px;
}

.card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 24px;
  box-shadow: var(--card-shadow);
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: var(--card-shadow-hover);
  border-color: rgba(84, 9, 218, 0.2);
}

.card h3 {
  margin: 0;
  font-family: "Sora", sans-serif;
  font-size: 1.02rem;
  font-weight: 600;
  color: var(--ink);
}

.card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.6;
}

.card .icon {
  width: 38px;
  height: 38px;
  color: var(--accent);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: var(--accent-2);
  font-weight: 600;
  font-size: 0.85rem;
  margin-top: auto;
  padding-top: 8px;
  transition: gap 0.15s;
}

.text-link::after {
  content: "â†’";
  transition: transform 0.15s;
}

.text-link:hover::after { transform: translateX(4px); }

/* â”€â”€ Lists â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.mini-list {
  list-style: none;
  margin: 0;
  padding: 0;
  color: var(--muted);
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 0.88rem;
}

.pill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.pill-list li {
  background: rgba(84, 9, 218, 0.07);
  color: var(--accent-2);
  padding: 9px 18px;
  border-radius: 999px;
  font-size: 0.88rem;
  font-weight: 500;
  border: 1px solid rgba(84, 9, 218, 0.12);
}

.inline-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.inline-list li {
  background: rgba(78, 113, 255, 0.06);
  color: var(--muted);
  padding: 8px 16px;
  border-radius: 8px;
  font-size: 0.875rem;
  border: 1px solid rgba(78, 113, 255, 0.12);
}

/* â”€â”€ Badge â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.badge-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 16px 0 0;
}

.badge {
  background: rgba(141, 216, 255, 0.35);
  color: var(--accent-2);
  padding: 5px 12px;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 500;
}

/* â”€â”€ Process Steps â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 16px;
  counter-reset: step-counter;
}

.step {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 22px 20px;
  counter-increment: step-counter;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.step:hover {
  border-color: rgba(84, 9, 218, 0.25);
  box-shadow: 0 8px 32px rgba(84, 9, 218, 0.06);
}

.step::before {
  content: counter(step-counter, decimal-leading-zero);
  display: block;
  font-family: "Sora", sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--accent);
  opacity: 0.35;
  line-height: 1;
  margin-bottom: 14px;
}

.step h3 {
  margin: 0 0 6px;
  font-family: "Sora", sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--ink);
}

.step p {
  margin: 0;
  color: var(--muted);
  font-size: 0.875rem;
}

/* â”€â”€ Comparison â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.comparison {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.comparison .column {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 24px;
}

.comparison .column.tailored {
  border-color: rgba(84, 9, 218, 0.25);
  background: rgba(84, 9, 218, 0.02);
}

.comparison h3 {
  margin: 0 0 16px;
  font-family: "Sora", sans-serif;
  font-size: 1rem;
  font-weight: 600;
}

.comparison ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.comparison ul li {
  font-size: 0.9rem;
  color: var(--muted);
  padding-left: 22px;
  position: relative;
}

.comparison ul li::before {
  content: "âœ—";
  position: absolute;
  left: 0;
  color: #c0392b;
  font-size: 0.85rem;
}

.comparison .tailored ul li::before {
  content: "âœ“";
  color: #27ae60;
}

/* â”€â”€ Buttons â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.cta-group {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 28px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  border: 1.5px solid transparent;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
  cursor: pointer;
  white-space: nowrap;
  font-family: inherit;
}

.btn.primary {
  background: var(--accent-2);
  color: #fff;
  box-shadow: 0 8px 28px rgba(84, 9, 218, 0.28);
}

.btn.primary:hover {
  background: #6612f5;
  transform: translateY(-2px);
  box-shadow: 0 14px 36px rgba(84, 9, 218, 0.38);
}

.btn.ghost {
  border-color: rgba(84, 9, 218, 0.3);
  color: var(--accent-2);
  background: #fff;
}

.btn.ghost:hover {
  border-color: rgba(84, 9, 218, 0.5);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(84, 9, 218, 0.08);
}

.btn.small {
  padding: 8px 18px;
  font-size: 0.82rem;
}

/* â”€â”€ CTA Band â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.cta-band {
  background: linear-gradient(130deg, #3d02b8 0%, #4e71ff 100%);
  color: #fff;
  padding: 64px var(--gutter);
  display: flex;
  align-items: center;
  gap: 40px;
}

.cta-band-content { flex: 1; }

.cta-band h2 {
  margin: 0 0 12px;
  font-family: "Sora", sans-serif;
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 700;
}

.cta-band p {
  margin: 0;
  opacity: 0.88;
  font-size: 1.05rem;
  max-width: 480px;
}

.cta-band .btn.primary {
  background: #fff;
  color: var(--accent-2);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.2);
}

.cta-band .btn.primary:hover {
  background: #f5f0ff;
  transform: translateY(-2px);
}

.cta-band .btn.ghost {
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.4);
  color: #fff;
}

.cta-band .btn.ghost:hover {
  background: rgba(255,255,255,0.22);
  box-shadow: none;
  transform: translateY(-2px);
}

/* â”€â”€ Forms â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.form-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--card-shadow);
  max-width: 760px;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.field label {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--ink);
}

.field input,
.field select,
.field textarea {
  border: 1.5px solid var(--line);
  border-radius: 10px;
  padding: 10px 14px;
  font-family: inherit;
  font-size: 0.95rem;
  background: #fff;
  color: var(--ink);
  transition: border-color 0.15s, box-shadow 0.15s;
  outline: none;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(78, 113, 255, 0.12);
}

.field textarea { min-height: 110px; resize: vertical; }

.consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.85rem;
  color: var(--muted);
}

.consent input { margin-top: 3px; }

/* â”€â”€ FAQ / Details â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
details {
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  background: var(--surface);
  max-width: var(--max-content);
}

details + details { margin-top: 10px; }

summary {
  font-weight: 600;
  cursor: pointer;
  font-size: 1rem;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

summary::-webkit-details-marker { display: none; }

summary::after {
  content: "+";
  font-size: 1.4rem;
  color: var(--accent-2);
  font-weight: 300;
  flex-shrink: 0;
  line-height: 1;
}

details[open] summary::after { content: "âˆ’"; }

details p {
  color: var(--muted);
  margin: 12px 0 0;
  font-size: 0.95rem;
  line-height: 1.65;
}

/* â”€â”€ Legal â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.legal {
  color: var(--muted);
  max-width: 820px;
  line-height: 1.75;
}

.legal p { margin-top: 0; }

/* â”€â”€ Footer â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.site-footer {
  background: var(--footer-bg);
  color: rgba(255, 255, 255, 0.5);
  padding: 64px 0 32px;
}

.site-footer .logo-text { color: rgba(255,255,255,0.9); }
.site-footer .logo img  { filter: brightness(0) invert(1); opacity: 0.85; }

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 48px;
}

.footer-grid > div:first-child p {
  margin: 10px 0 0;
  font-size: 0.875rem;
  line-height: 1.65;
  max-width: 280px;
  color: rgba(255,255,255,0.45);
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links strong {
  color: rgba(255,255,255,0.7);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 4px;
  display: block;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.875rem;
  transition: color 0.15s;
}

.footer-links a:hover { color: #fff; }

.footer-meta {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.25);
  border-top: 1px solid rgba(255,255,255,0.07);
  padding-top: 24px;
  margin-top: 0;
}

/* â”€â”€ Reveal Animation â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.reveal {
  animation: fadeUp 0.6s ease both;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(18px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* â”€â”€ Cookie Consent Banner â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
#cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: #0d0d14;
  color: #e8eaf6;
  border-top: 2px solid var(--accent-2);
  padding: 20px 24px;
  display: none;
  font-size: 0.875rem;
  line-height: 1.5;
}

#cookie-banner.visible { display: block; }

.cookie-inner {
  max-width: 960px;
  margin: 0 auto;
}

.cookie-inner h2 {
  font-size: 1rem;
  font-weight: 600;
  color: #fff;
  margin: 0 0 6px;
}

.cookie-inner p {
  margin: 0 0 14px;
  color: #aab4d4;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

.cookie-link {
  color: var(--accent);
  font-size: 0.8rem;
  text-decoration: underline;
  margin-left: auto;
}

#cookie-prefs {
  margin-top: 16px;
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 14px;
  display: none;
}

#cookie-prefs.open { display: block; }

.cookie-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.cookie-row:last-child { border-bottom: none; }

.cookie-row-info h3 {
  font-size: 0.875rem;
  font-weight: 600;
  color: #fff;
  margin: 0 0 2px;
}

.cookie-row-info p {
  font-size: 0.8rem;
  color: #aab4d4;
  margin: 0;
}

.cookie-toggle {
  position: relative;
  flex-shrink: 0;
  width: 42px;
  height: 24px;
}

.cookie-toggle input {
  opacity: 0;
  width: 0;
  height: 0;
}

.cookie-toggle .slider {
  position: absolute;
  inset: 0;
  background: #3a3f5c;
  border-radius: 24px;
  cursor: pointer;
  transition: background 0.2s;
}

.cookie-toggle .slider::before {
  content: "";
  position: absolute;
  width: 18px;
  height: 18px;
  left: 3px;
  top: 3px;
  background: #fff;
  border-radius: 50%;
  transition: transform 0.2s;
}

.cookie-toggle input:checked + .slider { background: var(--accent-2); }
.cookie-toggle input:checked + .slider::before { transform: translateX(18px); }
.cookie-toggle input:disabled + .slider { opacity: 0.5; cursor: not-allowed; }

/* â”€â”€ Responsive: â‰¤ 1100px â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
@media (max-width: 1100px) {
  :root { --gutter: 32px; }

  .nav a { font-size: 0.78rem; padding: 5px 7px; }
}

/* â”€â”€ Responsive: â‰¤ 860px â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
@media (max-width: 860px) {
  :root {
    --gutter: 24px;
    --section-pad: 64px;
  }

  /* Sticky header */
  .site-header { position: sticky; top: 0; }

  /* Mobile nav dropdown */
  .nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    background: var(--surface);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    padding: 4px 24px 16px;
    box-shadow: 0 12px 40px rgba(13, 20, 35, 0.12);
    z-index: 99;
    gap: 0;
  }

  .nav.open { display: flex; }

  .nav a {
    padding: 13px 0;
    border-bottom: 1px solid var(--line);
    font-size: 0.95rem;
    color: var(--ink);
    border-radius: 0;
  }

  .nav a:last-child { border-bottom: none; }
  .nav a:hover { background: transparent; color: var(--accent-2); }

  .nav-toggle { display: inline-flex; }

  /* Hero */
  .hero {
    grid-template-columns: 1fr;
    padding: 64px var(--gutter) 52px;
    gap: 32px;
  }

  .hero-visual {
    max-height: 280px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .hero-visual img {
    max-height: 250px;
    width: auto;
    margin: 0 auto;
  }

  /* Layout */
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; }

  .cta-band {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
  }

  .comparison { grid-template-columns: 1fr; }
}

/* â”€â”€ Responsive: â‰¤ 600px â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
@media (max-width: 600px) {
  :root {
    --gutter: 20px;
    --section-pad: 48px;
  }

  .hero {
    padding: 48px var(--gutter) 40px;
    gap: 24px;
  }

  .hero-content h1 { font-size: clamp(1.75rem, 7.5vw, 2.2rem); }
  .hero-visual { display: none; }
  .lead { font-size: 1rem; }
  .micro { margin-top: 12px; }

  .section-head { margin-bottom: 28px; }
  .section-head h2 { font-size: clamp(1.35rem, 5.5vw, 1.75rem); }

  .card-grid { grid-template-columns: 1fr; gap: 12px; }
  .steps     { grid-template-columns: 1fr; }
  .comparison { grid-template-columns: 1fr; }
  .form-grid  { grid-template-columns: 1fr; }

  .cta-group {
    flex-direction: column;
    align-items: stretch;
  }

  .cta-group .btn { justify-content: center; }

  .btn, .btn.primary, .btn.ghost { padding: 14px 22px; font-size: 0.95rem; }

  .lang-select { display: none; }
  .logo-text   { font-size: 0.9rem; }

  .cta-band { padding: 44px var(--gutter); }
  .cta-band h2 { font-size: 1.4rem; }

  .footer-grid { grid-template-columns: 1fr; gap: 24px; }

  .header-inner { padding: 10px 0; }

  .cookie-actions { flex-direction: column; align-items: stretch; }
  .cookie-link { margin-left: 0; }

  details { padding: 14px 16px; }
  summary  { font-size: 0.95rem; }
}

/* â”€â”€ Phase B additions: proof, testimonials, pricing tiers â”€â”€â”€ */

.section-proof .section-head { margin-bottom: 32px; }
.proof-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
  max-width: var(--max-content);
  margin: 0 auto;
}
.stat {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  text-align: center;
  box-shadow: var(--card-shadow);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.stat:hover { transform: translateY(-3px); box-shadow: var(--card-shadow-hover); }
.stat-value {
  display: block;
  font-family: "Sora", sans-serif;
  font-size: 2.4rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--accent-2), var(--accent));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  line-height: 1.1;
  margin-bottom: 8px;
}
.stat-label {
  display: block;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.4;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  max-width: var(--max-content);
  margin: 0 auto;
}
.testimonial {
  margin: 0;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--card-shadow);
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.testimonial blockquote {
  margin: 0;
  font-size: 1.05rem;
  line-height: 1.55;
  color: var(--ink);
  position: relative;
  padding-left: 18px;
  border-left: 3px solid var(--accent);
}
.testimonial figcaption {
  font-size: 0.875rem;
  color: var(--muted);
  font-weight: 500;
}

.pricing-tiers {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  max-width: var(--max-content);
  margin: 0 auto;
  align-items: stretch;
}
.tier {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  box-shadow: var(--card-shadow);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.tier:hover { transform: translateY(-4px); box-shadow: var(--card-shadow-hover); }
.tier-recommended {
  border-color: var(--accent);
  border-width: 2px;
  box-shadow: 0 16px 48px rgba(78, 113, 255, 0.18);
}
.tier-badge {
  position: absolute;
  top: -12px;
  right: 20px;
  background: linear-gradient(135deg, var(--accent-2), var(--accent));
  color: #fff;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 999px;
}
.tier header h3 {
  margin: 0 0 8px;
  font-family: "Sora", sans-serif;
  font-size: 1.4rem;
}
.tier-price {
  font-family: "Sora", sans-serif;
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.1;
}
.tier-period {
  font-size: 0.875rem;
  color: var(--muted);
  margin-top: 4px;
}
.tier > p {
  color: var(--muted);
  font-size: 0.95rem;
  margin: 0;
}
.tier ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}
.tier ul li {
  position: relative;
  padding-left: 24px;
  font-size: 0.95rem;
  color: var(--ink);
}
.tier ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent-2), var(--accent));
  mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12'><path d='M2 6.5l2.5 2.5L10 3.5' stroke='black' stroke-width='2' fill='none' stroke-linecap='round' stroke-linejoin='round'/></svg>") no-repeat center / contain;
  -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12'><path d='M2 6.5l2.5 2.5L10 3.5' stroke='black' stroke-width='2' fill='none' stroke-linecap='round' stroke-linejoin='round'/></svg>") no-repeat center / contain;
}
.tier .btn { margin-top: 8px; }

.cta-group-center { justify-content: center; display: flex; gap: 12px; flex-wrap: wrap; }

@media (max-width: 720px) {
  .stat-value { font-size: 2rem; }
  .tier { padding: 24px 22px; }
  .tier-price { font-size: 1.5rem; }
}

/* ── Accessibility: keyboard focus rings ─────────────────── */
:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  border-radius: 4px;
}
.btn:focus-visible {
  outline-offset: 4px;
}
.skip-link:focus-visible,
a:focus-visible,
button:focus-visible,
select:focus-visible,
summary:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}
input:focus-visible,
textarea:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 1px;
}

/* ── Accessibility: keyboard focus rings ─────────────────── */
:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  border-radius: 4px;
}
.btn:focus-visible {
  outline-offset: 4px;
}
.skip-link:focus-visible,
a:focus-visible,
button:focus-visible,
select:focus-visible,
summary:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}
input:focus-visible,
textarea:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 1px;
}

/* ── Mobile-first refinement layer ───────────────────────────
   Goal: full responsive support down to 320px viewport width.
   Fixes: tap targets, language switcher visibility on mobile,
   long-text overflow, cookie banner, pricing tiers on small,
   and reduced-motion accessibility.
   ──────────────────────────────────────────────────────────── */

/* Prevent any element from forcing horizontal scroll */
img, svg, video, iframe { max-width: 100%; height: auto; }

/* Long words / URLs in copy should wrap, not overflow */
.lead, .card p, .step p, .testimonial blockquote,
.tier > p, .tier ul li, .legal, details p {
  overflow-wrap: anywhere;
  word-break: break-word;
}

/* Buttons may wrap on small screens (German labels are long) */
@media (max-width: 600px) {
  .btn { white-space: normal; text-align: center; }
}

/* ── ≤ 1024px: tighten nav spacing earlier ───────────────── */
@media (max-width: 1024px) {
  .nav a { font-size: 0.78rem; padding: 5px 7px; }
  .header-actions { gap: 8px; }
}

/* ── ≤ 860px: mobile menu adjustments ────────────────────── */
@media (max-width: 860px) {
  /* Larger tap targets */
  .nav-toggle {
    min-width: 44px;
    min-height: 44px;
    padding: 10px;
  }

  /* Language switcher visible on mobile (was hidden at 600px) */
  .lang-select {
    padding: 9px 12px;
    font-size: 0.82rem;
    min-height: 40px;
  }

  /* Hide the "Get audit" CTA inside header on tablet/phone — it lives
     inside the open nav menu via locale CTAs on each page. Keeps
     header-actions area clean for lang + toggle. */
  .header-actions .btn.small.primary { display: none; }

  /* Mobile nav: comfortable tap targets */
  .nav a { padding: 14px 0; min-height: 44px; display: flex; align-items: center; }
}

/* ── ≤ 600px: phone refinements ──────────────────────────── */
@media (max-width: 600px) {
  /* Re-show language switcher (override earlier display:none rule) */
  .lang-select { display: inline-flex; }

  /* Hero text scaling */
  .hero-content h1 { font-size: clamp(1.85rem, 8vw, 2.3rem); }
  .hero-content { padding: 0; }

  /* Section heads scale down */
  .section-head { margin-bottom: 24px; }

  /* CTA band stacks vertically with full-width buttons */
  .cta-band {
    text-align: center;
    align-items: stretch;
    padding: 40px var(--gutter);
  }
  .cta-band-content { text-align: left; }
  .cta-band .cta-group { justify-content: stretch; }
  .cta-band .btn { width: 100%; }

  /* Form card slimmer padding */
  .form-card { padding: 22px 18px; }

  /* Pricing tiers single column with reset transforms */
  .pricing-tiers { gap: 16px; }
  .tier { padding: 26px 22px; gap: 14px; }
  .tier-recommended { transform: none; }
  .tier-badge { right: 16px; top: -10px; font-size: 0.68rem; padding: 3px 10px; }
  .tier:hover { transform: none; }

  /* Proof grid: prefer 2 columns on phones for compact stat band */
  .proof-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .stat { padding: 22px 14px; }
  .stat-value { font-size: 1.85rem; }
  .stat-label { font-size: 0.85rem; }

  /* Testimonials: tighter padding */
  .testimonial { padding: 22px 20px; gap: 14px; }
  .testimonial blockquote { font-size: 0.98rem; padding-left: 14px; }

  /* Cookie banner mobile-friendly */
  #cookie-banner { padding: 16px var(--gutter); font-size: 0.85rem; }
  .cookie-actions .btn { width: 100%; }
  .cookie-link { width: 100%; text-align: center; margin-top: 8px; margin-left: 0; }

  /* Pill / inline lists wrap nicely */
  .pill-list, .inline-list { gap: 8px; }
  .pill-list li, .inline-list li { font-size: 0.82rem; padding: 7px 14px; }

  /* Sticky header: shrink slightly */
  .header-inner { padding: 8px 0; gap: 10px; }
  .logo img { height: 28px; }
}

/* ── ≤ 420px: very small phones (iPhone SE etc.) ─────────── */
@media (max-width: 420px) {
  :root {
    --gutter: 16px;
    --section-pad: 40px;
  }

  .hero { padding: 36px var(--gutter) 32px; gap: 18px; }
  .hero-content h1 { font-size: clamp(1.7rem, 8.5vw, 2rem); }
  .lead { font-size: 0.96rem; }

  .section-head h2 { font-size: clamp(1.25rem, 6vw, 1.55rem); }
  .section-head p  { font-size: 0.94rem; }

  /* Single-column proof on tiny screens */
  .proof-grid { grid-template-columns: 1fr; gap: 10px; }
  .stat-value { font-size: 1.7rem; }

  .form-card { padding: 18px 14px; border-radius: var(--radius-md); }
  .field input, .field select, .field textarea { font-size: 16px; /* prevents iOS zoom */ }

  .lang-select { padding: 8px 10px; font-size: 0.78rem; }

  .footer-grid { gap: 20px; padding-bottom: 32px; }
  .site-footer { padding: 48px 0 24px; }

  .cta-band h2 { font-size: 1.25rem; }
  .cta-band p  { font-size: 0.95rem; }

  details { padding: 12px 14px; }
}

/* ── Reduced motion: respect user preference ─────────────── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .reveal { animation: none; opacity: 1; transform: none; }
}

/* ── Landscape phones: ensure menu doesn't cover content ─── */
@media (max-height: 480px) and (max-width: 860px) {
  .nav { max-height: calc(100vh - 60px); overflow-y: auto; }
}
