/* Homepage — modern layout (page-home only) */

@font-face {
  font-family: 'Quill Sans Display';
  font-style: normal;
  font-weight: 800;
  font-display: swap;
  src: url('../fonts/quill-sans-display.woff2') format('woff2');
}

.page-home {
  --home-ink: #0f172a;
  --home-muted: #64748b;
  --home-line: rgba(15, 23, 42, 0.08);
  --home-card: #ffffff;
  --home-accent: #16a34a;
  --home-accent-deep: #15803d;
  --home-glow: rgba(34, 197, 94, 0.12);
  --home-radius: 20px;
}

.page-home .site-header {
  background: rgba(248, 250, 252, 0.85);
  border-bottom-color: var(--home-line);
}

/* Shared section typography */
.home-eyebrow {
  display: inline-block;
  margin-bottom: 0.65rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--home-accent-deep);
}

.home-section-head {
  text-align: center;
  max-width: 42rem;
  margin: 0 auto 2.5rem;
}

.home-section-head--left {
  text-align: left;
  margin-left: 0;
  margin-right: 0;
  max-width: 36rem;
}

.home-section-head h2 {
  font-size: clamp(1.75rem, 4vw, 2.35rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.12;
  color: var(--home-ink);
  margin-bottom: 0.75rem;
}

.home-section-lead {
  font-size: 1.05rem;
  line-height: 1.6;
  color: var(--home-muted);
}

.home-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.35rem 0.75rem;
  border-radius: 9999px;
  font-size: 0.78rem;
  font-weight: 700;
}

.home-pill--green {
  background: #dcfce7;
  color: #166534;
}

.home-pill--soft {
  background: #f1f5f9;
  color: #475569;
}

.home-pill--light {
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.25);
}

.home-link {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  font-size: 0.92rem;
  font-weight: 700;
  color: #2563eb;
}

.home-link:hover {
  text-decoration: underline;
}

/* Hero */
.home-hero {
  position: relative;
  padding: clamp(2rem, 5vw, 3.5rem) 0 clamp(2.5rem, 6vw, 4rem);
  overflow: hidden;
}

.home-hero__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 10% 0%, rgba(34, 197, 94, 0.14), transparent 55%),
    radial-gradient(ellipse 60% 50% at 90% 10%, rgba(59, 130, 246, 0.1), transparent 50%),
    linear-gradient(180deg, #f8fafc 0%, #f1f5f9 100%);
  pointer-events: none;
}

.home-hero__grid {
  position: relative;
  display: grid;
  gap: 2.5rem;
  align-items: center;
}

@media (min-width: 992px) {
  .home-hero__grid {
    grid-template-columns: 1.05fr 0.95fr;
    gap: 3rem;
  }
}

.home-hero__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.25rem;
}

.home-hero__title,
#home-hero-title {
  font-family: 'Quill Sans Display', sans-serif;
  font-size: clamp(2.1rem, 5.2vw, 3.25rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.06;
  color: var(--home-ink);
  margin-bottom: 1rem;
}

.home-hero__title--rotator {
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.home-hero__title--rotator.is-exiting {
  opacity: 0;
  transform: translateY(-0.35rem);
}

.home-hero__title--rotator.is-entering {
  animation: homeCountIn 0.35s ease forwards;
}

.home-hero__title--rotator #quick-hero-suffix {
  font-weight: 800;
  color: var(--home-ink);
}

