:root {
  --green: #99d81f;
  --dark: #050505;
  --muted: #6c7068;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

html,
body {
  overflow-x: hidden;
  width: 100%;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  background: rgba(0, 0, 0, 0.56);
  box-shadow: none;
  backdrop-filter: none;
}

.header-wrap {
  display: flex;
  width: min(1114px, calc(100% - 48px));
  min-height: 78px;
  align-items: center;
  justify-content: space-between;
  margin: 0 auto;
}

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

.brand-lockup img {
  display: block;
  width: 276px;
  max-width: 34vw;
  height: auto;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 27px;
}

.main-nav a {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
}

.main-nav a:hover {
  color: #fff;
}

.menu-caret {
  display: inline-block;
  width: 0;
  height: 0;
  border-top: 5px solid #fff;
  border-right: 4px solid transparent;
  border-left: 4px solid transparent;
  transform: translateY(1px);
}

.nav-icons {
  display: inline-flex;
  gap: 13px;
  margin-left: 24px;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 13px;
}

.round-icon {
  display: grid !important;
  width: 41px;
  height: 41px;
  place-items: center;
  border-radius: 50%;
  background: #fff;
  color: #050505 !important;
}

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

.round-icon svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.mobile-menu-btn {
  display: none;
  gap: 5px;
  width: 44px;
  height: 44px;
  place-content: center;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
}

.mobile-menu-btn span {
  display: block;
  width: 20px;
  height: 2px;
  background: #fff;

}

.hero-slider {
  position: relative;
  min-height: 600px;
  overflow: hidden;
  background: #111;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 900ms ease;
}

.hero-slide.active {
  opacity: 1;
  pointer-events: auto;
}

.hero-slide img {
  width: 100%;
  height: 100%;
  min-height: 600px;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.42), rgba(0, 0, 0, 0.1) 44%, rgba(0, 0, 0, 0.05));
}

.hero-content {
  position: absolute;
  top: 160px;
  left: max(24px, calc((100vw - 1114px) / 2 + 38px));
  max-width: 520px;
  transform: translateY(-50%);
  color: #fff;
  transform: none;
}

.hero-content>p:first-child {
  display: inline-flex;
  align-items: center;
  margin-bottom: 17px;
  color: #fff;
  font-size: 18px;
  font-weight: 400;
  text-transform: none;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  color: var(--green);
  font-weight: 800;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 34px;
  height: 3px;
  background: var(--green);
}

.hero-content>p:first-child::before {
  display: none;
}

.hero-content h1,
.hero-content h2 {
  max-width: 520px;
  font-family: Inter, Arial, sans-serif;
  font-size: clamp(43px, 4.15vw, 58px);
  font-weight: 800;
  line-height: 1.13;
  letter-spacing: 0;
}

.hero-content h1 span,
.hero-content h2 span,
.section-title span {
  color: var(--green);
}

