/* TeleLeads Agency — light brand system (logo-first) */
:root {
  --bg: #f4f6f0;
  --bg-soft: #eef2e8;
  --surface: #ffffff;
  --surface-2: #f8faf5;
  --charcoal: #2b2b2b;
  --ink: #161816;
  --muted: #5c6558;
  --lime: #b8d434;
  --lime-deep: #6f8f14;
  --lime-dim: rgba(184, 212, 52, 0.18);
  --lime-strong: rgba(184, 212, 52, 0.35);
  --line: rgba(22, 24, 22, 0.1);
  --danger: #c62828;
  --success: #2e7d4f;
  --shadow: 0 18px 50px rgba(22, 24, 22, 0.08);
  --font-display: "Sora", sans-serif;
  --font-body: "Manrope", sans-serif;
  --radius: 4px;
  --header-h: 4.75rem;
  --container: 72rem;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--ink);
  background:
    radial-gradient(ellipse 80% 50% at 100% 0%, rgba(184, 212, 52, 0.12), transparent 50%),
    radial-gradient(ellipse 60% 40% at 0% 100%, rgba(184, 212, 52, 0.08), transparent 45%),
    var(--bg);
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: var(--lime-deep);
  text-decoration: none;
  transition: color 0.2s var(--ease);
}

a:hover {
  color: #55700c;
}

ul {
  list-style: none;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--ink);
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--lime);
  color: var(--ink);
  padding: 0.75rem 1rem;
  z-index: 1000;
  font-weight: 700;
}

.skip-link:focus {
  left: 1rem;
  top: 1rem;
}

.container {
  width: min(100% - 2.5rem, var(--container));
  margin-inline: auto;
}

.narrow {
  width: min(100% - 2.5rem, 46rem);
  margin-inline: auto;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--header-h);
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-h);
  gap: 1.5rem;
}

.brand-logo,
.footer-logo {
  height: 3rem;
  width: auto;
  object-fit: contain;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.75rem;
}

.site-nav > ul {
  display: flex;
  align-items: center;
  gap: 1.35rem;
}

.site-nav a {
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 600;
}

.site-nav a:hover,
.site-nav a.is-active {
  color: var(--ink);
}

.site-nav .btn {
  color: var(--ink);
}

.has-submenu {
  position: relative;
}

.submenu {
  position: absolute;
  top: calc(100% + 0.85rem);
  left: 0;
  min-width: 16rem;
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  padding: 0.5rem;
  opacity: 0;
  visibility: hidden;
  transform: translateY(6px);
  transition: 0.2s var(--ease);
  z-index: 20;
}

.has-submenu:hover .submenu,
.has-submenu:focus-within .submenu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.submenu a {
  display: block;
  padding: 0.65rem 0.8rem;
  color: var(--muted);
  font-size: 0.88rem;
}

.submenu a:hover {
  background: var(--lime-dim);
  color: var(--ink);
}

.nav-toggle {
  display: none;
  width: 2.5rem;
  height: 2.5rem;
  background: transparent;
  border: 1px solid var(--line);
  cursor: pointer;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
}

.nav-toggle span {
  display: block;
  width: 1.15rem;
  height: 2px;
  background: var(--ink);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 700;
  padding: 0.85rem 1.4rem;
  border: 1px solid transparent;
  border-radius: var(--radius);
  cursor: pointer;
  transition: 0.2s var(--ease);
  text-decoration: none;
  line-height: 1;
}

.btn-primary {
  background: var(--lime);
  color: var(--ink);
}

.btn-primary:hover {
  background: #c9e24a;
  color: var(--ink);
}

.btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--line);
}

.btn-ghost:hover {
  border-color: var(--lime-deep);
  color: var(--lime-deep);
}

.btn-on-dark {
  border-color: rgba(255, 255, 255, 0.35);
  color: #fff;
}

