/*============================

    Template Name: Phofix - Mobile Phone Repair Service Responsive HTML5 Template
    Template URL: https://www.templatemonster.com/landing-page-template/phofix-mobile-phone-repair-service-responsive-html5-template-343934.html
    Description: Phofix is a professional and responsive HTML5 template designed for mobile phone repair service businesses
    Author: Juragancode
    Author URL: #
    Version: 2.0

=============================

    CSS INDEX
    ===================
    01. Theme default CSS
    02. Header
    03. Hero Banner
    04. UPS
    05. Client
    06. Fix
    07. How it Work
    08. Repair
    09. Service
    10. Brand
    11. Why
    12. Feedback
    13. FAQ
    14. Blog
    15. Subscribe
    16. Footer
    --- v2.0 Upgrades ---
    17. Dark Mode
    18. Counter Stats
    19. Pricing Table
    20. Floaters (Back to Top + WhatsApp)

=============================*/
/*=============================
01. Theme default CSS
=============================*/
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600&family=Manrope:wght@500;600;700;800&display=swap");
body {
  font-family: "Inter", system-ui, -apple-system, sans-serif;
  font-weight: 400;
  color: var(--color-body, #475569);
  background-color: var(--color-bg, #F8FAFC);
  font-size: 16px;
  line-height: 1.55;
  font-style: normal;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

section {
  overflow-x: hidden;
  overflow-y: clip;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Manrope", "Inter", sans-serif;
  color: var(--color-heading);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

h1 {
  font-size: clamp(1.85rem, 1.2rem + 2.2vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.1;
}

h2 {
  font-size: clamp(1.5rem, 1.15rem + 1.4vw, 2.25rem);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.15;
}
@media (max-width: 768px) {
  h2 {
    font-size: 1.5rem;
  }
}

h3 {
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.2;
}

h5 {
  font-size: 1.0625rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  line-height: 1.25;
}

p {
  line-height: 1.55;
}

a {
  text-decoration: unset;
  color: var(--color-primary);
}

.btn {
  font-size: 14px;
  padding: 10px 22px;
  border-radius: 5px;
  font-weight: 500;
  color: #FFFFFF;
  display: inline-block;
}
.btn.btn-primary {
  background-color: var(--color-primary);
  border: 1px solid var(--color-primary);
}
.btn.btn-primary:hover {
  background-color: #FFFFFF;
  color: var(--color-primary);
  border: 1px solid var(--color-primary);
}
.btn.btn-rounded {
  background-color: var(--color-accent);
  border-radius: 50px;
}
.btn.btn-rounded:hover {
  background-color: #FFFFFF;
  color: var(--color-accent);
}

/*=============================
02. Header
=============================*/
header {
  width: 100%;
  z-index: 100;
  position: fixed;
  top: 0;
}
header .navbar {
  padding: 8px 0;
  background-color: #FFFFFF;
  -webkit-transition: all 0.6s ease;
  -moz-transition: all 0.6s ease;
  -ms-transition: all 0.6s ease;
  -o-transition: all 0.6s ease;
  transition: all 0.6s ease;
}
@media (min-width: 992px) {
  header .navbar {
    padding: 20px 0;
    background-color: transparent;
  }
}
header .navbar .navbar-brand {
  font-weight: 600;
  font-size: 24px;
  color: #040404;
  z-index: 1;
}
header .navbar .navbar-nav {
  width: 100%;
  height: 100vh;
  position: absolute;
  top: 0;
  left: 0;
  text-align: center;
  flex-direction: column;
  justify-content: center;
  gap: 10px;
  background-color: #FFFFFF;
  transition-property: transform;
  transition-timing-function: cubic-bezier(0.77, 0.2, 0.05, 1);
  transition-duration: 700ms;
  -webkit-transform: translateX(-100%);
  -ms-transform: translateX(-100%);
  transform: translateX(-100%);
}
@media (min-width: 992px) {
  header .navbar .navbar-nav {
    width: auto;
    height: auto;
    background-color: transparent;
    position: relative;
    flex-direction: row;
    gap: 25px;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
}
@media (min-width: 1200px) {
  header .navbar .navbar-nav {
    gap: 40px;
  }
}
header .navbar .navbar-nav .nav-item {
  opacity: 0;
  -webkit-transform: translateX(-2.5rem);
  -ms-transform: translateX(-2.5rem);
  transform: translateX(-2.5rem);
}
@media (min-width: 992px) {
  header .navbar .navbar-nav .nav-item {
    opacity: 100;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
}
header .navbar .navbar-nav .nav-item:nth-child(1) {
  -webkit-transition: all 0.35s ease 200ms;
  -moz-transition: all 0.35s ease 200ms;
  -ms-transition: all 0.35s ease 200ms;
  -o-transition: all 0.35s ease 200ms;
  transition: all 0.35s ease 200ms;
}
header .navbar .navbar-nav .nav-item:nth-child(2) {
  -webkit-transition: all 0.35s ease 350ms;
  -moz-transition: all 0.35s ease 350ms;
  -ms-transition: all 0.35s ease 350ms;
  -o-transition: all 0.35s ease 350ms;
  transition: all 0.35s ease 350ms;
}
header .navbar .navbar-nav .nav-item:nth-child(3) {
  -webkit-transition: all 0.35s ease 500ms;
  -moz-transition: all 0.35s ease 500ms;
  -ms-transition: all 0.35s ease 500ms;
  -o-transition: all 0.35s ease 500ms;
  transition: all 0.35s ease 500ms;
}
header .navbar .navbar-nav .nav-item:nth-child(4) {
  -webkit-transition: all 0.35s ease 650ms;
  -moz-transition: all 0.35s ease 650ms;
  -ms-transition: all 0.35s ease 650ms;
  -o-transition: all 0.35s ease 650ms;
  transition: all 0.35s ease 650ms;
}
header .navbar .navbar-nav .nav-item:nth-child(5) {
  -webkit-transition: all 0.35s ease 800ms;
  -moz-transition: all 0.35s ease 800ms;
  -ms-transition: all 0.35s ease 800ms;
  -o-transition: all 0.35s ease 800ms;
  transition: all 0.35s ease 800ms;
}
header .navbar .navbar-nav .nav-item:nth-child(6) {
  -webkit-transition: all 0.35s ease 950ms;
  -moz-transition: all 0.35s ease 950ms;
  -ms-transition: all 0.35s ease 950ms;
  -o-transition: all 0.35s ease 950ms;
  transition: all 0.35s ease 950ms;
}
header .navbar .navbar-nav .nav-item:nth-child(7) {
  -webkit-transition: all 0.35s ease 1100ms;
  -moz-transition: all 0.35s ease 1100ms;
  -ms-transition: all 0.35s ease 1100ms;
  -o-transition: all 0.35s ease 1100ms;
  transition: all 0.35s ease 1100ms;
}
header .navbar .navbar-nav .nav-item:nth-child(8) {
  -webkit-transition: all 0.35s ease 1250ms;
  -moz-transition: all 0.35s ease 1250ms;
  -ms-transition: all 0.35s ease 1250ms;
  -o-transition: all 0.35s ease 1250ms;
  transition: all 0.35s ease 1250ms;
}
header .navbar .navbar-nav .nav-item a {
  color: #040404;
  -webkit-transition: all 0.35s ease;
  -moz-transition: all 0.35s ease;
  -ms-transition: all 0.35s ease;
  -o-transition: all 0.35s ease;
  transition: all 0.35s ease;
}
header .navbar .navbar-nav .nav-item a:hover {
  color: var(--color-primary);
}
header .navbar .navbar-nav .nav-item a.btn {
  font-size: 14px;
  padding: 10px 25px;
  font-weight: 400;
  color: #FFFFFF;
}
header .navbar .navbar-nav .nav-item a.btn:hover {
  color: var(--color-primary);
}
header .navbar .navbar-nav.show {
  -webkit-transform: translateX(0);
  -ms-transform: translateX(0);
  transform: translateX(0);
}
header .navbar .navbar-nav.show .nav-item {
  opacity: 100;
  -webkit-transform: translateX(0);
  -ms-transform: translateX(0);
  transform: translateX(0);
}
header .navbar .burger-icon {
  margin-left: 20px;
  width: 35px;
  height: 25px;
  position: relative;
  float: right;
  -webkit-transform: rotate(0deg);
  -ms-transform: rotate(0deg);
  transform: rotate(0deg);
  transform: rotate(0deg);
  cursor: pointer;
}
header .navbar .burger-icon span {
  display: block;
  position: absolute;
  width: 100%;
  border-bottom: 2px solid #444444;
  opacity: 1;
  left: 0;
  -webkit-transform: rotate(0deg);
  -ms-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: 0.25s ease-in-out;
  -moz-transition: 0.25s ease-in-out;
  -o-transition: 0.25s ease-in-out;
  transition: 0.25s ease-in-out;
}
header .navbar .burger-icon span:nth-child(1) {
  top: 0px;
}
header .navbar .burger-icon span:nth-child(2), header .navbar .burger-icon span:nth-child(3) {
  top: 11px;
}
header .navbar .burger-icon span:nth-child(4) {
  top: 22px;
}
header .navbar .burger-icon.show span:nth-child(1), header .navbar .burger-icon.show span:nth-child(4) {
  top: 11px;
  width: 0%;
  left: 50%;
}
header .navbar .burger-icon.show span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}
header .navbar .burger-icon.show span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
header .navbar.on-scroll {
  padding: 12px 0;
  backdrop-filter: blur(5px);
  background-color: rgba(255, 255, 255, 0.85);
  box-shadow: 0px -5px 18px 0px rgba(var(--color-primary-rgb), 0.2);
  -webkit-box-shadow: 0px -5px 18px 0px rgba(var(--color-primary-rgb), 0.2);
  -moz-box-shadow: 0px -5px 18px 0px rgba(var(--color-primary-rgb), 0.2);
}

/*=============================
03. Hero Banner
=============================*/
.hero-banner {
  background-image: url("../img/bg-hero-banner.jpg");
  background-size: cover;
  background-repeat: no-repeat;
}
@media (max-width: 768px) {
  .hero-banner {
    padding-top: 68px;
  }
}
.hero-banner .row {
  height: 75vh;
}
@media (min-width: 992px) {
  .hero-banner .row {
    height: 100vh;
  }
}
@media (max-width: 768px) {
  .hero-banner .row {
    height: 100vh;
  }
}
.hero-banner h1 {
  font-size: 32px;
}
@media (min-width: 992px) {
  .hero-banner h1 {
    font-size: 54px;
  }
}
@media (max-width: 768px) {
  .hero-banner h1 {
    font-size: 28px;
  }
}
.hero-banner p {
  margin: 0;
}
.hero-banner img {
  width: 100%;
  position: relative;
}

/*=============================
04. UPS
=============================*/
.ups {
  position: relative;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}
@media (max-width: 768px) {
  .ups {
    display: none;
  }
}
.ups .card {
  padding: 35px 15px;
  border: none;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  box-shadow: 0px 10px 16px -22px var(--color-primary);
  -webkit-box-shadow: 0px 10px 16px -22px var(--color-primary);
  -moz-box-shadow: 0px 10px 16px -22px var(--color-primary);
}
.ups .card-item {
  text-align: center;
  font-size: 15px;
}
.ups .card-item i {
  margin-right: 10px;
}
.ups .card-item:nth-child(1) {
  color: var(--color-primary);
}
.ups .card-item:nth-child(2) {
  color: var(--color-accent);
}
.ups .card-item:nth-child(3) {
  color: #03C12D;
}

/*=============================
05. Client
=============================*/
.client {
  padding-bottom: 5rem;
}
@media (max-width: 768px) {
  .client {
    padding-bottom: 3rem;
  }
}
.client-overlay {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 40px 0;
}
@media (max-width: 768px) {
  .client-overlay {
    padding: 0;
    animation: ticker-kf 10s linear infinite;
  }
}
.client-item img {
  width: 100px;
  -webkit-transition: all 0.35s ease;
  -moz-transition: all 0.35s ease;
  -ms-transition: all 0.35s ease;
  -o-transition: all 0.35s ease;
  transition: all 0.35s ease;
}
.client-item.copy-set {
  display: none;
}
@media (max-width: 768px) {
  .client-item.copy-set {
    display: block;
  }
}
.client-item:hover img {
  scale: 1.1;
}
.client .quick-button {
  margin-top: 2rem;
}
.client .quick-button .consult-button,
.client .quick-button .request-button {
  border: unset;
  color: #FFFFFF;
  padding: 15px;
  width: 100%;
  position: relative;
  overflow: hidden;
}
@media (max-width: 768px) {
  .client .quick-button .consult-button,
  .client .quick-button .request-button {
    font-size: 13px;
    padding: 15px 10px;
  }
}
.client .quick-button .consult-button:before,
.client .quick-button .request-button:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: all 0.35s ease;
  z-index: 0;
}
.client .quick-button .consult-button:hover:before,
.client .quick-button .request-button:hover:before {
  opacity: 1;
}
.client .quick-button .consult-button i,
.client .quick-button .request-button i {
  margin-right: 15px;
  font-size: 25px;
}
@media (max-width: 768px) {
  .client .quick-button .consult-button i,
  .client .quick-button .request-button i {
    font-size: 18px;
    margin-right: 10px;
  }
}
.client .quick-button .consult-button span,
.client .quick-button .request-button span {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 10;
}
.client .quick-button .consult-button {
  background: linear-gradient(93.19deg, var(--color-primary) 33.85%, var(--color-primary-light) 86.15%);
  border-radius: 25px 5px 5px 5px;
}
.client .quick-button .consult-button:before {
  background: linear-gradient(93.19deg, var(--color-primary-light) 33.85%, var(--color-primary) 86.15%);
}
.client .quick-button .request-button {
  background: linear-gradient(95.82deg, var(--color-accent) 45.38%, #F7C984 82.77%);
  border-radius: 5px 5px 25px 5px;
}
.client .quick-button .request-button:before {
  background: linear-gradient(95.82deg, #F7C984 45.38%, var(--color-accent) 82.77%);
}

@keyframes ticker-kf {
  0% {
    transform: translate3d(0, 0, 0);
  }
  100% {
    transform: translate3d(-700px, 0, 0);
  }
}
/*=============================
06. Fix
=============================*/
.fix {
  padding: 5rem 0;
  background-color: var(--color-bg-alt);
  background-image: url("../img/bg-why.png");
  background-position: right top;
  background-size: 500px;
  background-repeat: no-repeat;
}
@media (max-width: 768px) {
  .fix {
    padding: 3rem 0;
  }
}
.fix p {
  margin: 0;
}
.fix-item {
  padding: 40px 20px;
  background-color: #FFFFFF;
  text-align: center;
  -webkit-transition: all 0.45s ease;
  -moz-transition: all 0.45s ease;
  -ms-transition: all 0.45s ease;
  -o-transition: all 0.45s ease;
  transition: all 0.45s ease;
}
.fix-item span {
  display: block;
  color: var(--color-heading);
  font-weight: 500;
  margin-bottom: 5px;
}
.fix-item:hover {
  box-shadow: 2px 22px 53px -26px rgba(0, 0, 0, 0.47);
  -webkit-box-shadow: 2px 22px 53px -26px rgba(0, 0, 0, 0.47);
  -moz-box-shadow: 2px 22px 53px -26px rgba(0, 0, 0, 0.47);
}
.fix-item p {
  font-size: 14px;
}
.fix-img {
  height: 50px;
  display: block;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 20px;
}

/*=============================
07. How it Work
=============================*/
.how-it-work {
  padding: 5rem 0;
}
@media (max-width: 768px) {
  .how-it-work {
    padding: 3rem 0;
  }
}
.how-it-work p {
  margin: 0;
}
.how-it-work figure {
  margin: auto;
  width: 100%;
}
@media (max-width: 575px) {
  .how-it-work figure {
    width: 80%;
  }
}
@media (min-width: 600px) {
  .how-it-work figure {
    width: 400px;
  }
}
@media (min-width: 1200px) {
  .how-it-work figure {
    width: 400px;
  }
}
.how-it-work__list {
  margin-top: 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}
@media (max-width: 575px) {
  .how-it-work__list {
    grid-template-columns: 1fr;
  }
}
.how-it-work__item h6 span {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background-color: var(--color-primary);
  color: #FFFFFF;
  font-size: 14px;
  margin-right: 5px;
}
.how-it-work__item p {
  font-size: 14px;
}

/*=============================
08. Repair
=============================*/
.repair {
  padding: 5rem 0;
}
@media (max-width: 768px) {
  .repair {
    padding: 3rem 0;
  }
}
.repair .icon {
  background-color: var(--color-primary);
  color: #FFFFFF;
  width: 50px;
  height: 50px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
}
.repair h2 {
  margin: 20px 0;
}
.repair p {
  margin-bottom: 30px;
}
.repair figure {
  margin: auto;
  width: 80%;
}
@media (min-width: 992px) {
  .repair figure {
    width: 500px;
  }
}

/*=============================
09. Services
=============================*/
.services {
  padding: 5rem 0;
}
@media (max-width: 768px) {
  .services {
    padding: 3rem 0;
  }
}
.services .swiper {
  overflow: unset;
}
.services .swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
}
.services .swiper .swiper-button-next,
.services .swiper .swiper-button-prev {
  background-color: #FFFFFF;
  color: var(--color-primary);
  border-radius: 50%;
  width: 35px;
  height: 35px;
  box-shadow: 0px 0px 17px 6px rgba(var(--color-primary-rgb), 0.2);
  -webkit-box-shadow: 0px 0px 17px 6px rgba(var(--color-primary-rgb), 0.2);
  -moz-box-shadow: 0px 0px 17px 6px rgba(var(--color-primary-rgb), 0.2);
  -webkit-transition: all 0.35s ease;
  -moz-transition: all 0.35s ease;
  -ms-transition: all 0.35s ease;
  -o-transition: all 0.35s ease;
  transition: all 0.35s ease;
}
@media (max-width: 768px) {
  .services .swiper .swiper-button-next,
  .services .swiper .swiper-button-prev {
    width: 25px;
    height: 25px;
  }
}
.services .swiper .swiper-button-next.swiper-button-disabled,
.services .swiper .swiper-button-prev.swiper-button-disabled {
  opacity: 0;
}
.services .swiper .swiper-button-next:after,
.services .swiper .swiper-button-prev:after {
  font-size: 12px;
}
.services .swiper .swiper-button-next:hover,
.services .swiper .swiper-button-prev:hover {
  background-color: var(--color-primary);
  color: #FFFFFF;
}
.services .swiper .swiper-button-next {
  right: -15px;
}
@media (max-width: 768px) {
  .services .swiper .swiper-button-next {
    right: 5px;
  }
}
.services .swiper .swiper-button-prev {
  left: -15px;
}
@media (max-width: 768px) {
  .services .swiper .swiper-button-prev {
    left: 5px;
  }
}
.services-item {
  aspect-ratio: 12/9;
  padding: 30px 20px;
  text-align: center;
  border-radius: 5px;
  font-weight: 500;
  font-size: 14px;
  color: var(--color-heading);
  box-shadow: 0px 6px 75px -55px var(--color-primary);
  -webkit-box-shadow: 0px 6px 75px -55px var(--color-primary);
  -moz-box-shadow: 0px 6px 75px -55px var(--color-primary);
  -webkit-transition: all 0.35s ease;
  -moz-transition: all 0.35s ease;
  -ms-transition: all 0.35s ease;
  -o-transition: all 0.35s ease;
  transition: all 0.35s ease;
}
.services-img {
  display: block;
  margin-left: auto;
  margin-right: auto;
  width: 40%;
  margin-bottom: 20px;
}

/*=============================
10. Brand
=============================*/
.brand {
  padding: 5rem 0;
}
@media (max-width: 768px) {
  .brand {
    padding: 3rem 0;
  }
}
.brand .swiper {
  overflow: unset;
  margin-top: 3rem;
}
@media (max-width: 768px) {
  .brand .swiper {
    margin-top: 1rem;
  }
}
.brand .swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
}
.brand .swiper .swiper-button-next,
.brand .swiper .swiper-button-prev {
  background-color: #FFFFFF;
  color: var(--color-primary);
  border-radius: 50%;
  width: 35px;
  height: 35px;
  box-shadow: 0px 0px 17px 6px rgba(var(--color-primary-rgb), 0.2);
  -webkit-box-shadow: 0px 0px 17px 6px rgba(var(--color-primary-rgb), 0.2);
  -moz-box-shadow: 0px 0px 17px 6px rgba(var(--color-primary-rgb), 0.2);
  -webkit-transition: all 0.35s ease;
  -moz-transition: all 0.35s ease;
  -ms-transition: all 0.35s ease;
  -o-transition: all 0.35s ease;
  transition: all 0.35s ease;
}
@media (max-width: 768px) {
  .brand .swiper .swiper-button-next,
  .brand .swiper .swiper-button-prev {
    top: 57%;
    width: 25px;
    height: 25px;
  }
}
.brand .swiper .swiper-button-next.swiper-button-disabled,
.brand .swiper .swiper-button-prev.swiper-button-disabled {
  opacity: 0;
}
.brand .swiper .swiper-button-next:after,
.brand .swiper .swiper-button-prev:after {
  font-size: 12px;
}
.brand .swiper .swiper-button-next:hover,
.brand .swiper .swiper-button-prev:hover {
  background-color: var(--color-primary);
  color: #FFFFFF;
}
.brand .swiper .swiper-button-next {
  right: -15px;
}
@media (max-width: 768px) {
  .brand .swiper .swiper-button-next {
    right: 5px;
  }
}
.brand .swiper .swiper-button-prev {
  left: -15px;
}
@media (max-width: 768px) {
  .brand .swiper .swiper-button-prev {
    left: 5px;
  }
}
.brand-item {
  display: flex;
  align-items: center;
  aspect-ratio: 1/1;
  padding: 20px;
  text-align: center;
  border-radius: 5px;
  font-weight: 500;
  font-size: 14px;
  color: var(--color-heading);
  box-shadow: 0px 6px 75px -55px var(--color-primary);
  -webkit-box-shadow: 0px 6px 75px -55px var(--color-primary);
  -moz-box-shadow: 0px 6px 75px -55px var(--color-primary);
}
.brand-item img {
  display: block;
  margin-left: auto;
  margin-right: auto;
  width: 80%;
}

/*=============================
11. Why
=============================*/
.why {
  padding: 5rem 0;
  background-color: var(--color-bg-alt);
}
@media (max-width: 768px) {
  .why {
    padding: 3rem 0;
  }
}
.why .card {
  padding: 30px 25px;
  border-radius: 10px;
  border: unset;
  background-color: #FFFFFF;
  border: 2px solid #FFFFFF;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.why .card .icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  color: #FFFFFF;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 20px;
  -webkit-transition: all 0.35s ease;
  -moz-transition: all 0.35s ease;
  -ms-transition: all 0.35s ease;
  -o-transition: all 0.35s ease;
  transition: all 0.35s ease;
}
.why .card h5 {
  margin-bottom: 10px;
}
.why .card p {
  color: #5C5A6F;
  font-size: 14px;
  margin-bottom: 0;
}
.why .card.soft-blue .icon {
  background-color: var(--color-primary);
}
.why .card.soft-blue h5 {
  color: var(--color-primary);
}
.why .card.blue .icon {
  background-color: var(--color-primary-light);
}
.why .card.blue h5 {
  color: var(--color-primary);
}
.why .card.yellow .icon {
  background-color: var(--color-accent);
}
.why .card.yellow h5 {
  color: var(--color-accent);
}
.why .card.green .icon {
  background-color: var(--color-success);
}
.why .card.green h5 {
  color: var(--color-success);
}
.why .card.dark-blue .icon {
  background-color: var(--color-primary-dark, var(--color-primary-dark));
}
.why .card.dark-blue h5 {
  color: var(--color-primary-dark, var(--color-primary-dark));
}
.why .card:hover {
  border: 2px solid rgba(189, 188, 250, 0.3);
  box-shadow: 0px 15px 30px 0px rgba(var(--color-primary-rgb), 0.1);
  -webkit-box-shadow: 0px 15px 30px 0px rgba(var(--color-primary-rgb), 0.1);
  -moz-box-shadow: 0px 15px 30px 0px rgba(var(--color-primary-rgb), 0.1);
}
.why .card:hover .icon {
  box-shadow: 0px 0px 14px 0px rgba(var(--color-primary-rgb), 0.45);
  -webkit-box-shadow: 0px 0px 14px 0px rgba(var(--color-primary-rgb), 0.45);
  -moz-box-shadow: 0px 0px 14px 0px rgba(var(--color-primary-rgb), 0.45);
}

/*=============================
12. Feedback
=============================*/
.feedback {
  padding: 5rem 0;
}
@media (max-width: 768px) {
  .feedback {
    padding: 3rem 0;
  }
}
.feedback-header {
  display: flex;
  justify-content: space-between;
}
.feedback-header .navigate-button {
  display: flex;
  gap: 10px;
}
.feedback-header .navigate-button .swiper-button-next,
.feedback-header .navigate-button .swiper-button-prev {
  position: relative;
  left: unset;
  right: unset;
  color: #040404;
  font-size: 22px;
}
.feedback-header .navigate-button .swiper-button-next:after,
.feedback-header .navigate-button .swiper-button-prev:after {
  display: none;
}
.feedback .swiper-wrapper {
  padding: 40px 0;
}
.feedback .swiper-wrapper img {
  width: 50px;
  height: 50px;
}
.feedback-item {
  padding: 30px 25px;
  border-radius: 10px;
  box-shadow: 0px 10px 60px 0px rgba(96, 98, 146, 0.1);
  -webkit-box-shadow: 0px 10px 60px 0px rgba(96, 98, 146, 0.1);
  -moz-box-shadow: 0px 10px 60px 0px rgba(96, 98, 146, 0.1);
}
.feedback-item-header {
  display: flex;
  justify-content: left;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
}
.feedback-item-header .rating {
  color: var(--color-accent);
}
.feedback-item-body {
  padding-right: 150px;
}
@media (max-width: 768px) {
  .feedback-item-body {
    padding: 0;
  }
}
.feedback-item-body p {
  font-size: 14px;
  color: #040404;
}
.feedback-item-footer h6 {
  font-weight: 500;
  margin-bottom: 0px;
}
.feedback-item-footer span {
  font-size: 13px;
}

/*=============================
15. FAQ
=============================*/
.faq {
  padding-bottom: 5rem;
}
.faq-banner {
  margin: auto;
  width: 100%;
}
@media (max-width: 768px) {
  .faq-banner {
    width: 80%;
  }
}
.faq .accordion-faq {
  gap: 10px;
  display: flex;
  flex-direction: column;
}
.faq .accordion-faq .accordion-item {
  border-radius: 5px;
  border: 1px solid #E7E7E7;
  overflow: hidden;
}
.faq .accordion-faq .accordion-item .accordion-button {
  box-shadow: unset;
  font-size: 14px;
  font-weight: 500;
  padding: 20px 25px;
  background-color: #FFFFFF;
  color: #040404;
}
.faq .accordion-faq .accordion-item .accordion-button:after {
  background-size: 15px;
  width: 15px;
  height: 15px;
}
.faq .accordion-faq .accordion-item .accordion-body {
  font-size: 14px;
  padding: 0 25px 20px 25px;
}

/*=============================
15. FAQ
=============================*/
.blog-card figure {
  overflow: hidden;
  aspect-ratio: 16/10;
  margin: 0;
}
.blog-card figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  -webkit-transition: all 0.35s ease;
  -moz-transition: all 0.35s ease;
  -ms-transition: all 0.35s ease;
  -o-transition: all 0.35s ease;
  transition: all 0.35s ease;
}
.blog-card__body {
  margin-top: 10px;
}
.blog-card__body .release-date {
  display: block;
  color: #5C5A6F;
  font-size: 14px;
  margin-bottom: 5px;
}
.blog-card__body h3 {
  font-size: 20px;
  margin-bottom: 15px;
}
.blog-card__body p {
  color: #5C5A6F;
  margin: 0;
}
.blog-card:hover figure img {
  scale: 1.1;
}

/*=============================
15. Subscribe
=============================*/
.subscribe {
  position: relative;
  bottom: -6rem;
}
.subscribe .card {
  position: relative;
  display: block;
  padding: 50px;
  border: 0;
  border-radius: 15px;
  background: linear-gradient(92deg, #0e1529 0%, #0170FD 100%);
  color: #FFFFFF;
  padding-right: 30%;
  z-index: 1;
}
@media (max-width: 768px) {
  .subscribe .card {
    padding: 35px;
  }
}
.subscribe .card:after {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("../img/bg-subscribe.png");
  background-position: top right;
  background-size: contain;
  background-repeat: no-repeat;
  z-index: -1;
}
@media (max-width: 768px) {
  .subscribe .card:after {
    background-size: 200px;
  }
}
.subscribe .card h2 {
  color: #FFFFFF;
  margin-bottom: 20px;
}
.subscribe .card p {
  font-size: 14px;
  margin-bottom: 20px;
}

/*=============================
16. Footer
=============================*/
.footer {
  background-color: var(--color-footer-bg);
  padding-top: 9rem;
}
.footer h3 {
  color: #FFFFFF;
  font-weight: 600;
  font-size: 20px;
  margin-bottom: 20px;
}
.footer .contact {
  margin-bottom: 10px;
}
.footer .contact span {
  font-size: 14px;
  display: block;
  color: #7884A6;
  margin-bottom: 5px;
}
.footer .contact span a {
  color: #7884A6;
  -webkit-transition: all 0.35s ease;
  -moz-transition: all 0.35s ease;
  -ms-transition: all 0.35s ease;
  -o-transition: all 0.35s ease;
  transition: all 0.35s ease;
}
.footer .contact span a:hover {
  color: #FFFFFF;
}
.footer .social-media {
  display: flex;
  gap: 25px;
}
.footer .social-media a {
  color: #C4C4C4;
  -webkit-transition: all 0.35s ease;
  -moz-transition: all 0.35s ease;
  -ms-transition: all 0.35s ease;
  -o-transition: all 0.35s ease;
  transition: all 0.35s ease;
}
.footer .social-media a:hover {
  color: #FFFFFF;
}
.footer .menu-title {
  color: #FFFFFF;
  font-size: 14px;
  font-weight: 400;
  margin-bottom: 20px;
}
.footer .list-menu {
  display: flex;
  justify-content: space-between;
}
@media (max-width: 575px) {
  .footer .list-menu {
    display: block;
  }
}
.footer .list-menu .footer-menu {
  padding-left: 0;
  padding-bottom: 10px;
  list-style-type: none;
}
.footer .list-menu .footer-menu li a {
  display: block;
  font-size: 14px;
  color: #7884A6;
  margin-bottom: 10px;
  -webkit-transition: all 0.35s ease;
  -moz-transition: all 0.35s ease;
  -ms-transition: all 0.35s ease;
  -o-transition: all 0.35s ease;
  transition: all 0.35s ease;
}
.footer .list-menu .footer-menu li a:hover {
  color: #FFFFFF;
}
.footer .copy-right {
  padding: 10px 0;
  text-align: center;
  background-color: #111827;
  color: #FFFFFF;
  font-size: 13px;
}

:root {
  /* Light — 3 colors: white · navy · blue accent */
  --color-ink: #0e1529;
  --color-primary: #0170FD;
  --color-primary-light: #3d8fff;
  --color-primary-dark: #0156c7;
  --color-primary-rgb: 1, 112, 253;
  --color-accent: #0170FD;
  --color-accent-soft: #3d8fff;
  --color-success: #10B981;
  --color-heading: #0e1529;
  --color-body: rgba(14, 21, 41, 0.72);
  --color-bg: #ffffff;
  --color-bg-alt: #f3f5f9;
  --color-card: #ffffff;
  --color-border: #e4e8f0;
  --color-navbar-bg: rgba(255, 255, 255, 0.94);
  --color-footer-bg: #ffffff;
  --color-hero: #ffffff;
  --color-hero-tile: #eef1f6;
  --shadow-card: 0 10px 32px -16px rgba(14, 21, 41, 0.18);
  --shadow-primary: 0 12px 28px -12px rgba(1, 112, 253, 0.45);
}

[data-theme=dark] {
  --color-primary: #0170FD;
  --color-primary-light: #3d8fff;
  --color-primary-dark: #0156c7;
  --color-primary-rgb: 1, 112, 253;
  --color-accent: #0170FD;
  --color-heading: #ffffff;
  --color-body: rgba(255, 255, 255, 0.72);
  --color-bg: #0e1529;
  --color-bg-alt: #121a36;
  --color-card: #151d38;
  --color-border: rgba(255, 255, 255, 0.12);
  --color-navbar-bg: rgba(14, 21, 41, 0.94);
  --color-footer-bg: #0a1020;
  --color-hero: #0e1529;
  --color-hero-tile: #151d38;
  --shadow-card: 0 10px 32px -14px rgba(0, 0, 0, 0.55);
  --shadow-primary: 0 12px 28px -12px rgba(1, 112, 253, 0.45);
}
[data-theme=dark] body {
  background-color: var(--color-bg);
  color: var(--color-body);
}
[data-theme=dark] h1, [data-theme=dark] h2, [data-theme=dark] h3, [data-theme=dark] h4, [data-theme=dark] h5, [data-theme=dark] h6 {
  color: var(--color-heading);
}
[data-theme=dark] header .navbar {
  background-color: var(--color-bg);
}
@media (min-width: 992px) {
  [data-theme=dark] header .navbar {
    background-color: transparent;
  }
}
[data-theme=dark] header .navbar.on-scroll {
  background-color: var(--color-navbar-bg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
[data-theme=dark] header .navbar .navbar-brand {
  color: var(--color-heading);
}
[data-theme=dark] header .navbar .navbar-nav {
  background-color: var(--color-bg);
}
@media (min-width: 992px) {
  [data-theme=dark] header .navbar .navbar-nav {
    background-color: transparent;
  }
}
[data-theme=dark] header .navbar .navbar-nav .nav-item a {
  color: var(--color-body);
}
[data-theme=dark] header .navbar .burger-icon span {
  border-bottom-color: #a8a6c0;
}
[data-theme=dark] .hero-banner {
  background-image: linear-gradient(135deg, #0e1529 0%, #111827 55%, color-mix(in srgb, var(--color-primary) 13%, transparent) 100%);
}
[data-theme=dark] .ups .card {
  background-color: var(--color-card);
  box-shadow: var(--shadow-card);
}
[data-theme=dark] .fix {
  background-color: var(--color-bg-alt);
}
[data-theme=dark] .fix .fix-item {
  background-color: var(--color-card);
  border: 1px solid var(--color-border);
}
[data-theme=dark] .fix .fix-item span {
  color: var(--color-heading);
}
[data-theme=dark] .services-item {
  background-color: var(--color-card);
  box-shadow: var(--shadow-card);
  color: var(--color-heading);
}
[data-theme=dark] .brand-item {
  background-color: var(--color-card);
  box-shadow: var(--shadow-card);
}
[data-theme=dark] .why {
  background-color: var(--color-bg-alt);
}
[data-theme=dark] .why .card {
  background-color: var(--color-card);
  border-color: var(--color-border) !important;
}
[data-theme=dark] .why .card p {
  color: var(--color-body);
}
[data-theme=dark] .feedback-item {
  background-color: var(--color-card);
  box-shadow: var(--shadow-card);
}
[data-theme=dark] .feedback-item .feedback-item-body p {
  color: var(--color-body);
}
[data-theme=dark] .faq .accordion-item {
  border-color: var(--color-border);
  background-color: var(--color-card);
}
[data-theme=dark] .faq .accordion-button {
  background-color: var(--color-card) !important;
  color: var(--color-heading) !important;
}
[data-theme=dark] .faq .accordion-collapse {
  background-color: var(--color-card);
}
[data-theme=dark] .faq .accordion-body {
  color: var(--color-body);
}
[data-theme=dark] .blog {
  background-color: var(--color-bg);
}
[data-theme=dark] .blog .blog-card__body .release-date,
[data-theme=dark] .blog .blog-card__body p {
  color: var(--color-body);
}
[data-theme=dark] .blog .blog-card__body h3 {
  color: var(--color-heading);
}
[data-theme=dark] .counter-stats {
  background: linear-gradient(135deg, #2a297a 0%, #3a39a0 50%, #1a3a6a 100%);
}
[data-theme=dark] .pricing {
  background-color: var(--color-bg);
}
[data-theme=dark] .pricing-card {
  background-color: var(--color-card);
  border-color: var(--color-border);
}
[data-theme=dark] .pricing-card.featured {
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-light) 100%);
  border-color: var(--color-primary);
}
[data-theme=dark] .pricing-tab-btn {
  border-color: var(--color-border);
  color: var(--color-body);
}

header .navbar .navbar-right-controls {
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 1;
  flex-shrink: 0;
}

.dark-mode-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  border: 2px solid var(--color-border, #E7E7E7);
  background: transparent;
  cursor: pointer;
  font-size: 17px;
  -webkit-transition: all 0.35s ease;
  -moz-transition: all 0.35s ease;
  -ms-transition: all 0.35s ease;
  -o-transition: all 0.35s ease;
  transition: all 0.35s ease;
  color: #040404;
  line-height: 1;
  flex-shrink: 0;
}
.dark-mode-toggle:hover {
  background-color: var(--color-primary);
  border-color: var(--color-primary);
  color: white;
  -webkit-transform: rotate(20deg);
  -ms-transform: rotate(20deg);
  transform: rotate(20deg);
}
.dark-mode-toggle .icon-sun {
  display: none;
}
.dark-mode-toggle .icon-moon {
  display: block;
}
[data-theme=dark] .dark-mode-toggle {
  border-color: #2e2c45;
  color: #e8e6ff;
}
[data-theme=dark] .dark-mode-toggle .icon-sun {
  display: block;
}
[data-theme=dark] .dark-mode-toggle .icon-moon {
  display: none;
}

header .navbar .navbar-nav .nav-item a.nav-link.is-active {
  color: var(--color-primary) !important;
  font-weight: 500;
}

.counter-stats {
  padding: 5rem 0;
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-light) 100%);
  position: relative;
  overflow: hidden;
}
@media (max-width: 768px) {
  .counter-stats {
    padding: 3rem 0;
  }
}
.counter-stats::before, .counter-stats::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}
.counter-stats::before {
  top: -50%;
  left: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.08) 0%, transparent 70%);
}
.counter-stats::after {
  bottom: -30%;
  right: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.06) 0%, transparent 70%);
}
.counter-stats .container {
  position: relative;
  z-index: 1;
}

