/* ===== CSS Variables & Base ===== */
:root {
  --primary: #cc0844;
  --primary-dark: #a4062f;
  --primary-container: #cc0844;
  --secondary: #964900;
  --secondary-container: #ff8928;
  --tertiary: #6b38c8;
  --tertiary-container: #8554e3;
  --surface: #fcf9f8;
  --on-surface: #1b1c1c;
  --on-surface-variant: #564148;
  --outline-variant: #dcbfc8;
  --on-primary: #ffffff;
  --primary-fixed: #ffd9e5;
  --secondary-fixed: #ffdcc6;
  --tertiary-fixed: #eaddff;
  --red: #e53935;
  --red-fixed: #fdd9d7;
  --green: #2e7d32;
  --green-fixed: #d4ecd6;
  --light-blue: #0288d1;
  --light-blue-fixed: #d3eefb;
  --dark-blue: #0d47a1;
  --dark-blue-fixed: #d6e0f5;
  --dark-orange: #d35400;
  --dark-orange-fixed: #ffe2c6;
  --font: 'Plus Jakarta Sans', sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font);
  background: var(--surface);
  color: var(--on-surface);
  overflow-x: hidden;
  line-height: 1.6;
}

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

ul {
  list-style: none;
}

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

/* ===== Utilities ===== */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 80px;
}

@media (max-width: 1024px) {
  .container {
    padding: 0 48px;
  }
}

@media (max-width: 768px) {
  .container {
    padding: 0 24px;
  }
}

.gradient-primary {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
}

.gradient-warm {
  background: linear-gradient(135deg, #f7a044 0%, #e8446d 40%, var(--primary) 100%);
}

.gradient-hero {
  background: linear-gradient(160deg, #fce4ec 0%, #fff3e0 30%, #fce4ec 60%, #f3e5f5 100%);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 20px;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.05em;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-primary {
  background: var(--primary);
  color: #fff;
  box-shadow: none;
}

.btn-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
}

.btn-outline {
  background: #f4f6f8;
  color: #1a1a1a;
  border: none;
}

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

.section-title {
  font-size: 40px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.01em;
  text-align: center;
  margin-bottom: 16px;
}

.section-bar {
  width: 80px;
  height: 5px;
  border-radius: 999px;
  margin: 0 auto 60px;
}

/* ===== Animations ===== */
@keyframes float {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-12px);
  }
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pulse {

  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.05);
  }
}

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateX(-40px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.animate-float {
  animation: float 4s ease-in-out infinite;
}

.animate-fadeUp {
  animation: fadeUp 0.8s ease forwards;
}

.animate-pulse-slow {
  animation: pulse 3s ease-in-out infinite;
}

/* ===== Header ===== */
.header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 100;
  background: rgba(252, 249, 248, 0.85);
  backdrop-filter: blur(20px);
  box-shadow: 0 4px 20px rgba(74, 0, 33, 0.04);
  transition: all 0.3s ease;
}

.header.scrolled {
  box-shadow: 0 4px 30px rgba(74, 0, 33, 0.08);
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 16px;
  padding-bottom: 16px;
}

.logo {
  font-size: 24px;
  font-weight: 800;
  color: var(--primary);
  display: flex;
  align-items: center;
}

.logo img {
  height: 30px;
  width: auto;
  display: block;
}

.nav-links {
  display: flex;
  gap: 32px;
  align-items: center;
}

.nav-links a {
  font-size: 14px;
  font-weight: 600;
  color: var(--on-surface-variant);
  letter-spacing: 0.05em;
  transition: color 0.2s;
  position: relative;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--primary);
}

.nav-links a.active::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--primary);
  border-radius: 999px;
}

.mobile-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 28px;
  color: var(--primary);
}

/* ===== Hero ===== */
.hero {
  padding: 140px 0 80px;
  position: relative;
  overflow: hidden;
  background: linear-gradient(160deg, #fce4ec 0%, #fff8f0 40%, #fce4ec 70%, #f3e5f5 100%);
}

.hero::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(255, 137, 40, 0.15), transparent 70%);
  border-radius: 50%;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-text h1 {
  font-size: 56px;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
}