.btn-on-dark:hover {
  border-color: var(--lime);
  color: var(--lime);
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 1.75rem;
}

/* Hero — full-bleed photo */
.hero {
  position: relative;
  min-height: calc(100vh - var(--header-h));
  display: grid;
  align-items: center;
  overflow: hidden;
  isolation: isolate;
  color: var(--ink);
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(244, 246, 240, 0.96) 0%, rgba(244, 246, 240, 0.88) 38%, rgba(244, 246, 240, 0.35) 68%, rgba(244, 246, 240, 0.15) 100%),
    linear-gradient(180deg, rgba(244, 246, 240, 0.25) 0%, rgba(244, 246, 240, 0.55) 100%);
}

.hero-motif {
  position: absolute;
  right: 8%;
  top: 18%;
  width: min(28vw, 16rem);
  aspect-ratio: 1;
  border: 3px solid rgba(184, 212, 52, 0.55);
  transform: rotate(45deg);
  z-index: -1;
  animation: motifPulse 6s ease-in-out infinite;
  pointer-events: none;
}

.hero-motif::before,
.hero-motif::after {
  content: "";
  position: absolute;
  inset: 14%;
  border: 3px solid rgba(184, 212, 52, 0.35);
}

.hero-motif::after {
  inset: 28%;
  border-color: rgba(184, 212, 52, 0.22);
}

@keyframes motifPulse {
  0%, 100% { opacity: 0.75; transform: rotate(45deg) scale(1); }
  50% { opacity: 1; transform: rotate(45deg) scale(1.04); }
}

.hero-content {
  max-width: 38rem;
  padding-block: 5rem 4.5rem;
  animation: rise 0.9s var(--ease) both;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--lime-deep);
  margin-bottom: 1.25rem;
}

.eyebrow::before {
  content: "";
  width: 0.45rem;
  height: 0.45rem;
  background: var(--lime);
  animation: blink 1.8s ease-in-out infinite;
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.35; }
}

.hero h1 {
  font-size: clamp(2.4rem, 6vw, 3.85rem);
  margin-bottom: 1.15rem;
}

.hero h1 em {
  font-style: normal;
  color: var(--lime-deep);
  background: linear-gradient(120deg, var(--lime-deep), #8fb020);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero .lede {
  color: var(--muted);
  font-size: 1.12rem;
  max-width: 32rem;
}

@keyframes rise {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Sections */
.section {
  padding-block: 5.5rem;
}

.section-head {
  max-width: 38rem;
  margin-bottom: 2.75rem;
}

.section-head h2 {
  font-size: clamp(1.85rem, 3.5vw, 2.55rem);
  margin-bottom: 0.85rem;
}

.section-head p {
  color: var(--muted);
}

.section-muted {
  background: var(--surface);
  border-block: 1px solid var(--line);
}

.section-visual {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 3rem;
  align-items: center;
}

.visual-frame {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  background: var(--surface);
}

.visual-frame img {
  width: 100%;
  height: min(28rem, 70vw);
  object-fit: cover;
}

.visual-frame::after {
  content: "";
  position: absolute;
  inset: auto -8% -8% auto;
  width: 42%;
  aspect-ratio: 1;
  border: 3px solid rgba(184, 212, 52, 0.55);
  transform: rotate(45deg);
  pointer-events: none;
}

.section-cta {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  color: #fff;
  text-align: center;
  border-block: 1px solid var(--line);
  background: #1d2118;
}

.section-cta .cta-media {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.section-cta .cta-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.section-cta .cta-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(22, 24, 22, 0.88), rgba(43, 43, 43, 0.78));
}

.section-cta h2 {
  font-size: clamp(1.85rem, 3.5vw, 2.55rem);
  margin-bottom: 0.85rem;
  color: #fff;
}

.section-cta p {
  color: rgba(255, 255, 255, 0.78);
  max-width: 34rem;
  margin-inline: auto;
}

/* Service grid with photos */
.service-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}