.hero-content h1 span,
.hero-content h2 span {
  border-bottom: 2px solid #1597c5;
  background: linear-gradient(90deg, #6bbd44 0%, #229dda 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-copy {
  margin: 15px 0 30px;
  max-width: 520px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 16px;
  font-weight: 600;
  line-height: 1.48;
}

.theme-btn {
  display: inline-flex;
  min-width: 147px;
  min-height: 47px;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 5px;
  background: #fff;
  color: #111;
  padding: 0 22px;
  font-size: 16px;
  font-weight: 400;
  text-decoration: none;
  transition: transform 180ms ease, background 180ms ease;
}

.theme-btn:hover {
  transform: translateY(-2px);
  background: #fff;
}

.theme-btn.dark {
  background: var(--dark);
  color: #fff;
}

.hero-arrow {
  position: absolute;
  top: 56%;
  z-index: 3;
  display: grid;
  width: 31px;
  height: 31px;
  place-items: center;
  border: 1px solid #fff;
  border-radius: 50%;
  background: transparent;
  transform: translateY(-50%);
}

.hero-arrow svg,
.go-top svg {
  width: 17px;
  height: 17px;
  fill: currentColor;
}

.hero-arrow {
  color: #fff;
}

.hero-prev {
  left: 39px;
}

.hero-next {
  right: 39px;
}

.whatsapp-float {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 60;
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border: 0;
  border-radius: 50%;
  background: #00b74a;
  color: #fff;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.22);
}

.whatsapp-float svg {
  width: 25px;
  height: 25px;
  fill: currentColor;
}

.common-section,
.questions-section {
  padding: clamp(72px, 8vw, 116px) 0;
}

.blending-sec {
  background: #fff;
  padding: 74px 0 82px;
}

.blending-wrap {
  display: grid;
  width: min(1107px, calc(100% - 48px));
  grid-template-columns: 1fr 0.98fr;
  gap: 72px;
  align-items: center;
  margin: 0 auto;
}

.blending-heading {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 18px;
  color: #000;
  font-size: 12px;
  font-weight: 500;
}

.blending-heading img {
  width: 16px;
  height: 16px;
  object-fit: contain;
}

.blending-info h2 {
  max-width: 555px;
  margin: 0 0 24px;
  color: #000;
  font-family: Inter, Arial, sans-serif;
  font-size: 31px;
  font-weight: 800;
  line-height: 1.29;
  letter-spacing: 0;
}

.blending-info h2 span {
  display: inline-block;
  color: #63af55;
  border-bottom: 1px solid #63af55;
}

.blending-info p {
  max-width: 530px;
  margin: 0 0 15px;
  color: #000;
  font-size: 12px;
  line-height: 1.6;
}

.blending-info strong {
  font-weight: 800;
}

.featured-title {
  margin-top: 18px !important;
  margin-bottom: 16px !important;
  font-size: 12px !important;
}

.featured-logos {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-bottom: 32px;
}

.featured-logos img {
  display: block;
  width: auto;
  max-width: 86px;
  max-height: 36px;
  object-fit: contain;
}

.featured-logos img:first-child {
  max-width: 88px;
}

.featured-logos img:nth-child(2) {
  max-width: 62px;
}

.featured-logos img:nth-child(3) {
  max-width: 86px;
}

.about-btn {
  min-width: 109px;
  min-height: 37px;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 700;
}

.section-title {
  max-width: 720px;
  font-family: Sarabun, sans-serif;
  font-size: clamp(34px, 4.2vw, 62px);
  font-weight: 800;
  line-height: 1.04;
}

.section-copy {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.75;
}

.founder-card {
  margin: 28px 0;
  border-left: 4px solid var(--green);
  padding-left: 18px;
}

.founder-card span,
.founder-card small {
  display: block;
}

.founder-card span {
  font-size: 24px;
  font-weight: 800;
}

.founder-card small {
  color: var(--muted);
  font-weight: 700;
}

.stats-grid {
  position: relative;
  display: grid;
  width: 456px;
  max-width: 100%;
  grid-template-columns: repeat(2, 1fr);
  margin-top: 6px;
}

.stats-grid::before,
.stats-grid::after {
  content: "";
  position: absolute;
  background: #d7d7d7;
}

.stats-grid::before {
  top: 50%;
  right: 34px;
  left: 34px;
  height: 1px;
}

.stats-grid::after {
  top: 18px;
  bottom: 18px;
  left: 50%;
  width: 1px;
}

.stats-grid article {
  display: flex;
  min-height: 164px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  background: #fff;
  color: #000;
  text-align: center;
}

.stat-icon {
  display: grid !important;
  width: 40px;
  height: 40px;
  place-items: center;
  margin: 0 0 13px !important;
  border: 1px solid #e2e2e2;
  border-radius: 50%;
  background: #fff;
}

.stat-icon img {
  width: 22px;
  height: 22px;
  object-fit: contain;
}

.stats-grid strong {
  display: block;
  color: #000;
  font-family: Inter, Arial, sans-serif;
  font-size: 25px;
  font-weight: 800;
  line-height: 1;
}

.stats-grid article>span:last-child {
  display: block;
  margin-top: 8px;
  color: #000;
  font-size: 12px;
  font-weight: 400;
}

.stats-center {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 3;
  display: grid;
  width: 64px;
  height: 64px;
  place-items: center;
  border: 1px solid #e2e2e2;
  border-radius: 50%;
  background: #fff;
  transform: translate(-50%, -50%);
}

.stats-center img {
  width: 37px;
  height: 37px;
  object-fit: contain;
}

.about-video-wrap {
  width: min(589px, calc(100% - 48px));
  margin: 33px auto 0;
}

.about-video-block {
  position: relative;
  overflow: hidden;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 23px;
  background: #111;
}

.about-video-block iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.section-split {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 42px;
  align-items: end;
  margin-bottom: 46px;
}

.solution-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  margin-bottom: 26px;
}

.solution-row article {
  position: relative;
  min-height: 440px;
  overflow: hidden;
  border-radius: 8px;
  background: #111;
}

.solution-row img {
  width: 100%;
  height: 100%;
  min-height: 440px;
  object-fit: cover;
  opacity: 0.78;
  transition: transform 450ms ease;
}

.solution-row article:hover img {
  transform: scale(1.05);
}

.solution-row article>div {
  position: absolute;
  inset: auto 0 0;
  padding: 30px;
  color: #fff;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.88), transparent);
}

.solution-row h3,
.product-grid h3 {
  font-family: Sarabun, sans-serif;
  font-size: 24px;
  font-weight: 800;
}

.solution-row p {
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.65;
}

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

.product-grid article,
.review-card,
.contact-info-card,
.contact-form {
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 20px 70px rgba(18, 24, 12, 0.08);
}

.product-grid article {
  min-height: 220px;
  padding: 28px;
}

.product-grid article::before {
  content: "";
  display: block;
  width: 44px;
  height: 4px;
  margin-bottom: 24px;
  background: var(--green);
}

.product-grid p {
  margin-top: 14px;
  color: var(--muted);
  line-height: 1.65;
}

.home-stories-sec {
  background: #fff;
  padding: 0 0 43px;
}

.stories-fullwidth-section {
  width: 100%;
  background: #fff;
  padding: clamp(48px, 8vw, 88px) clamp(24px, 5vw, 56px);
}

.stories-container {
  max-width: 1180px;
  margin: 0 auto;
  width: 100%;
}

.stories-heading {
  max-width: 760px;
  margin-bottom: 48px;
}

.stories-heading h2 {
  font-size: clamp(28px, 5vw, 44px);
  font-weight: 800;
  font-family: 'Sarabun', 'Inter', sans-serif;
  color: #000000;
  margin-bottom: 16px;
  letter-spacing: -0.01em;
}

.stories-heading h2 span {
  color: #63af55;
  border-bottom: 2px solid #63af55;
  display: inline-block;
}

.stories-heading p {
  font-size: 15px;
  color: #3b3f48;
  max-width: 600px;
  line-height: 1.5;
  font-weight: 500;
}

