* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

/* Nata Sans via @font-face — place NataSans font files in /fonts/ folder.
   Falls back to Noto Sans (Google Fonts) if files are absent. */
@font-face {
  font-family: 'Nata Sans';
  src: local('Nata Sans'),
       url('fonts/NataSans-Regular.woff2') format('woff2'),
       url('fonts/NataSans-Regular.woff') format('woff');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Nata Sans';
  src: local('Nata Sans Medium'),
       url('fonts/NataSans-Medium.woff2') format('woff2'),
       url('fonts/NataSans-Medium.woff') format('woff');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Nata Sans';
  src: local('Nata Sans SemiBold'),
       url('fonts/NataSans-SemiBold.woff2') format('woff2'),
       url('fonts/NataSans-SemiBold.woff') format('woff');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Nata Sans';
  src: local('Nata Sans Bold'),
       url('fonts/NataSans-Bold.woff2') format('woff2'),
       url('fonts/NataSans-Bold.woff') format('woff');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Nata Sans';
  src: local('Nata Sans ExtraBold'),
       url('fonts/NataSans-ExtraBold.woff2') format('woff2'),
       url('fonts/NataSans-ExtraBold.woff') format('woff');
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}

body {
  font-family: 'Nata Sans', 'Noto Sans', sans-serif;
  background: #FFFEFB;
  color: #313847;
  line-height: 1.5;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
button { font-family: inherit; cursor: pointer; border: none; }

:root {
  --cream: #FFFEFB;
  --cream-light: #FFFEFB;
  --orange: #FFAF00;
  --orange-soft: #FEE5AE;
  --navy: #313847;
  --navy-light: rgba(255,255,255,0.1);
  --text-muted: #5A6070;
  --white: #FFFFFF;
  --border: #E8DFCC;
}

.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* NAV */
.navbar { position: sticky; top: 16px; z-index: 100; margin: 16px auto 0; max-width: 1200px; padding: 0 24px; }
.nav-inner {
  background: #313847;
  border-radius: 50px;
  padding: 15px 14px 15px 43px;
  display: flex; align-items: center; justify-content: space-between;
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
  position: relative;
}
.logo span { font-size: 10px; color: var(--orange); font-weight: 600; letter-spacing: 2px; margin-top: 3px; }
.nav-links { display: flex; gap: 38px; list-style: none; }
.nav-links a { color: var(--white); font-size: 18px; font-weight: 600; transition: color 0.2s; }
.nav-links a:hover { color: var(--orange); }
.btn-cta {
  background: var(--white);
  color: #313847;
  padding: 10px 20px;
  border-radius: 30px;
  font-weight: 600;
  font-size: 16px;
  transition: transform 0.2s, box-shadow 0.2s;
  border: 2px solid var(--orange);
  box-shadow: 1px 1px 20px var(--orange);
  white-space: nowrap;
}
.btn-cta:hover { transform: translateY(-2px); box-shadow: 0 8px 20px rgba(255,175,0,0.5); }
.mobile-toggle { display: none; background: transparent; color: white; font-size: 24px; padding: 8px 12px; margin-left: auto; margin-right: 8px; }
.mobile-menu { display: none; position: absolute; top: calc(100% + 12px); left: 0; right: 0; background: var(--navy); border-radius: 24px; padding: 20px; box-shadow: 0 12px 30px rgba(0,0,0,0.2); }
.mobile-menu.open { display: block; }
.mobile-menu ul { list-style: none; display: flex; flex-direction: column; gap: 4px; }
.mobile-menu a { color: var(--white); padding: 12px 16px; display: block; border-radius: 12px; font-size: 15px; font-weight: 600; }
.mobile-menu a:hover { background: rgba(255,255,255,0.05); color: var(--orange); }
.nav-inner img {height: 40px;width: auto;max-width: 178px;object-fit: contain;}
.footer-brand img {width: 25% !important;}
/* HERO */
.hero { padding: 32px 0 40px; position: relative; }
.hero-grid { display: grid; grid-template-columns: 1.05fr 1fr; gap: 40px; align-items: center; }
.hero-topbadge-wrap { display: flex; justify-content: center; margin-bottom: 40px; }
.hero-topbadge {
  background: var(--white);
  padding: 6px 22px 6px 6px;
  border-radius: 50px;
  font-size: 15px;
  font-weight: 500;
  color: var(--navy);
  display: inline-flex; align-items: center; gap: 10px;
  box-shadow: 0 4px 14px rgba(0,0,0,0.06);
  animation: float-bob 3.6s ease-in-out infinite;
}
.hero-topbadge .dot {
  width: 28px; height: 28px;
  background: var(--orange);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: white;
  flex-shrink: 0;
}
.hero-topbadge .dot svg { width: 14px; height: 14px; }

.hero-content { max-width: 520px; }
.hero-tagline-1 {
  font-size: 30px;
  font-weight: 600;
  color: var(--navy);
  line-height: 1.3;
  letter-spacing: -0.2px;
  margin-bottom: 10px;
}
.hero-tagline-2 {
  font-size: 30px;
  font-weight: 600;
  color: var(--orange);
  line-height: 1.3;
  margin-bottom: 28px;
  letter-spacing: -0.2px;
}
.hero h1 {
  font-size: 72px;
  font-weight: 800;
  line-height: 1.05;
  color: var(--navy);
  margin-bottom: 28px;
  letter-spacing: -2.5px;
}
.hero h1 .accent { color: var(--orange); font-weight: 800; }
.hero-subtitle {
  font-size: 18px;
  color: var(--navy);
  margin-bottom: 32px;
  font-weight: 500;
}
.download-buttons { display: flex; gap: 14px; flex-wrap: wrap; }
.btn-download {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--orange-soft);
  color: var(--navy);
  padding: 8px 26px 8px 8px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 15px;
  transition: transform 0.2s, box-shadow 0.2s;
}
.btn-download.alt { background: var(--navy); color: var(--white); }
.btn-download:hover { transform: translateY(-2px); box-shadow: 0 10px 22px rgba(0,0,0,0.12); }
.btn-download .icon {
  width: 32px; height: 32px;
  background: var(--white);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.btn-download .icon svg { width: 16px; height: 16px; display: block; }
.btn-download.alt .icon { background: var(--white); }

/* HERO VISUAL */
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 560px;
}
.hero-phone-wrap {
  position: relative;
  width: 100%;
  max-width: 440px;
  margin: 0 auto;
}
.hero-phone-wrap img {
  width: 100%;
  height: auto;
  display: block;
  position: relative;
  z-index: 1;
}