.service-link {
  display: grid;
  grid-template-rows: auto 1fr;
  background: var(--surface);
  border: 1px solid var(--line);
  color: inherit;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), border-color 0.25s var(--ease);
  min-height: 100%;
  overflow: hidden;
}

.service-link:hover {
  color: inherit;
  transform: translateY(-3px);
  box-shadow: var(--shadow);
  border-color: rgba(184, 212, 52, 0.55);
}

.service-link .thumb {
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: var(--bg-soft);
}

.service-link .thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease);
}

.service-link:hover .thumb img {
  transform: scale(1.04);
}

.service-link .body {
  padding: 1.35rem 1.35rem 1.5rem;
}

.service-link .kicker {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--lime-deep);
  margin-bottom: 0.55rem;
}

.service-link h3 {
  font-size: 1.25rem;
  margin-bottom: 0.55rem;
}

.service-link p {
  color: var(--muted);
  font-size: 0.98rem;
  margin-bottom: 1rem;
}

.service-link .more {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--lime-deep);
}

.service-link.span-2 {
  grid-column: 1 / -1;
  grid-template-columns: 1.1fr 1fr;
  grid-template-rows: 1fr;
}

.service-link.span-2 .thumb {
  aspect-ratio: auto;
  min-height: 14rem;
}

/* Process steps */
.process {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  counter-reset: step;
}

.process-item {
  position: relative;
  padding-top: 0.25rem;
}

.process-item::before {
  counter-increment: step;
  content: "0" counter(step);
  display: block;
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--lime-deep);
  margin-bottom: 1rem;
  letter-spacing: 0.06em;
}

.process-item h3 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.process-item p {
  color: var(--muted);
  font-size: 0.95rem;
}

/* Trust / value rows */
.value-list {
  display: grid;
  gap: 1.5rem;
}

.value-item {
  display: grid;
  grid-template-columns: 3.5rem 1fr;
  gap: 1.25rem;
  align-items: start;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--line);
}

.value-item:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.value-mark {
  width: 3.5rem;
  height: 3.5rem;
  border: 1px solid rgba(184, 212, 52, 0.65);
  background: var(--lime-dim);
  transform: rotate(45deg);
  display: grid;
  place-items: center;
  margin-top: 0.35rem;
}

.value-mark span {
  transform: rotate(-45deg);
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--lime-deep);
  font-size: 0.9rem;
}

.value-item h3 {
  font-size: 1.15rem;
  margin-bottom: 0.4rem;
}

.value-item p {
  color: var(--muted);
}

/* Page hero (inner) */
.page-hero {
  position: relative;
  padding: 4.5rem 0 3rem;
  border-bottom: 1px solid var(--line);
  overflow: hidden;
  isolation: isolate;
}

.page-hero.has-media::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background-image: var(--page-hero-image);
  background-size: cover;
  background-position: center;
}

.page-hero.has-media::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(90deg, rgba(244, 246, 240, 0.96) 0%, rgba(244, 246, 240, 0.9) 45%, rgba(244, 246, 240, 0.72) 100%);
}

.page-hero h1 {
  font-size: clamp(2rem, 4.5vw, 3rem);
  margin-bottom: 0.9rem;
}

.page-hero .lede {
  color: var(--muted);
  max-width: 40rem;
  font-size: 1.08rem;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  font-size: 0.85rem;
  color: var(--muted);
  margin-bottom: 1.25rem;
}

.breadcrumb a {
  color: var(--muted);
}

.breadcrumb a:hover {
  color: var(--lime-deep);
}

.breadcrumb span[aria-current="page"] {
  color: var(--ink);
}

/* Content prose */
.prose {
  max-width: 46rem;
}

.prose h2 {
  font-size: 1.65rem;
  margin: 2.5rem 0 0.85rem;
}

.prose h3 {
  font-size: 1.2rem;
  margin: 1.85rem 0 0.65rem;
}