.stories-full-layout {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(32px, 4vw, 48px);
  width: 100%;
  align-items: flex-start;
}

.stories-sidebar {
  flex: 0 0 260px;
}

.story-tabs {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 32px;
}

.tab-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  background: #f6f6f8;
  border: none;
  border-radius: 48px;
  padding: 12px 18px;
  font-size: 14px;
  font-weight: 600;
  color: #1f1f2b;
  cursor: pointer;
  transition: all 0.2s ease;
  text-align: left;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.02);
}

.tab-btn span {
  display: flex;
  align-items: center;
  gap: 10px;
}

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

.tab-btn i {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #cbd5e1;
  transition: background 0.2s;
}

.tab-btn.active {
  background: #eef5e6;
  color: #2c6e2e;
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.03);
}

.tab-btn.active i {
  background: #48a263;
}

.stories-trust {
  margin-top: 28px;
  padding-top: 20px;
  border-top: 1px solid #e9edf2;
}

.stories-trust img {
  width: 38px;
  margin-bottom: 12px;
}

.stories-trust strong {
  font-size: 32px;
  font-weight: 800;
  display: block;
  color: #000;
  line-height: 1.1;
}

.stories-trust span {
  font-size: 13px;
  color: #4a4f5e;
  display: inline-block;
  margin-top: 6px;
}

.stories-content-area {
  flex: 1;
  min-width: 0;
  width: 100%;
}

.tab-panel {
  display: none;
  width: 100%;
}

.tab-panel.active {
  display: block;
}

.landscape-card {
  display: flex;
  flex-wrap: wrap;
  background: #ffffff;
  border-radius: 28px;
  box-shadow: 0 25px 45px -12px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.02);
  width: 100%;
  overflow: hidden;
  transition: transform 0.2s;
  border: 1px solid #f0f2f5;
}

.landscape-media {
  flex: 1.1;
  min-width: 280px;
  background: #f4f7fc;
  position: relative;
  overflow: hidden;
}

.landscape-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.landscape-card:hover .landscape-media img {
  transform: scale(1.02);
}

.landscape-content {
  flex: 1.2;
  padding: 36px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.badge-icon {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #eef5ea;
  padding: 6px 16px;
  border-radius: 40px;
  width: fit-content;
  margin-bottom: 20px;
  font-size: 13px;
  font-weight: 700;
  color: #2d6a2f;
}

.badge-icon img {
  width: 18px;
  height: 18px;
}

.landscape-content h3 {
  font-size: clamp(22px, 4vw, 32px);
  font-weight: 800;
  font-family: 'Sarabun', 'Inter', sans-serif;
  color: #0c0e16;
  margin-bottom: 20px;
  line-height: 1.25;
}

.landscape-content p {
  font-size: 16px;
  color: #2d3548;
  line-height: 1.6;
  margin-bottom: 28px;
  max-width: 92%;
}

.quote-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 8px;
  border-top: 1px solid #eef2f0;
  padding-top: 24px;
}

.quote-meta img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #99d81f;
}

.quote-meta strong {
  font-size: 18px;
  font-weight: 800;
  color: #111;
}

.quote-meta span {
  font-size: 14px;
  color: #5a616e;
}

.testimonial-landscape {
  background: #ffffff;
  border-radius: 28px;
  padding: 0;
  width: 100%;
  box-shadow: 0 20px 35px -12px rgba(0, 0, 0, 0.08);
  border: 1px solid #edeff4;
}

.testimonial-inner {
  padding: 36px 42px;
}

.testimonial-inner p {
  font-size: 18px;
  line-height: 1.55;
  color: #1f2937;
  font-weight: 500;
  margin-bottom: 28px;
}

.testimonial-inner p::before {
  content: "“";
  font-size: 42px;
  color: #99d81f;
  line-height: 0.8;
  vertical-align: middle;
  margin-right: 4px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.testimonial-author img {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
}

.testimonial-author div strong {
  font-size: 18px;
  display: block;
  font-weight: 800;
}

.testimonial-slider {
  position: relative;
  overflow: hidden;
  width: 100%;
  padding: 6px 0 18px;
}

.testimonial-slider::before,
.testimonial-slider::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: 2;
  width: 72px;
  pointer-events: none;
}