.home-hero__accent {
  background: linear-gradient(135deg, #22c55e, #16a34a);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2.5ch;
  text-align: center;
  font-variant-numeric: tabular-nums;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.home-hero__accent.is-exiting {
  opacity: 0;
  transform: translateY(-0.25rem);
}

.home-hero__accent.is-entering {
  animation: homeCountIn 0.28s ease forwards;
}

@keyframes homeCountIn {
  from { opacity: 0; transform: translateY(0.35rem); }
  to { opacity: 1; transform: translateY(0); }
}

.home-hero__lead {
  font-size: clamp(1rem, 2vw, 1.125rem);
  line-height: 1.65;
  color: var(--home-muted);
  max-width: 34rem;
  margin-bottom: 1.5rem;
}

.home-hero__form {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  max-width: 32rem;
  margin-bottom: 1rem;
}

@media (min-width: 640px) {
  .home-hero__form {
    flex-direction: row;
    align-items: stretch;
    padding: 0.4rem;
    background: #fff;
    border: 1px solid var(--home-line);
    border-radius: 9999px;
    box-shadow: 0 12px 40px rgba(15, 23, 42, 0.08);
  }
}

.home-hero__form input {
  flex: 1;
  border: none;
  background: #fff;
  padding: 0.9rem 1.1rem;
  font: inherit;
  font-size: 0.95rem;
  color: var(--home-ink);
  border-radius: 9999px;
  min-width: 0;
}

@media (max-width: 639px) {
  .home-hero__form input {
    border: 1px solid var(--home-line);
    border-radius: 14px;
  }
}

.home-hero__form input:focus {
  outline: 2px solid rgba(34, 197, 94, 0.35);
  outline-offset: 0;
}

.home-hero__form input::placeholder {
  color: #94a3b8;
}

.home-hero__submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.9rem 1.35rem;
  border: none;
  border-radius: 9999px;
  background: linear-gradient(135deg, #22c55e, #16a34a);
  color: #fff;
  font: inherit;
  font-size: 0.95rem;
  font-weight: 700;
  cursor: pointer;
  white-space: nowrap;
  box-shadow: 0 10px 24px rgba(22, 163, 74, 0.28);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.home-hero__submit:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 28px rgba(22, 163, 74, 0.32);
}

.home-hero__chips {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 1.25rem;
}

.home-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  border: 1px solid #e5e7eb;
  background: #ffffff;
  font: inherit;
  font-size: 0.875rem;
  font-weight: 500;
  color: #6b7280;
  cursor: pointer;
  transition: border-color 0.15s ease, color 0.15s ease, background 0.15s ease;
}

.home-chip:hover {
  border-color: rgba(42, 178, 0, 0.4);
  color: #374151;
  background: #fff;
}

.home-chip--ai {
  font-weight: 600;
}

.home-chip__icon {
  width: 1rem;
  height: 1rem;
  flex-shrink: 0;
}

.home-hero__checks {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem 1.25rem;
  padding: 0;
  margin: 0;
  font-size: 0.88rem;
  color: #475569;
}

.home-hero__checks li {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.home-hero__checks li::before {
  content: "";
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 9999px;
  background: var(--home-accent);
}

/* Hero mockup */
.home-hero__visual {
  display: flex;
  justify-content: center;
}

.home-mockup {
  position: relative;
  width: min(100%, 28rem);
}

.home-mockup__chrome {
  display: flex;
  gap: 0.35rem;
  padding: 0.65rem 0.85rem;
  background: #1e293b;
  border-radius: 14px 14px 0 0;
}

.home-mockup__chrome span {
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 9999px;
  background: rgba(255, 255, 255, 0.25);
}

.home-mockup__screen {
  background: #fff;
  border: 1px solid var(--home-line);
  border-top: none;
  border-radius: 0 0 18px 18px;
  padding: 0.75rem;
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.12);
}

.home-mockup__screen img {
  display: block;
  width: 100%;
  height: auto;
}

.home-mockup__float {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.65rem 0.85rem;
  background: #fff;
  border: 1px solid var(--home-line);
  border-radius: 14px;
  box-shadow: 0 12px 32px rgba(15, 23, 42, 0.1);
  font-size: 0.78rem;
  animation: homeFloat 4s ease-in-out infinite;
}

.home-mockup__float strong {
  display: block;
  font-size: 0.78rem;
  color: var(--home-ink);
  letter-spacing: -0.01em;
}

.home-mockup__float small {
  color: var(--home-muted);
}

.home-mockup__float--order {
  left: -0.5rem;
  bottom: 28%;
}

.home-mockup__float--link {
  right: -0.75rem;
  top: 18%;
  animation-delay: -2s;
}

.home-mockup__float-icon {
  font-size: 1.55rem;
  line-height: 1;
  flex-shrink: 0;
}

@keyframes homeFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

/* Slanted stats marquee */
.page-home .stats-marquee {
  position: relative;
  background: #f2faff;
  padding: clamp(1.25rem, 3vw, 2rem) 0;
  overflow: visible;
}

.page-home .stats-marquee__stage {
  width: 100%;
  padding: clamp(1.5rem, 3.5vw, 2.25rem) 0;
}

.page-home .stats-marquee__ribbon-pair {
  position: relative;
  width: 100%;
}

.page-home .stats-marquee__band {
  width: 120%;
  margin-left: -10%;
  padding: clamp(0.9rem, 2vw, 1.2rem) 0;
}

.page-home .stats-marquee__band--back {
  position: absolute;
  top: 0;
  bottom: 0;
  left: -10%;
  width: 120%;
  margin-left: 0;
  background: #0a0a0a;
  transform: rotate(2.5deg);
  z-index: 0;
}

.page-home .stats-marquee__band--front {
  position: relative;
  background: #52b86a;
  transform: rotate(-2.5deg);
  z-index: 1;
  overflow: hidden;
  box-shadow: 0 6px 24px rgba(82, 184, 106, 0.18);
}

.page-home .stats-marquee__track {
  display: flex;
  align-items: center;
  gap: clamp(2.5rem, 6vw, 5rem);
  width: max-content;
  animation: stats-marquee-scroll 45s linear infinite;
  will-change: transform;
}

.page-home .stats-marquee:hover .stats-marquee__track {
  animation-play-state: paused;
}

@keyframes stats-marquee-scroll {
  from {
    transform: translateX(-33.333%);
  }
  to {
    transform: translateX(0);
  }
}

.page-home .stats-marquee__item {
  display: inline-flex;
  align-items: baseline;
  gap: 0.4rem;
  flex: 0 0 auto;
  color: #fff;
  font-size: clamp(1rem, 2.2vw, 1.4rem);
  font-weight: 500;
  letter-spacing: -0.01em;
  white-space: nowrap;
}

.page-home .stats-marquee__item strong {
  font-weight: 800;
  font-size: 1.08em;
}

@media (prefers-reduced-motion: reduce) {
  .page-home .stats-marquee__track {
    animation: none;
    flex-wrap: wrap;
    justify-content: center;
    width: 100%;
    max-width: 960px;
    margin: 0 auto;
    padding: 0 1.5rem;
    gap: 1rem 2rem;
  }

  .page-home .stats-marquee__band--back,
  .page-home .stats-marquee__band--front {
    transform: none;
    width: 100%;
    margin-left: 0;
  }

  .page-home .stats-marquee__band--back {
    display: none;
  }
}

/* How it works — bento grid */
.page-home .home-flow {
  padding: clamp(3rem, 8vw, 5rem) 0;
  background: #fff;
}

.home-flow__grid {
  display: grid;
  gap: 1rem;
}

@media (min-width: 768px) {
  .home-flow__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .home-flow-card--wide {
    grid-column: 1 / -1;
  }
}

.home-flow-card {
  display: grid;
  gap: 1.25rem;
  padding: clamp(1.25rem, 3vw, 1.75rem);
  background: linear-gradient(160deg, #f8fafc 0%, #f1f5f9 100%);
  border: 1px solid var(--home-line);
  border-radius: var(--home-radius);
  overflow: hidden;
}

@media (min-width: 768px) {
  .home-flow-card {
    grid-template-columns: 1fr 1fr;
    align-items: center;
  }

  .home-flow-card--wide {
    grid-template-columns: 1fr 1.4fr;
  }
}

.home-flow-card__tag {
  display: inline-block;
  margin-bottom: 0.5rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #2563eb;
}

.home-flow-card h3 {
  font-size: 1.2rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 0.5rem;
  color: var(--home-ink);
}

.home-flow-card p {
  font-size: 0.92rem;
  line-height: 1.6;
  color: var(--home-muted);
  margin-bottom: 0.85rem;
}

.home-flow-card__visual img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.08);
}

