/* Meet My Pair - Express.js styles (from Figma design) */

:root {
  --orange-50: #fff7ed;
  --orange-100: #ffedd5;
  --orange-200: #fed7aa;
  --orange-300: #fdba74;
  --orange-400: #fb923c;
  --orange-500: #f97316;
  --orange-600: #ea580c;
  --orange-700: #c2410c;
  --red-100: #fee2e2;
  --red-500: #ef4444;
  --red-600: #dc2626;
  --green-500: #22c55e;
  --green-600: #16a34a;
  --green-100: #dcfce7;
  --emerald-500: #10b981;
  --amber-50: #fffbeb;
  --amber-100: #fef3c7;
  --amber-200: #fde68a;
  --amber-300: #fcd34d;
  --amber-500: #f59e0b;
  --amber-600: #d97706;
  --rose-500: #f43f5e;
  --gray-600: #4b5563;
  --gray-700: #374151;
  --gray-800: #1f2937;
  --white: #ffffff;
}

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

img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}

pre,
code,
.copyright,
.footer-brand p {
  word-wrap: break-word;
  overflow-wrap: break-word;
}
table {
  display: block;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background: linear-gradient(to bottom right, var(--orange-50), var(--amber-50), #fef2f2);
  color: var(--gray-800);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  min-height: 100vh;
}

.app-mmp {
  min-height: 100vh;
  position: relative;
}

/* Animated background blobs */
.app-mmp::before {
  content: '';
  position: fixed;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
}
.hero-mmp-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
}
.hero-mmp-bg::before,
.hero-mmp-bg::after,
.hero-mmp-bg + .container .hero-mmp-bg-blob {
  display: none;
}
@keyframes blob {
  0% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(30px, -50px) scale(1.1); }
  66% { transform: translate(-20px, 20px) scale(0.9); }
  100% { transform: translate(0, 0) scale(1); }
}

/* Container */
.container {
  max-width: 80rem;
  margin: 0 auto;
  padding: 0 1.5rem;
  position: relative;
  z-index: 1;
}

/* Navigation - MMP (Figma: sticky, backdrop-blur, bg-white/30, border-white/20, shadow-lg) */
.nav-mmp {
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.nav-inner {
  max-width: 80rem;
  margin: 0 auto;
  padding: 1rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo-mmp {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  color: inherit;
}
.logo-mmp .logo-text-mmp {
  white-space: nowrap;
}

/* Figma: bg-gradient-to-br from-orange-500 via-red-500 to-orange-600 p-2 rounded-xl shadow-lg */
.logo-icon-mmp {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem;
  background: linear-gradient(135deg, var(--orange-500), var(--red-500), var(--orange-600));
  border-radius: 0.75rem;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}
.logo-icon-mmp svg {
  width: 1.5rem;
  height: 1.5rem;
  color: white;
  fill: white;
}
.logo-icon-mmp-sm svg {
  width: 1.25rem;
  height: 1.25rem;
}

/* Figma: text-2xl font-bold bg-gradient-to-r from-orange-600 via-red-600 to-orange-700 */
.logo-text-mmp {
  font-size: 1.5rem;
  font-weight: 700;
  background: linear-gradient(to right, var(--orange-600), var(--red-600), var(--orange-700));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Figma: text-gray-700 hover:text-orange-600 font-medium */
.nav-link-mmp {
  color: var(--gray-700);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s;
  white-space: nowrap;
}
.nav-link-mmp:hover {
  color: var(--orange-600);
}

.nav-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 4px;
  min-width: 44px;
  min-height: 44px;
  padding: 10px;
  background: rgba(255, 255, 255, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.2s;
}
.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--gray-800);
  border-radius: 1px;
  transition: all 0.3s;
}
.nav-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.nav-toggle.active span:nth-child(2) {
  opacity: 0;
}
.nav-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Figma: hidden md:flex items-center gap-8 — 4 nav links + Sign In */
.nav-links {
  display: none;
  align-items: center;
  gap: 2rem;
}
@media (min-width: 768px) {
  .nav-toggle {
    display: none;
  }
  .nav-links {
    display: flex;
  }
}
.nav-close {
  display: none !important; /* only show when .nav-links.mobile-open */
  align-self: flex-end;
  margin-bottom: 1rem;
  padding: 0.75rem 1.25rem;
  min-height: 44px;
  font-size: 1rem;
  font-weight: 600;
  color: var(--gray-800);
  background: rgba(255, 255, 255, 0.5);
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  cursor: pointer;
  font-family: inherit;
  transition: background 0.2s, color 0.2s;
}
.nav-close:hover {
  background: rgba(255, 255, 255, 0.8);
  color: var(--orange-600);
}

.nav-links.mobile-open {
  display: flex;
  flex-direction: column;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  min-height: 100vh;
  background: rgba(255, 247, 237, 0.98);
  backdrop-filter: blur(12px);
  padding: 5rem 1.5rem 2rem;
  gap: 0;
  overflow-y: auto;
  z-index: 1;
}
.nav-links.mobile-open .nav-close {
  display: flex !important;
  align-items: center;
  justify-content: center;
}
.nav-links.mobile-open .nav-link-mmp,
.nav-links.mobile-open .btn-signin-mmp {
  padding: 0.875rem 1rem;
  min-height: 44px;
  display: flex;
  align-items: center;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

body.menu-open {
  position: fixed;
  left: 0;
  right: 0;
  width: 100%;
  overflow: hidden;
}

/* Figma Sign In button: rounded-md, gradient, shadow-lg (not pill) */
.btn-signin-mmp {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem 1rem;
  min-height: 2.25rem;
  font-size: 0.875rem;
  font-weight: 500;
  border: none;
  border-radius: 0.375rem;
  cursor: pointer;
  font-family: inherit;
  text-decoration: none;
  background: linear-gradient(to right, var(--orange-500), var(--red-500), var(--orange-600));
  color: white;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  transition: box-shadow 0.2s, filter 0.2s;
  white-space: nowrap;
}
.btn-signin-mmp:hover {
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}
a.btn-signin-mmp {
  border: 1px solid transparent;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.625rem 1.25rem;
  min-height: 44px;
  font-size: 0.9375rem;
  font-weight: 500;
  border: none;
  border-radius: 9999px;
  cursor: pointer;
  transition: all 0.2s;
  font-family: inherit;
  text-decoration: none;
}
a.btn {
  border: 1px solid transparent;
}

.btn-mmp,
.btn-primary.btn-mmp {
  background: linear-gradient(to right, var(--orange-500), var(--red-500), var(--orange-600));
  color: white;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}
.btn-mmp:hover,
.btn-primary.btn-mmp:hover {
  box-shadow: 0 20px 25px -5px rgba(234, 88, 12, 0.3);
}

.btn-secondary-mmp {
  background: rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(8px);
  color: var(--gray-800);
  border: 2px solid rgba(255, 255, 255, 0.5);
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}
.btn-secondary-mmp:hover {
  background: rgba(255, 255, 255, 0.6);
}

/* Hero MMP */
.hero-mmp {
  position: relative;
  padding: 5rem 0 4rem;
  min-height: auto;
}
.hero-mmp-inner {
  position: relative;
  z-index: 2;
}
.hero-mmp-grid {
  display: grid;
  gap: 3rem;
  align-items: center;
}
@media (min-width: 768px) {
  .hero-mmp-grid {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }
  .hero-mmp {
    padding: 6rem 0 5rem;
  }
}

.hero-mmp-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 9999px;
  padding: 0.5rem 1rem;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.05);
  margin-bottom: 1.5rem;
}
.hero-mmp-badge-icon {
  color: var(--orange-600);
  flex-shrink: 0;
}
.hero-mmp-badge span {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--orange-700);
}