.prose p,
.prose li {
  color: var(--muted);
  margin-bottom: 1rem;
}

.prose ul,
.prose ol {
  padding-left: 1.2rem;
  margin-bottom: 1.25rem;
}

.prose ul {
  list-style: disc;
}

.prose ol {
  list-style: decimal;
}

.prose a {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.prose strong {
  color: var(--ink);
  font-weight: 700;
}

.prose-figure {
  margin: 2rem 0;
  border: 1px solid var(--line);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.prose-figure img {
  width: 100%;
  max-height: 22rem;
  object-fit: cover;
}

.prose-figure figcaption {
  padding: 0.75rem 1rem;
  font-size: 0.88rem;
  color: var(--muted);
  background: var(--surface);
}

/* FAQ */
.faq {
  display: grid;
  gap: 0.75rem;
  max-width: 46rem;
}

.faq details {
  background: var(--surface);
  border: 1px solid var(--line);
  padding: 1rem 1.15rem;
}

.faq summary {
  cursor: pointer;
  font-family: var(--font-display);
  font-weight: 600;
  list-style: none;
}

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

.faq summary::after {
  content: "+";
  float: right;
  color: var(--lime-deep);
  font-weight: 700;
}

.faq details[open] summary::after {
  content: "–";
}

.faq details p {
  color: var(--muted);
  margin-top: 0.85rem;
  font-size: 0.98rem;
}

/* Forms */
.form-panel {
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  padding: 1.75rem;
}

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

.form-field {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

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

.form-field label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--ink);
}

.form-field input,
.form-field select,
.form-field textarea {
  font: inherit;
  color: var(--ink);
  background: var(--surface-2);
  border: 1px solid var(--line);
  padding: 0.8rem 0.9rem;
  border-radius: var(--radius);
  width: 100%;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: 2px solid var(--lime);
  outline-offset: 1px;
  border-color: transparent;
  background: #fff;
}

.form-field textarea {
  min-height: 8rem;
  resize: vertical;
}

.form-note {
  font-size: 0.88rem;
  color: var(--muted);
  margin-top: 0.75rem;
}

.alert {
  padding: 0.9rem 1rem;
  margin-bottom: 1.25rem;
  border: 1px solid var(--line);
  font-size: 0.95rem;
}

.alert-success {
  background: rgba(46, 125, 79, 0.08);
  border-color: rgba(46, 125, 79, 0.3);
  color: var(--success);
}

.alert-error {
  background: rgba(198, 40, 40, 0.08);
  border-color: rgba(198, 40, 40, 0.28);
  color: var(--danger);
}

.contact-aside {
  display: grid;
  gap: 1.25rem;
}

.contact-block {
  background: var(--surface);
  border: 1px solid var(--line);
  padding: 1.15rem 1.25rem;
}

.contact-block h3 {
  font-size: 1rem;
  margin-bottom: 0.35rem;
}

.contact-block p,
.contact-block a {
  color: var(--muted);
  font-size: 0.98rem;
}

.contact-block a {
  color: var(--lime-deep);
}

.split-2 {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 2.5rem;
  align-items: start;
}

/* Blog */
.blog-grid {
  display: grid;
  gap: 1.5rem;
}

.blog-item {
  display: grid;
  grid-template-columns: 11rem 1fr;
  gap: 1.35rem;
  align-items: center;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--line);
  color: inherit;
}

.blog-item:hover {
  color: inherit;
}

.blog-item .thumb {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--bg-soft);
}

.blog-item .thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.blog-item .meta {
  font-size: 0.8rem;
  color: var(--muted);
  margin-bottom: 0.45rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-weight: 600;
}

.blog-item h2 {
  font-size: 1.35rem;
  margin-bottom: 0.45rem;
}

.blog-item:hover h2 {
  color: var(--lime-deep);
}

.blog-item p {
  color: var(--muted);
}

