/* Custom Premium Style Design System for nyida.app */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&family=Inter:wght@300;400;500;600&display=swap');

:root {
  /* Color System */
  --primary-deep: hsl(340, 18%, 18%);
  --primary-mid: hsl(345, 18%, 28%);
  --primary-light: hsl(345, 15%, 38%);
  --primary-subtle: hsl(350, 32%, 96%);
  
  --accent-gold: hsl(350, 65%, 72%);
  --accent-gold-dark: hsl(345, 45%, 52%);
  --accent-champagne: hsl(35, 52%, 76%);
  
  --bg-cream: hsl(350, 25%, 98%);
  --text-dark: hsl(340, 22%, 16%);
  --text-muted: hsl(340, 12%, 42%);
  
  --border-subtle: hsl(350, 25%, 92%);
  --border-gold: hsl(350, 32%, 86%);
  
  --success-green: hsl(142, 70%, 45%);
  --pending-orange: hsl(35, 90%, 55%);
  --info-blue: hsl(200, 85%, 50%);
  --white: #ffffff;
  --bg-white: #ffffff;
  --text-light: #ffffff;
  
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.04);
  --shadow-md: 0 10px 30px rgba(60, 39, 44, 0.08);
  --shadow-lg: 0 20px 50px rgba(60, 39, 44, 0.15);
  
  --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  --border-radius: 16px;
}

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

body {
  font-family: 'Inter', sans-serif;
  background-color: var(--bg-cream);
  color: var(--text-dark);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: 'Outfit', sans-serif;
  color: var(--primary-deep);
  font-weight: 700;
}

/* --- Utilities --- */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: 15px;
  border-radius: 9999px;
  text-decoration: none;
  cursor: pointer;
  transition: var(--transition-smooth);
  border: none;
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent-gold-dark) 0%, var(--primary-deep) 100%);
  color: var(--white);
  box-shadow: 0 4px 15px rgba(188, 73, 92, 0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(188, 73, 92, 0.45);
}

.btn-secondary {
  background-color: var(--white);
  color: var(--primary-deep);
  border: 2px solid var(--primary-deep);
}

.btn-secondary:hover {
  background-color: var(--primary-deep);
  color: var(--white);
  transform: translateY(-2px);
}

/* --- Header --- */
header {
  padding: 20px 0;
  background-color: rgba(253, 251, 251, 0.8);
  backdrop-filter: blur(12px);
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(60, 39, 44, 0.05);
  transition: var(--transition-smooth);
}

.nav-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.logo-icon {
  width: 40px;
  height: 40px;
  background: transparent;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-sm);
}

.logo-icon svg {
  width: 100%;
  height: 100%;
}

.logo-text {
  font-size: 20px;
  font-weight: 800;
  letter-spacing: 1px;
  color: var(--primary-deep);
}

.logo-text span {
  display: block;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--accent-gold-dark);
  margin-top: -2px;
}

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

.nav-links a {
  text-decoration: none;
  color: var(--text-dark);
  font-weight: 500;
  font-size: 15px;
  transition: var(--transition-smooth);
}

.nav-links a:hover {
  color: var(--accent-gold-dark);
}

/* --- Hero Section --- */
.hero {
  padding: 120px 0 100px 0;
  background: radial-gradient(circle at 80% 20%, rgba(253, 218, 222, 0.3) 0%, rgba(253, 251, 251, 0) 60%), radial-gradient(circle at 10% 80%, rgba(223, 193, 165, 0.15) 0%, rgba(253, 251, 251, 0) 60%);
  position: relative;
  overflow: hidden;
}

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

.hero-content {
  animation: fadeInUp 1s var(--transition-smooth);
}

.tagline {
  display: inline-block;
  padding: 6px 14px;
  background-color: rgba(188, 73, 92, 0.08);
  color: var(--accent-gold-dark);
  border-radius: 9999px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 24px;
  letter-spacing: 0.5px;
  font-family: 'Outfit', sans-serif;
}

.hero-content h1 {
  font-size: 52px;
  line-height: 1.15;
  margin-bottom: 20px;
}

.hero-content h1 span {
  color: var(--accent-gold-dark);
}

.hero-description {
  font-size: 17px;
  color: var(--text-muted);
  margin-bottom: 36px;
  max-width: 520px;
}

.hero-buttons {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 40px;
}

.hero-buttons .btn {
  gap: 10px;
}

.hero-buttons svg {
  width: 20px;
  height: 20px;
}

.stats-row {
  display: flex;
  gap: 36px;
  border-top: 1px solid rgba(60, 39, 44, 0.08);
  padding-top: 30px;
}

.stat-item h3 {
  font-size: 28px;
  color: var(--primary-deep);
  margin-bottom: 4px;
}

.stat-item p {
  font-size: 13px;
  color: var(--text-muted);
}

/* --- Redesigned Hero Left Column Elements --- */
.sub-headline {
  font-size: 18px;
  color: var(--accent-gold-dark);
  margin-bottom: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-family: 'Outfit', sans-serif;
  animation: fadeInUp 0.8s var(--transition-smooth);
}

