:root {
  --c-primary: #6B3F69;
  --c-secondary: #8D5F8C;
  --c-soft: #A376A2;
  --c-light: #DDC3C3;
  --c-bg: #fffafb;
  --c-text: #2d1f2d;
  --c-muted: #6b5a6b;
  --space-xs: 0.5rem;
  --space-sm: 0.9rem;
  --space-md: 1.4rem;
  --space-lg: 2.4rem;
  --space-xl: 4rem;
  --radius-sm: 10px;
  --radius-md: 18px;
  --radius-lg: 28px;
  --shadow: 0 12px 30px rgba(107, 63, 105, 0.12);
  --shadow-soft: 0 8px 20px rgba(107, 63, 105, 0.08);
  --t-fast: 0.2s ease;
  --t-main: 0.35s ease;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Segoe UI", "Arial Black", Arial, sans-serif;
  background: var(--c-bg);
  color: var(--c-text);
  line-height: 1.55;
  letter-spacing: 0.01em;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
  border-radius: var(--radius-md);
}

.site-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--space-md) 5vw;
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(255, 250, 251, 0.94);
  backdrop-filter: blur(5px);
  border-bottom: 1px solid rgba(107, 63, 105, 0.08);
}

.logo {
  display: block;
}

.logo img {
  width: 4rem;
  position: relative;
  z-index: 20;
}

.logo img {
  display: inline-block;
  transform: rotate(-5deg);
  transition: transform var(--transition-normal);
}

.logo:hover img {
  transform: rotate(0);
}

/* Responsive Styles */
@media (max-width: 992px) {
  .logo img {
    width: 3rem;
    position: relative;
    z-index: 20;
  }
}

@media (max-width: 768px) {
  .logo img {
    width: 3rem;
    position: relative;
    z-index: 20;
  }
}

@media (max-width: 576px) {
  .logo img {
    width: 2rem;
    position: relative;
    z-index: 20;
  }
}

@media (max-width: 400px) {
  .logo img {
    width: 2rem;
    position: relative;
    z-index: 20;
  }
}

.top-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: var(--space-sm);
}

.top-nav a {
  padding: 0.5rem 0.75rem;
  border-radius: var(--radius-sm);
  transition: background var(--t-fast), color var(--t-fast);
}

.top-nav a.active {
  background: var(--c-primary);
  color: #fff;
}

.top-nav a:hover,
.top-nav a:focus-visible {
  background: var(--c-light);
  color: var(--c-primary);
}

main {
  display: grid;
  gap: var(--space-xl);
  padding-bottom: var(--space-xl);
}

.section,
.hero {
  width: min(1120px, 92vw);
  margin: 0 auto;
}

.split-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 74vh;
  align-items: center;
  gap: var(--space-lg);
}

.hero-copy h1 {
  font-size: clamp(2rem, 4vw, 3.4rem);
  margin: 0 0 var(--space-sm);
  line-height: 1.1;
}

.eyebrow {
  color: var(--c-secondary);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 0.78rem;
  margin-bottom: var(--space-xs);
}

.hero-actions {
  display: flex;
  gap: var(--space-sm);
  margin-top: var(--space-md);
}

.btn {
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 0.65rem 1.1rem;
  font-weight: 700;
  transition: transform var(--t-fast), background var(--t-fast), color var(--t-fast), border var(--t-fast);
  cursor: pointer;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-1px);
}

.btn.primary {
  background: var(--c-primary);
  color: #fff;
}

.btn.primary:hover,
.btn.primary:focus-visible {
  background: var(--c-secondary);
}

.btn.ghost {
  border-color: var(--c-secondary);
  color: var(--c-secondary);
  background: transparent;
}

.btn.ghost:hover,
.btn.ghost:focus-visible {
  background: var(--c-light);
}

.grid-2 {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: var(--space-lg);
  align-items: start;
}

.offset {
  transform: translateX(1vw);
}

.card {
  background: #fff;
  border-radius: var(--radius-md);
  padding: var(--space-md);
  box-shadow: var(--shadow);
  border: 1px solid rgba(107, 63, 105, 0.08);
}

.lift {
  transition: transform var(--t-main), box-shadow var(--t-main);
}

.lift:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 34px rgba(107, 63, 105, 0.16);
}

.timeline-wrap {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-sm);
}

.step {
  background: linear-gradient(180deg, #fff, #f8f0f8);
  border: 1px solid rgba(107, 63, 105, 0.14);
  border-radius: var(--radius-sm);
  padding: var(--space-sm);
}

.step span {
  display: inline-block;
  font-weight: 800;
  color: var(--c-primary);
  margin-bottom: 0.35rem;
}

.mosaic {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: var(--space-lg);
  align-items: center;
}

.quote-band {
  background: linear-gradient(145deg, #f4e8f4, #efe0ef);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
}

blockquote {
  margin: 0;
  font-size: clamp(1.1rem, 2vw, 1.6rem);
  font-weight: 700;
  color: var(--c-primary);
}

.faq-grid,
.feature-grid,
.testi-grid,
.people-grid,
.legal-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-sm);
}

.page-hero {
  width: min(1120px, 92vw);
  margin: 1.5rem auto 0;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: var(--space-lg);
  align-items: center;
}

.hero-kpi {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-sm);
  margin-top: var(--space-md);
}