.article-meta {
  color: var(--muted);
  font-size: 0.9rem;
  margin-bottom: 2rem;
}

/* Footer */
.site-footer {
  border-top: 1px solid var(--line);
  background: var(--surface);
  padding-top: 3.5rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.1fr;
  gap: 2.5rem;
  padding-bottom: 3rem;
}

.footer-brand p {
  color: var(--muted);
  margin: 1rem 0 1.25rem;
  font-size: 0.95rem;
  max-width: 18rem;
}

.footer-heading {
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink);
  margin-bottom: 1rem;
}

.footer-links li,
.footer-contact li {
  margin-bottom: 0.55rem;
}

.footer-links a,
.social-links a {
  color: var(--muted);
  font-size: 0.95rem;
}

.footer-links a:hover,
.social-links a:hover {
  color: var(--lime-deep);
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-contact .label {
  display: block;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
  margin-bottom: 0.15rem;
}

.footer-contact span,
.footer-contact a {
  color: var(--ink);
  font-size: 0.95rem;
}

.footer-bottom {
  border-top: 1px solid var(--line);
  padding-block: 1.25rem;
  background: var(--bg-soft);
}

.footer-bottom p {
  color: var(--muted);
  font-size: 0.88rem;
}

/* Reveal on scroll */
.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive */
@media (max-width: 960px) {
  .service-grid,
  .process,
  .footer-grid,
  .split-2,
  .section-visual,
  .service-link.span-2 {
    grid-template-columns: 1fr 1fr;
  }

  .service-link.span-2 {
    grid-template-columns: 1fr;
  }

  .process {
    gap: 1.5rem;
  }

  .hero-motif {
    opacity: 0.45;
    width: 40vw;
  }
}

@media (max-width: 780px) {
  .nav-toggle {
    display: flex;
  }

  .site-nav {
    position: fixed;
    inset: var(--header-h) 0 auto 0;
    background: rgba(255, 255, 255, 0.98);
    border-bottom: 1px solid var(--line);
    flex-direction: column;
    align-items: stretch;
    padding: 1.25rem 1.25rem 1.5rem;
    gap: 1rem;
    transform: translateY(-120%);
    opacity: 0;
    pointer-events: none;
    transition: 0.3s var(--ease);
  }

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

  .site-nav > ul {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
  }

  .site-nav > ul > li > a {
    display: block;
    padding: 0.85rem 0;
    border-bottom: 1px solid var(--line);
  }

  .submenu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    border: 0;
    background: transparent;
    box-shadow: none;
    padding: 0 0 0.5rem 0.75rem;
    min-width: 0;
  }

  .submenu a {
    padding: 0.55rem 0;
    border: 0;
  }

  .header-cta {
    width: 100%;
  }

  .service-grid,
  .process,
  .footer-grid,
  .split-2,
  .form-grid,
  .section-visual,
  .blog-item {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-content {
    padding-block: 3.5rem 3rem;
  }

  .hero-media::after {
    background:
      linear-gradient(180deg, rgba(244, 246, 240, 0.92) 0%, rgba(244, 246, 240, 0.88) 55%, rgba(244, 246, 240, 0.78) 100%);
  }

  .section {
    padding-block: 4rem;
  }

  .value-item {
    grid-template-columns: 2.75rem 1fr;
  }
}

/* ========== Homepage Figma layout (colors unchanged) ========== */
.page-home .service-link,
.page-home .form-panel,
.page-home .work-tile,
.page-home .why-item,
.page-home .trust-item {
  border-radius: 12px;
}

.hero-figma {
  min-height: calc(92vh - var(--header-h));
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--lime-deep);
  background: var(--lime-dim);
  border: 1px solid rgba(184, 212, 52, 0.45);
  border-radius: 999px;
  padding: 0.45rem 0.95rem;
  margin-bottom: 1.35rem;
}

.hero-badge::before {
  content: "";
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 50%;
  background: var(--lime);
  animation: blink 1.8s ease-in-out infinite;
}

