:root {
  --rose: #e8a0b4;
  --rose-light: #f2c4d3;
  --rose-pale: #faf0f3;
  --rose-dark: #c9577a;
  --cream: #fdf6f0;
  --cream-dark: #f0e4d8;
  --white: #ffffff;
  --dark: #1a1118;
  --muted: #7d6675;
  --gold: #c9a96e;
  --green: #4a9e7a;
  --green-light: #e8f5ee;
  --blue: #5b7fb5;
  --blue-light: #eaf0f8;
  --purple: #8b6fb0;
  --purple-light: #f0eaf8;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Outfit', sans-serif;
  color: var(--dark);
  background: var(--cream);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* ═══ CHECKER BG ═══ */
.checker-bg {
  position: fixed; inset: 0; z-index: -1; opacity: 0.07;
  background-image:
    linear-gradient(45deg, var(--rose) 25%, transparent 25%),
    linear-gradient(-45deg, var(--rose) 25%, transparent 25%),
    linear-gradient(45deg, transparent 75%, var(--rose) 75%),
    linear-gradient(-45deg, transparent 75%, var(--rose) 75%);
  background-size: 50px 50px;
  background-position: 0 0, 0 25px, 25px -25px, -25px 0px;
}

/* ═══ NAV ═══ */
nav {
  position: fixed; top: 0; width: 100%; z-index: 100;
  padding: 1.1rem 3rem;
  display: flex; justify-content: space-between; align-items: center;
  background: rgba(253,246,240,0.88);
  backdrop-filter: blur(24px);
  border-bottom: 1px solid rgba(232,160,180,0.1);
}

.logo {
  font-family: 'Fraunces', serif; font-size: 1.5rem; font-weight: 900;
  color: var(--rose-dark); text-decoration: none;
  display: flex; align-items: baseline; gap: 0.4rem;
}

.logo-sub {
  font-family: 'Outfit', sans-serif; font-size: 0.7rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: 2px; color: var(--muted);
  margin-left: 0.3rem;
}

.logo-dot {
  width: 7px; height: 7px; background: var(--rose-dark);
  border-radius: 50%; display: inline-block;
  animation: pulse 2s ease infinite;
}

@keyframes pulse {
  0%,100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.5); opacity: 0.5; }
}

.nav-links { display: flex; gap: 1.6rem; align-items: center; }
.nav-links a { text-decoration: none; color: var(--muted); font-weight: 500; font-size: 0.88rem; transition: color 0.3s; }
.nav-links a:hover { color: var(--rose-dark); }

/* ═══ LANG SWITCHER ═══ */
.lang-switcher {
  display: flex; gap: 0.3rem; align-items: center;
  margin-right: 0.5rem;
}
.lang-link {
  display: inline-flex; align-items: center; justify-content: center;
  width: 32px; height: 32px; border-radius: 50%;
  font-size: 0.7rem; font-weight: 700; text-decoration: none;
  color: var(--muted); background: transparent;
  border: 1.5px solid rgba(232,160,180,0.2);
  transition: all 0.3s; letter-spacing: 0.5px;
}
.lang-link:hover {
  border-color: var(--rose-dark); color: var(--rose-dark);
  background: var(--rose-pale);
}
.lang-link.active {
  background: var(--rose-dark); color: white;
  border-color: var(--rose-dark);
}

.btn {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.7rem 1.6rem; border-radius: 50px;
  font-weight: 600; font-size: 0.92rem; text-decoration: none;
  transition: all 0.3s; cursor: pointer; border: none; font-family: inherit;
}
.btn-rose { background: var(--rose-dark); color: white; }
.btn-rose:hover { transform: translateY(-2px); box-shadow: 0 10px 30px rgba(201,87,122,0.3); }
.btn-outline { border: 2px solid var(--rose-light); color: var(--dark); background: transparent; }
.btn-outline:hover { border-color: var(--rose-dark); background: var(--rose-pale); }
.btn-white { background: white; color: var(--rose-dark); }
.btn-white:hover { transform: translateY(-2px); box-shadow: 0 12px 35px rgba(0,0,0,0.15); }
.btn-lg { padding: 1rem 2.5rem; font-size: 1.05rem; }

