:root {
  --teal: #1f4f3a;
  --teal-dark: #173429;
  --lime: #d39a43;
  --ink: #172620;
  --muted: #69746d;
  --paper: #f6f1e7;
  --sage: #dfe8d9;
  --clay: #a96f3e;
  --white: #ffffff;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  background: var(--paper);
}

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

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

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

.contact-strip {
  color: var(--white);
  background: var(--clay);
}

.contact-strip__inner {
  display: flex;
  justify-content: flex-end;
  gap: 34px;
  min-height: 40px;
  align-items: center;
  font-size: 15px;
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: 31% 69%;
  min-height: 760px;
  overflow: hidden;
}

.hero__left {
  position: relative;
  z-index: 4;
  display: flex;
  align-items: center;
  justify-content: center;
  align-self: start;
  width: 100%;
  min-height: 135px;
  background: var(--paper);
}

.menu-toggle {
  display: none;
}

.menu-check {
  display: none;
}

.brand {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.brand img {
  width: 155px;
  height: 118px;
  object-fit: contain;
}

.hero__right {
  position: relative;
  grid-column: 2;
  grid-row: 1;
  align-self: stretch;
  min-height: 760px;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(23, 38, 32, 0.78), rgba(31, 79, 58, 0.46)),
    url("image/banner2.jpeg?v=3") center / cover;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  min-height: 135px;
  padding-top: 0;
  font-size: 16px;
  font-weight: 600;
}
.nav a:hover {
  color: #ffd08b;
  text-decoration:none;
}

.nav .active {
  color: #ffd08b;
}

.nav-dropdown {
  position: relative;
  padding-bottom: 0px;
}

.nav-dropdown > a::after {
  margin-left: 8px;
  content: "⌄";
  font-size: 16px;
}

.dropdown-menu {
  position: absolute;
  z-index: 20;
  top: 34px;
  left: 50%;
  display: grid;
  min-width: 238px;
  padding: 12px 0;
  color: var(--ink);
  background: var(--paper);
  box-shadow: 0 18px 34px rgba(23, 38, 32, 0.24);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 12px);
  transition:
    opacity 0.18s ease,
    transform 0.18s ease;
}

.dropdown-menu a {
  padding: 11px 18px;
  color: var(--ink);
  font-size: 14px;
  white-space: nowrap;
}

.dropdown-menu a:hover,
.dropdown-menu a:focus {
  color: var(--white);
  background: var(--teal);
}

.nav-dropdown:hover .dropdown-menu,
.nav-dropdown:focus-within .dropdown-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 0);
}

.hero__content {
  position: relative;
  z-index: 2;
  width: min(720px, calc(100% - 100px));
  margin: 190px 0 0 15.5%;
}

.hero__content h1 {
  margin: 0 0 24px;
  font-size: clamp(44px, 4.3vw, 72px);
  line-height: 1.05;
}

.hero__content p {
  max-width: 760px;
  margin: 0 0 28px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 17px;
  line-height: 1.55;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 150px;
  min-height: 52px;
  padding: 0 26px;
  color: var(--white);
  background: var(--lime);
  border-radius: 14px;
  box-shadow: 0 12px 24px rgba(169, 111, 62, 0.28);
  font-weight: 800;
}

.hero__outline {
  position: absolute;
  right: 18%;
  bottom: 34px;
  color: transparent;
  font-size: clamp(92px, 9vw, 160px);
  font-weight: 900;
  line-height: 1;
  -webkit-text-stroke: 1px rgba(211, 154, 67, 0.42);
}

.hero-card {
  position: absolute;
  z-index: 3;
  top: 235px;
  left: 17.2%;
  width: min(315px, 19vw);
  aspect-ratio: 0.82 / 1;
  object-fit: cover;
  border: 10px solid var(--paper);
  border-radius: 20px 4px 20px 4px;
  box-shadow: 0 22px 45px rgba(23, 38, 32, 0.26);
}

.presence {
  display: grid;
  grid-template-columns: 57.5% 42.5%;
  min-height: 245px;
}

.presence__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: center;
  gap: 28px;
  padding-left: 24%;
  color: var(--white);
  background: var(--teal-dark);
}

.presence__stats div {
  display: grid;
  justify-items: center;
  gap: 14px;
}

.presence__stats span {
  display: grid;
  place-items: center;
  width: 88px;
  height: 88px;
  border: 6px solid var(--lime);
  border-left-color: rgba(255, 255, 255, 0.5);
  border-radius: 18px;
  font-size: 17px;
}