.hero-text h1 span {
  color: var(--primary);
}

.hero-text p {
  font-size: 18px;
  line-height: 1.6;
  color: var(--on-surface-variant);
  max-width: 480px;
  margin-bottom: 36px;
}

.hero-phone-area {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 480px;
}

/* Orbit rings */
.hero-orbit {
  position: absolute;
  border-radius: 50%;
  border: 1.5px solid rgba(204, 8, 68, 0.08);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.hero-orbit-1 {
  width: 320px;
  height: 320px;
  animation: orbitSpin 25s linear infinite;
}

.hero-orbit-2 {
  width: 420px;
  height: 420px;
  border-color: rgba(255, 137, 40, 0.1);
  animation: orbitSpin 35s linear infinite reverse;
}

.hero-orbit-3 {
  width: 520px;
  height: 520px;
  border-style: dashed;
  border-color: rgba(107, 56, 200, 0.06);
  animation: orbitSpin 50s linear infinite;
}

@keyframes orbitSpin {
  from { transform: translate(-50%, -50%) rotate(0deg); }
  to   { transform: translate(-50%, -50%) rotate(360deg); }
}

/* Floating service badges */
.hero-badge {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(12px);
  box-shadow: 0 8px 32px rgba(74, 0, 33, 0.1);
  font-size: 13px;
  font-weight: 700;
  color: var(--on-surface);
  z-index: 3;
  white-space: nowrap;
}

.hero-badge .badge-label,
.hero-badge .material-symbols-outlined {
  transition: opacity 0.25s ease;
}

.hero-badge.badge-fade .badge-label,
.hero-badge.badge-fade .material-symbols-outlined {
  opacity: 0;
}

.hero-badge .material-symbols-outlined {
  font-size: 20px;
}

.hero-badge-1 {
  top: 12%;
  left: -5%;
}

.hero-badge-2 {
  top: 8%;
  right: -5%;
}

.hero-badge-3 {
  bottom: 22%;
  left: -8%;
}

.hero-badge-4 {
  bottom: 12%;
  right: -3%;
}

.hero-badge-5 {
  top: 45%;
  left: -12%;
}

.hero-badge-6 {
  top: 42%;
  right: -10%;
}

/* Decorative dots */
.hero-dot {
  position: absolute;
  border-radius: 50%;
  z-index: 1;
}

.hero-dot-1 {
  width: 12px;
  height: 12px;
  background: var(--secondary-container);
  top: 5%;
  left: 35%;
  animation: float 3s ease-in-out infinite;
}

.hero-dot-2 {
  width: 8px;
  height: 8px;
  background: var(--primary);
  bottom: 8%;
  left: 15%;
  animation: float 4s ease-in-out infinite 0.7s;
}

.hero-dot-3 {
  width: 10px;
  height: 10px;
  background: var(--tertiary);
  top: 25%;
  right: 3%;
  animation: float 3.5s ease-in-out infinite 1.2s;
}

/* Single phone */
.hero-phone {
  position: relative;
  z-index: 2;
  width: 260px;
  filter: drop-shadow(0 30px 60px rgba(164, 6, 47, 0.25));
  animation: heroFloat 5s ease-in-out infinite;
}

.hero-phone img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 28px;
}

@keyframes heroFloat {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-16px); }
}


/* ===== Services ===== */
.services {
  padding: 100px 0;
}

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

.service-card {
  background: #f4f6f8;
  padding: 24px 24px 100px 24px;
  border-radius: 12px;
  border: none;
  box-shadow: none;
  transition: all 0.5s cubic-bezier(0.25, 1, 0.5, 1);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  background: #fff;
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.06);
}

.service-icon {
  position: absolute;
  bottom: -15px;
  right: -15px;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
  transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
  z-index: 0;
}

