:root {
  --bg: #030105; /* Deep purple-black */
  --bg-soft: #0b0512;
  --panel: #100818;
  --panel-soft: #160b22;
  --text: #e8e6eb; /* Softer white for less eye strain */
  --muted: #b8b2c1; /* Soft purple-gray for paragraphs */
  
  /* Sugar Mommy Purple Palette (Amethyst & Orchid) */
  --accent: #9b5de5; 
  --accent-strong: #c77dff;
  --accent-dark: #7209b7;
  
  /* Advanced FX */
  --purple-glow: 0 0 25px rgba(155, 93, 229, 0.25);
  --purple-glow-hover: 0 10px 40px rgba(199, 125, 255, 0.4);
  --line: rgba(255, 255, 255, 0.05);
  --line-purple: rgba(155, 93, 229, 0.3);
  --radius: 16px;
  --radius-small: 8px;
  --container: min(1240px, calc(100% - 40px));
}

/* Smooth Scrolling & Custom Scrollbar */
html {
  scroll-behavior: smooth;
  scrollbar-width: thin;
  scrollbar-color: var(--accent-dark) var(--bg);
}

body::-webkit-scrollbar { width: 8px; }
body::-webkit-scrollbar-track { background: var(--bg); }
body::-webkit-scrollbar-thumb { background-color: var(--accent-dark); border-radius: 10px; }

*, *::before, *::after { 
  box-sizing: border-box; 
  max-width: 100%;
  word-wrap: break-word;
}

body {
  margin: 0;
  font-family: "Inter", "Helvetica Neue", Helvetica, Arial, sans-serif;
  color: var(--text);
  background-color: var(--bg);
  background-image: radial-gradient(circle at 50% 0%, #150a21 0%, #030105 60%);
  line-height: 1.7;
  overflow-x: hidden;
  width: 100%;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
  border-radius: var(--radius-small);
  transition: transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
  object-fit: cover;
}

a {
  color: inherit;
  text-decoration: none;
  transition: all 0.3s ease;
}

p, li { color: var(--muted); font-size: 1.05rem; }

.text-link {
  color: var(--accent-strong);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.text-link:hover {
  color: #fff;
}

.cta-inline { margin-top: 30px; }
.cta-center { text-align: center; margin-top: 50px; }

/* Base Layouts */
.container {
  width: var(--container);
  max-width: 100%;
  margin: 0 auto;
  padding: 0 20px;
}

.section {
  padding: 110px 0;
  position: relative;
}

.section-alt {
  background: linear-gradient(180deg, var(--bg-soft) 0%, var(--bg) 100%);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.section-intro {
  max-width: 860px;
  margin-bottom: 60px;
}

.section-intro.center, .narrow {
  margin: 0 auto 60px;
  text-align: center;
}

/* Typography */
.section-tag, .eyebrow {
  display: inline-block;
  margin: 0 0 16px;
  color: var(--accent-strong);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-size: 0.85rem;
  font-weight: 700;
  position: relative;
}

.section-tag::after, .eyebrow::after {
  content: "";
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 40px;
  height: 2px;
  background: var(--accent);
  transition: width 0.3s ease;
}

.section-intro.center .section-tag::after {
  left: 50%;
  transform: translateX(-50%);
}

h1, h2, h3 {
  margin: 0 0 20px;
  line-height: 1.2;
  color: #fff;
  letter-spacing: -0.01em;
}

h1 {
  font-size: clamp(2.2rem, 5vw, 4.5rem); /* Reduced minimum font size for mobile */
  font-weight: 800;
  text-shadow: 0 4px 20px rgba(0,0,0,0.8);
}

h2 {
  font-size: clamp(1.8rem, 4vw, 3rem); /* Reduced minimum font size for mobile */
  font-weight: 700;
}

h3 {
  font-size: 1.3rem;
  color: var(--accent-strong);
  font-weight: 600;
}

.feature-card-left { text-align: left; }
.card-title { margin-bottom: 20px; }

.location-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-top: 10px;
}

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

.location-marker {
  color: var(--accent);
  font-size: 1.2rem;
  line-height: 1.2;
  margin-top: 2px;
  flex: 0 0 auto;
}

.location-title {
  margin: 0 0 6px;
  font-size: 1.05rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.01em;
}

.location-text {
  margin: 0;
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.6;
}

.key-list {
  list-style: none;
  padding: 0;
  margin: 20px 0 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.key-item { display: flex; gap: 10px; }
.key-mark { color: var(--accent); }

.lead {
  font-size: 1.25rem;
  color: #e0dced;
  font-weight: 300;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(3, 1, 5, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--line-purple);
  transition: all 0.4s ease;
}

.site-header .container {
  padding: 0 20px; /* Default PC padding */
}

.header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 85px;
}

.brand, .footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 15px;
  font-weight: 800;
  font-size: 1.4rem;
  color: var(--accent-strong);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  white-space: nowrap; /* Prevents logo text from wrapping */
}

.brand img, .footer-brand img {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  border: 2px solid var(--accent);
  box-shadow: var(--purple-glow);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 25px;
}

.site-nav a {
  color: #fff;
  font-size: 0.95rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  position: relative;
  white-space: nowrap; /* FORCE ALL NAV ITEMS TO STAY ON ONE LINE */
}

.site-nav a::before {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: width 0.3s ease;
}

.site-nav a:hover::before, .site-nav a.is-active::before { width: 100%; }
.site-nav a:hover, .site-nav a.is-active {
  color: var(--accent-strong);
  text-shadow: 0 0 10px rgba(199, 125, 255, 0.4);
}

/* Dynamic Buttons */
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 36px;
  border-radius: 50px;
  background: linear-gradient(135deg, #b5179e 0%, #7209b7 50%, #560bad 100%);
  background-size: 200% auto;
  color: #fff;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.95rem;
  box-shadow: 0 4px 15px rgba(114, 9, 183, 0.4);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  border: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.button:hover {
  background-position: right center;
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 12px 25px rgba(114, 9, 183, 0.6);
  color: #fff;
}

.button::after {
  content: "";
  position: absolute;
  top: -50%; left: -50%;
  width: 200%; height: 200%;
  background: rgba(255,255,255,0.2);
  transform: rotate(45deg) translateY(100%);
  transition: transform 0.6s ease;
}

.button:hover::after { transform: rotate(45deg) translateY(-100%); }

.button-secondary {
  background: transparent;
  color: var(--accent-strong);
  border: 1px solid var(--accent);
  box-shadow: none;
}

.button-secondary:hover {
  background: rgba(155, 93, 229, 0.1);
  color: #fff;
  border-color: var(--accent-strong);
  box-shadow: inset 0 0 15px rgba(155, 93, 229, 0.2), 0 0 15px rgba(155, 93, 229, 0.3);
}

.button-small { padding: 10px 24px; font-size: 0.85rem; }

/* Hero Section */
.hero {
  padding: 140px 0 100px;
  background-color: #000;
  background-image: linear-gradient(to bottom, rgba(5,2,8,0.4) 0%, #030105 100%), url('images/sugarmommy344-919x492.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  border-bottom: 1px solid var(--line);
  position: relative;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: radial-gradient(circle at center, transparent 0%, #000 85%);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  text-align: center;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-media { display: none; }

.hero-copy {
  max-width: 900px;
  margin: 0 auto;
  animation: fadeInUp 1s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

.hero-actions {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin: 40px 0;
  flex-wrap: wrap;
}

.hero-points {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  list-style: none;
  padding: 0;
  margin-top: 40px;
}

.hero-points li {
  color: var(--accent-strong);
  font-weight: 600;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  background: rgba(155, 93, 229, 0.08);
  padding: 10px 20px;
  border-radius: 30px;
  border: 1px solid rgba(155, 93, 229, 0.25);
  box-shadow: 0 4px 10px rgba(0,0,0,0.5);
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.hero-points li:hover {
  transform: translateY(-2px);
  border-color: var(--accent-strong);
}

.hero-points li::before {
  content: '✦';
  margin-right: 8px;
  color: var(--accent);
  font-size: 1.2rem;
}

/* Layouts */
.two-column, .article-layout, .footer-grid {
  display: grid;
  gap: 60px;
}

.two-column {
  grid-template-columns: 1fr 1fr;
  align-items: center;
}

/* 
  Eye-Catching Grid Layouts (PC 并列)
  This solves the ugly single-column stacking from your screenshots
*/
.feature-grid, .bullet-grid, .story-grid, .guide-grid, .audience-grid, .blog-grid {
  display: grid;
  /* Automatically fits items next to each other on PC, wraps on mobile */
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr));
  gap: 40px; /* Increased gap for better breathing room */
  width: 100%;
  max-width: 1100px; /* Constrain width so cards don't look overly stretched */
  margin: 0 auto; /* Center the grid */
}

.bullet-grid {
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 220px), 1fr));
  margin-top: 30px;
}

/* Profiles Grid */
.profile-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 320px), 1fr));
  gap: 40px;
  width: 100%;
  max-width: 1150px;
  margin: 0 auto;
}
.profile-card {
  background: linear-gradient(145deg, #12091c 0%, #08040d 100%);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
  display: flex;
  flex-direction: column;
}
.profile-card:hover {
  transform: translateY(-10px);
  border-color: var(--accent-strong);
  box-shadow: var(--purple-glow-hover);
}
.profile-card img {
  width: 100%;
  height: 350px; /* Uniform height */
  object-fit: cover;
  border-radius: 0;
  transition: transform 0.6s ease;
}
.profile-card:hover img {
  transform: scale(1.05);
}
.profile-info {
  padding: 30px;
  text-align: center;
  flex: 1;
  display: flex;
  flex-direction: column;
  position: relative;
  z-index: 2;
  background: linear-gradient(145deg, #12091c 0%, #08040d 100%);
}
.profile-info h3 {
  margin: 0 0 5px;
  font-size: 1.5rem;
  color: #fff;
}
.profile-type {
  color: var(--accent-strong);
  font-weight: 800;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 15px;
  display: inline-block;
}
.profile-info p {
  margin: 0;
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.6;
}

/* Card Styles */
.feature-card, .bullet-card, .audience-card, .story-card, .sidebar-card, .faq-item {
  background: linear-gradient(145deg, #12091c 0%, #08040d 100%);
  border: 1px solid rgba(255,255,255,0.03);
  border-top: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius);
  padding: 40px 30px;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: 0 10px 30px rgba(0,0,0,0.8);
  position: relative;
  overflow: hidden;
}

/* Top Glow Line */
.feature-card::before, .bullet-card::before, .story-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; width: 100%; height: 2px;
  background: var(--accent-strong);
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.feature-card:hover, .bullet-card:hover, .story-card:hover {
  transform: translateY(-10px);
  border-color: var(--accent-dark);
  box-shadow: var(--purple-glow-hover);
}

.feature-card:hover::before, .bullet-card:hover::before, .story-card:hover::before {
  transform: scaleX(1);
}

.feature-card h3, .story-card h3 {
  color: var(--text);
  margin-bottom: 15px;
  font-size: 1.4rem;
  transition: color 0.3s ease;
}

.feature-card:hover h3, .story-card:hover h3 {
  color: var(--accent-strong);
}

/* Image & Text Cards (For Guides/Blogs) */
.guide-card {
  display: flex;
  flex-direction: column;
  background: #0a0510;
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all 0.4s ease;
}
.guide-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--purple-glow-hover);
  border-color: var(--accent-dark);
}
.guide-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 0; /* Override global img radius */
}
/* Fixed missing padding for text container */
.guide-card > div {
  padding: 35px 30px;
  text-align: left;
  display: flex;
  flex-direction: column;
  justify-content: center;
  flex: 1;
}
.guide-card h3 { margin-bottom: 12px; font-size: 1.3rem; }
.guide-card p { margin: 0; font-size: 0.95rem; line-height: 1.6; }

