:root {
  --bg: #ffffff;
  --bg-soft: #fbf8f2;
  --text: #101915;
  --muted: #4b5a53;
  --border: rgba(18, 25, 40, 0.12);
  --shadow: 0 18px 45px rgba(17, 24, 39, 0.12);
  --shadow-soft: 0 10px 30px rgba(17, 24, 39, 0.08);
  --brand: #0f3d2e;
  --brand-2: #2f5a44;
  --brand-3: #8a5b3c;
  --radius-lg: 22px;
  --radius-md: 14px;
  --container: 1120px;
  --drawer-w: 500px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Plus Jakarta Sans", system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.55;
  overflow-x: hidden;
}

h1,
h2,
h3 {
  font-family: Fraunces, "Plus Jakarta Sans", system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: 16px;
  z-index: 9999;
  transform: translateY(-160%);
  background: #111827;
  color: #fff;
  padding: 10px 12px;
  border-radius: 12px;
  box-shadow: var(--shadow-soft);
}

.skip-link:focus {
  transform: translateY(0);
}

.page {
  transform: translateX(0);
  transition: transform 240ms ease;
  will-change: transform;
}

body.drawer-open {
  overflow: hidden;
}

body.popup-open {
  overflow: hidden;
}

body.fullpage-open {
  overflow: hidden;
}

body.drawer-open .page {
  transform: translateX(calc(-1 * var(--drawer-w)));
}

.popup-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.58);
  backdrop-filter: blur(2px);
  opacity: 0;
  pointer-events: none;
  border: 0;
  padding: 0;
  z-index: 95;
  transition: opacity 200ms ease;
}

body.popup-open .popup-backdrop {
  opacity: 1;
  pointer-events: auto;
}

.fullpage-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.72);
  backdrop-filter: blur(6px);
  opacity: 0;
  pointer-events: none;
  border: 0;
  padding: 0;
  z-index: 110;
  transition: opacity 220ms ease;
}

body.fullpage-open .fullpage-backdrop {
  opacity: 1;
  pointer-events: auto;
}

.fullpage-popup {
  position: fixed;
  inset: 0;
  z-index: 120;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(10px);
  transition: opacity 220ms ease, transform 220ms ease;
}

body.fullpage-open .fullpage-popup {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

.fullpage-popup-inner {
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
  padding: 24px;
  background:
    radial-gradient(820px 420px at 12% 12%, rgba(255, 90, 122, 0.42), transparent 62%),
    radial-gradient(860px 480px at 90% 18%, rgba(0, 212, 255, 0.28), transparent 58%),
    radial-gradient(920px 520px at 70% 92%, rgba(138, 91, 60, 0.58), transparent 60%),
    radial-gradient(840px 520px at 18% 88%, rgba(15, 61, 46, 0.72), transparent 58%),
    linear-gradient(180deg, rgba(8, 12, 14, 0.86), rgba(8, 12, 14, 0.94));
  background-size: 120% 120%, 120% 120%, 120% 120%, 120% 120%, 100% 100%;
  background-position: 0% 0%, 100% 0%, 100% 100%, 0% 100%, 0 0;
  animation: fullpageBgShift 12s ease-in-out infinite alternate;
}

.fullpage-close {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 2;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(14px);
  font: inherit;
  font-weight: 900;
  line-height: 1;
  display: grid;
  place-items: center;
  color: rgba(255, 255, 255, 0.92);
}

.fullpage-content {
  width: min(860px, 100%);
  border-radius: 26px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 28px 120px rgba(0, 0, 0, 0.42);
  backdrop-filter: blur(18px);
  padding: 30px 26px;
  display: grid;
  gap: 14px;
  position: relative;
  overflow: hidden;
}

.fullpage-content::before {
  content: "";
  position: absolute;
  inset: -20%;
  background:
    repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.16) 0 2px, transparent 2px 18px),
    repeating-linear-gradient(45deg, rgba(255, 255, 255, 0.1) 0 1px, transparent 1px 14px);
  opacity: 0.2;
  mix-blend-mode: overlay;
  transform: translateX(-8%);
  animation: fullpageGeoSlide 7.5s linear infinite alternate;
  pointer-events: none;
}

.fullpage-eyebrow {
  font-weight: 900;
  letter-spacing: -0.02em;
  color: rgba(255, 255, 255, 0.86);
}

.fullpage-title {
  margin: 0;
  font-weight: 900;
  letter-spacing: -0.05em;
  line-height: 1.06;
  color: rgba(255, 255, 255, 0.96);
  font-size: clamp(2rem, 3.4vw, 3.1rem);
  font-family: Fraunces, "Plus Jakarta Sans", system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
}

.fullpage-text {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-weight: 650;
  letter-spacing: -0.01em;
  max-width: 52ch;
}

.fullpage-slogan {
  margin-top: 6px;
  font-weight: 900;
  letter-spacing: -0.04em;
  color: rgba(255, 255, 255, 0.94);
  font-size: 1.1rem;
}

@keyframes fullpageGeoSlide {
  0% {
    transform: translateX(-8%);
  }
  100% {
    transform: translateX(8%);
  }
}

@keyframes fullpageBgShift {
  0% {
    background-position: 0% 0%, 100% 0%, 100% 100%, 0% 100%, 0 0;
  }
  100% {
    background-position: 100% 40%, 0% 20%, 0% 60%, 100% 70%, 0 0;
  }
}

.welcome-popup {
  position: fixed;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 20px;
  z-index: 100;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(10px);
  transition: opacity 200ms ease, transform 200ms ease;
}

body.popup-open .welcome-popup {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

.welcome-popup-inner {
  width: min(780px, 100%);
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.12);
  box-shadow: 0 28px 110px rgba(0, 0, 0, 0.38);
  padding: 0;
  position: relative;
  backdrop-filter: blur(18px);
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 0;
  align-items: stretch;
}

.popup-media {
  border-radius: 0;
  overflow: hidden;
  border: 0;
  background: transparent;
  min-height: 340px;
}

.popup-img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.popup-body {
  padding: 22px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.14));
  backdrop-filter: blur(18px);
  border-left: 1px solid rgba(255, 255, 255, 0.14);
  display: flex;
  flex-direction: column;
}

.popup-close {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 2;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(14px);
  font: inherit;
  font-weight: 900;
  line-height: 1;
  display: grid;
  place-items: center;
}

.popup-kicker {
  font-weight: 900;
  letter-spacing: -0.02em;
  color: rgba(255, 255, 255, 0.92);
  margin-right: 44px;
}