/* Website showcase */
.page-home .home-showcase {
  padding: clamp(3rem, 8vw, 5rem) 0;
  background:
    radial-gradient(circle at 12% 15%, rgba(34, 197, 94, 0.12), transparent 28rem),
    radial-gradient(circle at 92% 10%, rgba(59, 130, 246, 0.1), transparent 24rem),
    linear-gradient(180deg, #f2faff 0%, #fff 100%);
}

.domain-type-row {
  display: grid;
  gap: 0.85rem;
  align-items: center;
  margin-bottom: clamp(1rem, 3vw, 1.6rem);
  padding: clamp(1rem, 3vw, 1.35rem);
  background: #0f172a;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  box-shadow: 0 18px 48px rgba(15, 23, 42, 0.16);
}

@media (min-width: 720px) {
  .domain-type-row {
    grid-template-columns: auto minmax(0, 1fr);
    padding-left: clamp(1.25rem, 3vw, 2rem);
    padding-right: clamp(1.25rem, 3vw, 2rem);
  }
}

.domain-type-row__label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  padding: 0.45rem 0.8rem;
  border-radius: 999px;
  background: rgba(34, 197, 94, 0.16);
  color: #bbf7d0;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
}

.domain-type-row__display {
  display: inline-flex;
  align-items: center;
  min-height: 1.25em;
  color: #fff;
  font-size: clamp(1.45rem, 5vw, 3.35rem);
  line-height: 1.05;
  font-weight: 800;
  letter-spacing: -0.045em;
  word-break: break-word;
}