.service-icon .material-symbols-outlined {
  font-size: 56px;
  transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.service-card:hover .service-icon {
  transform: scale(1.1) translate(-8px, -8px);
}

.service-card:hover .service-icon .material-symbols-outlined {
  transform: scale(1.1) rotate(-10deg);
}

.service-icon.pink {
  background: var(--primary-fixed);
  color: var(--primary);
}

.service-icon.orange {
  background: var(--secondary-fixed);
  color: var(--secondary);
}

.service-icon.purple {
  background: var(--tertiary-fixed);
  color: var(--tertiary);
}

.service-icon.red {
  background: var(--red-fixed);
  color: var(--red);
}

.service-icon.green {
  background: var(--green-fixed);
  color: var(--green);
}

.service-icon.light-blue {
  background: var(--light-blue-fixed);
  color: var(--light-blue);
}

.service-icon.dark-blue {
  background: var(--dark-blue-fixed);
  color: var(--dark-blue);
}

.service-icon.dark-orange {
  background: var(--dark-orange-fixed);
  color: var(--dark-orange);
}

.service-card h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 8px;
  color: #1a1a1a;
  z-index: 1;
  transition: all 0.4s ease;
}

.service-card p {
  color: #555;
  font-size: 15px;
  line-height: 1.5;
  max-width: 85%;
  z-index: 1;
  transition: all 0.4s ease;
}

.service-card:hover h3,
.service-card:hover p {
  transform: translateX(6px);
}

.service-card:hover:has(.pink) h3 {
  color: var(--primary);
}

.service-card:hover:has(.orange) h3 {
  color: var(--secondary);
}

.service-card:hover:has(.purple) h3 {
  color: var(--tertiary);
}

.service-card:hover:has(.red) h3 {
  color: var(--red);
}

.service-card:hover:has(.green) h3 {
  color: var(--green);
}

.service-card:hover:has(.light-blue) h3 {
  color: var(--light-blue);
}

.service-card:hover:has(.dark-blue) h3 {
  color: var(--dark-blue);
}

.service-card:hover:has(.dark-orange) h3 {
  color: var(--dark-orange);
}

/* ===== App Showcase ===== */
.app-showcase {
  padding: 100px 0 60px;
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, #fff5f9 0%, #ffe8d6 15%, #f0a0b8 35%, var(--primary) 60%, #8a0953 100%);
  color: #fff;
}

.app-showcase .section-title {
  color: var(--on-surface);
  font-size: 44px;
  font-weight: 800;
}

.app-showcase .subtitle {
  text-align: center;
  font-size: 18px;
  max-width: 560px;
  margin: 0 auto 24px;
  line-height: 1.7;
  color: var(--on-surface-variant);
}

.phone-section {
  position: relative;
  margin-top: 50px;
  padding-bottom: 20px;
}

.phone-carousel-wrapper {
  position: relative;
  max-width: 716px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.carousel-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: -10px;
}

.phone-carousel {
  display: flex;
  width: 100%;
  flex: 1;
  min-width: 0;
  overflow-x: auto;
  gap: 30px;
  padding: 30px calc(50% - 100px) 0; /* Center 200px wide item */
  align-items: flex-end;
  -ms-overflow-style: none; /* Hide scrollbar IE and Edge */
  scrollbar-width: none; /* Hide scrollbar Firefox */
  touch-action: pan-y;
  -webkit-overflow-scrolling: touch;
  cursor: grab;
  user-select: none;
  mask-image: linear-gradient(to right, transparent 0, black 175px, black calc(100% - 175px), transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0, black 175px, black calc(100% - 175px), transparent 100%);
}

.phone-carousel.dragging {
  cursor: grabbing;
  scroll-snap-type: none;
}

.phone-carousel::-webkit-scrollbar {
  display: none; /* Hide scrollbar Chrome/Safari */
}

.phone-mockup.slide-item {
  scroll-snap-align: center;
  flex-shrink: 0;
  width: 180px;
  aspect-ratio: 1280 / 2680;
  transform: translateY(-20px);
  opacity: 0.6;
  transition: width 0.5s cubic-bezier(0.22, 1, 0.36, 1), transform 0.5s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.5s cubic-bezier(0.22, 1, 0.36, 1);
  cursor: pointer;
  border-radius: 32px;
  overflow: hidden;
}