.popup-title {
  margin: 10px 44px 10px 0;
  letter-spacing: -0.04em;
  line-height: 1.1;
  font-size: clamp(1.55rem, 3.2vw, 2.1rem);
  color: rgba(255, 255, 255, 0.96);
}

.popup-text {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-weight: 650;
  letter-spacing: -0.01em;
}

.popup-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 16px;
}

.popup-question {
  margin-top: 16px;
  display: grid;
  gap: 10px;
  margin-top: auto;
}

.popup-question-title {
  font-weight: 900;
  letter-spacing: -0.03em;
  color: rgba(255, 255, 255, 0.92);
}

.popup-question-inner {
  border-radius: 999px;
  border: 0;
  background: transparent;
  backdrop-filter: none;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 10px;
}

.popup-question-input {
  flex: 1;
  height: 44px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: transparent;
  color: rgba(255, 255, 255, 0.92);
  font: inherit;
  font-weight: 650;
  letter-spacing: -0.01em;
  outline: none;
}

.popup-question-input::placeholder {
  color: rgba(255, 255, 255, 0.55);
}

.popup-question-input:focus {
  border-color: rgba(255, 255, 255, 0.32);
}

.popup-question-status {
  min-height: 20px;
  color: rgba(255, 255, 255, 0.72);
  font-weight: 650;
}

.question-dock {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 70;
  pointer-events: none;
  padding: 14px 14px calc(14px + env(safe-area-inset-bottom));
  opacity: 1;
  transform: translateY(0);
  transition: opacity 220ms ease, transform 220ms ease;
}

.question-dock::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.22));
  backdrop-filter: blur(10px);
  opacity: 0.9;
  pointer-events: none;
}

.question-dock.is-hidden {
  opacity: 0;
  transform: translateY(120%);
}

.question-dock.is-hidden .question-dock-wrap {
  pointer-events: none;
}

.question-dock-wrap {
  width: min(1020px, 100%);
  margin: 0 auto;
  display: grid;
  gap: 8px;
  pointer-events: auto;
  position: relative;
  z-index: 1;
}

.question-dock-inner {
  border-radius: 999px;
  border: 1px solid rgba(18, 25, 40, 0.12);
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 18px 70px rgba(0, 0, 0, 0.26);
  backdrop-filter: blur(14px);
  padding: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.question-dock-input {
  flex: 1;
  height: 44px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid rgba(18, 25, 40, 0.12);
  background: transparent;
  color: rgba(16, 25, 21, 0.9);
  font: inherit;
  font-weight: 650;
  letter-spacing: -0.01em;
  outline: none;
}

.question-dock-input::placeholder {
  color: rgba(16, 25, 21, 0.55);
}

.question-dock-input:focus {
  border-color: rgba(16, 61, 46, 0.32);
}

.question-dock-status {
  min-height: 20px;
  color: rgba(16, 25, 21, 0.68);
  font-weight: 650;
  padding: 0 4px;
}

body.has-question-dock .page {
  padding-bottom: 96px;
}

.support-toast {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 76;
  padding: 10px 12px calc(10px + env(safe-area-inset-bottom));
  opacity: 0;
  transform: translateY(120%);
  pointer-events: none;
  transition: opacity 240ms ease, transform 240ms ease;
}

.support-toast::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(840px 380px at 10% 115%, rgba(138, 91, 60, 0.88), transparent 62%),
    radial-gradient(740px 360px at 88% 110%, rgba(15, 61, 46, 0.92), transparent 60%),
    linear-gradient(180deg, rgba(6, 12, 10, 0), rgba(6, 12, 10, 0.72));
  background-size: 140% 140%, 140% 140%, 100% 100%;
  background-position: 0% 100%, 100% 100%, 0 0;
  animation: supportBackdropShift 10s ease-in-out infinite alternate;
  backdrop-filter: blur(8px);
  opacity: 1;
  pointer-events: none;
}

.support-toast::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.16) 0 2px, transparent 2px 18px),
    repeating-linear-gradient(45deg, rgba(255, 255, 255, 0.1) 0 1px, transparent 1px 14px);
  opacity: 0.22;
  mix-blend-mode: overlay;
  transform: translateX(-8%);
  animation: supportGeoSlide 7s linear infinite alternate;
  pointer-events: none;
}

.support-toast.is-open {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.support-toast-inner {
  width: min(1020px, 100%);
  margin: 0 auto;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: linear-gradient(135deg, rgba(15, 61, 46, 0.96), rgba(138, 91, 60, 0.92));
  box-shadow: 0 22px 90px rgba(0, 0, 0, 0.32);
  backdrop-filter: blur(10px);
  padding: 12px 14px;
  position: relative;
  z-index: 1;
  display: grid;
  gap: 8px;
  overflow: hidden;
}

.support-toast-close {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 40px;
  height: 40px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(14px);
  font: inherit;
  font-weight: 900;
  line-height: 1;
  display: grid;
  place-items: center;
}

.support-toast-kicker {
  font-weight: 900;
  letter-spacing: -0.02em;
  color: rgba(255, 255, 255, 0.86);
  margin-right: 44px;
}

.support-toast-title {
  margin-top: 6px;
  font-weight: 900;
  letter-spacing: -0.04em;
  color: rgba(255, 255, 255, 0.96);
  font-size: 1.15rem;
}

.support-toast-text {
  margin: 2px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-weight: 650;
  letter-spacing: -0.01em;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.support-toast-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 8px;
}

@keyframes supportBackdropShift {
  0% {
    background-position: 0% 100%, 100% 100%, 0 0;
  }
  100% {
    background-position: 100% 0%, 0% 0%, 0 0;
  }
}

@keyframes supportGeoSlide {
  0% {
    transform: translateX(-8%);
  }
  100% {
    transform: translateX(8%);
  }
}

@media (max-width: 760px) {
  .fullpage-close {
    top: 12px;
    right: 12px;
    width: 40px;
    height: 40px;
  }

  .fullpage-popup-inner {
    padding: 16px;
  }

  .fullpage-content {
    padding: 22px 16px;
    border-radius: 22px;
  }

  .welcome-popup {
    padding: 12px;
  }

  .welcome-popup-inner {
    grid-template-columns: 1fr;
    grid-template-rows: 160px 1fr;
    width: min(520px, 100%);
    max-height: calc(100vh - 24px - env(safe-area-inset-bottom));
  }

  .popup-media {
    height: 160px;
    min-height: 160px;
  }

  .popup-body {
    border-left: 0;
    border-top: 1px solid rgba(18, 25, 40, 0.08);
    padding: 16px;
    overflow: auto;
    min-height: 0;
  }

  .popup-close {
    top: 10px;
    right: 10px;
    width: 40px;
    height: 40px;
    border-radius: 14px;
  }

  .popup-title {
    font-size: 1.45rem;
  }

  .popup-question {
    display: none;
  }

  .popup-question-inner {
    flex-wrap: wrap;
  }

  .support-toast-inner {
    width: min(520px, 100%);
  }
}

.drawer-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(16, 25, 21, 0.35);
  opacity: 0;
  pointer-events: none;
  border: 0;
  padding: 0;
  z-index: 80;
  transition: opacity 220ms ease;
}