/* Icon Wrap */
.icon-wrap {
  width: 70px;
  height: 70px;
  margin: 0 auto 25px;
  background: rgba(155, 93, 229, 0.05);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(155, 93, 229, 0.3);
  transition: all 0.4s ease;
  position: relative;
}

.icon-wrap::after {
  content: "";
  position: absolute;
  inset: -5px;
  border-radius: 50%;
  border: 1px solid var(--accent);
  opacity: 0;
  transition: all 0.4s ease;
}

.feature-card:hover .icon-wrap {
  background: var(--accent);
  border-color: var(--accent);
  transform: scale(1.1) rotate(5deg);
}
.feature-card:hover .icon-wrap::after { opacity: 0.5; transform: scale(1.2); }
.icon-wrap svg { width: 32px; height: 32px; fill: var(--accent); transition: fill 0.4s ease; }
.feature-card:hover .icon-wrap svg { fill: #fff; }

/* Steps - Horizontal/Grid Layout to save vertical space */
.steps { 
  display: grid; 
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr)); 
  gap: 30px; 
  max-width: 1200px;
  margin: 0 auto;
}
.step-item {
  display: flex;
  flex-direction: column; /* Stack number and text vertically */
  gap: 20px;
  align-items: flex-start;
  background: linear-gradient(to bottom, #140b20, #08040d);
  padding: 35px 30px;
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,0.03);
  border-top: 3px solid var(--accent);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
}
.step-item:hover {
  transform: translateY(-8px);
  box-shadow: var(--purple-glow-hover);
  border-color: var(--accent-strong);
}
.step-item span {
  flex-shrink: 0; width: 50px; height: 50px; border-radius: 50%;
  background: var(--accent); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 1.3rem;
  box-shadow: 0 0 15px rgba(155, 93, 229, 0.4);
}