.phone-mockup.slide-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: inherit;
  -webkit-user-drag: none;
}

.phone-mockup.slide-item.active {
  width: 200px;
  transform: translateY(0);
  opacity: 1;
}

.carousel-btn {
  background: #fff;
  border: none;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  box-shadow: 0 4px 16px rgba(0,0,0,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: all 0.3s;
  color: #1a1a1a;
}

.carousel-btn:hover {
  background: var(--primary);
  color: #fff;
  transform: scale(1.05);
}

.floating-icon {
  position: absolute;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
  background: #fff;
  opacity: 0.8;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
}

.floating-icon .material-symbols-outlined {
  font-size: 22px;
}

.floating-icon:nth-child(1) {
  top: 6%;
  left: 11%;
  animation: float 4s ease-in-out infinite;
}

.floating-icon:nth-child(2) {
  top: 26%;
  left: 16%;
  animation: float 3.5s ease-in-out infinite 0.5s;
}

.floating-icon:nth-child(3) {
  top: 52%;
  left: 9%;
  animation: float 4.5s ease-in-out infinite 1s;
}

.floating-icon:nth-child(4) {
  bottom: 9%;
  left: 13%;
  animation: float 3.8s ease-in-out infinite 1.5s;
}

.floating-icon:nth-child(5) {
  top: 9%;
  right: 14%;
  animation: float 4.2s ease-in-out infinite 0.8s;
}

.floating-icon:nth-child(6) {
  top: 35%;
  right: 10%;
  animation: float 3.6s ease-in-out infinite 1.2s;
}

.floating-icon:nth-child(7) {
  bottom: 30%;
  right: 15%;
  animation: float 4.1s ease-in-out infinite 0.3s;
}

.floating-icon:nth-child(8) {
  bottom: 4%;
  right: 9%;
  animation: float 3.9s ease-in-out infinite 0.7s;
}

.store-buttons {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-top: 40px;
}

.store-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 28px;
  border-radius: 11px;
  background: #fff;
  border: none;
  color: #1a1a1a;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 14px;
}

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

.store-btn .store-label {
  font-size: 11px;
  opacity: 0.8;
}

.store-btn .store-name {
  font-size: 16px;
  font-weight: 700;
}

/* ===== Testimonials ===== */
.testimonials {
  padding: 100px 0;
  background: var(--surface);
}

.testimonials-wrapper {
  display: flex;
  align-items: center;
  gap: 20px;
  position: relative;
}

.testimonial-nav {
  width: 48px;
  height: 48px;
  min-width: 48px;
  border-radius: 45%;
  border: none;
  background: #f4f6f8;
  box-shadow: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  color: #1a1a1a;
  z-index: 2;
}

.testimonial-nav:hover {
  background: #eef1f5;
  transform: translateY(-2px);
}

.testimonials-track {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  flex: 1;
}

.testimonial-card {
  background: #f4f6f8;
  padding: 32px;
  border-radius: 16px;
  box-shadow: none;
  text-align: left;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 10px;
  right: 24px;
  font-size: 80px;
  color: rgba(150, 73, 0, 0.08);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800;
  line-height: 1;
  pointer-events: none;
}

.testimonial-card.featured {
  border: none;
  background: #ebf0f5;
}

.testimonial-card:hover {
  background: #eef1f5;
  transform: translateY(-2px);
}

.testimonial-name {
  font-size: 18px;
  font-weight: 700;
  color: #1a1a1a;
  letter-spacing: 0;
  margin-bottom: 2px;
  z-index: 1;
}

.testimonial-title {
  font-size: 13px;
  color: var(--on-surface-variant);
  font-weight: 500;
  margin-bottom: 8px;
  display: block;
  z-index: 1;
}

.testimonial-stars {
  display: flex;
  justify-content: flex-start;
  gap: 2px;
  margin-bottom: 12px;
  color: var(--secondary);
  z-index: 1;
}

.testimonial-stars .material-symbols-outlined {
  font-size: 16px;
  font-variation-settings: 'FILL' 1;
}