body.drawer-open .drawer-backdrop {
  opacity: 1;
  pointer-events: auto;
}

.quotes-drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: var(--drawer-w);
  height: 100vh;
  background: #ffffff;
  border-left: 1px solid rgba(18, 25, 40, 0.08);
  box-shadow: 0 24px 80px rgba(17, 24, 39, 0.18);
  transform: translateX(100%);
  transition: transform 240ms ease;
  z-index: 90;
  overflow: auto;
}

body.drawer-open .quotes-drawer {
  transform: translateX(0);
}

.quotes-drawer-inner {
  min-height: 100%;
  padding: 22px;
  display: grid;
  align-content: start;
  gap: 18px;
}

.quotes-drawer-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
}

.drawer-title {
  margin: 8px 0 0;
  letter-spacing: -0.04em;
  line-height: 1.1;
  font-size: clamp(1.5rem, 3vw, 2.1rem);
}

.drawer-close {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  border: 1px solid rgba(18, 25, 40, 0.12);
  background: rgba(255, 255, 255, 0.9);
  font: inherit;
  font-weight: 900;
  line-height: 1;
  display: grid;
  place-items: center;
}

.drawer-quotes {
  display: grid;
  gap: 12px;
}

.drawer-quote {
  border-radius: 0;
  padding: 12px 0;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.drawer-quote-mark {
  color: rgba(15, 61, 46, 0.75);
  font-weight: 900;
  font-size: 2rem;
  line-height: 1;
  margin-bottom: 6px;
}

.drawer-quote-text {
  color: rgba(16, 25, 21, 0.9);
  font-weight: 700;
  letter-spacing: -0.02em;
}

.drawer-quote + .drawer-quote {
  border-top: 1px solid rgba(18, 25, 40, 0.08);
}

.drawer-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 6px;
}

.container {
  width: min(var(--container), calc(100% - 40px));
  margin: 0 auto;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  height: 46px;
  padding: 0 18px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 600;
  letter-spacing: -0.01em;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
  user-select: none;
}

.btn:active {
  transform: translateY(1px);
}

.btn--primary {
  background: var(--brand);
  color: #fff;
  box-shadow: 0 10px 20px rgba(15, 61, 46, 0.22);
}

.btn--primary:hover {
  background: #0c3427;
}

.btn--ghost {
  background: rgba(255, 255, 255, 0.65);
  border-color: rgba(255, 255, 255, 0.75);
  color: #182030;
  backdrop-filter: blur(10px);
}

.btn--ghost:hover {
  border-color: rgba(18, 25, 40, 0.18);
}

.btn--sm {
  height: 40px;
  padding: 0 14px;
  font-size: 0.95rem;
}

.nav-cta {
  letter-spacing: -0.01em;
}

.btn--wide {
  padding: 0 22px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(18, 25, 40, 0.08);
  transition: box-shadow 200ms ease, background 200ms ease;
}

.site-header.is-on-hero {
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(12px);
  border-bottom-color: rgba(18, 25, 40, 0.08);
}

.site-header.is-elevated {
  box-shadow: 0 14px 35px rgba(17, 24, 39, 0.1);
  background: rgba(255, 255, 255, 0.9);
}

.site-header.is-on-hero .brand-name,
.site-header.is-on-hero .nav-link {
  color: #2b3242;
}

.site-header.is-on-hero .nav-link {
  opacity: 0.9;
}

.site-header.is-on-hero .nav-link:hover {
  opacity: 1;
}

.site-header.is-on-hero .nav-toggle {
  border-color: rgba(18, 25, 40, 0.12);
  background: rgba(255, 255, 255, 0.8);
}

.site-header.is-on-hero .nav-toggle-lines,
.site-header.is-on-hero .nav-toggle-lines::before,
.site-header.is-on-hero .nav-toggle-lines::after {
  background: #202838;
}

.header-inner {
  height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  letter-spacing: -0.02em;
}

.brand-mark {
  width: 40px;
  height: 40px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(15, 61, 46, 0.92), rgba(138, 91, 60, 0.88));
  color: rgba(255, 255, 255, 0.95);
  display: grid;
  place-items: center;
  box-shadow: 0 14px 28px rgba(15, 61, 46, 0.18);
  font-weight: 900;
  letter-spacing: -0.06em;
  font-size: 0.9rem;
}

.brand-name {
  font-size: 1.18rem;
  font-weight: 700;
  font-family: Fraunces, "Plus Jakarta Sans", system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
}

.brand-name::after {
  content: "";
  display: block;
  height: 2px;
  width: 34px;
  margin-top: 4px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(15, 61, 46, 0.85), rgba(138, 91, 60, 0.7));
  opacity: 0.9;
}

.nav {
  display: flex;
  align-items: center;
  gap: 14px;
}

.nav-panel {
  display: flex;
  align-items: center;
  gap: 18px;
}

.nav-link {
  font-weight: 800;
  color: #2b3242;
  opacity: 0.88;
  letter-spacing: -0.01em;
  padding: 10px 10px;
  border-radius: 14px;
  transition: opacity 160ms ease, background 160ms ease, color 160ms ease;
}

.nav-link:hover {
  opacity: 1;
  background: rgba(15, 61, 46, 0.08);
  color: rgba(16, 25, 21, 0.95);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  border: 1px solid rgba(18, 25, 40, 0.12);
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10px);
  align-items: center;
  justify-content: center;
}

.nav-toggle-lines {
  width: 18px;
  height: 2px;
  background: #202838;
  position: relative;
  border-radius: 999px;
}

.nav-toggle-lines::before,
.nav-toggle-lines::after {
  content: "";
  position: absolute;
  left: 0;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: #202838;
}