.presence__stats strong {
  font-size: 17px;
}

.presence__flags {
  padding: 54px 0 0 36px;
  background: var(--paper);
}

.presence__flags h2 {
  margin: 0 0 24px;
  font-size: 24px;
}

.presence__flags div {
  display: flex;
  gap: 36px;
  font-size: 84px;
  line-height: 1;
}

.section {
  padding: 118px 0;
}

.about__grid {
  display: grid;
  grid-template-columns: 1fr 0.95fr;
  gap: 72px;
  align-items: center;
}

.ghost {
  margin: 0 0 -34px;
  color: transparent;
  font-size: clamp(58px, 5.8vw, 88px);
  font-weight: 900;
  line-height: 1;
  -webkit-text-stroke: 1px rgba(211, 154, 67, 0.42);
}

.about h2,
.products h2,
.section-title h2 {
  position: relative;
  z-index: 1;
  margin: 0 0 26px;
  font-size: clamp(38px, 3.4vw, 54px);
  line-height: 1.1;
}

.about p:not(.ghost),
.products__head > p {
  margin: 0 0 28px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.55;
}

.tick-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px 10px;
  padding: 0;
  margin: 0 0 40px;
  list-style: none;
  color: var(--teal-dark);
  font-size: 16px;
}

.tick-list li::before {
  margin-right: 16px;
  color: var(--lime);
  content: "↗";
  font-size: 22px;
}

.about__media {
  position: relative;
}

.about__media button {
  position: absolute;
  z-index: 2;
  top: -28px;
  left: -28px;
  display: grid;
  place-items: center;
  width: 68px;
  height: 68px;
  color: var(--white);
  background: var(--teal);
  border: 8px solid rgba(223, 232, 217, 0.8);
  border-radius: 16px;
  font-size: 24px;
}

.about__media img {
  width: 100%;
  aspect-ratio: 1.08 / 1;
  object-fit: cover;
}

.products {
  padding-top: 64px;
}

.products__head {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: 90px;
  align-items: start;
  margin-bottom: 72px;
}

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

.product-card {
  position: relative;
  min-height: 360px;
  overflow: hidden;
  background: #d2c4ad;
  border-radius: 18px;
  margin-bottom: 30px;
}

.product-card img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
}

.product-card h3 {
  position: absolute;
  left: 28px;
  right: 24px;
  bottom: 34px;
  margin: 0;
  color: #ffcf86;
  font-size: 24px;
  line-height: 1.1;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.55);
  font-weight:bold;
}

.product-card::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, rgba(23, 38, 32, 0.02), rgba(23, 38, 32, 0.68));
}

.product-card h3 {
  z-index: 1;
}

.products__cta {
  padding: 42px 24px 78px;
  color: var(--white);
  text-align: center;
  background: var(--teal-dark);
}

.products__cta a {
  margin-left: 8px;
  color: var(--lime);
  font-weight: 800;
}

.features {
  padding: 92px 0 190px;
  color: var(--ink);
  background: var(--sage);
}

.feature-grid {
  /*display: grid;*/
  /*grid-template-columns: repeat(3, 1fr);*/
  /*gap: 90px;*/
}

.feature-grid span {
  display: block;
  height: 36px;
  color: transparent;
  font-size: 54px;
  font-weight: 900;
  line-height: 0.8;
  -webkit-text-stroke: 1px rgba(31, 79, 58, 0.28);
}

.feature-grid h3 {
  margin: 0 0 12px;
  font-size: 25px;
}

.feature-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.55;
}

.difference {
  padding-top: 112px;
}

.section-title {
  margin-bottom: 76px;
  text-align: center;
}

.section-title .ghost {
  margin-bottom: -44px;
}

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

.difference-grid article {
  position: relative;
  display: grid;
  align-content: end;
  min-height: 150px;
  border: 3px solid var(--teal);
  background: var(--paper);
  text-align: center;
}

.difference-grid article::after {
  height: 22px;
  content: "";
  background: var(--teal);
  border-radius: 28px 28px 0 0;
}

.difference-grid div {
  position: absolute;
  top: -54px;
  left: 50%;
  display: grid;
  place-items: center;
  width: 96px;
  height: 96px;
  color: var(--ink);
  background: var(--white);
  border: 12px solid var(--sage);
  border-radius: 20px;
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.18);
  font-size: 34px;
  transform: translateX(-50%);
}

.difference-grid strong {
  display: block;
  padding: 12px 10px;
  color: var(--white);
  background: var(--teal);
  font-size: 17px;
  text-transform: uppercase;
}