.hero-figma h1 {
  font-size: clamp(2.55rem, 6.2vw, 4rem);
  max-width: 14ch;
}

.hero-proofs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem 1.25rem;
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--line);
  max-width: 34rem;
}

.hero-proofs li {
  position: relative;
  padding-left: 1.1rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--muted);
}

.hero-proofs li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45rem;
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 50%;
  background: var(--lime);
}

.trust-strip {
  background: var(--surface);
  border-bottom: 1px solid var(--line);
  padding: 1.75rem 0;
  margin-top: -1px;
}

.trust-strip-inner {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.trust-item {
  display: flex;
  gap: 0.9rem;
  align-items: flex-start;
  padding: 1rem 1.1rem;
  border: 1px solid var(--line);
  background: var(--surface-2);
}

.trust-icon {
  flex: 0 0 2.25rem;
  width: 2.25rem;
  height: 2.25rem;
  margin-top: 0.15rem;
  border: 2px solid rgba(184, 212, 52, 0.65);
  background: var(--lime-dim);
  transform: rotate(45deg);
}

.trust-item strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1rem;
  margin-bottom: 0.2rem;
}

.trust-item p {
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.45;
}

.section-label-wrap {
  max-width: 40rem;
  margin-bottom: 2.5rem;
  text-align: center;
  margin-inline: auto;
}

.section-label {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--lime-deep);
  margin-bottom: 0.75rem;
}

.section-label-wrap h2 {
  font-size: clamp(1.85rem, 3.5vw, 2.55rem);
  margin-bottom: 0.75rem;
}

.section-label-wrap p {
  color: var(--muted);
}

.work-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}

.work-tile {
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.work-tile img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.work-tile figcaption {
  padding: 1rem 1.15rem 1.2rem;
}

.work-tile strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.05rem;
  margin-bottom: 0.25rem;
}

.work-tile span {
  color: var(--muted);
  font-size: 0.92rem;
}

.home-quote {
  background:
    radial-gradient(ellipse 60% 50% at 0% 0%, rgba(184, 212, 52, 0.12), transparent 55%),
    var(--bg);
}

.home-quote-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 2.75rem;
  align-items: start;
}

.home-quote h2 {
  font-size: clamp(1.85rem, 3.5vw, 2.45rem);
  margin-bottom: 0.85rem;
}

.home-quote-lede {
  color: var(--muted);
  margin-bottom: 1.35rem;
}

.home-quote-points {
  display: grid;
  gap: 0.65rem;
  margin-bottom: 1.5rem;
}

.home-quote-points li {
  position: relative;
  padding-left: 1.35rem;
  color: var(--muted);
  font-size: 0.98rem;
}

.home-quote-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45rem;
  width: 0.55rem;
  height: 0.55rem;
  background: var(--lime);
  border-radius: 1px;
  transform: rotate(45deg);
}

.home-quote-email {
  color: var(--muted);
  font-size: 0.95rem;
}

.home-quote-email a {
  font-weight: 700;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.15rem;
}

.why-item {
  background: var(--surface);
  border: 1px solid var(--line);
  padding: 1.4rem 1.25rem 1.5rem;
  box-shadow: var(--shadow);
  min-height: 100%;
}

.why-mark {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--lime-deep);
  letter-spacing: 0.06em;
  margin-bottom: 0.85rem;
}

.why-item h3 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.why-item p {
  color: var(--muted);
  font-size: 0.95rem;
}

@media (max-width: 960px) {
  .trust-strip-inner,
  .why-grid,
  .home-quote-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 780px) {
  .trust-strip-inner,
  .work-grid,
  .why-grid,
  .home-quote-grid {
    grid-template-columns: 1fr;
  }

  .hero-figma h1 {
    max-width: none;
  }

  .hero-proofs {
    flex-direction: column;
    gap: 0.55rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
