/* ============================================================
   SecretGirlfriend.chat — Main Stylesheet
   ============================================================ */

/* VARIABLES */
:root {
  --plum:     #2A0B57;
  --violet:   #6C2BFF;
  --pink:     #FF3FA4;
  --lilac:    #E9D8FF;
  --midnight: #120A24;
  --lavender: #B9A3FF;
  --mulberry: #4A1F63;
  --orchid:   #A14DFF;
  --rose:     #FF78C8;
  --blush:    #FBE7F4;
  --ivory:    #FFF9FC;
  --gray:     #F3F0F8;
  --white:    #FFFFFF;
}

/* RESET */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'DM Sans', sans-serif;
  background: var(--ivory);
  color: var(--plum);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
h1, h2, h3, h4 { font-family: 'Cormorant Garamond', serif; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; height: auto; display: block; }
button { font-family: inherit; }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 28px;
  background: linear-gradient(135deg, var(--violet), var(--pink));
  color: #fff;
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 600;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 20px rgba(108,43,255,0.3);
  white-space: nowrap;
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(255,63,164,0.4);
}
.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 28px;
  background: transparent;
  color: var(--violet);
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 600;
  border-radius: 50px;
  border: 2px solid var(--violet);
  cursor: pointer;
  transition: all 0.2s;
  white-space: nowrap;
}
.btn-secondary:hover { background: var(--violet); color: #fff; }

/* ============================================================
   HEADER
   ============================================================ */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: 72px;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(255,249,252,0.94);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(108,43,255,0.1);
}
.header-logo img { height: 60px; width: auto; }
.header-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}
.header-nav a {
  font-size: 14px;
  font-weight: 500;
  color: var(--plum);
  opacity: 0.8;
  transition: opacity 0.2s, color 0.2s;
}
.header-nav a:hover,
.header-nav a.active { opacity: 1; color: var(--violet); }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--plum);
  border-radius: 2px;
  transition: all 0.3s;
}

/* MOBILE MENU */
.mobile-menu {
  display: none;
  position: fixed;
  top: 72px; left: 0; right: 0;
  background: var(--ivory);
  padding: 20px 24px;
  border-bottom: 1px solid rgba(108,43,255,0.15);
  z-index: 99;
  flex-direction: column;
  gap: 4px;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-size: 16px;
  font-weight: 500;
  color: var(--plum);
  padding: 12px 0;
  border-bottom: 1px solid rgba(108,43,255,0.08);
  transition: color 0.2s;
}
.mobile-menu a:hover { color: var(--violet); }
.mobile-menu .btn-primary { margin-top: 12px; text-align: center; }

/* ============================================================
   FOOTER
   ============================================================ */