.hero-mmp-title {
  font-size: clamp(2.5rem, 5vw, 3.75rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
}
.hero-mmp-title-gradient {
  background: linear-gradient(to right, var(--orange-600), var(--red-600), var(--amber-600));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-mmp-title-dark {
  color: var(--gray-800);
}

.hero-mmp-desc {
  font-size: 1.25rem;
  color: var(--gray-600);
  line-height: 1.6;
  margin-bottom: 2rem;
  max-width: 32rem;
}

.hero-mmp-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2rem;
}

.btn-hero-mmp {
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
}

.hero-mmp-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  padding-top: 2rem;
}
.hero-mmp-stat {
  background: rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 1rem;
  padding: 1rem 1.5rem;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.05);
}
.hero-mmp-stat-value {
  font-size: 1.875rem;
  font-weight: 700;
  background: linear-gradient(to right, var(--orange-600), var(--red-600));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-mmp-stat-label {
  font-size: 0.875rem;
  color: var(--gray-600);
}

/* Hero image */
.hero-mmp-image-wrap {
  position: relative;
}
.hero-mmp-image-card {
  background: rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 1.5rem;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  padding: 1rem;
}
.hero-mmp-image-card img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 1rem;
  display: block;
}

.hero-mmp-float-card {
  position: absolute;
  bottom: -1.5rem;
  left: -1.5rem;
  background: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 1rem;
  padding: 1rem;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.08);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  z-index: 3;
}
.hero-mmp-float-icon {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--orange-500), var(--red-500), var(--orange-600));
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.hero-mmp-float-icon svg {
  width: 1.5rem;
  height: 1.5rem;
  color: white;
}
.hero-mmp-float-title {
  font-weight: 700;
  color: var(--gray-800);
}
.hero-mmp-float-sub {
  font-size: 0.875rem;
  color: var(--gray-600);
}

.icon-sparkle {
  flex-shrink: 0;
}

/* Features section MMP */
.section-features-mmp {
  padding: 5rem 0;
  position: relative;
  z-index: 1;
}

.section-header-mmp {
  text-align: center;
  margin-bottom: 4rem;
}
.section-title-mmp {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
}
.section-title-mmp-gradient {
  background: linear-gradient(to right, var(--orange-600), var(--red-600));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.section-title-mmp-dark {
  color: var(--gray-800);
}
.section-desc-mmp {
  font-size: 1.25rem;
  color: var(--gray-600);
  max-width: 42rem;
  margin: 0 auto;
}

.features-grid-mmp {
  display: grid;
  gap: 2rem;
  grid-template-columns: 1fr;
}
@media (min-width: 768px) {
  .features-grid-mmp {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .features-grid-mmp {
    grid-template-columns: repeat(3, 1fr);
  }
}

.feature-card-mmp {
  background: rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 1.5rem;
  padding: 2rem;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s, box-shadow 0.3s;
}
.feature-card-mmp:hover {
  transform: translateY(-0.5rem);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.08);
}

.feature-icon-mmp {
  width: 4rem;
  height: 4rem;
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}
.feature-icon-mmp svg {
  color: white;
}
.feature-icon-orange {
  background: linear-gradient(135deg, var(--orange-500), var(--red-500));
}
.feature-icon-red {
  background: linear-gradient(135deg, var(--red-500), var(--rose-500));
}
.feature-icon-amber {
  background: linear-gradient(135deg, var(--amber-500), var(--orange-500));
}
.feature-icon-orange-amber {
  background: linear-gradient(135deg, var(--orange-500), var(--amber-500));
}
.feature-icon-red-orange {
  background: linear-gradient(135deg, var(--red-600), var(--orange-600));
}
.feature-icon-amber-yellow {
  background: linear-gradient(135deg, var(--amber-600), #eab308);
}

.feature-card-mmp h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--gray-800);
  margin-bottom: 0.75rem;
}
.feature-card-mmp p {
  color: var(--gray-600);
  line-height: 1.6;
  margin-bottom: 1rem;
}

.feature-badge-mmp {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: linear-gradient(to right, var(--orange-100), var(--red-100));
  border: 1px solid var(--orange-200);
  border-radius: 9999px;
  padding: 0.25rem 0.75rem;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--orange-700);
}
.feature-badge-mmp::before {
  content: '';
  width: 0.5rem;
  height: 0.5rem;
  background: var(--orange-500);
  border-radius: 50%;
  animation: pulse 1.5s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

/* Waitlist CTA */
.waitlist-cta-mmp {
  margin-top: 5rem;
  background: linear-gradient(to right, rgba(249, 115, 22, 0.1), rgba(239, 68, 68, 0.1));
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 1.5rem;
  padding: 3rem;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.08);
  text-align: center;
}
.waitlist-title-mmp {
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 700;
  color: var(--gray-800);
  margin-bottom: 0.75rem;
}
.waitlist-desc-mmp {
  font-size: 1.125rem;
  color: var(--gray-600);
  max-width: 42rem;
  margin: 0 auto 1.5rem;
}
.waitlist-form-mmp {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 28rem;
  margin: 0 auto;
}
@media (min-width: 640px) {
  .waitlist-form-mmp {
    flex-direction: row;
    max-width: 36rem;
  }
}
.waitlist-input-mmp {
  width: 100%;
  padding: 1rem 1.5rem;
  border-radius: 9999px;
  border: 1px solid rgba(255, 255, 255, 0.6);
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(8px);
  font-size: 1rem;
  outline: none;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}
.waitlist-input-mmp:focus {
  ring: 2px;
  border-color: var(--orange-500);
}
.waitlist-btn-mmp {
  flex-shrink: 0;
}
.waitlist-success-mmp {
  color: var(--orange-700);
  font-weight: 600;
}

/* Footer MMP */
.footer-mmp {
  background: rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(12px);
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  margin-top: 4rem;
  padding: 3rem 0;
  position: relative;
  z-index: 1;
}
.footer-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: 1fr;
}
@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: 2fr 1fr 1fr;
    gap: 2rem;
  }
}
.footer-brand p {
  font-size: 0.875rem;
  color: var(--gray-600);
  margin-top: 1rem;
  max-width: 20rem;
  word-break: keep-all;
}
.footer-links h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--gray-800);
  margin-bottom: 1rem;
  white-space: nowrap;
}
.footer-links ul {
  list-style: none;
}
.footer-links li {
  margin-bottom: 0.5rem;
}
.footer-links a {
  font-size: 0.875rem;
  color: var(--gray-600);
  text-decoration: none;
  transition: color 0.2s;
  white-space: nowrap;
}
.footer-links a:hover {
  color: var(--orange-600);
}
.social-links-mmp {
  display: flex;
  gap: 0.75rem;
  margin-top: 1rem;
}
.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  background: rgba(255, 255, 255, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 0.5rem;
  color: var(--gray-600);
  transition: all 0.2s;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}
.social-link:hover {
  background: var(--orange-500);
  border-color: var(--orange-500);
  color: white;
}
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  margin-top: 2rem;
  padding-top: 2rem;
  text-align: center;
}
.copyright {
  font-size: 0.875rem;
  color: var(--gray-600);
  word-break: keep-all;
}