.nav-toggle-lines::before {
  top: -6px;
}

.nav-toggle-lines::after {
  top: 6px;
}

.hero {
  position: relative;
  min-height: 78vh;
  display: grid;
  align-items: center;
  overflow: hidden;
  background: #ffffff;
}

.ebook-hero {
  padding: 56px 0 34px;
}

.breadcrumbs {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(75, 90, 83, 0.9);
  font-weight: 700;
  letter-spacing: -0.01em;
  margin-bottom: 18px;
  flex-wrap: wrap;
}

.breadcrumb-link {
  color: rgba(15, 61, 46, 0.92);
}

.breadcrumb-sep {
  opacity: 0.55;
}

.breadcrumb-current {
  color: rgba(16, 25, 21, 0.92);
}

.ebook-layout {
  display: grid;
  grid-template-columns: minmax(0, 360px) minmax(0, 1fr);
  gap: 28px;
  align-items: start;
  max-width: 980px;
  margin: 0 auto;
}

.ebook-media {
  display: flex;
  align-items: flex-start;
  align-self: start;
  height: auto;
  max-width: 360px;
}

.ebook-copy {
  align-self: start;
}

.ebook-cover {
  border-radius: 18px;
  border: 1px solid rgba(18, 25, 40, 0.1);
  overflow: hidden;
  background: rgba(255, 255, 255, 0.7);
  box-shadow: 0 28px 80px rgba(17, 24, 39, 0.14);
  height: clamp(240px, 44vh, 420px);
  width: 100%;
  display: block;
  flex: 0 0 auto;
  aspect-ratio: 2 / 3;
  position: relative;
}

.ebook-cover::before {
  content: attr(data-cover-title);
  position: absolute;
  inset: 0;
  padding: 18px 16px;
  z-index: 2;
  font-family: "Plus Jakarta Sans", system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1.1;
  font-size: clamp(1.35rem, 2.1vw, 2.2rem);
  text-align: center;
  display: grid;
  place-items: center;
  white-space: pre-line;
  color: rgba(255, 255, 255, 0.96);
  text-shadow: 0 10px 26px rgba(0, 0, 0, 0.55);
  pointer-events: none;
}

.ebook-cover::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgb(10 14 16 / var(--cover-overlay-top, 0.22)),
    rgb(10 14 16 / var(--cover-overlay-bottom, 0.5))
  );
  pointer-events: none;
}

.ebook-cover img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  filter: brightness(var(--cover-brightness, 0.62)) saturate(var(--cover-sat, 1.05)) contrast(var(--cover-contrast, 1.06));
}

.ebook-title {
  margin: 10px 0 10px;
  font-size: clamp(2rem, 4.2vw, 3rem);
  line-height: 1.08;
  letter-spacing: -0.04em;
  font-family: Fraunces, "Plus Jakarta Sans", system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
}

.ebook-subtitle {
  margin: 0 0 14px;
  color: rgba(75, 90, 83, 0.95);
  font-weight: 600;
  letter-spacing: -0.01em;
  font-size: 1.02rem;
}

.ebook-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 10px 0 14px;
}

.ebook-chip {
  display: inline-flex;
  align-items: center;
  height: 32px;
  padding: 0 12px;
  border-radius: 999px;
  background: transparent;
  border: 1px solid rgba(18, 25, 40, 0.12);
  color: rgba(16, 25, 21, 0.92);
  font-weight: 800;
  letter-spacing: -0.01em;
  font-size: 0.92rem;
}

.ebook-desc {
  margin: 0 0 14px;
  color: rgba(16, 25, 21, 0.86);
  font-weight: 600;
  max-width: 60ch;
}

.ebook-bullets {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
  max-width: 60ch;
}

.ebook-bullets li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: rgba(16, 25, 21, 0.88);
  font-weight: 600;
}

.ebook-bullets li::before {
  content: "";
  width: 9px;
  height: 9px;
  border-radius: 999px;
  margin-top: 7px;
  background: linear-gradient(135deg, rgba(15, 61, 46, 0.95), rgba(138, 91, 60, 0.7));
  flex: 0 0 auto;
}

.ebook-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
}

.ebook-sections {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.ebook-panel {
  border-radius: var(--radius-lg);
  border: 1px solid rgba(18, 25, 40, 0.08);
  background: rgba(255, 255, 255, 0.65);
  padding: 20px;
  backdrop-filter: blur(12px);
}

.ebook-toc {
  margin: 12px 0 0;
  padding-left: 18px;
  color: rgba(16, 25, 21, 0.86);
  font-weight: 650;
  letter-spacing: -0.01em;
  display: grid;
  gap: 10px;
}

.ebook-mini-cta {
  margin-top: 14px;
}

.hero-media {
  position: absolute;
  inset: 0;
  background: radial-gradient(900px 520px at 14% 20%, rgba(15, 61, 46, 0.12), transparent 55%),
    radial-gradient(760px 520px at 86% 20%, rgba(138, 91, 60, 0.12), transparent 55%),
    radial-gradient(820px 560px at 70% 90%, rgba(47, 90, 68, 0.1), transparent 60%);
}

.hero-media::after {
  content: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 86px 0 92px;
}

.hero-layout {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 34px;
  align-items: center;
}

.hero-copy {
  max-width: 640px;
}

.hero-kicker {
  color: rgba(16, 25, 21, 0.78);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 700;
  font-size: 0.78rem;
}

.hero-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0 0 18px;
}

.chip {
  display: inline-flex;
  align-items: center;
  height: 32px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(15, 61, 46, 0.08);
  border: 1px solid rgba(15, 61, 46, 0.16);
  color: rgba(16, 25, 21, 0.9);
  font-weight: 800;
  letter-spacing: -0.01em;
  font-size: 0.9rem;
  backdrop-filter: blur(10px);
}

.hero-title {
  margin: 12px 0 10px;
  font-size: clamp(2rem, 5vw, 3.25rem);
  line-height: 1.08;
  letter-spacing: -0.04em;
  color: var(--text);
}

.hero-subtitle {
  margin: 0 0 22px;
  color: rgba(75, 90, 83, 0.92);
  font-size: 1.04rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 26px;
}

.hero-visual {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 520px;
}

.hero-book {
  width: min(380px, 100%);
  transform: rotate(6deg) translateY(6px);
  transform-origin: center;
  position: relative;
}