.main-headline {
  font-size: 48px;
  line-height: 1.15;
  margin-bottom: 20px;
  font-weight: 800;
  color: var(--primary-deep);
  animation: fadeInUp 0.9s var(--transition-smooth);
}

.main-headline span {
  color: var(--accent-gold-dark);
}

.heart-icon {
  color: var(--accent-gold);
  display: inline-block;
  animation: pulseHeart 2s infinite ease-in-out;
}

/* Flyer Checklist */
.flyer-checklist {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px 24px;
  margin-bottom: 36px;
  border-top: 1px solid rgba(60, 39, 44, 0.08);
  padding-top: 24px;
  animation: fadeInUp 1s var(--transition-smooth);
}

.checklist-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.checklist-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background-color: rgba(188, 73, 92, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-gold-dark);
  flex-shrink: 0;
  border: 1px solid rgba(188, 73, 92, 0.15);
}

.checklist-icon svg {
  width: 15px;
  height: 15px;
}

.checklist-text h4 {
  font-size: 14px;
  font-weight: 700;
  color: var(--primary-deep);
  margin-bottom: 2px;
}

.checklist-text p {
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.35;
}

/* Download Promo Box Section */
.hero-download-wrapper {
  display: flex;
  gap: 28px;
  align-items: center;
  border-top: 1px solid rgba(60, 39, 44, 0.08);
  padding-top: 24px;
  animation: fadeInUp 1.1s var(--transition-smooth);
}

.qr-download-box {
  background-color: var(--white);
  border: 1px solid var(--border-gold);
  padding: 12px;
  border-radius: 16px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  width: 140px;
  flex-shrink: 0;
  transition: var(--transition-smooth);
  text-decoration: none;
  display: block;
}

.qr-download-box:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--accent-gold);
}

.qr-box-title {
  font-size: 8px;
  font-weight: 700;
  color: var(--primary-deep);
  display: block;
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.qr-image-wrapper {
  width: 100%;
  aspect-ratio: 1;
  overflow: hidden;
  margin-bottom: 8px;
  border-radius: 8px;
  border: 1px solid rgba(60, 39, 44, 0.05);
}

.qr-code-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.android-only-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  padding: 4px 8px;
  background-color: rgba(46, 125, 50, 0.08);
  color: var(--success-green);
  border-radius: 9999px;
  font-size: 8px;
  font-weight: 700;
  text-transform: uppercase;
  width: 100%;
  letter-spacing: 0.3px;
  border: 1px solid rgba(46, 125, 50, 0.12);
}

.android-only-badge svg {
  width: 9px;
  height: 9px;
}

.download-buttons-col {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-start;
}

.download-buttons-col .btn {
  width: 200px;
  font-size: 14px;
  padding: 10px 20px;
  border-radius: 10px;
}

.google-play-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 16px;
  background-color: #000000;
  color: var(--white);
  border-radius: 10px;
  cursor: pointer;
  transition: var(--transition-smooth);
  width: 200px;
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: var(--shadow-sm);
}

.google-play-badge:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
  background-color: #111111;
}

.play-store-icon {
  width: 20px;
  height: 20px;
}

.badge-text-col {
  display: flex;
  flex-direction: column;
  text-align: left;
}

.badge-sub-title {
  font-size: 7.5px;
  font-weight: 600;
  opacity: 0.7;
  letter-spacing: 0.5px;
  line-height: 1;
  margin-bottom: 2px;
}

.badge-main-title {
  font-size: 14px;
  font-weight: 700;
  font-family: 'Outfit', sans-serif;
  letter-spacing: 0.3px;
  line-height: 1;
}

.also-visit-text {
  font-size: 11px;
  color: var(--text-muted);
  margin-top: 2px;
}

.also-visit-text a {
  color: var(--accent-gold-dark);
  font-weight: 600;
  text-decoration: none;
}

.also-visit-text a:hover {
  text-decoration: underline;
}

/* Floating Sakura Petals animation */
.sakura-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  pointer-events: none;
  z-index: 10;
}

.petal {
  background: linear-gradient(135deg, hsl(345, 90%, 93%) 0%, hsl(345, 80%, 88%) 100%);
  border-radius: 15px 0 15px 15px;
  width: 14px;
  height: 9px;
  display: block;
  position: absolute;
  top: -20px;
  opacity: 0;
  transform: scale(var(--s));
  left: var(--x);
  animation: drift 12s linear infinite;
  animation-delay: var(--d);
}

@keyframes drift {
  0% {
    transform: translateY(0) rotate(0deg) translateX(0) scale(var(--s));
    opacity: 0;
  }
  10% {
    opacity: 0.8;
  }
  90% {
    opacity: 0.8;
  }
  100% {
    transform: translateY(640px) rotate(720deg) translateX(60px) scale(var(--s));
    opacity: 0;
  }
}

/* --- Flyer-style Dual Smartphone Mockups Layout --- */
.hero-visual-flyer {
  position: relative;
  width: 100%;
  max-width: 520px;
  height: 600px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  z-index: 2;
  animation: fadeInUp 1.2s var(--transition-smooth);
}