/* Floating tags on top of phone image */
.float-tag {
  position: absolute;
  background: var(--orange);
  color: #fff;
  padding: 12px 24px;
  border-radius: 40px;
  font-weight: 800;
  font-size: 16px;
  box-shadow: 0 10px 24px rgba(245,166,35,0.4);
  z-index: 3;
  white-space: nowrap;
}
.tag-takeaway { top: 40%; right: -22px; animation: float-bob 3.2s ease-in-out infinite; }
.tag-delivery { bottom: 14%; left: 2%; animation: float-bob 3.2s ease-in-out infinite; animation-delay: -1.6s; }

/* Subtle up/down float for hashtag badges */
@keyframes float-bob {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-8px); }
}

/* Sparkles */
.sparkle {
  position: absolute;
  color: var(--orange);
  animation: sparkle 2.4s ease-in-out infinite;
  z-index: 2;
  pointer-events: none;
}
.sparkle svg { width: 100%; height: 100%; display: block; }
.sparkle-1 { top: 14%; right: -14px; width: 28px; height: 28px; animation-delay: 0s; }
.sparkle-2 { top: 48%; right: -8px; width: 18px; height: 18px; animation-delay: 0.6s; }
.sparkle-3 { bottom: -6px; left: 8%; width: 26px; height: 26px; animation-delay: 1.2s; }
.sparkle-4 { top: 38%; left: -12px; width: 22px; height: 22px; animation-delay: 0.3s; }
.sparkle-5 { bottom: 18%; left: -4px; width: 18px; height: 18px; animation-delay: 0.9s; }
@keyframes sparkle {
  0%, 100% { opacity: 0.45; transform: scale(0.9) rotate(0deg); }
  50% { opacity: 1; transform: scale(1.15) rotate(45deg); }
}

