:root {
  --primary: #32B0C6;
  --primary-dark: #2596A9;
  --primary-light: #E8F7FA;
  --ink: #0F2A30;
  --body: #4A5B60;
  --surface: #F7FBFC;
  --amber: #FFB800;
  --radius: 20px;
  --shadow: 0 10px 40px rgba(50, 176, 198, 0.12);
  --shadow-lg: 0 20px 60px rgba(15, 42, 48, 0.14);
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
  overflow-x: hidden;
}

body {
  font-family: 'Inter', sans-serif;
  color: var(--body);
  background: #fff;
  font-size: 1.02rem;
  line-height: 1.7;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  color: var(--ink);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.15;
}

a {
  color: var(--primary);
  text-decoration: none;
  transition: color 0.2s ease;
}

a:hover {
  color: var(--primary-dark);
}

img {
  max-width: 100%;
}

section {
  padding: 90px 0;
}

.section-tight {
  padding: 56px 0;
}

.bg-surface {
  background: var(--surface);
}

.bg-tint {
  background: var(--primary-light);
}

.eyebrow {
  display: inline-block;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--primary);
  background: var(--primary-light);
  padding: 8px 18px;
  border-radius: 100px;
  margin-bottom: 18px;
}

.section-head {
  max-width: 640px;
  margin: 0 auto 56px;
  text-align: center;
}

.section-head h2 {
  font-size: clamp(1.9rem, 3.4vw, 2.6rem);
  margin-bottom: 14px;
}

.section-head p {
  font-size: 1.08rem;
}

.btn-potolo {
  background: var(--primary);
  color: #fff;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  border: none;
  border-radius: 100px;
  padding: 13px 30px;
  transition: all 0.25s ease;
  box-shadow: 0 8px 24px rgba(50, 176, 198, 0.35);
}

.btn-potolo:hover {
  background: var(--primary-dark);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(50, 176, 198, 0.45);
}

.btn-outline-potolo {
  border: 2px solid var(--primary);
  color: var(--primary);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  border-radius: 100px;
  padding: 11px 28px;
  transition: all 0.25s ease;
}

.btn-outline-potolo:hover {
  background: var(--primary);
  color: #fff;
}

.text-link {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.text-link i {
  transition: transform 0.2s ease;
}

.text-link:hover i {
  transform: translateX(5px);
}

.potolo-nav {
  background: transparent;
  padding: 18px 0;
  transition: all 0.3s ease;
}

.potolo-nav.scrolled {
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(12px);
  box-shadow: 0 4px 24px rgba(15, 42, 48, 0.08);
  padding: 10px 0;
}

.potolo-nav .nav-link {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 600;
  color: var(--ink);
  padding: 8px 16px;
  border-radius: 100px;
  white-space: nowrap;
  transition: all 0.2s ease;
}

.potolo-nav .nav-link:hover {
  color: var(--primary);
  background: var(--primary-light);
}

.potolo-nav .nav-link.active {
  color: #fff;
  background: var(--primary);
  box-shadow: 0 6px 18px rgba(50, 176, 198, 0.35);
}

.potolo-nav .nav-link.active:hover {
  color: #fff;
  background: var(--primary-dark);
}

@media (min-width: 992px) {
  .potolo-nav.on-hero:not(.scrolled) .nav-link {
    color: #fff;
  }
  .potolo-nav.on-hero:not(.scrolled) .nav-link:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.16);
  }
  .potolo-nav.on-hero:not(.scrolled) .nav-link.active {
    color: var(--primary-dark);
    background: #fff;
    box-shadow: 0 6px 18px rgba(7, 26, 31, 0.25);
  }
  .potolo-nav.on-hero:not(.scrolled) .nav-link.active:hover {
    color: var(--primary-dark);
    background: var(--primary-light);
  }
}

.potolo-nav .navbar-toggler {
  border: none;
  font-size: 1.7rem;
  color: var(--ink);
  padding: 4px 10px;
}

.potolo-nav.on-hero:not(.scrolled) .navbar-toggler {
  color: #fff;
}

.potolo-nav .navbar-toggler:focus {
  box-shadow: none;
}

.nav-cta {
  padding: 10px 26px;
}

@media (max-width: 991.98px) {
  .offcanvas {
    max-width: 300px;
  }
}

@media (min-width: 992px) {
  .potolo-nav .offcanvas-body {
    display: flex;
    flex-direction: row;
    align-items: center;
    width: 100%;
    gap: 12px;
  }
  .nav-cta {
    flex-shrink: 0;
  }
}

@media (max-width: 991.98px) {
  .potolo-nav .offcanvas-body {
    display: flex;
    flex-direction: column;
    gap: 18px;
  }
}

.potolo-nav .dropdown-menu {
  border: none;
  border-radius: 18px;
  box-shadow: var(--shadow-lg);
  padding: 10px;
  margin-top: 10px;
  min-width: 220px;
}

.potolo-nav .dropdown-item {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 600;
  color: var(--ink);
  border-radius: 12px;
  padding: 10px 14px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.potolo-nav .dropdown-item i {
  color: var(--primary);
  font-size: 1.05rem;
}

.potolo-nav .dropdown-item:hover {
  background: var(--primary-light);
  color: var(--primary-dark);
}

.potolo-nav .dropdown-toggle::after {
  vertical-align: 2px;
}

.potolo-nav .services-mega {
  border: none;
  border-radius: 20px;
  box-shadow: 0 24px 60px rgba(15, 42, 48, 0.16);
  padding: 14px;
  margin-top: 10px;
}

.services-mega-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px;
}

