:root {
  --ink: #173c32;
  --muted: #587068;
  --green: #0b5d48;
  --green-2: #43866a;
  --mint: #dcefe5;
  --mint-soft: #f1f8f4;
  --gold: #d9a83e;
  --cream: #fffdf8;
  --line: rgba(23, 60, 50, 0.14);
  --shadow: 0 24px 70px rgba(10, 67, 51, 0.12);
  --radius: 28px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Tahoma, Arial, sans-serif;
  line-height: 1.7;
  text-rendering: optimizeLegibility;
}

a {
  color: inherit;
}

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

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

.narrow {
  width: min(800px, calc(100% - 40px));
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 8px;
  inset-inline-start: 8px;
  padding: 10px 16px;
  border-radius: 12px;
  color: white;
  background: var(--green);
  transform: translateY(-150%);
}

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

.site-header {
  position: sticky;
  z-index: 50;
  top: 0;
  border-bottom: 1px solid var(--line);
  background: rgba(255, 253, 248, 0.88);
  backdrop-filter: blur(18px);
}

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.brand img {
  border-radius: 13px;
  box-shadow: 0 7px 20px rgba(5, 42, 70, 0.22);
}

.support-mark {
  width: 48px;
  height: 48px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  border-radius: 13px;
  color: white;
  background: linear-gradient(145deg, #14745b, #073d31);
  box-shadow: 0 7px 20px rgba(5, 42, 70, 0.22);
  font-size: 1.45rem;
  font-weight: 900;
}

.support-mark-large {
  width: 78px;
  height: 78px;
  border-radius: 21px;
  font-size: 2.25rem;
}

.support-mark-small {
  width: 40px;
  height: 40px;
  border-radius: 11px;
  font-size: 1.2rem;
}

.brand span {
  display: grid;
  line-height: 1.3;
}

.brand strong {
  font-size: 1rem;
}

.brand small {
  color: var(--muted);
}

nav {
  display: flex;
  align-items: center;
  gap: 22px;
  margin-inline-start: auto;
}

nav a,
.footer-links a {
  text-decoration: none;
  color: var(--muted);
  font-weight: 650;
}

nav a:hover,
.footer-links a:hover {
  color: var(--green);
}

.language-button {
  width: 46px;
  height: 40px;
  border: 1px solid var(--line);
  border-radius: 13px;
  color: var(--green);
  background: white;
  font-weight: 800;
  cursor: pointer;
}

.language-button:hover {
  background: var(--mint-soft);
}

.hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 16% 20%, rgba(67, 134, 106, 0.18), transparent 34%),
    radial-gradient(circle at 90% 10%, rgba(217, 168, 62, 0.15), transparent 24%),
    linear-gradient(145deg, #f9fdf9 0%, #fffaf0 100%);
}

.hero::before {
  position: absolute;
  content: "";
  width: 680px;
  height: 680px;
  inset-inline-end: -320px;
  top: -280px;
  border: 1px solid rgba(67, 134, 106, 0.18);
  border-radius: 50%;
  box-shadow: 0 0 0 70px rgba(67, 134, 106, 0.035), 0 0 0 140px rgba(67, 134, 106, 0.025);
}

.hero-grid {
  min-height: 720px;
  padding-block: 80px;
  display: grid;
  grid-template-columns: 1.05fr 0.8fr;
  align-items: center;
  gap: 72px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--green-2);
  font-size: 0.86rem;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.hero h1 {
  max-width: 720px;
  margin: 0;
  font-size: clamp(2.6rem, 5vw, 5.15rem);
  line-height: 1.1;
  letter-spacing: -0.035em;
}

.hero-lead {
  max-width: 670px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: clamp(1.05rem, 2vw, 1.24rem);
}

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