/* 404 / 500 pages */
.page-main-mmp {
  padding-top: 5rem;
  min-height: 60vh;
}
.section-404-mmp {
  padding: 4rem 0;
}
.page-404-mmp {
  text-align: center;
  max-width: 32rem;
  margin: 0 auto;
}
.page-404-number-mmp {
  font-size: 4rem;
  font-weight: 700;
  background: linear-gradient(to right, var(--orange-600), var(--red-600));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.5rem;
}
.page-404-title-mmp {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--gray-800);
  margin-bottom: 1rem;
}
.page-404-desc-mmp {
  color: var(--gray-600);
  margin-bottom: 1.5rem;
}
.page-404-buttons-mmp {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

/* ========== Sign In Page (Figma temp-mmp-1) ========== */
.signin-section {
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 5rem 1.5rem 3rem;
  position: relative;
  z-index: 1;
}
.signin-wrapper {
  width: 100%;
  max-width: 28rem;
}
.signin-card {
  background: rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 1.5rem;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
  padding: 2rem;
}
@media (min-width: 640px) {
  .signin-card {
    padding: 2.5rem;
  }
}

.signin-header {
  text-align: center;
  margin-bottom: 2rem;
}
.signin-logo-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 4rem;
  height: 4rem;
  background: linear-gradient(135deg, var(--orange-500), var(--red-500), var(--orange-600));
  border-radius: 1rem;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  margin-bottom: 1rem;
}
.signin-logo-icon svg {
  color: white;
}
.signin-title {
  font-size: 1.875rem;
  font-weight: 700;
  color: var(--gray-800);
  margin-bottom: 0.5rem;
}
.signin-subtitle {
  color: var(--gray-600);
  font-size: 1rem;
}

.signin-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.signin-field {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.signin-label {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--gray-700);
}
.signin-input-wrap {
  position: relative;
  display: flex;
  align-items: center;
}
.signin-input-icon {
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray-400);
  pointer-events: none;
}
.signin-input {
  width: 100%;
  padding: 0.75rem 1rem 0.75rem 3rem;
  font-size: 1rem;
  line-height: 1.5;
  color: var(--gray-800);
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 0.75rem;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  font-family: inherit;
}
.signin-input::placeholder {
  color: var(--gray-600);
  opacity: 0.8;
}
.signin-input:focus {
  border-color: var(--orange-500);
  box-shadow: 0 0 0 2px rgba(249, 115, 22, 0.25);
}
.signin-input-password {
  padding-right: 3rem;
}
.signin-password-toggle {
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.25rem;
  background: none;
  border: none;
  color: var(--gray-400);
  cursor: pointer;
  transition: color 0.2s;
}
.signin-password-toggle:hover {
  color: var(--gray-600);
}
.signin-eye {
  display: block;
  width: 1.25rem;
  height: 1.25rem;
}

.signin-options {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.signin-remember {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
  font-size: 0.875rem;
  color: var(--gray-600);
}
.signin-checkbox {
  width: 1rem;
  height: 1rem;
  border-radius: 0.25rem;
  border: 1px solid var(--gray-300);
  accent-color: var(--orange-500);
  cursor: pointer;
}
.signin-forgot {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--orange-600);
  text-decoration: none;
  transition: color 0.2s;
}
.signin-forgot:hover {
  color: var(--orange-700);
}

.signin-submit {
  width: 100%;
  padding: 1rem 1.5rem;
  font-size: 1rem;
  font-weight: 500;
  color: white;
  background: linear-gradient(to right, var(--orange-500), var(--red-500), var(--orange-600));
  border: none;
  border-radius: 0.5rem;
  cursor: pointer;
  font-family: inherit;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  transition: box-shadow 0.2s;
}
.signin-submit:hover {
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.15);
}

.signin-divider {
  position: relative;
  margin: 1.5rem 0;
  text-align: center;
}
.signin-divider::before {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  height: 1px;
  background: rgba(0, 0, 0, 0.12);
}
.signin-divider-text {
  position: relative;
  display: inline-block;
  padding: 0 1rem;
  font-size: 0.875rem;
  color: var(--gray-600);
  background: rgba(255, 255, 255, 0.6);
}

.signin-social {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.signin-social-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--gray-700);
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 0.75rem;
  cursor: pointer;
  font-family: inherit;
  transition: background 0.2s;
}
.signin-social-btn:hover {
  background: rgba(255, 255, 255, 0.8);
}
.signin-google-icon,
.signin-fb-icon {
  flex-shrink: 0;
  width: 1.25rem;
  height: 1.25rem;
}

.signin-signup {
  margin-top: 1.5rem;
  text-align: center;
}
.signin-signup p {
  font-size: 1rem;
  color: var(--gray-600);
}
.signin-signup-link {
  font-weight: 600;
  color: var(--orange-600);
  text-decoration: none;
  transition: color 0.2s;
}
.signin-signup-link:hover {
  color: var(--orange-700);
}

.signin-footer-text {
  margin-top: 1.5rem;
  text-align: center;
}
.signin-footer-text p {
  font-size: 0.875rem;
  color: var(--gray-600);
}
.signin-legal-link {
  color: var(--orange-600);
  text-decoration: none;
  transition: color 0.2s;
}
.signin-legal-link:hover {
  text-decoration: underline;
}

/* ========== About Us Page (Figma temp-mmp-1) ========== */
.about-page {
  padding: 5rem 0 4rem;
  position: relative;
  z-index: 1;
}
.about-hero {
  text-align: center;
  margin-bottom: 4rem;
}
.about-hero-title {
  font-size: clamp(2.25rem, 5vw, 3rem);
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}
.about-hero-gradient {
  background: linear-gradient(to right, var(--orange-600), var(--red-600));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.about-hero-desc {
  font-size: 1.25rem;
  color: var(--gray-600);
  max-width: 48rem;
  margin: 0 auto;
  line-height: 1.6;
}

.about-story-card {
  background: rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 1.5rem;
  padding: 3rem;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
  margin-bottom: 4rem;
}
@media (min-width: 640px) {
  .about-story-card {
    padding: 3.5rem;
  }
}
.about-story-title {
  font-size: 1.875rem;
  font-weight: 700;
  color: var(--gray-800);
  margin-bottom: 1.5rem;
}
.about-story-content {
  color: var(--gray-600);
  line-height: 1.7;
}
.about-story-content p {
  margin-bottom: 1rem;
}
.about-story-content p:last-child {
  margin-bottom: 0;
}

.about-values-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: 1fr;
  margin-bottom: 4rem;
}
@media (min-width: 768px) {
  .about-values-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .about-values-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}
.about-value-card {
  background: rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 1.5rem;
  padding: 2rem;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.05);
  transition: transform 0.2s, box-shadow 0.2s;
}
.about-value-card:hover {
  transform: translateY(-0.5rem);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}
.about-value-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 4rem;
  height: 4rem;
  padding: 0.5rem;
  border-radius: 1rem;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  margin-bottom: 1.5rem;
}
.about-value-icon svg {
  color: white;
}
.about-value-icon-1 {
  background: linear-gradient(135deg, var(--orange-500), var(--red-500));
}
.about-value-icon-2 {
  background: linear-gradient(135deg, var(--red-500), var(--orange-600));
}
.about-value-icon-3 {
  background: linear-gradient(135deg, var(--amber-500), var(--orange-500));
}
.about-value-icon-4 {
  background: linear-gradient(135deg, var(--orange-600), var(--red-600));
}
.about-value-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--gray-800);
  margin-bottom: 0.75rem;
}
.about-value-desc {
  color: var(--gray-600);
  line-height: 1.6;
}

.about-stats-card {
  background: linear-gradient(to right, rgba(249, 115, 22, 0.12), rgba(239, 68, 68, 0.12));
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 1.5rem;
  padding: 3rem;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.1);
}
.about-stats-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(2, 1fr);
  text-align: center;
}
@media (min-width: 768px) {
  .about-stats-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
  }
}
.about-stat {
  padding: 0 0.5rem;
}
.about-stat-value {
  font-size: clamp(2.25rem, 5vw, 3rem);
  font-weight: 700;
  background: linear-gradient(to right, var(--orange-600), var(--red-600));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.5rem;
}
.about-stat-label {
  font-size: 1rem;
  font-weight: 600;
  color: var(--gray-600);
}