.hero-book::before {
  content: attr(data-cover-title);
  position: absolute;
  inset: 0;
  padding: 18px 16px;
  z-index: 2;
  font-family: "Plus Jakarta Sans", system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1.1;
  font-size: clamp(1.55rem, 2.4vw, 2.6rem);
  text-align: center;
  display: grid;
  place-items: center;
  white-space: pre-line;
  color: rgba(255, 255, 255, 0.96);
  text-shadow: 0 10px 26px rgba(0, 0, 0, 0.55);
  pointer-events: none;
}

.hero-book::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 12px;
  background: linear-gradient(
    180deg,
    rgb(10 14 16 / var(--cover-overlay-top, 0.28)),
    rgb(10 14 16 / var(--cover-overlay-bottom, 0.5))
  );
  pointer-events: none;
}

.hero-book-img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
  border: 1px solid rgba(18, 25, 40, 0.1);
  box-shadow: 0 28px 80px rgba(17, 24, 39, 0.22);
  filter: brightness(var(--cover-brightness, 0.62)) saturate(var(--cover-sat, 1.05)) contrast(var(--cover-contrast, 1.06));
}

.hero-float {
  position: absolute;
  border-radius: 18px;
  padding: 12px 14px;
  background: rgba(255, 255, 255, 0.75);
  border: 1px solid rgba(18, 25, 40, 0.08);
  color: rgba(16, 25, 21, 0.92);
  backdrop-filter: blur(12px);
  box-shadow: 0 18px 50px rgba(17, 24, 39, 0.12);
  max-width: 230px;
}

.hero-float-title {
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.72rem;
  opacity: 0.9;
}

.hero-float-text {
  margin-top: 4px;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.hero-float--top {
  top: 18px;
  left: 0;
}

.hero-float--bottom {
  bottom: 22px;
  right: 0;
}

.hero-meta {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  padding: 16px;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(18, 25, 40, 0.08);
  backdrop-filter: blur(10px);
}

.meta-item {
  display: grid;
  gap: 2px;
}

.meta-value {
  color: var(--text);
  font-weight: 800;
  letter-spacing: -0.02em;
  font-size: 1.2rem;
}

.meta-label {
  color: var(--muted);
  font-size: 0.86rem;
}

.shape {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  z-index: 3;
  color: var(--bg);
}

.shape svg {
  width: 100%;
  height: 160px;
  display: block;
}

.section {
  padding: 82px 0;
}

.section--alt {
  background: radial-gradient(1200px 600px at 20% 10%, rgba(15, 61, 46, 0.14), transparent 55%),
    radial-gradient(900px 500px at 80% 50%, rgba(138, 91, 60, 0.16), transparent 58%),
    linear-gradient(180deg, #ffffff 0%, #fbf8f2 100%);
}

.section-head {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 34px;
}

.section-head--left {
  text-align: left;
  max-width: 520px;
  margin: 0;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--brand);
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-size: 0.74rem;
}

.section-title {
  margin: 10px 0 8px;
  font-size: clamp(1.55rem, 3.3vw, 2.25rem);
  letter-spacing: -0.04em;
  line-height: 1.15;
}

.section-subtitle {
  margin: 0;
  color: var(--muted);
  font-size: 1.02rem;
}

.books {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 26px;
}

.book-feature {
  margin-top: 42px;
  border-radius: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
  padding: 0;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 20px;
  align-items: center;
}

.book-feature-media {
  display: grid;
  place-items: center;
  position: relative;
}

.book-feature-media::before {
  content: attr(data-cover-title);
  position: absolute;
  width: min(320px, 100%);
  left: 50%;
  transform: translateX(-50%);
  inset-block: 0;
  z-index: 2;
  padding: 16px 14px;
  font-family: "Plus Jakarta Sans", system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1.1;
  font-size: clamp(1.2rem, 1.9vw, 1.9rem);
  text-align: center;
  display: grid;
  place-items: center;
  white-space: pre-line;
  color: rgba(255, 255, 255, 0.96);
  text-shadow: 0 10px 26px rgba(0, 0, 0, 0.55);
  pointer-events: none;
}

.book-feature-media::after {
  content: "";
  position: absolute;
  width: min(320px, 100%);
  aspect-ratio: 2 / 3;
  border-radius: 10px;
  background: linear-gradient(
    180deg,
    rgb(10 14 16 / var(--cover-overlay-top, 0.22)),
    rgb(10 14 16 / var(--cover-overlay-bottom, 0.46))
  );
  pointer-events: none;
}

.book-feature-cover {
  width: min(320px, 100%);
  aspect-ratio: 2 / 3;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: 0 22px 55px rgba(17, 24, 39, 0.22);
  border: 1px solid rgba(18, 25, 40, 0.1);
  filter: brightness(var(--cover-brightness, 0.62)) saturate(var(--cover-sat, 1.05)) contrast(var(--cover-contrast, 1.06));
}

.book-feature-title {
  margin: 8px 0 10px;
  letter-spacing: -0.04em;
  line-height: 1.12;
  font-size: clamp(1.35rem, 2.5vw, 1.9rem);
  font-family: Fraunces, "Plus Jakarta Sans", system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
}

.book-feature-text {
  margin: 0 0 14px;
  color: var(--muted);
}

.checks {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 0 0 18px;
  list-style: none;
}

.check {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  color: var(--text);
}

.check::before {
  content: "✓";
  width: 22px;
  height: 22px;
  border-radius: 8px;
  display: grid;
  place-items: center;
  background: rgba(15, 61, 46, 0.12);
  color: #0f3d2e;
  font-weight: 900;
  flex: 0 0 auto;
  margin-top: 1px;
}

.book-feature-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.quotes {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 26px;
}

.quote {
  border-radius: var(--radius-lg);
  background: #fff;
  border: 1px solid rgba(18, 25, 40, 0.08);
  box-shadow: 0 16px 40px rgba(17, 24, 39, 0.06);
  padding: 18px 18px;
  display: grid;
  gap: 14px;
}

.quote-stars {
  letter-spacing: 0.14em;
  color: rgba(138, 91, 60, 0.95);
  font-weight: 900;
  font-size: 0.92rem;
}

.quote-text {
  margin: 0;
  color: rgba(16, 25, 21, 0.88);
}

.quote-who {
  display: flex;
  align-items: center;
  gap: 10px;
}

.avatar {
  width: 36px;
  height: 36px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: rgba(15, 61, 46, 0.14);
  color: #0f3d2e;
  font-weight: 900;
}

.who-name {
  font-weight: 900;
  letter-spacing: -0.02em;
}

.who-meta {
  color: var(--muted);
  font-size: 0.9rem;
}

.faq {
  max-width: 880px;
  margin: 26px auto 0;
  display: grid;
  gap: 12px;
}

.faq-item {
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.75);
  border: 1px solid rgba(18, 25, 40, 0.08);
  box-shadow: 0 16px 40px rgba(17, 24, 39, 0.05);
  overflow: hidden;
}