.kpi {
  background: #fff;
  border: 1px solid rgba(107, 63, 105, 0.14);
  border-radius: var(--radius-sm);
  padding: 0.7rem;
  box-shadow: var(--shadow-soft);
}

.kpi strong {
  display: block;
  color: var(--c-primary);
  font-size: 1.25rem;
}

.checklist {
  display: grid;
  gap: 0.55rem;
}

.checklist li {
  list-style: none;
  background: #fff;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(107, 63, 105, 0.1);
  padding: 0.55rem 0.7rem;
}

.insight-block {
  width: min(1120px, 92vw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-lg);
  align-items: stretch;
}

.insight-panel {
  background: #fff;
  border-radius: var(--radius-md);
  border: 1px solid rgba(107, 63, 105, 0.12);
  padding: var(--space-md);
  box-shadow: var(--shadow-soft);
}

.tab-shell {
  display: grid;
  gap: var(--space-sm);
}

.tab-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.tab-btn {
  padding: 0.45rem 0.8rem;
  border-radius: 999px;
  border: 1px solid rgba(107, 63, 105, 0.35);
  background: #fff;
  color: var(--c-primary);
  font-weight: 700;
  cursor: pointer;
  transition: background var(--t-fast), color var(--t-fast), transform var(--t-fast);
}

.tab-btn:hover,
.tab-btn:focus-visible {
  transform: translateY(-1px);
}

.tab-btn.active {
  background: var(--c-primary);
  color: #fff;
}

.tab-pane {
  display: none;
}

.tab-pane.active {
  display: block;
  animation: fadeIn 0.45s ease;
}

.faq-accordion {
  display: grid;
  gap: var(--space-xs);
}

.faq-item {
  border: 1px solid rgba(107, 63, 105, 0.18);
  border-radius: var(--radius-sm);
  background: #fff;
  overflow: hidden;
}

.faq-toggle {
  width: 100%;
  text-align: left;
  background: transparent;
  border: 0;
  padding: 0.85rem;
  font: inherit;
  font-weight: 800;
  color: var(--c-primary);
  cursor: pointer;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
  padding: 0 0.85rem;
}

.faq-item.open .faq-answer {
  max-height: 180px;
  padding-bottom: 0.85rem;
}

.note-strip {
  width: min(1120px, 92vw);
  margin: 0 auto;
  display: flex;
  gap: var(--space-sm);
  flex-wrap: wrap;
}

.note-pill {
  background: #fff;
  border: 1px solid rgba(107, 63, 105, 0.2);
  color: var(--c-primary);
  border-radius: 999px;
  padding: 0.45rem 0.8rem;
  font-weight: 700;
}

.side-note {
  background: #fff;
  border-left: 4px solid var(--c-primary);
  border-radius: var(--radius-md);
  padding: var(--space-md);
}

.contact-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-lg);
  width: min(1120px, 92vw);
  margin: 0 auto;
}

form {
  display: grid;
  gap: var(--space-sm);
}

label {
  font-weight: 800;
  font-size: 0.92rem;
}

input,
textarea {
  width: 100%;
  border: 1px solid rgba(107, 63, 105, 0.25);
  border-radius: var(--radius-sm);
  padding: 0.7rem;
  font: inherit;
}

textarea {
  min-height: 130px;
  resize: vertical;
}

.error {
  color: #a03457;
  min-height: 1rem;
  font-size: 0.84rem;
}

.map-frame {
  width: 100%;
  min-height: 320px;
  border: 0;
  border-radius: var(--radius-md);
}

.site-footer {
  text-align: center;
  padding: var(--space-md) 5vw var(--space-lg);
  color: var(--c-muted);
  font-weight: 700;
}

.footer-links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 0.5rem;
}

.footer-links a {
  padding: 0.2rem 0.45rem;
  border-radius: 999px;
  border: 1px solid rgba(107, 63, 105, 0.18);
  transition: background var(--t-fast);
}

.footer-links a:hover,
.footer-links a:focus-visible {
  background: #f4e8f4;
}

.cookie-banner {
  position: fixed;
  bottom: 1rem;
  left: 50%;
  transform: translateX(-50%);
  width: min(760px, 94vw);
  background: #fff;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow);
  padding: var(--space-sm) var(--space-md);
  display: none;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-sm);
  z-index: 100;
}

.cookie-banner.visible {
  display: flex;
}

.cookie-actions {
  display: flex;
  gap: 0.4rem;
  flex-wrap: wrap;
}

.cookie-modal {
  border: 0;
  border-radius: var(--radius-md);
  width: min(420px, 92vw);
}

.cookie-form {
  gap: var(--space-sm);
}

.cookie-form menu {
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: flex-end;
  gap: var(--space-xs);
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

.float-in {
  animation: floatIn 0.8s ease both;
}

@keyframes floatIn {
  from {
    opacity: 0;
    transform: translateY(18px) scale(0.99);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@media (max-width: 960px) {

  .split-hero,
  .grid-2,
  .mosaic,
  .page-hero,
  .contact-wrap,
  .faq-grid,
  .feature-grid,
  .testi-grid,
  .people-grid,
  .legal-grid,
  .timeline-wrap {
    grid-template-columns: 1fr;
  }

  .hero-kpi,
  .insight-block {
    grid-template-columns: 1fr;
  }

  .site-header {
    flex-direction: column;
    align-items: flex-start;
    gap: var(--space-sm);
  }

  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
  }
}