.testimonials {
  position: relative;
  min-height: 420px;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(23, 52, 41, 0.78), rgba(169, 111, 62, 0.54)),
    url("image/banner.jpeg")
      center / cover;
}

.testimonials__inner {
  /*display: grid;*/
  grid-template-columns: 510px 1fr;
  align-items: start;
  min-height: 420px;
}

.testimonial-card {
  position: relative;
  align-self: end;
  min-height: 285px;
  padding: 58px 46px 44px;
  background: rgba(23, 52, 41, 0.96);
  border-radius: 18px 18px 0 0;
}

.testimonial-card p {
  margin: 0 0 30px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 16px;
  line-height: 1.55;
}

.stars {
  margin-bottom: 34px;
  color: #ffd08b;
  font-size: 18px;
  letter-spacing: 6px;
}

.client {
  display: flex;
  align-items: center;
  gap: 14px;
}

.client div {
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  color: var(--white);
  background: var(--clay);
  border-radius: 14px;
  font-weight: 900;
}

.client span {
  display: grid;
  gap: 3px;
}

.client small {
  color: rgba(255, 255, 255, 0.65);
}

.testimonial-card b {
  position: absolute;
  right: 42px;
  bottom: 58px;
  color: rgba(211, 154, 67, 0.28);
  font-size: 92px;
  font-weight: 400;
  line-height: 0.7;
}

.testimonial-title {
  padding: 0 0 0 64px;
  margin-top: 44px;
}

.testimonial-title .ghost {
  margin-bottom: -40px;
  font-size: clamp(58px, 5.8vw, 86px);
  -webkit-text-stroke-color: rgba(211, 154, 67, 0.45);
}

.testimonial-title h2 {
  position: relative;
  z-index: 1;
  margin: 0;
  font-size: clamp(38px, 3.3vw, 54px);
}

.footer {
  padding: 90px 0 34px;
  color: rgba(255, 255, 255, 0.76);
  background: #13251e;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.25fr 0.7fr 1.15fr 1.35fr;
  gap: 64px;
}

.brand--footer {
  margin: 0 0 22px;
  justify-content: flex-start;
}

.brand--footer img {
  width: 132px;
  height: auto;
  background: var(--white);
}

.footer h3 {
  margin: 0 0 20px;
  color: var(--white);
}

.footer p,
.footer a {
  display: block;
  margin: 0 0 10px;
  font-size: 15px;
  line-height: 1.6;
}

.footer-socials {
  display: flex;
  gap: 16px;
  margin-top: 36px;
}

.footer-socials a {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  margin: 0;
  color: var(--lime);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 12px;
  font-size: 16px;
  font-weight: 800;
}

.newsletter {
  display: grid;
  grid-template-columns: 1fr 92px;
  align-items: center;
  gap: 0;
  margin-top: 26px;
}

.newsletter input {
  min-width: 0;
  height: 50px;
  color: var(--white);
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--lime);
  outline: 0;
  font-size: 15px;
}

.newsletter button {
  display: grid;
  place-items: center;
  width: 88px;
  height: 50px;
  color: var(--lime);
  background: transparent;
  border: 1px solid var(--lime);
  border-radius: 14px;
  font-size: 18px;
}

.footer__bottom {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  margin-top: 76px;
  padding-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  font-size: 13px;
}

.float-actions {
  position: fixed;
  z-index: 10;
  left: 24px;
  bottom: 70px;
  display: grid;
  gap: 18px;
}

.float-actions a {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  color: var(--white);
  background: var(--clay);
  border-radius: 14px;
  font-size: 22px;
  font-weight: 800;
}

.float-actions a:last-child {
  background: var(--teal);
}