/* Pricing Grid (PC: Horizontal, Mobile: Stacked) */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr));
  gap: 30px;
  max-width: 1100px;
  margin: 0 auto;
}
.pricing-card {
  background: linear-gradient(145deg, #12091c 0%, #08040d 100%);
  border: 1px solid #1a1025;
  border-radius: var(--radius);
  padding: 40px 30px;
  text-align: center;
  transition: all 0.4s ease;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}
.pricing-card::after {
  content: 'Elegir Plan';
  display: block;
  margin-top: auto;
  padding: 14px 0;
  background: var(--accent);
  color: #fff;
  border-radius: 30px;
  font-weight: 800;
  text-transform: uppercase;
  font-size: 0.95rem;
  letter-spacing: 0.05em;
  box-shadow: 0 4px 15px rgba(155, 93, 229, 0.3);
  transition: all 0.3s ease;
  cursor: pointer;
  margin-bottom: -10px; /* Push to bottom naturally */
}
.pricing-card:hover::after {
  background: var(--accent-strong);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(199, 125, 255, 0.5);
}
.pricing-card:hover {
  border-color: var(--accent);
  box-shadow: inset 0 0 30px rgba(155,93,229,0.05), 0 10px 30px rgba(0,0,0,0.8);
  transform: translateY(-8px);
}
.pricing-card.pricing-card-featured,
.pricing-card.highlight {
  border-color: var(--accent-strong);
  box-shadow: 0 0 20px rgba(155, 93, 229, 0.2);
  position: relative;
  transform: scale(1.03);
}
.pricing-card.pricing-card-featured::before,
.pricing-card.highlight::before {
  content: 'Mejor Opción';
  position: absolute;
  top: 0; left: 50%;
  transform: translate(-50%, -50%);
  background: linear-gradient(135deg, #c77dff 0%, #9b5de5 100%);
  color: #fff;
  padding: 6px 16px;
  font-size: 0.8rem;
  font-weight: 800;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  box-shadow: 0 4px 10px rgba(199, 125, 255, 0.4);
  z-index: 2;
}
.pricing-card.pricing-card-featured:hover,
.pricing-card.highlight:hover {
  border-color: var(--accent-strong);
  box-shadow: 0 0 35px rgba(199, 125, 255, 0.4);
  transform: scale(1.05) translateY(-5px);
}
.pricing-card h3 { color: var(--accent-strong); font-size: 1.4rem; font-weight: 700; text-transform: uppercase; margin: 0; }
.pricing-card .price { font-size: 2.8rem; color: #fff; font-weight: 800; margin: 15px 0 5px; }
.pricing-card > p:not(.price) { color: var(--muted); font-size: 1rem; text-transform: uppercase; letter-spacing: 0.1em; font-weight: 600; margin-bottom: 25px; }
.pricing-card ul { list-style: none; padding: 0; margin: 0 0 30px; display: flex; flex-direction: column; gap: 12px; align-items: center; }
.pricing-card ul li { font-size: 0.95rem; color: #d1cbd8; }
.pricing-card ul li::before { content: '•'; color: var(--accent); margin-right: 8px; font-size: 1.2em; }

/* Full Width CTA Banner */
.cta-banner {
  background: linear-gradient(135deg, #b5179e 0%, #7209b7 50%, #560bad 100%);
  color: #fff;
  text-align: center;
  padding: 80px 20px;
  margin: 80px 0;
  box-shadow: 0 15px 40px rgba(114, 9, 183, 0.2);
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
}
.cta-banner::before {
  content: ""; position: absolute; top: 0; left: -100%; width: 50%; height: 100%;
  background: linear-gradient(to right, transparent, rgba(255,255,255,0.2), transparent);
  transform: skewX(-20deg); animation: sweep 6s infinite;
}
@keyframes sweep { 0% { left: -100%; } 20% { left: 200%; } 100% { left: 200%; } }
.cta-banner h2 { color: #fff; margin-bottom: 25px; font-size: clamp(2rem, 4vw, 3rem); text-transform: uppercase; letter-spacing: 0.05em; text-shadow: none; }
.cta-banner p { color: #e0dced; max-width: 800px; margin: 0 auto 40px; font-weight: 400; font-size: 1.2rem; }
.cta-banner .button {
  background: #fff; color: #560bad; border: none; box-shadow: 0 10px 25px rgba(0,0,0,0.3); padding: 18px 45px; font-size: 1.1rem;
}
.cta-banner .button:hover { background: #f0f0f0; transform: translateY(-5px); box-shadow: 0 15px 35px rgba(0,0,0,0.4); }

/* Image Stacks */
.image-stack { position: relative; width: 100%; }
.image-stack img { 
  width: 100%;
  max-height: 500px;
  object-fit: cover;
  box-shadow: var(--purple-glow); 
  border: 1px solid #222; 
  border-radius: var(--radius);
}
.image-stack:hover img { transform: scale(1.02); border-color: var(--accent-dark); box-shadow: var(--purple-glow-hover); }

/* Footer */
.site-footer {
  background: #030105;
  padding: 80px 0 40px;
  border-top: 1px solid var(--line-purple);
}
.footer-grid { grid-template-columns: 2fr 1fr 1fr 1.5fr; margin-bottom: 60px; }
.footer-grid h3 { color: var(--accent-strong); margin-bottom: 25px; font-size: 1.2rem; text-transform: uppercase; letter-spacing: 0.05em; }
.footer-links { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 15px; }
.footer-links a { display: inline-flex; align-items: center; color: var(--muted); font-size: 0.95rem; transition: transform 0.3s ease, color 0.3s ease; }
.footer-links a::before { content: '→'; color: var(--accent); margin-right: 10px; font-weight: bold; transition: transform 0.3s ease; }
.footer-links a:hover { color: #fff; transform: translateX(5px); }
.footer-links a:hover::before { transform: translateX(3px); }
.footer-bottom { padding-top: 30px; border-top: 1px solid rgba(255,255,255,0.05); display: flex; justify-content: space-between; align-items: center; font-size: 0.9rem; color: #666; }

/* FAQ */
.faq-list { display: flex; flex-direction: column; gap: 20px; max-width: 800px; margin: 0 auto; }
.faq-item { background: #0a0510; border: 1px solid #1a1025; padding: 25px 30px; }
.faq-item:hover { border-color: var(--accent-dark); }
.faq-question { width: 100%; background: none; border: none; padding: 0; text-align: left; font-size: 1.2rem; font-weight: 700; color: var(--text); cursor: pointer; display: flex; justify-content: space-between; align-items: center; transition: color 0.3s ease; }
.faq-item:hover .faq-question { color: var(--accent-strong); }
.faq-question::after { content: '+'; color: var(--accent); font-size: 1.8rem; font-weight: 300; transition: transform 0.3s ease; }
.faq-item.is-open .faq-question::after { content: '−'; transform: rotate(180deg); }
.faq-answer { display: none; padding-top: 20px; color: var(--muted); line-height: 1.8; border-top: 1px solid rgba(255,255,255,0.05); margin-top: 20px; animation: fadeIn 0.4s ease; }
.faq-item.is-open .faq-answer { display: block; }

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

/* Mobile Nav */
.nav-toggle { display: none; width: 48px; height: 48px; border: none; background: transparent; cursor: pointer; padding: 0; }
.nav-toggle span { display: block; width: 28px; height: 2px; margin: 6px auto; background: var(--accent); transition: transform 0.3s ease, opacity 0.3s ease; }
.nav-open .nav-toggle span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav-open .nav-toggle span:nth-child(2) { opacity: 0; }
.nav-open .nav-toggle span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* Responsive */
@media (max-width: 1024px) {
  .site-nav {
    gap: 15px; /* Reduce gap on smaller PC screens so it fits */
  }
  .site-nav a {
    font-size: 0.85rem; /* Slightly smaller text */
  }
}

@media (max-width: 576px) {
  /* Extra rules for very small screens (mobile phones) */
  h1 {
    font-size: 2rem; /* Much smaller H1 on mobile */
    line-height: 1.15;
  }
  h2 {
    font-size: 1.6rem; /* Much smaller H2 on mobile */
  }
  h3 {
    font-size: 1.2rem;
  }
  .lead {
    font-size: 1.05rem;
  }
  .section {
    padding: 70px 0; /* Less padding on mobile to save vertical space */
  }
  .hero {
    padding: 60px 0 70px; /* Significantly reduce top padding on mobile hero so it sits closer to header */
  }
}

@media (max-width: 992px) {
  .site-header .container {
    padding: 0 10px; /* Much smaller padding on mobile header to push items to the edges */
  }
  .brand, .footer-brand {
    font-size: 0.85rem; /* Significantly shrink logo text on mobile to guarantee it fits entirely */
    gap: 6px;
    letter-spacing: 0.01em; /* Extremely tight letter spacing to save space */
    /* REMOVED max-width, overflow and ellipsis. The text will now ALWAYS show fully */
  }
  .brand img, .footer-brand img {
    width: 28px; /* Extra small icon on mobile to give text more room */
    height: 28px;
  }
  .header-row {
    gap: 5px; /* Reduce gap between logo and hamburger */
    min-height: 60px; /* Slightly slimmer header on mobile */
  }
  .nav-toggle {
    width: 35px; /* Make hamburger slightly narrower to give logo more space */
    height: 35px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  .nav-toggle span {
    margin: 3px 0; /* Tighter hamburger lines */
  }
  .two-column, .footer-grid { grid-template-columns: 1fr; }
  .two-column.reverse div:first-child { order: 2; }
  .nav-toggle { display: block; }
  .site-nav {
    display: none; position: absolute; top: 100%; left: 0; right: 0;
    background: rgba(3,1,5,0.98); backdrop-filter: blur(15px);
    flex-direction: column; padding: 30px; border-bottom: 1px solid var(--line-purple);
  }
  .nav-open .site-nav { display: flex; }
  .footer-bottom { flex-direction: column; text-align: center; gap: 20px; }
}

/* verification.html only */
.verification-page .verification-hero {
  padding: 120px 0 90px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  background:
    linear-gradient(135deg, rgba(92, 26, 125, 0.78), rgba(7, 4, 14, 0.92)),
    radial-gradient(circle at top right, rgba(199, 125, 255, 0.22), transparent 42%),
    radial-gradient(circle at bottom left, rgba(255, 255, 255, 0.08), transparent 32%);
}

.verification-page .verification-hero__grid,
.verification-page .verification-two-column {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 44px;
  align-items: center;
}

.verification-page .verification-hero__copy {
  max-width: 720px;
}

.verification-page .verification-hero__eyebrow,
.verification-page .verification-tag {
  display: inline-block;
  margin: 0 0 14px;
  color: #f0cbff;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 0.82rem;
  font-weight: 800;
}

.verification-page .verification-hero__lead,
.verification-page .verification-section__intro p,
.verification-page .verification-panel p,
.verification-page .verification-feature-box p,
.verification-page .verification-location-card p,
.verification-page .verification-step p,
.verification-page .verification-type-card p,
.verification-page .verification-card p,
.verification-page .verification-privacy-card p,
.verification-page .faq-answer p,
.verification-page .verification-cta p {
  color: #d9d2e2;
}

.verification-page .verification-hero__lead {
  font-size: 1.13rem;
  line-height: 1.9;
}

.verification-page .verification-hero__actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin: 34px 0 28px;
}

.verification-page .verification-hero__highlights,
.verification-page .verification-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.verification-page .verification-hero__highlights {
  display: grid;
  gap: 12px;
}

.verification-page .verification-hero__highlights li,
.verification-page .verification-list li {
  position: relative;
  padding-left: 26px;
}

.verification-page .verification-hero__highlights li::before,
.verification-page .verification-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: linear-gradient(135deg, #f0cbff, #9b5de5);
  box-shadow: 0 0 0 4px rgba(155, 93, 229, 0.12);
}

.verification-page .verification-list {
  display: grid;
  gap: 12px;
  margin: 22px 0 0;
}

.verification-page .verification-list--warn li::before {
  background: linear-gradient(135deg, #ffcf89, #ff7b7b);
}

.verification-page .verification-hero__media img,
.verification-page .verification-type-card img,
.verification-page .verification-privacy-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.verification-page .verification-hero__media img {
  min-height: 420px;
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.35);
}

.verification-page .verification-section {
  padding: 96px 0;
}

.verification-page .verification-section--alt {
  background: linear-gradient(180deg, rgba(12, 6, 20, 0.95), rgba(4, 2, 8, 1));
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.verification-page .verification-section__intro {
  max-width: 860px;
  margin-bottom: 44px;
}

.verification-page .verification-section__intro--center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.verification-page .verification-card-grid,
.verification-page .verification-type-grid,
.verification-page .verification-location-grid,
.verification-page .verification-steps {
  display: grid;
  gap: 24px;
}

.verification-page .verification-card-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.verification-page .verification-type-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.verification-page .verification-location-grid,
.verification-page .verification-steps {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.verification-page .verification-card,
.verification-page .verification-panel,
.verification-page .verification-type-card,
.verification-page .verification-feature-box,
.verification-page .verification-step,
.verification-page .verification-location-card,
.verification-page .verification-privacy-card {
  background: linear-gradient(145deg, rgba(20, 11, 32, 0.95), rgba(8, 4, 13, 0.98));
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 24px;
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.22);
}

.verification-page .verification-card,
.verification-page .verification-panel,
.verification-page .verification-feature-box,
.verification-page .verification-step,
.verification-page .verification-location-card {
  padding: 30px;
}

.verification-page .verification-card h3,
.verification-page .verification-feature-box h3,
.verification-page .verification-location-card h3,
.verification-page .verification-panel h2,
.verification-page .verification-step span,
.verification-page .verification-type-card h3,
.verification-page .verification-privacy-card h3 {
  color: #fff;
}

.verification-page .verification-type-card {
  overflow: hidden;
}

.verification-page .verification-type-card img {
  height: 220px;
  border-radius: 0;
}

.verification-page .verification-type-card h3,
.verification-page .verification-type-card p {
  padding-left: 24px;
  padding-right: 24px;
}

.verification-page .verification-type-card h3 {
  margin-top: 24px;
  margin-bottom: 12px;
}

.verification-page .verification-type-card p {
  margin-bottom: 24px;
}

.verification-page .verification-image-stack {
  display: grid;
  gap: 20px;
}

.verification-page .verification-image-stack img {
  width: 100%;
  min-height: 220px;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.verification-page .verification-feature-box {
  align-self: start;
}

.verification-page .verification-table-wrap {
  overflow-x: auto;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(7, 4, 12, 0.92);
}

.verification-page .verification-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 760px;
}

.verification-page .verification-table th,
.verification-page .verification-table td {
  padding: 18px 20px;
  text-align: left;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  color: #ddd5e6;
}

.verification-page .verification-table th {
  color: #fff;
  background: rgba(155, 93, 229, 0.12);
  font-weight: 700;
}

.verification-page .verification-step {
  position: relative;
  padding-top: 74px;
}

.verification-page .verification-step span {
  position: absolute;
  top: 24px;
  left: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 148px;
  padding: 10px 16px;
  border-radius: 999px;
  background: linear-gradient(135deg, #9b5de5, #c77dff);
  color: #fff;
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.verification-page .verification-privacy-card {
  overflow: hidden;
}

.verification-page .verification-privacy-card img {
  height: 250px;
  border-radius: 0;
}

.verification-page .verification-privacy-card div {
  padding: 26px;
}

.verification-page .verification-cta {
  margin-top: 52px;
  padding: 36px;
  border-radius: 28px;
  background: linear-gradient(135deg, rgba(181, 23, 158, 0.96), rgba(86, 11, 173, 0.96));
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.verification-page .verification-cta h2,
.verification-page .verification-cta p {
  color: #fff;
}

.verification-page .verification-cta p {
  max-width: 700px;
}

.verification-page .verification-cta__actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

@media (max-width: 1100px) {
  .verification-page .verification-type-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  .verification-page .verification-hero__grid,
  .verification-page .verification-two-column,
  .verification-page .verification-card-grid,
  .verification-page .verification-location-grid,
  .verification-page .verification-steps,
  .verification-page .verification-cta {
    grid-template-columns: 1fr;
  }

  .verification-page .verification-cta {
    display: grid;
  }

  .verification-page .verification-hero {
    padding: 90px 0 70px;
  }
}

@media (max-width: 640px) {
  .verification-page .verification-section {
    padding: 72px 0;
  }

  .verification-page .verification-type-grid {
    grid-template-columns: 1fr;
  }

  .verification-page .verification-card,
  .verification-page .verification-panel,
  .verification-page .verification-feature-box,
  .verification-page .verification-step,
  .verification-page .verification-location-card,
  .verification-page .verification-cta {
    padding: 24px;
  }

  .verification-page .verification-step {
    padding-top: 82px;
  }

  .verification-page .verification-step span {
    min-width: 0;
    width: calc(100% - 48px);
  }

  .verification-page .verification-hero__media img {
    min-height: 280px;
  }
}

/* sugar-baby-quito.html only */
.sugar-baby-page main .container {
  width: min(1480px, calc(100% - 56px));
}

.sugar-baby-page .sbq-hero {
  padding: 120px 0 88px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  background:
    linear-gradient(135deg, rgba(9, 8, 25, 0.92), rgba(74, 19, 82, 0.8)),
    radial-gradient(circle at top left, rgba(199, 125, 255, 0.18), transparent 38%),
    radial-gradient(circle at bottom right, rgba(255, 255, 255, 0.08), transparent 28%);
}

.sugar-baby-page .sbq-hero__grid,
.sugar-baby-page .sbq-two-column {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 42px;
  align-items: center;
}

.sugar-baby-page .sbq-hero__copy {
  max-width: 840px;
}

.sugar-baby-page .sbq-eyebrow,
.sugar-baby-page .sbq-tag {
  display: inline-block;
  margin: 0 0 14px;
  color: #f2ccff;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 0.82rem;
  font-weight: 800;
}

.sugar-baby-page .sbq-lead,
.sugar-baby-page .sbq-intro p,
.sugar-baby-page .sbq-card p,
.sugar-baby-page .sbq-panel p,
.sugar-baby-page .sbq-bullet-card p,
.sugar-baby-page .sbq-step p,
.sugar-baby-page .sbq-find-card p,
.sugar-baby-page .sbq-zone-card p,
.sugar-baby-page .sbq-cta p,
.sugar-baby-page .faq-answer p {
  color: #d8d2e4;
}

.sugar-baby-page .sbq-lead {
  font-size: 1.12rem;
  line-height: 1.88;
}

.sugar-baby-page .sbq-hero__actions,
.sugar-baby-page .sbq-cta__actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.sugar-baby-page .sbq-hero__actions {
  margin: 34px 0 30px;
}

.sugar-baby-page .sbq-hero__points,
.sugar-baby-page .sbq-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.sugar-baby-page .sbq-hero__points {
  display: grid;
  gap: 12px;
}

.sugar-baby-page .sbq-hero__points li,
.sugar-baby-page .sbq-list li {
  position: relative;
  padding-left: 26px;
}

.sugar-baby-page .sbq-hero__points li::before,
.sugar-baby-page .sbq-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: linear-gradient(135deg, #c77dff, #9b5de5);
  box-shadow: 0 0 0 4px rgba(155, 93, 229, 0.12);
}

.sugar-baby-page .sbq-list {
  display: grid;
  gap: 12px;
}

.sugar-baby-page .sbq-list--warn li::before {
  background: linear-gradient(135deg, #ffcf89, #ff7b7b);
}

.sugar-baby-page .sbq-hero__media img {
  width: 100%;
  min-height: 430px;
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.35);
}

.sugar-baby-page .sbq-section {
  padding: 100px 0;
}

.sugar-baby-page .sbq-section--alt {
  background: linear-gradient(180deg, rgba(12, 6, 20, 0.95), rgba(4, 2, 8, 1));
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.sugar-baby-page .sbq-intro {
  max-width: 1140px;
  margin-bottom: 46px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.sugar-baby-page .sbq-intro--center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.sugar-baby-page .sbq-intro h2,
.sugar-baby-page .sbq-intro p {
  margin-left: auto;
  margin-right: auto;
}

.sugar-baby-page .sbq-intro h2 {
  max-width: 1180px;
}

.sugar-baby-page .sbq-intro p {
  max-width: 1080px;
}

.sugar-baby-page .sbq-card-grid,
.sugar-baby-page .sbq-bullet-grid,
.sugar-baby-page .sbq-find-grid,
.sugar-baby-page .sbq-zone-grid,
.sugar-baby-page .sbq-steps {
  display: grid;
  gap: 28px;
  align-items: stretch;
}

.sugar-baby-page .sbq-card-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  max-width: 1240px;
  margin: 0 auto;
}

.sugar-baby-page .sbq-bullet-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  max-width: 1240px;
  margin: 0 auto;
}

.sugar-baby-page .sbq-find-grid {
  grid-template-columns: repeat(6, minmax(0, 1fr));
  margin-top: 28px;
  max-width: 1360px;
  margin-left: auto;
  margin-right: auto;
}

.sugar-baby-page .sbq-zone-grid,
.sugar-baby-page .sbq-steps {
  grid-template-columns: repeat(6, minmax(0, 1fr));
  max-width: 1360px;
  margin: 0 auto;
}

.sugar-baby-page .sbq-card,
.sugar-baby-page .sbq-panel,
.sugar-baby-page .sbq-bullet-card,
.sugar-baby-page .sbq-step,
.sugar-baby-page .sbq-find-card,
.sugar-baby-page .sbq-zone-card {
  background: linear-gradient(145deg, rgba(20, 11, 32, 0.95), rgba(8, 4, 13, 0.98));
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 24px;
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.22);
  padding: 28px;
  position: relative;
  overflow: hidden;
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.sugar-baby-page .sbq-find-card,
.sugar-baby-page .sbq-zone-card,
.sugar-baby-page .sbq-step {
  grid-column: span 2;
}

.sugar-baby-page .sbq-find-grid > .sbq-find-card:nth-child(4),
.sugar-baby-page .sbq-find-grid > .sbq-find-card:nth-child(5),
.sugar-baby-page .sbq-zone-grid > .sbq-zone-card:nth-child(4),
.sugar-baby-page .sbq-zone-grid > .sbq-zone-card:nth-child(5),
.sugar-baby-page .sbq-steps > .sbq-step:nth-child(4),
.sugar-baby-page .sbq-steps > .sbq-step:nth-child(5) {
  grid-column: span 3;
}

.sugar-baby-page .sbq-card::before,
.sugar-baby-page .sbq-bullet-card::before,
.sugar-baby-page .sbq-step::before,
.sugar-baby-page .sbq-find-card::before,
.sugar-baby-page .sbq-zone-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #c77dff, rgba(199, 125, 255, 0.12));
  opacity: 0.92;
}

.sugar-baby-page .sbq-card:hover,
.sugar-baby-page .sbq-bullet-card:hover,
.sugar-baby-page .sbq-step:hover,
.sugar-baby-page .sbq-find-card:hover,
.sugar-baby-page .sbq-zone-card:hover {
  transform: translateY(-6px);
  border-color: rgba(199, 125, 255, 0.26);
  box-shadow: 0 24px 56px rgba(0, 0, 0, 0.28);
}

.sugar-baby-page .sbq-card h3,
.sugar-baby-page .sbq-panel h2,
.sugar-baby-page .sbq-panel h3,
.sugar-baby-page .sbq-bullet-card h3,
.sugar-baby-page .sbq-step h3,
.sugar-baby-page .sbq-find-card h3,
.sugar-baby-page .sbq-zone-card h3,
.sugar-baby-page .sbq-cta h2 {
  color: #fff;
}

.sugar-baby-page .sbq-card h3,
.sugar-baby-page .sbq-bullet-card h3,
.sugar-baby-page .sbq-step h3,
.sugar-baby-page .sbq-find-card h3,
.sugar-baby-page .sbq-zone-card h3 {
  font-size: 1.32rem;
  line-height: 1.24;
  margin-bottom: 14px;
  letter-spacing: -0.015em;
  text-wrap: balance;
}

.sugar-baby-page .sbq-card p,
.sugar-baby-page .sbq-bullet-card p,
.sugar-baby-page .sbq-step p,
.sugar-baby-page .sbq-find-card p,
.sugar-baby-page .sbq-zone-card p {
  font-size: 1rem;
  line-height: 1.72;
  margin: 0;
}

.sugar-baby-page .sbq-find-card {
  min-height: 240px;
}

.sugar-baby-page .sbq-zone-card,
.sugar-baby-page .sbq-bullet-card,
.sugar-baby-page .sbq-card {
  min-height: 210px;
}

.sugar-baby-page .sbq-table-wrap {
  overflow-x: auto;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(7, 4, 12, 0.92);
}

.sugar-baby-page .sbq-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 760px;
}

.sugar-baby-page .sbq-table th,
.sugar-baby-page .sbq-table td {
  padding: 18px 20px;
  text-align: left;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  color: #ddd5e6;
}

.sugar-baby-page .sbq-table th {
  color: #fff;
  background: rgba(155, 93, 229, 0.12);
  font-weight: 700;
}

.sugar-baby-page .sbq-cta {
  margin-top: 52px;
  padding: 36px;
  border-radius: 28px;
  background: linear-gradient(135deg, rgba(181, 23, 158, 0.96), rgba(86, 11, 173, 0.96));
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.sugar-baby-page .sbq-cta h2,
.sugar-baby-page .sbq-cta p {
  color: #fff;
}

.sugar-baby-page .sbq-cta p {
  max-width: 700px;
}

@media (max-width: 1180px) {
  .sugar-baby-page main .container {
    width: min(100%, calc(100% - 40px));
  }

  .sugar-baby-page .sbq-card-grid,
  .sugar-baby-page .sbq-bullet-grid {
    grid-template-columns: 1fr;
    max-width: 100%;
  }

  .sugar-baby-page .sbq-find-grid {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    max-width: 100%;
  }

  .sugar-baby-page .sbq-zone-grid,
  .sugar-baby-page .sbq-steps {
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    max-width: 100%;
  }

  .sugar-baby-page .sbq-find-card,
  .sugar-baby-page .sbq-zone-card,
  .sugar-baby-page .sbq-step,
  .sugar-baby-page .sbq-find-grid > .sbq-find-card:nth-child(4),
  .sugar-baby-page .sbq-find-grid > .sbq-find-card:nth-child(5),
  .sugar-baby-page .sbq-zone-grid > .sbq-zone-card:nth-child(4),
  .sugar-baby-page .sbq-zone-grid > .sbq-zone-card:nth-child(5),
  .sugar-baby-page .sbq-steps > .sbq-step:nth-child(4),
  .sugar-baby-page .sbq-steps > .sbq-step:nth-child(5) {
    grid-column: auto;
  }
}

@media (max-width: 900px) {
  .sugar-baby-page .sbq-hero__grid,
  .sugar-baby-page .sbq-two-column {
    grid-template-columns: 1fr;
  }

  .sugar-baby-page .sbq-cta {
    display: grid;
  }

  .sugar-baby-page .sbq-hero {
    padding: 90px 0 70px;
  }
}

@media (max-width: 640px) {
  .sugar-baby-page main .container {
    width: min(100%, calc(100% - 24px));
  }

  .sugar-baby-page .sbq-section {
    padding: 72px 0;
  }

  .sugar-baby-page .sbq-card-grid,
  .sugar-baby-page .sbq-bullet-grid,
  .sugar-baby-page .sbq-find-grid,
  .sugar-baby-page .sbq-zone-grid,
  .sugar-baby-page .sbq-steps {
    grid-template-columns: 1fr;
  }

  .sugar-baby-page .sbq-card,
  .sugar-baby-page .sbq-panel,
  .sugar-baby-page .sbq-bullet-card,
  .sugar-baby-page .sbq-step,
  .sugar-baby-page .sbq-find-card,
  .sugar-baby-page .sbq-zone-card,
  .sugar-baby-page .sbq-cta {
    padding: 24px;
  }

  .sugar-baby-page .sbq-hero__media img {
    min-height: 280px;
  }
}

/* sugar-dating-quito-guide.html only */
.guide-page main .container {
  width: min(1440px, calc(100% - 56px));
}

.guide-page .guide-hero {
  padding: 120px 0 92px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  background:
    linear-gradient(135deg, rgba(16, 9, 29, 0.94), rgba(93, 18, 90, 0.78)),
    radial-gradient(circle at top right, rgba(199, 125, 255, 0.2), transparent 34%),
    radial-gradient(circle at bottom left, rgba(255, 255, 255, 0.08), transparent 26%);
}

.guide-page .guide-hero__grid,
.guide-page .guide-two-column {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 42px;
  align-items: center;
}

.guide-page .guide-hero__copy {
  max-width: 860px;
}

.guide-page .guide-eyebrow,
.guide-page .guide-tag {
  display: inline-block;
  margin: 0 0 14px;
  color: #f2ccff;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 0.82rem;
  font-weight: 800;
}

.guide-page .guide-lead,
.guide-page .guide-intro p,
.guide-page .guide-card p,
.guide-page .guide-panel p,
.guide-page .guide-step p,
.guide-page .guide-tip-card p,
.guide-page .guide-zone-card p,
.guide-page .guide-cta p,
.guide-page .faq-answer p {
  color: #d8d2e4;
}

.guide-page .guide-lead {
  font-size: 1.12rem;
  line-height: 1.88;
}

.guide-page .guide-hero__actions,
.guide-page .guide-cta__actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.guide-page .guide-hero__actions {
  margin: 34px 0 30px;
}

.guide-page .guide-hero__points,
.guide-page .guide-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.guide-page .guide-hero__points {
  display: grid;
  gap: 12px;
}

.guide-page .guide-hero__points li,
.guide-page .guide-list li {
  position: relative;
  padding-left: 26px;
}

.guide-page .guide-hero__points li::before,
.guide-page .guide-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: linear-gradient(135deg, #c77dff, #9b5de5);
  box-shadow: 0 0 0 4px rgba(155, 93, 229, 0.12);
}

.guide-page .guide-list {
  display: grid;
  gap: 12px;
}

.guide-page .guide-list--warn li::before {
  background: linear-gradient(135deg, #ffcf89, #ff7b7b);
}

.guide-page .guide-hero__media img {
  width: 100%;
  min-height: 420px;
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.35);
}

.guide-page .guide-section {
  padding: 100px 0;
}

.guide-page .guide-section--alt {
  background: linear-gradient(180deg, rgba(12, 6, 20, 0.95), rgba(4, 2, 8, 1));
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.guide-page .guide-intro {
  max-width: 1120px;
  margin: 0 auto 48px;
  text-align: center;
}

.guide-page .guide-card-grid,
.guide-page .guide-steps,
.guide-page .guide-tip-grid,
.guide-page .guide-zone-grid {
  display: grid;
  gap: 28px;
  align-items: stretch;
}

.guide-page .guide-card-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: 1280px;
  margin: 0 auto;
}

.guide-page .guide-steps,
.guide-page .guide-tip-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  max-width: 1240px;
  margin: 0 auto;
}

.guide-page .guide-zone-grid {
  grid-template-columns: repeat(6, minmax(0, 1fr));
  max-width: 1360px;
  margin: 0 auto;
}

.guide-page .guide-card,
.guide-page .guide-panel,
.guide-page .guide-step,
.guide-page .guide-tip-card,
.guide-page .guide-zone-card {
  background: linear-gradient(145deg, rgba(20, 11, 32, 0.95), rgba(8, 4, 13, 0.98));
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 24px;
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.22);
  padding: 30px;
  position: relative;
  overflow: hidden;
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.guide-page .guide-card::before,
.guide-page .guide-step::before,
.guide-page .guide-tip-card::before,
.guide-page .guide-zone-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #c77dff, rgba(199, 125, 255, 0.12));
}

.guide-page .guide-card:hover,
.guide-page .guide-step:hover,
.guide-page .guide-tip-card:hover,
.guide-page .guide-zone-card:hover {
  transform: translateY(-6px);
  border-color: rgba(199, 125, 255, 0.26);
  box-shadow: 0 24px 56px rgba(0, 0, 0, 0.28);
}

.guide-page .guide-card h3,
.guide-page .guide-panel h2,
.guide-page .guide-step h3,
.guide-page .guide-tip-card h3,
.guide-page .guide-zone-card h3,
.guide-page .guide-cta h2 {
  color: #fff;
}

.guide-page .guide-card h3,
.guide-page .guide-step h3,
.guide-page .guide-tip-card h3,
.guide-page .guide-zone-card h3 {
  font-size: 1.3rem;
  line-height: 1.24;
  margin-bottom: 14px;
  letter-spacing: -0.015em;
  text-wrap: balance;
}

.guide-page .guide-card p,
.guide-page .guide-step p,
.guide-page .guide-tip-card p,
.guide-page .guide-zone-card p {
  margin: 0;
  line-height: 1.72;
}

.guide-page .guide-inline-media {
  margin-top: 24px;
}

.guide-page .guide-inline-media img {
  width: 100%;
  min-height: 260px;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 16px 42px rgba(0, 0, 0, 0.24);
}

.guide-page .guide-zone-card {
  grid-column: span 2;
  padding: 0;
  overflow: hidden;
}

.guide-page .guide-zone-grid > .guide-zone-card:nth-child(4),
.guide-page .guide-zone-grid > .guide-zone-card:nth-child(5) {
  grid-column: span 3;
}

.guide-page .guide-zone-card img {
  width: 100%;
  height: 210px;
  object-fit: cover;
  border-radius: 0;
}

.guide-page .guide-zone-card div {
  padding: 24px 24px 26px;
}

.guide-page .guide-table-wrap {
  overflow-x: auto;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(7, 4, 12, 0.92);
}

.guide-page .guide-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 760px;
}

.guide-page .guide-table th,
.guide-page .guide-table td {
  padding: 18px 20px;
  text-align: left;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  color: #ddd5e6;
}

.guide-page .guide-table th {
  color: #fff;
  background: rgba(155, 93, 229, 0.12);
  font-weight: 700;
}

.guide-page .guide-cta {
  margin-top: 52px;
  padding: 36px;
  border-radius: 28px;
  background: linear-gradient(135deg, rgba(181, 23, 158, 0.96), rgba(86, 11, 173, 0.96));
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.guide-page .guide-cta h2,
.guide-page .guide-cta p {
  color: #fff;
}

.guide-page .guide-cta p {
  max-width: 700px;
}

@media (max-width: 1200px) {
  .guide-page .guide-zone-grid {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    max-width: 100%;
  }

  .guide-page .guide-zone-card,
  .guide-page .guide-zone-grid > .guide-zone-card:nth-child(4),
  .guide-page .guide-zone-grid > .guide-zone-card:nth-child(5) {
    grid-column: auto;
  }
}

@media (max-width: 900px) {
  .guide-page main .container {
    width: min(100%, calc(100% - 40px));
  }

  .guide-page .guide-hero__grid,
  .guide-page .guide-two-column,
  .guide-page .guide-card-grid,
  .guide-page .guide-steps,
  .guide-page .guide-tip-grid {
    grid-template-columns: 1fr;
  }

  .guide-page .guide-cta {
    display: grid;
  }

  .guide-page .guide-hero {
    padding: 90px 0 70px;
  }
}

@media (max-width: 640px) {
  .guide-page main .container {
    width: min(100%, calc(100% - 24px));
  }

  .guide-page .guide-section {
    padding: 72px 0;
  }

  .guide-page .guide-zone-grid {
    grid-template-columns: 1fr;
  }

  .guide-page .guide-card,
  .guide-page .guide-panel,
  .guide-page .guide-step,
  .guide-page .guide-tip-card,
  .guide-page .guide-zone-card,
  .guide-page .guide-cta {
    padding: 24px;
  }

  .guide-page .guide-hero__media img {
    min-height: 280px;
  }
}

/* nightlife.html only */
.nightlife-page main .container {
  width: min(1440px, calc(100% - 56px));
}

.nightlife-page .night-hero {
  padding: 120px 0 92px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  background:
    linear-gradient(135deg, rgba(15, 8, 26, 0.95), rgba(114, 23, 89, 0.78)),
    radial-gradient(circle at top left, rgba(199, 125, 255, 0.18), transparent 34%),
    radial-gradient(circle at bottom right, rgba(255, 255, 255, 0.08), transparent 24%);
}

.nightlife-page .night-hero__grid,
.nightlife-page .night-two-column {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 42px;
  align-items: center;
}

.nightlife-page .night-hero__copy {
  max-width: 860px;
}

.nightlife-page .night-eyebrow,
.nightlife-page .night-tag {
  display: inline-block;
  margin: 0 0 14px;
  color: #f2ccff;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 0.82rem;
  font-weight: 800;
}

.nightlife-page .night-lead,
.nightlife-page .night-intro p,
.nightlife-page .night-card p,
.nightlife-page .night-panel p,
.nightlife-page .night-step p,
.nightlife-page .night-zone-card p,
.nightlife-page .night-cta p,
.nightlife-page .faq-answer p {
  color: #d8d2e4;
}

.nightlife-page .night-lead {
  font-size: 1.12rem;
  line-height: 1.88;
}

.nightlife-page .night-hero__actions,
.nightlife-page .night-cta__actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.nightlife-page .night-hero__actions {
  margin: 34px 0 30px;
}

.nightlife-page .night-hero__points,
.nightlife-page .night-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.nightlife-page .night-hero__points {
  display: grid;
  gap: 12px;
}

.nightlife-page .night-hero__points li,
.nightlife-page .night-list li {
  position: relative;
  padding-left: 26px;
}

.nightlife-page .night-hero__points li::before,
.nightlife-page .night-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: linear-gradient(135deg, #c77dff, #9b5de5);
  box-shadow: 0 0 0 4px rgba(155, 93, 229, 0.12);
}

.nightlife-page .night-list {
  display: grid;
  gap: 12px;
}

.nightlife-page .night-list--warn li::before {
  background: linear-gradient(135deg, #ffcf89, #ff7b7b);
}

.nightlife-page .night-hero__media img {
  width: 100%;
  min-height: 420px;
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.35);
}

.nightlife-page .night-section {
  padding: 100px 0;
}

.nightlife-page .night-section--alt {
  background: linear-gradient(180deg, rgba(12, 6, 20, 0.95), rgba(4, 2, 8, 1));
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.nightlife-page .night-intro {
  max-width: 1120px;
  margin: 0 auto 48px;
  text-align: center;
}

.nightlife-page .night-card-grid,
.nightlife-page .night-steps,
.nightlife-page .night-zone-grid {
  display: grid;
  gap: 28px;
  align-items: stretch;
}

.nightlife-page .night-card-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
  max-width: 1360px;
  margin: 0 auto;
}

.nightlife-page .night-steps {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  max-width: 1300px;
  margin: 0 auto;
}

.nightlife-page .night-zone-grid {
  grid-template-columns: repeat(6, minmax(0, 1fr));
  max-width: 1360px;
  margin: 0 auto;
}

.nightlife-page .night-card,
.nightlife-page .night-panel,
.nightlife-page .night-step,
.nightlife-page .night-zone-card {
  background: linear-gradient(145deg, rgba(20, 11, 32, 0.95), rgba(8, 4, 13, 0.98));
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 24px;
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.22);
  padding: 30px;
  position: relative;
  overflow: hidden;
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.nightlife-page .night-card::before,
.nightlife-page .night-step::before,
.nightlife-page .night-zone-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #c77dff, rgba(199, 125, 255, 0.12));
}

.nightlife-page .night-card:hover,
.nightlife-page .night-step:hover,
.nightlife-page .night-zone-card:hover {
  transform: translateY(-6px);
  border-color: rgba(199, 125, 255, 0.26);
  box-shadow: 0 24px 56px rgba(0, 0, 0, 0.28);
}

.nightlife-page .night-card h3,
.nightlife-page .night-panel h2,
.nightlife-page .night-step h3,
.nightlife-page .night-zone-card h3,
.nightlife-page .night-cta h2 {
  color: #fff;
}

.nightlife-page .night-card h3,
.nightlife-page .night-step h3,
.nightlife-page .night-zone-card h3 {
  font-size: 1.28rem;
  line-height: 1.24;
  margin-bottom: 14px;
  letter-spacing: -0.015em;
  text-wrap: balance;
}

.nightlife-page .night-card p,
.nightlife-page .night-step p,
.nightlife-page .night-zone-card p {
  margin: 0;
  line-height: 1.72;
}

.nightlife-page .night-zone-card {
  grid-column: span 2;
  padding: 0;
}

.nightlife-page .night-zone-grid > .night-zone-card:nth-child(4),
.nightlife-page .night-zone-grid > .night-zone-card:nth-child(5) {
  grid-column: span 3;
}

.nightlife-page .night-zone-card img {
  width: 100%;
  height: 210px;
  object-fit: cover;
  border-radius: 0;
}

.nightlife-page .night-zone-card div {
  padding: 24px 24px 26px;
}

.nightlife-page .night-inline-media {
  margin-top: 24px;
}

.nightlife-page .night-inline-media img {
  width: 100%;
  min-height: 260px;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 16px 42px rgba(0, 0, 0, 0.24);
}

.nightlife-page .night-table-wrap {
  overflow-x: auto;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(7, 4, 12, 0.92);
}

.nightlife-page .night-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 760px;
}

.nightlife-page .night-table th,
.nightlife-page .night-table td {
  padding: 18px 20px;
  text-align: left;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  color: #ddd5e6;
}

.nightlife-page .night-table th {
  color: #fff;
  background: rgba(155, 93, 229, 0.12);
  font-weight: 700;
}

.nightlife-page .night-cta {
  margin-top: 52px;
  padding: 36px;
  border-radius: 28px;
  background: linear-gradient(135deg, rgba(181, 23, 158, 0.96), rgba(86, 11, 173, 0.96));
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.nightlife-page .night-cta h2,
.nightlife-page .night-cta p {
  color: #fff;
}

.nightlife-page .night-cta p {
  max-width: 700px;
}

@media (max-width: 1200px) {
  .nightlife-page .night-card-grid {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    max-width: 100%;
  }

  .nightlife-page .night-steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-width: 100%;
  }

  .nightlife-page .night-zone-grid {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    max-width: 100%;
  }

  .nightlife-page .night-zone-card,
  .nightlife-page .night-zone-grid > .night-zone-card:nth-child(4),
  .nightlife-page .night-zone-grid > .night-zone-card:nth-child(5) {
    grid-column: auto;
  }
}

@media (max-width: 900px) {
  .nightlife-page main .container {
    width: min(100%, calc(100% - 40px));
  }

  .nightlife-page .night-hero__grid,
  .nightlife-page .night-two-column {
    grid-template-columns: 1fr;
  }

  .nightlife-page .night-cta {
    display: grid;
  }

  .nightlife-page .night-hero {
    padding: 90px 0 70px;
  }
}

@media (max-width: 640px) {
  .nightlife-page main .container {
    width: min(100%, calc(100% - 24px));
  }

  .nightlife-page .night-section {
    padding: 72px 0;
  }

  .nightlife-page .night-card-grid,
  .nightlife-page .night-steps,
  .nightlife-page .night-zone-grid {
    grid-template-columns: 1fr;
  }

  .nightlife-page .night-card,
  .nightlife-page .night-panel,
  .nightlife-page .night-step,
  .nightlife-page .night-zone-card,
  .nightlife-page .night-cta {
    padding: 24px;
  }

  .nightlife-page .night-zone-card {
    padding: 0;
  }

  .nightlife-page .night-hero__media img {
    min-height: 280px;
  }
}

/* sugar-mommy-profiles.html only */
.profiles-page main .container {
  width: min(1440px, calc(100% - 56px));
}

.profiles-page .profiles-hero {
  padding: 120px 0 92px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  background:
    linear-gradient(135deg, rgba(16, 9, 29, 0.94), rgba(96, 22, 86, 0.78)),
    radial-gradient(circle at top right, rgba(199, 125, 255, 0.18), transparent 34%),
    radial-gradient(circle at bottom left, rgba(255, 255, 255, 0.08), transparent 24%);
}

.profiles-page .profiles-hero__grid,
.profiles-page .profiles-two-column {
  display: grid;
  grid-template-columns: 1fr;
  gap: 42px;
  align-items: center;
}

.profiles-page .profiles-hero__grid {
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr);
  gap: 56px;
}

.profiles-page .profiles-hero__copy {
  max-width: 760px;
}

.profiles-page .profiles-eyebrow,
.profiles-page .profiles-tag {
  display: inline-block;
  margin: 0 0 14px;
  color: #f2ccff;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 0.82rem;
  font-weight: 800;
}

.profiles-page .profiles-lead,
.profiles-page .profiles-intro p,
.profiles-page .profiles-card p,
.profiles-page .profiles-panel p,
.profiles-page .profiles-step p,
.profiles-page .profiles-zone-card p,
.profiles-page .profiles-feature p,
.profiles-page .profiles-cta p,
.profiles-page .faq-answer p {
  color: #d8d2e4;
}

.profiles-page .profiles-lead {
  font-size: 1.12rem;
  line-height: 1.88;
}

.profiles-page .profiles-hero__actions,
.profiles-page .profiles-cta__actions {
  display: flex;
  gap: 14px;
  flex-wrap: nowrap;
}

.profiles-page .profiles-hero__actions {
  margin: 34px 0 30px;
}

.profiles-page .profiles-hero__points,
.profiles-page .profiles-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.profiles-page .profiles-hero__points {
  display: grid;
  gap: 12px;
}

.profiles-page .profiles-hero__points li,
.profiles-page .profiles-list li {
  position: relative;
  padding-left: 26px;
}

.profiles-page .profiles-hero__points li::before,
.profiles-page .profiles-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: linear-gradient(135deg, #c77dff, #9b5de5);
  box-shadow: 0 0 0 4px rgba(155, 93, 229, 0.12);
}

.profiles-page .profiles-list {
  display: grid;
  gap: 12px;
}

.profiles-page .profiles-list--warn li::before {
  background: linear-gradient(135deg, #ffcf89, #ff7b7b);
}

.profiles-page .profiles-hero__media img {
  width: 100%;
  min-height: 560px;
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.35);
}

.profiles-page .profiles-section {
  padding: 100px 0;
}

.profiles-page .profiles-section--alt {
  background: linear-gradient(180deg, rgba(12, 6, 20, 0.95), rgba(4, 2, 8, 1));
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.profiles-page .profiles-intro {
  max-width: 1120px;
  margin: 0 auto 48px;
  text-align: center;
}

.profiles-page .profiles-card-grid,
.profiles-page .profiles-steps,
.profiles-page .profiles-zone-grid,
.profiles-page .profiles-feature-grid {
  display: grid;
  gap: 28px;
  align-items: stretch;
}

.profiles-page .profiles-card-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: 1180px;
  margin: 0 auto;
}

.profiles-page .profiles-steps {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: 1180px;
  margin: 0 auto;
}

.profiles-page .profiles-zone-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: 1180px;
  margin: 0 auto;
}

.profiles-page .profiles-feature-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: 1280px;
  margin: 0 auto;
}

.profiles-page .profiles-card,
.profiles-page .profiles-panel,
.profiles-page .profiles-step,
.profiles-page .profiles-zone-card,
.profiles-page .profiles-feature {
  background: linear-gradient(145deg, rgba(20, 11, 32, 0.95), rgba(8, 4, 13, 0.98));
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 24px;
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.22);
  padding: 30px;
  position: relative;
  overflow: hidden;
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.profiles-page .profiles-card::before,
.profiles-page .profiles-step::before,
.profiles-page .profiles-zone-card::before,
.profiles-page .profiles-feature::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #c77dff, rgba(199, 125, 255, 0.12));
}

.profiles-page .profiles-card:hover,
.profiles-page .profiles-step:hover,
.profiles-page .profiles-zone-card:hover,
.profiles-page .profiles-feature:hover {
  transform: translateY(-6px);
  border-color: rgba(199, 125, 255, 0.26);
  box-shadow: 0 24px 56px rgba(0, 0, 0, 0.28);
}

.profiles-page .profiles-card h3,
.profiles-page .profiles-panel h2,
.profiles-page .profiles-step h3,
.profiles-page .profiles-zone-card h3,
.profiles-page .profiles-feature h3,
.profiles-page .profiles-cta h2 {
  color: #fff;
}

.profiles-page .profiles-card h3,
.profiles-page .profiles-step h3,
.profiles-page .profiles-zone-card h3,
.profiles-page .profiles-feature h3 {
  font-size: 1.28rem;
  line-height: 1.24;
  margin-bottom: 14px;
  letter-spacing: -0.015em;
  text-wrap: balance;
}

.profiles-page .profiles-card p,
.profiles-page .profiles-step p,
.profiles-page .profiles-zone-card p,
.profiles-page .profiles-feature p {
  margin: 0;
  line-height: 1.72;
}

.profiles-page .profiles-feature {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 0;
  align-items: center;
  padding: 0;
  min-height: 320px;
}

.profiles-page .profiles-feature img {
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
  border-radius: 0;
}

.profiles-page .profiles-feature div {
  padding: 34px 36px;
}

.profiles-page .profiles-feature--card {
  display: block;
  min-height: 100%;
  padding: 0;
  border-radius: 28px;
  overflow: hidden;
}

.profiles-page .profiles-feature--card img {
  width: 100%;
  aspect-ratio: 1 / 1.05;
  min-height: 0;
  height: auto;
  border-radius: 0;
}

.profiles-page .profiles-feature--card div {
  padding: 24px 24px 26px;
}

.profiles-page .profiles-feature__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 10px;
}

.profiles-page .profiles-feature--card h3 {
  margin: 0;
  font-size: 1.3rem;
}

.profiles-page .profiles-feature__meta {
  margin: 0 0 14px !important;
  color: #d9bdf5;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.01em;
}

.profiles-page .profiles-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(199, 125, 255, 0.16);
  border: 1px solid rgba(199, 125, 255, 0.28);
  color: #f3d8ff;
  font-size: 0.74rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  white-space: nowrap;
}

.profiles-page .profiles-panel {
  max-width: 1080px;
  margin: 0 auto;
}

.profiles-page .profiles-panel--reading {
  padding: 38px 40px;
}

.profiles-page .profiles-section--featured .profiles-intro {
  max-width: 980px;
}

.profiles-page .profiles-hero__actions .button,
.profiles-page .profiles-cta__actions .button {
  min-width: 220px;
}

.profiles-page .profiles-table-wrap {
  overflow-x: auto;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(7, 4, 12, 0.92);
}

.profiles-page .profiles-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 760px;
}

.profiles-page .profiles-table th,
.profiles-page .profiles-table td {
  padding: 18px 20px;
  text-align: left;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  color: #ddd5e6;
}

.profiles-page .profiles-table th {
  color: #fff;
  background: rgba(155, 93, 229, 0.12);
  font-weight: 700;
}

.profiles-page .profiles-cta {
  margin-top: 52px;
  padding: 36px;
  border-radius: 28px;
  background: linear-gradient(135deg, rgba(181, 23, 158, 0.96), rgba(86, 11, 173, 0.96));
  display: block;
  text-align: center;
  gap: 24px;
}

.profiles-page .profiles-cta h2,
.profiles-page .profiles-cta p {
  color: #fff;
}

.profiles-page .profiles-cta p {
  max-width: 700px;
}

@media (max-width: 1200px) {
  .profiles-page .profiles-card-grid {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    max-width: 100%;
  }

  .profiles-page .profiles-steps {
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    max-width: 100%;
  }

  .profiles-page .profiles-zone-grid {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    max-width: 100%;
  }

  .profiles-page .profiles-feature-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-width: 100%;
  }

  .profiles-page .profiles-feature {
    grid-template-columns: 280px 1fr;
  }
}

@media (max-width: 900px) {
  .profiles-page main .container {
    width: min(100%, calc(100% - 40px));
  }

  .profiles-page .profiles-hero__grid,
  .profiles-page .profiles-two-column {
    grid-template-columns: 1fr;
  }

  .profiles-page .profiles-cta {
    display: grid;
  }

  .profiles-page .profiles-hero__actions,
  .profiles-page .profiles-cta__actions {
    flex-wrap: wrap;
  }

  .profiles-page .profiles-hero {
    padding: 90px 0 70px;
  }

  .profiles-page .profiles-hero__media {
    order: 2;
  }
}

@media (max-width: 640px) {
  .profiles-page main .container {
    width: min(100%, calc(100% - 24px));
  }

  .profiles-page .profiles-section {
    padding: 72px 0;
  }

  .profiles-page .profiles-card-grid,
  .profiles-page .profiles-steps,
  .profiles-page .profiles-zone-grid,
  .profiles-page .profiles-feature-grid {
    grid-template-columns: 1fr;
  }

  .profiles-page .profiles-card,
  .profiles-page .profiles-panel,
  .profiles-page .profiles-step,
  .profiles-page .profiles-zone-card,
  .profiles-page .profiles-feature,
  .profiles-page .profiles-cta {
    padding: 24px;
  }

  .profiles-page .profiles-feature {
    grid-template-columns: 1fr;
    padding: 0;
  }

  .profiles-page .profiles-feature div {
    padding: 24px;
  }

  .profiles-page .profiles-panel--reading {
    padding: 24px;
  }

  .profiles-page .profiles-hero__media img {
    min-height: 280px;
  }
}

/* about.html only */
.about-page main .container {
  width: min(1380px, calc(100% - 56px));
}

.about-page .about-hero {
  padding: 118px 0 92px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  background:
    linear-gradient(135deg, rgba(18, 10, 31, 0.95), rgba(89, 26, 92, 0.82)),
    radial-gradient(circle at top left, rgba(199, 125, 255, 0.22), transparent 34%),
    radial-gradient(circle at bottom right, rgba(255, 255, 255, 0.08), transparent 24%);
}

.about-page .about-hero__grid,
.about-page .about-two-column {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 42px;
  align-items: center;
}

.about-page .about-hero__grid {
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr);
  gap: 56px;
}

.about-page .about-eyebrow,
.about-page .about-tag {
  display: inline-block;
  margin: 0 0 14px;
  color: #f2ccff;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 0.82rem;
  font-weight: 800;
}

.about-page .about-lead,
.about-page .about-intro p,
.about-page .about-card p,
.about-page .about-panel p,
.about-page .about-audience p,
.about-page .about-step p,
.about-page .about-feature p,
.about-page .about-link-card p,
.about-page .about-cta p,
.about-page .faq-answer p,
.about-page .about-media-card p {
  color: #d8d2e4;
}

.about-page .about-lead {
  font-size: 1.12rem;
  line-height: 1.86;
}

.about-page .about-hero__actions,
.about-page .about-cta__actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.about-page .about-hero__actions {
  margin: 34px 0 30px;
}

.about-page .about-hero__points,
.about-page .about-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.about-page .about-hero__points {
  display: grid;
  gap: 12px;
}

.about-page .about-hero__points li,
.about-page .about-list li {
  position: relative;
  padding-left: 26px;
}

.about-page .about-hero__points li::before,
.about-page .about-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: linear-gradient(135deg, #c77dff, #9b5de5);
  box-shadow: 0 0 0 4px rgba(155, 93, 229, 0.12);
}

.about-page .about-list {
  display: grid;
  gap: 12px;
}

.about-page .about-hero__media img {
  width: 100%;
  min-height: 500px;
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.35);
}