.button {
  min-height: 50px;
  padding: 12px 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border: 1px solid transparent;
  border-radius: 15px;
  text-decoration: none;
  font-weight: 800;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

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

.button.primary {
  color: white;
  background: var(--green);
  box-shadow: 0 12px 26px rgba(11, 93, 72, 0.22);
}

.button.secondary {
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.78);
}

.trust-row {
  margin-top: 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.trust-row span {
  padding: 7px 11px;
  border: 1px solid rgba(67, 134, 106, 0.2);
  border-radius: 999px;
  color: var(--green);
  background: rgba(255, 255, 255, 0.6);
  font-size: 0.86rem;
  font-weight: 700;
}

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

.hero-visual .glow {
  position: absolute;
  width: 85%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(67, 134, 106, 0.25), transparent 65%);
  filter: blur(12px);
}

.hero-visual img {
  position: relative;
  width: min(360px, 88%);
  max-height: 570px;
  object-fit: contain;
  border-radius: 42px;
  box-shadow: var(--shadow);
  transform: rotate(-1.5deg);
}

[dir="ltr"] .hero-visual img {
  transform: rotate(1.5deg);
}

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

.support-orbit {
  position: absolute;
  width: min(440px, 92%);
  aspect-ratio: 1;
  border: 1px solid rgba(67, 134, 106, 0.24);
  border-radius: 50%;
  box-shadow:
    0 0 0 55px rgba(67, 134, 106, 0.055),
    0 0 0 110px rgba(67, 134, 106, 0.025);
}

.support-card {
  position: absolute;
  border: 1px solid rgba(23, 60, 50, 0.12);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--shadow);
  backdrop-filter: blur(12px);
}

.support-card-main {
  z-index: 2;
  width: min(330px, 76%);
  padding: 38px 28px;
  display: grid;
  place-items: center;
  gap: 13px;
  border-radius: 34px;
  text-align: center;
}

.support-card-main img {
  border-radius: 20px;
}

.support-card-main strong {
  font-size: 1.35rem;
}

.support-card-main span {
  color: var(--muted);
}

.support-card-small {
  z-index: 3;
  width: 74px;
  height: 74px;
  display: grid;
  place-items: center;
  border-radius: 22px;
  color: var(--green);
  font-size: 2rem;
  font-weight: 850;
}

.support-card-one {
  inset-inline-start: 2%;
  top: 18%;
  transform: rotate(-7deg);
}

.support-card-two {
  inset-inline-end: 1%;
  bottom: 18%;
  transform: rotate(7deg);
}

[dir="rtl"] .support-card-one {
  transform: rotate(7deg);
}

[dir="rtl"] .support-card-two {
  transform: rotate(-7deg);
}

.section {
  padding-block: 100px;
}

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

.section-heading {
  max-width: 690px;
  margin-bottom: 42px;
}

.section-heading h2,
.contact-card h2,
.policy-heading h1 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1.2;
  letter-spacing: -0.025em;
}

.section-heading > p:last-child {
  color: var(--muted);
  font-size: 1.06rem;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.counter-showcase {
  display: grid;
  grid-template-columns: minmax(280px, 390px) 1fr;
  align-items: center;
  gap: clamp(42px, 7vw, 90px);
}

.counter-preview {
  position: relative;
  margin: 0;
  padding: 18px;
  display: grid;
  place-items: center;
}

.counter-preview-glow {
  position: absolute;
  width: 112%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(67, 134, 106, 0.22), transparent 67%);
  filter: blur(16px);
}

.counter-preview img {
  position: relative;
  width: min(100%, 350px);
  height: auto;
  border: 8px solid rgba(255, 255, 255, 0.86);
  border-radius: 38px;
  box-shadow: 0 30px 80px rgba(10, 67, 51, 0.2);
}

.counter-preview figcaption {
  position: relative;
  margin-top: 16px;
  color: var(--muted);
  font-size: 0.88rem;
  text-align: center;
}

.counter-guide-content .section-heading {
  margin-bottom: 30px;
}