@media (max-width: 980px) {
  .contact-strip__inner {
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px 20px;
    padding: 10px 0;
  }

  .hero {
    display: grid;
    grid-template-columns: 1fr;
    min-height: auto;
    overflow: visible;
  }

  .hero__left {
    justify-content: space-between;
    min-height: 76px;
    padding: 8px 18px;
  }

  .brand {
    margin-left: 0;
  }

  .menu-toggle {
    display: grid;
    align-content: center;
    place-items: center;
    gap: 5px;
    width: 42px;
    height: 42px;
    padding: 0;
    background: transparent;
    border: 0;
  }

  .menu-toggle span {
    display: block;
    width: 21px;
    height: 2px;
    background: var(--teal-dark);
    transition:
      opacity 0.18s ease,
      transform 0.18s ease;
  }

  .menu-check:checked + .hero__left .menu-toggle span:first-child {
    transform: translateY(7px) rotate(45deg);
  }

  .menu-check:checked + .hero__left .menu-toggle span:nth-child(2) {
    opacity: 0;
  }

  .menu-check:checked + .hero__left .menu-toggle span:last-child {
    transform: translateY(-7px) rotate(-45deg);
  }

  .hero__right {
    grid-column: auto;
    grid-row: auto;
    min-height: 600px;
  }

  .nav {
    display: grid;
    grid-template-columns: repeat(2, max-content);
    justify-content: center;
    gap: 18px 30px;
    min-height: auto;
    padding: 24px 18px 0;
    font-size: 15px;
  }

  .nav-dropdown {
    padding-bottom: 0;
  }

  .dropdown-menu {
    top: 28px;
  }

  .hero__content {
    width: calc(100% - 48px);
    margin: 120px auto 0;
  }

  .hero__outline {
    display: none;
  }

  .hero-card {
    position: relative;
    top: auto;
    left: auto;
    width: calc(100% - 48px);
    max-width: 360px;
    margin: -90px auto 0;
  }

  .presence,
  .about__grid,
  .products__head,
  .feature-grid,
  .difference-grid,
  .testimonials__inner,
  .footer__grid {
    grid-template-columns: 1fr;
  }

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

  .presence__stats {
    padding: 54px 24px;
  }

  .presence__flags {
    padding: 42px 24px;
  }

  .presence__flags div {
    font-size: 56px;
  }

  .section {
    padding: 72px 0;
  }

  .tick-list {
    grid-template-columns: 1fr;
  }

  .products__head {
    gap: 24px;
    margin-bottom: 42px;
  }

  .feature-grid {
    gap: 46px;
  }

  .difference-grid {
    gap: 74px;
  }

  .testimonials__inner {
    gap: 36px;
    padding: 60px 0;
  }

  .testimonial-card {
    align-self: auto;
  }

  .testimonial-title {
    padding-left: 0;
    margin-top: 0;
  }

  .footer__bottom {
    flex-direction: column;
  }
}


.ptb-100{
    padding-top:100px;
    padding-bottom:100px;
}

@media (max-width: 620px) {
  .container {
    width: calc(100% - 28px);
  }

  .contact-strip__inner {
    width: calc(100% - 16px);
    gap: 4px;
    min-height: auto;
    padding: 8px 0;
    font-size: 12px;
    line-height: 1.25;
  }

  .contact-strip__inner span {
    width: 100%;
    overflow-wrap: anywhere;
    text-align: center;
  }

  .brand img {
    width: 112px;
    height: 58px;
  }

  .hero__right {
    display: block;
    min-height: 540px;
  }

  .nav {
    position: static;
    z-index: 999;
    display: none;
    grid-template-columns: 1fr;
    gap: 0;
    padding: 0;
    color: var(--ink);
    background: var(--paper);
    box-shadow: 0 14px 28px rgba(0, 0, 0, 0.2);
    font-size: 15px;
  }

  .menu-check:checked ~ .hero__right .nav {
    display: grid;
  }

  .menu-check:checked ~ .hero__right .hero__content {
    margin-top: 42px;
  }

  .nav > a,
  .nav-dropdown > a {
    display: block;
    padding: 14px 18px;
    border-bottom: 1px solid rgba(31, 79, 58, 0.14);
  }

  .dropdown-menu {
    position: static;
    display: grid;
    min-width: 0;
    padding: 0;
    background: var(--sage);
    box-shadow: none;
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }

  .dropdown-menu a {
    padding: 10px 28px;
    font-size: 14px;
  }

  .nav-dropdown:hover .dropdown-menu,
  .nav-dropdown:focus-within .dropdown-menu {
    transform: none;
  }

  .hero__content {
    width: calc(100% - 32px);
    margin-top: 86px;
  }

  .hero__content h1,
  .about h2,
  .products h2,
  .section-title h2 {
    font-size: 28px;
  }

  .hero__content p {
    font-size: 14px;
  }

  .hero-card {
    display: none;
  }

  .ghost {
    font-size: 48px;
  }

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

  .product-card,
  .product-card img {
    min-height: 330px;
  }

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

  .product-card h3 {
    left: 26px;
    bottom: 38px;
  }

  .testimonial-card {
    padding: 36px 24px;
  }

  .testimonial-card b {
    right: 22px;
    bottom: 46px;
    font-size: 64px;
  }

  .newsletter {
    grid-template-columns: 1fr;
    gap: 16px;
  }

}