.about-page .about-section {
  padding: 100px 0;
}

.about-page .about-section--alt {
  background: linear-gradient(180deg, rgba(12, 6, 20, 0.95), rgba(4, 2, 8, 1));
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.about-page .about-intro {
  max-width: 1100px;
  margin: 0 auto 48px;
}

.about-page .about-intro--center {
  text-align: center;
}

.about-page .about-card-grid,
.about-page .about-audience-grid,
.about-page .about-links-grid,
.about-page .about-steps,
.about-page .about-feature-stack {
  display: grid;
  gap: 28px;
}

.about-page .about-card-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
  max-width: 1320px;
  margin: 0 auto;
}

.about-page .about-audience-grid,
.about-page .about-links-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.about-page .about-steps {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 28px;
}

.about-page .about-feature-stack {
  margin-top: 24px;
}

.about-page .about-card,
.about-page .about-panel,
.about-page .about-audience,
.about-page .about-step,
.about-page .about-feature,
.about-page .about-link-card,
.about-page .about-media-card {
  background: linear-gradient(145deg, rgba(20, 11, 32, 0.95), rgba(8, 4, 13, 0.98));
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 24px;
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.22);
  padding: 30px;
  position: relative;
  overflow: hidden;
}

.about-page .about-card::before,
.about-page .about-step::before,
.about-page .about-feature::before,
.about-page .about-link-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #c77dff, rgba(199, 125, 255, 0.12));
}