.service-mega-item {
  position: relative;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 12px;
  border-radius: 14px;
  transition: background 0.2s ease;
}

.service-mega-item:hover {
  background: var(--primary-light);
}

.service-mega-icon {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  border-radius: 12px;
  background: var(--surface);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.25s ease;
}

.service-mega-item:hover .service-mega-icon {
  transform: translateY(-2px);
}

.service-mega-icon img {
  width: 28px;
  height: 28px;
  object-fit: contain;
}

.service-mega-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.service-mega-name {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--ink);
}

.service-mega-hint {
  font-size: 0.76rem;
  color: var(--body);
}

.service-mega-item .soon-tag {
  position: absolute;
  top: 10px;
  right: 12px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  font-size: 0.58rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--primary-dark);
  background: var(--primary-light);
  padding: 2px 8px;
  border-radius: 100px;
}

.service-mega-item:hover .soon-tag {
  background: #fff;
}

@media (min-width: 992px) {
  .potolo-nav .services-mega {
    min-width: 500px;
  }
}

@media (max-width: 991.98px) {
  .potolo-nav .services-mega {
    box-shadow: none;
    padding: 6px 0;
    margin-top: 4px;
  }
  .services-mega-grid {
    grid-template-columns: 1fr;
  }
  .service-mega-item .soon-tag {
    position: static;
    margin-left: auto;
  }
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.nav-actions .dropdownnavitem {
  list-style: none;
}

.nav-actions .dropdownnavitem > .nav-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 12px;
}

.nav-actions .dropdownnavitem .dropdown-icon {
  display: none;
}

.nav-actions .dropdownnavitem .flag-icon {
  display: none;
}

.nav-actions #selected-lang {
  width: 25px;
  height: 25px;
  object-fit: cover;
  border-radius: 4px;
}

.nav-actions .language-dropdown {
  border: none;
  border-radius: 18px;
  box-shadow: var(--shadow-lg);
  padding: 10px;
  min-width: 170px;
}

.nav-actions .language-dropdown .dropdown-item {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 600;
  color: var(--ink);
  border-radius: 12px;
  padding: 10px 14px;
}

.nav-actions .language-dropdown .dropdown-item:hover {
  background: var(--primary-light);
  color: var(--primary-dark);
}

@media (max-width: 991.98px) {
  .nav-actions {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
  }
  .nav-actions .nav-cta {
    text-align: center;
  }
}

@media (max-width: 991.98px) {
  .potolo-nav .dropdown-menu {
    box-shadow: none;
    background: var(--surface);
    margin-top: 4px;
  }
}

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-swiper {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-slide {
  position: relative;
  width: 100%;
  height: 100%;
}

.hero-slide-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}

.swiper-slide-active .hero-slide-bg {
  animation: kenburns 7s ease-out forwards;
}

@keyframes kenburns {
  from { transform: scale(1); }
  to { transform: scale(1.08); }
}

.hero-slide::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, rgba(7, 26, 31, 0.82) 0%, rgba(7, 26, 31, 0.55) 45%, rgba(7, 26, 31, 0.18) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  padding-top: 118px;
  padding-bottom: 84px;
  color: #fff;
}

.hero-content h1,
.hero-content > p {
  max-width: 700px;
}

.hero-content .eyebrow {
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
  backdrop-filter: blur(6px);
}

.hero-content h1 {
  color: #fff;
  font-size: clamp(2.3rem, 5vw, 3.6rem);
  margin-bottom: 18px;
}

.hero-content p {
  font-size: 1.14rem;
  color: rgba(255, 255, 255, 0.88);
  max-width: 540px;
  margin-bottom: 26px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
}

.hero-actions .btn-lg {
  padding: 14px 34px;
}

.hero-dots {
  position: absolute;
  bottom: 34px;
  left: 0;
  right: 0;
  z-index: 3;
  display: flex;
  justify-content: center;
  gap: 8px;
}

.hero-dots .swiper-pagination-bullet {
  width: 26px;
  height: 5px;
  border-radius: 100px;
  background: rgba(255, 255, 255, 0.4);
  opacity: 1;
  transition: all 0.3s ease;
}

.hero-dots .swiper-pagination-bullet-active {
  background: var(--primary);
  width: 44px;
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 26px;
  margin-top: 26px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 600;
  font-size: 0.94rem;
  color: rgba(255, 255, 255, 0.92);
}

.trust-row i {
  color: var(--amber);
  margin-right: 6px;
}

.store-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.store-badges.vertical {
  flex-direction: column;
  align-items: flex-start;
}

.store-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: #0B1215;
  color: #fff;
  border-radius: 14px;
  padding: 10px 22px;
  min-width: 185px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  transition: all 0.25s ease;
}

.store-badge:hover {
  transform: translateY(-3px);
  color: #fff;
  box-shadow: 0 14px 30px rgba(11, 18, 21, 0.35);
}

.store-badge i {
  font-size: 1.9rem;
}