.about-commitment {
  margin-top: 4rem;
  text-align: center;
}
.about-commitment-title {
  font-size: 1.875rem;
  font-weight: 700;
  color: var(--gray-800);
  margin-bottom: 1.5rem;
}
.about-commitment-desc {
  font-size: 1.125rem;
  color: var(--gray-600);
  max-width: 48rem;
  margin: 0 auto;
  line-height: 1.7;
}

/* ========== How It Works Page (Figma temp-mmp-1) ========== */
.hiw-page {
  padding: 5rem 0 4rem;
  position: relative;
  z-index: 1;
}
.hiw-hero {
  text-align: center;
  margin-bottom: 4rem;
}
.hiw-hero-title {
  font-size: clamp(2.25rem, 5vw, 3rem);
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}
.hiw-hero-gradient {
  background: linear-gradient(to right, var(--orange-600), var(--red-600));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hiw-hero-desc {
  font-size: 1.25rem;
  color: var(--gray-600);
  max-width: 48rem;
  margin: 0 auto;
  line-height: 1.6;
}

.hiw-step {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  align-items: stretch;
  margin-bottom: 3rem;
}
@media (min-width: 768px) {
  .hiw-step {
    flex-direction: row;
    align-items: center;
    gap: 2rem;
  }
  .hiw-step-reverse {
    flex-direction: row-reverse;
  }
}
.hiw-step-icon-wrap {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 5rem;
  height: 5rem;
  padding: 0.5rem;
  border-radius: 1rem;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  margin-bottom: 1rem;
}
.hiw-step-icon-wrap svg {
  color: white;
}
.hiw-step-icon-1 { background: linear-gradient(135deg, var(--orange-500), var(--red-500)); }
.hiw-step-icon-2 { background: linear-gradient(135deg, var(--red-500), var(--orange-600)); }
.hiw-step-icon-3 { background: linear-gradient(135deg, var(--amber-500), var(--orange-500)); }
.hiw-step-icon-4 { background: linear-gradient(135deg, var(--orange-600), var(--red-600)); }
.hiw-step-icon-5 { background: linear-gradient(135deg, var(--red-600), var(--orange-700)); }
.hiw-step-icon-6 { background: linear-gradient(135deg, var(--orange-700), var(--amber-600)); }

.hiw-step-icon-card {
  flex-shrink: 0;
  background: rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 1.5rem;
  padding: 2rem;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.05);
  display: inline-block;
}
@media (min-width: 768px) {
  .hiw-step-icon-card {
    width: 12rem;
  }
}
.hiw-step-num {
  font-size: 3.75rem;
  font-weight: 700;
  background: linear-gradient(to right, var(--orange-600), var(--red-600));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}

.hiw-step-content-card {
  flex: 1;
  background: rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 1.5rem;
  padding: 2rem;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.05);
  transition: box-shadow 0.2s;
}
.hiw-step-content-card:hover {
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
}
@media (min-width: 640px) {
  .hiw-step-content-card {
    padding: 2.5rem;
  }
}
.hiw-step-title {
  font-size: 1.875rem;
  font-weight: 700;
  color: var(--gray-800);
  margin-bottom: 1rem;
}
.hiw-step-desc {
  font-size: 1.125rem;
  color: var(--gray-600);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}
.hiw-step-list {
  list-style: none;
}
.hiw-step-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  color: var(--gray-700);
  font-size: 1rem;
}
.hiw-step-list li:last-child {
  margin-bottom: 0;
}
.hiw-step-check {
  flex-shrink: 0;
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--orange-500), var(--red-500));
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 0.125rem;
}
.hiw-step-check svg {
  display: block;
}

.hiw-cta {
  margin-top: 5rem;
  background: linear-gradient(to right, rgba(249, 115, 22, 0.12), rgba(239, 68, 68, 0.12));
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 1.5rem;
  padding: 3rem;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.1);
  text-align: center;
}
.hiw-cta-title {
  font-size: 1.875rem;
  font-weight: 700;
  color: var(--gray-800);
  margin-bottom: 1rem;
}
.hiw-cta-desc {
  font-size: 1.125rem;
  color: var(--gray-600);
  max-width: 42rem;
  margin: 0 auto 2rem;
  line-height: 1.6;
}
.hiw-cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 2rem;
  font-size: 1rem;
  font-weight: 600;
  color: white;
  background: linear-gradient(to right, var(--orange-500), var(--red-500), var(--orange-600));
  border: none;
  border-radius: 9999px;
  text-decoration: none;
  font-family: inherit;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  transition: box-shadow 0.2s;
}
.hiw-cta-btn:hover {
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.15);
}

/* ========== Success Stories Page (Figma temp-mmp-1) ========== */
.stories-page {
  padding: 5rem 0 4rem;
  position: relative;
  z-index: 1;
}
.stories-hero {
  text-align: center;
  margin-bottom: 4rem;
}
.stories-hero-title {
  font-size: clamp(2.25rem, 5vw, 3rem);
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}
.stories-hero-gradient {
  background: linear-gradient(to right, var(--orange-600), var(--red-600));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.stories-hero-desc {
  font-size: 1.25rem;
  color: var(--gray-600);
  max-width: 48rem;
  margin: 0 auto;
  line-height: 1.6;
}

.stories-stats {
  background: linear-gradient(to right, rgba(249, 115, 22, 0.12), rgba(239, 68, 68, 0.12));
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 1.5rem;
  padding: 2rem;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.1);
  margin-bottom: 4rem;
}
.stories-stats-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: 1fr;
  text-align: center;
}
@media (min-width: 768px) {
  .stories-stats-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
.stories-stat-value {
  font-size: clamp(2rem, 4vw, 2.25rem);
  font-weight: 700;
  background: linear-gradient(to right, var(--orange-600), var(--red-600));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.5rem;
}
.stories-stat-label {
  font-size: 1rem;
  font-weight: 600;
  color: var(--gray-600);
}

.stories-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: 1fr;
  margin-bottom: 4rem;
}
@media (min-width: 768px) {
  .stories-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
.stories-card {
  background: rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 1.5rem;
  overflow: hidden;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.05);
  transition: transform 0.2s, box-shadow 0.2s;
}
.stories-card:hover {
  transform: translateY(-0.5rem);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
}
.stories-card-image {
  position: relative;
  height: 16rem;
  overflow: hidden;
}
.stories-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.stories-card-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
  padding: 1.5rem 1.5rem 1.25rem;
}
.stories-card-couple {
  font-size: 1.5rem;
  font-weight: 700;
  color: white;
  margin-bottom: 0.25rem;
}
.stories-card-location {
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.9);
}
.stories-card-content {
  padding: 2rem;
}
.stories-card-quote {
  display: block;
  color: var(--orange-500);
  margin-bottom: 1rem;
}
.stories-card-quote svg {
  display: block;
}
.stories-card-text {
  font-size: 1rem;
  color: var(--gray-700);
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 1.5rem;
}
.stories-card-date {
  display: inline-flex;
  align-items: center;
  background: linear-gradient(to right, var(--orange-100), var(--red-100));
  border: 1px solid var(--orange-200);
  border-radius: 9999px;
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--orange-700);
}

.stories-cta {
  background: rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 1.5rem;
  padding: 3rem;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.1);
  text-align: center;
}
.stories-cta-title {
  font-size: 1.875rem;
  font-weight: 700;
  color: var(--gray-800);
  margin-bottom: 1rem;
}
.stories-cta-desc {
  font-size: 1.125rem;
  color: var(--gray-600);
  max-width: 42rem;
  margin: 0 auto 2rem;
  line-height: 1.6;
}
.stories-cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 2rem;
  font-size: 1rem;
  font-weight: 600;
  color: white;
  background: linear-gradient(to right, var(--orange-500), var(--red-500), var(--orange-600));
  border: none;
  border-radius: 9999px;
  text-decoration: none;
  font-family: inherit;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  transition: box-shadow 0.2s;
}
.stories-cta-btn:hover {
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.15);
}