.girl-visual-card {
  position: absolute;
  right: -240px;
  top: -300px;
  width: 800px;
  height: 1080px;
  background-color: transparent;
  border-radius: 0;
  border: none;
  outline: none;
  overflow: visible;
  z-index: 3;
  transition: var(--transition-smooth);
}

/* Premium flyer style background arch framing */
.girl-visual-card::before {
  content: '';
  position: absolute;
  top: 380px;
  left: 220px;
  right: 220px;
  bottom: 0;
  background: radial-gradient(circle at 65% 25%, rgba(255, 222, 173, 0.45) 0%, rgba(253, 218, 222, 0.2) 45%, rgba(253, 251, 251, 0) 80%), 
              linear-gradient(to bottom, rgba(253, 218, 222, 0.18), rgba(253, 251, 251, 0));
  border: 2px solid rgba(188, 73, 92, 0.15);
  border-bottom: none;
  border-radius: 180px 180px 0 0;
  z-index: -1;
  pointer-events: none;
  transition: var(--transition-smooth);
}

/* Secondary dashed gold accent arch ring */
.girl-visual-card::after {
  content: '';
  position: absolute;
  top: 365px;
  left: 205px;
  right: 205px;
  bottom: -16px;
  border: 1px dashed rgba(223, 193, 165, 0.5);
  border-bottom: none;
  border-radius: 195px 195px 0 0;
  z-index: -2;
  pointer-events: none;
  transition: var(--transition-smooth);
}

.girl-visual-card img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: bottom right;
  -webkit-mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 1) 75%, rgba(0, 0, 0, 0) 98%);
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 1) 75%, rgba(0, 0, 0, 0) 98%);
  filter: brightness(1.05) contrast(1.03) saturate(1.05) drop-shadow(0 8px 30px rgba(188, 73, 92, 0.1));
  transition: var(--transition-smooth);
}

.girl-visual-card:hover {
  transform: translateY(-8px) scale(1.02);
}

.girl-visual-card:hover::before {
  border-color: rgba(188, 73, 92, 0.3);
  transform: scale(1.01);
}

.girl-visual-card:hover::after {
  border-color: rgba(223, 193, 165, 0.7);
  transform: scale(1.02);
}

.girl-visual-card:hover img {
  transform: scale(1.03);
}

.phone-mockup-flyer {
  position: absolute;
  width: 200px;
  height: 410px;
  background: #1e1b1c;
  border-radius: 28px;
  padding: 6px;
  box-shadow: var(--shadow-lg), 0 0 0 1.5px #3c272c;
  border: 3.5px solid #4a3439;
  z-index: 4;
  overflow: hidden;
  transition: var(--transition-smooth);
}

.phone-inner {
  width: 100%;
  height: 100%;
  background-color: var(--white);
  border-radius: 22px;
  overflow: hidden;
  position: relative;
}

.phone-welcome {
  left: -70px;
  bottom: 20px;
  transform: rotate(-5deg);
  transform-origin: bottom left;
}

.phone-welcome:hover {
  transform: rotate(0deg) translateY(-10px) translateX(15px);
  z-index: 5;
}

.phone-login {
  left: 155px;
  bottom: -10px;
  transform: rotate(2deg);
  transform-origin: bottom center;
}

.phone-login:hover {
  transform: rotate(0deg) translateY(-10px);
  z-index: 5;
}

/* Phone Screen Mockups details */
.phone-screen-welcome {
  height: 100%;
  display: flex;
  flex-direction: column;
  background: radial-gradient(circle at 50% 30%, hsl(345, 80%, 96%) 0%, var(--white) 80%);
  padding: 12px;
  justify-content: space-between;
}

.phone-app-logo {
  display: flex;
  justify-content: center;
  margin-top: 4px;
}

.phone-app-logo img {
  height: 14px;
  width: auto;
  object-fit: contain;
}

.phone-welcome-logo-container {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px 0;
}

.phone-welcome-logo {
  width: 105px;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 4px 10px rgba(60, 39, 44, 0.08));
  animation: floatLogo 3s ease-in-out infinite;
}

@keyframes floatLogo {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-6px); }
  100% { transform: translateY(0px); }
}

.phone-welcome-footer {
  text-align: center;
  padding-bottom: 6px;
}

.phone-welcome-footer h3 {
  font-size: 11px;
  font-weight: 700;
  color: var(--primary-deep);
  margin-bottom: 10px;
  line-height: 1.3;
}

.btn-mock-primary {
  background: linear-gradient(135deg, var(--accent-gold-dark) 0%, var(--primary-deep) 100%);
  color: var(--white);
  border: none;
  font-size: 9px;
  font-weight: 700;
  padding: 6px 12px;
  border-radius: 9999px;
  width: 100%;
  margin-bottom: 6px;
  cursor: pointer;
  font-family: 'Outfit', sans-serif;
  box-shadow: 0 2px 5px rgba(188, 73, 92, 0.2);
}

.btn-mock-secondary {
  background: transparent;
  border: 1px solid var(--primary-deep);
  color: var(--primary-deep);
  font-size: 9px;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 9999px;
  width: 100%;
  margin-bottom: 8px;
  cursor: pointer;
  font-family: 'Outfit', sans-serif;
}