.counter-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}
@media (max-width: 768px) {
  .counter-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
}
@media (max-width: 400px) {
  .counter-grid {
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
  }
}

.counter-item {
  padding: 1.5rem 1rem;
  -webkit-border-radius: 12px;
  -moz-border-radius: 12px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  -webkit-transition: all 0.35s ease;
  -moz-transition: all 0.35s ease;
  -ms-transition: all 0.35s ease;
  -o-transition: all 0.35s ease;
  transition: all 0.35s ease;
}
.counter-item:hover {
  -webkit-transform: translateY(-6px);
  -ms-transform: translateY(-6px);
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}
.counter-item .counter-icon {
  font-size: 2rem;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 0.75rem;
}

.counter-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: #ffffff;
  line-height: 1;
  font-family: "Inter", sans-serif;
  display: block;
  margin-bottom: 0.25rem;
}
@media (max-width: 768px) {
  .counter-number {
    font-size: 1.8rem;
  }
}

.counter-suffix {
  font-size: 1.5rem;
  font-weight: 700;
  color: #ffffff;
}

.counter-label {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.8);
  margin-top: 0.25rem;
  display: block;
  font-weight: 400;
}

.pricing {
  padding: 5rem 0;
  background-color: var(--color-bg, #fff);
}
@media (max-width: 768px) {
  .pricing {
    padding: 3rem 0;
  }
}

.pricing-tabs {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin: 2rem 0 3rem;
}

.pricing-tab-btn {
  padding: 8px 22px;
  border-radius: 50px;
  border: 2px solid var(--color-border, #E7E7E7);
  background: transparent;
  color: var(--color-body, #5C5A6F);
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  -webkit-transition: all 0.35s ease;
  -moz-transition: all 0.35s ease;
  -ms-transition: all 0.35s ease;
  -o-transition: all 0.35s ease;
  transition: all 0.35s ease;
  font-family: "Inter", sans-serif;
}
.pricing-tab-btn:hover, .pricing-tab-btn.active {
  background-color: var(--color-primary);
  border-color: var(--color-primary);
  color: #FFFFFF;
}

.pricing-panel {
  display: none;
}

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

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
@media (max-width: 992px) {
  .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 575px) {
  .pricing-grid {
    grid-template-columns: 1fr;
  }
}

.pricing-card {
  -webkit-border-radius: 16px;
  -moz-border-radius: 16px;
  border-radius: 16px;
  padding: 2rem 1.75rem;
  border: 2px solid var(--color-border, #E7E7E7);
  background-color: var(--color-card, #fff);
  -webkit-transition: all 0.35s ease;
  -moz-transition: all 0.35s ease;
  -ms-transition: all 0.35s ease;
  -o-transition: all 0.35s ease;
  transition: all 0.35s ease;
  position: relative;
  overflow: hidden;
}
.pricing-card:hover {
  border-color: var(--color-primary);
  box-shadow: 0 20px 50px -15px rgba(var(--color-primary-rgb), 0.25);
  -webkit-transform: translateY(-4px);
  -ms-transform: translateY(-4px);
  transform: translateY(-4px);
}
.pricing-card.featured {
  border-color: var(--color-primary);
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-light) 100%);
  box-shadow: 0 20px 50px -15px rgba(var(--color-primary-rgb), 0.4);
}
.pricing-card.featured .pricing-badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.25);
  color: white;
  font-size: 11px;
  font-weight: 600;
  padding: 4px 12px;
  -webkit-border-radius: 50px;
  -moz-border-radius: 50px;
  border-radius: 50px;
  margin-bottom: 1rem;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
.pricing-card.featured .pricing-device-icon {
  color: rgba(255, 255, 255, 0.9);
}
.pricing-card.featured .pricing-repair-name {
  color: #FFFFFF;
}
.pricing-card.featured .pricing-duration {
  color: rgba(255, 255, 255, 0.75);
}
.pricing-card.featured .pricing-currency {
  color: rgba(255, 255, 255, 0.85);
}
.pricing-card.featured .pricing-amount {
  color: #FFFFFF;
}
.pricing-card.featured .pricing-period {
  color: rgba(255, 255, 255, 0.75);
}
.pricing-card.featured .pricing-features li {
  color: rgba(255, 255, 255, 0.9);
}
.pricing-card.featured .pricing-features li i {
  color: rgba(255, 255, 255, 0.9);
}
.pricing-card.featured .pricing-cta {
  background: #FFFFFF;
  color: var(--color-primary);
  border-color: #FFFFFF;
}
.pricing-card.featured .pricing-cta:hover {
  background: rgba(255, 255, 255, 0.85);
}

.pricing-badge {
  display: none;
}

.pricing-card-header {
  margin-bottom: 1.5rem;
}

.pricing-device-icon {
  font-size: 2rem;
  margin-bottom: 0.75rem;
  display: block;
  color: var(--color-primary);
}

.pricing-repair-name {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--color-heading, var(--color-heading));
  margin-bottom: 0.25rem;
  display: block;
}

.pricing-duration {
  font-size: 12px;
  color: var(--color-body, #5C5A6F);
  display: flex;
  align-items: center;
  gap: 5px;
}

.pricing-price-wrapper {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin: 1.25rem 0;
}

.pricing-currency {
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-primary);
}

.pricing-amount {
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--color-heading, var(--color-heading));
  line-height: 1;
}

