:root {
  --white: #ffffff;
  --menu: #ffffff;
  --download-bg: #2A6F3E;
  --hero-green: #7cae5a;
  --para: #b7bbba;
  --start-bg: #2A6F3E;
  --demo-border: #635b45;
  --demo-text: #afa67f;
  --divider: #9ea0a0;
  --sec-heading: clamp(30px, 3.2vw, 34px);
  --sec-subheading: clamp(22px, 2.2vw, 20px);
  --sec-body: clamp(16px, 1.35vw, 18px);
  --sec-small: clamp(14px, 1.1vw, 15px);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", sans-serif;
  background: #000;
}

body.menu-open {
  overflow: hidden;
}

.hero {
  min-height: 100vh;
  background:
    linear-gradient(rgba(0, 0, 0, 0.72), rgba(0, 0, 0, 0.72)),
    url("images/background-image.png") center/cover no-repeat;
  color: var(--white);
  padding: 14px 100px 0;
}

.hero-shell {
  max-width: 1680px;
  margin: 0 auto;
}

.main-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 36px;
  background: transparent;
  padding: 8px 8px 12px;
  border-bottom: 1px solid rgba(158, 160, 160, 0.2);
}

.logo {
  width: 260px;
  /* width: 320px; */
  max-width: 28vw;
  height: auto;
  display: block;
}

.main-menu {
  display: flex;
  align-items: center;
  gap: 42px;
}

.main-menu a {
  color: var(--menu);
  text-decoration: none;
  font-size: 18px;
  font-weight: 400;
  font-family: "Inter", sans-serif;
  opacity: 0.72;
}

.download-btn-mobile {
  display: none;
}

.menu-toggle {
  display: none;
  background: transparent;
  border: 0;
  padding: 8px;
  margin-left: auto;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: #d7ddd9;
  border-radius: 2px;
}

.menu-toggle span + span {
  margin-top: 5px;
}

.download-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--download-bg);
  color: #d5d8d4;
  text-decoration: none;
  font-family: "Inter", sans-serif;
  font-size: 18px;
  font-weight: 600;
  border-radius: 16px;
  padding: 16px 24px;
}

.download-btn img {
  width: 22px;
  height: 22px;
  object-fit: contain;
  order: -1;
}

.hero-content {
  margin-top: 26px;
  display: flex;
  align-items: flex-start;
  justify-content: space-around;
  gap: 22px;
}

.hero-left {
  max-width: 930px;
  padding: 24px 0 12px 20px;
}

h1 {
  margin: 0;
  line-height: 0.98;
}

.line-1 {
  display: block;
  font-family: "Inter", sans-serif;
  font-size: clamp(34px, 4.3vw, 56px);
  font-weight: 600;
  color: #fff;
}

.line-2,
.line-3 {
  display: block;
  font-family: "Merriweather", serif;
  font-size: clamp(36px, 4.8vw, 60px);
  font-weight: 700;
  color: var(--hero-green);
}

.line-3 {
  display: flex;
  align-items: center;
  gap: 22px;
}

.stars {
  width: 70px;
  height: auto;
}

.hero-left p {
  margin: 28px 0 34px;
  color: var(--para);
  font-family: "Inter", sans-serif;
  font-size: clamp(17px, 1.8vw, 22px);
  line-height: 1.38;
}

.cta-row {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-bottom: 36px;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  border-radius: 999px;
  text-decoration: none;
  font-family: "Inter", sans-serif;
  font-size: clamp(16px, 1.6vw, 20px);
  font-weight: 700;
  padding: 16px 26px;
  border-radius: 14px;
}

.btn img {
  width: 24px;
  height: 24px;
  object-fit: contain;
}

.start-btn {
  background: var(--start-bg);
  color: #fff;
}

.demo-btn {
  background: rgba(0, 0, 0, 0.68);
  color: var(--demo-text);
  border: 1px solid var(--demo-border);
}