.faq-q {
  list-style: none;
  cursor: pointer;
  padding: 14px 16px;
  font-weight: 900;
  letter-spacing: -0.02em;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.faq-q::-webkit-details-marker {
  display: none;
}

.faq-q::after {
  content: "+";
  width: 30px;
  height: 30px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: rgba(15, 61, 46, 0.12);
  color: #0f3d2e;
  font-weight: 900;
  flex: 0 0 auto;
}

.faq-item[open] .faq-q::after {
  content: "–";
}

.faq-a {
  padding: 0 16px 14px;
  color: var(--muted);
}

@media (min-width: 1024px) {
  .books {
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 16px;
  }

  .book-title {
    font-size: 1rem;
  }

  .book-meta {
    font-size: 0.88rem;
  }
}

.book {
  border-radius: var(--radius-lg);
  padding: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
  transition: transform 170ms ease;
  display: grid;
  gap: 12px;
}

.book:hover {
  transform: translateY(-4px);
}

.book-cover {
  margin: 0;
  border-radius: 5px;
  overflow: hidden;
  aspect-ratio: 2 / 3;
  background: transparent;
  position: relative;
}

.book-cover::before {
  content: attr(data-cover-title);
  position: absolute;
  inset: 0;
  padding: 14px 12px;
  z-index: 2;
  font-family: "Plus Jakarta Sans", system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1.1;
  font-size: clamp(1.05rem, 1.5vw, 1.55rem);
  text-align: center;
  display: grid;
  place-items: center;
  white-space: pre-line;
  color: rgba(255, 255, 255, 0.96);
  text-shadow: 0 10px 26px rgba(0, 0, 0, 0.55);
  pointer-events: none;
}

.book-cover::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 5px;
  background: linear-gradient(
    180deg,
    rgb(10 14 16 / var(--cover-overlay-top, 0.22)),
    rgb(10 14 16 / var(--cover-overlay-bottom, 0.52))
  );
  pointer-events: none;
}

.book-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 5px;
  box-shadow: 0 22px 55px rgba(17, 24, 39, 0.22);
  border: 1px solid rgba(18, 25, 40, 0.1);
  transform: translateZ(0);
  filter: brightness(var(--cover-brightness, 0.62)) saturate(var(--cover-sat, 1.05)) contrast(var(--cover-contrast, 1.06));
  transition: transform 170ms ease, box-shadow 170ms ease, filter 170ms ease;
}

.book:hover .book-cover img {
  transform: translateY(-2px) scale(1.01);
  box-shadow: 0 28px 70px rgba(17, 24, 39, 0.26);
  filter: brightness(var(--cover-brightness-hover, 0.68)) saturate(var(--cover-sat, 1.05)) contrast(var(--cover-contrast, 1.06));
}

.book-cover[data-book="golgedekalanlar"] {
  --cover-overlay-top: 0;
  --cover-overlay-bottom: 0;
  --cover-brightness: 1.18;
  --cover-brightness-hover: 1.24;
  --cover-sat: 1.02;
  --cover-contrast: 1.02;
}

.book-cover[data-book="yanimizakalanlar"] {
  --cover-overlay-top: 0.34;
  --cover-overlay-bottom: 0.72;
  --cover-brightness: 0.58;
  --cover-brightness-hover: 0.64;
}

.ebook-cover[data-book="golgedekalanlar"] {
  --cover-overlay-top: 0;
  --cover-overlay-bottom: 0;
  --cover-brightness: 1.18;
  --cover-sat: 1.02;
  --cover-contrast: 1.02;
}

.ebook-cover[data-book="yanimizakalanlar"] {
  --cover-overlay-top: 0.34;
  --cover-overlay-bottom: 0.72;
  --cover-brightness: 0.58;
}

.book-info {
  display: grid;
  gap: 6px;
  padding: 0 4px;
}

.book-tag {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  height: 26px;
  padding: 0 10px;
  border-radius: 999px;
  background: rgba(15, 61, 46, 0.12);
  color: #0f3d2e;
  border: 1px solid rgba(15, 61, 46, 0.18);
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.68rem;
}

.book-title {
  margin: 0;
  letter-spacing: -0.03em;
  line-height: 1.15;
  font-size: 1.08rem;
  font-family: Fraunces, "Plus Jakarta Sans", system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
}

.book-meta {
  color: var(--muted);
  font-size: 0.92rem;
}

.cards {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin-top: 26px;
}

.card {
  background: #fff;
  border: 1px solid rgba(18, 25, 40, 0.08);
  border-radius: var(--radius-lg);
  padding: 22px 20px;
  box-shadow: 0 16px 40px rgba(17, 24, 39, 0.06);
  transition: transform 170ms ease, box-shadow 170ms ease, border-color 170ms ease;
  position: relative;
  overflow: hidden;
}

.card::before {
  content: "";
  position: absolute;
  inset: -1px;
  background: radial-gradient(240px 240px at 10% 10%, rgba(15, 61, 46, 0.16), transparent 55%);
  opacity: 0;
  transition: opacity 170ms ease;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: rgba(15, 61, 46, 0.22);
}

.card:hover::before {
  opacity: 1;
}

.card > * {
  position: relative;
  z-index: 1;
}

.card-icon {
  width: 46px;
  height: 46px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, rgba(201, 131, 107, 0.18), rgba(241, 199, 190, 0.45));
  font-size: 1.2rem;
}

.card-title {
  margin: 14px 0 8px;
  letter-spacing: -0.03em;
}

.card-text {
  margin: 0 0 14px;
  color: var(--muted);
}

.card-link {
  font-weight: 700;
  color: #202838;
  opacity: 0.9;
}

.card-link:hover {
  opacity: 1;
  color: var(--brand);
}

.about {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 44px;
}

.about-copy {
  max-width: 680px;
}

.about-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 14px;
}