.pricing-period {
  font-size: 13px;
  color: var(--color-body, #5C5A6F);
}

.pricing-features {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.pricing-features li {
  font-size: 13.5px;
  color: var(--color-body, #5C5A6F);
  display: flex;
  align-items: center;
  gap: 8px;
}
.pricing-features li i {
  color: #03C12D;
  font-size: 13px;
  flex-shrink: 0;
}

.pricing-cta {
  display: block;
  text-align: center;
  padding: 12px;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  border: 2px solid var(--color-primary);
  color: var(--color-primary);
  background: transparent;
  -webkit-transition: all 0.35s ease;
  -moz-transition: all 0.35s ease;
  -ms-transition: all 0.35s ease;
  -o-transition: all 0.35s ease;
  transition: all 0.35s ease;
  font-family: "Inter", sans-serif;
  cursor: pointer;
  width: 100%;
}
.pricing-cta:hover {
  background-color: var(--color-primary);
  color: #FFFFFF;
}

#back-to-top {
  position: fixed;
  bottom: 100px;
  right: 28px;
  width: 46px;
  height: 46px;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-primary), var(--color-primary-light));
  color: #FFFFFF;
  border: none;
  cursor: pointer;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 20px rgba(var(--color-primary-rgb), 0.45);
  opacity: 0;
  -webkit-transform: translateY(20px) scale(0.8);
  -ms-transform: translateY(20px) scale(0.8);
  transform: translateY(20px) scale(0.8);
  transition: opacity 0.35s ease, transform 0.35s ease;
  z-index: 999;
  pointer-events: none;
}
#back-to-top.visible {
  opacity: 1;
  -webkit-transform: translateY(0) scale(1);
  -ms-transform: translateY(0) scale(1);
  transform: translateY(0) scale(1);
  pointer-events: auto;
}
#back-to-top:hover {
  -webkit-transform: translateY(-3px) scale(1.05);
  -ms-transform: translateY(-3px) scale(1.05);
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 10px 28px rgba(var(--color-primary-rgb), 0.55);
}
#back-to-top i {
  transition: transform 0.2s ease;
}
#back-to-top:hover i {
  -webkit-transform: translateY(-2px);
  -ms-transform: translateY(-2px);
  transform: translateY(-2px);
}

#whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 999;
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}
#whatsapp-float:hover .whatsapp-tooltip {
  opacity: 1;
  -webkit-transform: translateX(0);
  -ms-transform: translateX(0);
  transform: translateX(0);
}

.whatsapp-btn {
  width: 56px;
  height: 56px;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  background-color: #25D366;
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.5);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  flex-shrink: 0;
  position: relative;
}
.whatsapp-btn::before {
  content: "";
  position: absolute;
  inset: 0;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  background-color: #25D366;
  animation: wa-pulse 2.5s ease-out infinite;
  z-index: -1;
}
#whatsapp-float:hover .whatsapp-btn {
  -webkit-transform: scale(1.1);
  -ms-transform: scale(1.1);
  transform: scale(1.1);
  box-shadow: 0 10px 30px rgba(37, 211, 102, 0.65);
}

@keyframes wa-pulse {
  0% {
    transform: scale(1);
    opacity: 0.7;
  }
  70% {
    transform: scale(1.6);
    opacity: 0;
  }
  100% {
    transform: scale(1.6);
    opacity: 0;
  }
}
.whatsapp-tooltip {
  background-color: #25D366;
  color: #FFFFFF;
  padding: 8px 14px;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 500;
  white-space: nowrap;
  box-shadow: 0 4px 14px rgba(37, 211, 102, 0.35);
  opacity: 0;
  -webkit-transform: translateX(10px);
  -ms-transform: translateX(10px);
  transform: translateX(10px);
  transition: opacity 0.3s ease, transform 0.3s ease;
  pointer-events: none;
  font-family: "Inter", sans-serif;
  position: relative;
}
.whatsapp-tooltip::after {
  content: "";
  position: absolute;
  right: -8px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  border: 5px solid transparent;
  border-left-color: #25D366;
}

/*=============================
Croptex Service — repair section components
=============================*/
.col-xl-2-4 {
  flex: 0 0 auto;
  width: 50%;
}
@media (min-width: 768px) {
  .col-xl-2-4 {
    width: 33.333333%;
  }
}
@media (min-width: 992px) {
  .col-xl-2-4 {
    width: 25%;
  }
}
@media (min-width: 1200px) {
  .col-xl-2-4 {
    width: 20%;
  }
}

/* Section rhythm */
#categories,
#trust,
#delivery,
#about-repair,
#faq-cards,
#faq,
.croptex-page-hero,
.subscribe {
  padding-top: 4.5rem;
  padding-bottom: 4.5rem;
}
@media (max-width: 768px) {
  #categories,
  #trust,
  #delivery,
  #about-repair,
  #faq-cards,
  #faq,
  .croptex-page-hero,
  .subscribe {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }
}

.croptex-section-head {
  margin-bottom: 2rem;
}
.croptex-section-head h1,
.croptex-section-head h2 {
  margin-bottom: 0.85rem;
  font-family: "Manrope", "Inter", sans-serif;
}
.croptex-section-head p {
  margin: 0 auto;
  max-width: 640px;
  font-size: 1.0625rem;
  line-height: 1.55;
  color: var(--color-body, #5C5A6F);
}

.hero-banner.croptex-hero {
  background-image: none;
  background: var(--color-hero, #0a0a0a);
  padding: 11rem 0 4.5rem;
  scroll-margin-top: 10rem;
}
@media (max-width: 991px) {
  .hero-banner.croptex-hero {
    padding: 10rem 0 3.25rem;
  }
}
@media (max-width: 575px) {
  .hero-banner.croptex-hero {
    padding: 8.5rem 0 2.75rem;
  }
}
.hero-banner.croptex-hero .row {
  height: auto;
}
.croptex-hero-intro {
  display: grid;
  grid-template-columns: minmax(260px, 0.9fr) minmax(0, 1.1fr);
  align-items: center;
  gap: clamp(2.5rem, 7vw, 7rem);
  max-width: 1160px;
  margin: 0 auto 5rem;
}
.croptex-hero-intro__media {
  position: relative;
  isolation: isolate;
  max-width: 500px;
  margin: 3rem auto 0;
}
.croptex-hero-intro__media::before {
  position: absolute;
  z-index: -1;
  inset: 9% -8% -7% 8%;
  border: 1px solid rgba(var(--color-primary-rgb), 0.7);
  content: "";
  transform: rotate(-4deg);
}
.croptex-hero-intro__media img {
  display: block;
  width: 100%;
  height: auto;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 2px;
  box-shadow: 20px 24px 60px rgba(0, 0, 0, 0.4);
}
.croptex-hero-intro__glow {
  position: absolute;
  z-index: -2;
  inset: 20% -18% -18% 18%;
  background: radial-gradient(ellipse, rgba(var(--color-primary-rgb), 0.2), transparent 68%);
  filter: blur(24px);
}
.croptex-hero-intro__content {
  max-width: 560px;
}
.hero-banner.croptex-hero .croptex-section-head {
  margin-bottom: 1.75rem;
  padding-top: 0;
  text-align: left;
}
.hero-banner.croptex-hero .croptex-hero-intro__content .btn {
  min-width: 190px;
}
@media (max-width: 767px) {
  .croptex-hero-intro {
    grid-template-columns: 1fr;
    gap: 2.75rem;
    margin-bottom: 3.5rem;
  }
  .croptex-hero-intro__media {
    max-width: 420px;
    margin-top: 2rem;
  }
  .hero-banner.croptex-hero .croptex-section-head {
    text-align: center;
  }
  .croptex-hero-intro__content {
    text-align: center;
  }
}
.hero-banner.croptex-hero h1 {
  font-size: clamp(1.85rem, 1.1rem + 2.4vw, 3rem);
  letter-spacing: -0.03em;
  line-height: 1.1;
  color: #ffffff;
}
.hero-banner.croptex-hero .croptex-section-head {
  margin-bottom: 2.25rem;
  padding-top: 2rem;
}
.hero-banner.croptex-hero .croptex-section-head p {
  color: rgba(255, 255, 255, 0.62);
}
/* Hero dark strip — keep brand readable even in light theme */
.hero-banner.croptex-hero ~ * {
  /* no-op separator */
}
body:has(.hero-banner.croptex-hero) .navbar:not(.on-scroll) {
  background: rgba(14, 21, 41, 0.88);
  backdrop-filter: blur(10px);
}
body:has(.hero-banner.croptex-hero) .navbar:not(.on-scroll) .navbar-brand,
body:has(.hero-banner.croptex-hero) .navbar:not(.on-scroll) .nav-link {
  color: #ffffff;
}
body:has(.hero-banner.croptex-hero) .navbar:not(.on-scroll) .nav-link:hover,
body:has(.hero-banner.croptex-hero) .navbar:not(.on-scroll) .nav-link.is-active,
body:has(.hero-banner.croptex-hero) .navbar:not(.on-scroll) .nav-link.active {
  color: var(--color-primary-light, var(--color-primary-light));
}

/* Category showcase — premium bento (full-bleed) */
.croptex-cats-showcase,
#categories.croptex-cats-showcase,
.hero-banner.croptex-hero.croptex-cats-showcase {
  position: relative;
  width: 100%;
  max-width: none;
  margin-left: 0;
  margin-right: 0;
  overflow: visible;
  background:
    radial-gradient(ellipse 70% 55% at 12% 0%, rgba(221, 208, 244, 0.14), transparent 55%),
    radial-gradient(ellipse 55% 45% at 88% 18%, rgba(217, 232, 245, 0.12), transparent 50%),
    var(--color-hero, #0e1529);
}
.croptex-cats-showcase > .container {
  position: relative;
  z-index: 1;
}
.croptex-cat-head {
  display: grid;
  gap: 0.55rem;
  margin-bottom: clamp(1.5rem, 3vw, 2.25rem);
  padding-top: 0.25rem;
  max-width: none;
}
.croptex-cat-head__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px 24px;
  flex-wrap: wrap;
}
.croptex-cat-head__row h2 {
  flex: 1 1 auto;
  min-width: 0;
}
.croptex-cat-head__eyebrow {
  margin: 0;
  font-family: "Manrope", "Inter", sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.42);
}
.croptex-cat-head h2 {
  margin: 0;
  max-width: none;
  font-family: "Manrope", "Inter", sans-serif;
  font-size: clamp(2rem, 1.2rem + 2.8vw, 3.35rem);
  font-weight: 800;
  letter-spacing: -0.045em;
  line-height: 1.02;
  color: #ffffff;
}
.croptex-cat-head__sub {
  margin: 0.15rem 0 0;
  max-width: 34rem;
  font-size: 1.05rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.55);
}
.croptex-cat-bento {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-auto-flow: dense;
  gap: 12px;
}
@media (min-width: 768px) {
  .croptex-cat-bento {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
  }
}
@media (min-width: 1200px) {
  .croptex-cat-bento {
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 16px;
  }
}
#categories {
  --croptex-card-bg: #d9e8f5;
  --croptex-card-ink: #0f172a;
}
html[data-card-tone="gray"] #categories {
  --croptex-card-bg: #ececec;
  --croptex-card-ink: #111111;
}
.croptex-cat-card {
  --cat-radius: 28px;
  --cat-ink: var(--croptex-card-ink);
  --cat-glow: rgba(255, 255, 255, 0.55);
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: space-between;
  min-height: 200px;
  padding: 18px 16px 16px;
  overflow: hidden;
  isolation: isolate;
  border: 0;
  border-radius: var(--cat-radius);
  text-decoration: none !important;
  color: var(--cat-ink);
  background: var(--croptex-card-bg);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.55);
  transition:
    transform 0.4s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.4s ease,
    filter 0.35s ease;
}
@media (min-width: 768px) {
  .croptex-cat-card {
    min-height: 220px;
  }
  .croptex-cat-card--featured {
    grid-column: span 2;
    grid-row: span 2;
    min-height: 0;
    padding: 28px 24px 22px;
    --cat-radius: 32px;
  }
  .croptex-cat-card--mid {
    min-height: 240px;
  }
}
@media (min-width: 1200px) {
  .croptex-cat-card--featured {
    grid-column: span 2;
    grid-row: span 2;
  }
}
.croptex-cat-card--lilac,
.croptex-cat-card--sage,
.croptex-cat-card--sand,
.croptex-cat-card--sky,
.croptex-cat-card--mist {
  background: var(--croptex-card-bg);
  --cat-ink: var(--croptex-card-ink);
  --cat-glow: rgba(255,255,255,.55);
}
.croptex-cat-card__glow {
  position: absolute;
  z-index: 0;
  inset: auto -20% -35% -20%;
  height: 70%;
  background: radial-gradient(ellipse at center, var(--cat-glow), transparent 70%);
  pointer-events: none;
  opacity: 0.9;
}
.croptex-cat-card:hover,
.croptex-cat-card:focus-visible {
  transform: translateY(-8px) scale(1.015);
  filter: brightness(1.03);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.7),
    0 28px 50px -24px rgba(6, 10, 24, 0.55);
  outline: none;
  z-index: 2;
}
.croptex-cat-card__media {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1 1 auto;
  width: 100%;
  min-height: 120px;
  overflow: visible;
  pointer-events: none;
}
.croptex-cat-card--featured .croptex-cat-card__media {
  min-height: 220px;
}
.croptex-cat-card__media img {
  width: auto;
  height: auto;
  max-width: 88%;
  max-height: 170px;
  object-fit: contain;
  display: block;
  filter: drop-shadow(0 18px 28px rgba(17, 24, 39, 0.28));
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}
.croptex-cat-card--featured .croptex-cat-card__media img {
  max-width: 92%;
  max-height: 320px;
}
.croptex-cat-card--mid .croptex-cat-card__media img {
  max-height: 190px;
}
.croptex-cat-card:hover .croptex-cat-card__media img {
  transform: scale(1.1);
}
.croptex-cat-card__foot {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 8px;
}
.croptex-cat-card__title {
  font-family: "Manrope", "Inter", sans-serif;
  font-weight: 800;
  font-size: 1.05rem;
  line-height: 1.15;
  letter-spacing: -0.035em;
  color: inherit;
  margin: 0;
}
.croptex-cat-card--featured .croptex-cat-card__title {
  font-size: clamp(1.45rem, 1.1rem + 1vw, 2rem);
}
.croptex-cat-card__arrow {
  flex: 0 0 auto;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  background: rgba(17, 24, 39, 0.1);
  position: relative;
  transition: background 0.25s ease, transform 0.25s ease;
}
.croptex-cat-card__arrow::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 8px;
  height: 8px;
  border-right: 2px solid currentColor;
  border-top: 2px solid currentColor;
  transform: translate(-60%, -50%) rotate(45deg);
}
.croptex-cat-card:hover .croptex-cat-card__arrow {
  background: rgba(17, 24, 39, 0.18);
  transform: translateX(3px);
}
.croptex-cat-card__body,
.croptex-cat-card__icon,
.croptex-cat-card__meta,
.croptex-cat-card__badge,
.croptex-cat-card__cta {
  display: none;
}
.croptex-cat-card--lg .croptex-cat-card__media img {
  max-width: 96%;
}
.croptex-cat-card--logo .croptex-cat-card__media img {
  max-width: 48%;
  max-height: 120px;
  filter: none;
}
.croptex-cat-card--featured.croptex-cat-card--logo .croptex-cat-card__media img,
.croptex-cat-card--featured.croptex-cat-card--lg .croptex-cat-card__media img {
  max-width: 78%;
  max-height: 280px;
}
html[data-theme="light"] body.croptex-home .croptex-cats-showcase,
html[data-theme="light"] body.croptex-home #categories.croptex-cats-showcase {
  background:
    radial-gradient(ellipse 70% 55% at 12% 0%, rgba(221, 208, 244, 0.35), transparent 55%),
    radial-gradient(ellipse 55% 45% at 88% 18%, rgba(217, 232, 245, 0.3), transparent 50%),
    #ffffff;
}
html[data-theme="light"] body.croptex-home .croptex-cat-head__eyebrow {
  color: rgba(14, 21, 41, 0.4);
}
html[data-theme="light"] body.croptex-home .croptex-cat-head h2 {
  color: #0e1529;
}
html[data-theme="light"] body.croptex-home .croptex-cat-head__sub {
  color: rgba(14, 21, 41, 0.55);
}

