.root {
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
}

:root {
  color-scheme: light;
  --ink: #1c1d22;
  --muted: #5a5f6b;
  --accent: #0e6b7b;
  --accent-2: #e07a5f;
  --paper: #f7f4ef;
  --soft: #e8eef0;
  --dark: #20232b;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: var(--ink);
  background: #fff;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

.container {
  width: min(1160px, 92%);
  margin: 0 auto;
}

.nav-wrap {
  padding: 24px 0 8px;
}

.nav-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.5px;
}

.ad-disclosure {
  font-size: 0.85rem;
  color: var(--muted);
  max-width: 280px;
}

.nav-links {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.nav-link {
  padding: 6px 10px;
  border-radius: 18px;
  border: 1px solid transparent;
}

.nav-link:hover,
.nav-link:focus {
  border-color: var(--accent);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 18px;
  border-radius: 999px;
  border: 1px solid var(--accent);
  background: var(--accent);
  color: #fff;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn:hover,
.btn:focus {
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(14, 107, 123, 0.2);
}

.btn.secondary {
  background: transparent;
  color: var(--accent);
}

.btn.inline {
  padding: 8px 14px;
  font-size: 0.95rem;
}

.hero {
  padding: 48px 0 20px;
}

.hero-grid {
  display: flex;
  gap: 28px;
  align-items: center;
}

.hero-copy {
  flex: 1.05;
}

.hero-visual {
  flex: 0.95;
  position: relative;
}

.hero-visual .image-frame {
  border-radius: 24px;
  overflow: hidden;
  background-color: #d7e5ea;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.18);
  transform: rotate(-2deg);
}

.offset-card {
  margin-top: 22px;
  background: var(--paper);
  padding: 18px 20px;
  border-radius: 18px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

.section {
  padding: 56px 0;
}

.section.alt {
  background: var(--paper);
}

.section.dark {
  background: var(--dark);
  color: #fff;
}

.split {
  display: flex;
  gap: 26px;
  align-items: center;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split .panel {
  flex: 1;
}

.stack {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.service-grid {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.service-card {
  flex: 1 1 280px;
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
}

.service-card .card-body {
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
}

.price {
  font-weight: 700;
  color: var(--accent);
}

.image-frame {
  background-color: #e3e8ed;
  overflow: hidden;
}

.image-frame.tall {
  border-radius: 20px;
}

.process-row {
  display: flex;
  gap: 20px;
  align-items: stretch;
}

.process-step {
  flex: 1;
  background: #fff;
  padding: 18px;
  border-radius: 16px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
}

.quote {
  background: #fff;
  padding: 20px;
  border-radius: 18px;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
}

.inline-link {
  color: var(--accent-2);
  font-weight: 600;
}

.inline-link:hover,
.inline-link:focus {
  text-decoration: underline;
}

.form-wrap {
  background: #fff;
  border-radius: 22px;
  padding: 22px;
  box-shadow: 0 18px 30px rgba(0, 0, 0, 0.1);
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-weight: 600;
}

input,
select,
textarea {
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid #c6ccd4;
  font-size: 1rem;
  font-family: inherit;
}

.form-row {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.form-row > div {
  flex: 1 1 220px;
}

.sticky-cta {
  position: sticky;
  bottom: 16px;
  margin: 0 auto;
  width: min(1160px, 92%);
  background: var(--dark);
  color: #fff;
  border-radius: 18px;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  z-index: 5;
}

.sticky-cta .btn {
  background: var(--accent-2);
  border-color: var(--accent-2);
}

.footer {
  padding: 40px 0 60px;
  background: var(--soft);
}

.footer-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.footer-col {
  flex: 1 1 220px;
}

.legal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.cookie-banner {
  position: fixed;
  bottom: 18px;
  right: 18px;
  background: #fff;
  border-radius: 16px;
  padding: 16px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.18);
  max-width: 320px;
  z-index: 20;
}

.cookie-banner.hidden {
  display: none;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  margin-top: 12px;
}

.bg-speaker {
  background-image: url("https://images.unsplash.com/photo-1469474968028-56623f02e42e?w=1400&q=80");
  background-size: cover;
  background-position: center;
}

.bg-audience {
  background-image: url("https://images.unsplash.com/photo-1498050108023-c5249f4df085?w=1400&q=80");
  background-size: cover;
  background-position: center;
}

.bg-workshop {
  background-image: url("https://images.unsplash.com/photo-1521737604893-d14cc237f11d?w=1400&q=80");
  background-size: cover;
  background-position: center;
}

.tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  border-radius: 999px;
  background: #fff;
  color: var(--accent);
  font-weight: 600;
}

@media (max-width: 900px) {
  .hero-grid,
  .split,
  .process-row {
    flex-direction: column;
  }

  .sticky-cta {
    position: static;
    margin-top: 24px;
  }
}