/* ═══ HERO ═══ */
.hero {
  min-height: 100vh; display: flex; align-items: center;
  padding: 8rem 3rem 4rem; position: relative;
}

.hero-inner {
  max-width: 1200px; margin: 0 auto; width: 100%;
  display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 4rem; align-items: center;
}

.hero-content { animation: slideUp 0.8s ease-out; }

@keyframes slideUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: var(--white); border: 1px solid var(--rose-light);
  padding: 0.45rem 1rem; border-radius: 50px;
  font-size: 0.8rem; font-weight: 600; color: var(--rose-dark);
  margin-bottom: 1.8rem;
}

h1 {
  font-family: 'Fraunces', serif; font-size: 3.6rem; font-weight: 900;
  line-height: 1.08; margin-bottom: 1.5rem; letter-spacing: -1px;
}
h1 em { color: var(--rose-dark); font-style: italic; }

.hero-desc {
  font-size: 1.15rem; line-height: 1.75; color: var(--muted);
  margin-bottom: 2.5rem; max-width: 500px;
}

.hero-ctas { display: flex; gap: 1rem; flex-wrap: wrap; }

.hero-stats {
  display: flex; gap: 2.5rem; margin-top: 2.5rem;
  padding-top: 2rem; border-top: 1px solid rgba(232,160,180,0.15);
}

.hero-stat-num {
  font-family: 'Fraunces', serif; font-size: 2rem; font-weight: 900;
  color: var(--rose-dark); line-height: 1;
}
.hero-stat-label { font-size: 0.78rem; color: var(--muted); margin-top: 0.3rem; }

/* HERO VISUAL — animated agent cards */
.hero-visual {
  animation: slideUp 1s ease-out 0.3s both;
  position: relative; height: 420px;
}

.float-card {
  position: absolute; background: var(--white); border-radius: 16px;
  padding: 1.2rem 1.4rem; border: 1px solid rgba(232,160,180,0.1);
  box-shadow: 0 8px 30px rgba(201,87,122,0.08);
  transition: transform 0.4s;
}
.float-card:hover { transform: translateY(-4px) rotate(0deg) !important; }

.float-card-icon {
  width: 40px; height: 40px; border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem; margin-bottom: 0.7rem;
}
.float-card h4 { font-family: 'Fraunces', serif; font-size: 0.95rem; font-weight: 700; margin-bottom: 0.2rem; }
.float-card p { font-size: 0.75rem; color: var(--muted); line-height: 1.4; }
.float-card-price {
  font-family: 'Fraunces', serif; font-size: 1.1rem; font-weight: 900;
  color: var(--rose-dark); margin-top: 0.5rem;
}

.fc1 { top: 0; left: 10%; transform: rotate(-2deg); animation: floatA 6s ease-in-out infinite; }
.fc2 { top: 30%; right: 0; transform: rotate(1.5deg); animation: floatB 7s ease-in-out infinite; }
.fc3 { bottom: 5%; left: 5%; transform: rotate(1deg); animation: floatC 5s ease-in-out infinite; }
.fc4 { top: 15%; left: 55%; transform: rotate(-1deg); animation: floatD 8s ease-in-out infinite; }

@keyframes floatA { 0%,100% { transform: translateY(0) rotate(-2deg); } 50% { transform: translateY(-12px) rotate(-1deg); } }
@keyframes floatB { 0%,100% { transform: translateY(0) rotate(1.5deg); } 50% { transform: translateY(-10px) rotate(2deg); } }
@keyframes floatC { 0%,100% { transform: translateY(0) rotate(1deg); } 50% { transform: translateY(-8px) rotate(0deg); } }
@keyframes floatD { 0%,100% { transform: translateY(0) rotate(-1deg); } 50% { transform: translateY(-14px) rotate(-2deg); } }