/* MARQUEE */
.marquee { background: var(--navy); padding: 14px 0; overflow: hidden; }
.marquee-track {
  display: flex;
  align-items: center;
  width: max-content;
  animation: scroll 18s linear infinite;
}
.marquee-item {
  color: var(--white);
  font-size: 17px;
  font-weight: 700;
  letter-spacing: 0.3px;
  display: inline-flex;
  align-items: center;
  padding-right: 48px;
  white-space: nowrap;
}
.marquee-item::after {
  content: '✦';
  color: var(--orange);
  font-size: 14px;
  margin-left: 48px;
}
@keyframes scroll { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* ABOUT */
.about { padding: 80px 0; }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
.section-title { font-size: 44px; font-weight: 800; color: var(--navy); margin-bottom: 28px; letter-spacing: -1.5px; line-height: 1.1; }
.section-title .accent { color: var(--orange); }
.about h3 { font-size: 22px; font-weight: 700; color: var(--navy); margin-bottom: 14px; }
.about p { color: var(--text-muted); margin-bottom: 20px; font-size: 15px; line-height: 1.6; }
.about-model-label { font-weight: 700; color: var(--navy); margin-bottom: 18px !important; font-size: 16px !important; }
.feature-list { list-style: none; display: flex; flex-direction: column; gap: 16px; }
.feature-item {
  display: flex;
  align-items: center;
  gap: 16px;
  font-weight: 600;
  color: var(--navy);
  font-size: 16px;
}
.feature-icon {
  width: 42px;
  height: 42px;
  background: var(--orange);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  flex-shrink: 0;
}
.feature-icon svg { width: 22px; height: 22px; }

/* About image column — holds image + quote + floating badge */
.about-image-wrap {
  position: relative;
  padding-top: 36px;
  padding-left: 24px;
}
.about-quote-mark {
  position: absolute;
  top: -4px;
  left: 0;
  font-size: 90px;
  color: var(--orange);
  line-height: 0.7;
  font-family: Georgia, 'Times New Roman', serif;
  font-weight: 700;
  z-index: 2;
}
.about-image {
  border-radius: 24px;
  aspect-ratio: 4/3;
  position: relative;
  overflow: hidden;
  background: #f0e6d0;
  box-shadow: 0 20px 40px rgba(0,0,0,0.10);
}
.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.seamless-badge {
  position: absolute;
  bottom: 24px;
  right: -14px;
  background: var(--orange);
  color: var(--navy);
  padding: 12px 24px;
  border-radius: 40px;
  font-weight: 800;
  font-size: 15px;
  box-shadow: 0 10px 24px rgba(245,166,35,0.4);
  z-index: 3;
  white-space: nowrap;
  animation: float-bob 3.4s ease-in-out infinite;
  animation-delay: -0.8s;
}

.stats {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  padding-top: 48px;
  margin-top: 24px;
}
.stat { text-align: center; position: relative; padding: 0 16px; }
.stat:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 15%;
  height: 70%;
  width: 1px;
  background: var(--border);
}
.stat-num {
  font-size: 52px;
  font-weight: 800;
  color: var(--orange);
  letter-spacing: -1.5px;
  line-height: 1;
  margin-bottom: 8px;
}
.stat-label {
  color: var(--navy);
  font-size: 15px;
  font-weight: 500;
}

/* WHY DIFFERENT */
.why-different { background: var(--navy); padding: 80px 0; color: var(--white); }
.why-different .section-title { color: var(--white); }
.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 48px; }
.why-card {
  background: var(--navy-light); border: 1px solid rgba(255,255,255,0.08);
  border-radius: 20px; padding: 40px 32px; text-align: center;
  transition: transform 0.3s, border-color 0.3s;
}
.why-card:hover { transform: translateY(-6px); border-color: var(--orange); }
.why-icon { width: 72px; height: 72px; display: flex; align-items: center; justify-content: center; margin: 0 auto 24px; font-size: 32px; }
.why-card h3 { font-size: 22px; font-weight: 800; margin-bottom: 12px; }
.why-card p { color: rgba(255,255,255,0.6); font-size: 14px; line-height: 1.6; }