.about-page .about-card h3,
.about-page .about-panel h2,
.about-page .about-audience h3,
.about-page .about-step h3,
.about-page .about-feature h3,
.about-page .about-link-card h3,
.about-page .about-media-card h3,
.about-page .about-cta h2 {
  color: #fff;
}

.about-page .about-card h3,
.about-page .about-audience h3,
.about-page .about-step h3,
.about-page .about-feature h3,
.about-page .about-link-card h3 {
  font-size: 1.24rem;
  line-height: 1.24;
  margin-bottom: 14px;
  letter-spacing: -0.015em;
  text-wrap: balance;
}

.about-page .about-media-card {
  padding: 0;
}

.about-page .about-media-card img {
  width: 100%;
  min-height: 260px;
  border-radius: 0;
}

.about-page .about-media-card div {
  padding: 24px 26px 28px;
}

.about-page .about-table-wrap {
  overflow-x: auto;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(7, 4, 12, 0.92);
}

.about-page .about-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 760px;
}

.about-page .about-table th,
.about-page .about-table td {
  padding: 18px 20px;
  text-align: left;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  color: #ddd5e6;
}

.about-page .about-table th {
  color: #fff;
  background: rgba(155, 93, 229, 0.12);
  font-weight: 700;
}

.about-page .about-cta {
  margin-top: 52px;
  padding: 36px;
  border-radius: 28px;
  background: linear-gradient(135deg, rgba(181, 23, 158, 0.96), rgba(86, 11, 173, 0.96));
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.about-page .about-cta h2,
.about-page .about-cta p {
  color: #fff;
}

.about-page .about-cta p {
  max-width: 700px;
}

@media (max-width: 1200px) {
  .about-page .about-card-grid {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    max-width: 100%;
  }

  .about-page .about-audience-grid,
  .about-page .about-links-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  .about-page main .container {
    width: min(100%, calc(100% - 40px));
  }

  .about-page .about-hero__grid,
  .about-page .about-two-column,
  .about-page .about-audience-grid,
  .about-page .about-links-grid,
  .about-page .about-steps {
    grid-template-columns: 1fr;
  }

  .about-page .about-cta {
    display: grid;
  }

  .about-page .about-hero {
    padding: 90px 0 70px;
  }

  .about-page .about-hero__media {
    order: 2;
  }
}

@media (max-width: 640px) {
  .about-page main .container {
    width: min(100%, calc(100% - 24px));
  }

  .about-page .about-section {
    padding: 72px 0;
  }

  .about-page .about-card-grid {
    grid-template-columns: 1fr;
  }

  .about-page .about-card,
  .about-page .about-panel,
  .about-page .about-audience,
  .about-page .about-step,
  .about-page .about-feature,
  .about-page .about-link-card,
  .about-page .about-cta {
    padding: 24px;
  }

  .about-page .about-hero__media img {
    min-height: 280px;
  }
}

/* safety.html only */
.safety-page main .container {
  width: min(1380px, calc(100% - 56px));
}

.safety-page .safety-hero {
  padding: 118px 0 92px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  background:
    linear-gradient(135deg, rgba(14, 9, 22, 0.96), rgba(63, 33, 82, 0.82)),
    radial-gradient(circle at top right, rgba(199, 125, 255, 0.18), transparent 34%),
    radial-gradient(circle at bottom left, rgba(255, 255, 255, 0.08), transparent 24%);
}

.safety-page .safety-hero__grid,
.safety-page .safety-two-column {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 42px;
  align-items: center;
}

.safety-page .safety-hero__grid {
  grid-template-columns: minmax(0, 1.02fr) minmax(360px, 0.98fr);
  gap: 56px;
}

.safety-page .safety-eyebrow,
.safety-page .safety-tag {
  display: inline-block;
  margin: 0 0 14px;
  color: #f2ccff;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 0.82rem;
  font-weight: 800;
}

.safety-page .safety-lead,
.safety-page .safety-intro p,
.safety-page .safety-card p,
.safety-page .safety-panel p,
.safety-page .safety-step p,
.safety-page .safety-place p,
.safety-page .safety-alert p,
.safety-page .safety-cta p,
.safety-page .faq-answer p {
  color: #d8d2e4;
}

.safety-page .safety-lead {
  font-size: 1.12rem;
  line-height: 1.88;
}

.safety-page .safety-hero__actions,
.safety-page .safety-cta__actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.safety-page .safety-hero__actions {
  margin: 34px 0 30px;
}

.safety-page .safety-hero__points,
.safety-page .safety-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.safety-page .safety-hero__points {
  display: grid;
  gap: 12px;
}

.safety-page .safety-hero__points li,
.safety-page .safety-list li {
  position: relative;
  padding-left: 26px;
}

.safety-page .safety-hero__points li::before,
.safety-page .safety-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: linear-gradient(135deg, #c77dff, #9b5de5);
  box-shadow: 0 0 0 4px rgba(155, 93, 229, 0.12);
}

.safety-page .safety-list {
  display: grid;
  gap: 12px;
}

.safety-page .safety-list--warn li::before {
  background: linear-gradient(135deg, #ffcf89, #ff7b7b);
}

.safety-page .safety-hero__media img {
  width: 100%;
  min-height: 500px;
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.35);
}

.safety-page .safety-section {
  padding: 100px 0;
}

.safety-page .safety-section--alt {
  background: linear-gradient(180deg, rgba(12, 6, 20, 0.95), rgba(4, 2, 8, 1));
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.safety-page .safety-intro {
  max-width: 1100px;
  margin: 0 auto 48px;
}

.safety-page .safety-intro--center {
  text-align: center;
}

.safety-page .safety-card-grid,
.safety-page .safety-step-grid,
.safety-page .safety-place-grid,
.safety-page .safety-alert-grid {
  display: grid;
  gap: 28px;
}

.safety-page .safety-card-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  max-width: 1320px;
  margin: 0 auto;
}

.safety-page .safety-step-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.safety-page .safety-place-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.safety-page .safety-alert-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 24px;
}