.store-badge span {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.store-badge small {
  font-size: 0.62rem;
  letter-spacing: 0.08em;
  opacity: 0.85;
}

.store-badge strong {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.08rem;
}

.stats-band {
  background: #fff;
  padding: 38px 0;
  border-bottom: 1px solid rgba(15, 42, 48, 0.06);
}

.stats-intro h3 {
  font-size: 1.15rem;
  margin: 12px 0 4px;
}

.stats-intro p {
  font-size: 0.92rem;
  margin: 0;
}

.avatar-stack {
  display: flex;
  align-items: center;
}

.avatar-stack img {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #fff;
  box-shadow: 0 2px 8px rgba(15, 42, 48, 0.15);
}

.avatar-stack img + img {
  margin-left: -10px;
}

.avatar-badge {
  margin-left: 12px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  font-size: 0.8rem;
  color: var(--primary-dark);
  background: var(--primary-light);
  padding: 5px 12px;
  border-radius: 100px;
}

.avatar-badge i {
  color: var(--amber);
  font-size: 0.72rem;
}

.stats-row {
  display: flex;
  flex-wrap: wrap;
  gap: 18px 0;
}

.stats-row .stat-item {
  flex: 1 1 0;
  min-width: 150px;
  padding: 2px 20px;
  border-left: 1px solid rgba(15, 42, 48, 0.1);
}

.stat-item h3 {
  font-size: clamp(1.55rem, 2.2vw, 1.9rem);
  color: var(--primary);
  margin-bottom: 2px;
}

.stat-item.counted h3 {
  animation: statPop 0.4s ease;
}

@keyframes statPop {
  0% { transform: scale(1); }
  45% { transform: scale(1.05); }
  100% { transform: scale(1); }
}

.stat-label {
  display: block;
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--body);
}

@media (max-width: 767.98px) {
  .stats-band {
    padding: 32px 0;
  }
  .stats-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px 12px;
  }
  .stats-row .stat-item {
    border-left: none;
    padding: 0;
    min-width: 0;
  }
}

.why-section {
  background-image: linear-gradient(180deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.8) 38%, rgba(255, 255, 255, 0.55) 75%, rgba(255, 255, 255, 0.45) 100%), url('../img/supermarket/potolo-supermarket-checkout-tap-to-pay.jpg');
  background-size: cover;
  background-position: center bottom;
  background-repeat: no-repeat;
}

.wash-sell-online {
  background-image: linear-gradient(180deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.8) 38%, rgba(255, 255, 255, 0.55) 75%, rgba(255, 255, 255, 0.45) 100%), url('../img/business/potolo-merchant-order-tablet.jpg');
  background-size: cover;
  background-position: center 35%;
  background-repeat: no-repeat;
}

.wash-career {
  background-image: linear-gradient(180deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.8) 38%, rgba(255, 255, 255, 0.55) 75%, rgba(255, 255, 255, 0.45) 100%), url('../img/career/potolo-team-break-office.jpg');
  background-size: cover;
  background-position: center 35%;
  background-repeat: no-repeat;
}

.wash-vision {
  background-image: linear-gradient(180deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.8) 38%, rgba(255, 255, 255, 0.55) 75%, rgba(255, 255, 255, 0.45) 100%), url('../img/vision/potolo-vision-strategy-wall.jpg');
  background-size: cover;
  background-position: center 35%;
  background-repeat: no-repeat;
}

.wash-services {
  position: relative;
  background-image: linear-gradient(180deg, rgba(247, 251, 252, 0.86) 0%, rgba(247, 251, 252, 0.8) 50%, rgba(247, 251, 252, 0.88) 100%), url('../img/home/potolo-services-people-illustration.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
}

.services-section {
  padding: 72px 0;
}

.services-section .container {
  position: relative;
  z-index: 1;
}

.services-swiper {
  padding: 4px 4px 48px;
}

.service-slide {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 12px;
  background: #fff;
  border: 1px solid #E7EFF1;
  border-radius: 18px;
  padding: 22px;
  overflow: hidden;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.service-slide::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary) 0%, var(--primary-dark) 100%);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s ease;
}

.service-slide:hover {
  transform: translateY(-6px);
  border-color: rgba(50, 176, 198, 0.35);
  box-shadow: 0 18px 44px rgba(50, 176, 198, 0.16);
}

.service-slide:hover::after {
  transform: scaleX(1);
}

.service-slide-icon {
  width: 58px;
  height: 58px;
  border-radius: 16px;
  background: var(--primary-light);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
}

.service-slide-icon img {
  width: 38px;
  height: 38px;
  object-fit: contain;
}

.service-slide:hover .service-slide-icon {
  transform: translateY(-3px) scale(1.06);
}

.service-slide h3 {
  font-size: 1.1rem;
  margin: 0;
}