/* ═══ SECTIONS ═══ */
section { padding: 6rem 3rem; }
.container { max-width: 1100px; margin: 0 auto; }
.section-tag { font-size: 0.72rem; text-transform: uppercase; letter-spacing: 3px; color: var(--rose-dark); font-weight: 700; margin-bottom: 0.8rem; }
h2 { font-family: 'Fraunces', serif; font-size: 2.8rem; font-weight: 900; line-height: 1.12; margin-bottom: 1rem; letter-spacing: -0.5px; }
h2 em { color: var(--rose-dark); font-style: italic; }
.section-desc { font-size: 1.05rem; color: var(--muted); line-height: 1.7; max-width: 560px; margin-bottom: 3rem; }

/* ═══ HOW IT WORKS ═══ */
.how { background: var(--white); border-top: 1px solid rgba(232,160,180,0.1); border-bottom: 1px solid rgba(232,160,180,0.1); }

.how-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; margin-top: 2.5rem; }
.step { text-align: center; padding: 1.5rem 1rem; }
.step-num {
  width: 52px; height: 52px; border-radius: 50%;
  background: var(--rose-pale); color: var(--rose-dark);
  font-family: 'Fraunces', serif; font-size: 1.3rem; font-weight: 900;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1rem;
}
.step h3 { font-family: 'Fraunces', serif; font-size: 1.05rem; font-weight: 700; margin-bottom: 0.4rem; }
.step p { font-size: 0.85rem; color: var(--muted); line-height: 1.6; }

/* ═══ AGENTS CATALOGUE ═══ */
.catalogue { background: var(--cream); }

.cat-filters {
  display: flex; gap: 0.6rem; flex-wrap: wrap; margin-bottom: 2rem;
}

.cat-filter {
  padding: 0.5rem 1.2rem; border-radius: 50px; border: 1.5px solid var(--rose-light);
  background: var(--white); color: var(--muted); font-size: 0.82rem; font-weight: 600;
  cursor: pointer; transition: all 0.3s; font-family: inherit;
}
.cat-filter:hover, .cat-filter.active {
  background: var(--rose-dark); color: white; border-color: var(--rose-dark);
}

.agents-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem;
}

.agent-card {
  background: var(--white); border-radius: 20px; padding: 2rem 1.8rem;
  border: 1px solid rgba(232,160,180,0.08);
  transition: all 0.4s; position: relative; display: flex; flex-direction: column;
}
.agent-card:hover { transform: translateY(-5px); box-shadow: 0 20px 50px rgba(201,87,122,0.1); }

.agent-badge {
  position: absolute; top: 1.2rem; right: 1.2rem;
  font-size: 0.65rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1px;
  padding: 0.25rem 0.7rem; border-radius: 20px;
}
.badge-new { background: var(--green-light); color: var(--green); }
.badge-popular { background: var(--rose-pale); color: var(--rose-dark); }
.badge-advanced { background: var(--purple-light); color: var(--purple); }

.agent-icon {
  width: 52px; height: 52px; border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; margin-bottom: 1.2rem;
}
.icon-green { background: var(--green-light); }
.icon-rose { background: var(--rose-pale); }
.icon-blue { background: var(--blue-light); }
.icon-purple { background: var(--purple-light); }
.icon-gold { background: var(--gold); color: white; }
.icon-cream { background: var(--cream-dark); }

.agent-card h3 { font-family: 'Fraunces', serif; font-size: 1.15rem; font-weight: 700; margin-bottom: 0.4rem; }
.agent-card .agent-sub { font-size: 0.8rem; color: var(--rose-dark); font-weight: 600; margin-bottom: 0.7rem; }
.agent-card p { font-size: 0.88rem; color: var(--muted); line-height: 1.6; flex: 1; }