.safety-page .safety-card,
.safety-page .safety-panel,
.safety-page .safety-step,
.safety-page .safety-place,
.safety-page .safety-alert {
  background: linear-gradient(145deg, rgba(20, 11, 32, 0.95), rgba(8, 4, 13, 0.98));
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 24px;
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.22);
  padding: 30px;
  position: relative;
  overflow: hidden;
}

.safety-page .safety-card::before,
.safety-page .safety-step::before,
.safety-page .safety-place::before,
.safety-page .safety-alert::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #c77dff, rgba(199, 125, 255, 0.12));
}

.safety-page .safety-card h3,
.safety-page .safety-panel h2,
.safety-page .safety-step h3,
.safety-page .safety-place h3,
.safety-page .safety-alert h3,
.safety-page .safety-cta h2 {
  color: #fff;
}

.safety-page .safety-card h3,
.safety-page .safety-step h3,
.safety-page .safety-place h3,
.safety-page .safety-alert h3 {
  font-size: 1.24rem;
  line-height: 1.24;
  margin-bottom: 14px;
  letter-spacing: -0.015em;
  text-wrap: balance;
}

.safety-page .safety-place {
  padding: 0;
}

.safety-page .safety-place img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 0;
}

.safety-page .safety-place div {
  padding: 24px 24px 26px;
}