/* SERVICES */
/* SERVICES */
.services { padding: 80px 0 40px; position: relative; }
.services .section-title { margin-bottom: 8px; }
.service-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-bottom: 40px;
}
.service-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--orange-soft);
  color: var(--navy);
  padding: 10px 24px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 16px;
  margin-bottom: 16px;
}
.service-badge .sparkle-mark {
  color: var(--orange);
  font-size: 18px;
  line-height: 1;
}
.service-badge strong { font-weight: 800; }
.service-desc {
  color: var(--navy);
  margin-bottom: 24px;
  font-size: 15px;
  max-width: 420px;
}
.steps {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 440px;
}
.step {
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--white);
  padding: 6px 24px 6px 6px;
  border-radius: 50px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.05);
  font-weight: 600;
  color: var(--navy);
  font-size: 15px;
}
.step.active {
  background: var(--navy);
  color: var(--white);
  padding: 6px 6px 6px 24px;
  margin-left: 120px;
  justify-content: space-between;
}
.step.active span.step-text { flex: 1; }
.step-num {
  width: 42px;
  height: 42px;
  background: var(--navy);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 14px;
  flex-shrink: 0;
}
.step.active .step-num { background: var(--orange); color: var(--navy); }

.service-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 320px;
}
.service-visual img {
  max-width: 100%;
  max-height: 420px;
  width: auto;
  height: auto;
  object-fit: contain;
}
.service-row.reverse .service-visual { order: -1; }

/* WHY CAPS */
.why-caps { padding: 60px 0 80px; }
.why-caps-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.why-caps .section-title { margin-bottom: 20px; }
.why-caps-intro {
  color: var(--navy);
  margin-bottom: 20px;
  font-size: 20px;
  line-height: 1.6;
  max-width: 440px;
}
.why-caps-heading {
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
  font-size: 18px;
}
.bullet-list { list-style: none; margin: 0 0 20px 0; }
.bullet-list li {
  padding-left: 22px;
  position: relative;
  margin-bottom: 8px;
  color: var(--navy);
  font-weight: 500;
  font-size: 18px;
}
.bullet-list li::before {
  content: '•';
  position: absolute;
  left: 4px;
  top: -2px;
  color: var(--navy);
  font-size: 22px;
  line-height: 1;
}
.why-caps-closer {
  font-weight: 700;
  color: var(--navy);
  font-size: 18spx;
}

/* Why CAPS image stack */
.image-stack {
  position: relative;
  height: 420px;
  width: 100%;
  max-width: 520px;
  margin: 0 auto;
}
.stack-img {
  position: absolute;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 18px 36px rgba(0,0,0,0.18);
}
.stack-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.stack-img-1 { width: 58%; height: 55%; top: 0; right: 0; }
.stack-img-2 { width: 58%; height: 55%; bottom: 0; left: 0; }
.door-badge {
  position: absolute;
  top: 50%;
  right: 4%;
  transform: translateY(50%);
  background: var(--orange);
  color: var(--navy);
  padding: 10px 20px;
  border-radius: 40px;
  font-weight: 800;
  font-size: 13px;
  z-index: 3;
  box-shadow: 0 8px 20px rgba(245,166,35,0.35);
  white-space: nowrap;
  animation: float-bob-door 3.4s ease-in-out infinite;
  animation-delay: -2.2s;
}
@keyframes float-bob-door {
  0%, 100% { transform: translateY(50%); }
  50%      { transform: translateY(calc(50% - 8px)); }
}
.image-stack .sparkle-decor {
  position: absolute;
  color: var(--orange);
  width: 24px;
  height: 24px;
  z-index: 2;
  animation: sparkle 2.4s ease-in-out infinite;
}
.image-stack .sparkle-decor svg { width: 100%; height: 100%; }
.image-stack .sparkle-decor.s1 { top: 46%; left: 44%; }
.image-stack .sparkle-decor.s2 { top: -6px; left: 40%; width: 18px; height: 18px; animation-delay: 0.5s; }
.image-stack .sparkle-decor.s3 { bottom: -6px; right: 40%; width: 20px; height: 20px; animation-delay: 1s; }

/* PARTNERSHIP */
.partnership { padding: 40px 0 80px; }
.partnership .section-title { margin-bottom: 32px; }
.partnership-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 32px;
}
.partner-card {
  background: var(--navy);
  color: var(--white);
  padding: 56px 40px 40px;
  border-radius: 24px;
  position: relative;
  text-align: center;
}
.partner-icon {
  width: 82px;
  height: 82px;
  background: var(--orange);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  overflow: hidden;
}
.partner-icon img {
  width: 44px;
  height: 44px;
  object-fit: contain;
  display: block;
}
.partner-card h3 {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 14px;
}
.partner-card p {
  color: rgba(255,255,255,0.72);
  margin-bottom: 28px;
  font-size: 15px;
  line-height: 1.6;
  max-width: 340px;
  margin-left: auto;
  margin-right: auto;
}
.partner-btn {
  background: var(--orange);
  color: var(--navy);
  padding: 12px 28px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: transform 0.2s, box-shadow 0.2s;
}
.partner-btn:hover { transform: translateY(-2px); box-shadow: 0 8px 18px rgba(245,166,35,0.4); }
.partner-btn-wrap { display: flex; justify-content: center; }