footer {
  background: #0a0614;
  padding: 64px 24px 32px;
  color: var(--lavender);
}
.footer-inner { max-width: 1200px; margin: 0 auto; }
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-brand img { height: 34px; width: auto; margin-bottom: 16px; }
.footer-brand p {
  font-size: 14px;
  line-height: 1.7;
  opacity: 0.65;
  max-width: 280px;
}
.footer-col h4 {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 16px;
  font-family: 'DM Sans', sans-serif;
}
.footer-col a {
  display: block;
  font-size: 14px;
  opacity: 0.65;
  margin-bottom: 10px;
  transition: opacity 0.2s, color 0.2s;
}
.footer-col a:hover { opacity: 1; color: var(--rose); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-legal { font-size: 13px; opacity: 0.4; }
.footer-legal-links { display: flex; gap: 20px; }
.footer-legal-links a { font-size: 13px; opacity: 0.4; transition: opacity 0.2s; }
.footer-legal-links a:hover { opacity: 1; }

/* ============================================================
   HOMEPAGE — HERO
   ============================================================ */
.hero {
  min-height: 100vh;
  padding: 120px 24px 80px;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: linear-gradient(160deg, var(--ivory) 0%, var(--blush) 45%, #ede0ff 100%);
}
.hero::before {
  content: '';
  position: absolute;
  top: -200px; right: -200px;
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(108,43,255,0.12) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -100px; left: -100px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(255,63,164,0.1) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  background: rgba(108,43,255,0.08);
  border: 1px solid rgba(108,43,255,0.2);
  border-radius: 50px;
  font-size: 13px;
  font-weight: 500;
  color: var(--violet);
  margin-bottom: 24px;
}
.hero h1 {
  font-size: clamp(38px, 5vw, 64px);
  font-weight: 700;
  line-height: 1.1;
  color: var(--plum);
  margin-bottom: 20px;
}
.hero h1 span {
  background: linear-gradient(135deg, var(--violet), var(--pink));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-sub {
  font-size: 17px;
  line-height: 1.7;
  color: var(--mulberry);
  opacity: 0.85;
  margin-bottom: 36px;
  max-width: 480px;
}
.hero-ctas { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 40px; }
.hero-ctas .btn-primary,
.hero-ctas .btn-secondary { padding: 16px 36px; font-size: 15px; }
.hero-trust { display: flex; gap: 20px; flex-wrap: wrap; }
.trust-cue {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 500;
  color: var(--mulberry);
}
.trust-cue .icon {
  width: 28px; height: 28px;
  background: linear-gradient(135deg, var(--violet), var(--pink));
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  flex-shrink: 0;
}
.hero-visual {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 14px;
}
.hero-img-main {
  grid-column: 1/2; grid-row: 1/3;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(42,11,87,0.2);
  height: 420px;
}
.hero-img-main img { width: 100%; height: 100%; object-fit: cover; object-position: top center; }
.hero-img-sm {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(42,11,87,0.15);
  height: 200px;
}
.hero-img-sm img { width: 100%; height: 100%; object-fit: cover; object-position: top center; }
.chat-bubble {
  position: absolute;
  bottom: -16px; left: -16px;
  background: #fff;
  border-radius: 16px;
  padding: 12px 18px;
  box-shadow: 0 8px 32px rgba(108,43,255,0.2);
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 500;
  color: var(--plum);
  z-index: 2;
  white-space: nowrap;
}
.chat-dots { display: flex; gap: 4px; }
.chat-dots span {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--pink);
  animation: pulse 1.4s ease-in-out infinite;
}
.chat-dots span:nth-child(2) { animation-delay: 0.2s; background: var(--violet); }
.chat-dots span:nth-child(3) { animation-delay: 0.4s; background: var(--orchid); }
@keyframes pulse {
  0%, 80%, 100% { transform: scale(0.8); opacity: 0.6; }
  40% { transform: scale(1.1); opacity: 1; }
}

/* TRUST STRIP */
.trust-strip { background: var(--midnight); padding: 32px 24px; }
.trust-strip-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 20px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 14px;
}
.trust-icon { font-size: 24px; flex-shrink: 0; }
.trust-label { font-size: 14px; font-weight: 600; color: #fff; }
.trust-sublabel { font-size: 12px; color: var(--lavender); margin-top: 2px; }

/* SECTIONS */
.section { padding: 96px 24px; }
.section-inner { max-width: 1200px; margin: 0 auto; }
.section-label {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--violet);
  margin-bottom: 12px;
  font-family: 'DM Sans', sans-serif;
}
.section-title {
  font-size: clamp(30px, 4vw, 50px);
  font-weight: 700;
  line-height: 1.15;
  color: var(--plum);
  margin-bottom: 16px;
}
.section-title span {
  background: linear-gradient(135deg, var(--violet), var(--pink));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.section-sub {
  font-size: 17px;
  line-height: 1.7;
  color: var(--mulberry);
  opacity: 0.85;
  max-width: 580px;
}

/* WHY GRID */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 56px;
}
.why-card {
  background: #fff;
  border-radius: 24px;
  padding: 36px 28px;
  border: 1px solid rgba(108,43,255,0.1);
  box-shadow: 0 4px 24px rgba(42,11,87,0.06);
  transition: transform 0.3s, box-shadow 0.3s;
}
.why-card:hover { transform: translateY(-6px); box-shadow: 0 16px 48px rgba(108,43,255,0.15); }
.why-card-icon {
  width: 52px; height: 52px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--violet), var(--pink));
  display: flex; align-items: center; justify-content: center;
  font-size: 22px;
  margin-bottom: 20px;
  box-shadow: 0 8px 24px rgba(108,43,255,0.25);
}
.why-card h3 { font-size: 22px; font-weight: 700; color: var(--plum); margin-bottom: 12px; }
.why-card p { font-size: 15px; line-height: 1.65; color: var(--mulberry); opacity: 0.85; }