.counter-feature-grid {
  grid-template-columns: repeat(2, 1fr);
}

.counter-feature-grid .feature-card {
  min-height: 245px;
}

.app-list {
  display: grid;
  gap: 20px;
}

.app-card {
  padding: 28px;
  display: grid;
  grid-template-columns: 92px 1fr auto;
  align-items: center;
  gap: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: white;
  box-shadow: 0 16px 45px rgba(25, 73, 59, 0.07);
}

.app-card-link {
  color: inherit;
  text-decoration: none;
  transition: transform 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}

.app-card-link:hover,
.app-card-link:focus-visible {
  border-color: rgba(11, 93, 72, 0.35);
  box-shadow: 0 20px 55px rgba(25, 73, 59, 0.13);
  transform: translateY(-3px);
}

.app-card-link:focus-visible {
  outline: 3px solid rgba(11, 93, 72, 0.22);
  outline-offset: 4px;
}

.app-card-chevron {
  color: var(--green);
  font-size: 2.7rem;
  font-weight: 400;
  line-height: 1;
}

[dir="ltr"] .app-card-chevron {
  transform: rotate(180deg);
}

.app-card-icon {
  width: 92px;
  height: 92px;
  border-radius: 24px;
  object-fit: cover;
  box-shadow: 0 10px 25px rgba(5, 42, 70, 0.18);
}

.app-card-copy h3 {
  margin: 0 0 6px;
  font-size: 1.55rem;
}

.app-card-copy p:last-child {
  max-width: 640px;
  margin: 0;
  color: var(--muted);
}

.app-card-actions {
  display: grid;
  gap: 10px;
}

.feature-card {
  min-height: 280px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: white;
  box-shadow: 0 16px 45px rgba(25, 73, 59, 0.07);
}

.feature-icon {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  color: var(--green);
  background: var(--mint);
  font-size: 1.7rem;
  font-weight: 500;
}

.feature-card h2,
.feature-card h3 {
  margin: 22px 0 9px;
  font-size: 1.25rem;
}

.feature-card p {
  margin: 0;
  color: var(--muted);
}

.app-detail-section {
  min-height: 75vh;
}

.back-link {
  width: fit-content;
  margin-bottom: 34px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--green);
  text-decoration: none;
  font-weight: 800;
}

[dir="ltr"] .back-link > span:first-child {
  transform: rotate(180deg);
}

.app-detail-heading {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 18px;
}

.app-detail-heading .eyebrow {
  margin-bottom: 5px;
}

.app-detail-heading h1 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1.15;
}

.app-detail-icon {
  width: 82px;
  height: 82px;
  border-radius: 22px;
  box-shadow: 0 10px 25px rgba(5, 42, 70, 0.18);
}

.app-detail-lead {
  margin: 0 0 30px;
  color: var(--muted);
  font-size: 1.06rem;
}