.agent-footer {
  display: flex; justify-content: space-between; align-items: center;
  margin-top: 1.2rem; padding-top: 1rem; border-top: 1px solid rgba(232,160,180,0.1);
}
.agent-price { font-family: 'Fraunces', serif; font-size: 1.5rem; font-weight: 900; color: var(--rose-dark); }
.agent-price span { font-size: 0.75rem; font-weight: 400; color: var(--muted); font-family: 'Outfit', sans-serif; }

.agent-tags { display: flex; gap: 0.4rem; margin-top: 0.8rem; flex-wrap: wrap; }
.agent-tag {
  font-size: 0.68rem; font-weight: 600; padding: 0.2rem 0.6rem;
  border-radius: 20px; background: var(--cream); color: var(--muted);
}

/* ═══ PRICING TIERS ═══ */
.tiers { background: var(--white); border-top: 1px solid rgba(232,160,180,0.1); border-bottom: 1px solid rgba(232,160,180,0.1); }

.tiers-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }

.tier-card {
  background: var(--cream); border-radius: 20px; padding: 2.5rem 2rem;
  border: 1px solid rgba(232,160,180,0.08); position: relative;
  display: flex; flex-direction: column; transition: all 0.4s;
}
.tier-card:hover { transform: translateY(-4px); }

.tier-featured {
  background: var(--white); border: 2px solid var(--rose-dark);
  box-shadow: 0 15px 50px rgba(201,87,122,0.12);
  transform: scale(1.03);
}
.tier-featured:hover { transform: scale(1.03) translateY(-4px); }

.tier-badge {
  position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  background: var(--rose-dark); color: white;
  font-size: 0.68rem; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase;
  padding: 0.3rem 1rem; border-radius: 20px; white-space: nowrap;
}

.tier-emoji { font-size: 2.2rem; margin-bottom: 1rem; }

.tier-card h3 { font-family: 'Fraunces', serif; font-size: 1.3rem; font-weight: 700; margin-bottom: 0.3rem; }

.tier-price {
  font-family: 'Fraunces', serif; font-size: 2.2rem; font-weight: 900;
  color: var(--rose-dark); margin-bottom: 0.3rem;
}

.tier-for { font-size: 0.82rem; color: var(--muted); margin-bottom: 1.5rem; font-style: italic; }

.tier-features { list-style: none; margin-bottom: 2rem; flex: 1; }
.tier-features li {
  padding: 0.4rem 0; font-size: 0.88rem; color: var(--dark);
  display: flex; align-items: flex-start; gap: 0.5rem; line-height: 1.4;
}
.tier-features li::before { content: '\2713'; color: var(--rose-dark); font-weight: 700; flex-shrink: 0; }

/* ═══ WHAT YOU GET ═══ */
.includes { background: var(--white); border-top: 1px solid rgba(232,160,180,0.1); }
.includes-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.2rem; }

.inc-item {
  display: flex; align-items: flex-start; gap: 1rem;
  padding: 1.3rem 1.5rem; background: var(--cream); border-radius: 14px;
  transition: all 0.3s;
}
.inc-item:hover { transform: translateX(4px); background: var(--rose-pale); }
.inc-icon { font-size: 1.4rem; flex-shrink: 0; margin-top: 2px; }
.inc-item h4 { font-family: 'Fraunces', serif; font-size: 1rem; font-weight: 700; margin-bottom: 0.2rem; }
.inc-item p { font-size: 0.83rem; color: var(--muted); line-height: 1.5; }

/* ═══ ABOUT ═══ */
.about { background: var(--cream); }
.about-inner { display: grid; grid-template-columns: 0.35fr 1fr; gap: 3rem; align-items: center; }
.about-photo {
  aspect-ratio: 0.85; background: linear-gradient(145deg, var(--rose-light), var(--cream-dark));
  border-radius: 20px; display: flex; align-items: center; justify-content: center;
  font-size: 4rem; position: relative;
}
.about-photo::after { content: ''; position: absolute; inset: 6px; border: 2px dashed var(--rose); border-radius: 17px; opacity: 0.3; }
.about-text p { color: var(--muted); line-height: 1.8; margin-bottom: 1rem; font-size: 0.98rem; }
.about-text strong { color: var(--dark); }
.about-kicker { font-family: 'Fraunces', serif; font-size: 1.1rem; font-weight: 700; color: var(--rose-dark); font-style: italic; }