.testimonial-text {
  color: #555;
  font-style: italic;
  font-size: 15px;
  line-height: 1.6;
  max-width: 100%;
  z-index: 1;
}

/* ===== Partners ===== */
.partners {
  padding: 100px 0 110px;
  background: #fff5f9;
  overflow: hidden;
}

.partners-marquee {
  width: 100%;
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  cursor: grab;
  mask-image: linear-gradient(90deg, transparent, #000 4%, #000 96%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 4%, #000 96%, transparent);
}

.partners-marquee::-webkit-scrollbar {
  display: none;
}

.partners-marquee.dragging {
  cursor: grabbing;
}

.partners-track {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 64px;
  width: max-content;
  min-width: 100%;
  padding: 0 24px;
}

.partner-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--on-surface-variant);
  filter: grayscale(1) opacity(0.6);
  transition: all 0.3s ease;
}

.partner-logo:hover {
  filter: grayscale(0) opacity(1);
  color: var(--primary);
}

.partner-logo .material-symbols-outlined {
  font-size: 30px;
}

.partner-logo img {
  width: 120px;
  height: 40px;
  object-fit: contain;
}

@media (max-width: 768px) {
  .partners {
    padding: 70px 0 80px;
  }

  .partner-logo {
    font-size: 16px;
    gap: 8px;
  }

  .partner-logo .material-symbols-outlined {
    font-size: 24px;
  }

  .partner-logo img {
    width: 90px;
    height: 30px;
  }
}

/* ===== Insights / Stats ===== */
.insights {
  padding: 100px 0;
  background: linear-gradient(160deg, #fff5f9 0%, #ffe8d6 50%, #f3e5f5 100%);
  position: relative;
  overflow: hidden;
}

.insights-subtitle {
  text-align: center;
  font-size: 18px;
  color: var(--on-surface-variant);
  max-width: 520px;
  margin: -40px auto 56px;
  line-height: 1.7;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(8px, 2vw, 24px);
}

.stat-card {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: clamp(12px, 2vw, 20px);
  padding: clamp(14px, 3vw, 36px) clamp(8px, 2vw, 24px);
  text-align: center;
  box-shadow: 0 8px 32px rgba(74, 0, 33, 0.06);
  transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1), box-shadow 0.4s ease;
  min-width: 0;
}

.stat-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(74, 0, 33, 0.12);
}

.stat-icon {
  width: clamp(36px, 8vw, 60px);
  height: clamp(36px, 8vw, 60px);
  margin: 0 auto clamp(8px, 2vw, 16px);
  border-radius: clamp(10px, 2vw, 18px);
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--primary-fixed);
  color: var(--primary);
}

.stat-icon .material-symbols-outlined {
  font-size: clamp(18px, 4vw, 30px);
}

.stat-number {
  font-size: clamp(18px, 5vw, 40px);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--primary);
  margin-bottom: clamp(4px, 1vw, 8px);
  white-space: nowrap;
}

.stat-label {
  font-size: clamp(10px, 2.2vw, 14px);
  font-weight: 600;
  color: var(--on-surface-variant);
  letter-spacing: 0.02em;
  line-height: 1.3;
}

.stat-rating-stars {
  display: flex;
  justify-content: center;
  gap: 1px;
  margin-bottom: clamp(4px, 1vw, 8px);
  color: var(--secondary-container);
}

.stat-rating-stars .material-symbols-outlined {
  font-size: clamp(11px, 2.5vw, 18px);
  font-variation-settings: 'FILL' 1;
}

@media (max-width: 768px) {
  .insights {
    padding: 70px 0;
  }
}

@media (max-width: 420px) {
  .stats-grid {
    gap: 6px;
  }

  .stat-card {
    padding: 10px 4px;
    border-radius: 10px;
  }
}

/* ===== FAQ ===== */
.faq {
  padding: 100px 0;
  background: #fff;
}

.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  max-width: 900px;
  margin: 0 auto;
  align-items: start;
}