.safety-page .safety-cta {
  margin-top: 52px;
  padding: 36px;
  border-radius: 28px;
  background: linear-gradient(135deg, rgba(181, 23, 158, 0.96), rgba(86, 11, 173, 0.96));
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.safety-page .safety-cta h2,
.safety-page .safety-cta p {
  color: #fff;
}

.safety-page .safety-cta p {
  max-width: 700px;
}

@media (max-width: 1200px) {
  .safety-page .safety-card-grid,
  .safety-page .safety-step-grid,
  .safety-page .safety-place-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  .safety-page main .container {
    width: min(100%, calc(100% - 40px));
  }

  .safety-page .safety-hero__grid,
  .safety-page .safety-two-column,
  .safety-page .safety-alert-grid {
    grid-template-columns: 1fr;
  }

  .safety-page .safety-cta {
    display: grid;
  }

  .safety-page .safety-hero {
    padding: 90px 0 70px;
  }

  .safety-page .safety-hero__media {
    order: 2;
  }
}

@media (max-width: 640px) {
  .safety-page main .container {
    width: min(100%, calc(100% - 24px));
  }

  .safety-page .safety-section {
    padding: 72px 0;
  }

  .safety-page .safety-card-grid,
  .safety-page .safety-step-grid,
  .safety-page .safety-place-grid {
    grid-template-columns: 1fr;
  }

  .safety-page .safety-card,
  .safety-page .safety-panel,
  .safety-page .safety-step,
  .safety-page .safety-alert,
  .safety-page .safety-cta {
    padding: 24px;
  }

  .safety-page .safety-place {
    padding: 0;
  }

  .safety-page .safety-hero__media img {
    min-height: 280px;
  }
}

/* privacy.html only */
.privacy-page main .container,
.terms-page main .container,
.contact-page main .container {
  width: min(1380px, calc(100% - 56px));
}

.privacy-page .privacy-hero,
.terms-page .terms-hero,
.contact-page .contact-hero {
  padding: 118px 0 92px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.privacy-page .privacy-hero {
  background:
    linear-gradient(135deg, rgba(16, 12, 28, 0.95), rgba(56, 35, 78, 0.82)),
    radial-gradient(circle at top left, rgba(199, 125, 255, 0.18), transparent 34%),
    radial-gradient(circle at bottom right, rgba(255, 255, 255, 0.08), transparent 24%);
}

.terms-page .terms-hero {
  background:
    linear-gradient(135deg, rgba(21, 11, 25, 0.95), rgba(91, 34, 64, 0.82)),
    radial-gradient(circle at top right, rgba(199, 125, 255, 0.18), transparent 34%),
    radial-gradient(circle at bottom left, rgba(255, 255, 255, 0.08), transparent 24%);
}

.contact-page .contact-hero {
  background:
    linear-gradient(135deg, rgba(14, 10, 24, 0.95), rgba(48, 37, 86, 0.82)),
    radial-gradient(circle at top left, rgba(199, 125, 255, 0.18), transparent 34%),
    radial-gradient(circle at bottom right, rgba(255, 255, 255, 0.08), transparent 24%);
}

.privacy-page .privacy-hero__grid,
.privacy-page .privacy-two-column,
.terms-page .terms-hero__grid,
.terms-page .terms-two-column,
.contact-page .contact-hero__grid,
.contact-page .contact-two-column {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 42px;
  align-items: center;
}

.privacy-page .privacy-hero__grid,
.terms-page .terms-hero__grid,
.contact-page .contact-hero__grid {
  grid-template-columns: minmax(0, 1.02fr) minmax(360px, 0.98fr);
  gap: 56px;
}

.privacy-page .privacy-eyebrow,
.privacy-page .privacy-tag,
.terms-page .terms-eyebrow,
.terms-page .terms-tag,
.contact-page .contact-eyebrow,
.contact-page .contact-tag {
  display: inline-block;
  margin: 0 0 14px;
  color: #f2ccff;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 0.82rem;
  font-weight: 800;
}

.privacy-page .privacy-lead,
.privacy-page .privacy-intro p,
.privacy-page .privacy-card p,
.privacy-page .privacy-panel p,
.privacy-page .privacy-cta p,
.terms-page .terms-lead,
.terms-page .terms-intro p,
.terms-page .terms-panel p,
.terms-page .terms-cta p,
.contact-page .contact-lead,
.contact-page .contact-intro p,
.contact-page .contact-card p,
.contact-page .contact-panel p,
.contact-page .contact-cta p,
.privacy-page .faq-answer p,
.terms-page .faq-answer p,
.contact-page .faq-answer p {
  color: #d8d2e4;
}

.privacy-page .privacy-lead,
.terms-page .terms-lead,
.contact-page .contact-lead {
  font-size: 1.12rem;
  line-height: 1.88;
}

.privacy-page .privacy-hero__actions,
.privacy-page .privacy-cta__actions,
.terms-page .terms-hero__actions,
.terms-page .terms-cta__actions,
.contact-page .contact-hero__actions,
.contact-page .contact-cta__actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.privacy-page .privacy-hero__actions,
.terms-page .terms-hero__actions,
.contact-page .contact-hero__actions {
  margin: 34px 0 30px;
}

.privacy-page .privacy-hero__points,
.privacy-page .privacy-list,
.terms-page .terms-hero__points,
.terms-page .terms-list,
.contact-page .contact-hero__points,
.contact-page .contact-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.privacy-page .privacy-hero__points,
.terms-page .terms-hero__points,
.contact-page .contact-hero__points {
  display: grid;
  gap: 12px;
}

.privacy-page .privacy-hero__points li,
.privacy-page .privacy-list li,
.terms-page .terms-hero__points li,
.terms-page .terms-list li,
.contact-page .contact-hero__points li,
.contact-page .contact-list li {
  position: relative;
  padding-left: 26px;
}

.privacy-page .privacy-hero__points li::before,
.privacy-page .privacy-list li::before,
.terms-page .terms-hero__points li::before,
.terms-page .terms-list li::before,
.contact-page .contact-hero__points li::before,
.contact-page .contact-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: linear-gradient(135deg, #c77dff, #9b5de5);
  box-shadow: 0 0 0 4px rgba(155, 93, 229, 0.12);
}

.terms-page .terms-list--warn li::before {
  background: linear-gradient(135deg, #ffcf89, #ff7b7b);
}

.privacy-page .privacy-hero__media img,
.terms-page .terms-hero__media img,
.contact-page .contact-hero__media img {
  width: 100%;
  min-height: 500px;
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.35);
}

.privacy-page .privacy-section,
.terms-page .terms-section,
.contact-page .contact-section {
  padding: 100px 0;
}

.privacy-page .privacy-section--alt,
.terms-page .terms-section--alt,
.contact-page .contact-section--alt {
  background: linear-gradient(180deg, rgba(12, 6, 20, 0.95), rgba(4, 2, 8, 1));
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.privacy-page .privacy-intro,
.terms-page .terms-intro,
.contact-page .contact-intro {
  max-width: 1100px;
  margin: 0 auto 48px;
}

.privacy-page .privacy-intro--center,
.terms-page .terms-intro--center,
.contact-page .contact-intro--center {
  text-align: center;
}

.privacy-page .privacy-narrow,
.terms-page .terms-narrow,
.contact-page .contact-narrow {
  max-width: 1040px;
}

.privacy-page .privacy-card-grid,
.terms-page .terms-table-wrap,
.contact-page .contact-card-grid {
  margin-top: 28px;
}

.privacy-page .privacy-card-grid,
.contact-page .contact-card-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 28px;
}

.privacy-page .privacy-card,
.privacy-page .privacy-panel,
.terms-page .terms-panel,
.contact-page .contact-card,
.contact-page .contact-panel,
.contact-page .contact-callout {
  background: linear-gradient(145deg, rgba(20, 11, 32, 0.95), rgba(8, 4, 13, 0.98));
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 24px;
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.22);
  padding: 30px;
  position: relative;
  overflow: hidden;
}

.privacy-page .privacy-card::before,
.terms-page .terms-panel::before,
.contact-page .contact-card::before,
.contact-page .contact-callout::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #c77dff, rgba(199, 125, 255, 0.12));
}