/* ========== Blog Page (Figma temp-mmp-1) ========== */
.blog-page {
  padding: 5rem 0 4rem;
  position: relative;
  z-index: 1;
}
.blog-hero {
  text-align: center;
  margin-bottom: 4rem;
}
.blog-hero-title {
  font-size: clamp(2.25rem, 5vw, 3rem);
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}
.blog-hero-gradient {
  background: linear-gradient(to right, var(--orange-600), var(--red-600));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.blog-hero-desc {
  font-size: 1.25rem;
  color: var(--gray-600);
  max-width: 48rem;
  margin: 0 auto;
  line-height: 1.6;
}

.blog-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
  margin-bottom: 3rem;
}
.blog-filter-btn {
  padding: 0.75rem 1.5rem;
  border-radius: 9999px;
  font-size: 0.9375rem;
  font-weight: 600;
  border: 1px solid rgba(255, 255, 255, 0.4);
  background: rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(8px);
  color: var(--gray-700);
  cursor: pointer;
  font-family: inherit;
  transition: all 0.2s;
}
.blog-filter-btn:hover {
  background: rgba(255, 255, 255, 0.6);
}
.blog-filter-btn.is-active {
  background: linear-gradient(to right, var(--orange-500), var(--red-500));
  border-color: transparent;
  color: white;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.blog-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: 1fr;
  margin-bottom: 4rem;
}
@media (min-width: 768px) {
  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .blog-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
.blog-card {
  background: rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 1.5rem;
  overflow: hidden;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.05);
  transition: transform 0.2s, box-shadow 0.2s;
}
.blog-card:hover {
  transform: translateY(-0.5rem);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
}
.blog-card-image {
  position: relative;
  height: 12rem;
  overflow: hidden;
}
.blog-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.blog-card-category {
  position: absolute;
  top: 1rem;
  right: 1rem;
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--orange-700);
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(8px);
}
.blog-card-content {
  padding: 1.5rem;
}
.blog-card-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--gray-800);
  margin-bottom: 0.75rem;
  line-height: 1.3;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.blog-card-excerpt {
  font-size: 0.9375rem;
  color: var(--gray-600);
  margin-bottom: 1rem;
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.blog-card-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.875rem;
  color: var(--gray-600);
  margin-bottom: 1rem;
}
.blog-card-meta-item {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
}
.blog-card-meta-item svg {
  flex-shrink: 0;
  color: var(--gray-500);
}
.blog-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.blog-card-time {
  font-size: 0.75rem;
  color: var(--gray-600);
}
.blog-card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--orange-600);
  text-decoration: none;
  transition: color 0.2s;
}
.blog-card-link:hover {
  color: var(--orange-700);
}
.blog-card-link svg {
  flex-shrink: 0;
}

.blog-newsletter {
  background: linear-gradient(to right, rgba(249, 115, 22, 0.12), rgba(239, 68, 68, 0.12));
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 1.5rem;
  padding: 3rem;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.1);
  text-align: center;
}
.blog-newsletter-title {
  font-size: 1.875rem;
  font-weight: 700;
  color: var(--gray-800);
  margin-bottom: 0.5rem;
}
.blog-newsletter-desc {
  font-size: 1.125rem;
  color: var(--gray-600);
  max-width: 42rem;
  margin: 0 auto 1.5rem;
  line-height: 1.6;
}
.blog-newsletter-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 28rem;
  margin: 0 auto;
}
@media (min-width: 640px) {
  .blog-newsletter-form {
    flex-direction: row;
    max-width: 36rem;
  }
}
.blog-newsletter-input {
  width: 100%;
  padding: 1rem 1.5rem;
  font-size: 1rem;
  border-radius: 9999px;
  border: 1px solid rgba(255, 255, 255, 0.6);
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(8px);
  outline: none;
  font-family: inherit;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.blog-newsletter-input:focus {
  border-color: var(--orange-500);
  box-shadow: 0 0 0 2px rgba(249, 115, 22, 0.2);
}
.blog-newsletter-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 2rem;
  font-size: 1rem;
  font-weight: 600;
  color: white;
  background: linear-gradient(to right, var(--orange-500), var(--red-500), var(--orange-600));
  border: none;
  border-radius: 9999px;
  cursor: pointer;
  font-family: inherit;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  transition: box-shadow 0.2s;
  flex-shrink: 0;
}
.blog-newsletter-btn:hover {
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.15);
}

/* ========== Help Center Page (Figma temp-mmp-1) ========== */
.help-page {
  padding: 5rem 0 4rem;
  position: relative;
  z-index: 1;
}
.help-hero {
  text-align: center;
  margin-bottom: 4rem;
}
.help-hero-title {
  font-size: clamp(2.25rem, 5vw, 3rem);
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}
.help-hero-gradient {
  background: linear-gradient(to right, var(--orange-600), var(--red-600));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.help-hero-desc {
  font-size: 1.25rem;
  color: var(--gray-600);
  max-width: 48rem;
  margin: 0 auto 2rem;
  line-height: 1.6;
}
.help-search-wrap {
  position: relative;
  max-width: 42rem;
  margin: 0 auto;
}
.help-search-icon {
  position: absolute;
  left: 1.5rem;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray-400);
  pointer-events: none;
}
.help-search-icon svg {
  width: 1.5rem;
  height: 1.5rem;
}
.help-search-input {
  width: 100%;
  padding: 1.25rem 1.5rem 1.25rem 3.5rem;
  font-size: 1.125rem;
  line-height: 1.5;
  color: var(--gray-800);
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 9999px;
  outline: none;
  font-family: inherit;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.05);
  transition: border-color 0.2s, box-shadow 0.2s;
}
.help-search-input::placeholder {
  color: var(--gray-600);
}
.help-search-input:focus {
  border-color: var(--orange-500);
  box-shadow: 0 0 0 2px rgba(249, 115, 22, 0.25);
}

.help-contact-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 1fr;
  margin-bottom: 4rem;
}
@media (min-width: 768px) {
  .help-contact-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
.help-contact-card {
  background: rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 1.5rem;
  padding: 2rem;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.05);
  transition: transform 0.2s, box-shadow 0.2s;
  text-align: center;
  text-decoration: none;
  color: inherit;
  display: block;
}
.help-contact-card:hover {
  transform: translateY(-0.5rem);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.1);
}
.help-contact-card-static {
  cursor: default;
}
.help-contact-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 4rem;
  height: 4rem;
  padding: 0.5rem;
  border-radius: 1rem;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  margin-bottom: 1rem;
}
.help-contact-icon svg {
  color: white;
}
.help-contact-icon-1 { background: linear-gradient(135deg, var(--orange-500), var(--red-500)); }
.help-contact-icon-2 { background: linear-gradient(135deg, var(--red-500), var(--orange-600)); }
.help-contact-icon-3 { background: linear-gradient(135deg, var(--amber-500), var(--orange-500)); }
.help-contact-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--gray-800);
  margin-bottom: 0.5rem;
}
.help-contact-detail {
  font-size: 1rem;
  color: var(--gray-600);
  margin-bottom: 0.25rem;
}
.help-contact-note {
  font-size: 0.875rem;
  color: var(--gray-600);
  opacity: 0.9;
}