.testimonial-slider::before {
  left: 0;
  background: linear-gradient(90deg, #fff, rgba(255, 255, 255, 0));
}

.testimonial-slider::after {
  right: 0;
  background: linear-gradient(270deg, #fff, rgba(255, 255, 255, 0));
}

.testimonial-track {
  display: flex;
  width: max-content;
  gap: 22px;
  animation: testimonialAutoSlide 28s linear infinite;
  will-change: transform;
}

.testimonial-slider:hover .testimonial-track {
  animation-play-state: paused;
}

@keyframes testimonialAutoSlide {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(calc(-50% - 11px));
  }
}

.testimonial-slider .testimonial-landscape {
  width: 320px;
  height: 320px;
  flex: 0 0 320px;
  border-radius: 12px;
  background:
    linear-gradient(#fff, #fff) padding-box,
    linear-gradient(135deg, rgba(153, 216, 31, 0.42), rgba(22, 143, 198, 0.32)) border-box;
  border: 1px solid transparent;
  box-shadow: 0 18px 38px rgba(18, 24, 12, 0.09);
}

.testimonial-slider .testimonial-inner {
  display: flex;
  height: 100%;
  flex-direction: column;
  padding: 26px;
}

.testimonial-slider .testimonial-inner p {
  display: -webkit-box;
  overflow: hidden;
  margin-bottom: 20px;
  color: #1f2937;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.55;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 7;
}

.testimonial-slider .testimonial-inner p::before {
  display: block;
  margin: 0 0 6px;
  color: #99d81f;
  font-size: 34px;
}

.testimonial-slider .testimonial-author {
  margin-top: auto;
  gap: 13px;
  flex-wrap: nowrap;
  border-top: 1px solid #eef2f0;
  padding-top: 16px;
}

.testimonial-slider .testimonial-author img {
  width: 46px;
  height: 46px;
  border: 2px solid #99d81f;
}

.testimonial-slider .testimonial-author div {
  min-width: 0;
}

.testimonial-slider .testimonial-author div strong {
  color: #111;
  font-size: 15px;
  line-height: 1.2;
}

.testimonial-slider .testimonial-author span {
  display: block;
  margin-top: 4px;
  color: #5f6c80;
  font-size: 12px;
  font-weight: 600;
  line-height: 1.35;
}

@media (max-width: 880px) {
  .landscape-card {
    flex-direction: column;
  }

  .landscape-media {
    min-height: 260px;
  }

  .landscape-content {
    padding: 32px 28px;
  }

  .landscape-content p {
    max-width: 100%;
  }

  .stories-sidebar {
    flex: 0 0 100%;
  }

  .story-tabs {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .tab-btn {
    width: auto;
    flex: 1 0 auto;
    justify-content: space-between;
  }

  .stories-full-layout {
    gap: 32px;
  }

  .testimonial-inner {
    padding: 28px 24px;
  }

  .testimonial-slider .testimonial-landscape {
    width: 290px;
    height: 290px;
    flex-basis: 290px;
  }

  .testimonial-slider .testimonial-inner {
    padding: 22px;
  }

  .testimonial-slider .testimonial-inner p {
    font-size: 13px;
    -webkit-line-clamp: 7;
  }
}

@media (max-width: 640px) {
  .stories-fullwidth-section {
    padding: 48px 20px;
  }

  .tab-btn {
    font-size: 12px;
    padding: 10px 14px;
  }

  .landscape-content h3 {
    font-size: 24px;
  }

  .testimonial-inner p {
    font-size: 16px;
  }

  .testimonial-slider::before,
  .testimonial-slider::after {
    width: 34px;
  }

  .testimonial-track {
    gap: 16px;
    animation-duration: 24s;
  }

  .testimonial-slider .testimonial-landscape {
    width: 260px;
    height: 260px;
    flex-basis: 260px;
  }

  .testimonial-slider .testimonial-inner {
    padding: 20px;
  }

  .testimonial-slider .testimonial-inner p {
    font-size: 12px;
    line-height: 1.5;
    -webkit-line-clamp: 6;
  }

  .testimonial-slider .testimonial-author img {
    width: 42px;
    height: 42px;
  }

  .testimonial-slider .testimonial-author div strong {
    font-size: 14px;
  }

  .testimonial-slider .testimonial-author span {
    font-size: 11px;
  }
}

.stories-content-area {
  width: 100%;
}

button {
  background: none;
  border: none;
}

.play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  display: grid;
  width: 23px;
  height: 23px;
  place-items: center;
  border-radius: 50%;
  background: #000;
  transform: translate(-50%, -50%);
}

.play-btn::before {
  content: "";
  margin-left: 2px;
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
  border-left: 9px solid #fff;
}

.video-story p {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin: 8px 0 0;
  color: #000;
  font-size: 7px;
  line-height: 1.32;
}

.video-story p img {
  width: 16px;
  height: 16px;
  flex: 0 0 auto;
  object-fit: contain;
}

.testimonial-stories {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.testimonial-stories article {
  min-height: 160px;
  border-radius: 10px;
  background: #fff;
  padding: 24px;
  box-shadow: 8px 12px 24px rgba(0, 0, 0, 0.08);
}

.testimonial-stories p {
  color: #000;
  font-size: 13px;
  line-height: 1.6;
}

.testimonial-stories strong {
  display: block;
  margin-top: 18px;
  font-size: 14px;
}

.customized-sec {
  overflow: hidden;
  background: #f4f4f4;
  padding: 36px 0 34px;
}

.customized-head {
  display: grid;
  width: min(785px, calc(100% - 48px));
  grid-template-columns: 1fr 1fr;
  gap: 46px;
  align-items: center;
  margin: 0 auto 42px;
}

.customized-title {
  padding-right: 44px;
  border-right: 1px solid #d7d7d7;
}

.customized-title p {
  display: flex;
  align-items: center;
  gap: 6px;
  margin: 0 0 10px;
  color: #000;
  font-size: 10px;
  line-height: 1;
}

.customized-title p img {
  width: 15px;
  height: 15px;
  object-fit: contain;
}

.customized-title h2 {
  margin: 0;
  color: #000;
  font-family: Inter, Arial, sans-serif;
  font-size: 25px;
  font-weight: 800;
  line-height: 1.34;
}

.customized-title h2 span {
  display: inline-block;
  color: #63af55;
  border-bottom: 2px solid #168fc6;
}

.customized-copy p {
  max-width: 405px;
  margin: 0;
  color: #000;
  font-size: 11px;
  line-height: 1.65;
}

.comfort-card-wrap {
  width: min(1050px, calc(100% - 48px));
  margin: 0 auto;
}

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

.comfort-card {
  position: relative;
  display: flex;
  min-height: 232px;
  flex-direction: column;
  align-items: flex-start;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 8px;
  background:
    linear-gradient(#fff, #fff) padding-box,
    linear-gradient(135deg, rgba(109, 175, 82, 0.34), rgba(39, 152, 208, 0.34)) border-box;
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.07);
  color: #000;
  padding: 24px 22px 22px;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, color 0.25s ease;
}

.comfort-card::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 4px;
  background: linear-gradient(90deg, #6daf52, #2798d0);
}

.comfort-card::after {
  content: "";
  position: absolute;
  right: -42px;
  bottom: -48px;
  width: 116px;
  height: 116px;
  border: 1px solid rgba(39, 152, 208, 0.14);
  border-radius: 50%;
}

.comfort-card-count {
  position: absolute;
  top: 18px;
  right: 18px;
  color: rgba(0, 0, 0, 0.1);
  font-size: 30px;
  font-weight: 800;
  line-height: 1;
}

.comfort-icon {
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  margin-bottom: 20px;
  border-radius: 6px;
  background: #f5f7f8;
  color: #111;
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.05), 0 10px 24px rgba(0, 0, 0, 0.08);
}

.comfort-icon img {
  width: 30px;
  height: 30px;
  object-fit: contain;
}

.comfort-icon svg {
  width: 30px;
  height: 30px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.comfort-card h3 {
  position: relative;
  z-index: 1;
  margin: 0 0 12px;
  color: inherit;
  font-size: 15px;
  font-weight: 800;
  line-height: 1.32;
  text-align: left;
}

.comfort-card p {
  position: relative;
  z-index: 1;
  margin: 0;
  color: #5f646b;
  font-size: 12px;
  line-height: 1.6;
  text-align: left;
}

.comfort-card:hover {
  transform: translateY(-6px);
  background:
    linear-gradient(145deg, #101417, #020303) padding-box,
    linear-gradient(135deg, #6daf52, #2798d0) border-box;
  box-shadow: 0 24px 44px rgba(0, 0, 0, 0.18);
  color: #fff;
}

.comfort-card:hover .comfort-card-count {
  color: rgba(255, 255, 255, 0.12);
}

.comfort-card:hover .comfort-icon {
  background: #fff;
}

.comfort-card:hover p {
  color: rgba(255, 255, 255, 0.72);
}

.automation-strip {
  display: flex;
  gap: 20px;
  width: max-content;
  min-width: 100%;
  margin-left: -164px;
}

.automation-card {
  position: relative;
  overflow: hidden;
  width: 219px;
  height: 274px;
  flex: 0 0 auto;
  border-radius: 5px;
  background: #111;
}

.automation-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.automation-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.48);
}

.automation-card>div {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 30px;
  color: #fff;
}

.automation-card h3 {
  margin: 0 0 12px;
  color: #fff;
  font-family: Inter, Arial, sans-serif;
  font-size: 20px;
  font-weight: 800;
  line-height: 1.16;
}

.automation-card p {
  max-width: 174px;
  min-height: 79px;
  margin: 0 0 15px;
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  line-height: 1.45;
}

.automation-card a {
  display: inline-flex;
  width: 81px;
  min-height: 34px;
  align-items: center;
  justify-content: center;
  border-radius: 3px;
  background: #000;
  color: #fff;
  font-size: 8px;
  font-weight: 800;
  text-decoration: none;
}

.explore-sec {
  background: #fff;
  padding: 31px 0 48px;
}

.explore-head {
  display: grid;
  width: min(864px, calc(100% - 48px));
  grid-template-columns: 1fr 1.27fr;
  gap: 46px;
  align-items: start;
  margin: 0 auto 41px;
}

.explore-title {
  min-height: 132px;
  padding-right: 43px;
  border-right: 1px solid #d7d7d7;
}

.explore-title p {
  display: flex;
  align-items: center;
  gap: 7px;
  margin: 19px 0 11px;
  color: #000;
  font-size: 10px;
  line-height: 1;
}

.explore-title p img {
  width: 15px;
  height: 15px;
  object-fit: contain;
}

.explore-title h2 {
  max-width: 250px;
  margin: 0;
  color: #000;
  font-family: Inter, Arial, sans-serif;
  font-size: 26px;
  font-weight: 800;
  line-height: 1.2;
}

.explore-title h2 span {
  display: inline-block;
  color: transparent;
  border-bottom: 2px solid #168fc6;
  background: linear-gradient(90deg, #67b546 0%, #168fc6 100%);
  -webkit-background-clip: text;
  background-clip: text;
}

.explore-copy p {
  max-width: 492px;
  margin: 11px 0 15px;
  color: #000;
  font-size: 11px;
  line-height: 1.55;
}

.explore-copy a {
  display: inline-flex;
  width: 97px;
  min-height: 31px;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  background: #000;
  color: #fff;
  font-size: 10px;
  font-weight: 800;
  text-decoration: none;
}

.product-range-slider {
  width: min(864px, calc(100% - 48px));
  overflow: hidden;
  margin: 0 auto;
}

.product-range-grid {
  display: flex;
  width: max-content;
  gap: 8px;
  animation: productRangeAutoSlide 24s linear infinite;
  --product-slide-distance: 50%;
  will-change: transform;
}

.product-range-slider:hover .product-range-grid {
  animation-play-state: paused;
}

@keyframes productRangeAutoSlide {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(calc(var(--product-slide-distance) * -1));
  }
}

.product-range-grid article {
  position: relative;
  display: grid;
  place-items: center;
  overflow: hidden;
  width: 166.4px;
  flex: 0 0 166.4px;
  height: 204px;
  border-radius: 5px;
  background: #fff;
  padding: 18px 16px 48px;
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.04);
}

.product-range-grid article::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 72px;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.65), transparent);
}