/* MODELS */
.models-section { background: var(--midnight); padding: 96px 24px; }
.models-section .section-label { color: var(--rose); }
.models-section .section-title { color: #fff; }
.models-section .section-sub { color: var(--lavender); opacity: 1; }
.models-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 56px;
}
.model-card {
  border-radius: 24px;
  overflow: hidden;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  transition: transform 0.3s, box-shadow 0.3s;
}
.model-card:hover { transform: translateY(-8px); box-shadow: 0 24px 60px rgba(255,63,164,0.25); border-color: rgba(255,63,164,0.3); }
.model-photo { width: 100%; height: 280px; object-fit: cover; object-position: top center; display: block; }
.model-info { padding: 20px; }
.model-name { font-family: 'Cormorant Garamond', serif; font-size: 22px; font-weight: 700; color: #fff; margin-bottom: 6px; }
.model-vibe { font-size: 13px; color: var(--lavender); margin-bottom: 12px; }
.model-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 16px; }
.model-tag { font-size: 11px; font-weight: 600; padding: 4px 10px; border-radius: 50px; background: rgba(108,43,255,0.2); color: var(--lavender); border: 1px solid rgba(108,43,255,0.3); }
.model-cta { display: block; text-align: center; padding: 10px; background: linear-gradient(135deg, var(--violet), var(--pink)); color: #fff; font-size: 13px; font-weight: 600; border-radius: 12px; transition: opacity 0.2s; }
.model-cta:hover { opacity: 0.85; }

/* FEATURES */
.features-section { background: var(--blush); }
.features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 56px; }
.feature-card {
  background: #fff;
  border-radius: 24px;
  padding: 32px 28px;
  border: 1px solid rgba(108,43,255,0.08);
  box-shadow: 0 4px 20px rgba(42,11,87,0.05);
  transition: transform 0.3s, box-shadow 0.3s;
}
.feature-card:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(108,43,255,0.12); }
.feature-icon { font-size: 32px; margin-bottom: 16px; }
.feature-card h3 { font-size: 20px; font-weight: 700; color: var(--plum); margin-bottom: 10px; }
.feature-card p { font-size: 14px; line-height: 1.65; color: var(--mulberry); opacity: 0.85; }

/* HOW IT WORKS */
.steps-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 56px;
  position: relative;
}
.steps-row::before {
  content: '';
  position: absolute;
  top: 32px; left: 10%; right: 10%;
  height: 2px;
  background: linear-gradient(90deg, var(--violet), var(--pink));
  opacity: 0.15;
  pointer-events: none;
}
.step-card { text-align: center; padding: 28px 16px; }
.step-num {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--violet), var(--pink));
  color: #fff;
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px;
  box-shadow: 0 8px 24px rgba(108,43,255,0.3);
}
.step-card h3 { font-size: 19px; font-weight: 700; color: var(--plum); margin-bottom: 10px; }
.step-card p { font-size: 14px; line-height: 1.65; color: var(--mulberry); opacity: 0.85; }