.domain-type-row__display::after {
  content: "";
  display: inline-block;
  width: 0.12em;
  height: 0.9em;
  margin-left: 0.16em;
  border-radius: 999px;
  background: #52b86a;
  animation: domain-cursor-blink 0.85s steps(2, start) infinite;
}

@keyframes domain-cursor-blink {
  0%, 45% {
    opacity: 1;
  }
  46%, 100% {
    opacity: 0;
  }
}

.domain-search-card {
  display: grid;
  gap: clamp(1.5rem, 4vw, 2.5rem);
  align-items: center;
  padding: clamp(1.25rem, 4vw, 2.5rem);
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: clamp(1.25rem, 3vw, 2rem);
  box-shadow: 0 24px 70px rgba(15, 23, 42, 0.08);
  backdrop-filter: blur(12px);
}

@media (min-width: 960px) {
  .domain-search-card {
    grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
  }
}

.domain-search-card__copy h2 {
  max-width: 46rem;
  margin-bottom: 0.55rem;
  font-size: clamp(2rem, 5vw, 3.7rem);
  line-height: 1;
  font-weight: 800;
  letter-spacing: -0.055em;
  color: var(--home-ink);
}

.domain-search-card__subtitle {
  margin-bottom: 1rem;
  font-size: clamp(1.05rem, 2.5vw, 1.4rem);
  font-weight: 800;
  color: var(--home-accent-deep);
}

.domain-search-card__copy .home-section-lead {
  max-width: 44rem;
  margin-bottom: 0.85rem;
  text-align: left;
}

.domain-search-card__copy p:not(.home-section-lead):not(.domain-search-card__subtitle) {
  max-width: 42rem;
  color: var(--home-muted);
  line-height: 1.7;
}

.domain-search-card__note {
  margin-top: 0.85rem;
  padding: 0.95rem 1rem;
  background: linear-gradient(135deg, rgba(34, 197, 94, 0.13), rgba(255, 255, 255, 0.92));
  border: 1px solid rgba(22, 163, 74, 0.22);
  border-left: 4px solid var(--home-accent);
  border-radius: 16px;
  box-shadow: 0 10px 28px rgba(22, 163, 74, 0.08);
  font-size: 0.94rem;
}

.domain-search-card__note span {
  display: block;
  margin-bottom: 0.25rem;
  color: var(--home-accent-deep);
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.domain-search-card__note strong {
  color: var(--home-ink);
  font-weight: 800;
}

.domain-search-form {
  display: grid;
  gap: 0.85rem;
  max-width: 720px;
  margin-top: 1.6rem;
}

@media (min-width: 720px) {
  .domain-search-form {
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: stretch;
  }
}

.domain-search-form__field {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  overflow: hidden;
  min-height: 58px;
  background: #fff;
  border: 1px solid rgba(15, 23, 42, 0.12);
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.06);
}