.service-slide-link {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  font-size: 0.88rem;
  color: var(--primary);
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.service-slide-link i {
  transition: transform 0.2s ease;
}

.service-slide:hover .service-slide-link i {
  transform: translateX(5px);
}

.service-slide-link.soon {
  color: var(--body);
  font-weight: 600;
  font-size: 0.82rem;
}

.services-swiper .swiper-pagination-bullet {
  background: var(--primary);
}

@media (max-width: 767.98px) {
  .services-section {
    padding: 54px 0;
  }
}

.wash-faq-home {
  background-image: linear-gradient(180deg, rgba(255, 255, 255, 0.97) 0%, rgba(255, 255, 255, 0.92) 40%, rgba(255, 255, 255, 0.85) 100%), url('../img/home/potolo-city-pocket-illustration.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.wash-faq-business {
  background-image: linear-gradient(180deg, rgba(255, 255, 255, 0.97) 0%, rgba(255, 255, 255, 0.92) 40%, rgba(255, 255, 255, 0.85) 100%), url('../img/business/potolo-platform-illustration.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.wash-faq-restaurant {
  background-image: linear-gradient(180deg, rgba(255, 255, 255, 0.97) 0%, rgba(255, 255, 255, 0.92) 40%, rgba(255, 255, 255, 0.85) 100%), url('../img/about/potolo-everyday-app-illustration.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.wash-faq-grocery {
  background-image: linear-gradient(180deg, rgba(255, 255, 255, 0.97) 0%, rgba(255, 255, 255, 0.92) 40%, rgba(255, 255, 255, 0.85) 100%), url('../img/home/potolo-web-order-illustration.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.wash-faq-shop {
  background-image: linear-gradient(180deg, rgba(255, 255, 255, 0.97) 0%, rgba(255, 255, 255, 0.92) 40%, rgba(255, 255, 255, 0.85) 100%), url('../img/vision/potolo-local-first-illustration.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.wash-faq-supermarket {
  background-image: linear-gradient(180deg, rgba(255, 255, 255, 0.97) 0%, rgba(255, 255, 255, 0.92) 40%, rgba(255, 255, 255, 0.85) 100%), url('../img/about/potolo-local-roots-illustration.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.wash-restaurant {
  background-image: linear-gradient(180deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.8) 38%, rgba(255, 255, 255, 0.55) 75%, rgba(255, 255, 255, 0.45) 100%), url('../img/restaurant/potolo-restaurant-open-kitchen-chefs.jpg');
  background-size: cover;
  background-position: center 35%;
  background-repeat: no-repeat;
}

.wash-grocery {
  background-image: linear-gradient(180deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.8) 38%, rgba(255, 255, 255, 0.55) 75%, rgba(255, 255, 255, 0.45) 100%), url('../img/grocery/potolo-grocery-fresh-produce-aisle.jpg');
  background-size: cover;
  background-position: center 35%;
  background-repeat: no-repeat;
}

.wash-supermarket {
  background-image: linear-gradient(180deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.8) 38%, rgba(255, 255, 255, 0.55) 75%, rgba(255, 255, 255, 0.45) 100%), url('../img/supermarket/potolo-supermarket-customer-shopping-phone.jpg');
  background-size: cover;
  background-position: center 35%;
  background-repeat: no-repeat;
}

.wash-shop {
  background-image: linear-gradient(180deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.8) 38%, rgba(255, 255, 255, 0.55) 75%, rgba(255, 255, 255, 0.45) 100%), url('../img/shop/potolo-shop-app-product-browsing.jpg');
  background-size: cover;
  background-position: center 35%;
  background-repeat: no-repeat;
}

.wash-ride {
  background-image: linear-gradient(180deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.8) 38%, rgba(255, 255, 255, 0.55) 75%, rgba(255, 255, 255, 0.45) 100%), url('../img/ride/potolo-ride-branded-car-city-sunset.jpg');
  background-size: cover;
  background-position: center 35%;
  background-repeat: no-repeat;
}

.values-section {
  background-image: linear-gradient(180deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.8) 38%, rgba(255, 255, 255, 0.55) 75%, rgba(255, 255, 255, 0.45) 100%), url('../img/about/potolo-team-office.jpg');
  background-size: cover;
  background-position: center 35%;
  background-repeat: no-repeat;
}

.feature-card {
  position: relative;
  background: #fff;
  border: 1px solid #E7EFF1;
  border-radius: 16px;
  padding: 30px 26px;
  height: 100%;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.feature-card::after {
  content: '';
  position: absolute;
  left: 26px;
  right: 26px;
  bottom: 0;
  height: 2px;
  border-radius: 2px;
  background: var(--primary);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s ease;
}

.feature-card:hover {
  transform: translateY(-6px);
  border-color: rgba(50, 176, 198, 0.4);
  box-shadow: 0 18px 44px rgba(50, 176, 198, 0.13);
}

.feature-card:hover::after {
  transform: scaleX(1);
}

.feature-card .icon-chip {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  margin-bottom: 18px;
  box-shadow: 0 6px 16px rgba(50, 176, 198, 0.28);
  transition: transform 0.3s ease;
}

.feature-card:hover .icon-chip {
  transform: translateY(-3px) scale(1.05);
}

.feature-card h3 {
  font-size: 1.12rem;
  margin-bottom: 8px;
}

.feature-card p {
  margin-bottom: 0;
  font-size: 0.95rem;
}

.step-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 22px 0;
}

.step-num {
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800;
  font-size: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 20px rgba(50, 176, 198, 0.35);
}

.step-item h3 {
  font-size: 1.2rem;
  margin-bottom: 6px;
}

.step-item p {
  margin-bottom: 0;
}

.img-rounded {
  border-radius: calc(var(--radius) + 6px);
  box-shadow: var(--shadow-lg);
}

.ride-option-card {
  background: #fff;
  border: 1px solid #E7EFF1;
  border-radius: 16px;
  padding: 30px 26px;
  height: 100%;
  text-align: center;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.ride-option-card:hover {
  transform: translateY(-6px);
  border-color: rgba(50, 176, 198, 0.4);
  box-shadow: 0 18px 44px rgba(50, 176, 198, 0.13);
}

.ride-option-card .icon-chip {
  width: 58px;
  height: 58px;
  margin: 0 auto 16px;
  border-radius: 50%;
  background: var(--primary-light);
  color: var(--primary-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  transition: all 0.3s ease;
}

.ride-option-card:hover .icon-chip {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: #fff;
  transform: translateY(-3px);
}

.ride-option-card h3 {
  font-size: 1.15rem;
  margin-bottom: 8px;
}

.ride-option-card p {
  font-size: 0.95rem;
  margin-bottom: 0;
}

.split-card {
  position: relative;
  border-radius: calc(var(--radius) + 6px);
  overflow: hidden;
  min-height: 440px;
  display: flex;
  align-items: flex-end;
  box-shadow: var(--shadow-lg);
}

.split-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.split-card:hover img {
  transform: scale(1.06);
}

.split-card .split-overlay {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 110px 34px 34px;
  background: linear-gradient(180deg, rgba(7, 26, 31, 0) 0%, rgba(7, 26, 31, 0.85) 70%);
  color: #fff;
}

.split-card h3 {
  color: #fff;
  font-size: 1.55rem;
  margin-bottom: 8px;
}

.split-card p {
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 16px;
}

.split-card .text-link {
  color: #fff;
}

.check-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.check-list li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 10px 0;
  font-size: 1.02rem;
}

.check-list li i {
  color: var(--primary);
  font-size: 1.25rem;
  line-height: 1.5;
}

.check-list li strong {
  color: var(--ink);
}

.testimonial-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 32px 28px;
  height: 100%;
  box-shadow: var(--shadow);
}

.testimonial-card .stars {
  color: var(--amber);
  margin-bottom: 14px;
  font-size: 0.95rem;
}

.testimonial-card p {
  font-size: 0.99rem;
  margin-bottom: 22px;
}

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

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

.testimonial-person strong {
  display: block;
  font-family: 'Plus Jakarta Sans', sans-serif;
  color: var(--ink);
  font-size: 0.99rem;
}

.testimonial-person span {
  font-size: 0.85rem;
}

.testimonial-swiper {
  padding: 10px 6px 56px;
}

.testimonial-swiper .swiper-pagination-bullet {
  background: var(--primary);
}

.potolo-accordion .accordion-item {
  border: none;
  border-radius: 16px !important;
  margin-bottom: 14px;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.potolo-accordion .accordion-button {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  color: var(--ink);
  font-size: 1.05rem;
  padding: 20px 24px;
  background: #fff;
}

.potolo-accordion .accordion-button:not(.collapsed) {
  background: var(--primary-light);
  color: var(--primary-dark);
  box-shadow: none;
}

.potolo-accordion .accordion-button:focus {
  box-shadow: none;
}

.potolo-accordion .accordion-body {
  padding: 20px 24px;
}

.cta-banner {
  background: linear-gradient(120deg, var(--primary) 0%, var(--primary-dark) 100%);
  padding: 90px 0;
  color: #fff;
}

.cta-banner h2 {
  color: #fff;
  font-size: clamp(1.9rem, 3.6vw, 2.7rem);
  margin-bottom: 12px;
}

.cta-banner p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.12rem;
  max-width: 560px;
  margin: 0 auto 32px;
}

.cta-banner .store-badge {
  background: #0B1215;
}

.potolo-footer {
  background: #0B1E23;
  color: rgba(255, 255, 255, 0.72);
  padding: 70px 0 0;
}

.potolo-footer p {
  font-size: 0.96rem;
}

.potolo-footer h6 {
  color: #fff;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 18px;
}

.potolo-footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.potolo-footer ul li {
  margin-bottom: 12px;
}

.potolo-footer a {
  color: rgba(255, 255, 255, 0.72);
}

.potolo-footer a:hover {
  color: #fff;
}

.potolo-footer .small-note {
  font-size: 0.85rem;
}

.social-links {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}

.social-links a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  transition: all 0.25s ease;
}