/* TESTIMONIALS — Infinite Marquee */
.testimonials {
  background: var(--navy);
  color: var(--white);
  padding: 80px 0 100px;
  position: relative;
  overflow: hidden;
}
.testimonials::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 48px 48px;
  pointer-events: none;
}
.tmono-label {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 3px;
  color: var(--orange);
  text-transform: uppercase;
  margin-bottom: 12px;
  position: relative;
}
.testimonials .section-title {
  color: var(--white);
  position: relative;
  margin-bottom: 12px;
}
.testimonials .section-title .accent { color: var(--orange); }
.t-subtitle {
  color: rgba(255,255,255,0.55);
  font-size: 15px;
  margin-bottom: 40px;
  position: relative;
}

/* Rating bar */
.t-rating-bar {
  display: flex;
  align-items: center;
  gap: 32px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 20px;
  padding: 20px 32px;
  margin-bottom: 56px;
  position: relative;
  width: fit-content;
  backdrop-filter: blur(10px);
}
.t-rating-score { display: flex; flex-direction: column; align-items: center; }
.t-big-score {
  font-size: 36px;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
}
.t-stars-row { color: var(--orange); font-size: 16px; letter-spacing: 2px; margin: 4px 0; }
.t-rating-label { font-size: 13px; color: rgba(255,255,255,0.5); font-weight: 600; text-transform: uppercase; letter-spacing: 1px; }
.t-rating-divider { width: 1px; height: 48px; background: rgba(255,255,255,0.15); }
.t-rating-stat { display: flex; flex-direction: column; align-items: center; }
.t-stat-num { font-size: 22px; font-weight: 800; color: var(--white); }
.t-stat-label { font-size: 13px; color: rgba(255,255,255,0.5); font-weight: 600; text-transform: uppercase; letter-spacing: 1px; margin-top: 2px; }

/* Marquee */
.marquee-wrap {
  position: relative;
  width: 100%;
  overflow: hidden;
}
.marquee-fade {
  position: absolute;
  top: 0; bottom: 0;
  width: 120px;
  z-index: 2;
  pointer-events: none;
}
.marquee-fade-left {
  left: 0;
  background: linear-gradient(to right, var(--navy), transparent);
}
.marquee-fade-right {
  right: 0;
  background: linear-gradient(to left, var(--navy), transparent);
}
.marquee-track {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  width: max-content;
}
.marquee-left  { animation: marquee-left  35s linear infinite; }
.marquee-right { animation: marquee-right 35s linear infinite; }
.marquee-wrap:hover .marquee-left,
.marquee-wrap:hover .marquee-right { animation-play-state: paused; }