.help-faq-heading {
  font-size: 1.875rem;
  font-weight: 700;
  color: var(--gray-800);
  text-align: center;
  margin-bottom: 2rem;
}
.help-faq-section {
  background: rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 1.5rem;
  padding: 2rem;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.05);
  margin-bottom: 2rem;
}
@media (min-width: 640px) {
  .help-faq-section {
    padding: 2.5rem;
  }
}
.help-faq-section-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}
.help-faq-section-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem;
  border-radius: 0.75rem;
  background: linear-gradient(135deg, var(--orange-500), var(--red-500));
}
.help-faq-section-icon svg {
  color: white;
  width: 1.5rem;
  height: 1.5rem;
}
.help-faq-section-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--gray-800);
}
.help-faq-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.help-faq-item {
  background: rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 1rem;
  overflow: hidden;
}
.help-faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.5rem;
  text-align: left;
  font-size: 1rem;
  font-weight: 600;
  color: var(--gray-800);
  background: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
  transition: background 0.2s;
}
.help-faq-question:hover {
  background: rgba(255, 255, 255, 0.2);
}
.help-faq-question span {
  flex: 1;
}
.help-faq-chevron {
  flex-shrink: 0;
  color: var(--orange-600);
  transition: transform 0.2s;
}
.help-faq-question.is-open .help-faq-chevron {
  transform: rotate(180deg);
}
.help-faq-answer {
  padding: 0 1.5rem 1.5rem;
}
.help-faq-answer p {
  font-size: 1rem;
  color: var(--gray-600);
  line-height: 1.7;
  margin: 0;
  padding-top: 0;
}

.help-cta {
  margin-top: 4rem;
  background: linear-gradient(to right, rgba(249, 115, 22, 0.12), rgba(239, 68, 68, 0.12));
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 1.5rem;
  padding: 3rem;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.1);
  text-align: center;
}
.help-cta-title {
  font-size: 1.875rem;
  font-weight: 700;
  color: var(--gray-800);
  margin-bottom: 1rem;
}
.help-cta-desc {
  font-size: 1.125rem;
  color: var(--gray-600);
  max-width: 42rem;
  margin: 0 auto 1.5rem;
  line-height: 1.6;
}
.help-cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 2rem;
  font-size: 1rem;
  font-weight: 600;
  color: white;
  background: linear-gradient(to right, var(--orange-500), var(--red-500), var(--orange-600));
  border: none;
  border-radius: 9999px;
  text-decoration: none;
  font-family: inherit;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  transition: box-shadow 0.2s;
}
.help-cta-btn:hover {
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.15);
}

/* ========== Safety Tips Page (Figma temp-mmp-1) ========== */
.safety-page {
  padding: 5rem 0 4rem;
  position: relative;
  z-index: 1;
}
.safety-hero {
  text-align: center;
  margin-bottom: 4rem;
}
.safety-hero-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 5rem;
  height: 5rem;
  background: linear-gradient(135deg, var(--orange-500), var(--red-500));
  border-radius: 1.5rem;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  margin-bottom: 1.5rem;
}
.safety-hero-icon svg {
  color: white;
}
.safety-hero-title {
  font-size: clamp(2.25rem, 5vw, 3rem);
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}
.safety-hero-gradient {
  background: linear-gradient(to right, var(--orange-600), var(--red-600));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.safety-hero-desc {
  font-size: 1.25rem;
  color: var(--gray-600);
  max-width: 48rem;
  margin: 0 auto;
  line-height: 1.6;
}

.safety-notice {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  background: linear-gradient(to right, rgba(249, 115, 22, 0.12), rgba(239, 68, 68, 0.12));
  backdrop-filter: blur(16px);
  border: 2px solid var(--orange-300);
  border-radius: 1.5rem;
  padding: 2rem;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.1);
  margin-bottom: 4rem;
}
.safety-notice-icon {
  flex-shrink: 0;
  color: var(--orange-600);
}
.safety-notice-icon svg {
  display: block;
  width: 2rem;
  height: 2rem;
}
.safety-notice-content {
  flex: 1;
}
.safety-notice-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--gray-800);
  margin-bottom: 0.75rem;
}
.safety-notice-text {
  font-size: 1rem;
  color: var(--gray-700);
  line-height: 1.7;
  margin-bottom: 1rem;
}
.safety-notice-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1rem;
  font-weight: 600;
  color: var(--orange-600);
  text-decoration: none;
  transition: color 0.2s;
}
.safety-notice-link:hover {
  color: var(--orange-700);
}
.safety-notice-link svg {
  flex-shrink: 0;
}

.safety-tips-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: 1fr;
  margin-bottom: 4rem;
}
@media (min-width: 768px) {
  .safety-tips-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .safety-tips-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
.safety-tip-card {
  background: rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 1.5rem;
  padding: 2rem;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.05);
  transition: box-shadow 0.2s;
}
.safety-tip-card:hover {
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.1);
}
.safety-tip-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 4rem;
  height: 4rem;
  padding: 0.5rem;
  border-radius: 1rem;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  margin-bottom: 1.5rem;
}
.safety-tip-icon svg {
  color: white;
}
.safety-tip-icon-1 { background: linear-gradient(135deg, var(--orange-500), var(--red-500)); }
.safety-tip-icon-2 { background: linear-gradient(135deg, var(--red-500), var(--orange-600)); }
.safety-tip-icon-3 { background: linear-gradient(135deg, var(--amber-500), var(--orange-500)); }
.safety-tip-icon-4 { background: linear-gradient(135deg, var(--orange-600), var(--red-600)); }
.safety-tip-icon-5 { background: linear-gradient(135deg, var(--red-600), var(--orange-700)); }
.safety-tip-icon-6 { background: linear-gradient(135deg, var(--orange-700), var(--amber-600)); }
.safety-tip-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--gray-800);
  margin-bottom: 1rem;
}
.safety-tip-list {
  list-style: none;
}
.safety-tip-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  color: var(--gray-700);
  font-size: 1rem;
  line-height: 1.5;
}
.safety-tip-list li:last-child {
  margin-bottom: 0;
}
.safety-tip-check {
  flex-shrink: 0;
  width: 1.25rem;
  height: 1.25rem;
  border-radius: 50%;
  background: var(--green-600);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 0.125rem;
}
.safety-tip-check svg {
  display: block;
}

.safety-dosdonts {
  display: grid;
  gap: 2rem;
  grid-template-columns: 1fr;
  margin-bottom: 4rem;
}
@media (min-width: 768px) {
  .safety-dosdonts {
    grid-template-columns: repeat(2, 1fr);
  }
}
.safety-dos-card,
.safety-donts-card {
  background: rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 1.5rem;
  padding: 2rem;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.05);
}
.safety-dosdonts-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}
.safety-dosdonts-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem;
  border-radius: 0.75rem;
}
.safety-dosdonts-icon svg {
  color: white;
  width: 1.5rem;
  height: 1.5rem;
}
.safety-dos-icon {
  background: linear-gradient(135deg, var(--green-500), var(--emerald-500));
}
.safety-donts-icon {
  background: linear-gradient(135deg, var(--red-500), var(--rose-500));
}
.safety-dosdonts-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--gray-800);
}
.safety-dosdonts-list {
  list-style: none;
}
.safety-dosdonts-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 1rem;
  color: var(--gray-700);
  font-size: 1rem;
  line-height: 1.5;
}
.safety-dosdonts-list li:last-child {
  margin-bottom: 0;
}
.safety-dos-bullet {
  flex-shrink: 0;
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 50%;
  background: var(--green-100);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 0.125rem;
}
.safety-dos-bullet::after {
  content: '';
  display: block;
  width: 5px;
  height: 10px;
  border: solid var(--green-600);
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
  margin-bottom: 2px;
}
.safety-donts-bullet {
  flex-shrink: 0;
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 50%;
  background: var(--red-100);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 0.125rem;
}
.safety-donts-bullet::after {
  content: '×';
  font-size: 1rem;
  font-weight: bold;
  color: var(--red-600);
  line-height: 1;
}