.app-detail-actions {
  margin-top: 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.accordion {
  display: grid;
  gap: 12px;
}

details {
  border: 1px solid var(--line);
  border-radius: 18px;
  background: white;
  overflow: hidden;
}

summary {
  padding: 20px 22px;
  list-style: none;
  cursor: pointer;
  font-weight: 800;
}

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

summary::after {
  content: "+";
  float: inline-end;
  color: var(--green);
  font-size: 1.35rem;
}

details[open] summary::after {
  content: "−";
}

details p {
  margin: 0;
  padding: 0 22px 22px;
  color: var(--muted);
}

.contact-card {
  padding: 46px;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 50px;
  border-radius: 34px;
  color: white;
  background:
    radial-gradient(circle at 10% 0%, rgba(255, 255, 255, 0.12), transparent 34%),
    linear-gradient(135deg, #0a4d3c, #14745b);
  box-shadow: var(--shadow);
}

.contact-card .eyebrow,
.contact-card p {
  color: rgba(255, 255, 255, 0.78);
}

.contact-card .button.primary {
  color: var(--green);
  background: white;
}

.contact-actions {
  min-width: 300px;
  display: grid;
  gap: 10px;
  text-align: center;
}

.contact-actions p {
  margin: 0;
  font-size: 0.86rem;
}

.policy-page {
  min-height: 70vh;
  padding-block: 80px 110px;
  background: linear-gradient(180deg, var(--mint-soft), var(--cream) 400px);
}

.policy-heading {
  margin-bottom: 34px;
}

.policy-heading > p:last-child {
  color: var(--muted);
}

.policy-card {
  padding: clamp(25px, 5vw, 56px);
  border: 1px solid var(--line);
  border-radius: 32px;
  background: white;
  box-shadow: var(--shadow);
}

.policy-card + .policy-card {
  margin-top: 28px;
}

.policy-card section + section {
  margin-top: 36px;
  padding-top: 30px;
  border-top: 1px solid var(--line);
}

.policy-card h2 {
  margin: 0 0 10px;
  font-size: 1.35rem;
}

.policy-card p {
  margin: 0;
  color: var(--muted);
}

.policy-card a {
  color: var(--green);
  font-weight: 750;
}

footer {
  padding-block: 34px;
  border-top: 1px solid var(--line);
  background: white;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.footer-links {
  display: flex;
  gap: 20px;
}

.footer-inner > p {
  color: var(--muted);
}

@media (max-width: 920px) {
  nav {
    display: none;
  }

  .language-button {
    margin-inline-start: auto;
  }

  .hero-grid {
    min-height: auto;
    grid-template-columns: 1fr;
    gap: 45px;
  }

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

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

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

  .hero-visual {
    height: 520px;
  }

  .support-visual {
    min-height: 450px;
  }

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

  .counter-showcase {
    grid-template-columns: 1fr;
  }

  .counter-preview img {
    width: min(350px, 70vw);
  }

  .app-card {
    grid-template-columns: 80px 1fr;
  }

  .app-card-icon {
    width: 80px;
    height: 80px;
  }

  .app-card-chevron {
    grid-column: 1 / -1;
    justify-self: end;
  }

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

  .contact-actions {
    min-width: 0;
  }
}

@media (max-width: 580px) {
  .shell,
  .narrow {
    width: min(100% - 28px, 1120px);
  }

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

  .brand img {
    width: 42px;
    height: 42px;
  }

  .brand small {
    display: none;
  }

  .hero-grid {
    padding-block: 58px;
  }

  .hero h1 {
    font-size: 2.55rem;
  }

  .hero-actions {
    display: grid;
  }

  .hero-visual {
    height: 450px;
  }

  .support-visual {
    min-height: 390px;
  }

  .support-orbit {
    width: 300px;
  }

  .support-card-main {
    width: 250px;
    padding: 30px 20px;
  }

  .hero-visual img {
    max-height: 450px;
    border-radius: 32px;
  }

  .section {
    padding-block: 72px;
  }

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

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

  .counter-preview {
    padding-inline: 0;
  }

  .counter-preview img {
    width: min(320px, 82vw);
    border-width: 6px;
    border-radius: 32px;
  }

  .app-card {
    padding: 22px;
    grid-template-columns: 64px 1fr;
    gap: 17px;
  }

  .app-card-icon {
    width: 64px;
    height: 64px;
    border-radius: 18px;
  }

  .app-detail-heading {
    align-items: flex-start;
  }

  .app-detail-icon {
    width: 64px;
    height: 64px;
    border-radius: 18px;
  }

  .app-detail-actions {
    display: grid;
  }

  .feature-card {
    min-height: auto;
  }

  .contact-card {
    padding: 28px 22px;
  }

  .contact-actions .button {
    overflow-wrap: anywhere;
  }

  .footer-inner {
    align-items: flex-start;
    flex-direction: column;
  }
}

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

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
  }
}