.phone-trust-footer {
  font-size: 7px;
  color: var(--text-muted);
  line-height: 1.3;
}

/* Phone Screen Mockups (Login) */
.phone-screen-login {
  height: 100%;
  display: flex;
  flex-direction: column;
  background-color: var(--white);
  padding: 12px;
}

.phone-login-form {
  flex: 1;
  display: flex;
  flex-direction: column;
  margin-top: 8px;
  text-align: left;
}

.phone-login-form h3 {
  font-size: 12px;
  font-weight: 700;
  color: var(--primary-deep);
  margin-bottom: 2px;
  font-family: 'Outfit', sans-serif;
}

.form-desc {
  font-size: 7px;
  color: var(--text-muted);
  margin-bottom: 8px;
  line-height: 1.2;
}

.mock-input-group {
  display: flex;
  flex-direction: column;
  gap: 3px;
  margin-bottom: 6px;
}

.mock-input-group label {
  font-size: 7px;
  font-weight: 700;
  color: var(--primary-deep);
}

.mock-input-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 4px 8px;
  background-color: var(--bg-cream);
  border: 1px solid var(--border-gold);
  border-radius: 6px;
  font-size: 7px;
  color: var(--text-muted);
}

.mock-input-box svg {
  width: 8px;
  height: 8px;
  color: var(--accent-gold-dark);
}

.mock-forgot-link {
  font-size: 7px;
  color: var(--accent-gold-dark);
  text-align: right;
  text-decoration: none;
  font-weight: 600;
  margin-bottom: 8px;
  display: block;
}

.btn-mock-dark {
  background-color: var(--primary-deep);
  color: var(--white);
  border: none;
  font-size: 9px;
  font-weight: 700;
  padding: 6px 12px;
  border-radius: 9999px;
  width: 100%;
  margin-bottom: 6px;
  cursor: pointer;
}

.mock-divider {
  display: flex;
  align-items: center;
  text-align: center;
  color: var(--text-muted);
  font-size: 7px;
  margin-bottom: 6px;
}

.mock-divider::before, .mock-divider::after {
  content: '';
  flex: 1;
  border-bottom: 1px solid rgba(60, 39, 44, 0.08);
}

.mock-divider span {
  padding: 0 4px;
}

.btn-mock-google {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--white);
  border: 1px solid var(--border-gold);
  border-radius: 9999px;
  padding: 4px 10px;
  font-size: 7px;
  font-weight: 600;
  color: var(--text-dark);
  width: 100%;
  cursor: pointer;
  margin-bottom: 8px;
}

.mock-signup-prompt {
  font-size: 7px;
  color: var(--text-muted);
  text-align: center;
}

.mock-signup-prompt a {
  color: var(--accent-gold-dark);
  text-decoration: none;
  font-weight: 600;
}