.safety-report {
  background: rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 1.5rem;
  padding: 3rem;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.1);
  text-align: center;
}
.safety-report-title {
  font-size: 1.875rem;
  font-weight: 700;
  color: var(--gray-800);
  margin-bottom: 1rem;
}
.safety-report-desc {
  font-size: 1.125rem;
  color: var(--gray-600);
  max-width: 42rem;
  margin: 0 auto 2rem;
  line-height: 1.6;
}
.safety-report-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 2rem;
  font-size: 1rem;
  font-weight: 600;
  color: white;
  background: linear-gradient(to right, var(--orange-500), var(--red-500), var(--orange-600));
  border: none;
  border-radius: 9999px;
  text-decoration: none;
  font-family: inherit;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  transition: box-shadow 0.2s;
}
.safety-report-btn:hover {
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.15);
}

/* ========== Privacy Policy Page (Figma temp-mmp-1) ========== */
.privacy-page {
  padding: 5rem 0 4rem;
  position: relative;
  z-index: 1;
}
.privacy-hero {
  text-align: center;
  margin-bottom: 4rem;
}
.privacy-hero-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 5rem;
  height: 5rem;
  background: linear-gradient(135deg, var(--orange-500), var(--red-500));
  border-radius: 1.5rem;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  margin-bottom: 1.5rem;
}
.privacy-hero-icon svg {
  color: white;
}
.privacy-hero-title {
  font-size: clamp(2.25rem, 5vw, 3rem);
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}
.privacy-hero-gradient {
  background: linear-gradient(to right, var(--orange-600), var(--red-600));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.privacy-hero-desc {
  font-size: 1.25rem;
  color: var(--gray-600);
  max-width: 48rem;
  margin: 0 auto;
  line-height: 1.6;
}
.privacy-hero-date {
  font-size: 0.875rem;
  color: var(--gray-600);
  margin-top: 1rem;
}

.privacy-card {
  background: rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 1.5rem;
  padding: 2rem;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.05);
  margin-bottom: 2rem;
}
@media (min-width: 640px) {
  .privacy-card {
    padding: 2.5rem;
  }
}
.privacy-card-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--gray-800);
  margin-bottom: 1rem;
}
.privacy-card-text {
  font-size: 1rem;
  color: var(--gray-700);
  line-height: 1.7;
  margin-bottom: 1rem;
}
.privacy-card-text:last-child {
  margin-bottom: 0;
}

.privacy-section-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}
.privacy-section-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem;
  border-radius: 0.75rem;
  background: linear-gradient(135deg, var(--orange-500), var(--red-500));
}
.privacy-section-icon svg {
  color: white;
  width: 1.5rem;
  height: 1.5rem;
}
.privacy-section-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--gray-800);
}
.privacy-list {
  list-style: none;
}
.privacy-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  color: var(--gray-700);
  font-size: 1rem;
  line-height: 1.6;
}
.privacy-list li:last-child {
  margin-bottom: 0;
}
.privacy-list li::before {
  content: '';
  flex-shrink: 0;
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background: var(--orange-500);
  margin-top: 0.5rem;
}

.privacy-contact {
  background: linear-gradient(to right, rgba(249, 115, 22, 0.12), rgba(239, 68, 68, 0.12));
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 1.5rem;
  padding: 3rem;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.1);
  text-align: center;
}
.privacy-contact-title {
  font-size: 1.875rem;
  font-weight: 700;
  color: var(--gray-800);
  margin-bottom: 1rem;
}
.privacy-contact-desc {
  font-size: 1.125rem;
  color: var(--gray-600);
  max-width: 42rem;
  margin: 0 auto 2rem;
  line-height: 1.6;
}
.privacy-contact-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  font-size: 1rem;
  font-weight: 600;
  color: white;
  background: linear-gradient(to right, var(--orange-500), var(--red-500), var(--orange-600));
  border: none;
  border-radius: 9999px;
  text-decoration: none;
  font-family: inherit;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  transition: box-shadow 0.2s;
}
.privacy-contact-btn:hover {
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.15);
}
.privacy-contact-btn svg {
  flex-shrink: 0;
}

/* ========== Terms of Service Page (Figma temp-mmp-1) ========== */
.terms-page {
  padding: 5rem 0 4rem;
  position: relative;
  z-index: 1;
}
.terms-hero {
  text-align: center;
  margin-bottom: 4rem;
}
.terms-hero-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 5rem;
  height: 5rem;
  background: linear-gradient(135deg, var(--orange-500), var(--red-500));
  border-radius: 1.5rem;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  margin-bottom: 1.5rem;
}
.terms-hero-icon svg {
  color: white;
}
.terms-hero-title {
  font-size: clamp(2.25rem, 5vw, 3rem);
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}
.terms-hero-gradient {
  background: linear-gradient(to right, var(--orange-600), var(--red-600));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.terms-hero-desc {
  font-size: 1.25rem;
  color: var(--gray-600);
  max-width: 48rem;
  margin: 0 auto;
  line-height: 1.6;
}
.terms-hero-date {
  font-size: 0.875rem;
  color: var(--gray-600);
  margin-top: 1rem;
}

.terms-notice {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  background: linear-gradient(to right, rgba(249, 115, 22, 0.12), rgba(239, 68, 68, 0.12));
  backdrop-filter: blur(16px);
  border: 2px solid var(--orange-300);
  border-radius: 1.5rem;
  padding: 2rem;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.1);
  margin-bottom: 2rem;
}
.terms-notice-icon {
  flex-shrink: 0;
  color: var(--orange-600);
}
.terms-notice-icon svg {
  display: block;
  width: 2rem;
  height: 2rem;
}
.terms-notice-content {
  flex: 1;
}
.terms-notice-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--gray-800);
  margin-bottom: 0.75rem;
}
.terms-notice-text {
  font-size: 1rem;
  color: var(--gray-700);
  line-height: 1.7;
}

.terms-card {
  background: rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 1.5rem;
  padding: 2rem;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.05);
  margin-bottom: 2rem;
}
@media (min-width: 640px) {
  .terms-card {
    padding: 2.5rem;
  }
}
.terms-section-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--gray-800);
  margin-bottom: 1rem;
}
.terms-list {
  list-style: none;
}
.terms-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  color: var(--gray-700);
  font-size: 1rem;
  line-height: 1.6;
}
.terms-list li:last-child {
  margin-bottom: 0;
}
.terms-list li::before {
  content: '';
  flex-shrink: 0;
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background: var(--orange-500);
  margin-top: 0.5rem;
}

.terms-keypoints {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 1fr;
  margin-bottom: 2rem;
}
@media (min-width: 768px) {
  .terms-keypoints {
    grid-template-columns: repeat(3, 1fr);
  }
}
.terms-keypoint-card {
  background: rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 1.5rem;
  padding: 1.5rem;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.05);
}
.terms-keypoint-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}
.terms-keypoint-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
}
.terms-keypoint-icon svg {
  width: 2rem;
  height: 2rem;
}
.terms-keypoint-icon-green {
  color: var(--green-600);
}
.terms-keypoint-icon-red {
  color: var(--red-600);
}
.terms-keypoint-icon-orange {
  color: var(--orange-600);
}
.terms-keypoint-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--gray-800);
}
.terms-keypoint-text {
  font-size: 0.875rem;
  color: var(--gray-600);
  line-height: 1.5;
}

.terms-ack .terms-section-title {
  margin-bottom: 1rem;
}
.terms-ack-text {
  font-size: 1rem;
  color: var(--gray-700);
  line-height: 1.7;
  margin-bottom: 1rem;
}
.terms-ack-text:last-child {
  margin-bottom: 0;
}

.terms-contact {
  background: linear-gradient(to right, rgba(249, 115, 22, 0.12), rgba(239, 68, 68, 0.12));
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 1.5rem;
  padding: 3rem;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.1);
  text-align: center;
}
.terms-contact-title {
  font-size: 1.875rem;
  font-weight: 700;
  color: var(--gray-800);
  margin-bottom: 1rem;
}
.terms-contact-desc {
  font-size: 1.125rem;
  color: var(--gray-600);
  max-width: 42rem;
  margin: 0 auto 2rem;
  line-height: 1.6;
}
.terms-contact-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  font-size: 1rem;
  font-weight: 600;
  color: white;
  background: linear-gradient(to right, var(--orange-500), var(--red-500), var(--orange-600));
  border: none;
  border-radius: 9999px;
  text-decoration: none;
  font-family: inherit;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  transition: box-shadow 0.2s;
}
.terms-contact-btn:hover {
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.15);
}
.terms-contact-btn svg {
  flex-shrink: 0;
}