.social-links a:hover {
  background: var(--primary);
  color: #fff;
  transform: translateY(-3px);
}

.footer-contact li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 0.92rem;
}

.footer-contact li i {
  color: var(--primary);
  margin-top: 2px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 50px;
  padding: 22px 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: space-between;
  font-size: 0.88rem;
}

.footer-legal {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
}

.qr-download {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.qr-download img {
  width: 96px;
  height: 96px;
  background: #fff;
  border: 1px solid #E7EFF1;
  border-radius: 12px;
  padding: 8px;
}

.qr-download span {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 600;
  font-size: 0.8rem;
  color: var(--body);
}

.floating-cta {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 1030;
  background: var(--primary);
  color: #fff;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  padding: 13px 24px;
  border-radius: 100px;
  box-shadow: 0 12px 30px rgba(50, 176, 198, 0.5);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.floating-cta:hover {
  background: var(--primary-dark);
  color: #fff;
}

.floating-cta.hidden {
  opacity: 0;
  transform: translateY(80px);
  pointer-events: none;
}

.page-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center;
}

.page-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, rgba(7, 26, 31, 0.84) 0%, rgba(7, 26, 31, 0.5) 55%, rgba(7, 26, 31, 0.2) 100%);
}

.page-hero .hero-content {
  padding-top: 150px;
  padding-bottom: 90px;
}

.page-hero h1 {
  color: #fff;
  font-size: clamp(2.1rem, 4.6vw, 3.4rem);
  margin-bottom: 20px;
}

