@font-face {
  font-family: "Vazirmatn";
  src:
    local("Vazirmatn Regular"),
    local("Vazirmatn"),
    url("/assets/fonts/Vazirmatn-Regular.ttf") format("truetype");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Vazirmatn";
  src:
    local("Vazirmatn Bold"),
    url("/assets/fonts/Vazirmatn-Bold.ttf") format("truetype");
  font-style: normal;
  font-weight: 600 900;
  font-display: swap;
}

:root {
  --green-950: #0b2c26;
  --green-900: #123a31;
  --green-800: #174b3f;
  --green-700: #226453;
  --green-600: #2d7a64;
  --green-100: #dcece5;
  --green-50: #eff7f3;
  --cream: #f8f5ed;
  --cream-dark: #eee8db;
  --white: #fff;
  --ink: #18201d;
  --ink-soft: #5e6864;
  --border: #e0e5e1;
  --gold: #c58a2c;
  --gold-soft: #f8edd7;
  --red: #b84b42;
  --red-soft: #fbeae7;
  --blue: #40778a;
  --blue-soft: #e6f1f4;
  --shadow-sm: 0 8px 30px rgba(15, 49, 41, .07);
  --shadow-lg: 0 25px 70px rgba(15, 49, 41, .13);
  --radius-sm: 14px;
  --radius-md: 22px;
  --radius-lg: 34px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: Vazirmatn, Tahoma, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}

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

button,
input,
select,
textarea {
  font: inherit;
}

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

svg {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

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

.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;
  z-index: 1000;
  top: 12px;
  right: 12px;
  padding: 10px 16px;
  border-radius: 10px;
  color: var(--white);
  background: var(--green-900);
  transform: translateY(-150%);
}

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

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  border-bottom: 1px solid transparent;
  background: rgba(255, 255, 255, .93);
  backdrop-filter: blur(15px);
  transition: box-shadow .2s ease, border-color .2s ease;
}

.site-header.is-scrolled {
  border-color: var(--border);
  box-shadow: 0 8px 25px rgba(13, 43, 36, .06);
}

.header-inner {
  display: flex;
  min-height: 78px;
  align-items: center;
  gap: 36px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  flex-shrink: 0;
}

.brand-mark {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border-radius: 15px;
  color: var(--white);
  background: var(--green-800);
}

.brand-mark svg {
  width: 31px;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  color: var(--green-950);
  font-size: 1.03rem;
  line-height: 1.4;
}

.brand small {
  color: var(--ink-soft);
  font-size: .72rem;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-right: auto;
  color: #3f4a46;
  font-size: .92rem;
  font-weight: 600;
}

.main-nav a {
  position: relative;
}

.main-nav a::after {
  position: absolute;
  right: 0;
  bottom: -8px;
  width: 0;
  height: 2px;
  border-radius: 2px;
  background: var(--green-600);
  content: "";
  transition: width .2s ease;
}