.croptex-trust-card {
  height: 100%;
  border: 1px solid var(--color-border, #E2E8F0);
  padding: 28px 24px;
  border-radius: 16px;
  background: var(--color-card, #fff);
  box-shadow: var(--shadow-card);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.croptex-trust-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 36px -20px rgba(var(--color-primary-rgb), 0.35);
  border-color: rgba(var(--color-primary-rgb), 0.28);
}
.croptex-trust-card .icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 14px;
}
.croptex-trust-card__value {
  font-family: "Manrope", "Inter", sans-serif;
  font-size: 1.375rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--color-primary);
  margin-bottom: 4px;
  line-height: 1.2;
}
.croptex-trust-card h5 {
  margin-bottom: 8px;
}
.croptex-trust-card p {
  margin: 0;
  font-size: 0.9375rem;
  line-height: 1.55;
  color: var(--color-body, #5C5A6F);
}
.croptex-trust-card.soft-blue .icon { background: rgba(var(--color-primary-rgb), 0.12); color: var(--color-primary); }
.croptex-trust-card.blue .icon { background: rgba(var(--color-primary-rgb), 0.16); color: var(--color-primary-light); }
.croptex-trust-card.yellow .icon { background: rgba(245, 158, 11, 0.15); color: #D97706; }
.croptex-trust-card.green .icon { background: rgba(16, 185, 129, 0.12); color: #059669; }
.croptex-trust-card.dark-blue .icon { background: rgba(11, 18, 32, 0.1); color: #0e1529; }
[data-theme=dark] .croptex-trust-card.soft-blue .icon { background: rgba(var(--color-primary-rgb), 0.14); color: var(--color-primary-light); }
[data-theme=dark] .croptex-trust-card.blue .icon { background: rgba(var(--color-primary-rgb), 0.18); color: var(--color-primary); }
[data-theme=dark] .croptex-trust-card.dark-blue .icon { color: #94A3B8; }

.croptex-delivery {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.croptex-delivery__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 80% 55% at 50% 0%, rgba(var(--color-primary-rgb), 0.08), transparent 55%),
    radial-gradient(ellipse 60% 50% at 85% 90%, rgba(255, 255, 255, 0.03), transparent 50%),
    linear-gradient(180deg, #0a1020 0%, #10182e 45%, #0e1529 100%);
}
.croptex-delivery__bg::before {
  content: "";
  position: absolute;
  inset: -10% -5%;
  opacity: 0.22;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(135deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 72px 72px, 72px 72px, 140px 140px;
  mask-image: radial-gradient(ellipse 75% 70% at 50% 40%, #000 20%, transparent 85%);
  -webkit-mask-image: radial-gradient(ellipse 75% 70% at 50% 40%, #000 20%, transparent 85%);
}
.croptex-delivery__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(115deg, transparent 0%, rgba(var(--color-primary-rgb), 0.04) 42%, transparent 68%),
    linear-gradient(295deg, transparent 10%, rgba(255, 255, 255, 0.02) 50%, transparent 80%);
}
.croptex-delivery__inner {
  position: relative;
  z-index: 1;
}
.croptex-delivery-card {
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 28px 28px 24px;
  border-radius: 18px;
  background: #161e36;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: none;
  cursor: pointer;
  transition: border-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}
.croptex-delivery-card:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.16);
}
.croptex-delivery-card.is-featured {
  border-color: rgba(var(--color-primary-rgb), 0.85);
  box-shadow:
    0 0 0 1px rgba(var(--color-primary-rgb), 0.35),
    0 0 28px rgba(var(--color-primary-rgb), 0.35),
    0 12px 36px -16px rgba(var(--color-primary-rgb), 0.45);
}
.croptex-delivery-card.is-featured:hover {
  border-color: var(--color-primary);
  box-shadow:
    0 0 0 1px rgba(var(--color-primary-rgb), 0.5),
    0 0 34px rgba(var(--color-primary-rgb), 0.42),
    0 14px 40px -14px rgba(var(--color-primary-rgb), 0.5);
}
.croptex-delivery-card__badge {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  background: #E8DFD2;
  color: #1a1a1a;
  font-family: "Manrope", "Inter", sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  line-height: 1.2;
  white-space: nowrap;
}
.croptex-delivery-card__icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--color-primary);
  color: #ffffff;
  font-size: 20px;
  margin-bottom: 16px;
  box-shadow: none;
  flex-shrink: 0;
  overflow: hidden;
}
.croptex-delivery-card__icon.has-logo {
  background: #ffffff;
  padding: 10px;
}
.croptex-delivery-card__logo {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}
.croptex-delivery-card__body {
  flex: 1 1 auto;
  width: 100%;
}
.croptex-delivery-card h3 {
  font-family: "Manrope", "Inter", sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.3;
  margin-bottom: 8px;
  color: #ffffff;
}
.croptex-delivery-card.is-featured h3 {
  padding-right: 7.5rem;
}
.croptex-delivery-card p {
  margin-bottom: 20px;
  font-size: 0.95rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.55);
}
.croptex-delivery-card__btn {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-family: "Manrope", "Inter", sans-serif;
  font-weight: 600;
  letter-spacing: -0.01em;
  border: none;
  border-radius: 999px;
  padding: 0.7rem 1.35rem;
  background: var(--color-primary);
  color: #ffffff !important;
  box-shadow: 0 10px 28px -6px rgba(var(--color-primary-rgb), 0.65);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}
.croptex-delivery-card__btn:hover {
  background: var(--color-primary-light);
  color: #ffffff !important;
  transform: translateY(-1px);
  box-shadow: 0 14px 32px -6px rgba(var(--color-primary-rgb), 0.75);
}
#delivery .croptex-delivery-head {
  margin-bottom: 2rem;
}
#delivery .croptex-delivery-grid {
  max-width: 980px;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 767.98px) {
  .croptex-delivery-card h3,
  .croptex-delivery-card.is-featured h3 {
    padding-right: 0;
    font-size: 1.1rem;
  }
  .croptex-delivery-card__badge {
    top: 12px;
    right: 12px;
    font-size: 0.68rem;
    padding: 0.3rem 0.65rem;
  }
}

.croptex-seo__figure {
  margin: 0;
  border-radius: 28px;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: #ececec;
  box-shadow: 0 18px 44px -28px rgba(14, 21, 41, 0.28);
  border: 1px solid rgba(14, 21, 41, 0.06);
}
.croptex-seo__img,
.croptex-seo__figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
.croptex-seo__icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(var(--color-primary-rgb), 0.12);
  color: var(--color-primary);
  font-size: 22px;
  margin-bottom: 18px;
}
.croptex-seo__text p {
  margin-bottom: 0.9rem;
  font-size: 1.02rem;
  line-height: 1.6;
}
.croptex-seo__text p:last-child {
  margin-bottom: 1.4rem;
}
.repair .croptex-seo__figure {
  width: 100%;
  max-width: 520px;
}
.croptex-seo__figure--contain {
  background: #d9e8f5;
}
.croptex-seo__figure--contain img {
  object-fit: contain;
  padding: 1.75rem;
}

.croptex-repairs {
  padding: 0.5rem 0 4.5rem;
  background: #fff;
}
.croptex-repairs .croptex-section-head {
  margin-bottom: 1.5rem;
}
.croptex-repairs .croptex-section-head p {
  max-width: 36rem;
  margin: 0.55rem auto 0;
  color: #5c5a6f;
}
.croptex-repairs__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}
.croptex-repairs__card {
  display: flex;
  align-items: center;
  gap: 14px;
  width: 100%;
  text-align: left;
  border: 1px solid rgba(14, 21, 41, 0.08);
  background: #f6f8fb;
  border-radius: 18px;
  padding: 16px 18px;
  color: #0e1529;
  font-weight: 650;
  line-height: 1.3;
  cursor: pointer;
  transition: border-color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}
.croptex-repairs__card:hover,
.croptex-repairs__card:focus-visible {
  background: #fff;
  border-color: rgba(var(--color-primary-rgb), 0.45);
  transform: translateY(-1px);
}
.croptex-repairs__icon {
  flex: 0 0 auto;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary);
  font-size: 18px;
}
@media (max-width: 900px) {
  .croptex-repairs__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 560px) {
  .croptex-repairs {
    padding-bottom: 3rem;
  }
  .croptex-repairs__grid {
    grid-template-columns: 1fr;
  }
}
#about-repair h2,
.repair .croptex-seo__text + .btn,
.repair h2 {
  font-family: "Manrope", "Inter", sans-serif;
}