@keyframes marquee-left {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
@keyframes marquee-right {
  0%   { transform: translateX(-50%); }
  100% { transform: translateX(0); }
}

/* Review card */
.rv-card {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 20px;
  padding: 20px 22px;
  width: 300px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
  overflow: hidden;
  transition: background 0.3s, transform 0.3s, border-color 0.3s, box-shadow 0.3s;
  cursor: default;
  position: relative;
}
.rv-card:hover {
  background: rgba(255,175,0,0.1);
  border-color: rgba(255,175,0,0.4);
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.35), 0 0 0 1px rgba(255,175,0,0.25);
  z-index: 10;
}
.rv-top {
  display: flex;
  align-items: center;
  gap: 11px;
  margin-bottom: 14px;
  flex-shrink: 0;
}
.rv-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 800;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(0,0,0,0.25);
}
.rv-meta { flex: 1; min-width: 0; }
.rv-meta strong { display: block; font-size: 14px; font-weight: 700; color: var(--white); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.rv-meta span { font-size: 12.5px; color: rgba(255,255,255,0.45); }
.rv-badge {
  font-size: 11px;
  font-weight: 700;
  background: rgba(255,175,0,0.15);
  color: var(--orange);
  border: 1px solid rgba(255,175,0,0.3);
  border-radius: 20px;
  padding: 3px 9px;
  white-space: nowrap;
  flex-shrink: 0;
}
.rv-stars {
  color: var(--orange);
  font-size: 14px;
  letter-spacing: 2px;
  margin-bottom: 10px;
  flex-shrink: 0;
}
.rv-text {
  font-size: 14px;
  line-height: 1.65;
  color: rgba(255,255,255,0.72);
  font-style: italic;
  word-break: break-word;
  overflow-wrap: break-word;
  white-space: normal;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-width: 0;
  max-width: 100%;
}
.rv-card:hover .rv-text {
  -webkit-line-clamp: unset;
  overflow: visible;
}

/* CONTACT */
.contact { padding: 80px 0; }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; margin-top: 32px; }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-weight: 700; color: var(--navy); margin-bottom: 8px; font-size: 14px; }
.form-group label .req { color: var(--orange); }
.form-group input, .form-group textarea { width: 100%; padding: 14px 16px; border: 1px solid var(--border); border-radius: 12px; background: var(--white); font-family: 'Noto Sans', sans-serif; font-size: 14px; color: var(--navy); transition: border-color 0.2s; }
.form-group input:focus, .form-group textarea:focus { outline: none; border-color: var(--orange); }
.form-group textarea { min-height: 100px; resize: vertical; }
.btn-submit { background: var(--orange); color: var(--navy); padding: 14px 32px; border-radius: 50px; font-weight: 800; font-size: 15px; transition: transform 0.2s; }
.btn-submit:hover { transform: translateY(-2px); }
.help-card { background: var(--white); border-radius: 24px; padding: 32px; box-shadow: 0 4px 20px rgba(0,0,0,0.05); }
.help-card h3 { font-size: 24px; font-weight: 800; color: var(--navy); margin-bottom: 24px; }
.contact-block { padding: 20px 0; border-top: 1px solid var(--border); }
.contact-block:first-of-type { border-top: none; padding-top: 0; }
.contact-block h4 { font-weight: 800; color: var(--navy); margin-bottom: 12px; font-size: 15px; }
.contact-line { display: flex; align-items: center; gap: 10px; color: var(--text-muted); font-size: 15px; margin-bottom: 6px; }
.contact-line .icon { width: 28px; height: 28px; background: var(--cream); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 12px; flex-shrink: 0; }