.benefits {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: 900px;
}

.benefits article {
  padding: 0 24px;
}

.benefits article:first-child {
  padding-left: 0;
}

.benefits article:not(:last-child) {
  border-right: 1px solid var(--divider);
}

.benefits h3 {
  margin: 0 0 10px;
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--divider);
  font-family: "Inter", sans-serif;
  font-size: 18px;
  font-weight: 600;
}

.benefit-icon {
  width: 54px;
  height: 54px;
  padding: 10px;
  border: 2px solid #2d9155;
  border-radius: 50%;
  background: rgba(8, 64, 43, 0.22);
  object-fit: contain;
  flex: 0 0 auto;
}

.benefits p {
  margin: 0;
  color: var(--divider);
  font-family: "Inter", sans-serif;
  font-size: 18px;
  line-height: 1.5;
}

.hero-right {
  /* flex: 0 0 47%; */
  flex: 0 0 23%;
  display: flex;
  justify-content: flex-end;
}

.screen {
  width: min(100%, 720px);
  height: auto;
  display: block;
  margin-top: 0;
}

@media (max-width: 1200px) {
  .hero {
    padding: 18px 20px 24px;
  }

  .logo {
    width: 300px;
  }

  .main-menu a {
    font-size: 16px;
  }

  .download-btn {
    font-size: 16px;
    padding: 13px 18px;
  }

  .download-btn img {
    width: 20px;
    height: 20px;
  }

  .line-1 {
    font-size: clamp(32px, 5.2vw, 44px);
  }

  .line-2,
  .line-3 {
    font-size: clamp(34px, 5.6vw, 48px);
  }

  .hero-left p {
    font-size: 18px;
  }

  .hero-left {
    padding-top: 40px;
  }

  .benefits h3 {
    font-size: 18px;
  }

  .screen {
    width: min(100%, 620px);
  }
}