/* Inside Mobile Screen - Custom Vector UI */
.screen-header {
  background-color: var(--primary-deep);
  padding: 18px 12px 10px 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.screen-header .app-logo {
  display: flex;
  align-items: center;
  gap: 6px;
}

.screen-header .logo-box {
  width: 24px;
  height: 24px;
  background: transparent;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.screen-header .logo-box svg {
  width: 100%;
  height: 100%;
}

.screen-header .logo-txt {
  color: var(--white);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.screen-header svg {
  width: 16px;
  height: 16px;
  color: var(--white);
}

.screen-content {
  flex: 1;
  overflow-y: hidden;
  padding: 12px;
}

.screen-banner {
  background-color: var(--white);
  border: 1px solid rgba(223, 193, 165, 0.4);
  border-radius: 12px;
  padding: 10px;
  margin-bottom: 12px;
  box-shadow: var(--shadow-sm);
  display: flex;
  align-items: center;
  gap: 8px;
}

.banner-icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background-color: rgba(188, 73, 92, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-gold-dark);
}

.banner-txt h4 {
  font-size: 10px;
  margin-bottom: 1px;
}

.banner-txt p {
  font-size: 8px;
  color: var(--text-muted);
}

.screen-title {
  font-size: 12px;
  font-weight: 700;
  color: var(--primary-deep);
  margin-bottom: 8px;
}

.matches-row {
  display: flex;
  gap: 8px;
  margin-bottom: 16px;
}

.match-card {
  flex: 1;
  background-color: var(--white);
  border-radius: 10px;
  border: 1px solid rgba(60, 39, 44, 0.05);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.match-photo {
  height: 90px;
  background-color: var(--accent-champagne);
  position: relative;
  background-image: linear-gradient(135deg, var(--accent-champagne) 0%, rgba(188, 73, 92, 0.2) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.match-photo svg {
  width: 32px;
  height: 32px;
  color: var(--primary-mid);
  opacity: 0.6;
}

.verified-badge {
  position: absolute;
  top: 6px;
  right: 6px;
  background-color: var(--white);
  border-radius: 50%;
  width: 14px;
  height: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--success-green);
  box-shadow: var(--shadow-sm);
}

.verified-badge svg {
  width: 10px;
  height: 10px;
  opacity: 1;
}

.match-details {
  padding: 6px 8px;
}

.match-details h5 {
  font-size: 9px;
  font-weight: 700;
  color: var(--primary-deep);
  margin-bottom: 2px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.match-details p {
  font-size: 7px;
  color: var(--text-muted);
}

.screen-actions {
  background-color: var(--white);
  border-radius: 12px;
  padding: 10px;
  border: 1px solid rgba(60, 39, 44, 0.05);
}

.action-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 6px 0;
  border-bottom: 1px solid rgba(60, 39, 44, 0.05);
}

.action-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.action-left {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 9px;
  font-weight: 600;
}

.action-left svg {
  width: 14px;
  height: 14px;
  color: var(--primary-deep);
}

.action-item > svg {
  width: 12px;
  height: 12px;
  color: var(--text-muted);
}

.screen-nav {
  position: absolute;
  bottom: 0;
  width: 100%;
  background-color: var(--white);
  border-top: 1px solid rgba(60, 39, 44, 0.05);
  display: flex;
  justify-content: space-around;
  padding: 8px 0;
}

.nav-tab {
  display: flex;
  flex-direction: column;
  align-items: center;
  color: var(--text-muted);
  text-decoration: none;
  font-size: 7px;
  font-weight: 500;
  gap: 2px;
}

.nav-tab.active {
  color: var(--primary-deep);
  font-weight: 700;
}

.nav-tab svg {
  width: 14px;
  height: 14px;
}

/* Background Glowing Accents */
.hero-glow {
  position: absolute;
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(188, 73, 92, 0.15) 0%, rgba(253, 251, 251, 0) 70%);
  top: 50%;
  left: 50%;
  transform: translate(-30%, -40%);
  z-index: 1;
  pointer-events: none;
}

/* --- Features Section --- */
.features {
  padding: 100px 0;
  background-color: var(--white);
}

.section-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 60px auto;
}

.section-header h2 {
  font-size: 36px;
  margin-bottom: 16px;
}

.section-header p {
  color: var(--text-muted);
  font-size: 16px;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
}

.feature-card {
  background-color: var(--bg-cream);
  border: 1px solid rgba(60, 39, 44, 0.04);
  padding: 36px 28px;
  border-radius: var(--border-radius);
  transition: var(--transition-smooth);
}

.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: rgba(188, 73, 92, 0.1);
  background-color: var(--white);
}

.feature-icon {
  width: 54px;
  height: 54px;
  background-color: var(--white);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-gold-dark);
  margin-bottom: 24px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-smooth);
}

.feature-card:hover .feature-icon {
  background-color: var(--accent-gold-dark);
  color: var(--white);
}

.feature-card h3 {
  font-size: 20px;
  margin-bottom: 12px;
}

.feature-card p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* --- Guide Section --- */
.guide {
  padding: 100px 0;
  background-color: var(--bg-cream);
}

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

.guide-visual {
  display: flex;
  justify-content: center;
}

.install-box {
  width: 100%;
  max-width: 480px;
  background-color: var(--white);
  border-radius: var(--border-radius);
  padding: 40px;
  box-shadow: var(--shadow-md);
}

.install-box h3 {
  font-size: 24px;
  margin-bottom: 24px;
  border-bottom: 1px solid rgba(60, 39, 44, 0.08);
  padding-bottom: 16px;
}

/* Accordion Steps */
.step-item {
  border-bottom: 1px solid rgba(60, 39, 44, 0.05);
  padding: 16px 0;
}

.step-item:last-child {
  border-bottom: none;
}

.step-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
}

.step-title {
  display: flex;
  align-items: center;
  gap: 16px;
}

.step-num {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background-color: rgba(188, 73, 92, 0.1);
  color: var(--accent-gold-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
  font-family: 'Outfit', sans-serif;
}

.step-title h4 {
  font-size: 16px;
  font-weight: 600;
}

.step-header svg {
  width: 20px;
  height: 20px;
  color: var(--text-muted);
  transition: transform 0.3s ease;
}

.step-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
  padding-left: 44px;
}

.step-content p {
  padding-top: 10px;
  font-size: 14px;
  color: var(--text-muted);
}

.step-item.active .step-header svg {
  transform: rotate(180deg);
  color: var(--accent-gold-dark);
}

.step-item.active .step-content {
  max-height: 120px; /* arbitrary height to slide down */
}

/* --- FAQ Section --- */
.faq {
  padding: 100px 0;
  background-color: var(--white);
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border: 1px solid rgba(60, 39, 44, 0.06);
  border-radius: 12px;
  margin-bottom: 16px;
  background-color: var(--bg-cream);
  overflow: hidden;
  transition: var(--transition-smooth);
}

.faq-item.active {
  background-color: var(--white);
  border-color: rgba(188, 73, 92, 0.2);
  box-shadow: var(--shadow-sm);
}

.faq-header {
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
}

.faq-header h3 {
  font-size: 17px;
  font-weight: 600;
}

.faq-header svg {
  width: 20px;
  height: 20px;
  color: var(--text-muted);
  transition: transform 0.3s ease;
}

.faq-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
}

.faq-content p {
  padding: 0 24px 20px 24px;
  font-size: 14px;
  color: var(--text-muted);
}