.domain-search-form__field:focus-within {
  border-color: rgba(22, 163, 74, 0.45);
  box-shadow: 0 0 0 4px rgba(34, 197, 94, 0.12);
}

.domain-search-form input,
.domain-search-form select {
  width: 100%;
  min-height: 58px;
  border: 0;
  background: transparent;
  color: var(--home-ink);
  font: inherit;
  outline: none;
}

.domain-search-form input {
  padding: 0 1.15rem;
  font-weight: 700;
}

.domain-search-form select {
  width: auto;
  padding: 0 1rem;
  border-left: 1px solid rgba(15, 23, 42, 0.1);
  font-weight: 800;
  color: var(--home-accent-deep);
  cursor: pointer;
}

.domain-search-form .btn {
  min-height: 58px;
  border-radius: 16px;
  white-space: nowrap;
}

.domain-search-card__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 0.85rem;
}

.domain-search-card__actions .btn-ghost {
  background: #fff;
  border-color: rgba(15, 23, 42, 0.12);
  color: var(--home-ink);
}

.domain-search-card__panel {
  display: grid;
  gap: 1rem;
}

.domain-search-why,
.domain-search-help,
.domain-search-ready {
  padding: clamp(1.1rem, 3vw, 1.4rem);
  background: linear-gradient(160deg, #ffffff 0%, #f8fafc 100%);
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 20px;
  box-shadow: 0 12px 34px rgba(15, 23, 42, 0.05);
}

.domain-search-why h3,
.domain-search-ready h3 {
  margin-bottom: 0.85rem;
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--home-ink);
}

.domain-search-why ul {
  display: grid;
  gap: 0.7rem;
  list-style: none;
}

.domain-search-why li {
  position: relative;
  padding-left: 1.8rem;
  color: #334155;
  line-height: 1.5;
}

.domain-search-why li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  display: inline-grid;
  place-items: center;
  width: 1.15rem;
  height: 1.15rem;
  margin-top: 0.15rem;
  border-radius: 999px;
  background: rgba(34, 197, 94, 0.12);
  color: var(--home-accent-deep);
  font-size: 0.72rem;
  font-weight: 900;
}

.domain-search-help {
  background: linear-gradient(135deg, rgba(22, 163, 74, 0.1), rgba(255, 255, 255, 0.92));
}

.domain-search-help span {
  display: block;
  margin-bottom: 0.35rem;
  font-weight: 800;
  color: var(--home-accent-deep);
}

.domain-search-help p,
.domain-search-ready p {
  color: var(--home-muted);
  line-height: 1.65;
}

@media (max-width: 520px) {
  .domain-type-row {
    border-radius: 24px;
  }

  .domain-type-row__label {
    white-space: normal;
  }

  .domain-search-form__field {
    grid-template-columns: 1fr;
  }

  .domain-search-form select {
    width: 100%;
    border-left: 0;
    border-top: 1px solid rgba(15, 23, 42, 0.1);
  }

  .domain-search-form .btn,
  .domain-search-card__actions .btn {
    width: 100%;
  }
}

/* Trusted brands */
.page-home .home-trusted {
  padding: clamp(2.75rem, 7vw, 4.5rem) 0 clamp(2.5rem, 6vw, 4rem);
  background: #fff;
  overflow: hidden;
}

.home-section-head--trusted {
  margin-bottom: 2rem;
}

.home-section-head--trusted h2 {
  font-size: clamp(1.35rem, 3vw, 1.85rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--home-ink);
}

.home-trusted__count {
  color: var(--home-accent-deep);
}

.trusted-logos-marquee {
  overflow: hidden;
  width: 100vw;
  max-width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent);
  padding: 0.5rem 0 0.25rem;
}