/* FOOTER */
.footer { background: var(--navy); color: var(--white); padding: 60px 0 30px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 40px; }
.footer-brand .logo { color: var(--white); font-size: 48px; }
.footer-brand .logo span { color: var(--orange); font-size: 14px; margin-top: 4px; }
.footer-social { display: flex; gap: 14px; margin: 24px 0; }
.social-icon { width: 40px; height: 40px; background: rgba(255,255,255,0.1); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 16px; transition: background 0.2s; }
.social-icon:hover { background: var(--orange); color: var(--navy); }
.footer-contact { font-size: 14px; color: rgba(255,255,255,0.7); margin-bottom: 8px; display: flex; align-items: center; gap: 10px; }
.footer-col h4 { color: var(--orange); font-size: 15px; margin-bottom: 20px; font-weight: 700; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.footer-col a { color: rgba(255,255,255,0.7); font-size: 15px; transition: color 0.2s; }
.footer-col a:hover { color: var(--orange); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding-top: 24px; text-align: center; color: rgba(255,255,255,0.5); font-size: 14px; }

/* RESPONSIVE */
@media (max-width: 1100px) {
  .hero h1 { font-size: 60px; }
  .hero-phone-wrap { max-width: 380px; }
  .tag-takeaway { right: -12px; font-size: 14px; padding: 10px 20px; }
  .tag-delivery { font-size: 14px; padding: 10px 20px; }
}
@media (max-width: 1024px) {
  .nav-links { gap: 20px; }
  .nav-links a { font-size: 14px; }
  .hero h1 { font-size: 54px; }
  .hero-grid { gap: 24px; }
}
@media (max-width: 900px) {
  .nav-links { display: none; }
  .mobile-toggle { display: block; }
  .hero-grid, .about-grid, .why-grid, .service-row, .why-caps-grid, .partnership-grid, .contact-grid, .footer-grid { grid-template-columns: 1fr; }
  .why-grid, .footer-grid { gap: 24px; }
  .stats { grid-template-columns: repeat(3, 1fr); gap: 16px; padding-top: 40px; }
  .section-title { font-size: 34px; }
  .hero { padding: 24px 0 0px; }
  .hero-grid { gap: 32px; }
  .hero-content { max-width: 100%; text-align: center; margin: 0 auto; }
  .download-buttons { justify-content: center; }
  .hero h1 { font-size: 56px; }
  .hero-tagline-1, .hero-tagline-2 { font-size: 22px; }
  .hero-visual { min-height: auto; }
  .hero-phone-wrap { max-width: 420px; }
  /* About */
  .about { padding: 60px 0; }
  .about-grid { gap: 40px; }
  .about-image-wrap { padding-left: 20px; padding-top: 32px; max-width: 560px; margin: 0 auto; width: 100%; }
  .about-quote-mark { font-size: 70px; }
  .stat-num { font-size: 42px; }
  /* Services */
  .services { padding: 60px 0 24px; }
  .service-row { gap: 32px; margin-bottom: 48px; }
  .service-row.reverse .service-visual { order: 0; }
  .service-visual { min-height: auto; }
  .service-visual img { max-height: 340px; }
  .steps, .service-desc { max-width: 100%; }
  /* Why CAPS */
  .why-caps { padding: 48px 0 60px; }
  .why-caps-grid { gap: 40px; }
  .image-stack { min-height: 360px; max-width: 480px; }
  /* Partnership */
  .partnership { padding: 40px 0 60px; }
  .partner-card { padding: 44px 28px 32px; }
  /* Testimonials */
  .testimonials { padding: 60px 0 70px; }
  .t-rating-bar { flex-wrap: wrap; gap: 16px; padding: 16px 20px; }
  .t-rating-divider { display: none; }
  .rv-card { width: 260px; }
}
@media (max-width: 600px) {
  .hero-topbadge { font-size: 13px; padding: 5px 18px 5px 5px; }
  .hero-topbadge .dot { width: 24px; height: 24px; }
  .hero-topbadge .dot svg { width: 12px; height: 12px; }
  .hero h1 { font-size: 44px; letter-spacing: -1.5px; }
  .hero-tagline-1, .hero-tagline-2 { font-size: 19px; }
  .hero-subtitle { font-size: 16px; }
  .btn-download { font-size: 14px; padding: 6px 22px 6px 6px; }
  .btn-download .icon { width: 28px; height: 28px; }
  .hero-phone-wrap { max-width: 320px; }
  .tag-takeaway { font-size: 13px; padding: 8px 16px; right: -10px; }
  .tag-delivery { font-size: 13px; padding: 8px 16px; bottom: 6%; left: 4%; }
  /* About */
  .stats { grid-template-columns: 1fr; gap: 20px; padding-top: 32px; }
  .stat:not(:last-child)::after { display: none; }
  .stat { padding: 16px 0; border-bottom: 1px solid var(--border); }
  .stat:last-child { border-bottom: none; }
  .stat-num { font-size: 40px; }
  .about h3 { font-size: 20px; }
  .about-image-wrap { padding-left: 16px; padding-top: 28px; }
  .about-quote-mark { font-size: 60px; }
  .seamless-badge { font-size: 13px; padding: 10px 18px; right: -6px; bottom: 18px; }
  .feature-icon { width: 38px; height: 38px; }
  .feature-icon svg { width: 18px; height: 18px; }
  .feature-item { font-size: 15px; gap: 12px; }
  /* Services */
  .service-badge { font-size: 14px; padding: 8px 20px; }
  .service-visual img { max-height: 280px; }
  .step { font-size: 14px; padding: 5px 18px 5px 5px; }
  .step.active { padding: 5px 5px 5px 18px; }
  .step-num { width: 36px; height: 36px; font-size: 13px; }
  /* Why CAPS */
  .image-stack { min-height: 320px; max-width: 380px; }
  .stack-img-1, .stack-img-2 { width: 62%; height: 50%; }
  .door-badge { font-size: 12px; padding: 8px 16px; }
  /* Testimonials */
  .t-rating-bar { gap: 12px; }
  .t-big-score { font-size: 28px; }
  .t-stat-num { font-size: 18px; }
  .rv-card { width: 230px; padding: 16px 18px; }
  .marquee-fade { width: 60px; }
  .tcard-avatar { width: 100%; }
  /* Partnership */
  .partner-card h3 { font-size: 22px; }
  .partner-icon { width: 72px; height: 72px; }
  .partner-icon img { width: 38px; height: 38px; }
}
@media (max-width: 500px) {
  .testimonial-grid { grid-template-columns: 1fr; }
  .nav-inner { padding: 10px 10px 10px 20px; }
  .logo { font-size: 22px; }
  .btn-cta { padding: 9px 18px; font-size: 13px; }
  .hero h1 { font-size: 38px; letter-spacing: -1px; }
  .hero-tagline-1, .hero-tagline-2 { font-size: 17px; }
  .container { padding: 0 16px; }
  .section-title { font-size: 28px; }
}
@media (max-width: 380px) {
  .hero h1 { font-size: 34px; }
  .download-buttons { gap: 10px; }
  .hero-phone-wrap { max-width: 280px; }
}

/* ============================================== */
/* LEGAL / SUB-PAGES SHARED STYLES                */
/* ============================================== */
.page-hero {
  padding: 48px 0 40px;
  background: linear-gradient(180deg, var(--cream) 0%, var(--cream-light) 100%);
  position: relative;
}
.page-hero .container { max-width: 1000px; }
.page-hero .breadcrumb {
  display: flex;
  gap: 8px;
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 16px;
  font-weight: 500;
}
.page-hero .breadcrumb a { color: var(--orange); transition: color 0.2s; }
.page-hero .breadcrumb a:hover { color: var(--navy); }
.page-hero .breadcrumb span { color: var(--text-muted); }
.page-hero h1 {
  font-size: 48px;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -1.5px;
  line-height: 1.1;
  margin-bottom: 12px;
}
.page-hero h1 .accent { color: var(--orange); }
.page-hero .page-lead {
  font-size: 17px;
  color: var(--text-muted);
  max-width: 720px;
  line-height: 1.6;
}

.legal-section { padding: 40px 0 80px; }
.legal-section .container { max-width: 900px; }
.legal-content {
  background: var(--white);
  border-radius: 24px;
  padding: 56px 56px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.05);
}
.legal-content h2 {
  font-size: 24px;
  font-weight: 800;
  color: var(--navy);
  margin: 40px 0 16px;
  letter-spacing: -0.4px;
  position: relative;
  padding-left: 16px;
}
.legal-content h2:first-child { margin-top: 0; }
.legal-content h2::before {
  content: '';
  position: absolute;
  left: 0;
  top: 6px;
  bottom: 6px;
  width: 4px;
  background: var(--orange);
  border-radius: 2px;
}
.legal-content h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--navy);
  margin: 24px 0 10px;
}
.legal-content p {
  font-size: 15px;
  line-height: 1.75;
  color: var(--text-muted);
  margin-bottom: 14px;
}
.legal-content p strong, .legal-content strong { color: var(--navy); font-weight: 700; }
.legal-content ul {
  margin: 10px 0 18px;
  padding-left: 22px;
}
.legal-content ul li {
  font-size: 15px;
  line-height: 1.75;
  color: var(--text-muted);
  margin-bottom: 6px;
  position: relative;
}
.legal-content ul li::marker { color: var(--orange); }
.legal-content a { color: var(--orange); text-decoration: underline; }
.legal-content a:hover { color: var(--navy); }
.legal-content .legal-meta {
  background: var(--cream);
  border-left: 4px solid var(--orange);
  padding: 18px 22px;
  border-radius: 8px;
  margin: 24px 0;
  font-size: 14px;
  color: var(--navy);
}
.legal-content .legal-meta strong { color: var(--navy); }

/* About-us subpage hero  */
.about-page-hero {
  padding: 48px 0 20px;
}
.about-page-hero h1 { font-size: 54px; }
.about-page-hero .page-lead { font-size: 18px; }

@media (max-width: 900px) {
  .page-hero { padding: 36px 0 28px; }
  .page-hero h1 { font-size: 38px; }
  .about-page-hero h1 { font-size: 42px; }
  .legal-content { padding: 36px 28px; border-radius: 20px; }
  .legal-section { padding: 24px 0 60px; }
}
@media (max-width: 600px) {
  .page-hero h1 { font-size: 30px; letter-spacing: -1px; }
  .about-page-hero h1 { font-size: 32px; }
  .page-hero .page-lead { font-size: 15px; }
  .legal-content { padding: 28px 20px; }
  .legal-content h2 { font-size: 20px; }
  .legal-content p, .legal-content ul li { font-size: 14px; }
}