.main-nav a:hover::after,
.main-nav a:focus-visible::after {
  width: 100%;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 10px 22px;
  border: 1px solid transparent;
  border-radius: 13px;
  cursor: pointer;
  font-weight: 700;
  line-height: 1.5;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button svg {
  width: 22px;
}

.button-small {
  min-height: 43px;
  padding: 8px 17px;
  color: var(--white);
  background: var(--green-800);
  font-size: .86rem;
}

.button-primary {
  color: var(--white);
  background: var(--green-800);
  box-shadow: 0 12px 25px rgba(23, 75, 63, .2);
}

.button-primary:hover {
  background: var(--green-900);
  box-shadow: 0 15px 32px rgba(23, 75, 63, .27);
}

.button-ghost {
  border-color: #cfd8d3;
  color: var(--green-900);
  background: rgba(255, 255, 255, .65);
}

.button-ghost:hover {
  border-color: var(--green-600);
  background: var(--white);
}

.button-large {
  min-height: 58px;
  padding-inline: 27px;
  border-radius: 16px;
  font-size: 1rem;
}

.button-light {
  color: var(--green-950);
  background: var(--white);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 10px;
  border: 0;
  border-radius: 12px;
  color: var(--green-900);
  background: var(--green-50);
}

.menu-toggle > span:not(.sr-only) {
  display: block;
  width: 22px;
  height: 2px;
  margin: 4px auto;
  border-radius: 2px;
  background: currentColor;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 75px 0 96px;
  background:
    radial-gradient(circle at 12% 5%, rgba(212, 230, 219, .85), transparent 31%),
    linear-gradient(135deg, #fbfaf6 0%, #f2f5ed 100%);
}

.hero::before {
  position: absolute;
  top: 40px;
  right: -100px;
  width: 300px;
  height: 300px;
  border: 1px solid rgba(35, 99, 83, .09);
  border-radius: 50%;
  content: "";
}

.hero-grid {
  position: relative;
  display: grid;
  align-items: center;
  grid-template-columns: 1.04fr .96fr;
  gap: 70px;
}

.eyebrow,
.section-kicker {
  color: var(--green-700);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: -.01em;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 12px;
  border: 1px solid #d7e5de;
  border-radius: 999px;
  background: rgba(255, 255, 255, .64);
}

.eyebrow-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #54a183;
  box-shadow: 0 0 0 4px rgba(84, 161, 131, .13);
}

.hero h1 {
  margin: 23px 0 19px;
  color: var(--green-950);
  font-size: clamp(2.65rem, 5.5vw, 5rem);
  font-weight: 900;
  letter-spacing: -.075em;
  line-height: 1.2;
}

.hero h1 span {
  color: var(--green-600);
}

.hero-lead {
  max-width: 650px;
  margin: 0;
  color: #53605b;
  font-size: 1.14rem;
  line-height: 2;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 31px;
}

.hero-note {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 20px;
  color: #69726f;
  font-size: .8rem;
}

.hero-note svg {
  width: 18px;
  color: var(--gold);
}

.hero-visual {
  position: relative;
  min-height: 470px;
}

.hero-orbit {
  position: absolute;
  inset: 50%;
  border: 1px dashed rgba(35, 99, 83, .2);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.hero-orbit-one {
  width: 345px;
  height: 345px;
}

.hero-orbit-two {
  width: 435px;
  height: 435px;
  opacity: .55;
}

.hero-center {
  position: absolute;
  z-index: 3;
  top: 50%;
  left: 50%;
  display: grid;
  width: 135px;
  height: 135px;
  place-items: center;
  border: 12px solid rgba(255, 255, 255, .5);
  border-radius: 50%;
  color: var(--white);
  background: var(--green-800);
  box-shadow: var(--shadow-lg);
  transform: translate(-50%, -50%);
}

.hero-center svg {
  position: relative;
  z-index: 2;
  width: 63px;
  stroke-width: 1.6;
}

.pulse-ring {
  position: absolute;
  inset: -12px;
  border: 1px solid rgba(45, 122, 100, .3);
  border-radius: 50%;
  animation: pulse 2.8s ease-out infinite;
}

@keyframes pulse {
  0% { opacity: .8; transform: scale(.85); }
  75%, 100% { opacity: 0; transform: scale(1.35); }
}

.animal-card {
  position: absolute;
  z-index: 4;
  display: grid;
  min-width: 143px;
  padding: 17px;
  border: 1px solid rgba(255, 255, 255, .75);
  border-radius: 21px;
  background: rgba(255, 255, 255, .9);
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(10px);
}

.animal-card strong {
  margin-top: 9px;
  color: var(--green-950);
}

.animal-card small {
  color: var(--ink-soft);
  font-size: .74rem;
}

.animal-icon {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border-radius: 14px;
  color: var(--green-800);
  background: var(--green-100);
  font-size: .67rem;
  font-weight: 900;
}

.animal-card-cow {
  top: 26px;
  right: 29px;
  transform: rotate(2deg);
}

.animal-card-sheep {
  right: 3px;
  bottom: 37px;
  transform: rotate(-2deg);
}

.animal-card-goat {
  top: 48%;
  left: 0;
  transform: translateY(-50%) rotate(-2deg);
}

.float-badge {
  position: absolute;
  z-index: 5;
  padding: 7px 13px;
  border: 1px solid rgba(197, 138, 44, .18);
  border-radius: 999px;
  color: #805820;
  background: var(--gold-soft);
  box-shadow: var(--shadow-sm);
  font-size: .72rem;
  font-weight: 700;
}

.float-badge-top {
  top: 8px;
  left: 56px;
}

.float-badge-bottom {
  bottom: 9px;
  left: 80px;
}

.quick-start {
  position: relative;
  z-index: 10;
  margin-top: -45px;
}

.quick-panel {
  display: grid;
  align-items: center;
  padding: 29px 32px;
  border: 1px solid rgba(221, 228, 223, .85);
  border-radius: var(--radius-md);
  background: var(--white);
  box-shadow: var(--shadow-lg);
  grid-template-columns: .7fr 2.3fr;
  gap: 30px;
}

.quick-panel h2 {
  margin: 3px 0 0;
  color: var(--green-950);
  font-size: 1.38rem;
  line-height: 1.5;
}

.quick-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.quick-link {
  display: grid;
  min-height: 84px;
  align-items: center;
  padding: 12px 14px;
  border: 1px solid var(--border);
  border-radius: 16px;
  grid-template-columns: auto 1fr auto;
  gap: 11px;
  transition: border-color .2s ease, transform .2s ease, box-shadow .2s ease;
}

.quick-link:hover {
  border-color: #b9cdc3;
  box-shadow: var(--shadow-sm);
  transform: translateY(-2px);
}

.quick-link-active {
  border-color: #bcd8cb;
  background: var(--green-50);
}

.quick-link strong,
.quick-link small {
  display: block;
}

.quick-link strong {
  color: var(--green-950);
  font-size: .9rem;
}

.quick-link small {
  margin-top: 1px;
  color: var(--ink-soft);
  font-size: .68rem;
}

.quick-icon {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border-radius: 13px;
}

.quick-icon svg {
  width: 23px;
}

.quick-icon-red {
  color: var(--red);
  background: var(--red-soft);
}

.quick-icon-gold {
  color: var(--gold);
  background: var(--gold-soft);
}

.quick-icon-blue {
  color: var(--blue);
  background: var(--blue-soft);
}

.quick-link .arrow {
  width: 18px;
  color: #8a9590;
}

.section {
  padding: 105px 0;
}

.section-heading h2,
.method-copy h2,
.about-copy h2,
.trust-panel h2 {
  margin: 8px 0 0;
  color: var(--green-950);
  font-size: clamp(1.9rem, 3.4vw, 3.05rem);
  letter-spacing: -.045em;
  line-height: 1.45;
}

.split-heading {
  display: grid;
  align-items: end;
  margin-bottom: 42px;
  grid-template-columns: 1.2fr .8fr;
  gap: 60px;
}

.split-heading p {
  margin: 0;
  color: var(--ink-soft);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 19px;
}

.service-card {
  display: flex;
  min-height: 390px;
  flex-direction: column;
  padding: 29px;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: var(--white);
  transition: box-shadow .2s ease, transform .2s ease, border-color .2s ease;
}

.service-card:hover {
  border-color: #c5d5cd;
  box-shadow: var(--shadow-sm);
  transform: translateY(-4px);
}

.service-card-featured {
  border-color: #c6ded2;
  background: linear-gradient(155deg, var(--green-50), #fff 62%);
}

.service-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.service-icon {
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  border-radius: 16px;
  color: var(--green-700);
  background: var(--green-100);
}

.service-icon svg {
  width: 28px;
}

.service-icon-gold {
  color: var(--gold);
  background: var(--gold-soft);
}

.service-icon-blue {
  color: var(--blue);
  background: var(--blue-soft);
}

.tag {
  padding: 5px 10px;
  border-radius: 999px;
  font-size: .67rem;
  font-weight: 800;
}

.tag-free {
  color: var(--green-700);
  background: #dceee6;
}

.tag-soon {
  color: #7c6d53;
  background: #f3eee3;
}

.service-card h3 {
  margin: 24px 0 9px;
  color: var(--green-950);
  font-size: 1.23rem;
}

.service-card > p {
  margin: 0;
  color: var(--ink-soft);
  font-size: .9rem;
}

.check-list {
  display: grid;
  margin: 19px 0 10px;
  padding: 0;
  gap: 7px;
  list-style: none;
  color: #47534e;
  font-size: .78rem;
}

.check-list li {
  position: relative;
  padding-right: 20px;
}

.check-list li::before {
  position: absolute;
  top: 9px;
  right: 2px;
  width: 8px;
  height: 4px;
  border-right: 2px solid var(--green-600);
  border-bottom: 2px solid var(--green-600);
  content: "";
  transform: rotate(45deg);
}

.card-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: auto;
  padding-top: 22px;
  color: var(--green-700);
  font-size: .86rem;
  font-weight: 800;
}

.card-link span {
  font-size: 1.1rem;
  transition: transform .2s ease;
}

.card-link:hover span {
  transform: translateX(-4px);
}

.card-link-muted {
  color: #65716c;
}

.method-section {
  overflow: hidden;
  color: rgba(255, 255, 255, .8);
  background:
    radial-gradient(circle at 10% 90%, rgba(73, 143, 116, .32), transparent 33%),
    var(--green-950);
}

.method-grid {
  display: grid;
  align-items: center;
  grid-template-columns: .9fr 1.1fr;
  gap: 80px;
}

.section-kicker-light {
  color: #9ccbb8;
}

.method-copy h2 {
  color: var(--white);
}

.method-copy p {
  max-width: 470px;
  margin: 15px 0 28px;
}

.steps {
  display: grid;
  margin: 0;
  padding: 0;
  counter-reset: step;
  gap: 13px;
  list-style: none;
}

.steps li {
  display: flex;
  min-height: 96px;
  align-items: center;
  gap: 18px;
  padding: 18px 21px;
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 19px;
  background: rgba(255, 255, 255, .055);
}

.steps > li > span {
  display: grid;
  width: 49px;
  height: 49px;
  flex: 0 0 49px;
  place-items: center;
  border-radius: 15px;
  color: var(--white);
  background: rgba(255, 255, 255, .11);
  font-size: 1.1rem;
  font-weight: 800;
}

.steps strong,
.steps small {
  display: block;
}

.steps strong {
  color: var(--white);
}

.steps small {
  margin-top: 2px;
  color: rgba(255, 255, 255, .58);
  font-size: .76rem;
}

.about-section {
  background: var(--cream);
}

.about-grid {
  display: grid;
  align-items: center;
  grid-template-columns: .8fr 1.2fr;
  gap: 90px;
}

.about-mark {
  position: relative;
  display: grid;
  aspect-ratio: 1;
  max-width: 410px;
  place-items: center;
  border: 1px solid #d8d1c2;
  border-radius: 50%;
}

.about-mark::before,
.about-mark::after {
  position: absolute;
  border: 1px dashed #d5cbb8;
  border-radius: 50%;
  content: "";
}

.about-mark::before {
  inset: 24px;
}

.about-mark::after {
  inset: -17px;
}

.about-mark-inner {
  display: grid;
  width: 62%;
  aspect-ratio: 1;
  place-items: center;
  align-content: center;
  border-radius: 50%;
  color: var(--cream);
  background: var(--green-800);
  box-shadow: var(--shadow-lg);
}

.about-mark-inner span {
  font-family: Georgia, serif;
  font-size: clamp(3.2rem, 7vw, 5.3rem);
  letter-spacing: -.08em;
  line-height: 1;
}

.about-mark-inner small {
  margin-top: 8px;
  font-size: .58rem;
  letter-spacing: .16em;
}

.about-copy p {
  margin: 16px 0 0;
  color: #59635f;
}

.about-points {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 27px;
}

.about-points span {
  padding: 8px 14px;
  border: 1px solid #d8d2c5;
  border-radius: 999px;
  color: var(--green-800);
  background: rgba(255, 255, 255, .45);
  font-size: .76rem;
  font-weight: 700;
}

.trust-section {
  padding-top: 78px;
  padding-bottom: 78px;
}

.trust-panel {
  display: grid;
  align-items: center;
  padding: 36px 40px;
  border: 1px solid #e7d5b7;
  border-radius: var(--radius-md);
  background: #fdf8ee;
  grid-template-columns: auto 1fr auto;
  gap: 24px;
}

.trust-icon {
  display: grid;
  width: 64px;
  height: 64px;
  place-items: center;
  border-radius: 19px;
  color: #9a6e26;
  background: #f6e8cc;
}

.trust-icon svg {
  width: 34px;
}

.trust-panel h2 {
  margin-top: 3px;
  font-size: 1.55rem;
}

.trust-panel p {
  margin: 7px 0 0;
  color: #6a6256;
  font-size: .84rem;
}

.text-link {
  white-space: nowrap;
  color: var(--green-800);
  font-size: .82rem;
  font-weight: 800;
}

.site-footer {
  padding-top: 70px;
  color: rgba(255, 255, 255, .67);
  background: #09251f;
}

.footer-grid {
  display: grid;
  padding-bottom: 55px;
  grid-template-columns: 1.6fr .8fr .8fr 1.1fr;
  gap: 45px;
}

.brand-light .brand-mark {
  color: var(--green-950);
  background: #dcebe4;
}

.brand-light strong {
  color: var(--white);
}

.brand-light small {
  color: rgba(255, 255, 255, .5);
}

.footer-brand > p {
  max-width: 280px;
  margin: 18px 0 0;
  font-size: .84rem;
}

.site-footer h3 {
  margin: 4px 0 17px;
  color: var(--white);
  font-size: .9rem;
}

.footer-links {
  display: grid;
  margin: 0;
  padding: 0;
  gap: 10px;
  list-style: none;
  font-size: .8rem;
}

.footer-links a:hover {
  color: var(--white);
}

.footer-contact-text {
  margin: 0 0 13px;
  font-size: .78rem;
}

.instagram-link {
  display: inline-block;
  direction: ltr;
  color: #b6d9ca;
  font-size: .82rem;
  font-weight: 700;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-block: 20px;
  border-top: 1px solid rgba(255, 255, 255, .08);
  font-size: .72rem;
}

.simple-page {
  min-height: 100vh;
  background:
    radial-gradient(circle at 8% 0%, rgba(218, 234, 225, .75), transparent 28%),
    var(--cream);
}

.simple-header {
  border-bottom: 1px solid var(--border);
  background: rgba(255, 255, 255, .9);
}

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

.simple-back {
  display: inline-flex;
  align-items: center;
  color: var(--green-800);
  font-size: .78rem;
  font-weight: 800;
  gap: 6px;
}

.simple-back svg {
  width: 18px;
}

.simple-main {
  padding: 65px 0 90px;
}

.simple-card {
  max-width: 850px;
  margin-inline: auto;
  padding: clamp(28px, 6vw, 60px);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.simple-card h1 {
  margin: 8px 0 13px;
  color: var(--green-950);
  font-size: clamp(2rem, 5vw, 3.25rem);
  letter-spacing: -.05em;
  line-height: 1.45;
}

.simple-lead {
  max-width: 680px;
  margin: 0 0 30px;
  color: var(--ink-soft);
  font-size: .95rem;
}

.simple-card h2 {
  margin: 33px 0 9px;
  color: var(--green-900);
  font-size: 1.18rem;
}

.simple-card p,
.simple-card li {
  color: #57625d;
  font-size: .82rem;
}

.simple-card ul,
.simple-card ol {
  padding-right: 22px;
}

.legal-notice {
  margin: 25px 0;
  padding: 17px 19px;
  border: 1px solid #ead6b5;
  border-radius: 15px;
  color: #6a5c43;
  background: #fdf8ef;
  font-size: .75rem;
}

.source-list {
  display: grid;
  padding: 0 !important;
  gap: 11px;
  list-style: none;
}

.source-list li {
  padding: 15px 17px;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: #fafcfb;
}

.source-list strong {
  display: block;
  color: var(--green-900);
}

.source-list small {
  display: block;
  margin-top: 3px;
  color: #7b8581;
  direction: ltr;
  text-align: right;
}

.coming-card {
  max-width: 720px;
  text-align: center;
}

.coming-icon {
  display: grid;
  width: 88px;
  height: 88px;
  margin: 0 auto 20px;
  place-items: center;
  border-radius: 26px;
  color: var(--green-700);
  background: var(--green-100);
}

.coming-icon svg {
  width: 46px;
}

.coming-card .simple-lead {
  margin-inline: auto;
}

.coming-card .button {
  margin-top: 10px;
}

:focus-visible {
  outline: 3px solid rgba(197, 138, 44, .55);
  outline-offset: 3px;
}

@media (max-width: 980px) {
  .main-nav {
    position: fixed;
    top: 78px;
    right: 20px;
    left: 20px;
    display: none;
    align-items: stretch;
    padding: 18px;
    border: 1px solid var(--border);
    border-radius: 18px;
    background: var(--white);
    box-shadow: var(--shadow-lg);
    flex-direction: column;
    gap: 4px;
  }

  .main-nav.is-open {
    display: flex;
  }

  .main-nav a {
    padding: 10px 12px;
  }

  .menu-toggle {
    display: block;
    margin-right: auto;
  }

  .header-action {
    display: none;
  }

  .hero-grid,
  .method-grid,
  .about-grid {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    gap: 25px;
  }

  .hero-copy {
    text-align: center;
  }

  .hero-lead {
    margin-inline: auto;
  }

  .hero-actions,
  .hero-note {
    justify-content: center;
  }

  .hero-visual {
    min-height: 420px;
    max-width: 590px;
    width: 100%;
    margin-inline: auto;
  }

  .quick-panel {
    grid-template-columns: 1fr;
  }

  .quick-panel > div:first-child {
    text-align: center;
  }

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

  .service-card-featured {
    grid-column: span 2;
  }

  .about-grid {
    gap: 70px;
  }

  .about-mark {
    width: min(72vw, 380px);
    margin-inline: auto;
  }

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

  .footer-grid > div:last-child {
    grid-column: 1 / -1;
  }
}

@media (max-width: 720px) {
  .container {
    width: min(calc(100% - 28px), var(--container));
  }

  .header-inner {
    min-height: 68px;
  }

  .brand-mark {
    width: 42px;
    height: 42px;
  }

  .main-nav {
    top: 68px;
    right: 14px;
    left: 14px;
  }

  .hero {
    padding: 52px 0 91px;
  }

  .hero h1 {
    margin-top: 18px;
    font-size: clamp(2.45rem, 13vw, 4rem);
  }

  .hero-lead {
    font-size: .97rem;
  }

  .hero-actions {
    flex-direction: column;
  }

  .hero-actions .button {
    width: 100%;
  }

  .hero-visual {
    min-height: 350px;
    transform: scale(.95);
  }

  .hero-orbit-one {
    width: 270px;
    height: 270px;
  }

  .hero-orbit-two {
    width: 340px;
    height: 340px;
  }

  .hero-center {
    width: 105px;
    height: 105px;
    border-width: 9px;
  }

  .hero-center svg {
    width: 49px;
  }

  .animal-card {
    min-width: 120px;
    padding: 13px;
  }

  .animal-icon {
    width: 36px;
    height: 36px;
  }

  .animal-card-cow {
    top: 20px;
    right: 8px;
  }

  .animal-card-sheep {
    right: 0;
    bottom: 22px;
  }

  .animal-card-goat {
    left: 0;
  }

  .float-badge-top {
    top: -8px;
    left: 18px;
  }

  .float-badge-bottom {
    bottom: 1px;
    left: 27px;
  }

  .quick-start {
    margin-top: -52px;
  }

  .quick-panel {
    padding: 24px 18px;
  }

  .quick-links {
    grid-template-columns: 1fr;
  }

  .quick-link {
    min-height: 76px;
  }

  .section {
    padding: 78px 0;
  }

  .split-heading {
    margin-bottom: 29px;
    grid-template-columns: 1fr;
    gap: 14px;
  }

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

  .service-card-featured {
    grid-column: auto;
  }

  .service-card {
    min-height: 340px;
    padding: 24px;
  }

  .method-grid {
    gap: 45px;
  }

  .method-copy {
    text-align: center;
  }

  .method-copy p {
    margin-inline: auto;
  }

  .steps li {
    min-height: 83px;
  }

  .about-grid {
    gap: 53px;
  }

  .trust-panel {
    padding: 27px 23px;
    text-align: center;
    grid-template-columns: 1fr;
  }

  .trust-icon {
    margin-inline: auto;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 38px 24px;
  }

  .footer-grid > div:first-child,
  .footer-grid > div:last-child {
    grid-column: 1 / -1;
  }

  .simple-header-inner {
    min-height: 68px;
  }

  .simple-main {
    padding: 18px 0 55px;
  }

  .simple-card {
    border-radius: 22px;
  }
}

@media (max-width: 430px) {
  .brand small {
    display: none;
  }

  .hero-visual {
    margin-inline: -10px;
    width: calc(100% + 20px);
  }

  .animal-card {
    min-width: 108px;
    font-size: .82rem;
  }

  .animal-card small {
    font-size: .63rem;
  }

  .float-badge {
    font-size: .64rem;
  }

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

  .footer-grid > div {
    grid-column: auto !important;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
}