.trusted-logos-track {
  display: flex;
  align-items: center;
  gap: clamp(2.5rem, 5vw, 4.5rem);
  width: max-content;
  animation: trusted-logos-marquee 55s linear infinite;
  will-change: transform;
}

.trusted-logos-marquee:hover .trusted-logos-track {
  animation-play-state: paused;
}

@keyframes trusted-logos-marquee {
  from {
    transform: translateX(-50%);
  }
  to {
    transform: translateX(0);
  }
}

.trusted-logo {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 0.25rem;
}

.trusted-logo__svg {
  display: block;
  height: 36px;
  width: auto;
  min-width: 140px;
  opacity: 0.82;
  transition: opacity 0.2s;
}

.trusted-logo:hover .trusted-logo__svg {
  opacity: 1;
}

@media (prefers-reduced-motion: reduce) {
  .trusted-logos-track {
    animation: none;
    flex-wrap: wrap;
    justify-content: center;
    width: 100%;
    max-width: 960px;
    margin: 0 auto;
    padding: 0 1.5rem;
    gap: 1.5rem 2.5rem;
  }

  .trusted-logos-marquee {
    mask-image: none;
    -webkit-mask-image: none;
  }
}

/* Testimonials */
.page-home .home-social {
  padding: clamp(3rem, 8vw, 5rem) 0;
  background: #f8fafc;
}

.page-home .home-testimonial {
  background: #fff;
  border: 1px solid var(--home-line);
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.05);
}

.page-home .home-testimonial p {
  font-size: 0.92rem;
  line-height: 1.6;
  color: #334155;
}

/* Pricing on home */
.page-home .pricing--take {
  padding: clamp(3rem, 8vw, 5rem) 0;
  background: #fff;
}

.page-home .pricing--take .section-header h2 {
  font-size: clamp(1.75rem, 4vw, 2.35rem);
  font-weight: 800;
  letter-spacing: -0.03em;
}

.page-home .pricing-toggle {
  margin-top: 1.25rem;
}

.page-home .price-card {
  border: 1px solid var(--home-line);
  border-radius: var(--home-radius);
  box-shadow: 0 4px 20px rgba(15, 23, 42, 0.04);
}

.page-home .price-card--featured {
  border-color: rgba(34, 197, 94, 0.45);
  box-shadow: 0 16px 40px rgba(22, 163, 74, 0.12);
}

/* FAQ */
.page-home .home-faq {
  padding: clamp(3rem, 8vw, 5rem) 0 clamp(4rem, 8vw, 5rem);
  background: linear-gradient(180deg, #f8fafc 0%, #f1f5f9 100%);
}

.page-home .home-faq__list .faq-item {
  background: #fff;
  border: 1px solid var(--home-line);
  border-radius: 14px;
  margin-bottom: 0.65rem;
  overflow: hidden;
}

.page-home .faq-q-text {
  font-family: inherit;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--home-ink);
}

.page-home .faq-answer p {
  font-family: inherit;
  font-size: 0.92rem;
  line-height: 1.6;
  color: var(--home-muted);
}

/* Bottom CTA */
.home-cta {
  padding: clamp(2.5rem, 6vw, 4rem) 0;
  background: linear-gradient(135deg, #0f172a 0%, #1e3a5f 55%, #14532d 100%);
  color: #fff;
}

.home-cta__inner {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  align-items: flex-start;
}

@media (min-width: 768px) {
  .home-cta__inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}

.home-cta__copy h2 {
  font-size: clamp(1.65rem, 4vw, 2.25rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.15;
  margin: 0.65rem 0 0.5rem;
}

.home-cta__copy p {
  color: rgba(255, 255, 255, 0.78);
  max-width: 28rem;
  line-height: 1.55;
}

.home-cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.home-cta .btn-primary {
  background: #22c55e;
  border-color: #22c55e;
}

.home-cta .btn-primary:hover {
  background: #16a34a;
}

.home-cta .btn-ghost {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.35);
}

.home-cta .btn-ghost:hover {
  background: rgba(255, 255, 255, 0.1);
}

@media (prefers-reduced-motion: reduce) {
  .home-mockup__float {
    animation: none;
  }
}