/* ═══ FAQ ═══ */
.faq { background: var(--white); border-top: 1px solid rgba(232,160,180,0.1); }
.faq-inner { max-width: 700px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid rgba(232,160,180,0.12); padding: 1.2rem 0; }
.faq-q {
  font-family: 'Fraunces', serif; font-weight: 700; font-size: 1.05rem;
  cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 1rem;
}
.faq-q::after { content: '+'; font-size: 1.4rem; color: var(--rose-dark); font-family: 'Outfit'; transition: transform 0.3s; flex-shrink: 0; }
.faq-item.open .faq-q::after { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.4s ease, padding 0.4s ease; color: var(--muted); line-height: 1.7; font-size: 0.9rem; }
.faq-item.open .faq-a { max-height: 300px; padding-top: 0.8rem; }

/* ═══ CTA FINAL ═══ */
.cta-final {
  background: var(--dark); text-align: center; position: relative; overflow: hidden;
}
.cta-final::before {
  content: ''; position: absolute; inset: 0;
  background-image:
    linear-gradient(45deg, rgba(232,160,180,0.07) 25%, transparent 25%),
    linear-gradient(-45deg, rgba(232,160,180,0.07) 25%, transparent 25%),
    linear-gradient(45deg, transparent 75%, rgba(232,160,180,0.07) 75%),
    linear-gradient(-45deg, transparent 75%, rgba(232,160,180,0.07) 75%);
  background-size: 40px 40px;
  background-position: 0 0, 0 20px, 20px -20px, -20px 0px;
}
.cta-final * { position: relative; z-index: 1; }
.cta-final h2 { color: white; }
.cta-final em { color: var(--rose-light); }
.cta-final p { color: rgba(255,255,255,0.55); font-size: 1.1rem; max-width: 520px; margin: 0.5rem auto 2.5rem; line-height: 1.7; }

/* ═══ FOOTER ═══ */
footer {
  background: var(--dark); border-top: 1px solid rgba(255,255,255,0.05);
  padding: 2rem 3rem; display: flex; justify-content: space-between; align-items: center;
  color: rgba(255,255,255,0.3); font-size: 0.8rem;
}
footer .logo { color: var(--rose-light); font-size: 1.1rem; }
footer a { color: rgba(255,255,255,0.3); text-decoration: none; }
footer a:hover { color: var(--rose-light); }

/* ═══ RESPONSIVE ═══ */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
  h1 { font-size: 2.8rem; }
  .agents-grid { grid-template-columns: 1fr 1fr; }
  .tiers-grid { grid-template-columns: 1fr; max-width: 420px; margin-left: auto; margin-right: auto; }
  .tier-featured { transform: scale(1); }
  .tier-featured:hover { transform: translateY(-4px); }
  .how-steps { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  nav { padding: 1rem 1.5rem; }
  .nav-links { display: none; }
  .lang-switcher { position: absolute; right: 1.5rem; }
  section { padding: 4rem 1.5rem; }
  .hero { padding: 7rem 1.5rem 3rem; }
  h1 { font-size: 2.2rem; }
  h2 { font-size: 2rem; }
  .agents-grid { grid-template-columns: 1fr; }
  .includes-grid { grid-template-columns: 1fr; }
  .about-inner { grid-template-columns: 1fr; }
  .about-photo { max-width: 180px; margin: 0 auto; }
  .hero-ctas { flex-direction: column; }
  .hero-stats { flex-direction: column; gap: 1rem; }
  .how-steps { grid-template-columns: 1fr; }
  .cta-final { padding: 4rem 1.5rem; }
  .cat-filters { justify-content: center; }
}