.croptex-faq-card {
  height: 100%;
  padding: 28px 22px 30px;
  border-radius: 18px;
  background: var(--color-card, #fff);
  border: 1px solid var(--color-border, #E7E7E7);
  text-align: center;
  box-shadow: var(--shadow-card);
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.croptex-faq-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 32px -18px rgba(var(--color-primary-rgb), 0.3);
}
.croptex-faq-card__emoji {
  font-size: 28px;
  line-height: 1;
  margin-bottom: 12px;
}
.croptex-faq-card__media {
  width: 110px;
  height: 110px;
  margin: 0 auto 18px;
  display: grid;
  place-items: center;
}
.croptex-faq-card__media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  image-rendering: auto;
  -ms-interpolation-mode: bicubic;
  transition: transform 0.35s ease;
}
.croptex-faq-card:hover .croptex-faq-card__media img {
  transform: translateY(-2px) scale(1.03);
}
.croptex-faq-card h3 {
  font-family: "Manrope", "Inter", sans-serif;
  font-size: 1.12rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 10px;
  color: var(--color-heading);
}
.croptex-faq-card p {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.55;
  color: var(--color-body, #5C5A6F);
  max-width: 26ch;
}

@media (min-width: 992px) {
  .croptex-faq-card {
    padding: 36px 26px 38px;
  }
  .croptex-faq-card__media {
    width: 128px;
    height: 128px;
    margin-bottom: 22px;
  }
  .croptex-faq-card h3 {
    font-size: 1.2rem;
  }
  .croptex-faq-card p {
    font-size: 0.92rem;
    max-width: none;
  }
}

.croptex-service-brief {
  position: relative;
}

.accordion-faq .accordion-button {
  font-family: "Manrope", "Inter", sans-serif;
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: -0.01em;
  line-height: 1.35;
  padding: 1.05rem 1.15rem;
}
.accordion-faq .accordion-body {
  font-size: 0.975rem;
  line-height: 1.55;
  color: var(--color-body, #5C5A6F);
}
.accordion-faq .accordion-item {
  border-radius: 12px !important;
  overflow: hidden;
  margin-bottom: 10px;
  border: 1px solid var(--color-border, #E7E7E7) !important;
  box-shadow: 0 6px 20px -16px rgba(11, 18, 32, 0.3);
}

.croptex-modal .modal-content {
  border: none;
  border-radius: 18px;
  box-shadow: 0 24px 60px -20px rgba(11, 18, 32, 0.45);
}
.croptex-modal .modal-title {
  font-family: "Manrope", "Inter", sans-serif;
  font-weight: 700;
  letter-spacing: -0.02em;
}
.croptex-modal .form-label {
  font-weight: 500;
  font-size: 0.875rem;
  color: var(--color-heading);
}
.croptex-modal .form-control,
.croptex-modal .form-select {
  font-family: "Inter", sans-serif;
  border-radius: 10px;
  padding: 0.7rem 0.9rem;
  line-height: 1.4;
}
.croptex-request-success {
  text-align: center;
  padding: 1.5rem 0.5rem;
}
.croptex-request-success h3 {
  color: var(--color-heading);
  margin-bottom: 0.75rem;
}

.modal-content.croptex-request {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  background: #ffffff;
  color: #0e1529;
}
html[data-theme="dark"] .modal-content.croptex-request {
  background: #151d38;
  color: #f4f7fb;
}
.croptex-request__close {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 3;
  width: 36px;
  height: 36px;
  padding: 0;
  border: 1px solid rgba(14, 21, 41, 0.12);
  border-radius: 50%;
  background-color: #ffffff;
  background-image: none;
  opacity: 1;
  box-shadow: 0 8px 18px -10px rgba(14, 21, 41, 0.4);
}
.croptex-request__close::before,
.croptex-request__close::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 14px;
  height: 2px;
  border-radius: 1px;
  background: #0e1529;
}
.croptex-request__close::before {
  transform: translate(-50%, -50%) rotate(45deg);
}
.croptex-request__close::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}
.croptex-request__product {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 14px 56px 0 14px;
  padding: 10px 12px;
  border-radius: 18px;
  background: #eef4ff;
}
.croptex-request__media {
  flex: 0 0 84px;
  width: 84px;
  height: 84px;
  border-radius: 16px;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.croptex-request__media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.croptex-request__letter {
  font-family: "Manrope", "Inter", sans-serif;
  font-size: 1.6rem;
  font-weight: 800;
  color: #0170fd;
}
.croptex-request__copy {
  min-width: 0;
}
.croptex-request__kicker {
  margin: 0 0 2px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #0170fd;
}
.croptex-request__name {
  margin: 0;
  font-size: 1.2rem;
  line-height: 1.15;
  color: #0e1529;
}
.croptex-request__service {
  margin: 4px 0 0;
  font-size: 0.92rem;
  line-height: 1.35;
  color: #3d4660;
}
.croptex-request__price {
  font-weight: 700;
  color: #0170fd;
  white-space: nowrap;
}
.croptex-request .modal-body {
  padding: 18px 18px 20px;
}
.croptex-request__title {
  margin: 0 0 4px;
  font-size: 1.25rem;
}
.croptex-request__lead {
  margin: 0 0 16px;
  font-size: 0.92rem;
  line-height: 1.4;
  color: #5c5a6f;
}
html[data-theme="dark"] .croptex-request__product {
  background: rgba(255, 255, 255, 0.06);
}
html[data-theme="dark"] .croptex-request__media {
  background: #0e1529;
}
html[data-theme="dark"] .croptex-request__close,
[data-theme="dark"] .croptex-request .btn-close {
  background-color: #ffffff;
  filter: none;
}
html[data-theme="dark"] .croptex-request__close::before,
html[data-theme="dark"] .croptex-request__close::after {
  background: #0e1529;
}
html[data-theme="dark"] .croptex-request__name,
html[data-theme="dark"] .croptex-request__service,
html[data-theme="dark"] .croptex-request__title,
html[data-theme="dark"] .croptex-request__lead {
  color: #f4f7fb;
}
html[data-theme="dark"] .croptex-request__lead {
  opacity: 0.72;
}

.btn.btn-primary,
.btn.btn-rounded {
  font-family: "Manrope", "Inter", sans-serif;
  font-weight: 600;
  letter-spacing: -0.01em;
  border-radius: 999px;
  padding: 0.7rem 1.35rem;
  background-color: var(--color-primary);
  border-color: var(--color-primary);
  color: #fff;
  box-shadow: var(--shadow-primary);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}
.btn.btn-primary:hover,
.btn.btn-rounded:hover {
  background-color: var(--color-primary-light);
  border-color: var(--color-primary-light);
  color: #ffffff;
  transform: translateY(-1px);
  box-shadow: 0 14px 28px -12px rgba(var(--color-primary-rgb), 0.55);
}
.navbar-brand {
  font-family: "Manrope", "Inter", sans-serif;
  font-weight: 800;
  letter-spacing: -0.03em;
}
.navbar-nav .nav-link {
  font-family: "Inter", sans-serif;
  font-weight: 500;
  font-size: 0.9375rem;
}

.croptex-float-root {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 1040;
}
.croptex-float {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
}
.croptex-float__toggle {
  width: 56px;
  height: 56px;
  border: none;
  border-radius: 50%;
  background: var(--color-primary);
  color: #fff;
  font-size: 22px;
  box-shadow: var(--shadow-primary);
  cursor: pointer;
  transition: transform 0.25s ease, background 0.25s ease;
}
.croptex-float.is-open .croptex-float__toggle,
.croptex-float__toggle:hover {
  transform: scale(1.06);
  background: var(--color-primary-light, var(--color-primary-light));
}
.croptex-float__menu {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: flex-end;
}
.croptex-float__link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 999px;
  background: var(--color-card, #fff);
  color: var(--color-heading);
  text-decoration: none !important;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  font-size: 14px;
  font-weight: 500;
  font-family: "Inter", sans-serif;
  border: 1px solid var(--color-border, #E7E7E7);
}
.croptex-float__link i {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--msg-color);
  color: #fff;
  font-size: 14px;
}
.croptex-float__link:hover {
  color: var(--color-heading);
  transform: translateX(-2px);
}

.croptex-page-hero {
  padding: 7.5rem 0 2.5rem;
  background: #ffffff;
}
@media (max-width: 768px) {
  .croptex-page-hero {
    padding: 5.75rem 0 1.75rem;
  }
}
.croptex-page-hero h1 {
  margin-bottom: 0.65rem;
}
.croptex-page-hero p {
  max-width: 560px;
  color: var(--color-body, #5C5A6F);
}
.croptex-breadcrumb {
  font-size: 0.8125rem;
  margin-bottom: 0.85rem;
  color: var(--color-body, #5C5A6F);
  letter-spacing: 0.01em;
}
.croptex-breadcrumb a {
  color: var(--color-primary);
  text-decoration: none;
  font-weight: 500;
}

.croptex-browse {
  --croptex-card-bg: #d9e8f5;
  --croptex-card-ink: #0f172a;
  padding: 0.25rem 0 4.5rem;
  background: #ffffff;
}
.croptex-browse--picker {
  overflow: visible;
}
html[data-card-tone="gray"] .croptex-browse {
  --croptex-card-bg: #ececec;
  --croptex-card-ink: #111111;
}
.croptex-browse .croptex-cat-bento {
  overflow: visible;
}
.croptex-browse .croptex-cat-card {
  min-height: 250px;
  overflow: visible;
}
.croptex-browse .croptex-cat-card__glow {
  display: none;
}
.croptex-browse .croptex-cat-card__media img {
  filter:
    drop-shadow(0 0 0.7px rgba(15, 23, 42, 0.4))
    drop-shadow(0 10px 16px rgba(15, 23, 42, 0.28));
}
.croptex-browse .croptex-cat-head h2 {
  color: #0e1529;
  font-size: clamp(1.55rem, 1rem + 1.6vw, 2.35rem);
}
.croptex-browse__back {
  display: inline-flex;
  align-items: center;
  margin: 0 0 0.35rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: rgba(14, 21, 41, 0.55);
  text-decoration: none;
}
.croptex-browse__back:hover {
  color: #0e1529;
}

.croptex-page-hero--compact {
  padding-bottom: 0.35rem;
}
.croptex-page-hero--compact h1,
.croptex-page-hero--compact p,
.croptex-page-hero--compact .btn {
  display: none;
}

.croptex-model-picker__head {
  margin-bottom: 1.15rem;
}
.croptex-model-picker__back {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin: 0;
  text-decoration: none;
  color: inherit;
}
.croptex-model-picker__back h2 {
  margin: 0;
}
.croptex-model-picker__back .croptex-cat-card__arrow {
  transform: rotate(180deg);
}
.croptex-model-picker__back:hover .croptex-cat-card__arrow {
  transform: rotate(180deg) translateX(3px);
}

.croptex-model-picker {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  align-items: start;
}
.croptex-model-picker__aside {
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-width: 0;
}
.croptex-model-picker__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}
.croptex-model-picker__more {
  width: 100%;
}
.croptex-model-picker__feature {
  cursor: default;
  min-height: 220px;
}
.croptex-browse--picker .croptex-model-picker__feature.croptex-cat-card:hover,
.croptex-browse--picker .croptex-model-picker__feature.croptex-cat-card:focus-visible {
  transform: none;
  filter: none;
  z-index: 0;
}
.croptex-model-picker__grid .croptex-cat-card {
  min-height: 168px;
  padding: 14px 12px 12px;
}
.croptex-model-picker__grid .croptex-cat-card__media {
  min-height: 88px;
}
.croptex-model-picker__grid .croptex-cat-card__media img {
  max-height: 96px;
}
.croptex-model-picker__grid .croptex-cat-card__arrow {
  display: none;
}
.croptex-model-picker__grid .croptex-cat-card__foot {
  justify-content: center;
  margin-top: 6px;
}
.croptex-model-picker__grid .croptex-cat-card__title {
  width: 100%;
  text-align: center;
  font-weight: 700;
  font-size: 0.98rem;
  line-height: 1.15;
  letter-spacing: -0.03em;
}
.croptex-model-picker__grid .croptex-cat-card__kicker {
  display: block;
  margin-bottom: 1px;
  font-family: "Inter", sans-serif;
  font-weight: 500;
  font-size: 0.68rem;
  line-height: 1.2;
  letter-spacing: 0.01em;
  color: rgba(14, 21, 41, 0.46);
}
.croptex-model-picker__grid .croptex-cat-card__name {
  display: block;
  font-weight: 700;
  letter-spacing: -0.03em;
  text-wrap: balance;
}
.croptex-model-picker__grid .croptex-cat-card--logo .croptex-cat-card__foot {
  display: none;
}
.croptex-model-picker__feature .croptex-cat-card__media {
  min-height: 160px;
}
.croptex-model-picker__feature .croptex-cat-card__media img {
  max-width: 82%;
  max-height: 180px;
}

@media (min-width: 768px) {
  .croptex-model-picker {
    grid-template-columns: minmax(0, 0.45fr) minmax(0, 0.55fr);
    gap: 14px;
  }
  .croptex-model-picker__aside {
    gap: 14px;
  }
  .croptex-model-picker__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
  }
  .croptex-model-picker__feature {
    position: sticky;
    top: 5.75rem;
    z-index: 2;
    align-self: start;
    min-height: 0;
    height: auto;
  }
  .croptex-model-picker__feature .croptex-cat-card__media {
    flex: 1 1 auto;
    min-height: 0;
  }
  .croptex-model-picker__feature .croptex-cat-card__media img {
    max-width: 78%;
    max-height: 72%;
  }
}

@media (min-width: 1200px) {
  .croptex-model-picker {
    gap: 16px;
  }
  .croptex-model-picker__aside {
    gap: 16px;
  }
  .croptex-model-picker__grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
  }
}

.croptex-browse--services {
  overflow: visible;
}
.croptex-svc-photo .croptex-cat-card__foot {
  justify-content: center;
  margin-top: auto;
  padding-top: 22px;
  padding-bottom: 6px;
}
.croptex-svc-photo .croptex-cat-card__title {
  width: 100%;
  text-align: center;
  font-size: 1.15rem;
}
.croptex-svc-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  align-items: stretch;
}
.croptex-svc-photo {
  cursor: default;
  min-height: 0;
  padding: 16px 14px 18px;
  transition: none;
}
.croptex-browse.croptex-browse--services .croptex-svc-photo.croptex-cat-card {
  min-height: 0;
  transition: none;
}
.croptex-browse--services .croptex-svc-photo.croptex-cat-card:hover,
.croptex-browse--services .croptex-svc-photo.croptex-cat-card:focus-visible {
  transform: none;
  filter: none;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.55);
  z-index: 0;
}
.croptex-browse--services .croptex-svc-photo.croptex-cat-card:hover .croptex-cat-card__media img,
.croptex-browse--services .croptex-svc-photo.croptex-cat-card:focus-visible .croptex-cat-card__media img {
  transform: none;
}
.croptex-svc-photo .croptex-cat-card__media {
  min-height: 140px;
}
.croptex-svc-photo .croptex-cat-card__media img {
  width: auto;
  max-width: 92%;
  max-height: 220px;
  transition: none;
}
.croptex-svc-featured {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}
.croptex-svc-card {
  appearance: none;
  width: 100%;
  font: inherit;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
  min-height: 220px;
  padding: 28px 18px 22px;
  border: 0;
  border-radius: 28px;
  background: var(--croptex-card-bg);
  color: var(--croptex-card-ink, #0f172a);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.55);
  cursor: pointer;
  text-align: center;
}
.croptex-svc-card:hover,
.croptex-svc-card:focus-visible {
  outline: none;
  filter: brightness(1.02);
}
.croptex-svc-card__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  font-size: 1.55rem;
  color: var(--color-primary);
}
.croptex-svc-card__name {
  font-family: "Manrope", "Inter", sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  line-height: 1.25;
  letter-spacing: -0.03em;
}
.croptex-svc-card__price {
  font-family: "Manrope", "Inter", sans-serif;
  font-weight: 800;
  font-size: 1.2rem;
  letter-spacing: -0.03em;
  margin-top: auto;
}
.croptex-svc-card__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 220px;
  min-height: 42px;
  padding: 0.55rem 1.1rem;
  border-radius: 999px;
  background: #0e1529;
  color: #fff;
  font-weight: 600;
  font-size: 0.95rem;
}
.croptex-svc-groups {
  margin-top: 2.75rem;
}
.croptex-svc-group {
  margin-bottom: 2rem;
}
.croptex-svc-group__title {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
  margin: 0 0 14px;
  font-family: "Manrope", "Inter", sans-serif;
  font-size: 1.25rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: #0e1529;
}
.croptex-svc-group__title i {
  color: var(--color-primary);
}
.croptex-svc-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto auto;
  align-items: center;
  gap: 16px;
  padding: 14px 18px;
  margin-bottom: 10px;
  border-radius: 18px;
  background: var(--croptex-card-bg);
  color: var(--croptex-card-ink, #0f172a);
}
.croptex-svc-row__name {
  font-weight: 600;
  letter-spacing: -0.02em;
}
.croptex-svc-row__price {
  font-family: "Manrope", "Inter", sans-serif;
  font-weight: 800;
  white-space: nowrap;
}
.croptex-svc-row__btn {
  appearance: none;
  font: inherit;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 132px;
  min-height: 42px;
  padding: 0.55rem 1.1rem;
  border: 0;
  border-radius: 999px;
  background: #0e1529;
  color: #fff;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
}
.croptex-svc-row__btn:hover,
.croptex-svc-row__btn:focus-visible {
  outline: none;
  filter: brightness(1.08);
  color: #fff;
}
@media (min-width: 640px) {
  .croptex-svc-layout {
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.2fr);
    gap: 16px;
    align-items: stretch;
  }
  .croptex-browse.croptex-browse--services .croptex-svc-photo.croptex-cat-card {
    position: sticky;
    top: 5.75rem;
    z-index: 2;
    align-self: stretch;
    min-height: 0;
    height: 100%;
    padding: 28px 18px 24px;
  }
  .croptex-svc-photo .croptex-cat-card__media {
    flex: 1 1 auto;
    min-height: 240px;
  }
  .croptex-svc-photo .croptex-cat-card__media img {
    max-width: 88%;
    max-height: 72%;
  }
  .croptex-svc-featured {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
  }
}
@media (min-width: 992px) {
  .croptex-svc-layout {
    grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.4fr);
  }
  .croptex-svc-featured {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
  }
  .croptex-svc-card {
    min-height: 200px;
    padding: 22px 14px 18px;
  }
  .croptex-svc-groups {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px 28px;
    align-items: start;
  }
  .croptex-svc-groups .croptex-svc-group {
    margin-bottom: 0;
  }
}
@media (max-width: 575.98px) {
  .croptex-svc-row {
    grid-template-columns: 1fr;
    justify-items: start;
    gap: 8px;
  }
  .croptex-svc-row__btn {
    width: 100%;
  }
}
.croptex-browse .croptex-cat-card--logo .croptex-cat-card__media img:not([src*="xiaomi"]) {
  filter: brightness(0) saturate(100%);
  opacity: 0.82;
}
.croptex-cat-card__wordmark {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 88px;
  padding: 0 12px;
  font-family: "Manrope", "Inter", sans-serif;
  font-size: clamp(1.35rem, 1rem + 1.1vw, 1.85rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.1;
  text-align: center;
  color: var(--cat-ink, #0f172a);
}

.subscribe .card {
  border-radius: 18px;
  padding: 2.5rem 2rem;
  border: none;
  box-shadow: 0 16px 40px -24px rgba(var(--color-primary-rgb), 0.45);
}
.subscribe .card h2 {
  margin-bottom: 0.85rem;
}
.subscribe .card p {
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.55;
}

/* ---------- Home: black continuum after hero ---------- */
body.croptex-home {
  --color-hero: #0e1529;
  --color-hero-tile: #151d38;
  background: #0e1529;
  color: rgba(255, 255, 255, 0.68);
}
body.croptex-home #categories,
body.croptex-home #promo,
body.croptex-home #trust,
body.croptex-home #delivery,
body.croptex-home #about-repair,
body.croptex-home #faq-cards,
body.croptex-home #faq,
body.croptex-home #location {
  scroll-margin-top: 88px;
}
body.croptex-home #trust,
body.croptex-home #promo,
body.croptex-home #delivery,
body.croptex-home #about-repair,
body.croptex-home #faq-cards,
body.croptex-home #faq,
body.croptex-home .subscribe {
  background: #0e1529;
  color: rgba(255, 255, 255, 0.65);
}
body.croptex-home #delivery,
body.croptex-home #faq-cards {
  background: #0a1020;
}
body.croptex-home .croptex-section-head h1,
body.croptex-home .croptex-section-head h2,
body.croptex-home #about-repair h2,
body.croptex-home #faq h2,
body.croptex-home .repair h2 {
  color: #ffffff;
}
body.croptex-home .croptex-section-head p,
body.croptex-home .croptex-seo__text p,
body.croptex-home .repair p {
  color: rgba(255, 255, 255, 0.62);
}
body.croptex-home .croptex-trust-card,
body.croptex-home .croptex-faq-card {
  background: #161e36;
  border-color: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.68);
  box-shadow: none;
}
body.croptex-home .croptex-faq-card {
  background: linear-gradient(180deg, #1a2340 0%, #121a32 100%);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 20px;
}
body.croptex-home .croptex-faq-card:hover {
  border-color: rgba(255, 255, 255, 0.16);
  box-shadow:
    0 20px 44px -24px rgba(0, 0, 0, 0.9),
    0 0 0 1px rgba(var(--color-primary-rgb), 0.18);
}
body.croptex-home .croptex-delivery-card {
  background: #161e36;
  border-color: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.68);
  box-shadow: none;
}
body.croptex-home .croptex-trust-card:hover {
  border-color: rgba(var(--color-primary-rgb), 0.35);
  box-shadow: 0 18px 40px -22px rgba(0, 0, 0, 0.75);
}
body.croptex-home .croptex-delivery-card:hover {
  border-color: rgba(255, 255, 255, 0.16);
  box-shadow: none;
}
body.croptex-home .croptex-delivery-card.is-featured,
body.croptex-home .croptex-delivery-card.is-featured:hover {
  border-color: rgba(var(--color-primary-rgb), 0.85);
  box-shadow:
    0 0 0 1px rgba(var(--color-primary-rgb), 0.35),
    0 0 28px rgba(var(--color-primary-rgb), 0.35),
    0 12px 36px -16px rgba(var(--color-primary-rgb), 0.45);
}
body.croptex-home .why .card.croptex-trust-card {
  background: #121a32 !important;
  border: 1px solid rgba(255, 255, 255, 0.06) !important;
}
body.croptex-home .why .card.croptex-trust-card h5,
body.croptex-home .why .card.croptex-trust-card.soft-blue h5,
body.croptex-home .why .card.croptex-trust-card.blue h5,
body.croptex-home .why .card.croptex-trust-card.yellow h5,
body.croptex-home .why .card.croptex-trust-card.green h5,
body.croptex-home .why .card.croptex-trust-card.dark-blue h5,
body.croptex-home .why .card.croptex-trust-card.purple h5,
body.croptex-home .why .card.croptex-trust-card.orange h5,
body.croptex-home .why .card.croptex-trust-card.violet h5 {
  color: #ffffff !important;
}
/* Distinct icon colors like Jabko-style USP grid */
body.croptex-home .croptex-trust-card .icon,
body.croptex-home .why .card.croptex-trust-card .icon {
  background: transparent !important;
  box-shadow: none !important;
  width: auto;
  height: auto;
  border-radius: 0;
  font-size: 1.65rem;
  margin-bottom: 14px;
  justify-content: flex-start;
}
body.croptex-home .why .card.croptex-trust-card.soft-blue .icon { color: #3B82F6 !important; }
body.croptex-home .why .card.croptex-trust-card.blue .icon { color: #FB7185 !important; }
body.croptex-home .why .card.croptex-trust-card.green .icon { color: #A3E635 !important; }
body.croptex-home .why .card.croptex-trust-card.purple .icon { color: #C084FC !important; }
body.croptex-home .why .card.croptex-trust-card.orange .icon { color: #F97316 !important; }
body.croptex-home .why .card.croptex-trust-card.violet .icon { color: #A78BFA !important; }
body.croptex-home .why .card.croptex-trust-card.yellow .icon { color: #FBBF24 !important; }
body.croptex-home .why .card.croptex-trust-card.dark-blue .icon { color: #60A5FA !important; }
body.croptex-home .croptex-trust-card h5,
body.croptex-home .croptex-delivery-card h3,
body.croptex-home .croptex-faq-card h3,
body.croptex-home .croptex-trust-card__value {
  color: #ffffff !important;
}
body.croptex-home .croptex-trust-card p,
body.croptex-home .croptex-delivery-card p,
body.croptex-home .croptex-faq-card p {
  color: rgba(255, 255, 255, 0.62);
}
body.croptex-home .croptex-faq-card h3 {
  color: #ffffff !important;
  font-weight: 700;
}
body.croptex-home .croptex-seo__figure {
  background: #2a2d33;
  box-shadow: none;
  border: 1px solid rgba(255, 255, 255, 0.08);
}
body.croptex-home .croptex-seo__icon {
  background: rgba(var(--color-primary-rgb), 0.16);
  color: var(--color-primary-light);
}
body.croptex-home .faq .accordion-faq .accordion-item {
  background: #121a32;
  border: 1px solid rgba(255, 255, 255, 0.08) !important;
  border-radius: 14px;
  margin-bottom: 10px;
  overflow: hidden;
}
body.croptex-home .faq .accordion-faq .accordion-button {
  background: #121a32;
  color: #ffffff;
  box-shadow: none;
}
body.croptex-home .faq .accordion-faq .accordion-button:not(.collapsed) {
  background: #161616;
  color: var(--color-primary-light);
}
body.croptex-home .faq .accordion-faq .accordion-body {
  background: #080808;
  color: rgba(255, 255, 255, 0.65);
}
body.croptex-home .subscribe {
  background: #0e1529;
  bottom: 0;
  margin-bottom: 0;
  overflow: visible;
}
body.croptex-home .subscribe .card {
  background: #121a32;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: none;
  color: rgba(255, 255, 255, 0.7);
  z-index: auto;
}
body.croptex-home .subscribe .card h2 {
  color: #ffffff;
}
body.croptex-home .subscribe .card p {
  color: rgba(255, 255, 255, 0.58);
}
body.croptex-home .footer {
  background: #0e1529;
  padding-top: 4.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  overflow: visible;
}
body.croptex-home .footer .container {
  overflow: visible;
}
body.croptex-home .footer h3 {
  overflow: visible;
  line-height: 1.25;
  padding-top: 0.15em;
}
body.croptex-home .footer .copy-right {
  background: #0e1529;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.45);
}
body.croptex-home .footer .contact span,
body.croptex-home .footer .contact span a,
body.croptex-home .footer .list-menu .footer-menu li a {
  color: rgba(255, 255, 255, 0.5);
}
body.croptex-home .footer .contact span a:hover,
body.croptex-home .footer .list-menu .footer-menu li a:hover {
  color: var(--color-primary-light);
}
body.croptex-home .footer .menu-title {
  color: rgba(255, 255, 255, 0.85);
}
body.croptex-home header .navbar.on-scroll {
  background: rgba(14, 21, 41, 0.96);
  backdrop-filter: blur(12px);
}
body.croptex-home header .navbar.on-scroll .navbar-brand,
body.croptex-home header .navbar.on-scroll .nav-link {
  color: #ffffff;
}
body.croptex-home header .navbar.on-scroll .nav-link:hover,
body.croptex-home header .navbar.on-scroll .nav-link.is-active,
body.croptex-home header .navbar.on-scroll .nav-link.active {
  color: var(--color-primary-light);
}

/* ---------- Home light mode: white · navy text · blue #0170FD accent ---------- */
html[data-theme="light"] body.croptex-home {
  --color-ink: #0e1529;
  --color-primary: #0170FD;
  --color-primary-light: #3d8fff;
  --color-primary-dark: #0156c7;
  --color-primary-rgb: 1, 112, 253;
  --color-accent: #0170FD;
  --color-accent-soft: #3d8fff;
  --color-hero: #ffffff;
  --color-hero-tile: #eef1f6;
  --color-heading: #0e1529;
  --color-body: rgba(14, 21, 41, 0.72);
  --color-bg: #ffffff;
  --color-bg-alt: #f3f5f9;
  --color-card: #ffffff;
  --color-border: #e4e8f0;
  --color-navbar-bg: rgba(255, 255, 255, 0.94);
  --color-footer-bg: #ffffff;
  --shadow-primary: 0 12px 28px -12px rgba(1, 112, 253, 0.45);
  background: #ffffff;
  color: rgba(14, 21, 41, 0.72);
}
html[data-theme="light"] body.croptex-home .navbar-brand,
html[data-theme="light"] body.croptex-home header .navbar .navbar-brand {
  color: #0e1529;
}
html[data-theme="light"] body.croptex-home .btn.btn-primary,
html[data-theme="light"] body.croptex-home .btn.btn-rounded {
  background-color: #0170FD;
  border-color: #0170FD;
  color: #ffffff;
  box-shadow: 0 12px 28px -12px rgba(1, 112, 253, 0.45);
}
html[data-theme="light"] body.croptex-home .btn.btn-primary:hover,
html[data-theme="light"] body.croptex-home .btn.btn-rounded:hover {
  background-color: #3d8fff;
  border-color: #3d8fff;
  color: #ffffff;
}
html[data-theme="light"] body.croptex-home #trust,
html[data-theme="light"] body.croptex-home #promo,
html[data-theme="light"] body.croptex-home #delivery,
html[data-theme="light"] body.croptex-home #about-repair,
html[data-theme="light"] body.croptex-home #faq-cards,
html[data-theme="light"] body.croptex-home #faq,
html[data-theme="light"] body.croptex-home .subscribe {
  background: #ffffff;
  color: rgba(11, 18, 32, 0.7);
}
html[data-theme="light"] body.croptex-home #delivery,
html[data-theme="light"] body.croptex-home #faq-cards {
  background: #fafafa;
}
html[data-theme="light"] body.croptex-home .hero-banner.croptex-hero {
  background: #ffffff;
}
html[data-theme="light"] body.croptex-home .hero-banner.croptex-hero h1,
html[data-theme="light"] body.croptex-home .croptex-section-head h1,
html[data-theme="light"] body.croptex-home .croptex-section-head h2,
html[data-theme="light"] body.croptex-home #about-repair h2,
html[data-theme="light"] body.croptex-home #faq h2,
html[data-theme="light"] body.croptex-home .repair h2 {
  color: #0e1529;
}
html[data-theme="light"] body.croptex-home .hero-banner.croptex-hero .croptex-section-head p,
html[data-theme="light"] body.croptex-home .croptex-section-head p,
html[data-theme="light"] body.croptex-home .croptex-seo__text p,
html[data-theme="light"] body.croptex-home .repair p {
  color: rgba(11, 18, 32, 0.62);
}
html[data-theme="light"] body.croptex-home .croptex-trust-card,
html[data-theme="light"] body.croptex-home .croptex-faq-card {
  background: linear-gradient(180deg, #ffffff 0%, #f7f7f8 100%);
  border-color: rgba(11, 18, 32, 0.08);
  color: rgba(11, 18, 32, 0.72);
  box-shadow: 0 12px 30px -22px rgba(11, 18, 32, 0.3);
}
html[data-theme="light"] body.croptex-home .croptex-faq-card:hover {
  border-color: rgba(var(--color-primary-rgb), 0.28);
  box-shadow: 0 18px 40px -22px rgba(var(--color-primary-rgb), 0.22);
}
html[data-theme="light"] body.croptex-home .croptex-delivery-card,
html[data-theme="light"] body.croptex-home #delivery .croptex-delivery-card,
html[data-theme="light"] #delivery .croptex-delivery-card {
  background: #ffffff !important;
  border: 1px solid rgba(11, 18, 32, 0.1) !important;
  color: rgba(11, 18, 32, 0.72);
  box-shadow: none !important;
}
html[data-theme="light"] body.croptex-home .croptex-delivery-card:hover {
  border-color: rgba(11, 18, 32, 0.16);
}
html[data-theme="light"] body.croptex-home .croptex-delivery-card.is-featured,
html[data-theme="light"] body.croptex-home .croptex-delivery-card.is-featured:hover,
html[data-theme="light"] body.croptex-home #delivery .croptex-delivery-card.is-featured,
html[data-theme="light"] #delivery .croptex-delivery-card.is-featured {
  border-color: rgba(var(--color-primary-rgb), 0.85) !important;
  box-shadow:
    0 0 0 1px rgba(var(--color-primary-rgb), 0.28),
    0 0 24px rgba(var(--color-primary-rgb), 0.22),
    0 12px 28px -16px rgba(var(--color-primary-rgb), 0.35) !important;
}
html[data-theme="light"] body.croptex-home .why .card.croptex-trust-card {
  background: #ffffff !important;
  border: 1px solid rgba(11, 18, 32, 0.08) !important;
}
html[data-theme="light"] body.croptex-home .why .card.croptex-trust-card h5,
html[data-theme="light"] body.croptex-home .why .card.croptex-trust-card.soft-blue h5,
html[data-theme="light"] body.croptex-home .why .card.croptex-trust-card.blue h5,
html[data-theme="light"] body.croptex-home .why .card.croptex-trust-card.yellow h5,
html[data-theme="light"] body.croptex-home .why .card.croptex-trust-card.green h5,
html[data-theme="light"] body.croptex-home .why .card.croptex-trust-card.dark-blue h5,
html[data-theme="light"] body.croptex-home .why .card.croptex-trust-card.purple h5,
html[data-theme="light"] body.croptex-home .why .card.croptex-trust-card.orange h5,
html[data-theme="light"] body.croptex-home .why .card.croptex-trust-card.violet h5,
html[data-theme="light"] body.croptex-home .croptex-trust-card h5,
html[data-theme="light"] body.croptex-home .croptex-delivery-card h3,
html[data-theme="light"] body.croptex-home .croptex-faq-card h3,
html[data-theme="light"] body.croptex-home .croptex-trust-card__value,
html[data-theme="light"] body.croptex-home #delivery .croptex-delivery-card h3 {
  color: #0e1529 !important;
}
html[data-theme="light"] body.croptex-home .croptex-trust-card p,
html[data-theme="light"] body.croptex-home .croptex-delivery-card p,
html[data-theme="light"] body.croptex-home .croptex-faq-card p,
html[data-theme="light"] body.croptex-home #delivery .croptex-delivery-card p {
  color: rgba(11, 18, 32, 0.58) !important;
}
html[data-theme="light"] body.croptex-home .croptex-delivery__bg {
  background:
    radial-gradient(ellipse 80% 55% at 50% 0%, rgba(var(--color-primary-rgb), 0.06), transparent 55%),
    radial-gradient(ellipse 60% 50% at 85% 90%, rgba(11, 18, 32, 0.03), transparent 50%),
    linear-gradient(180deg, #ffffff 0%, #fafafa 45%, #ffffff 100%);
}
html[data-theme="light"] body.croptex-home .croptex-delivery__bg::before {
  opacity: 0.35;
  background-image:
    linear-gradient(rgba(11, 18, 32, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(11, 18, 32, 0.05) 1px, transparent 1px),
    linear-gradient(135deg, rgba(11, 18, 32, 0.035) 1px, transparent 1px);
}
html[data-theme="light"] body.croptex-home .croptex-seo__figure {
  background: #ececec;
  border: 1px solid rgba(11, 18, 32, 0.08);
  box-shadow: 0 18px 44px -28px rgba(14, 21, 41, 0.22);
}
html[data-theme="light"] body.croptex-home .croptex-seo__icon {
  background: rgba(var(--color-primary-rgb), 0.12);
  color: var(--color-primary);
}
html[data-theme="light"] body.croptex-home .faq .accordion-faq .accordion-item {
  background: #ffffff;
  border: 1px solid rgba(11, 18, 32, 0.1) !important;
}
html[data-theme="light"] body.croptex-home .faq .accordion-faq .accordion-button {
  background: #ffffff;
  color: #0e1529;
}
html[data-theme="light"] body.croptex-home .faq .accordion-faq .accordion-button:not(.collapsed) {
  background: #f7f7f7;
  color: var(--color-primary);
}
html[data-theme="light"] body.croptex-home .faq .accordion-faq .accordion-body {
  background: #fafafa;
  color: rgba(11, 18, 32, 0.68);
}
html[data-theme="light"] body.croptex-home .subscribe {
  background: #ffffff;
  bottom: 0;
}
html[data-theme="light"] body.croptex-home .subscribe .card {
  background: #ffffff;
  border: 1px solid rgba(11, 18, 32, 0.08);
  box-shadow: 0 16px 40px -24px rgba(var(--color-primary-rgb), 0.28);
  color: rgba(11, 18, 32, 0.72);
}
html[data-theme="light"] body.croptex-home .subscribe .card h2 {
  color: #0e1529;
}
html[data-theme="light"] body.croptex-home .subscribe .card p {
  color: rgba(11, 18, 32, 0.58);
}
html[data-theme="light"] body.croptex-home .footer {
  background: #ffffff;
  border-top: 1px solid rgba(11, 18, 32, 0.08);
}
html[data-theme="light"] body.croptex-home .footer h3 {
  color: #0e1529;
}
html[data-theme="light"] body.croptex-home .footer .copy-right {
  background: #ffffff;
  border-top: 1px solid rgba(11, 18, 32, 0.08);
  color: rgba(11, 18, 32, 0.45);
}
html[data-theme="light"] body.croptex-home .footer .contact span,
html[data-theme="light"] body.croptex-home .footer .contact span a,
html[data-theme="light"] body.croptex-home .footer .list-menu .footer-menu li a {
  color: rgba(11, 18, 32, 0.55);
}
html[data-theme="light"] body.croptex-home .footer .contact span a:hover,
html[data-theme="light"] body.croptex-home .footer .list-menu .footer-menu li a:hover {
  color: var(--color-primary);
}
html[data-theme="light"] body.croptex-home .footer .menu-title {
  color: rgba(11, 18, 32, 0.88);
}
html[data-theme="light"] body.croptex-home header .navbar:not(.on-scroll),
html[data-theme="light"] body.croptex-home:has(.hero-banner.croptex-hero) .navbar:not(.on-scroll) {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
}
html[data-theme="light"] body.croptex-home header .navbar:not(.on-scroll) .navbar-brand,
html[data-theme="light"] body.croptex-home header .navbar:not(.on-scroll) .nav-link,
html[data-theme="light"] body.croptex-home:has(.hero-banner.croptex-hero) .navbar:not(.on-scroll) .navbar-brand,
html[data-theme="light"] body.croptex-home:has(.hero-banner.croptex-hero) .navbar:not(.on-scroll) .nav-link {
  color: #0e1529;
}
html[data-theme="light"] body.croptex-home header .navbar:not(.on-scroll) .nav-link:hover,
html[data-theme="light"] body.croptex-home header .navbar:not(.on-scroll) .nav-link.is-active,
html[data-theme="light"] body.croptex-home header .navbar:not(.on-scroll) .nav-link.active,
html[data-theme="light"] body.croptex-home:has(.hero-banner.croptex-hero) .navbar:not(.on-scroll) .nav-link:hover,
html[data-theme="light"] body.croptex-home:has(.hero-banner.croptex-hero) .navbar:not(.on-scroll) .nav-link.is-active,
html[data-theme="light"] body.croptex-home:has(.hero-banner.croptex-hero) .navbar:not(.on-scroll) .nav-link.active {
  color: var(--color-primary);
}
html[data-theme="light"] body.croptex-home header .navbar.on-scroll {
  background: rgba(255, 255, 255, 0.96);
}
html[data-theme="light"] body.croptex-home header .navbar.on-scroll .navbar-brand,
html[data-theme="light"] body.croptex-home header .navbar.on-scroll .nav-link {
  color: #0e1529;
}
html[data-theme="light"] body.croptex-home header .navbar.on-scroll .nav-link:hover,
html[data-theme="light"] body.croptex-home header .navbar.on-scroll .nav-link.is-active,
html[data-theme="light"] body.croptex-home header .navbar.on-scroll .nav-link.active {
  color: var(--color-primary);
}
html[data-theme="light"] body.croptex-home .dark-mode-toggle {
  border-color: rgba(11, 18, 32, 0.18);
  color: #0e1529;
}
html[data-theme="light"] body.croptex-home .croptex-float__link,
html[data-theme="light"] body.croptex-home .croptex-modal .modal-content {
  background: #ffffff;
  border-color: rgba(11, 18, 32, 0.1);
  color: #0e1529;
}
html[data-theme="light"] body.croptex-home .burger-icon span {
  background: #0e1529;
}

#back-to-top {
  right: 22px;
  bottom: 92px;
}

[data-theme=dark] .croptex-trust-card,
[data-theme=dark] .croptex-faq-card,
[data-theme=dark] .croptex-float__link,
[data-theme=dark] .croptex-modal .modal-content {
  background: var(--color-card);
  border-color: var(--color-border);
}
[data-theme=dark] .croptex-modal .modal-content {
  color: #F1F5F9;
  border: 1px solid #475569;
  box-shadow: 0 24px 60px -20px rgba(0, 0, 0, 0.8);
}
[data-theme=dark] .croptex-modal .modal-header {
  border-bottom-color: #475569;
}
[data-theme=dark] .croptex-modal .modal-title,
[data-theme=dark] .croptex-modal .form-label {
  color: #F8FAFC;
}
[data-theme=dark] .croptex-modal .btn-close {
  filter: invert(1) grayscale(1) brightness(1.8);
}
[data-theme=dark] .croptex-modal .form-control,
[data-theme=dark] .croptex-modal .form-select {
  color: #0e1529;
  background-color: #FFFFFF;
  border-color: #CBD5E1;
}
[data-theme=dark] .croptex-modal .form-control::placeholder {
  color: #64748B;
}
[data-theme=dark] .croptex-modal .form-control:focus,
[data-theme=dark] .croptex-modal .form-select:focus {
  border-color: #E85A5C;
  box-shadow: 0 0 0 0.2rem rgba(232, 90, 92, 0.2);
}
[data-theme=dark] .croptex-modal .croptex-request-success h3,
[data-theme=dark] .croptex-modal .croptex-request-success p {
  color: #F8FAFC;
}
html[data-theme="dark"] body.croptex-home #croptex-request-modal .croptex-modal,
html[data-theme="dark"] body.croptex-home #croptex-request-modal .croptex-modal .modal-title,
html[data-theme="dark"] body.croptex-home #croptex-request-modal .croptex-modal .form-label,
html[data-theme="dark"] body.croptex-home #croptex-request-modal .croptex-modal .modal-body,
html[data-theme="dark"] body.croptex-home #croptex-request-modal .croptex-modal p,
html[data-theme="dark"] body.croptex-home #croptex-request-modal .croptex-modal h3 {
  color: #FFFFFF !important;
}
html[data-theme="dark"] body.croptex-home #croptex-request-modal .croptex-modal {
  background-color: #090909 !important;
  border-color: rgba(232, 90, 92, 0.65) !important;
}
html[data-theme="dark"] body.croptex-home #croptex-request-modal .croptex-modal .form-control,
html[data-theme="dark"] body.croptex-home #croptex-request-modal .croptex-modal .form-select {
  color: #FFFFFF !important;
  background-color: #161e36 !important;
  border-color: rgba(255, 255, 255, 0.18) !important;
}
html[data-theme="dark"] body.croptex-home #croptex-request-modal .croptex-modal .form-control::placeholder {
  color: rgba(255, 255, 255, 0.5) !important;
}
html[data-theme="dark"] body.croptex-home #croptex-request-modal .croptex-modal .form-select option {
  color: #FFFFFF;
  background-color: #161e36;
}