.faq-item.active .faq-header svg {
  transform: rotate(180deg);
  color: var(--accent-gold-dark);
}

.faq-item.active .faq-content {
  max-height: 200px;
}

/* --- Footer --- */
footer {
  background-color: var(--bg-cream);
  color: var(--text-muted);
  border-top: 1px solid var(--border-gold);
  padding: 80px 0 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1.2fr;
  gap: 48px;
  padding-bottom: 60px;
}

.footer-brand .logo-icon {
  background: transparent;
  border-color: transparent;
}

.footer-brand .logo-text {
  color: var(--text-dark);
}

.footer-brand p {
  font-size: 13.5px;
  color: var(--text-muted);
  margin-top: 16px;
  margin-bottom: 24px;
  max-width: 320px;
  line-height: 1.65;
}

.crafted-text {
  font-size: 13.5px;
  color: var(--accent-gold-dark);
  font-weight: 600;
  margin-top: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-family: 'Outfit', sans-serif;
}

.crafted-text svg {
  animation: pulseHeart 2.5s infinite ease-in-out;
  color: var(--accent-gold-dark);
}

@keyframes pulseHeart {
  0% { transform: scale(1); }
  50% { transform: scale(1.18); }
  100% { transform: scale(1); }
}

.footer-links h4, .footer-management h4 {
  color: var(--primary-deep);
  margin-bottom: 24px;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.5px;
  border-bottom: 2px solid var(--border-gold);
  padding-bottom: 8px;
}

.footer-links ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer-links ul li {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-links ul li svg {
  color: var(--accent-gold-dark);
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  transition: var(--transition-smooth);
}

.footer-links ul li a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: var(--transition-smooth);
}

.footer-links ul li a:hover {
  color: var(--accent-gold-dark);
}

.footer-links ul li:hover svg {
  transform: scale(1.2);
}

.management-box {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 18px;
  border-radius: 12px;
  background-color: var(--white);
  border: 1px solid var(--border-gold);
  box-shadow: var(--shadow-sm);
  width: fit-content;
  transition: var(--transition-smooth);
}

.management-box:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  border-color: var(--accent-gold);
}

.management-box img {
  height: 32px;
  width: auto;
  transition: var(--transition-smooth);
}

.management-box:hover img {
  transform: scale(1.05);
}

.app-download-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 24px;
  border-radius: 9999px;
  background: linear-gradient(135deg, var(--accent-gold-dark) 0%, var(--primary-deep) 100%);
  color: var(--white);
  text-decoration: none;
  font-weight: 600;
  font-size: 13.5px;
  box-shadow: 0 4px 15px rgba(188, 73, 92, 0.25);
  transition: var(--transition-smooth);
  border: none;
}

.app-download-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(188, 73, 92, 0.4);
  color: var(--white);
}

.app-download-btn:active {
  transform: translateY(0);
}

.footer-bottom-bar {
  background-color: var(--primary-subtle);
  padding: 24px 0;
  border-top: 1px solid var(--border-subtle);
}

.footer-bottom-container {
  display: flex;
  flex-direction: column;
  gap: 10px;
  text-align: center;
}

.footer-copyright {
  text-align: center;
  font-size: 12.5px;
  color: var(--text-muted);
  font-weight: 500;
}

@media (max-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }
}

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

/* --- AI Chatbot Section --- */
.ai-section {
  padding: 100px 0;
  background: radial-gradient(circle at 10% 80%, rgba(232, 136, 154, 0.08) 0%, rgba(253, 251, 251, 0) 60%);
  border-top: 1px solid rgba(60, 39, 44, 0.03);
}

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