.privacy-page .privacy-card h3,
.privacy-page .privacy-panel h2,
.privacy-page .privacy-cta h2,
.terms-page .terms-panel h2,
.terms-page .terms-cta h2,
.contact-page .contact-card h3,
.contact-page .contact-panel h2,
.contact-page .contact-callout h3,
.contact-page .contact-cta h2 {
  color: #fff;
}

.privacy-page .privacy-card h3,
.contact-page .contact-card h3,
.contact-page .contact-callout h3 {
  font-size: 1.24rem;
  line-height: 1.24;
  margin-bottom: 14px;
  letter-spacing: -0.015em;
  text-wrap: balance;
}

.privacy-page .privacy-table-wrap,
.terms-page .terms-table-wrap,
.contact-page .contact-table-wrap {
  overflow-x: auto;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(7, 4, 12, 0.92);
}

.privacy-page .privacy-table,
.terms-page .terms-table,
.contact-page .contact-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 760px;
}

.privacy-page .privacy-table th,
.privacy-page .privacy-table td,
.terms-page .terms-table th,
.terms-page .terms-table td,
.contact-page .contact-table th,
.contact-page .contact-table td {
  padding: 18px 20px;
  text-align: left;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  color: #ddd5e6;
}

.privacy-page .privacy-table th,
.terms-page .terms-table th,
.contact-page .contact-table th {
  color: #fff;
  background: rgba(155, 93, 229, 0.12);
  font-weight: 700;
}

.privacy-page .privacy-cta,
.terms-page .terms-cta,
.contact-page .contact-cta {
  margin-top: 52px;
  padding: 36px;
  border-radius: 28px;
  background: linear-gradient(135deg, rgba(181, 23, 158, 0.96), rgba(86, 11, 173, 0.96));
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.privacy-page .privacy-cta h2,
.privacy-page .privacy-cta p,
.terms-page .terms-cta h2,
.terms-page .terms-cta p,
.contact-page .contact-cta h2,
.contact-page .contact-cta p {
  color: #fff;
}

.privacy-page .privacy-cta p,
.terms-page .terms-cta p,
.contact-page .contact-cta p {
  max-width: 700px;
}

@media (max-width: 1200px) {
  .privacy-page .privacy-card-grid,
  .contact-page .contact-card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  .privacy-page main .container,
  .terms-page main .container,
  .contact-page main .container {
    width: min(100%, calc(100% - 40px));
  }

  .privacy-page .privacy-hero__grid,
  .privacy-page .privacy-two-column,
  .terms-page .terms-hero__grid,
  .terms-page .terms-two-column,
  .contact-page .contact-hero__grid,
  .contact-page .contact-two-column {
    grid-template-columns: 1fr;
  }

  .privacy-page .privacy-cta,
  .terms-page .terms-cta,
  .contact-page .contact-cta {
    display: grid;
  }

  .privacy-page .privacy-hero,
  .terms-page .terms-hero,
  .contact-page .contact-hero {
    padding: 90px 0 70px;
  }

  .privacy-page .privacy-hero__media,
  .terms-page .terms-hero__media,
  .contact-page .contact-hero__media {
    order: 2;
  }
}

@media (max-width: 640px) {
  .privacy-page main .container,
  .terms-page main .container,
  .contact-page main .container {
    width: min(100%, calc(100% - 24px));
  }

  .privacy-page .privacy-section,
  .terms-page .terms-section,
  .contact-page .contact-section {
    padding: 72px 0;
  }

  .privacy-page .privacy-card-grid,
  .contact-page .contact-card-grid {
    grid-template-columns: 1fr;
  }

  .privacy-page .privacy-card,
  .privacy-page .privacy-panel,
  .privacy-page .privacy-cta,
  .terms-page .terms-panel,
  .terms-page .terms-cta,
  .contact-page .contact-card,
  .contact-page .contact-panel,
  .contact-page .contact-callout,
  .contact-page .contact-cta {
    padding: 24px;
  }

  .privacy-page .privacy-hero__media img,
  .terms-page .terms-hero__media img,
  .contact-page .contact-hero__media img {
    min-height: 280px;
  }
}