/* Delivery block — home overrides (pattern + featured card) */
body.croptex-home #delivery.croptex-delivery,
body.croptex-home section#delivery {
  background: transparent !important;
}
body.croptex-home #delivery .croptex-delivery-card,
#delivery .croptex-delivery-card {
  background: #161e36 !important;
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
  border-radius: 18px !important;
  box-shadow: none !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: flex-start !important;
  padding: 28px 28px 24px !important;
}
body.croptex-home #delivery .croptex-delivery-card.is-featured,
#delivery .croptex-delivery-card.is-featured {
  border-color: rgba(var(--color-primary-rgb), 0.85) !important;
  box-shadow:
    0 0 0 1px rgba(var(--color-primary-rgb), 0.35),
    0 0 28px rgba(var(--color-primary-rgb), 0.35),
    0 12px 36px -16px rgba(var(--color-primary-rgb), 0.45) !important;
}
body.croptex-home #delivery .croptex-delivery-card__icon,
#delivery .croptex-delivery-card__icon {
  width: 52px !important;
  height: 52px !important;
  border-radius: 50% !important;
  background: var(--color-primary) !important;
  color: #ffffff !important;
  box-shadow: none !important;
  margin-bottom: 16px !important;
}
body.croptex-home #delivery .croptex-delivery-card__icon.has-logo,
#delivery .croptex-delivery-card__icon.has-logo {
  background: #ffffff !important;
  padding: 10px !important;
}
body.croptex-home #delivery .croptex-delivery-card h3,
#delivery .croptex-delivery-card h3 {
  color: #ffffff !important;
  margin-bottom: 8px !important;
}
body.croptex-home #delivery .croptex-delivery-card p,
#delivery .croptex-delivery-card p {
  color: rgba(255, 255, 255, 0.55) !important;
  margin-bottom: 20px !important;
}
body.croptex-home #delivery .croptex-delivery-card__btn,
#delivery .btn.croptex-delivery-card__btn {
  background: var(--color-primary) !important;
  border: none !important;
  border-radius: 999px !important;
  color: #ffffff !important;
  box-shadow: 0 10px 28px -4px rgba(var(--color-primary-rgb), 0.7) !important;
  padding: 0.7rem 1.35rem !important;
}
[data-theme=dark] .croptex-page-hero {
  background: var(--color-bg-alt);
}
[data-theme=dark] h1,
[data-theme=dark] h2,
[data-theme=dark] h3,
[data-theme=dark] h4,
[data-theme=dark] h5,
[data-theme=dark] h6 {
  color: var(--color-heading);
}