@media (max-width: 960px) {
  .main-header {
    position: relative;
    flex-wrap: nowrap;
    justify-content: space-between;
    border-bottom: none;
  }

  .download-btn {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .main-menu {
    position: absolute;
    top: calc(100% + 10px);
    right: 8px;
    z-index: 20;
    min-width: 220px;
    padding: 12px;
    border: 1px solid rgba(140, 153, 149, 0.35);
    border-radius: 14px;
    background: rgba(8, 18, 16, 0.96);
    backdrop-filter: blur(8px);
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 6px;
  }

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

  .main-menu a {
    opacity: 1;
    font-size: 16px;
    padding: 10px 12px;
    border-radius: 10px;
  }

  .main-menu a:hover {
    background: rgba(255, 255, 255, 0.08);
  }

  .download-btn-mobile {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    opacity: 1;
    background: var(--download-bg);
    color: #1f2923;
    border-radius: 12px;
    padding: 10px 14px;
    font-weight: 600;
  }

  .download-btn-mobile img {
    width: 18px;
    height: 18px;
    object-fit: contain;
  }

  .hero-content {
    flex-direction: column;
    align-items: center;
  }

  .hero-left {
    max-width: 760px;
    width: 100%;
    padding: 12px 0 10px;
    text-align: center;
  }

  .line-3 {
    justify-content: center;
  }

  .hero-left p {
    margin-left: auto;
    margin-right: auto;
  }

  .cta-row {
    justify-content: center;
  }

  .hero-right {
    width: 100%;
    justify-content: center;
  }

  .screen {
    max-width: 300px;
  }

  .benefits {
    width: 100%;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    max-width: 100%;
  }

  .benefits article {
    padding: 0 8px;
    border-bottom: none;
  }
}

@media (max-width: 640px) {
  :root {
    --sec-heading: 26px;
    --sec-subheading: 18px;
    --sec-body: 16px;
    --sec-small: 13px;
  }

  .main-menu {
    gap: 18px;
  }

  .main-menu a,
  .download-btn {
    font-size: 15px;
  }

  .line-1 {
    font-size: clamp(28px, 8vw, 36px);
  }

  .line-2,
  .line-3 {
    font-size: clamp(30px, 8.6vw, 38px);
  }

  .hero-left p {
    font-size: 16px;
  }

  .cta-row {
    width: 100%;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
  }

  .btn {
    width: auto;
    justify-content: center;
    font-size: 17px;
    padding: 14px 18px;
  }

  .benefits {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
  }

  .benefits h3 {
    font-size: 14px;
    gap: 8px;
  }

  .benefits p {
    font-size: 13px;
    line-height: 1.3;
  }

  .benefit-icon {
    width: 34px;
    height: 34px;
    padding: 6px;
  }

  .screen {
    max-width: 260px;
  }
}

.section-two {
  background: #f4f4f4;
  padding: 72px 100px 88px;
  /* padding: 72px 20px 88px; */
}

.section-two-shell {
  max-width: 1500px;
  margin: 0 auto;
}

.section-two-intro {
  text-align: center;
  margin-bottom: 48px;
}

.section-two-intro h2,
.features-intro h2 {
  margin: 0;
  font-family: "Inter", sans-serif;
  font-size: var(--sec-heading);
  line-height: 1.22;
  letter-spacing: -0.02em;
  font-weight: 700;
  color: #293f3c;
}

.section-two-intro p {
  margin: 28px 0 0;
  font-family: "Inter", sans-serif;
  font-size: var(--sec-body);
  line-height: 1.42;
  color: #6c7076;
}

.compare-wrap {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: end;
  gap: 0px;
  /* gap: 34px; */
  margin: 70px 0 92px;
}

.compare-card {
  border: 1px solid #e5e5e5;
  border-radius: 26px;
  padding: 48px 42px 36px;
  /* min-height: 540px; */
}

.compare-before {
  background: #f6f3f3;
}

.compare-after {
  background: #eef1ee;
}

.compare-card h3 {
  margin: 0 0 40px;
  font-family: "Inter", sans-serif;
  font-size: var(--sec-subheading);
  line-height: 1.15;
  font-weight: 700;
}

.compare-before h3 {
  color: #45494d;
}

.compare-after h3 {
  color: #42554f;
}

.compare-card ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 26px;
}

.compare-card li {
  display: flex;
  align-items: center;
  gap: 22px;
  font-family: "Inter", sans-serif;
  font-size: var(--sec-body);
  line-height: 1.18;
  color: #55595d;
}

.compare-card li img {
  width: 30px;
  height: 30px;
  object-fit: contain;
  flex: 0 0 auto;
}

.compare-arrow {
 /*  width: 170px; */
  width: 95px;
  height: auto;
  margin-bottom: 54px;
}

.features-intro {
  text-align: center;
  margin-bottom: 54px;
}

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

.feature-card {
  background: #f7f7f7;
  border: 1px solid #e8e8e8;
  border-radius: 30px;
  text-align: center;
  padding: 42px 28px 34px;
}

.feature-card img {
  width: 66px;
  height: 66px;
  object-fit: contain;
}

.feature-card h3 {
  margin: 30px 0 18px;
  font-family: "Inter", sans-serif;
  font-size: var(--sec-subheading);
  line-height: 1.17;
  color: #444a4e;
}

.feature-card h3::after {
  content: "";
  display: block;
  width: 58px;
  height: 3px;
  margin: 20px auto 0;
  border-radius: 2px;
  background: #d39f3a;
}

.feature-card p {
  margin: 0;
  font-family: "Inter", sans-serif;
  font-size: var(--sec-body);
  line-height: 1.35;
  color: #6e7278;
}