.legal-page {
  padding: 150px 0 70px;
}

.legal-page h1 {
  font-size: clamp(1.9rem, 3.6vw, 2.6rem);
  margin-bottom: 10px;
}

.legal-page .legal-updated {
  color: var(--body);
  margin-bottom: 40px;
  font-size: 0.95rem;
}

.legal-body h2, .legal-body h3, .legal-body h4 {
  margin-top: 34px;
  margin-bottom: 12px;
  font-size: 1.3rem;
}

.legal-body p, .legal-body li {
  color: var(--body);
}

.media-frame {
  position: relative;
}

.media-frame::before {
  content: '';
  position: absolute;
  top: 26px;
  left: 26px;
  right: -16px;
  bottom: -16px;
  background: linear-gradient(135deg, var(--primary-light) 0%, rgba(50, 176, 198, 0.16) 100%);
  border-radius: 26px;
}

.media-frame img {
  position: relative;
  display: block;
  width: 100%;
  border-radius: 22px;
  border: 1px solid rgba(50, 176, 198, 0.14);
  box-shadow: 0 24px 60px rgba(15, 42, 48, 0.12);
}

.step-item {
  position: relative;
}

.step-item + .step-item::before {
  content: '';
  position: absolute;
  left: 25px;
  top: -34px;
  height: 64px;
  width: 2px;
  border-radius: 2px;
  background: rgba(50, 176, 198, 0.22);
}

.step-item .step-num {
  position: relative;
  z-index: 1;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  box-shadow: 0 8px 20px rgba(50, 176, 198, 0.3), 0 0 0 5px rgba(50, 176, 198, 0.1);
}

.check-list li {
  gap: 14px;
  padding: 12px 0;
}

.check-list li i {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  border-radius: 12px;
  background: var(--primary-light);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.05rem;
  line-height: 1;
}

@media (max-width: 575.98px) {
  .media-frame::before {
    top: 14px;
    left: 14px;
    right: -8px;
    bottom: -8px;
    border-radius: 18px;
  }
  .media-frame img {
    border-radius: 16px;
  }
  .step-item + .step-item::before {
    left: 21px;
    top: -26px;
    height: 50px;
  }
  .check-list li i {
    width: 32px;
    height: 32px;
    font-size: 0.95rem;
  }
}

.potolo-tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  border: none;
  margin-bottom: 44px;
}

.potolo-tabs .nav-link {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--ink);
  background: #fff;
  border: 1px solid #E7EFF1;
  border-radius: 100px;
  padding: 11px 24px;
  transition: all 0.25s ease;
}

.potolo-tabs .nav-link:hover {
  color: var(--primary);
  border-color: rgba(50, 176, 198, 0.4);
  background: var(--primary-light);
}

.potolo-tabs .nav-link.active {
  color: #fff;
  background: var(--primary);
  border-color: var(--primary);
  box-shadow: 0 6px 18px rgba(50, 176, 198, 0.35);
}

@media (max-width: 575.98px) {
  .potolo-tabs {
    gap: 8px;
    margin-bottom: 32px;
  }
  .potolo-tabs .nav-link {
    font-size: 0.86rem;
    padding: 9px 18px;
  }
}

.potolo-form label {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 600;
  color: var(--ink);
  font-size: 0.92rem;
  margin-bottom: 6px;
}

.potolo-form .form-control,
.potolo-form .form-select {
  border: 1px solid #E7EFF1;
  border-radius: 12px;
  padding: 12px 16px;
  font-size: 0.98rem;
  color: var(--ink);
  background: #fff;
}

.potolo-form .form-control:focus,
.potolo-form .form-select:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(50, 176, 198, 0.12);
}

.potolo-form .form-check-input:checked {
  background-color: var(--primary);
  border-color: var(--primary);
}

.form-card {
  background: #fff;
  border: 1px solid #E7EFF1;
  border-radius: var(--radius);
  padding: 38px 34px;
  box-shadow: var(--shadow);
}