.product-range-grid img {
  width: auto;
  max-width: 100%;
  max-height: 135px;
  object-fit: contain;
  transition: transform 300ms ease;
}

.product-range-grid article:hover img {
  transform: scale(1.04);
}

.product-range-grid article>a {
  position: absolute;
  right: 10px;
  bottom: 14px;
  left: 10px;
  z-index: 2;
  display: flex;
  min-height: 27px;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  border-radius: 999px;
  background: #fff;
  color: #000;
  padding: 0 6px 0 12px;
  font-size: 10px;
  font-weight: 800;
  text-decoration: none;
  white-space: nowrap;
}

.product-range-grid article>a i {
  position: relative;
  display: grid;
  width: 15px;
  height: 15px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 50%;
  background: #000;
}

.product-range-grid article>a i::before {
  content: "";
  width: 5px;
  height: 5px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: rotate(45deg) translate(-1px, 1px);
}

.questions-section {
  background: #fff;
  padding: 20px 0 24px;
}

.questions-wrap {
  display: grid;
  overflow: hidden;
  width: min(864px, calc(100% - 48px));
  min-height: 480px;
  grid-template-columns: 0.72fr 1fr;
  margin: 0 auto;
  border-radius: 8px;
}

.contact-info-card,
.contact-form {
  background: #f4f4f4;
  box-shadow: none;
}