.about-cta {
  display: block;
  width: 100%;
  padding: 14px 16px;
  border-radius: 18px;
  border: 1px solid rgba(18, 25, 40, 0.1);
  background: rgba(255, 255, 255, 0.7);
  color: rgba(16, 25, 21, 0.9);
  font-weight: 750;
  letter-spacing: -0.01em;
  line-height: 1.35;
  box-shadow: 0 16px 40px rgba(17, 24, 39, 0.06);
  backdrop-filter: blur(10px);
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease, background 160ms ease;
}

.about-cta:hover {
  transform: translateY(-1px);
  border-color: rgba(18, 25, 40, 0.16);
  box-shadow: 0 20px 48px rgba(17, 24, 39, 0.1);
}

.about-cta:active {
  transform: translateY(1px);
}

.pill {
  display: inline-flex;
  align-items: center;
  height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(15, 61, 46, 0.1);
  border: 1px solid rgba(15, 61, 46, 0.16);
  color: rgba(16, 25, 21, 0.92);
  font-weight: 800;
  letter-spacing: -0.01em;
  font-size: 0.92rem;
}

.features {
  margin-top: 22px;
  display: grid;
  gap: 14px;
}

.feature {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.feature-icon {
  width: 28px;
  height: 28px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  background: rgba(15, 61, 46, 0.12);
  color: #0f3d2e;
  font-weight: 900;
}

.feature-title {
  font-weight: 800;
  letter-spacing: -0.02em;
}

.feature-text {
  color: var(--muted);
  font-size: 0.96rem;
}

.about-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

.about-stats {
  margin-top: 18px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  padding: 14px;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.65);
  border: 1px solid rgba(18, 25, 40, 0.08);
  backdrop-filter: blur(10px);
}

.stat {
  display: grid;
  gap: 2px;
}

.stat-value {
  font-weight: 900;
  letter-spacing: -0.03em;
  font-size: 1.25rem;
  color: var(--text);
}

.stat-label {
  color: var(--muted);
  font-size: 0.92rem;
}

.about-media {
  display: grid;
  place-items: center;
}

.about-circle {
  width: min(420px, 100%);
  aspect-ratio: 1 / 1;
  border-radius: 999px;
  background: radial-gradient(closest-side, rgba(15, 61, 46, 0.16), rgba(138, 91, 60, 0.08));
  position: relative;
  display: grid;
  place-items: center;
  padding: 26px;
}

.about-photo {
  width: 100%;
  height: 100%;
  border-radius: 999px;
  background-image: url("https://images.unsplash.com/photo-1523240795612-9a054b0db644?auto=format&fit=crop&w=1600&q=70");
  background-size: cover;
  background-position: center;
  box-shadow: var(--shadow);
  border: 9px solid rgba(255, 255, 255, 0.8);
}

.badge {
  position: absolute;
  left: 18px;
  bottom: 26px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(18, 25, 40, 0.1);
  backdrop-filter: blur(10px);
  padding: 12px 14px;
  border-radius: 16px;
  box-shadow: var(--shadow-soft);
  display: grid;
  gap: 2px;
}

.badge-top {
  font-weight: 900;
  letter-spacing: -0.02em;
  color: var(--text);
}

.badge-bottom {
  font-size: 0.86rem;
  color: var(--muted);
}

.cta-strip {
  padding: 56px 0;
  background: radial-gradient(900px 480px at 20% 10%, rgba(255, 255, 255, 0.1), transparent 55%),
    radial-gradient(760px 520px at 90% 70%, rgba(138, 91, 60, 0.22), transparent 58%),
    linear-gradient(180deg, #0b2a20 0%, #0f3d2e 100%);
  position: relative;
  overflow: hidden;
}

.cta-strip::before {
  content: "";
  position: absolute;
  width: 620px;
  height: 620px;
  border-radius: 999px;
  background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.18), transparent 62%);
  right: -320px;
  top: -360px;
}

.cta-strip-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.cta-copy {
  max-width: 760px;
}

.cta-title {
  margin: 10px 0 8px;
  letter-spacing: -0.04em;
  line-height: 1.12;
  color: rgba(255, 255, 255, 0.96);
}

.cta-text {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
}

.contact {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 26px;
  align-items: stretch;
}

.contact-card {
  border-radius: var(--radius-lg);
  border: 1px solid rgba(18, 25, 40, 0.08);
  background: radial-gradient(780px 420px at 14% 12%, rgba(15, 61, 46, 0.08), transparent 55%),
    radial-gradient(680px 420px at 86% 70%, rgba(138, 91, 60, 0.08), transparent 55%),
    rgba(255, 255, 255, 0.7);
  box-shadow: 0 22px 70px rgba(17, 24, 39, 0.06);
  padding: 22px;
  backdrop-filter: blur(12px);
}

.contact-highlights {
  margin-top: 16px;
  display: grid;
  gap: 10px;
}

.contact-highlight {
  display: flex;
  align-items: center;
  gap: 10px;
}

.contact-dot {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(15, 61, 46, 0.95), rgba(138, 91, 60, 0.7));
  box-shadow: 0 10px 18px rgba(15, 61, 46, 0.18);
}

.contact-highlight-text {
  font-weight: 700;
  letter-spacing: -0.01em;
  color: rgba(16, 25, 21, 0.86);
}

.contact-quick {
  margin-top: 18px;
  display: grid;
  gap: 10px;
}

.contact-quick-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 12px 14px;
  border-radius: 18px;
  background: transparent;
  border: 1px solid rgba(18, 25, 40, 0.1);
  transition: border-color 160ms ease, background 160ms ease;
}

.contact-quick-item:hover {
  border-color: rgba(15, 61, 46, 0.18);
  background: rgba(15, 61, 46, 0.04);
}

.contact-quick-item--muted {
  opacity: 0.85;
}

.contact-quick-k {
  font-weight: 900;
  letter-spacing: -0.02em;
}

.contact-quick-v {
  color: var(--muted);
  font-weight: 700;
}