.contact-card {
  background: #fff;
  border: 1px solid #E7EFF1;
  border-radius: 16px;
  padding: 26px 24px;
  height: 100%;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.contact-card .icon-chip {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  margin-bottom: 16px;
}

.contact-card h3 {
  font-size: 1.05rem;
  margin-bottom: 6px;
}

.contact-card p {
  font-size: 0.94rem;
  margin-bottom: 0;
}

.map-frame {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  line-height: 0;
}

.map-frame iframe {
  width: 100%;
  height: 420px;
  border: 0;
}

@media (max-width: 575.98px) {
  .form-card {
    padding: 28px 20px;
  }
  .map-frame iframe {
    height: 320px;
  }
}

[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

[data-reveal].revealed {
  opacity: 1;
  transform: translateY(0);
}

.row > [data-reveal]:nth-child(2) {
  transition-delay: 0.12s;
}

.row > [data-reveal]:nth-child(3) {
  transition-delay: 0.24s;
}

.row > [data-reveal]:nth-child(4) {
  transition-delay: 0.36s;
}

@media (max-width: 991.98px) {
  section {
    padding: 64px 0;
  }
  .hero {
    min-height: 92svh;
  }
  .hero-content {
    padding-top: 124px;
    padding-bottom: 84px;
  }
  .page-hero {
    min-height: 92svh;
  }
  .page-hero .hero-content {
    padding-top: 130px;
    padding-bottom: 70px;
  }
  .split-card {
    min-height: 360px;
  }
  .potolo-nav .offcanvas-body .navbar-nav {
    width: 100%;
  }
  .potolo-nav .offcanvas-body .nav-link {
    font-size: 1.08rem;
    padding: 13px 18px;
    color: var(--ink);
    border-radius: 14px;
    margin-bottom: 4px;
  }
  .potolo-nav .offcanvas-body .nav-link:hover {
    color: var(--primary);
    background: var(--primary-light);
  }
  .potolo-nav .offcanvas-body .nav-link.active {
    color: #fff;
    background: var(--primary);
    box-shadow: 0 6px 18px rgba(50, 176, 198, 0.3);
  }
  .potolo-nav .offcanvas-body .nav-cta {
    width: 100%;
    text-align: center;
    margin-top: 8px;
  }
  .offcanvas .btn-close {
    margin-left: auto;
  }
  .section-head {
    margin-bottom: 40px;
  }
  .legal-page {
    padding: 124px 0 50px;
  }
}

@media (max-width: 575.98px) {
  body {
    font-size: 0.98rem;
  }
  section {
    padding: 52px 0;
  }
  .section-tight {
    padding: 40px 0;
  }
  .hero-content {
    padding-top: 112px;
    padding-bottom: 96px;
  }
  .hero-content h1 {
    font-size: clamp(2rem, 8.4vw, 2.4rem);
  }
  .hero-content p {
    font-size: 1.02rem;
    margin-bottom: 26px;
  }
  .hero-content .eyebrow {
    font-size: 0.7rem;
    padding: 7px 14px;
    margin-bottom: 14px;
  }
  .trust-row {
    gap: 8px 18px;
    font-size: 0.86rem;
    margin-top: 20px;
  }
  .hero-dots {
    bottom: 22px;
  }
  .page-hero h1 {
    font-size: clamp(1.8rem, 7.6vw, 2.2rem);
  }
  .page-hero .hero-content {
    padding-top: 116px;
    padding-bottom: 56px;
  }
  .store-badges {
    gap: 10px;
  }
  .store-badge {
    min-width: 0;
    flex: 1 1 calc(50% - 10px);
    justify-content: center;
    padding: 9px 12px;
    gap: 9px;
  }
  .store-badge i {
    font-size: 1.6rem;
  }
  .store-badge strong {
    font-size: 0.96rem;
  }
  .store-badge small {
    font-size: 0.56rem;
  }
  .store-badges.vertical .store-badge {
    flex: 0 0 auto;
    min-width: 185px;
    justify-content: flex-start;
  }
  .section-head {
    margin-bottom: 32px;
  }
  .section-head p {
    font-size: 1rem;
  }
  .feature-card {
    padding: 26px 22px;
  }
  .ride-option-card {
    padding: 24px 20px;
  }
  .step-item {
    gap: 14px;
    padding: 16px 0;
  }
  .step-num {
    width: 44px;
    height: 44px;
    font-size: 1.1rem;
  }
  .split-card {
    min-height: 320px;
  }
  .split-card .split-overlay {
    padding: 80px 22px 24px;
  }
  .split-card h3 {
    font-size: 1.3rem;
  }
  .check-list li {
    gap: 11px;
    padding: 8px 0;
    font-size: 0.97rem;
  }
  .testimonial-card {
    padding: 26px 22px;
  }
  .testimonial-swiper {
    padding: 6px 2px 48px;
  }
  .potolo-accordion .accordion-button {
    font-size: 0.98rem;
    padding: 16px 18px;
  }
  .potolo-accordion .accordion-body {
    padding: 16px 18px;
    font-size: 0.96rem;
  }
  .cta-banner {
    padding: 60px 0;
  }
  .cta-banner p {
    font-size: 1.02rem;
    margin-bottom: 24px;
  }
  .potolo-footer {
    padding: 52px 0 0;
  }
  .footer-bottom {
    justify-content: center;
    text-align: center;
    margin-top: 36px;
  }
  .floating-cta {
    padding: 11px 20px;
    font-size: 0.92rem;
    bottom: 16px;
    right: 16px;
  }
  .stat-item span {
    font-size: 0.85rem;
  }
  .img-rounded {
    border-radius: 18px;
  }
  .navbar-brand img {
    height: 34px;
  }
  .legal-page {
    padding: 110px 0 40px;
  }
  .legal-body h2 {
    font-size: 1.15rem;
    margin-top: 26px;
  }
}

@media (max-width: 379.98px) {
  .store-badge {
    flex: 1 1 100%;
  }
  .trust-row {
    font-size: 0.8rem;
  }
}

@media (max-height: 500px) and (orientation: landscape) {
  .hero,
  .page-hero {
    min-height: auto;
  }
  .hero-content {
    padding-top: 104px;
    padding-bottom: 70px;
  }
  .page-hero .hero-content {
    padding-top: 104px;
    padding-bottom: 50px;
  }
}

.page-hero-short {
  min-height: 62vh;
}

.page-hero-short .hero-content {
  padding-top: 150px;
  padding-bottom: 70px;
}

.pricing-grid {
  align-items: stretch;
}

.pricing-card {
  position: relative;
  height: 100%;
  background: #fff;
  border: 1px solid #E7EFF1;
  border-radius: 20px;
  padding: 34px 28px;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.pricing-card:hover {
  transform: translateY(-6px);
  border-color: rgba(50, 176, 198, 0.4);
  box-shadow: 0 18px 44px rgba(50, 176, 198, 0.13);
}

.pricing-card.featured {
  border-color: var(--primary);
  box-shadow: 0 20px 50px rgba(50, 176, 198, 0.18);
}

.pricing-badge {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #fff;
  background: linear-gradient(120deg, var(--primary) 0%, var(--primary-dark) 100%);
  padding: 6px 18px;
  border-radius: 100px;
  box-shadow: 0 8px 20px rgba(50, 176, 198, 0.35);
  white-space: nowrap;
}

.pricing-name {
  font-size: 1.3rem;
  margin-bottom: 12px;
}

.pricing-price {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid #E7EFF1;
}

.pricing-currency {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--body);
}

.pricing-amount {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800;
  font-size: 2.6rem;
  color: var(--ink);
  line-height: 1;
}

.pricing-period {
  font-size: 0.95rem;
  color: var(--body);
}

.pricing-features {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
  flex-grow: 1;
}

.pricing-features li {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  padding: 8px 0;
  font-size: 0.96rem;
}

.pricing-features li i {
  font-size: 1.1rem;
  line-height: 1.4;
  flex-shrink: 0;
}

.pricing-features li.included {
  color: var(--ink);
}

.pricing-features li.included i {
  color: var(--primary);
}

.pricing-features li.excluded {
  color: #9fb0b4;
}

.pricing-features li.excluded i {
  color: #cdd9dc;
}


.cloud-kitchen-frame {
  position: relative;
  border-radius: calc(var(--radius) + 6px);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.cloud-kitchen-frame img {
  display: block;
  width: 100%;
  border-radius: calc(var(--radius) + 6px);
}

.cloud-kitchen-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--primary-light);
  color: var(--primary-dark);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  font-size: 0.82rem;
  padding: 8px 16px;
  border-radius: 100px;
  margin-bottom: 18px;
}



.partners-swiper {
  padding: 6px 4px 50px;
}

.partner-card {
  height: 100%;
  background: #fff;
  border: 1px solid #E7EFF1;
  border-radius: 18px;
  overflow: hidden;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.partner-card:hover {
  transform: translateY(-6px);
  border-color: rgba(50, 176, 198, 0.4);
  box-shadow: 0 18px 44px rgba(50, 176, 198, 0.13);
}

.partner-card-media {
  height: 150px;
  background: var(--surface);
  display: flex;
  align-items: center;
  justify-content: center;
}

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

.partner-card-body {
  padding: 20px 22px 24px;
}

.partner-card-body h3 {
  font-size: 1.12rem;
  margin-bottom: 8px;
}

.partner-card-body p {
  font-size: 0.92rem;
  margin-bottom: 14px;
}

.partners-swiper .swiper-pagination-bullet {
  background: var(--primary);
}

.btn-hero-ghost {
  background: rgba(255, 255, 255, 0.12);
  border: 2px solid rgba(255, 255, 255, 0.55);
  color: #fff;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  border-radius: 100px;
  padding: 12px 28px;
  backdrop-filter: blur(6px);
  transition: all 0.25s ease;
}

.btn-hero-ghost:hover {
  background: #fff;
  border-color: #fff;
  color: var(--primary-dark);
  transform: translateY(-2px);
}

/* App showcase carousel */
.app-swiper{position:relative;border-radius:var(--radius);overflow:hidden;box-shadow:var(--shadow)}
.app-swiper .swiper-slide img{width:100%;height:100%;object-fit:cover;display:block;aspect-ratio:16/10}
.app-swiper .swiper-pagination{bottom:14px}
.app-swiper .swiper-pagination-bullet{background:#fff;opacity:.55;width:9px;height:9px}
.app-swiper .swiper-pagination-bullet-active{background:var(--primary);opacity:1;width:22px;border-radius:6px}

/* Category and department image cards */
.partner-card .partner-card-media img{aspect-ratio:16/10;object-fit:cover;width:100%;display:block}

/* Photo background sections */
.bg-image-section{position:relative;background-size:cover;background-position:center}
.bg-image-section::before{content:"";position:absolute;inset:0;background:linear-gradient(180deg,rgba(247,251,252,.96) 0%,rgba(247,251,252,.88) 45%,rgba(232,247,250,.84) 100%)}
.bg-image-section>.container{position:relative;z-index:1}

/* Equal height cards - all sections */
.partners-swiper .swiper-slide,.services-swiper .swiper-slide,.testimonial-swiper .swiper-slide{height:auto;display:flex}
.partners-swiper .partner-card,.testimonial-swiper .testimonial-card{width:100%;height:100%;display:flex;flex-direction:column}
.partner-card .partner-card-body{display:flex;flex-direction:column;flex:1 1 auto}
.partner-card .partner-card-body .text-link{margin-top:auto;padding-top:10px}
.partner-card .partner-card-media img{flex-shrink:0}
.testimonial-card .testimonial-person{margin-top:auto}
.row>[class*=col-]>.feature-card,.row>[class*=col-]>.contact-card,.row>[class*=col-]>.pricing-card,.row>[class*=col-]>.ride-option-card,.row>[class*=col-]>.split-card{height:100%}

/* services carousel card full width inside flex slide */
.services-swiper .service-slide{width:100%;height:100%}