.contact-info-card {
  position: relative;
  padding: 62px 54px 50px 80px;
}

.contact-info-card::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 4px;
  background: #fff;
}

.contact-info-card h2 {
  max-width: 170px;
  margin: 0 0 23px;
  color: #000;
  font-family: Inter, Arial, sans-serif;
  font-size: 26px;
  font-weight: 800;
  line-height: 1.22;
}

.contact-info-card h2 span {
  display: inline-block;
  color: transparent;
  border-bottom: 2px solid #168fc6;
  background: linear-gradient(90deg, #67b546 0%, #168fc6 100%);
  -webkit-background-clip: text;
  background-clip: text;
}

.question-subtitle {
  margin: 0 0 21px;
  color: #000;
  font-size: 18px;
  line-height: 1.45;
}

.contact-list {
  display: grid;
  gap: 14px;
}

.contact-list p {
  display: grid;
  grid-template-columns: 24px 1fr;
  gap: 12px;
  align-items: start;
  margin: 0;
  color: #000;
  font-size: 10px;
  line-height: 1.28;
}

.contact-list a {
  color: #000;
  text-decoration: none;
}

.contact-icon {
  display: grid;
  width: 24px;
  height: 24px;
  place-items: center;
  border-radius: 50%;
  background: #fff;
}

.contact-icon svg {
  width: 12px;
  height: 12px;
  fill: #000;
}

.contact-watermark {
  position: absolute;
  right: -45px;
  top: 144px;
  width: 117px;
  opacity: 0.95;
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 13px 20px;
  padding: 43px 80px 45px;
}

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

.contact-form label,
.checkbox-group legend {
  display: block;
  margin: 0 0 7px;
  color: #000;
  font-size: 10px;
  font-weight: 600;
  line-height: 1.2;
}

.contact-form input,
.contact-form select {
  width: 100%;
  height: 34px;
  border: 0;
  border-radius: 7px;
  background: #fff;
  color: #000;
  padding: 0 12px;
  font-size: 10px;
  outline: none;
}

.contact-form select {
  appearance: auto;
}

.checkbox-group {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px 22px;
  margin: 0;
  border: 0;
  padding: 0;
}

.checkbox-group legend {
  grid-column: 1 / -1;
  margin-bottom: 1px;
}

.checkbox-group label {
  display: flex;
  align-items: center;
  gap: 7px;
  margin: 0;
  font-size: 9px;
  font-weight: 400;
}

.checkbox-group input {
  width: 13px;
  height: 13px;
  flex: 0 0 auto;
  border-radius: 2px;
  accent-color: #000;
}

.form-note {
  margin: 0;
  color: #000;
  font-size: 9px;
  line-height: 1.35;
}

.captcha-code {
  display: inline-flex;
  width: max-content;
  min-width: 49px;
  min-height: 17px;
  align-items: center;
  justify-content: center;
  background: #fff;
  color: #000;
  padding: 0 8px;
  font-family: Georgia, serif;
  font-size: 13px;
  letter-spacing: 3px;
}

.contact-form .captcha-input {
  height: 34px;
}

.contact-form button {
  width: 82px;
  min-width: 82px;
  min-height: 31px;
  border-radius: 4px;
  font-size: 10px;
  font-weight: 800;
}

.footer {
  background: #fff;
  color: #fff;
}

.footer-inner {
  width: 100%;
  min-height: 307px;
  border-radius: 36px 36px 0 0;
  background: #000;
  padding: 36px 0 34px;
}

.footer-top {
  display: flex;
  width: min(865px, calc(100% - 48px));
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  margin: 0 auto 36px;
}

.footer-brand-row {
  display: flex;
  align-items: center;
  gap: 22px;
}

.footer-logo img {
  display: block;
  width: 161px;
  height: auto;
}

.footer-divider {
  width: 1px;
  height: 24px;
  background: #fff;
}

.socials {
  display: flex;
  align-items: center;
  gap: 8px;
}

.socials a {
  display: grid;
  width: 22px;
  height: 22px;
  place-items: center;
  border: 1px solid #fff;
  border-radius: 50%;
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
  text-transform: lowercase;
}

.socials svg {
  width: 13px;
  height: 13px;
  fill: currentColor;
}

.store-buttons {
  display: flex;
  align-items: center;
  gap: 7px;
}

.store-buttons img {
  display: block;
  width: 88px;
  height: 34px;
  object-fit: contain;
}

.footer-grid {
  display: grid;
  width: min(865px, calc(100% - 48px));
  grid-template-columns: 1.1fr 1fr 1fr 1.18fr;
  gap: 54px;
  margin: 0 auto;
}

.footer-grid h3 {
  margin: 0 0 13px;
  color: #fff;
  font-family: Inter, Arial, sans-serif;
  font-size: 14px;
  font-weight: 800;
}

.footer-grid a,
.footer-grid p {
  display: block;
  margin: 0 0 9px;
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  line-height: 1.3;
  text-decoration: none;
}

.footer-contact {
  display: grid !important;
  grid-template-columns: 23px 1fr;
  gap: 10px;
  align-items: start;
  margin-bottom: 14px !important;
}

.footer-contact-icon {
  display: grid;
  width: 23px;
  height: 23px;
  place-items: center;
  border-radius: 50%;
  background: #fff;
  color: #000;
}

.footer-contact-icon svg {
  width: 12px;
  height: 12px;
  fill: currentColor;
}

.copyright {
  display: flex;
  min-height: 25px;
  align-items: center;
  justify-content: center;
  border-top: 1px solid #fff;
  background: #000;
  color: #fff;
  text-align: center;
}

.copyright p {
  margin: 0;
  color: #fff;
  font-size: 10px;
  font-weight: 700;
}

.copyright p {

  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  flex-wrap: nowrap;

}

.developer-logo {

  height: 45px;
  width: auto;
  display: block;

}

.copyright a {
  color: #fff;
}

.go-top {
  position: fixed;
  right: 24px;
  bottom: 84px;
  z-index: 70;
  display: none;
  width: 40px;
  height: 40px;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(90.91deg,
      rgb(109, 175, 82) 30.79%,
      rgb(39, 152, 208) 67.92%);
  color: white;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.18);
}