@media (max-width: 1200px) {
  .section-two-intro h2,
  .features-intro h2 {
    font-size: 40px;
  }

  .section-two-intro p {
    font-size: 17px;
  }

  .compare-wrap {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .compare-arrow {
    display: none;
  }

  .compare-card {
    min-height: 0;
  }

  .compare-card h3 {
    font-size: 30px;
  }

  .compare-card li {
    font-size: 22px;
  }

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

  .feature-card h3 {
    font-size: 26px;
  }

  .feature-card p {
    font-size: 20px;
  }
}

@media (max-width: 640px) {
  .section-two {
    padding: 52px 16px 64px;
  }

  .section-two-intro h2,
  .features-intro h2 {
    font-size: 30px;
  }

  .section-two-intro p {
    font-size: 16px;
    line-height: 1.5;
  }

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

  .compare-card h3 {
    font-size: 24px;
  }

  .compare-card li {
    font-size: 18px;
    gap: 14px;
  }

  .compare-card li img {
    width: 44px;
    height: 44px;
  }

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

  .feature-card h3 {
    font-size: 24px;
  }

  .feature-card p {
    font-size: 18px;
  }
}

.section-three-top {
  background: #f4f4f4;
   padding: 80px 100px 60px;
 /*  padding: 80px 20px 60px; */
}

.section-three-shell {
  max-width: 1500px;
  margin: 0 auto;
}

.section-three-intro {
  text-align: center;
  margin-bottom: 42px;
}

.section-three-intro h2 {
  margin: 0;
  font-family: "Inter", sans-serif;
  font-size: var(--sec-heading);
  line-height: 1.2;
  color: #273d3a;
  letter-spacing: -0.02em;
}

.section-three-intro p {
  margin: 28px 0 0;
  font-family: "Inter", sans-serif;
  font-size: var(--sec-body);
  line-height: 1.45;
  color: #787d82;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.testimonial-card {
  background: #f8f8f8;
  border: 1px solid #efefef;
  padding: 42px 34px 32px;
}

.stars-row {
  font-size: clamp(24px, 2.4vw, 28px);
  line-height: 1;
  color: #e29a1d;
  letter-spacing: 2px;
  margin-bottom: 28px;
}

.testimonial-card p {
  margin: 0;
  font-family: "Inter", sans-serif;
  font-size: var(--sec-body);
  line-height: 1.5;
  color: #4f555a;
  min-height: 198px;
}

.testimonial-card h4 {
  margin: 24px 0 0;
  font-family: "Inter", sans-serif;
  font-size: var(--sec-body);
  font-weight: 500;
  color: #61706a;
}

.section-three-bottom {
  background:
    linear-gradient(rgba(0, 30, 24, 0.72), rgba(0, 30, 24, 0.72)),
    url("images/bg-img.png") center/cover no-repeat;
  padding: 84px 20px;
}

.privacy-wrap {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  align-items: center;
  gap: 40px;
}

.privacy-left {
  display: flex;
  justify-content: center;
}

.privacy-left img {
  width: min(100%, 200px);
  /* width: min(100%, 390px); */
  height: auto;
}

.privacy-right h3 {
  margin: 0 0 28px;
  font-family: "Inter", sans-serif;
  font-size: var(--sec-heading);
  line-height: 1.12;
  color: #dde5df;
}

.privacy-right ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 18px;
}

.privacy-right li {
  display: flex;
  align-items: center;
  gap: 16px;
  font-family: "Inter", sans-serif;
  font-size: var(--sec-body);
  font-weight: 600;
  color: #cad2ce;
}

.privacy-right li img {
  width: 30px;
  height: 30px;
  object-fit: contain;
}

.privacy-right p {
  margin: 34px 0 0;
  font-family: "Inter", sans-serif;
  font-size: var(--sec-body);
  line-height: 1.55;
  color: #b7c0bc;
}