/* CUSTOMIZATION */
.custom-section { background: linear-gradient(160deg, #1a0838 0%, var(--midnight) 100%); padding: 96px 24px; }
.custom-section .section-label { color: var(--rose); }
.custom-section .section-title { color: #fff; }
.custom-section .section-sub { color: var(--lavender); opacity: 1; }
.custom-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.custom-visual { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.custom-photo { border-radius: 20px; overflow: hidden; height: 200px; }
.custom-photo img { width: 100%; height: 100%; object-fit: cover; object-position: top center; }
.custom-photo-wide { border-radius: 20px; overflow: hidden; height: 260px; grid-column: 1/3; }
.custom-photo-wide img { width: 100%; height: 100%; object-fit: cover; object-position: top center; }
.custom-tags-row { display: flex; flex-wrap: wrap; gap: 10px; margin: 28px 0 36px; }
.custom-tag {
  padding: 8px 18px;
  border-radius: 50px;
  border: 1px solid rgba(255,255,255,0.15);
  font-size: 13px; font-weight: 500;
  color: var(--lavender);
  background: rgba(255,255,255,0.05);
  transition: all 0.2s;
  cursor: default;
}
.custom-tag:hover { background: rgba(108,43,255,0.2); border-color: var(--violet); color: #fff; }

/* PRIVACY */
.privacy-section { background: var(--gray); }
.privacy-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 56px; }
.privacy-card { background: #fff; border-radius: 24px; padding: 36px 28px; border: 1px solid rgba(108,43,255,0.08); box-shadow: 0 4px 20px rgba(42,11,87,0.05); text-align: center; }
.privacy-icon { font-size: 40px; margin-bottom: 16px; }
.privacy-card h3 { font-size: 20px; font-weight: 700; color: var(--plum); margin-bottom: 10px; }
.privacy-card p { font-size: 14px; line-height: 1.65; color: var(--mulberry); opacity: 0.85; }

/* SEO CONTENT */
.seo-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.seo-text h2 { font-size: clamp(26px, 3.5vw, 42px); font-weight: 700; color: var(--plum); margin-bottom: 24px; }
.seo-text p { font-size: 16px; line-height: 1.75; color: var(--mulberry); opacity: 0.85; margin-bottom: 18px; }
.seo-text h3 { font-size: 22px; font-weight: 600; color: var(--plum); margin: 28px 0 12px; }
.seo-photo { border-radius: 24px; overflow: hidden; box-shadow: 0 20px 60px rgba(42,11,87,0.15); height: 520px; }
.seo-photo img { width: 100%; height: 100%; object-fit: cover; object-position: top center; }

/* FAQ */
.faq-section { background: var(--blush); }
.faq-list { margin-top: 56px; display: flex; flex-direction: column; gap: 12px; max-width: 780px; margin-left: auto; margin-right: auto; }
.faq-item { background: #fff; border-radius: 16px; border: 1px solid rgba(108,43,255,0.1); overflow: hidden; }
.faq-q {
  padding: 20px 24px;
  font-size: 16px; font-weight: 600;
  color: var(--plum);
  cursor: pointer;
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px;
  user-select: none;
  list-style: none;
  font-family: 'DM Sans', sans-serif;
}
.faq-q::-webkit-details-marker { display: none; }
.faq-chevron {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--lilac);
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; flex-shrink: 0;
  transition: transform 0.3s;
  color: var(--violet);
}
details[open] .faq-chevron { transform: rotate(180deg); background: linear-gradient(135deg, var(--violet), var(--pink)); color: #fff; }
.faq-a { padding: 0 24px 20px; font-size: 15px; line-height: 1.7; color: var(--mulberry); opacity: 0.85; }

/* FINAL CTA */
.final-cta {
  background: linear-gradient(160deg, var(--midnight) 0%, #2A0B57 100%);
  padding: 120px 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.final-cta::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(255,63,164,0.15) 0%, transparent 70%);
  pointer-events: none;
}
.final-cta h2 { font-size: clamp(34px, 5vw, 60px); font-weight: 700; color: #fff; margin-bottom: 20px; position: relative; z-index: 1; }
.final-cta h2 span { background: linear-gradient(135deg, var(--rose), var(--orchid)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.final-cta p { font-size: 18px; color: var(--lavender); margin-bottom: 40px; position: relative; z-index: 1; max-width: 520px; margin-left: auto; margin-right: auto; }
.final-cta .btn-primary { padding: 18px 48px; font-size: 17px; position: relative; z-index: 1; }
.final-cta-note { margin-top: 20px; font-size: 13px; color: var(--lavender); opacity: 0.55; position: relative; z-index: 1; }

/* ============================================================
   BLOG — LIST PAGE
   ============================================================ */
.blog-hero {
  padding: 140px 24px 64px;
  text-align: center;
  background: linear-gradient(160deg, var(--ivory) 0%, var(--blush) 100%);
}
.blog-hero-label { display: inline-block; font-size: 12px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--violet); margin-bottom: 14px; font-family: 'DM Sans', sans-serif; }
.blog-hero h1 { font-size: clamp(36px, 5vw, 60px); font-weight: 700; color: var(--plum); margin-bottom: 16px; }
.blog-hero h1 span { background: linear-gradient(135deg, var(--violet), var(--pink)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.blog-hero-sub { font-size: 17px; line-height: 1.7; color: var(--mulberry); opacity: 0.85; max-width: 540px; margin: 0 auto; }
.blog-main { max-width: 800px; margin: 0 auto; padding: 64px 24px 96px; }
.article-card { padding: 36px 0; border-bottom: 1px solid rgba(108,43,255,0.1); }
.article-card:last-child { border-bottom: none; }
.article-meta-top { display: flex; align-items: center; gap: 8px; font-size: 13px; color: var(--mulberry); opacity: 0.7; margin-bottom: 12px; }
.dot { opacity: 0.4; }
.article-card-title { font-size: clamp(22px, 3vw, 30px); font-weight: 700; color: var(--plum); line-height: 1.2; margin-bottom: 12px; }
.article-card-title a { color: inherit; transition: color 0.2s; }
.article-card-title a:hover { color: var(--violet); }
.article-card-desc { font-size: 15px; line-height: 1.7; color: var(--mulberry); opacity: 0.8; margin-bottom: 16px; }
.read-more { font-size: 14px; font-weight: 600; color: var(--violet); transition: color 0.2s; }
.read-more:hover { color: var(--pink); }

/* ============================================================
   BLOG — ARTICLE PAGE
   ============================================================ */
.article-wrap { padding: 120px 24px 0; }
.article-container { max-width: 720px; margin: 0 auto; padding-bottom: 80px; }
.breadcrumb { font-size: 13px; color: var(--mulberry); opacity: 0.7; margin-bottom: 28px; }
.breadcrumb a { color: var(--violet); }
.breadcrumb a:hover { text-decoration: underline; }
.article-header { margin-bottom: 40px; }
.article-meta { display: flex; align-items: center; gap: 10px; font-size: 13px; color: var(--mulberry); opacity: 0.75; margin-bottom: 16px; flex-wrap: wrap; }
.article-title { font-size: clamp(28px, 4vw, 48px); font-weight: 700; line-height: 1.15; color: var(--plum); margin-bottom: 20px; }
.article-desc { font-size: 18px; line-height: 1.7; color: var(--mulberry); opacity: 0.85; border-left: 3px solid var(--violet); padding-left: 20px; }
.article-divider { height: 1px; background: linear-gradient(90deg, var(--violet), transparent); opacity: 0.2; margin: 36px 0; }
.article-body { font-size: 17px; line-height: 1.8; color: #3a1a5c; }
.article-body p { margin-bottom: 22px; }
.article-body h2 { font-size: clamp(22px, 3vw, 32px); font-weight: 700; color: var(--plum); margin: 44px 0 16px; }
.article-body h3 { font-size: clamp(18px, 2.5vw, 24px); font-weight: 600; color: var(--plum); margin: 32px 0 12px; }
.article-body strong { color: var(--plum); font-weight: 600; }
.author-box { background: var(--blush); border-radius: 20px; padding: 28px; display: flex; align-items: center; gap: 20px; margin: 48px 0; }
.author-avatar { width: 56px; height: 56px; border-radius: 50%; background: linear-gradient(135deg, var(--violet), var(--pink)); display: flex; align-items: center; justify-content: center; font-size: 22px; flex-shrink: 0; }
.author-name { font-size: 16px; font-weight: 600; color: var(--plum); margin-bottom: 4px; font-family: 'Cormorant Garamond', serif; }
.author-role { font-size: 13px; color: var(--mulberry); opacity: 0.7; }
.related-section { border-top: 1px solid rgba(108,43,255,0.1); padding-top: 48px; }
.related-label { font-size: 12px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--violet); margin-bottom: 24px; display: block; font-family: 'DM Sans', sans-serif; }
.related-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.related-card { background: #fff; border-radius: 16px; padding: 24px; border: 1px solid rgba(108,43,255,0.1); transition: transform 0.2s, box-shadow 0.2s; display: block; }
.related-card:hover { transform: translateY(-3px); box-shadow: 0 8px 28px rgba(108,43,255,0.12); }
.related-meta { font-size: 12px; color: var(--mulberry); opacity: 0.65; margin-bottom: 8px; }
.related-title { font-size: 16px; font-weight: 700; color: var(--plum); line-height: 1.3; font-family: 'Cormorant Garamond', serif; }
.article-cta { background: linear-gradient(135deg, var(--midnight), #2A0B57); border-radius: 24px; padding: 40px 36px; text-align: center; margin: 48px 0; }
.article-cta h3 { font-size: 28px; font-weight: 700; color: #fff; margin-bottom: 12px; }
.article-cta p { font-size: 15px; color: var(--lavender); margin-bottom: 24px; opacity: 0.85; }

/* ============================================================
   SIMPLE PAGES (About, Contact, Privacy, etc.)
   ============================================================ */
.simple-page { padding: 140px 24px 96px; }
.simple-page-inner { max-width: 780px; margin: 0 auto; }
.simple-page h1 { font-size: clamp(32px, 4vw, 52px); font-weight: 700; color: var(--plum); margin-bottom: 16px; }
.simple-page .subtitle { font-size: 17px; line-height: 1.7; color: var(--mulberry); opacity: 0.8; margin-bottom: 48px; padding-bottom: 32px; border-bottom: 1px solid rgba(108,43,255,0.1); }
.simple-page h2 { font-size: 26px; font-weight: 700; color: var(--plum); margin: 40px 0 14px; }
.simple-page p { font-size: 16px; line-height: 1.75; color: var(--mulberry); opacity: 0.85; margin-bottom: 18px; }
.simple-page ul { padding-left: 24px; margin-bottom: 18px; }
.simple-page ul li { font-size: 16px; line-height: 1.75; color: var(--mulberry); opacity: 0.85; margin-bottom: 8px; }

/* Contact form */
.contact-form { margin-top: 40px; display: flex; flex-direction: column; gap: 20px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label { font-size: 13px; font-weight: 600; color: var(--plum); letter-spacing: 0.5px; }
.form-group input,
.form-group textarea {
  padding: 14px 18px;
  border: 1.5px solid rgba(108,43,255,0.2);
  border-radius: 12px;
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  color: var(--plum);
  background: #fff;
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
  resize: vertical;
}
.form-group input:focus,
.form-group textarea:focus { border-color: var(--violet); box-shadow: 0 0 0 3px rgba(108,43,255,0.1); }
.form-group textarea { min-height: 160px; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .models-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 768px) {
  .header-nav { display: none; }
  .header .btn-primary { display: none; }
  .hamburger { display: flex; }

  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero-visual { order: -1; }
  .hero-img-main { height: 300px; }
  .hero-img-sm { height: 145px; }

  .trust-strip-inner { grid-template-columns: 1fr 1fr; }
  .why-grid, .features-grid, .privacy-grid { grid-template-columns: 1fr; }
  .steps-row { grid-template-columns: 1fr 1fr; }
  .steps-row::before { display: none; }
  .models-grid { grid-template-columns: 1fr 1fr; }
  .custom-inner { grid-template-columns: 1fr; }
  .seo-inner { grid-template-columns: 1fr; }
  .seo-photo { height: 300px; order: -1; }

  .footer-top { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }

  .related-grid { grid-template-columns: 1fr; }
  .author-box { flex-direction: column; text-align: center; }
  .article-cta { padding: 28px 20px; }
}
@media (max-width: 480px) {
  .trust-strip-inner { grid-template-columns: 1fr; }
  .steps-row { grid-template-columns: 1fr; }
  .models-grid { grid-template-columns: 1fr; }
  .hero-ctas { flex-direction: column; }
  .hero-ctas .btn-primary,
  .hero-ctas .btn-secondary { width: 100%; justify-content: center; }
  .section { padding: 64px 20px; }
}