/* ========== Mobile responsive (100% mobile-friendly) ========== */

/* Base: prevent overflow, readable font size */
@media (max-width: 767px) {
  .container {
    padding-left: 1rem;
    padding-right: 1rem;
  }
  .nav-inner {
    padding: 0.75rem 1rem;
  }
  .logo-text-mmp {
    font-size: 1.25rem;
  }
  /* Hero */
  .hero-mmp {
    padding: 3rem 0 2.5rem;
  }
  .hero-mmp-grid {
    gap: 2rem;
  }
  .hero-mmp-title {
    font-size: clamp(1.875rem, 6vw, 2.75rem);
  }
  .hero-mmp-desc {
    font-size: 1.125rem;
    margin-bottom: 1.5rem;
  }
  .hero-mmp-buttons {
    margin-bottom: 1.5rem;
    gap: 0.75rem;
  }
  .hero-mmp-stats {
    gap: 1rem;
    padding-top: 1.5rem;
  }
  .hero-mmp-stat {
    padding: 0.75rem 1rem;
  }
  .hero-mmp-stat-value {
    font-size: 1.5rem;
  }
  .hero-mmp-image-wrap {
    margin-top: 0.5rem;
  }
  .hero-mmp-float-card {
    position: relative;
    left: 0;
    bottom: 0;
    margin-top: 1rem;
    margin-left: 0;
  }
  /* Sections */
  .section-features-mmp,
  .section-waitlist-mmp {
    padding: 3rem 0;
  }
  .section-header-mmp {
    margin-bottom: 2.5rem;
  }
  .section-title-mmp {
    font-size: clamp(1.5rem, 5vw, 2.25rem);
  }
  .section-desc-mmp {
    font-size: 1.125rem;
  }
  .feature-card-mmp {
    padding: 1.5rem;
  }
  /* Footer */
  .footer-mmp {
    padding: 2rem 0;
    margin-top: 2rem;
  }
  .footer-bottom {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
  }
  .page-main-mmp {
    padding-top: 3rem;
  }
  .section-404-mmp {
    padding: 2.5rem 0;
  }
  .page-404-number-mmp {
    font-size: 3rem;
  }
  .page-404-title-mmp {
    font-size: 1.5rem;
  }
}

/* Page-specific mobile: about, how-it-works, success-stories, blog, help, safety, privacy, terms */
@media (max-width: 767px) {
  .about-hero,
  .hiw-hero,
  .stories-hero,
  .blog-hero,
  .help-hero,
  .safety-hero,
  .privacy-hero,
  .terms-hero {
    padding: 3rem 0 2rem;
  }
  .about-hero-title,
  .hiw-hero-title,
  .stories-hero-title,
  .blog-hero-title,
  .help-hero-title,
  .safety-hero-title,
  .privacy-hero-title,
  .terms-hero-title {
    font-size: clamp(1.5rem, 5vw, 2.25rem);
  }
  .about-page > section,
  .hiw-page .hiw-step,
  .stories-page .stories-grid,
  .blog-page .blog-grid,
  .help-page .help-contact-grid,
  .help-page .help-faq-heading,
  .safety-page .safety-tips-grid,
  .safety-page .safety-dosdonts,
  .privacy-page .privacy-card,
  .terms-page .terms-card {
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
  }
  .about-value-card,
  .about-story-card,
  .about-stats-card,
  .hiw-step-content-card,
  .hiw-step-icon-card,
  .stories-card,
  .blog-card,
  .help-contact-card,
  .help-faq-section,
  .safety-tip-card,
  .safety-dos-card,
  .safety-donts-card,
  .safety-notice,
  .safety-report,
  .privacy-card,
  .terms-card,
  .terms-keypoint-card,
  .terms-notice {
    padding: 1.25rem 1rem;
  }
  .signin-form-mmp,
  .waitlist-form-mmp {
    padding: 1.5rem 1rem;
  }
  .form-group-mmp input,
  .form-group-mmp textarea,
  .form-group-mmp select {
    min-height: 48px;
  }
  .btn-mmp,
  .btn-hero-mmp,
  .btn-signin-mmp {
    min-height: 44px;
    padding: 0.75rem 1.25rem;
  }
  .hiw-step {
    gap: 1.5rem;
  }
  .stories-grid,
  .blog-grid {
    gap: 1.5rem;
  }
  .safety-tips-grid {
    gap: 1rem;
  }
  .blog-filters {
    flex-wrap: wrap;
    gap: 0.5rem;
  }
  .blog-filter-btn {
    padding: 0.5rem 0.75rem;
    font-size: 0.875rem;
  }
  .help-search-input {
    font-size: 1rem;
    min-height: 48px;
  }
  .privacy-list,
  .terms-list {
    padding-left: 1.25rem;
  }
}

/* Small phones: tighter padding, full-width CTAs */
@media (max-width: 480px) {
  .container {
    padding-left: 0.75rem;
    padding-right: 0.75rem;
  }
  .nav-inner {
    padding: 0.5rem 0.75rem;
  }
  .hero-mmp {
    padding: 2.5rem 0 2rem;
  }
  .hero-mmp-title {
    font-size: clamp(1.5rem, 8vw, 2rem);
  }
  .hero-mmp-buttons {
    flex-direction: column;
  }
  .btn-hero-mmp {
    width: 100%;
    justify-content: center;
  }
  .section-features-mmp,
  .section-waitlist-mmp {
    padding: 2.5rem 0;
  }
  .section-header-mmp {
    margin-bottom: 2rem;
  }
  .footer-mmp {
    padding: 1.5rem 0;
  }
  .nav-links.mobile-open {
    padding: 4rem 1rem 1.5rem;
  }
  .page-404-number-mmp {
    font-size: 2.5rem;
  }
  .page-404-title-mmp {
    font-size: 1.25rem;
  }
}

/* Touch targets on touch devices */
@media (hover: none) and (pointer: coarse) {
  .footer-links a {
    min-height: 44px;
    padding: 0.5rem 0;
    display: inline-flex;
    align-items: center;
  }
}

/* Safe area for notched devices */
@supports (padding: env(safe-area-inset-left)) {
  .nav-inner {
    padding-left: max(1.5rem, env(safe-area-inset-left));
    padding-right: max(1.5rem, env(safe-area-inset-right));
  }
  .container {
    padding-left: max(1.5rem, env(safe-area-inset-left));
    padding-right: max(1.5rem, env(safe-area-inset-right));
  }
  @media (max-width: 767px) {
    .nav-inner {
      padding-left: max(1rem, env(safe-area-inset-left));
      padding-right: max(1rem, env(safe-area-inset-right));
    }
    .container {
      padding-left: max(1rem, env(safe-area-inset-left));
      padding-right: max(1rem, env(safe-area-inset-right));
    }
  }
  @media (max-width: 480px) {
    .nav-inner {
      padding-left: max(0.75rem, env(safe-area-inset-left));
      padding-right: max(0.75rem, env(safe-area-inset-right));
    }
    .container {
      padding-left: max(0.75rem, env(safe-area-inset-left));
      padding-right: max(0.75rem, env(safe-area-inset-right));
    }
  }
  .nav-links.mobile-open {
    padding-left: max(1.5rem, env(safe-area-inset-left));
    padding-right: max(1.5rem, env(safe-area-inset-right));
  }
}