@media (max-width: 1200px) {
  .section-three-intro h2 {
    font-size: 40px;
  }

  .testimonial-card p {
    font-size: 20px;
    min-height: 0;
  }

  .privacy-wrap {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .privacy-left {
    justify-content: flex-start;
  }

  .privacy-right h3 {
    font-size: 46px;
  }
}

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

@media (max-width: 640px) {
  .section-three-top {
    padding: 56px 16px 40px;
  }

  .section-three-intro h2 {
    font-size: 28px;
  }

  .section-three-intro p {
    font-size: 16px;
  }

  .testimonial-card {
    padding: 28px 20px 24px;
  }

  .stars-row {
    font-size: 32px;
  }

  .testimonial-card p,
  .testimonial-card h4 {
    font-size: 19px;
  }

  .section-three-bottom {
    padding: 56px 16px;
  }

  .privacy-right h3 {
    font-size: 28px;
  }

  .privacy-right li {
    font-size: 18px;
    width: min(100%, 320px);
    justify-content: flex-start;
    text-align: left;
  }

  .privacy-right p {
    font-size: 17px;
  }

  .privacy-wrap {
    justify-items: center;
    text-align: center;
  }

  .privacy-left {
    justify-content: center;
  }

  .privacy-left img {
    width: min(100%, 165px);
  }

  .privacy-right ul {
    justify-items: center;
  }
}

.section-four {
  background: #f4f4f4;
  padding: 72px 100px 84px;
  /* padding: 72px 20px 84px; */
}

.section-four-shell {
  max-width: 1600px;
  margin: 0 auto;
}

.section-four-head {
  text-align: center;
  margin-bottom: 34px;
}

.section-four-head h2 {
  margin: 0;
  font-family: "Merriweather", serif;
  font-size: var(--sec-heading);
  line-height: 1.15;
  color: #213a34;
}

.section-four-head h2 span {
  font-family: "Inter", sans-serif;
  font-size: clamp(20px, 2.2vw, 30px);
  vertical-align: middle;
}

.section-four-head p {
  margin: 26px 0 0;
  font-family: "Inter", sans-serif;
  font-size: var(--sec-body);
  color: #868c91;
}

.premium-layout {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  align-items: start;
  gap: 36px;
}

.premium-left {
  display: flex;
  justify-content: center;
}

.premium-left img {
  width: min(100%, 420px);
  /* width: min(100%, 730px); */
  height: auto;
}

.premium-right {
  padding-top: 120px;
}

.premium-item {
  display: grid;
  grid-template-columns: 110px 1fr;
  align-items: center;
  gap: 26px;
  padding: 22px 0 28px;
  border-bottom: 1px solid #ececec;
}

.premium-icon-wrap {
  /* width: 85px;
  height: 85px;
  border: 1px solid #ebebeb;
  border-radius: 34px; */
  display: flex;
  align-items: center;
  justify-content: center;
  /* background: #f8f8f8; */
}

.premium-icon-wrap img {
  width: 60px;
  height: 60px;
  object-fit: contain;
}

.premium-copy h3 {
  margin: 0;
  font-family: "Inter", sans-serif;
  font-size: var(--sec-subheading);
  line-height: 1.2;
  color: #4b5755;
}

.premium-copy p {
  margin: 12px 0 0;
  font-family: "Inter", sans-serif;
  font-size: var(--sec-body);
  color: #8b9195;
}

.premium-cta {
  margin-top: 40px;
  display: block;
  text-align: center;
  text-decoration: none;
  font-family: "Inter", sans-serif;
  font-size: clamp(20px, 2.2vw, 20px);
  font-weight: 600;
  color: #d9ded7;
  background: #206f34;
  border-radius: 14px;
      padding: 16px 26px;
  /* padding: 28px 22px; */
}

.premium-note {
  margin: 34px 0 0;
  text-align: center;
  font-family: "Inter", sans-serif;
  font-size: var(--sec-body);
  color: #8c9094;
}

@media (max-width: 1200px) {
  .section-four-head h2 {
    font-size: 54px;
  }

  .section-four-head h2 span {
    font-size: 44px;
  }

  .section-four-head p {
    font-size: 20px;
  }

  .premium-layout {
    grid-template-columns: 1fr;
  }

  .premium-right {
    padding-top: 10px;
  }

  .premium-copy h3 {
    font-size: 36px;
  }

  .premium-copy p {
    font-size: 22px;
  }

  .premium-cta {
    font-size: 38px;
  }
}

@media (max-width: 640px) {
  .section-four {
    padding: 54px 16px 64px;
  }

  .section-four-head h2 {
    font-size: 30px;
  }

  .section-four-head h2 span {
    font-size: 30px;
  }

  .section-four-head p {
    font-size: 18px;
    line-height: 1.45;
  }

  .premium-left img {
    width: min(100%, 300px);
  }

  .premium-item {
    grid-template-columns: 74px 1fr;
    gap: 14px;
  }

  .premium-icon-wrap {
    width: 74px;
    height: 74px;
    border-radius: 22px;
  }

  .premium-icon-wrap img {
    width: 40px;
    height: 40px;
  }

  .premium-copy h3 {
    font-size: 28px;
  }

  .premium-copy p {
    font-size: 18px;
  }

  .premium-cta {
    font-size: 22px;
    padding: 14px 16px;
    border-radius: 10px;
  }

  .premium-note {
    font-size: 16px;
  }
}

.site-footer {
  color: #d6dfda;
}

.footer-top {
  background:
    linear-gradient(rgba(0, 18, 15, 0.64), rgba(0, 18, 15, 0.82)),
    url("images/footer-bg.png") center/cover no-repeat;
     padding: 70px 100px 30px;
 /*  padding: 70px 20px 30px; */
}

.footer-shell {
  max-width: 1650px;
  margin: 0 auto;
}

.footer-cta h2 {
  margin: 0;
  font-family: "Merriweather", serif;
  font-size: var(--sec-heading);
  line-height: 1.13;
  color: #d4dddc;
}

.footer-line {
  display: block;
  width: 158px;
  height: 5px;
  margin: 24px 0 24px;
  background: #2f9b67;
}

.footer-cta p {
  margin: 0;
  font-family: "Inter", sans-serif;
  font-size: var(--sec-body);
  line-height: 1.42;
  color: #a3afb0;
}

.footer-start-btn {
  margin-top: 34px;
  display: inline-flex;
  align-items: center;
  gap: 16px;
  text-decoration: none;
  background: #166c3a;
  border-radius: 16px;
  padding: 24px 40px;
  color: #bdd1c2;
  font-family: "Inter", sans-serif;
  font-size: var(--sec-subheading);
  font-weight: 700;
}

.footer-start-btn img {
  width: 42px;
  height: 42px;
  object-fit: contain;
}

.store-row {
  margin-top: 24px;
  display: flex;
  gap: 8px;
  align-items: center;
}

.store-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 4px;
  background: #070a0b;
  text-decoration: none;
  padding: 8px 14px;
}