/* ---------- Promo banners (clipped tiles carousel) ---------- */
.croptex-promo-section,
.croptex-promo,
#faq-cards.croptex-service-brief {
  position: relative;
  padding: 12px 0 40px;
  overflow: visible;
}
body.croptex-home #promo.croptex-promo-section {
  padding: 6.25rem 0 2.25rem;
}
@media (max-width: 991px) {
  body.croptex-home #promo.croptex-promo-section {
    padding-top: 5.75rem;
  }
}
@media (max-width: 575px) {
  body.croptex-home #promo.croptex-promo-section {
    padding-top: 5.25rem;
  }
}
body.croptex-home:has(#promo) .hero-banner.croptex-hero {
  padding-top: 3.75rem;
}
@media (max-width: 991px) {
  body.croptex-home:has(#promo) .hero-banner.croptex-hero {
    padding-top: 3.25rem;
  }
}
#promo.croptex-promo-section .croptex-section-head,
#faq-cards.croptex-service-brief .croptex-section-head {
  margin-bottom: 1.5rem;
}
#promo.croptex-promo-section .croptex-promo-card__sub,
#faq-cards.croptex-service-brief .croptex-promo-card__sub {
  max-width: 22ch;
  font-weight: 500;
  opacity: 0.82;
}
.croptex-promo__inner {
  position: relative;
}
.croptex-promo-swiper {
  overflow: visible;
  padding: 4px 2px 8px;
}
.croptex-promo-swiper .swiper-slide {
  height: auto;
}
.croptex-promo-card {
  --promo-radius: 28px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  min-height: 420px;
  height: 100%;
  padding: 22px 18px 20px;
  overflow: hidden;
  isolation: isolate;
  border-radius: var(--promo-radius);
  transition: transform 0.35s ease, filter 0.35s ease;
}
.croptex-promo-card:hover {
  transform: translateY(-4px);
  filter: brightness(1.03);
}
.croptex-promo-card--mist,
.croptex-promo-card--sky,
.croptex-promo-card--ember,
.croptex-promo-card--lilac,
.croptex-promo-card--sage,
.croptex-promo-card--sand,
.croptex-promo-card--tide {
  background: #d9e8f5;
  color: #0f172a;
}
.croptex-promo-card__copy {
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 10px;
  padding: 4px 6px 0;
}
.croptex-promo-card__eyebrow {
  font-family: "Manrope", "Inter", sans-serif;
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  opacity: 0.72;
}
.croptex-promo-card__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.35rem 0.85rem;
  font-family: "Manrope", "Inter", sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #fff;
  background: #111;
  border-radius: 999px;
}
.croptex-promo-card h3 {
  margin: 0;
  font-family: "Manrope", "Inter", sans-serif;
  font-size: clamp(1.55rem, 2.4vw, 2.05rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: inherit;
  text-transform: none;
}
.croptex-promo-card--ember h3 {
  font-size: clamp(1.7rem, 2.6vw, 2.25rem);
  text-transform: uppercase;
  letter-spacing: -0.02em;
}
.croptex-promo-card__accent {
  display: block;
  font-weight: 600;
  font-size: 0.72em;
  letter-spacing: -0.01em;
  opacity: 0.78;
}
.croptex-promo-card__sub {
  margin: 0;
  max-width: 16ch;
  font-size: 0.95rem;
  font-weight: 600;
  line-height: 1.3;
  color: inherit;
  opacity: 0.88;
}
.croptex-promo-card__cta {
  position: relative;
  z-index: 4;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  align-self: center;
  margin-top: auto;
  padding: 0.78rem 1.25rem;
  border: 0;
  border-radius: 999px;
  font-family: "Manrope", "Inter", sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  line-height: 1;
  text-decoration: none;
  color: #fff !important;
  background: #111;
  cursor: pointer;
  transition: background 0.25s ease, transform 0.25s ease;
}
.croptex-promo-card__cta:hover {
  background: var(--color-primary);
  color: #fff !important;
  transform: translateY(-1px);
}
.croptex-promo-card__media {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  height: 58%;
  margin: 0;
  width: 100%;
  pointer-events: none;
}
.croptex-promo-card__media::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 42%;
  z-index: 2;
  pointer-events: none;
}
.croptex-promo-card--mist .croptex-promo-card__media::before,
.croptex-promo-card--sky .croptex-promo-card__media::before,
.croptex-promo-card--ember .croptex-promo-card__media::before,
.croptex-promo-card--lilac .croptex-promo-card__media::before,
.croptex-promo-card--sage .croptex-promo-card__media::before,
.croptex-promo-card--sand .croptex-promo-card__media::before,
.croptex-promo-card--tide .croptex-promo-card__media::before {
  background: linear-gradient(180deg, #d9e8f5 0%, rgba(217, 232, 245, 0) 100%);
}
.croptex-promo-card__media img {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: none;
  height: 100%;
  min-height: 0;
  max-height: none;
  object-fit: cover;
  object-position: center bottom;
  user-select: none;
  display: block;
}
.croptex-promo-card .croptex-promo-card__media {
  margin: 0;
  width: 100%;
  align-items: center;
  justify-content: center;
}
.croptex-promo-card .croptex-promo-card__media::before {
  display: block;
  background: linear-gradient(180deg, #d9e8f5 0%, rgba(217, 232, 245, 0) 100%);
}
.croptex-promo-card .croptex-promo-card__media img {
  object-fit: cover;
  object-position: center bottom;
  max-width: none;
  max-height: none;
  width: 100%;
  height: 100%;
  margin: 0;
  filter: none;
}
.croptex-promo-swiper--no-nav + .croptex-promo-nav,
.croptex-promo-swiper--no-nav .croptex-promo-nav {
  display: none !important;
}
.croptex-promo-nav {
  position: absolute;
  top: 50%;
  z-index: 5;
  width: 42px;
  height: 42px;
  margin-top: -21px;
  border: 0;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #ffffff;
  color: #111;
  box-shadow: 0 10px 28px -12px rgba(0, 0, 0, 0.55);
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease, opacity 0.2s ease;
}
.croptex-promo-nav:hover {
  background: var(--color-primary);
  color: #fff;
  transform: scale(1.05);
}
.croptex-promo-nav.swiper-button-disabled {
  opacity: 0.35;
  pointer-events: none;
}
.croptex-promo-nav--prev {
  left: -6px;
}
.croptex-promo-nav--next {
  right: -6px;
}
@media (min-width: 768px) {
  .croptex-promo-section,
  .croptex-promo {
    padding: 8px 0 48px;
  }
  .croptex-promo-card {
    --promo-radius: 32px;
    min-height: 460px;
    padding: 26px 20px 22px;
  }
  .croptex-promo-card__media {
    height: 60%;
  }
  .croptex-promo-nav--prev {
    left: -10px;
  }
  .croptex-promo-nav--next {
    right: -10px;
  }
}
@media (min-width: 1200px) {
  .croptex-promo-card {
    min-height: 500px;
  }
  .croptex-promo-nav--prev {
    left: -14px;
  }
  .croptex-promo-nav--next {
    right: -14px;
  }
}
html[data-theme="light"] body.croptex-home #promo,
html[data-theme="light"] body.croptex-home .croptex-promo-section {
  background: #ffffff;
}

/* ---------- Header: logo + animated search ---------- */
header .navbar.croptex-topbar {
  padding: 10px 0;
  background: rgba(14, 21, 41, 0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}
@media (min-width: 992px) {
  header .navbar.croptex-topbar {
    padding: 14px 0;
    background: rgba(14, 21, 41, 0.88);
  }
}
header .navbar.croptex-topbar.on-scroll {
  background: rgba(14, 21, 41, 0.96);
}
header .navbar.croptex-topbar .navbar-brand {
  color: #ffffff;
}
.croptex-topbar__inner {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
}
.croptex-topbar .navbar-brand {
  flex: 0 0 auto;
  margin-right: 0;
  z-index: 2;
}
.croptex-search {
  position: relative;
  flex: 1 1 auto;
  max-width: 560px;
  margin: 0 auto;
  z-index: 3;
}
.croptex-search__form {
  margin: 0;
}
.croptex-search__box {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 44px;
  padding: 0 14px 0 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
  transition: border-color 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, transform 0.25s ease;
}
.croptex-search.is-focused .croptex-search__box {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(var(--color-primary-rgb), 0.72);
  box-shadow:
    0 0 0 4px rgba(var(--color-primary-rgb), 0.16),
    0 16px 32px -18px rgba(var(--color-primary-rgb), 0.55);
}
.croptex-search__icon {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.95rem;
  flex-shrink: 0;
  transition: color 0.2s ease, transform 0.35s ease;
}
.croptex-search.is-focused .croptex-search__icon,
.croptex-search.is-typing .croptex-search__icon {
  color: var(--color-primary-light);
  transform: rotate(-12deg);
}
.croptex-search__field {
  position: relative;
  flex: 1 1 auto;
  min-width: 0;
  height: 28px;
}
.croptex-search__input {
  width: 100%;
  height: 28px;
  border: 0;
  outline: 0;
  background: transparent;
  color: #ffffff;
  font-size: 0.95rem;
  font-family: inherit;
  line-height: 28px;
  caret-color: var(--color-primary);
}
.croptex-search__input::-webkit-search-decoration,
.croptex-search__input::-webkit-search-cancel-button {
  -webkit-appearance: none;
}
.croptex-search__ghost {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  pointer-events: none;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.95rem;
  white-space: nowrap;
  overflow: hidden;
  mask-image: linear-gradient(90deg, #000 78%, transparent);
  -webkit-mask-image: linear-gradient(90deg, #000 78%, transparent);
}
.croptex-search__ghost[hidden] {
  display: none;
}
.croptex-search__caret {
  display: inline-block;
  width: 1.5px;
  height: 1.05em;
  margin-left: 2px;
  background: var(--color-primary);
  border-radius: 1px;
  animation: croptexSearchCaret 0.9s steps(1) infinite;
  box-shadow: 0 0 10px rgba(var(--color-primary-rgb), 0.7);
}
@keyframes croptexSearchCaret {
  0%, 49% { opacity: 1; }
  50%, 100% { opacity: 0; }
}
.croptex-search__hotkey {
  flex-shrink: 0;
  min-width: 22px;
  height: 22px;
  padding: 0 5px;
  border-radius: 6px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.72rem;
  line-height: 20px;
  text-align: center;
  font-family: inherit;
}
.croptex-search.is-focused .croptex-search__hotkey,
.croptex-search.is-typing .croptex-search__hotkey {
  opacity: 0;
  pointer-events: none;
}
.croptex-search__drop {
  position: absolute;
  left: 0;
  right: 0;
  top: calc(100% + 8px);
  padding: 8px;
  border-radius: 18px;
  background: rgba(18, 18, 18, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 24px 50px -20px rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  overflow: hidden;
  animation: croptexSearchDrop 0.22s ease;
}
.croptex-search__drop[hidden] {
  display: none;
}
@keyframes croptexSearchDrop {
  from {
    opacity: 0;
    transform: translateY(-6px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.croptex-search__hit {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px 10px;
  border-radius: 12px;
  color: #fff;
  text-decoration: none;
  transition: background 0.18s ease;
}
.croptex-search__hit:hover,
.croptex-search__hit.is-active {
  background: rgba(255, 255, 255, 0.08);
}
.croptex-search__hit-media {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: #1a2340;
  display: grid;
  place-items: center;
  overflow: hidden;
  flex-shrink: 0;
}
.croptex-search__hit-media img {
  width: 78%;
  height: 78%;
  object-fit: contain;
}
.croptex-search__hit-copy {
  display: flex;
  flex-direction: column;
  min-width: 0;
}
.croptex-search__hit-title {
  font-weight: 600;
  font-size: 0.94rem;
  letter-spacing: -0.02em;
}
.croptex-search__hit-title mark {
  background: rgba(var(--color-primary-rgb), 0.28);
  color: inherit;
  padding: 0 2px;
  border-radius: 3px;
}
.croptex-search__hit-hint {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.48);
}
.croptex-search__empty {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 12px 10px 8px;
  color: rgba(255, 255, 255, 0.78);
}
.croptex-search__empty span {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.48);
  margin-bottom: 8px;
}
.croptex-search__cta {
  width: 100%;
  border: 0;
  border-radius: 999px;
  padding: 10px 16px;
  background: var(--color-primary);
  color: #fff;
  font-weight: 600;
  font-size: 0.875rem;
  cursor: pointer;
}
.croptex-search__cta--row {
  margin-top: 6px;
  background: transparent;
  color: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.12);
}
.croptex-search__cta--row:hover,
.croptex-search__cta:hover {
  background: var(--color-primary-light);
  color: #fff;
  border-color: var(--color-primary-light);
}
.visually-hidden {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
@media (max-width: 575.98px) {
  .croptex-topbar .navbar-brand {
    font-size: 20px;
  }
  .croptex-search__hotkey {
    display: none;
  }
  .croptex-search__box {
    min-height: 40px;
    padding-left: 12px;
    padding-right: 12px;
  }
  .croptex-search__ghost,
  .croptex-search__input {
    font-size: 0.875rem;
  }
}
html[data-theme="light"] .croptex-search__box {
  background: rgba(11, 18, 32, 0.05);
  border-color: rgba(11, 18, 32, 0.12);
  box-shadow: none;
}
html[data-theme="light"] .croptex-search.is-focused .croptex-search__box {
  background: #ffffff;
  border-color: rgba(var(--color-primary-rgb), 0.55);
  box-shadow: 0 0 0 4px rgba(var(--color-primary-rgb), 0.12);
}
html[data-theme="light"] .croptex-search__icon {
  color: rgba(11, 18, 32, 0.45);
}
html[data-theme="light"] .croptex-search.is-focused .croptex-search__icon,
html[data-theme="light"] .croptex-search.is-typing .croptex-search__icon {
  color: var(--color-primary);
}
html[data-theme="light"] .croptex-search__input {
  color: #0e1529;
}
html[data-theme="light"] .croptex-search__ghost {
  color: rgba(11, 18, 32, 0.45);
}
html[data-theme="light"] .croptex-search__hotkey {
  border-color: rgba(11, 18, 32, 0.12);
  background: rgba(11, 18, 32, 0.04);
  color: rgba(11, 18, 32, 0.4);
}
html[data-theme="light"] .croptex-search__drop {
  background: rgba(255, 255, 255, 0.98);
  border-color: rgba(11, 18, 32, 0.08);
  box-shadow: 0 24px 50px -24px rgba(11, 18, 32, 0.35);
}
html[data-theme="light"] .croptex-search__hit {
  color: #0e1529;
}
html[data-theme="light"] .croptex-search__hit:hover,
html[data-theme="light"] .croptex-search__hit.is-active {
  background: rgba(11, 18, 32, 0.05);
}
html[data-theme="light"] .croptex-search__hit-media {
  background: #f2f2f2;
}
html[data-theme="light"] .croptex-search__hit-hint,
html[data-theme="light"] .croptex-search__empty span {
  color: rgba(11, 18, 32, 0.5);
}
html[data-theme="light"] .croptex-search__empty {
  color: #0e1529;
}
html[data-theme="light"] .croptex-search__cta--row {
  color: rgba(11, 18, 32, 0.7);
  border-color: rgba(11, 18, 32, 0.12);
}
html[data-theme="light"] header .navbar.croptex-topbar,
html[data-theme="light"] header .navbar.croptex-topbar.on-scroll,
html[data-theme="light"] body.croptex-home header .navbar.croptex-topbar:not(.on-scroll),
html[data-theme="light"] body.croptex-home header .navbar.croptex-topbar.on-scroll {
  background: rgba(255, 255, 255, 0.94);
}
html[data-theme="light"] header .navbar.croptex-topbar .navbar-brand {
  color: #0e1529;
}
@media (prefers-reduced-motion: reduce) {
  .croptex-search__caret,
  .croptex-search__drop {
    animation: none;
  }
}

/* ---------- Brand logos strip (between promo and categories) ---------- */
.croptex-brands {
  padding: 6px 0 10px;
  background: #0e1529;
}
body.croptex-home:has(#brands) .hero-banner.croptex-hero {
  padding-top: 1.75rem;
}
@media (max-width: 991px) {
  body.croptex-home:has(#brands) .hero-banner.croptex-hero {
    padding-top: 1.5rem;
  }
}
body.croptex-home:has(#brands) #promo.croptex-promo-section {
  padding-bottom: 18px;
}
.croptex-brands__row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
}
@media (min-width: 992px) {
  .croptex-brands__row {
    grid-template-columns: repeat(8, minmax(0, 1fr));
    gap: 10px;
  }
}
.croptex-brands__item {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 52px;
  padding: 0 12px;
  border-radius: 10px;
  background: #1a2340;
  text-decoration: none;
  overflow: hidden;
  transition: background 0.2s ease, transform 0.2s ease;
}
.croptex-brands__item:hover {
  background: #242424;
  transform: translateY(-1px);
}
.croptex-brands__logo {
  display: block;
  width: auto;
  height: 22px;
  max-width: 72%;
  object-fit: contain;
}
.croptex-brands__item--samsung .croptex-brands__logo {
  height: 18px;
  max-width: none;
  transform: scale(2.4);
}
.croptex-brands__item--asus .croptex-brands__logo,
.croptex-brands__item--lenovo .croptex-brands__logo,
.croptex-brands__item--nintendo .croptex-brands__logo {
  height: 18px;
  max-width: none;
  transform: scale(2.1);
}
.croptex-brands__item--dji .croptex-brands__logo {
  height: 16px;
  max-width: 70%;
  transform: scale(1.2);
}
.croptex-brands__item--xiaomi .croptex-brands__logo {
  height: 26px;
}
@media (max-width: 575.98px) {
  .croptex-brands__item {
    height: 46px;
    border-radius: 8px;
    padding: 0 8px;
  }
  .croptex-brands__logo {
    height: 18px;
  }
  .croptex-brands__item--xiaomi .croptex-brands__logo {
    height: 22px;
  }
}
html[data-theme="light"] body.croptex-home .croptex-brands {
  background: #ffffff;
}
html[data-theme="light"] .croptex-brands__item {
  background: #f2f2f2;
}
html[data-theme="light"] .croptex-brands__item:hover {
  background: #e9e9e9;
}
html[data-theme="light"] .croptex-brands__item--apple .croptex-brands__logo,
html[data-theme="light"] .croptex-brands__item--dji .croptex-brands__logo,
html[data-theme="light"] .croptex-brands__item--playstation .croptex-brands__logo,
html[data-theme="light"] .croptex-brands__item--nintendo .croptex-brands__logo,
html[data-theme="light"] .croptex-brands__item--asus .croptex-brands__logo,
html[data-theme="light"] .croptex-brands__item--lenovo .croptex-brands__logo {
  filter: invert(1);
}

/* ---------- Home two-column: catalog + main ---------- */
.croptex-home-layout {
  padding-top: 5.5rem;
  padding-bottom: 0.5rem;
}
@media (min-width: 992px) {
  .croptex-home-layout {
    padding-top: 6.15rem;
  }
}
@media (min-width: 992px) {
  .croptex-home-layout {
    display: grid;
    grid-template-columns: 268px minmax(0, 1fr);
    gap: 18px;
    align-items: stretch;
  }
}
.croptex-home-main {
  min-width: 0;
  overflow: hidden;
}
.croptex-card-tone {
  display: flex;
  align-items: center;
  margin: 0;
  flex: 0 0 auto;
}
.croptex-card-tone__label {
  font-family: "Manrope", "Inter", sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  color: rgba(14, 21, 41, 0.5);
}
.croptex-card-tone__switch {
  display: inline-flex;
  padding: 3px;
  border-radius: 999px;
  background: #ececec;
  border: 1px solid rgba(14, 21, 41, 0.08);
}
.croptex-card-tone__btn {
  border: 0;
  background: transparent;
  border-radius: 999px;
  padding: 6px 14px;
  font-family: "Manrope", "Inter", sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  line-height: 1;
  color: rgba(14, 21, 41, 0.5);
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}
.croptex-card-tone__btn.is-active {
  background: #ffffff;
  color: #0e1529;
  box-shadow: 0 2px 8px rgba(14, 21, 41, 0.08);
}
html[data-card-tone="blue"] .croptex-card-tone__btn[data-tone="blue"].is-active,
html:not([data-card-tone]) .croptex-card-tone__btn[data-tone="blue"].is-active {
  background: #d9e8f5;
}
html[data-card-tone="gray"] .croptex-card-tone__btn[data-tone="gray"].is-active {
  background: #ffffff;
}
@media (min-width: 992px) {
  .croptex-home-main {
    display: flex;
    flex-direction: column;
    min-height: 100%;
  }
}
.croptex-home-main > #promo,
.croptex-home-main > #brands {
  width: 100%;
}
.croptex-home-main .container {
  max-width: none;
  width: 100%;
  padding-left: 0;
  padding-right: 0;
}
/* Categories sit outside home-layout for full-bleed background */
body.croptex-home #categories.croptex-cats-showcase,
body.croptex-home #categories.hero-banner.croptex-hero {
  display: block;
  width: 100%;
  max-width: none;
  margin-left: 0;
  margin-right: 0;
  box-sizing: border-box;
}
body.croptex-home #categories.croptex-cats-showcase > .container {
  max-width: 1320px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-left: 16px;
  padding-right: 16px;
}
@media (min-width: 992px) {
  body.croptex-home #categories.croptex-cats-showcase > .container {
    padding-left: 24px;
    padding-right: 24px;
  }
}
body.croptex-home:has(.croptex-home-layout) #promo.croptex-promo-section {
  padding: 0 0 12px;
  overflow: hidden;
}
body.croptex-home:has(.croptex-home-layout) #brands.croptex-brands {
  background: transparent;
  padding: 0 0 10px;
}
@media (min-width: 992px) {
  body.croptex-home:has(.croptex-home-layout) #promo.croptex-promo-section {
    flex: 1 1 auto;
    display: flex;
    flex-direction: column;
    padding-bottom: 12px;
    min-height: 0;
  }
  body.croptex-home:has(.croptex-home-layout) #promo > .container,
  body.croptex-home:has(.croptex-home-layout) #promo .croptex-promo__inner {
    flex: 1 1 auto;
    display: flex;
    flex-direction: column;
    min-height: 0;
    width: 100%;
  }
  body.croptex-home:has(.croptex-home-layout) #promo .croptex-promo-swiper {
    flex: 1 1 auto;
    width: 100%;
    min-height: 520px;
    height: 100%;
    overflow: hidden;
  }
  body.croptex-home:has(.croptex-home-layout) #promo .swiper-wrapper {
    height: 100%;
  }
  body.croptex-home:has(.croptex-home-layout) #promo .swiper-slide {
    height: 100% !important;
  }
  body.croptex-home:has(.croptex-home-layout) #promo .croptex-promo-card {
    min-height: 0;
    height: 100%;
  }
  body.croptex-home:has(.croptex-home-layout) #promo .croptex-promo-card__media {
    height: 70%;
  }
  body.croptex-home:has(.croptex-home-layout) #promo .croptex-promo-card h3 {
    font-size: clamp(1.7rem, 2.2vw, 2.2rem);
  }
  body.croptex-home:has(.croptex-home-layout) #brands.croptex-brands {
    flex: 0 0 auto;
    padding: 0;
  }
  body.croptex-home:has(.croptex-home-layout) .croptex-brands__item {
    height: 52px;
  }
}
body.croptex-home:has(.croptex-home-layout) .hero-banner.croptex-hero {
  padding: 52px 0 64px;
}
@media (max-width: 991px) {
  body.croptex-home:has(.croptex-home-layout) .hero-banner.croptex-hero {
    padding: 36px 0 44px;
  }
}