.contact-form {
  background: rgba(255, 255, 255, 0.75);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(18, 25, 40, 0.08);
  padding: 22px;
  box-shadow: 0 18px 48px rgba(17, 24, 39, 0.06);
  backdrop-filter: blur(12px);
  display: grid;
  gap: 14px;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.field {
  display: grid;
}

.field--full {
  grid-column: 1 / -1;
}

.label {
  display: inline-block;
  margin-bottom: 8px;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.input {
  width: 100%;
  border-radius: 14px;
  border: 1px solid rgba(18, 25, 40, 0.14);
  background: transparent;
  background-color: transparent;
  padding: 12px 13px;
  font: inherit;
  font-weight: 500;
  color: rgba(16, 25, 21, 0.92);
  letter-spacing: -0.01em;
  transition: border-color 150ms ease, box-shadow 150ms ease;
  outline: none;
  -webkit-appearance: none;
  appearance: none;
}

.input:focus {
  border-color: rgba(15, 61, 46, 0.6);
  box-shadow: 0 0 0 3px rgba(15, 61, 46, 0.12);
}

.input.is-invalid {
  border-color: rgba(220, 38, 38, 0.65);
  box-shadow: 0 0 0 4px rgba(220, 38, 38, 0.12);
}

.input::placeholder {
  color: rgba(75, 90, 83, 0.6);
  font-weight: 500;
}

.input:disabled {
  opacity: 0.7;
}

.textarea {
  resize: vertical;
  min-height: 130px;
}

.hint {
  margin-top: 8px;
  font-size: 0.9rem;
  color: rgba(220, 38, 38, 0.9);
  min-height: 1.1em;
}

.form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  margin-top: 4px;
}

.form-toast {
  margin-top: 2px;
  padding: 12px 14px;
  border-radius: 16px;
  background: rgba(16, 185, 129, 0.12);
  border: 1px solid rgba(16, 185, 129, 0.18);
  color: rgba(16, 185, 129, 0.95);
  font-weight: 700;
}

.footer {
  border-top: 1px solid rgba(18, 25, 40, 0.08);
  padding: 56px 0 34px;
  background: radial-gradient(1200px 520px at 10% 0%, rgba(15, 61, 46, 0.08), transparent 55%),
    radial-gradient(1000px 520px at 90% 40%, rgba(138, 91, 60, 0.08), transparent 60%),
    #fff;
}

.footer-grid {
  display: grid;
  gap: 24px;
}

.footer-top {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.9fr) minmax(0, 0.9fr);
  gap: 18px;
  align-items: start;
}

.footer-brand {
  border-radius: var(--radius-lg);
  border: 0;
  background: transparent;
  box-shadow: none;
  padding: 18px;
  backdrop-filter: none;
}

.brand--footer .brand-mark {
  width: 38px;
  height: 38px;
}

.brand--footer .brand-name::after {
  display: none;
}

.footer-desc {
  margin: 12px 0 0;
  color: rgba(75, 90, 83, 0.92);
  font-weight: 600;
  letter-spacing: -0.01em;
  max-width: 52ch;
}

.footer-tags {
  margin-top: 14px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.footer-tag {
  display: inline-flex;
  align-items: center;
  height: 30px;
  padding: 0 12px;
  border-radius: 999px;
  background: transparent;
  border: 1px solid rgba(15, 61, 46, 0.22);
  color: rgba(16, 25, 21, 0.9);
  font-weight: 800;
  letter-spacing: -0.01em;
  font-size: 0.92rem;
}

.footer-col {
  border-radius: var(--radius-lg);
  border: 0;
  background: transparent;
  padding: 18px;
  display: grid;
  align-content: start;
  gap: 10px;
  backdrop-filter: none;
}

.footer-col-title {
  font-weight: 900;
  letter-spacing: -0.02em;
  color: rgba(16, 25, 21, 0.92);
  margin-bottom: 2px;
}

.footer-meta {
  color: rgba(75, 90, 83, 0.82);
  font-weight: 600;
}

.footer-link {
  color: #2b3242;
  font-weight: 800;
  opacity: 0.86;
  transition: opacity 160ms ease, color 160ms ease, transform 160ms ease;
}

.footer-link:hover {
  opacity: 1;
  color: var(--brand);
  transform: translateY(-1px);
}

.footer-link--small {
  font-weight: 800;
  font-size: 0.95rem;
}

.footer-bottom {
  padding-top: 18px;
  border-top: 1px solid rgba(18, 25, 40, 0.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
}

.footer-copy {
  color: rgba(75, 90, 83, 0.9);
  font-weight: 700;
  letter-spacing: -0.01em;
}

.footer-bottom-links {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

@media (max-width: 980px) {
  .books {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .about {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .about-media {
    order: -1;
  }

  .contact {
    grid-template-columns: 1fr;
  }

  .section-head--left {
    max-width: 760px;
  }

  .book-feature {
    grid-template-columns: 1fr;
  }

  .quotes {
    grid-template-columns: 1fr;
  }

  .footer-top {
    grid-template-columns: 1fr;
  }

  .ebook-layout {
    grid-template-columns: 1fr;
    align-items: start;
    max-width: none;
    margin: 0;
  }

  .ebook-media {
    display: block;
    height: auto;
    max-width: none;
  }

  .ebook-cover {
    height: auto;
    display: block;
    aspect-ratio: auto;
  }

  .ebook-cover img {
    height: auto;
  }

  .ebook-sections {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .header-inner {
    height: 68px;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .nav-panel {
    position: absolute;
    top: 72px;
    right: 20px;
    left: 20px;
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(18, 25, 40, 0.1);
    border-radius: 18px;
    padding: 14px;
    box-shadow: var(--shadow);
    display: grid;
    gap: 10px;
    transform: translateY(-10px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 180ms ease, transform 180ms ease;
  }

  .site-header.is-on-hero .nav-panel {
    background: rgba(255, 255, 255, 0.92);
    border-color: rgba(18, 25, 40, 0.1);
  }

  .site-header.is-on-hero .nav-link {
    color: #2b3242;
  }

  .nav-panel.is-open {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }

  .nav-link {
    padding: 10px 10px;
    border-radius: 12px;
  }

  .nav-link:hover {
    background: rgba(15, 61, 46, 0.14);
  }

  .nav-cta {
    width: 100%;
  }

  .hero-content {
    padding: 78px 0 90px;
  }

  .hero-media::after {
    content: none;
  }

  .hero-layout {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .hero-visual {
    min-height: 420px;
  }

  .hero-book {
    transform: rotate(4deg) translateY(0);
  }

  .hero-meta {
    grid-template-columns: 1fr;
  }

  .books {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .form-grid {
    grid-template-columns: 1fr;
  }

  .footer {
    padding: 46px 0 30px;
  }

  .footer-bottom-links {
    justify-content: flex-start;
  }

  .section {
    padding: 64px 0;
  }

  .form {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 420px) {
  .books {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  * {
    transition-duration: 0.001ms !important;
    animation-duration: 0.001ms !important;
  }
}