.ai-features-list {
  margin-top: 30px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.ai-feature-item {
  display: flex;
  gap: 16px;
}

.ai-feature-item-icon {
  width: 40px;
  height: 40px;
  background-color: rgba(232, 136, 154, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-gold-dark);
  flex-shrink: 0;
}

.ai-feature-item-icon svg {
  width: 20px;
  height: 20px;
}

.ai-feature-item-content h4 {
  font-size: 18px;
  margin-bottom: 6px;
}

.ai-feature-item-content p {
  font-size: 14px;
  color: var(--text-muted);
}

/* Chat Mockup Box */
.chat-mockup {
  background-color: var(--white);
  border-radius: var(--border-radius);
  border: 1px solid rgba(60, 39, 44, 0.06);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 400px;
}

.chat-header {
  background-color: var(--primary-deep);
  color: var(--white);
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.chat-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background-color: var(--accent-gold);
  display: flex;
  align-items: center;
  justify-content: center;
}

.chat-avatar svg {
  width: 18px;
  height: 18px;
  color: var(--white);
}

.chat-title h4 {
  color: var(--white);
  font-size: 15px;
  margin-bottom: 2px;
}

.chat-title span {
  font-size: 10px;
  color: var(--accent-champagne);
  opacity: 0.8;
}

.chat-messages {
  flex: 1;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  overflow-y: auto;
  background-color: var(--bg-cream);
}

.chat-msg {
  max-width: 80%;
  padding: 12px 16px;
  border-radius: 14px;
  font-size: 13px;
  line-height: 1.4;
}

.chat-msg.bot {
  background-color: var(--white);
  color: var(--text-dark);
  align-self: flex-start;
  border-bottom-left-radius: 2px;
  box-shadow: var(--shadow-sm);
}

.chat-msg.user {
  background-color: var(--accent-gold-dark);
  color: var(--white);
  align-self: flex-end;
  border-bottom-right-radius: 2px;
}

.chat-input-area {
  padding: 12px 16px;
  border-top: 1px solid rgba(60, 39, 44, 0.05);
  display: flex;
  gap: 10px;
  background-color: var(--white);
}

.chat-input-box {
  flex: 1;
  background-color: var(--bg-cream);
  border-radius: 20px;
  padding: 8px 16px;
  font-size: 13px;
  color: var(--text-muted);
  border: 1px solid rgba(60, 39, 44, 0.05);
}

.chat-send-btn {
  width: 32px;
  height: 32px;
  background-color: var(--accent-gold-dark);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* --- Animations --- */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* --- Responsive CSS --- */
@media (max-width: 992px) {
  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 40px;
  }

  .hero-visual-flyer {
    margin-top: 30px;
  }
  
  .hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  .hero-buttons {
    justify-content: center;
  }
  
  .stats-row {
    justify-content: center;
  }

  .ai-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .guide-wrapper {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .guide-visual {
    order: 2;
  }
}

@media (max-width: 576px) {
  .sub-headline {
    font-size: 14px;
  }

  .main-headline {
    font-size: 32px;
  }

  .flyer-checklist {
    grid-template-columns: 1fr;
    gap: 16px;
    margin-bottom: 28px;
  }

  .hero-download-wrapper {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 20px;
  }

  .download-buttons-col {
    align-items: center;
  }

  .hero-buttons {
    flex-direction: column;
    width: 100%;
  }
  
  .hero-buttons .btn {
    width: 100%;
  }
  
  .stats-row {
    flex-wrap: wrap;
    gap: 20px;
  }
  
  .nav-links {
    display: none; /* simple burger toggle could go here */
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero-visual-flyer {
    height: 480px;
    max-width: 360px;
    margin-top: 30px;
  }

  .girl-visual-card {
    width: 270px;
    height: 400px;
    border-radius: 0;
    overflow: visible;
    right: -10px;
    top: 0;
  }

  .girl-visual-card::before {
    top: 40px;
    left: 30px;
    right: 30px;
    border-radius: 150px 150px 0 0;
    border-width: 1.5px;
  }

  .girl-visual-card::after {
    top: 32px;
    left: 22px;
    right: 22px;
    border-radius: 150px 150px 0 0;
  }

  .phone-mockup-flyer {
    width: 150px;
    height: 310px;
    border-radius: 20px;
    border-width: 2px;
    padding: 4px;
  }

  .phone-welcome {
    left: -35px;
    bottom: 15px;
    transform: rotate(-5deg);
  }

  .phone-login {
    left: 115px;
    bottom: -10px;
    transform: rotate(2deg);
  }

  /* Scale down the inner screen contents of mockups */
  .phone-screen-welcome {
    padding: 8px;
  }

  .phone-welcome-logo {
    width: 75px;
  }

  .phone-welcome-footer h3 {
    font-size: 8.5px;
    margin-bottom: 6px;
  }

  .btn-mock-primary, .btn-mock-secondary {
    font-size: 7.5px;
    padding: 4px 8px;
    margin-bottom: 4px;
  }

  .phone-trust-footer {
    font-size: 6px;
  }

  .phone-screen-login {
    padding: 8px;
  }

  .phone-login-form h3 {
    font-size: 10px;
  }

  .form-desc {
    font-size: 6px;
    margin-bottom: 6px;
  }

  .mock-input-group {
    margin-bottom: 4px;
    gap: 2px;
  }

  .mock-input-group label {
    font-size: 6px;
  }

  .mock-input-box {
    padding: 3px 6px;
    font-size: 6px;
  }

  .mock-forgot-link {
    font-size: 6px;
    margin-bottom: 6px;
  }

  .btn-mock-dark {
    font-size: 7.5px;
    padding: 4px 8px;
    margin-bottom: 4px;
  }

  .mock-divider {
    font-size: 6px;
    margin-bottom: 4px;
  }

  .btn-mock-google {
    padding: 3px 6px;
    font-size: 6.5px;
    margin-bottom: 6px;
  }

  .mock-signup-prompt {
    font-size: 6px;
  }
}

/* --- Global Hover & Micro-Interaction Enhancements --- */
.logo {
  transition: var(--transition-smooth) !important;
}
.logo:hover {
  transform: scale(1.04);
}

.nav-links a {
  position: relative;
  transition: var(--transition-smooth);
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--accent-gold-dark);
  transition: var(--transition-smooth);
}
.nav-links a:hover::after {
  width: 100%;
}

.btn {
  transition: var(--transition-smooth) !important;
}
.btn:hover {
  transform: translateY(-4px) scale(1.04) !important;
  box-shadow: 0 10px 25px rgba(188, 73, 92, 0.4) !important;
}

.btn-secondary:hover {
  background-color: var(--primary-deep);
  color: var(--white);
  border-color: var(--primary-deep);
}

.smartphone {
  transition: var(--transition-smooth) !important;
}
.hero-visual:hover .phone-wrapper {
  transform: scale(0.93) rotate(0deg) translateY(-8px);
}

.feature-card {
  transition: var(--transition-smooth) !important;
}
.feature-card:hover {
  transform: translateY(-8px) scale(1.02) !important;
  border-color: rgba(232, 136, 154, 0.25) !important;
  box-shadow: var(--shadow-md) !important;
}

.chat-mockup {
  transition: var(--transition-smooth) !important;
}
.ai-visual:hover .chat-mockup {
  transform: translateY(-8px) scale(1.02) !important;
  box-shadow: 0 25px 50px rgba(60, 39, 44, 0.15) !important;
  border-color: rgba(232, 136, 154, 0.2) !important;
}

.step-item {
  transition: var(--transition-smooth) !important;
}
.step-item:hover {
  background-color: rgba(255, 255, 255, 0.6) !important;
  padding-left: 12px !important;
  border-radius: var(--border-radius) !important;
}

.faq-item {
  transition: var(--transition-smooth) !important;
}
.faq-item:hover {
  transform: translateY(-3px) scale(1.01) !important;
  border-color: rgba(232, 136, 154, 0.3) !important;
  box-shadow: var(--shadow-md) !important;
}

.footer-links ul li a {
  display: inline-block;
  transition: var(--transition-smooth) !important;
}
.footer-links ul li a:hover {
  transform: translateX(8px) !important;
  color: var(--accent-gold) !important;
  opacity: 1 !important;
}

/* Footer logo animation */
footer .footer-brand img {
  transition: var(--transition-smooth);
}
footer .footer-brand:hover img {
  transform: scale(1.08);
}

/* --- Modal Dialog Styling --- */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(60, 39, 44, 0.45);
  backdrop-filter: blur(10px);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.modal-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.modal-container {
  background-color: var(--white);
  border-radius: var(--border-radius);
  border: 1px solid var(--border-subtle);
  width: 90%;
  max-width: 800px;
  max-height: 90vh;
  box-shadow: var(--shadow-lg);
  display: flex;
  flex-direction: column;
  transform: translateY(35px);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  overflow: hidden;
}

.modal-overlay.active .modal-container {
  transform: translateY(0);
}

.modal-header {
  padding: 22px 26px;
  background-color: var(--primary-deep);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.modal-header h3 {
  color: var(--white);
  font-size: 20px;
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.modal-close {
  background: none;
  border: none;
  color: var(--white);
  font-size: 32px;
  cursor: pointer;
  line-height: 1;
  opacity: 0.75;
  transition: var(--transition-smooth);
}

.modal-close:hover {
  opacity: 1;
  transform: scale(1.2) rotate(90deg);
  color: var(--accent-gold);
}

.modal-body {
  padding: 28px;
  overflow-y: auto;
}

.modal-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 36px;
}

@media (max-width: 768px) {
  .modal-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .modal-body {
    padding: 20px;
  }
}

.support-info h4, .support-form-container h4 {
  font-size: 19px;
  margin-bottom: 14px;
  color: var(--primary-deep);
  font-family: 'Outfit', sans-serif;
}

.support-info p {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 24px;
  line-height: 1.6;
}

.support-contact-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.support-contact-list li {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 14px;
  color: var(--text-dark);
}

.support-contact-list li svg {
  color: var(--accent-gold-dark);
  flex-shrink: 0;
  width: 20px;
  height: 20px;
}

.support-contact-list li a {
  color: var(--accent-gold-dark);
  text-decoration: none;
  font-weight: 600;
  transition: var(--transition-smooth);
}

.support-contact-list li a:hover {
  color: var(--primary-deep);
  transform: translateX(4px);
}

.modal-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  font-size: 13px;
  font-weight: 600;
  color: var(--primary-deep);
  font-family: 'Outfit', sans-serif;
}

.form-group input, .form-group textarea {
  padding: 12px 16px;
  border-radius: 10px;
  border: 1px solid var(--border-gold);
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: var(--text-dark);
  background-color: var(--bg-cream);
  transition: var(--transition-smooth);
}

.form-group input:focus, .form-group textarea:focus {
  outline: none;
  border-color: var(--accent-gold-dark);
  background-color: var(--white);
  box-shadow: 0 0 0 4px rgba(188, 73, 92, 0.12);
}

.support-success-msg {
  display: none;
  margin-top: 16px;
  padding: 16px;
  background-color: rgba(46, 125, 50, 0.08);
  color: var(--success-green);
  border-radius: 10px;
  font-size: 14px;
  text-align: center;
  border: 1px solid rgba(46, 125, 50, 0.18);
  font-weight: 500;
}

.terms-content h4 {
  font-size: 17px;
  margin-bottom: 10px;
  color: var(--primary-deep);
  font-family: 'Outfit', sans-serif;
}

.terms-content p, .terms-content li {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.65;
}

.terms-content ul {
  padding-left: 22px;
  margin-top: 10px;
  margin-bottom: 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