.store-icon {
  width: 34px;
  height: 34px;
  object-fit: contain;
  flex: 0 0 auto;
}

.store-copy {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
}

.store-small {
  font-family: "Inter", sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: #9ea4a8;
  text-transform: none;
}

.play-store-btn .store-small {
  text-transform: uppercase;
}

.store-big {
  margin-top: 2px;
  font-family: "Inter", sans-serif;
  font-size: 24px;
  font-weight: 500;
  color: #d7dcdf;
}

.footer-trust {
  margin-top: 52px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid rgba(140, 161, 154, 0.34);
}

.footer-trust article {
  display: flex;
  align-items: center;
  gap: 22px;
  padding: 28px 24px;
}

.footer-trust article:not(:last-child) {
  border-right: 1px solid rgba(140, 161, 154, 0.34);
}

.trust-icon {
  width: 54px;
  height: 54px;
  border: 1px solid #2ea562;
  border-radius: 999px;
  background: rgba(9, 72, 51, 0.32);
  display: flex;
  align-items: center;
  justify-content: center;
}

.trust-icon img {
  width: 28px;
  height: 28px;
  object-fit: contain;
  display: block;
}

.footer-trust article:first-child .trust-icon img {
  width: 24px;
  height: 24px;
}

.footer-trust h3 {
  margin: 0 0 6px;
  font-family: "Inter", sans-serif;
  font-size: var(--sec-subheading);
  color: #b7c4c0;
}