.faq-item {
  background: #fff;
  border: 1px solid var(--outline-variant);
  border-radius: 16px;
  cursor: pointer;
  overflow: hidden;
  transition: border-color 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.faq-item:hover {
  border-color: var(--primary);
  box-shadow: 0 6px 20px rgba(204, 8, 68, 0.08);
}

.faq-item.active {
  border-color: var(--primary);
  background: var(--primary-fixed);
}

.faq-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 18px 22px;
  font-weight: 700;
  font-size: 15px;
  color: var(--on-surface);
}

.faq-item .icon {
  font-size: 22px;
  color: var(--primary);
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.faq-item.active .icon {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 22px;
  font-weight: 400;
  font-size: 14px;
  line-height: 1.65;
  color: var(--on-surface-variant);
  transition: max-height 0.35s ease, padding 0.35s ease;
}

.faq-item.active .faq-answer {
  max-height: 320px;
  padding: 0 22px 20px;
}

/* ===== Footer ===== */
.footer {
  background: var(--primary);
  color: #fff;
  border-radius: 40px 40px 0 0;
  position: relative;
  overflow: hidden;
  margin-top: 0;
}

.footer::before {
  content: '';
  position: absolute;
  bottom: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  background: var(--secondary);
  border-radius: 50%;
  opacity: 0.15;
  filter: blur(80px);
}

.footer-inner {
  padding-top: 80px;
  padding-bottom: 40px;
  position: relative;
  z-index: 1;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 2fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-brand p {
  opacity: 0.8;
  margin: 16px 0 24px;
  font-size: 15px;
  line-height: 1.7;
}

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

.social-links-right {
  justify-content: flex-end;
  margin-top: 20px;
}

.footer .social-links a.social-link {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: rgba(255, 255, 255, 0.1);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  opacity: 1;
  flex-shrink: 0;
  transition: background 0.25s ease, color 0.25s ease, transform 0.25s ease;
}

.footer .social-links a.social-link svg {
  display: block;
  width: 17px;
  height: 17px;
}

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

.footer-col h4 {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.05em;
  margin-bottom: 20px;
}

.footer-col a {
  display: block;
  font-size: 14px;
  opacity: 0.8;
  margin-bottom: 12px;
  transition: all 0.2s;
}

.footer-col a:hover {
  opacity: 1;
  transform: translateX(4px);
}

.newsletter-input {
  position: relative;
  margin-top: 8px;
}

.newsletter-input input {
  width: 100%;
  padding: 16px 130px 16px 20px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  font-size: 14px;
  outline: none;
  font-family: var(--font);
}

.newsletter-input input::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

.newsletter-input button {
  position: absolute;
  right: 6px;
  top: 6px;
  bottom: 6px;
  padding: 0 24px;
  border-radius: 16px;
  background: #fff;
  color: var(--primary);
  font-weight: 700;
  border: none;
  cursor: pointer;
  transition: all 0.3s;
  font-family: var(--font);
}

.newsletter-input button:hover {
  background: #f4f6f8;
  transform: translateY(-2px);
}

.footer-bottom {
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 13px;
  opacity: 0.6;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}

.footer-bottom .footer-legal-links {
  display: flex;
  gap: 16px;
}

/* ===== Responsive ===== */
@media (max-width: 1024px) {
  .hero-text h1 {
    font-size: 42px;
  }

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

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

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

@media (max-width: 768px) {
  .nav-links {
    display: none;
  }

  .mobile-toggle {
    display: block;
  }

  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--surface);
    padding: 24px;
    gap: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  }

  .hero {
    padding: 120px 0 60px;
  }

  .hero-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .hero-text h1 {
    font-size: 36px;
  }

  .hero-phone-area {
    min-height: 360px;
  }

  .hero-phone {
    width: 190px;
  }

  .hero-orbit-1 { width: 240px; height: 240px; }
  .hero-orbit-2 { width: 310px; height: 310px; }
  .hero-orbit-3 { width: 380px; height: 380px; }

  .hero-badge {
    padding: 7px 12px;
    font-size: 11px;
  }

  .hero-badge .material-symbols-outlined {
    font-size: 16px;
  }

  .hero-badge-1 { left: 0; }
  .hero-badge-2 { right: 0; }
  .hero-badge-3 { left: -2%; }
  .hero-badge-4 { right: 0; }
  .hero-badge-5, .hero-badge-6 { display: none; }

  .section-title {
    font-size: 30px;
  }

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

  .phone-section {
    flex-direction: row;
    gap: 16px;
  }

  .phone-mockup {
    width: 200px;
  }

  .phone-mockup.secondary {
    width: 180px;
  }

  .floating-icon {
    width: 32px;
    height: 32px;
  }

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

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

  .store-buttons {
    flex-direction: column;
    align-items: center;
  }

  .testimonials-track {
    grid-template-columns: 1fr;
  }

  .testimonial-nav {
    width: 40px;
    height: 40px;
    min-width: 40px;
  }
}

/* ===== Scroll Reveal ===== */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== Legal Pages (Terms / Privacy) ===== */
.legal-hero {
  padding: 140px 0 60px;
  background: linear-gradient(135deg, #fff0f5 0%, var(--surface) 100%);
  text-align: center;
}

.legal-hero h1 {
  font-size: 44px;
  font-weight: 800;
  letter-spacing: -0.01em;
}

.legal-hero p {
  margin-top: 12px;
  color: var(--on-surface-variant);
  font-size: 15px;
}

.legal-body {
  padding: 60px 0 100px;
}

.legal-body .container {
  max-width: 860px;
}

.legal-body h2 {
  font-size: 24px;
  font-weight: 700;
  margin: 40px 0 12px;
  color: var(--on-surface);
}

.legal-body h2:first-child {
  margin-top: 0;
}

.legal-body p,
.legal-body li {
  color: var(--on-surface-variant);
  font-size: 15.5px;
  margin-bottom: 14px;
}

.legal-body ul {
  list-style: disc;
  padding-left: 22px;
  margin-bottom: 14px;
}

.legal-body a {
  color: var(--primary);
  font-weight: 600;
}

@media (max-width: 768px) {
  .legal-hero h1 {
    font-size: 32px;
  }
}

/* ===== Contact Page ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 64px;
  align-items: start;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.contact-info-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.contact-info-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(204, 8, 68, 0.08);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-info-icon .material-symbols-outlined {
  font-size: 24px;
}

.contact-info-text h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 6px;
  color: var(--on-surface);
}

.contact-info-text p {
  color: var(--on-surface-variant);
  font-size: 15px;
  line-height: 1.6;
}

.contact-form-wrapper {
  background: #ffffff;
  padding: 32px;
  border-radius: 24px;
  box-shadow: 0 10px 40px rgba(74, 0, 33, 0.04);
}

.contact-form-wrapper h2 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--on-surface);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group {
  margin-bottom: 16px;
}

.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--on-surface-variant);
}

.form-control {
  width: 100%;
  padding: 11px 15px;
  border: 1px solid var(--outline-variant);
  border-radius: 12px;
  background: #fcf9f8;
  color: var(--on-surface);
  font-family: inherit;
  font-size: 14.5px;
  transition: all 0.25s ease;
}

.form-control:focus {
  outline: none;
  border-color: var(--primary);
  background: #ffffff;
  box-shadow: 0 0 0 4px rgba(204, 8, 68, 0.1);
}

textarea.form-control {
  resize: vertical;
  min-height: 90px;
}

.form-message {
  margin-top: 16px;
  padding: 12px 16px;
  border-radius: 8px;
  font-size: 14px;
  display: none;
}

.form-message.success {
  display: block;
  background: var(--green-fixed);
  color: var(--green);
  border: 1px solid rgba(46, 125, 50, 0.2);
}

.form-message.error {
  display: block;
  background: #fdd9d7;
  color: var(--red);
  border: 1px solid rgba(229, 57, 21, 0.2);
}

@media (max-width: 1024px) {
  .contact-grid {
    gap: 40px;
  }
}

@media (max-width: 768px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .contact-form-wrapper {
    padding: 30px 20px;
  }
}

@media (max-width: 576px) {
  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }
}