.croptex-catalog {
  background: transparent;
  border-radius: 0;
  overflow: visible;
  margin-bottom: 12px;
}
.croptex-catalog__toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  min-height: 48px;
  padding: 0 16px;
  border: 0;
  background: #1c1c1c;
  color: #ececec;
  font-family: "Manrope", "Inter", sans-serif;
  font-size: 0.95rem;
  font-weight: 650;
  letter-spacing: -0.01em;
  cursor: pointer;
}
.croptex-catalog__toggle i {
  font-size: 0.75rem;
  opacity: 0.55;
  transition: transform 0.2s ease;
}
.croptex-catalog.is-open .croptex-catalog__toggle i {
  transform: rotate(180deg);
}
.croptex-catalog__nav {
  display: none;
}
.croptex-catalog.is-open .croptex-catalog__nav {
  display: block;
}
.croptex-catalog__list {
  list-style: none;
  margin: 0;
  padding: 6px 0 8px;
}
.croptex-catalog__item {
  margin: 0;
}
.croptex-catalog__link {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 52px;
  padding: 6px 14px 6px 12px;
  color: #d4d4d4;
  text-decoration: none !important;
  transition: background 0.15s ease, color 0.15s ease;
}
.croptex-catalog__link:hover,
.croptex-catalog__link:focus-visible {
  background: rgba(255, 255, 255, 0.05);
  color: #ffffff;
}
.croptex-catalog__thumb {
  flex: 0 0 40px;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.croptex-catalog__thumb img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}
.croptex-catalog__thumb i {
  font-size: 1.15rem;
  opacity: 0.8;
}
.croptex-catalog__label {
  flex: 1 1 auto;
  min-width: 0;
  font-family: "Manrope", "Inter", sans-serif;
  font-size: 0.92rem;
  font-weight: 560;
  letter-spacing: -0.01em;
  line-height: 1.25;
}
.croptex-catalog__chevron {
  flex: 0 0 auto;
  font-size: 0.68rem;
  opacity: 0.38;
}
@media (min-width: 992px) {
  .croptex-catalog {
    margin-bottom: 0;
    position: relative;
    z-index: 2;
  }
  .croptex-catalog__toggle {
    display: none;
  }
  .croptex-catalog__nav {
    display: block;
  }
}
html[data-theme="light"] .croptex-catalog {
  background: transparent;
}
html[data-theme="light"] .croptex-catalog__toggle {
  background: #ececec;
  color: #0e1529;
}
html[data-theme="light"] .croptex-catalog__link {
  color: #0e1529;
}
html[data-theme="light"] .croptex-catalog__link:hover,
html[data-theme="light"] .croptex-catalog__link:focus-visible {
  background: rgba(14, 21, 41, 0.05);
  color: #0e1529;
}

/* ---------- Location map ---------- */
.croptex-map {
  position: relative;
  padding: 12px 0 48px;
  background: #0e1529;
}
html[data-theme="light"] body.croptex-home .croptex-map,
html[data-theme="light"] .croptex-map {
  background: #ffffff;
}
.croptex-map__layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  align-items: stretch;
}
@media (min-width: 992px) {
  .croptex-map__layout {
    grid-template-columns: minmax(0, 1.2fr) minmax(300px, 0.8fr);
    gap: 0;
    align-items: center;
  }
  .croptex-map__shell {
    margin-right: 36px;
  }
  .croptex-map__lead {
    position: relative;
    z-index: 3;
    margin-left: -96px;
    box-shadow:
      0 28px 56px -24px rgba(14, 21, 41, 0.35),
      0 8px 24px -8px rgba(14, 21, 41, 0.18);
  }
}
.croptex-map__shell {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 28px 56px -32px rgba(0, 0, 0, 0.65);
  background: #151d38;
  min-height: 100%;
}
html[data-theme="light"] .croptex-map__shell {
  border-color: rgba(14, 21, 41, 0.08);
  box-shadow: 0 24px 48px -28px rgba(14, 21, 41, 0.28);
  background: #eef1f6;
}
.croptex-map__lead {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding: 24px 22px;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: #151d38;
  color: #f4f7fb;
  box-shadow: 0 28px 56px -32px rgba(0, 0, 0, 0.65);
}
.croptex-map__lead h3 {
  margin: 0 0 6px;
  font-family: "Manrope", "Inter", sans-serif;
  font-size: 1.35rem;
  font-weight: 750;
  letter-spacing: -0.02em;
  color: inherit;
}
.croptex-map__lead-sub {
  margin: 0 0 16px;
  font-size: 0.9rem;
  line-height: 1.35;
  opacity: 0.72;
}
.croptex-map__form .mb-3 {
  margin-bottom: 0.75rem !important;
}
.croptex-map__form .form-label {
  color: inherit;
  opacity: 0.85;
  font-weight: 600;
}
.croptex-map__form .form-control,
.croptex-map__form .form-select {
  border-radius: 12px;
  border-color: rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.06);
  color: #f4f7fb;
}
.croptex-map__form .form-control::placeholder {
  color: rgba(244, 247, 251, 0.45);
}
.croptex-map__form .form-select option {
  color: #0e1529;
}
.croptex-map__lead .croptex-request-success h3 {
  color: inherit;
}
html[data-theme="light"] .croptex-map__lead {
  border-color: rgba(14, 21, 41, 0.08);
  background: rgba(255, 255, 255, 0.96);
  color: #0e1529;
  box-shadow: 0 24px 48px -28px rgba(14, 21, 41, 0.2);
}
@media (min-width: 992px) {
  html[data-theme="light"] .croptex-map__lead {
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    box-shadow:
      0 28px 56px -24px rgba(14, 21, 41, 0.32),
      0 8px 24px -8px rgba(14, 21, 41, 0.16);
  }
}
html[data-theme="light"] .croptex-map__form .form-control,
html[data-theme="light"] .croptex-map__form .form-select {
  border-color: rgba(14, 21, 41, 0.12);
  background: #ffffff;
  color: #0e1529;
}
html[data-theme="light"] .croptex-map__form .form-control::placeholder {
  color: rgba(14, 21, 41, 0.4);
}
.croptex-map__canvas,
.croptex-map__canvas iframe,
.croptex-map .leaflet-container {
  width: 100%;
  height: 440px;
  border: 0;
  display: block;
  background: #151d38;
}
@media (min-width: 992px) {
  .croptex-map__canvas,
  .croptex-map__canvas iframe,
  .croptex-map .leaflet-container {
    height: 100%;
    min-height: 480px;
  }
  .croptex-map__shell {
    min-height: 480px;
  }
}
.croptex-map .leaflet-control-attribution {
  background: rgba(14, 21, 41, 0.55);
  color: rgba(255, 255, 255, 0.55);
  font-size: 10px;
}
.croptex-map .leaflet-control-attribution a {
  color: rgba(255, 255, 255, 0.75);
}
html[data-theme="dark"] .croptex-map .leaflet-tile-pane {
  filter: invert(0.92) hue-rotate(180deg) brightness(0.95) saturate(0.35);
}
html[data-theme="light"] .croptex-map .leaflet-control-attribution {
  background: rgba(255, 255, 255, 0.72);
  color: rgba(14, 21, 41, 0.5);
}
html[data-theme="light"] .croptex-map .leaflet-control-attribution a {
  color: #0e1529;
}
.croptex-map .leaflet-bar {
  border: 0;
  box-shadow: 0 10px 24px -12px rgba(0, 0, 0, 0.45);
  overflow: hidden;
  border-radius: 12px;
}
.croptex-map .leaflet-bar a {
  width: 36px;
  height: 36px;
  line-height: 36px;
  background: rgba(14, 21, 41, 0.88);
  color: #fff;
  border-bottom-color: rgba(255, 255, 255, 0.08);
}
.croptex-map .leaflet-bar a:hover {
  background: #0170FD;
  color: #fff;
}
html[data-theme="light"] .croptex-map .leaflet-bar a {
  background: rgba(255, 255, 255, 0.94);
  color: #0e1529;
  border-bottom-color: rgba(14, 21, 41, 0.08);
}
html[data-theme="light"] .croptex-map .leaflet-bar a:hover {
  background: #0e1529;
  color: #fff;
}
.croptex-map__card {
  position: absolute;
  left: 18px;
  bottom: 18px;
  z-index: 1100;
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 196px;
  padding: 12px 18px 12px 12px;
  border-radius: 16px;
  background: rgba(14, 21, 41, 0.92);
  color: #ffffff;
  text-decoration: none !important;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 16px 36px -18px rgba(0, 0, 0, 0.55);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.croptex-map__card:hover {
  transform: translateY(-2px);
  color: #ffffff;
  box-shadow: 0 20px 40px -16px rgba(1, 112, 253, 0.45);
}
html[data-theme="light"] .croptex-map__card {
  background: rgba(255, 255, 255, 0.96);
  color: #0e1529;
  border-color: rgba(14, 21, 41, 0.08);
}
html[data-theme="light"] .croptex-map__card:hover {
  color: #0e1529;
}
.croptex-map__pin {
  flex: 0 0 36px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #0170FD;
  box-shadow: 0 0 0 6px rgba(1, 112, 253, 0.22);
  position: relative;
}
.croptex-map__pin::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 9px;
  width: 10px;
  height: 10px;
  margin-left: -5px;
  border-radius: 50%;
  background: #fff;
}
.croptex-map__meta {
  display: flex;
  flex-direction: column;
  gap: 2px;
  line-height: 1.25;
}
.croptex-map__meta strong {
  font-family: "Manrope", "Inter", sans-serif;
  font-size: 0.98rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}
.croptex-map__meta span {
  font-size: 0.82rem;
  opacity: 0.72;
}
.croptex-map-marker {
  position: relative;
  width: 56px;
  height: 56px;
  background: none !important;
  border: 0 !important;
}
.croptex-map-marker__dot {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 18px;
  height: 18px;
  margin: -9px 0 0 -9px;
  border-radius: 50%;
  background: #0170FD;
  border: 3px solid #fff;
  box-shadow: 0 8px 18px -6px rgba(1, 112, 253, 0.85);
  z-index: 2;
}
.croptex-map-marker__pulse {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 18px;
  height: 18px;
  margin: -9px 0 0 -9px;
  border-radius: 50%;
  background: rgba(1, 112, 253, 0.45);
  animation: croptex-map-pulse 2.2s ease-out infinite;
}
@keyframes croptex-map-pulse {
  0% { transform: scale(1); opacity: 0.7; }
  100% { transform: scale(4.2); opacity: 0; }
}
.footer-address {
  margin-bottom: 12px;
}
.footer-address a {
  display: inline-block;
  font-family: "Manrope", "Inter", sans-serif;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.35;
  color: var(--color-heading);
  text-decoration: none !important;
}
body.croptex-home .footer .footer-address a {
  color: #ffffff;
}
html[data-theme="light"] body.croptex-home .footer .footer-address a {
  color: #0e1529;
}
@media (max-width: 575.98px) {
  .croptex-map {
    padding: 8px 0 32px;
  }
  .croptex-map__shell {
    border-radius: 18px;
  }
  .croptex-map__canvas,
  .croptex-map__canvas iframe,
  .croptex-map .leaflet-container {
    height: 340px;
  }
  .croptex-map__card {
    left: 12px;
    right: 12px;
    bottom: 12px;
    min-width: 0;
  }
}

/* ========== Premium pass: rhythm, trust, quieter catalog/brands ========== */

/* Tighter, calmer section breathing */
body.croptex-home #categories.hero-banner.croptex-hero {
  padding-top: 3.25rem;
  padding-bottom: 3.75rem;
}
body.croptex-home #about-repair {
  padding-top: 4rem;
  padding-bottom: 3.5rem;
}
body.croptex-home #trust.croptex-trust-premium {
  padding-top: 3.25rem;
  padding-bottom: 3.25rem;
}
body.croptex-home #delivery.croptex-delivery {
  padding-top: 3.5rem;
  padding-bottom: 3.5rem;
}
body.croptex-home #faq.faq {
  padding-top: 3.5rem;
  padding-bottom: 3.25rem;
}
@media (max-width: 768px) {
  body.croptex-home #categories.hero-banner.croptex-hero {
    padding-top: 2.5rem;
    padding-bottom: 2.75rem;
  }
  body.croptex-home #about-repair,
  body.croptex-home #trust.croptex-trust-premium,
  body.croptex-home #delivery.croptex-delivery,
  body.croptex-home #faq.faq {
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
  }
}

/* Section heads: less weight, more air */
body.croptex-home .croptex-section-head {
  margin-bottom: 2.35rem;
}
body.croptex-home .croptex-section-head h2,
body.croptex-home #about-repair h2,
body.croptex-home #faq h2 {
  font-size: clamp(1.65rem, 2.4vw, 2.15rem);
  font-weight: 680;
  letter-spacing: -0.035em;
  line-height: 1.15;
}
body.croptex-home .croptex-section-head p {
  max-width: 36rem;
  font-size: 1.02rem;
  line-height: 1.55;
  opacity: 0.88;
}

/* Compact premium trust strip */
#trust.croptex-trust-premium,
body.croptex-home #trust.croptex-trust-premium {
  background: #0e1529;
}
html[data-theme="light"] body.croptex-home #trust.croptex-trust-premium,
html[data-theme="light"] #trust.croptex-trust-premium,
html[data-theme="light"] #trust.why {
  background: #ffffff;
}
.croptex-trust-premium__head {
  margin-bottom: 2rem;
  text-align: left;
  max-width: 28rem;
}
.croptex-trust-premium__head h2 {
  margin: 0;
  font-family: "Manrope", "Inter", sans-serif;
  font-size: clamp(1.55rem, 2.2vw, 1.95rem);
  font-weight: 680;
  letter-spacing: -0.035em;
  line-height: 1.15;
  color: #ffffff;
}
.croptex-trust-premium__head p {
  margin: 0.65rem 0 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.98rem;
  line-height: 1.5;
}
html[data-theme="light"] .croptex-trust-premium__head h2 {
  color: #0e1529;
}
html[data-theme="light"] .croptex-trust-premium__head p {
  color: rgba(14, 21, 41, 0.58);
}
.croptex-trust-premium__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
@media (min-width: 768px) {
  .croptex-trust-premium__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
html[data-theme="light"] .croptex-trust-premium__grid {
  border-top-color: rgba(14, 21, 41, 0.1);
}
.croptex-trust-premium__item {
  padding: 1.5rem 0 0.25rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
@media (min-width: 768px) {
  .croptex-trust-premium__item {
    padding: 1.65rem 1.75rem 0.35rem 0;
    border-bottom: 0;
    border-right: 1px solid rgba(255, 255, 255, 0.08);
  }
  .croptex-trust-premium__item:first-child {
    padding-left: 0;
  }
  .croptex-trust-premium__item:last-child {
    border-right: 0;
    padding-right: 0;
    padding-left: 1.75rem;
  }
  .croptex-trust-premium__item:nth-child(2) {
    padding-left: 1.75rem;
  }
}
html[data-theme="light"] .croptex-trust-premium__item {
  border-color: rgba(14, 21, 41, 0.09);
}
.croptex-trust-premium__value {
  margin-bottom: 0.55rem;
  font-family: "Manrope", "Inter", sans-serif;
  font-size: clamp(1.35rem, 2vw, 1.65rem);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1.1;
  color: #0170FD;
}
.croptex-trust-premium__item h3 {
  margin: 0 0 0.45rem;
  font-family: "Manrope", "Inter", sans-serif;
  font-size: 1.02rem;
  font-weight: 650;
  letter-spacing: -0.02em;
  color: #ffffff;
}
.croptex-trust-premium__item p {
  margin: 0;
  max-width: 22rem;
  font-size: 0.92rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.55);
}
html[data-theme="light"] .croptex-trust-premium__item h3 {
  color: #0e1529;
}
html[data-theme="light"] .croptex-trust-premium__item p {
  color: rgba(14, 21, 41, 0.55);
}

/* Catalog pages reuse home trust/delivery — keep homepage contrast */
html[data-theme="light"] #delivery.croptex-delivery,
html[data-theme="light"] #delivery {
  background: #fafafa;
  color: rgba(11, 18, 32, 0.7);
}
html[data-theme="light"] #delivery .croptex-section-head h2,
html[data-theme="light"] #delivery .croptex-delivery-head h2 {
  color: #0e1529;
}
html[data-theme="light"] #delivery .croptex-section-head p {
  color: rgba(11, 18, 32, 0.62);
}
html[data-theme="light"] #delivery .croptex-delivery__bg {
  background:
    radial-gradient(ellipse 80% 55% at 50% 0%, rgba(var(--color-primary-rgb), 0.06), transparent 55%),
    radial-gradient(ellipse 60% 50% at 85% 90%, rgba(11, 18, 32, 0.03), transparent 50%),
    linear-gradient(180deg, #ffffff 0%, #fafafa 45%, #ffffff 100%);
}
html[data-theme="light"] #delivery .croptex-delivery__bg::before {
  opacity: 0.35;
  background-image:
    linear-gradient(rgba(11, 18, 32, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(11, 18, 32, 0.05) 1px, transparent 1px),
    linear-gradient(135deg, rgba(11, 18, 32, 0.035) 1px, transparent 1px);
}
html[data-theme="light"] #delivery .croptex-delivery-card h3 {
  color: #0e1529 !important;
}
html[data-theme="light"] #delivery .croptex-delivery-card p {
  color: rgba(11, 18, 32, 0.58) !important;
}

/* Quieter brands: soft strip, less “tile wall” */
body.croptex-home:has(.croptex-home-layout) #brands.croptex-brands {
  padding: 4px 0 2px;
}
.croptex-brands__row {
  gap: 6px;
}
@media (min-width: 992px) {
  .croptex-brands__row {
    gap: 8px;
  }
}
body.croptex-home:has(.croptex-home-layout) .croptex-brands__item {
  height: 44px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.04);
  transition: background 0.2s ease, opacity 0.2s ease;
}
body.croptex-home:has(.croptex-home-layout) .croptex-brands__item:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: none;
}
body.croptex-home:has(.croptex-home-layout) .croptex-brands__logo {
  height: 18px;
  opacity: 0.72;
  transition: opacity 0.2s ease;
}
body.croptex-home:has(.croptex-home-layout) .croptex-brands__item:hover .croptex-brands__logo {
  opacity: 1;
}
html[data-theme="light"] body.croptex-home:has(.croptex-home-layout) .croptex-brands__item {
  height: 52px;
  background: #e7edf6;
  border: 1px solid rgba(14, 21, 41, 0.08);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.75);
}
html[data-theme="light"] body.croptex-home:has(.croptex-home-layout) .croptex-brands__item:hover {
  background: #dce5f2;
}
html[data-theme="light"] body.croptex-home:has(.croptex-home-layout) .croptex-brands__logo {
  height: 22px;
  opacity: 1;
}
html[data-theme="light"] body.croptex-home:has(.croptex-home-layout) .croptex-brands__item:hover .croptex-brands__logo {
  opacity: 1;
}

/* Quieter catalog */
@media (min-width: 992px) {
  .croptex-home-layout {
    grid-template-columns: 248px minmax(0, 1fr);
    gap: 22px;
  }
}
.croptex-catalog__link {
  min-height: 46px;
  gap: 10px;
  padding: 5px 10px 5px 8px;
  color: rgba(212, 212, 212, 0.82);
}
.croptex-catalog__thumb {
  flex-basis: 34px;
  width: 34px;
  height: 34px;
  opacity: 0.88;
}
.croptex-catalog__label {
  font-size: 0.88rem;
  font-weight: 540;
}
.croptex-catalog__chevron {
  opacity: 0.28;
  font-size: 0.62rem;
}
html[data-theme="light"] .croptex-catalog__link {
  color: rgba(14, 21, 41, 0.72);
}
html[data-theme="light"] .croptex-catalog__link:hover,
html[data-theme="light"] .croptex-catalog__link:focus-visible {
  background: rgba(1, 112, 253, 0.06);
  color: #0e1529;
}

/* Delivery / FAQ: slightly calmer card chrome on home */
body.croptex-home #delivery .croptex-delivery-card {
  box-shadow: none;
}
body.croptex-home #faq .accordion-faq .accordion-item {
  border-radius: 12px;
}