.footer-trust p {
  margin: 0;
  font-family: "Inter", sans-serif;
  font-size: var(--sec-body);
  line-height: 1.4;
  color: #8f9b9c;
}

.footer-bottom {
  background: rgba(0, 15, 12, 0.9);
  border-top: 1px solid rgba(146, 161, 157, 0.2);
  padding: 24px 100px 28px;
  /* padding: 24px 20px 28px; */
}

.footer-bottom-row {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
}

.brand-col {
  display: flex;
  align-items: center;
  gap: 18px;
  justify-self: start;
}

.brand-col img {
  /* width: 130px; */
  width: 260px;
  height: auto;
}

.footer-social img {
  width: 40px;
  max-width: 100%;
  height: auto;
}

.footer-social {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  justify-self: center;
}

.footer-social a {
  display: inline-flex;
}

.brand-col h3 {
  margin: 0;
  font-family: "Inter", sans-serif;
  font-size: var(--sec-subheading);
  color: #cbd5d2;
}

.brand-col p {
  margin: 4px 0 0;
  font-family: "Inter", sans-serif;
  font-size: var(--sec-body);
  color: #879395;
}

.brand-col span {
  display: block;
  margin-top: 8px;
  font-family: "Inter", sans-serif;
  font-size: var(--sec-body);
  color: #2e8058;
}

.copyright {
  margin: 20px 0 0;
  text-align: center;
  font-family: "Inter", sans-serif;
  font-size: var(--sec-small);
  color: #7f8b8d;
}

@media (max-width: 1200px) {
  .footer-cta h2 {
    font-size: 60px;
  }

  .footer-cta p {
    font-size: 22px;
  }

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

  .footer-trust article:not(:last-child) {
    border-right: none;
    border-bottom: 1px solid rgba(140, 161, 154, 0.34);
  }
}

@media (max-width: 640px) {
  .footer-top {
    padding: 52px 16px 24px;
  }

  .footer-cta h2 {
    font-size: 42px;
  }

  .footer-line {
    width: 110px;
    height: 8px;
    margin: 18px 0 18px;
  }

  .footer-cta p {
    font-size: 18px;
  }

  .footer-start-btn {
    width: 100%;
    justify-content: center;
    font-size: 22px;
    padding: 20px 18px;
  }

  .store-row {
    flex-direction: row;
    align-items: center;
    justify-content: center;
    flex-wrap: nowrap;
  }

  .store-btn img {
    width: 28px;
    height: 28px;
  }

  .store-big {
    font-size: 20px;
  }

  .store-small {
    font-size: 12px;
  }

  .footer-trust article {
    align-items: flex-start;
    padding: 20px 0;
  }

  .footer-trust {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
  }

  .footer-trust article {
    align-items: center;
    flex-direction: column;
    text-align: center;
    gap: 10px;
    padding: 10px 8px;
    border-bottom: none !important;
  }

  .footer-trust article:not(:last-child) {
    border-right: 1px solid rgba(140, 161, 154, 0.34);
  }

  .trust-icon {
    width: 72px;
    height: 72px;
  }

  .trust-icon img {
    width: 32px;
    height: 32px;
  }

  .footer-bottom-row {
    grid-template-columns: 1fr;
    align-items: center;
  }

  .brand-col h3 {
    font-size: 24px;
  }
}