.go-top.show {
  display: grid;
}

@media (max-width: 1024px) {

  /* Mobile: show the hamburger and let CSS handle the menu animation. */
  .mobile-menu-btn {
    display: grid !important;
  }

  .main-nav {
    position: fixed;
    top: 78px;
    right: 0;
    left: 0;
    z-index: 80;
    display: flex;
    overflow-x: hidden;
    overflow-y: auto;
    max-height: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    border-radius: 0;
    background: #000;
    padding: 0 24px;
    opacity: 1;
    visibility: hidden;
    pointer-events: none;
    box-shadow: 0 20px 70px rgba(0, 0, 0, 0.14);
    transition:
      max-height 360ms ease,
      opacity 240ms ease,
      padding 360ms ease,
      visibility 0s linear 360ms;
  }

  /* Open state: expands smoothly from top to bottom. */
  .main-nav.open {
    max-height: calc(100vh - 78px);
    padding-top: 18px;
    padding-bottom: 18px;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transition:
      max-height 420ms ease,
      opacity 260ms ease,
      padding 420ms ease,
      visibility 0s;
  }

  .main-nav a {
    color: #fff;
    padding: 14px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
    transition: color 180ms ease, padding-left 180ms ease;
  }

  .main-nav a:hover {
    color: var(--green);
    padding-left: 8px;
  }

  .menu-caret {
    border-top-color: #fff;
  }

  .nav-icons {
    align-items: center;
    flex-wrap: wrap;
    margin: 16px 0 0;
  }

  .nav-icons .round-icon {
    border-bottom: 0;
    color: #050505 !important;
    padding: 0;
  }

  .header-actions {
    margin-left: auto;
  }

  .hero-arrow {
    top: auto;
    bottom: 28px;
    transform: none;
  }

  .section-split,
  .blending-wrap,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .stories-grid {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .stories-left {
    gap: 30px;
  }

  .story-tabs {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .tab-btn {
    width: 100%;
  }

  .stories-trust {
    min-height: auto;
    padding-top: 0;
  }

  .stories-trust::before {
    display: none;
  }

  .video-story,
  .story-thumb {
    width: 100%;
  }

  .customized-head {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .customized-title {
    padding-right: 0;
    border-right: 0;
  }

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

  .automation-strip {
    overflow-x: auto;
    width: auto;
    margin-left: 24px;
    padding-right: 24px;
    scrollbar-width: none;
  }

  .automation-strip::-webkit-scrollbar {
    display: none;
  }

  .explore-head {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .explore-title {
    min-height: auto;
    padding-right: 0;
    border-right: 0;
  }

  .product-range-slider {
    width: auto;
    margin-left: 24px;
    overflow: hidden;
  }

  .product-range-grid {
    padding-right: 24px;
    scrollbar-width: none;
  }

  .product-range-grid::-webkit-scrollbar {
    display: none;
  }

  .product-range-grid article {
    width: 172px;
    flex: 0 0 auto;
  }

  .questions-wrap {
    grid-template-columns: 1fr;
  }

  .contact-info-card::after {
    top: auto;
    right: 0;
    bottom: 0;
    left: 0;
    width: auto;
    height: 4px;
  }

  .contact-info-card,
  .contact-form {
    padding: 38px 32px;
  }

  .contact-watermark {
    right: 24px;
    top: 70px;
    width: 82px;
  }

  .blending-wrap {
    gap: 42px;
  }

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

@media (max-width: 700px) {
  .brand-lockup strong {
    font-size: 21px;
  }

  .brand-lockup small {
    max-width: 180px;
    font-size: 10px;
  }

  .hero-slider,
  .hero-slide img {
    min-height: 720px;
  }

  .hero-content {
    right: 24px;
    left: 24px;
  }

  .hero-copy {
    font-size: 16px;
  }

  .solution-row,
  .product-grid,
  .comfort-card-grid,
  .tab-panel,
  .contact-form,
  .checkbox-group {
    grid-template-columns: 1fr;
  }

  .comfort-card-wrap {
    width: min(100% - 32px, 420px);
  }

  .comfort-card {
    min-height: 0;
    padding: 22px 20px 20px;
  }

  .story-tabs,
  .video-stories,
  .testimonial-stories {
    grid-template-columns: 1fr;
  }

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

  .blending-sec {
    padding: 56px 0 68px;
  }

  .contact-form .full {
    grid-column: auto;
  }

  .footer-top,
  .copyright {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-inner {
    border-radius: 28px 28px 0 0;
  }

  .footer-top {
    align-items: flex-start;
  }

  .footer-brand-row {
    flex-wrap: wrap;
  }

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

  .copyright {
    align-items: center;
    padding: 8px 24px;
  }

}

@media (min-width: 350px) and (max-width: 433px) {

  .blending-wrap,
  .about-video-wrap {
    width: calc(100% - 32px);
  }

  .blending-wrap {
    gap: 32px;
  }

  .blending-info p {
    max-width: 100%;
  }

  .blending-info .flex {
    flex-wrap: wrap;
    gap: 16px;
  }

  .blending-info h1 {
    font-size: 20px;
    line-height: 1.2;
  }

  .stats-grid {
    width: 100%;
  }

  .stats-grid::before {
    right: 18px;
    left: 18px;
  }

  .stats-grid article {
    min-height: 142px;
    padding: 14px 8px;
  }

  .stats-grid strong {
    font-size: 22px;
  }
}


.nav-icons i {
  font-size: 18px;
  color: #000;
}


.search-container {
    display: flex;
    align-items: center;
    position: relative;
}

.search-input {
    width: 0;
    opacity: 0;

    height: 42px;
    padding: 0;

    border: none;
    outline: none;

    background: #fff;
    color: #333;

    border-radius: 30px;

    transition: all 0.35s ease;
}

.search-container.active .search-input {
    width: 250px;
    opacity: 1;

    padding: 0 18px;
    margin-right: 10px;

    border: 1px solid #ddd;
}

.search-btn {
    cursor: pointer;
    border: none;
    background: white;
}

.search-input::placeholder {
    color: #999;
}

.mobile-header-search {
  display: none;
}

.mobile-search-input {
  width: 0;
  height: 42px;
  border: 1px solid transparent;
  border-radius: 999px;
  background: #fff;
  color: #333;
  opacity: 0;
  outline: none;
  padding: 0;
  transition: width 0.35s ease, opacity 0.25s ease, padding 0.35s ease, border-color 0.35s ease;
}

.mobile-search-input::placeholder {
  color: #999;
}

.shop-category-card {
  position: relative;
}

.shop-products-scroll {
  min-width: 0;
}

.shop-products-sidebar {
  min-width: 0;
}

.product-category-btn.is-active {
  border-color: #99d81f;
  background: #050505;
  color: #fff;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.14);
}

.product-category-btn.is-active span:last-child {
  background: #99d81f;
  color: #050505;
}

@media (min-width: 1024px) {
  .shop-products-section {
    overflow: visible;
  }

  .shop-products-layout {
    align-items: start;
  }

  .shop-products-sidebar {
    align-self: start;
    position: sticky;
    top: 96px;
  }

  .shop-category-card {
    position: relative;
  }

  .shop-products-scroll {
    overflow: visible;
  }
}

@media (max-width: 1024px) {
  .main-nav .nav-icons {
    position: fixed;
    top: 17px;
    right: 88px;
    z-index: 90;
    display: flex;
    align-items: center;
    gap: 0;
    width: auto;
    margin: 0;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  .main-nav .nav-icons>a.round-icon {
    display: none !important;
  }

  .main-nav .search-container {
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
  }

  .main-nav .search-container.active .search-input {
    width: clamp(160px, 32vw, 250px);
    opacity: 1;
    padding: 0 18px;
    margin-right: 8px;
    border-color: #ddd;
  }

  .mobile-header-search {
    display: none;
  }
}

@media (max-width: 520px) {
  .header-wrap {
    width: calc(100% - 28px);
  }

  .header-wrap>a img {
    max-width: 128px;
    height: 40px;
    object-fit: contain;
  }

  .header-actions {
    gap: 8px;
    
  }

  .main-nav .nav-icons {
    top: 17px;
    right: 68px;
  }

  .main-nav .search-container.active .search-input {
    width: clamp(112px, 36vw, 168px);
    height: 40px;
    padding: 0 14px;
    margin-right: 7px;
    font-size: 12px;
  }

  .round-icon,
  .mobile-menu-btn {
    width: 40px;
    height: 40px;
  }
}
