:root {
  --primary: #d946a6;
  --primary-dark: #b22b88;
  --accent: #f7c5dd;
  --bg: #fdf6f3;
  --bg-soft: #fff;
  --card: #ffffff;
  --border: rgba(217, 70, 166, 0.12);
  --text: #1f1334;
  --muted: #6b6477;
}
* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: "Cormorant Garamond", "Playfair Display", Georgia, serif;
  background: var(--bg);
  color: var(--text);
  -webkit-font-smoothing: antialiased;
  line-height: 1.55;
}
body, button, input { font-family: -apple-system, BlinkMacSystemFont, "Inter", "Segoe UI", Roboto, sans-serif; }
h1, h2, h3 { font-family: "Cormorant Garamond", "Playfair Display", Georgia, serif; font-weight: 600; letter-spacing: -0.01em; }

a { color: inherit; text-decoration: none; }
.container { width: min(1180px, 100% - 32px); margin: 0 auto; }

/* TOPBAR */
.topbar {
  position: sticky; top: 0; z-index: 30;
  backdrop-filter: blur(18px);
  background: rgba(253, 246, 243, 0.85);
  border-bottom: 1px solid rgba(217, 70, 166, 0.08);
}
.topbar-row { display: flex; align-items: center; justify-content: space-between; height: 72px; gap: 16px; }
.brand { display: inline-flex; align-items: center; gap: 10px; font-weight: 700; font-size: 18px; }
.brand-mark { font-size: 22px; }
.topnav { display: none; gap: 26px; color: var(--muted); font-size: 14px; }
.topnav a:hover { color: var(--primary); }
@media (min-width: 880px) { .topnav { display: inline-flex; } }

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 12px 20px; border-radius: 999px; font-weight: 600; font-size: 14px;
  transition: transform .15s ease, box-shadow .2s ease, background .2s ease;
  border: 0; cursor: pointer;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary {
  background: linear-gradient(135deg, var(--primary), #f472b6);
  color: #fff;
  box-shadow: 0 18px 36px -12px rgba(217, 70, 166, 0.45);
}
.btn-outline { background: transparent; border: 1px solid var(--primary); color: var(--primary); }
.btn-lg { padding: 16px 28px; font-size: 16px; }

/* HERO */
.hero {
  padding: 96px 0 80px;
  background:
    radial-gradient(700px 500px at 90% 0%, rgba(247, 197, 221, 0.6), transparent 60%),
    radial-gradient(800px 600px at 10% 100%, rgba(217, 70, 166, 0.18), transparent 60%);
}
.hero-grid {
  display: grid; gap: 48px; align-items: center;
  grid-template-columns: 1fr;
}
@media (min-width: 920px) { .hero-grid { grid-template-columns: 1.1fr 0.9fr; } }
.badge {
  display: inline-flex; align-items: center; gap: 8px; padding: 8px 16px; border-radius: 999px;
  background: rgba(217, 70, 166, 0.12); color: var(--primary-dark);
  font-size: 13px; font-weight: 600; margin-bottom: 20px;
}
.hero h1 {
  font-size: clamp(40px, 6vw, 70px);
  line-height: 1.05;
  margin: 0 0 18px;
}
.hero p { color: var(--muted); font-size: 18px; margin: 0 0 32px; max-width: 540px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 32px; }
.hero-trust { display: flex; flex-direction: column; gap: 10px; color: var(--muted); font-size: 14px; }
.trust-item { display: flex; align-items: center; gap: 10px; }
.trust-item strong { color: var(--text); }

.glass {
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(217, 70, 166, 0.12);
  border-radius: 32px;
  backdrop-filter: blur(8px);
  box-shadow: 0 30px 60px -30px rgba(217, 70, 166, 0.4);
}
.hero-visual { position: relative; }
.hero-photo { padding: 40px; text-align: center; position: relative; min-height: 420px; display: flex; align-items: center; justify-content: center; }
.hero-emoji { font-size: 180px; line-height: 1; }
.hero-overlay { position: absolute; inset: 0; pointer-events: none; }
.hero-tag {
  position: absolute; padding: 10px 18px; background: #fff; border: 1px solid var(--border);
  border-radius: 999px; font-size: 14px; font-weight: 600; box-shadow: 0 12px 28px -16px rgba(0, 0, 0, 0.2);
}
.hero-tag:nth-child(1) { top: 24px; left: 12px; }
.hero-tag:nth-child(2) { bottom: 30px; right: 12px; }
.hero-tag:nth-child(3) { bottom: 60%; right: -10px; }

/* SECTION */
.section { padding: 96px 0; }
.section-soft { background: linear-gradient(180deg, #fff 0%, #fdf0ec 100%); }
.section-head { text-align: center; margin-bottom: 50px; }
.section-head h2 { font-size: clamp(32px, 4vw, 50px); margin: 0 0 8px; }
.section-head p { color: var(--muted); margin: 0; font-size: 17px; }

/* SERVICES */
.services-grid {
  display: grid; gap: 18px;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}
.service {
  background: var(--card); border: 1px solid var(--border); border-radius: 28px;
  padding: 28px; transition: transform .2s ease, box-shadow .2s ease;
}
.service:hover { transform: translateY(-6px); box-shadow: 0 30px 60px -30px rgba(217, 70, 166, 0.25); }
.service-icon { font-size: 38px; margin-bottom: 14px; }
.service-name { font-size: 22px; margin: 0 0 8px; }
.service-desc { color: var(--muted); font-size: 15px; margin: 0 0 18px; }
.service-foot { display: flex; align-items: center; justify-content: space-between; }
.service-price { color: var(--primary); font-weight: 700; font-size: 19px; }
.service-cta { color: var(--primary); font-size: 14px; font-weight: 600; }

/* WHY */
.why-grid {
  display: grid; gap: 16px;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}
.why-card {
  background: #fff; border: 1px solid var(--border); border-radius: 24px;
  padding: 24px; text-align: center;
}
.why-icon { font-size: 36px; margin-bottom: 8px; }
.why-title { font-weight: 700; font-size: 17px; margin-bottom: 6px; font-family: inherit; }
.why-text { color: var(--muted); font-size: 14px; }

/* PRICES */
.prices-table {
  background: #fff; border: 1px solid var(--border); border-radius: 24px;
  overflow: hidden;
}
.price-row {
  display: grid; grid-template-columns: 1fr auto; gap: 20px;
  padding: 18px 24px; border-bottom: 1px solid rgba(217, 70, 166, 0.08);
}
.price-row:last-child { border-bottom: 0; }
.price-row .pname { font-weight: 600; }
.price-row .pdesc { color: var(--muted); font-size: 14px; margin-top: 2px; }
.price-row .pval { font-weight: 700; color: var(--primary); white-space: nowrap; }

/* MASTERS */
.masters-grid {
  display: grid; gap: 18px;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}
.master {
  background: #fff; border: 1px solid var(--border); border-radius: 28px;
  padding: 24px; text-align: center;
}
.master-photo {
  width: 96px; height: 96px; border-radius: 999px;
  background: linear-gradient(135deg, var(--accent), var(--primary));
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 50px; color: #fff; margin: 0 auto 14px;
}
.master-name { font-weight: 700; font-size: 18px; margin-bottom: 4px; }
.master-role { color: var(--muted); font-size: 14px; margin-bottom: 10px; }
.master-exp { display: inline-block; padding: 4px 10px; border-radius: 999px; background: rgba(217, 70, 166, 0.1); color: var(--primary); font-size: 12px; font-weight: 600; }

/* REVIEWS */
.reviews-grid {
  display: grid; gap: 18px;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}
.review {
  background: #fff; border: 1px solid var(--border); border-radius: 28px;
  padding: 26px;
}
.review-stars { color: #f59e0b; margin-bottom: 10px; letter-spacing: 2px; }
.review-text { font-style: italic; margin-bottom: 16px; color: var(--text); font-family: "Cormorant Garamond", serif; font-size: 18px; }
.review-foot { display: flex; align-items: center; gap: 12px; }
.review-avatar {
  width: 44px; height: 44px; border-radius: 999px;
  background: linear-gradient(135deg, var(--accent), var(--primary));
  display: inline-flex; align-items: center; justify-content: center; color: #fff; font-weight: 700;
}
.review-name { font-weight: 700; }
.review-role { color: var(--muted); font-size: 13px; }

/* FAQ */
.faq-wrap { max-width: 800px; margin: 0 auto; }
.faq { display: grid; gap: 10px; }
.faq-item {
  background: #fff; border: 1px solid var(--border); border-radius: 22px;
}
.faq-q {
  width: 100%; text-align: left; background: transparent; border: 0; color: var(--text);
  padding: 18px 24px; font-size: 16px; font-weight: 600; cursor: pointer;
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
}
.faq-q::after { content: '+'; font-size: 24px; color: var(--primary); }
.faq-item.open .faq-q::after { content: '−'; }
.faq-a { padding: 0 24px 18px; color: var(--muted); display: none; }
.faq-item.open .faq-a { display: block; }

/* CTA */
.cta { padding: 100px 0; }
.cta-card {
  display: grid; gap: 32px; align-items: center;
  grid-template-columns: 1fr;
  background: linear-gradient(135deg, rgba(217, 70, 166, 0.95), rgba(244, 114, 182, 0.95));
  color: #fff;
  border-radius: 32px; padding: 48px;
}
@media (min-width: 880px) { .cta-card { grid-template-columns: 1.1fr 1fr; } }
.cta-card h2 { font-size: clamp(30px, 4vw, 44px); margin: 0 0 8px; color: #fff; }
.cta-card p { color: rgba(255, 255, 255, 0.92); margin: 0; }
.cta-form { display: grid; gap: 12px; background: #fff; padding: 22px; border-radius: 24px; }
.cta-form input {
  width: 100%; padding: 14px 16px; border-radius: 14px;
  border: 1px solid rgba(217, 70, 166, 0.2); font-size: 15px; outline: none; transition: border-color .2s;
}
.cta-form input:focus { border-color: var(--primary); }
.cta-form .btn-primary { width: 100%; }

/* FOOTER */
.footer { padding: 64px 0 32px; background: #fff; border-top: 1px solid var(--border); }
.footer-grid {
  display: grid; gap: 28px;
  grid-template-columns: 1fr;
}
@media (min-width: 720px) { .footer-grid { grid-template-columns: 1.4fr 1fr 1fr; } }
.brand-foot { margin-bottom: 12px; }
.foot-title { font-weight: 700; margin-bottom: 12px; }
.footer a, .footer span { display: block; color: var(--muted); margin-bottom: 6px; font-size: 14px; }
.social { display: flex; gap: 10px; flex-wrap: wrap; }
.social a {
  display: inline-flex; align-items: center; justify-content: center;
  width: 40px; height: 40px; border-radius: 999px;
  background: rgba(217, 70, 166, 0.1); color: var(--primary); font-size: 18px; margin: 0;
}
.footer-copy { margin-top: 36px; padding-top: 18px; border-top: 1px solid var(--border); color: var(--muted); font-size: 13px; }


/* AICORES modern conversion pack */
:root {
  --focus-ring: color-mix(in oklab, var(--primary) 60%, white 40%);
}

.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity .45s ease, transform .45s ease;
}
.reveal.in {
  opacity: 1;
  transform: translateY(0);
}

.btn, button, a {
  -webkit-tap-highlight-color: transparent;
}

button:focus-visible,
.btn:focus-visible,
a:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
  outline: 2px solid var(--focus-ring);
  outline-offset: 2px;
}

.floating-cta {
  position: fixed;
  left: 12px;
  right: 12px;
  bottom: calc(12px + env(safe-area-inset-bottom, 0px));
  z-index: 60;
  display: none;
  border-radius: 14px;
  padding: 14px 16px;
  text-align: center;
  font-weight: 800;
  letter-spacing: .01em;
  color: #fff;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  box-shadow: 0 16px 34px -16px rgba(0,0,0,.6);
  border: 1px solid rgba(255,255,255,.16);
}
body.has-floating-cta { padding-bottom: 88px; }

@media (min-width: 901px) {
  .floating-cta { display: none !important; }
  body.has-floating-cta { padding-bottom: 0; }
}

@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}


/* AICORES premium visual pack v2 */
.hero {
  position: relative;
  isolation: isolate;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    linear-gradient(180deg, rgba(3, 8, 20, 0.62) 0%, rgba(3, 8, 20, 0.78) 100%),
    linear-gradient(90deg, rgba(3, 8, 20, 0.55) 0%, rgba(3, 8, 20, 0.25) 52%, rgba(3, 8, 20, 0.55) 100%);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background: radial-gradient(900px 520px at 14% 26%, rgba(255, 255, 255, 0.16), transparent 62%);
  mix-blend-mode: soft-light;
}
.hero-grid,
.hero > .container,
.hero-copy,
.hero-visual { position: relative; z-index: 1; }

.hero-copy {
  background: linear-gradient(180deg, rgba(7, 13, 28, 0.58), rgba(7, 13, 28, 0.38));
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 22px;
  padding: clamp(16px, 2.8vw, 28px);
  backdrop-filter: blur(8px);
  box-shadow: 0 26px 50px -36px rgba(3, 8, 20, 0.95);
}
.hero h1 {
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.55), 0 1px 2px rgba(0, 0, 0, 0.32);
}
.hero p,
.hero .badge,
.hero .hero-trust { text-shadow: 0 1px 10px rgba(0, 0, 0, 0.42); }

.badge {
  border-radius: 999px;
  background: rgba(56, 189, 248, 0.14);
  border: 1px solid rgba(56, 189, 248, 0.34);
  color: #dbeafe;
  letter-spacing: .01em;
}

.btn {
  border-radius: 12px;
  letter-spacing: .01em;
}
.btn-primary {
  box-shadow: 0 18px 35px -18px color-mix(in oklab, var(--primary) 72%, #000 28%);
}
.btn-ghost {
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(255, 255, 255, 0.2);
}

.benefit,
.menu-card,
.step,
.review,
.faq-item,
.cta-card {
  border-color: rgba(255, 255, 255, 0.14);
  box-shadow: 0 18px 30px -24px rgba(3, 8, 20, 0.75);
}

.benefit-icon,
.menu-emoji,
.dish-emoji {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.3rem;
  height: 2.3rem;
  border-radius: 999px;
  background: rgba(59, 130, 246, 0.16);
  color: #dbeafe;
  border: 1px solid rgba(148, 163, 184, 0.28);
  font-size: 0;
}
.benefit-icon svg,
.menu-emoji svg,
.dish-emoji svg,
.social a svg {
  width: 1rem;
  height: 1rem;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.social a {
  color: #e2e8f0;
  border-color: rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.07);
}
.social a:hover {
  background: rgba(56, 189, 248, 0.18);
  border-color: rgba(56, 189, 248, 0.4);
  color: #e0f2fe;
}

@media (max-width: 900px) {
  .hero-copy {
    border-radius: 16px;
    padding: 14px;
    background: linear-gradient(180deg, rgba(7, 13, 28, 0.72), rgba(7, 13, 28, 0.46));
  }
}


/* AICORES template refresh v3: beauty */
:root {
  --primary: #d946ef;
  --accent: #f59e0b;
  --bg: #14091b;
  --bg-soft: #1f102a;
  --card: rgba(255, 255, 255, 0.08);
  --card-strong: rgba(255, 255, 255, 0.14);
  --text: #fdf2ff;
  --muted: rgba(245, 225, 255, 0.75);
}
.hero h1 { font-family: 'Playfair Display', Georgia, serif; letter-spacing: -.015em; }
.hero-copy { border-radius: 24px; border-color: rgba(236,72,153,.32); }
.badge { background: rgba(244,114,182,.18); border-color: rgba(244,114,182,.45); }
.review-avatar { background: linear-gradient(135deg, #ec4899, #f59e0b); }


/* AICORES v4 master design pack */
:root {
  --font-display: 'Manrope', 'Plus Jakarta Sans', system-ui, -apple-system, "SF Pro Display", "Inter", sans-serif;
  --font-body: 'Inter', system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --text: #f4f4f6;
  --muted: rgba(229, 229, 234, 0.66);
  --border: rgba(255, 255, 255, 0.10);
  --radius-sm: 12px;
  --radius-md: 18px;
  --radius-lg: 24px;
  --shadow-sm: 0 4px 12px -6px rgba(0,0,0,.4);
  --shadow-md: 0 18px 32px -22px rgba(0,0,0,.55);
  --shadow-lg: 0 28px 56px -32px rgba(0,0,0,.7);
  --space-1: 8px;
  --space-2: 16px;
  --space-3: 24px;
  --space-4: 40px;
  --space-5: 64px;
  --space-6: 96px;
}
body {
  font-family: var(--font-body);
  font-feature-settings: "ss01", "cv11";
  letter-spacing: -0.005em;
}
h1, h2, h3, .section-head h2, .hero h1 {
  font-family: var(--font-display);
  letter-spacing: -0.025em;
  font-weight: 800;
}
.hero h1 {
  font-size: clamp(40px, 6.4vw, 76px);
  line-height: 1.02;
  font-weight: 800;
  letter-spacing: -0.03em;
}
.hero p {
  font-size: clamp(16px, 1.6vw, 19px);
  line-height: 1.55;
  color: rgba(244, 244, 246, 0.78);
  max-width: 56ch;
}

/* Hero readability */
.hero { padding: clamp(64px, 8vw, 110px) 0 clamp(56px, 6vw, 84px); }
.hero::before {
  content: '';
  position: absolute; inset: 0; z-index: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(5,7,14,.45) 0%, rgba(5,7,14,.78) 95%),
    linear-gradient(90deg, rgba(5,7,14,.55) 0%, rgba(5,7,14,.10) 50%, rgba(5,7,14,.50) 100%);
}
.hero::after {
  content: '';
  position: absolute; inset: 0; z-index: 0;
  pointer-events: none;
  background: radial-gradient(620px 420px at 16% 30%, rgba(255,255,255,0.12), transparent 60%);
  mix-blend-mode: screen;
}
.hero-grid, .hero > .container { position: relative; z-index: 1; }
.hero-copy {
  position: relative; z-index: 1;
  background: rgba(8, 11, 22, 0.42);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: var(--radius-lg);
  padding: clamp(20px, 2.8vw, 36px);
  box-shadow: var(--shadow-lg);
}
.hero h1, .hero p, .badge { text-shadow: 0 2px 18px rgba(0,0,0,.55); }

/* Badge — discreet pill */
.badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 12px;
  font-size: 12px; font-weight: 600; letter-spacing: 0.04em; text-transform: uppercase;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.18);
  color: rgba(255,255,255,0.86);
  border-radius: 999px;
  margin-bottom: 18px;
}
.badge::before {
  content: '';
  display: inline-block;
  width: 6px; height: 6px; border-radius: 999px;
  background: var(--primary, #38bdf8);
  box-shadow: 0 0 0 4px rgba(56,189,248,.18);
}

/* Buttons */
.btn {
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 14px;
  padding: 13px 22px;
  letter-spacing: -0.005em;
  position: relative; overflow: hidden;
  transition: transform .18s ease, box-shadow .2s ease, background .2s ease, opacity .2s ease;
}
.btn-primary {
  background: linear-gradient(135deg, var(--primary), color-mix(in oklab, var(--primary) 70%, var(--accent) 30%));
  color: #fff;
  box-shadow: var(--shadow-md), inset 0 1px 0 rgba(255,255,255,.18);
}
.btn-primary::after {
  content: '';
  position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(120deg, transparent 30%, rgba(255,255,255,.18) 50%, transparent 70%);
  transform: translateX(-110%);
  transition: transform .8s ease;
}
.btn-primary:hover::after { transform: translateX(110%); }
.btn-ghost {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.18);
  color: var(--text);
}
.btn-lg { padding: 16px 28px; font-size: 15px; }

/* Trust strip */
.hero-trust {
  display: flex; gap: 28px; flex-wrap: wrap;
  margin-top: 22px;
}
.trust-num {
  font-family: var(--font-display);
  font-size: 28px; font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--text);
}
.trust-item span:last-child { font-size: 13px; color: var(--muted); }

/* Social proof bar (logo strip) */
.proof-bar {
  position: relative;
  background: rgba(255,255,255,0.03);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 22px 0;
}
.proof-bar-inner {
  display: flex; align-items: center; justify-content: center;
  flex-wrap: wrap; gap: 36px;
  opacity: 0.62;
}
.proof-label {
  font-size: 12px; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--muted);
  margin-right: 8px;
}
.proof-logo {
  font-family: var(--font-display);
  font-size: 18px; font-weight: 700;
  color: rgba(244,244,246,0.86);
  letter-spacing: -0.015em;
  display: inline-flex; align-items: center; gap: 8px;
}
.proof-logo svg { width: 18px; height: 18px; opacity: .9; }

/* Cards refinement */
.benefit, .menu-card, .step, .review, .faq-item, .cta-card {
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: linear-gradient(180deg, rgba(255,255,255,0.03), rgba(255,255,255,0.015));
  box-shadow: var(--shadow-sm);
  transition: transform .2s ease, border-color .25s ease, box-shadow .25s ease;
}
.benefit:hover, .menu-card:hover, .step:hover, .review:hover {
  transform: translateY(-3px);
  border-color: rgba(255,255,255,0.22);
  box-shadow: var(--shadow-md);
}

.section-head h2 {
  font-size: clamp(32px, 4.4vw, 52px);
  letter-spacing: -0.025em;
  line-height: 1.04;
  margin-bottom: 12px;
}
.section-head p { font-size: 17px; color: var(--muted); }

/* Icon containers */
.benefit-icon, .menu-emoji, .dish-emoji, .step-num {
  display: inline-flex; align-items: center; justify-content: center;
  width: 42px; height: 42px; border-radius: 12px;
  background: linear-gradient(135deg, color-mix(in oklab, var(--primary) 22%, transparent), color-mix(in oklab, var(--accent) 16%, transparent));
  border: 1px solid rgba(255,255,255,0.14);
  color: var(--text);
  font-size: 0;
}
.benefit-icon svg, .menu-emoji svg, .dish-emoji svg, .social a svg {
  width: 18px; height: 18px;
  stroke: currentColor; fill: none;
  stroke-width: 1.7;
  stroke-linecap: round; stroke-linejoin: round;
}
.step-num { font-size: 16px; font-weight: 700; font-family: var(--font-display); letter-spacing: -0.02em; }

/* Reviews */
.review { padding: 28px; }
.review::before {
  content: '"';
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 80px; line-height: 0.6;
  color: color-mix(in oklab, var(--primary) 50%, transparent);
  display: block; margin-bottom: 8px;
}
.review-text { font-size: 16px; line-height: 1.62; color: rgba(244,244,246,.92); }
.review-avatar {
  width: 44px; height: 44px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  font-family: var(--font-display);
}

/* FAQ */
.faq-item { padding: 4px 8px; }
.faq-q { font-family: var(--font-display); font-size: 17px; font-weight: 700; letter-spacing: -0.01em; }
.faq-a { line-height: 1.6; }

/* CTA card */
.cta-card {
  background: linear-gradient(135deg, color-mix(in oklab, var(--primary) 22%, transparent), color-mix(in oklab, var(--accent) 14%, transparent));
  border: 1px solid color-mix(in oklab, var(--primary) 30%, transparent);
  padding: clamp(28px, 4vw, 56px);
  border-radius: var(--radius-lg);
}
.cta-card h2 { font-size: clamp(28px, 4vw, 48px); letter-spacing: -0.025em; }

/* Sections rhythm */
.section { padding: clamp(64px, 8vw, 112px) 0; }

/* Footer polish */
.footer { padding: clamp(48px, 7vw, 96px) 0 28px; }
.footer-copy { font-size: 13px; opacity: .7; }

/* Promo bar discreet */
.aicores-promo-bar {
  background: rgba(0,0,0,0.28) !important;
  font-family: var(--font-body);
}
.aicores-promo-bar a { font-weight: 600; }

/* Mobile */
@media (max-width: 720px) {
  .hero-copy { padding: 16px; border-radius: var(--radius-md); }
  .hero h1 { font-size: clamp(36px, 9vw, 48px); }
  .badge { font-size: 11px; }
  .proof-bar-inner { gap: 18px; }
  .review { padding: 22px; }
}


/* AICORES v4 premium niche overrides */
.hero h1, .section-head h2, h2.cta-card h2, .review::before {
  font-family: 'Playfair Display', 'Cormorant Garamond', Georgia, serif;
  font-weight: 700;
  letter-spacing: -0.02em;
}
.hero h1 { font-weight: 600; }
.section-head h2 { font-weight: 600; }
.proof-logo { font-family: 'Playfair Display', Georgia, serif; font-weight: 600; }


/* AICORES v4.1 fix: theme-respecting tokens, Manrope only */
:root {
  /* НЕ переопределяем --text/--muted/--border — пусть темы остаются как у шаблона */
}
body {
  font-family: 'Manrope', system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  color: var(--text);
}
h1, h2, h3, h4, h5,
.hero h1, .section-head h2, .cta-card h2 {
  font-family: 'Manrope', system-ui, -apple-system, sans-serif !important;
  font-weight: 800;
  letter-spacing: -0.025em;
}
.proof-logo { font-family: 'Manrope', system-ui, sans-serif !important; font-weight: 700; }
.review::before {
  font-family: 'Manrope', sans-serif !important;
  font-weight: 800;
  font-size: 64px;
  line-height: 0.7;
}

/* Hero overlay/copy — тёмная плашка работает на любой теме, но подстрахуемся */
.hero-copy { color: #f5f7fb; }
.hero-copy h1, .hero-copy p, .hero-copy .badge { color: inherit; }
.hero-copy .badge { color: rgba(255,255,255,0.92); }
.hero-copy p { color: rgba(245, 247, 251, 0.88); }
.hero h1 { color: #ffffff !important; }
.hero p { color: rgba(245, 247, 251, 0.88) !important; }
.hero .trust-num { color: #ffffff; }
.hero .trust-item span:last-child { color: rgba(245, 247, 251, 0.7); }

/* Sections: используем тему конкретного шаблона */
.section-head h2 { color: var(--text); }
.section-head p { color: var(--text); opacity: 0.66; }
.review-text { color: var(--text); }
.review { color: var(--text); }
.faq-q { color: var(--text); }
.faq-a { color: var(--text); opacity: 0.78; }

/* Proof bar — нейтрально для обеих тем */
.proof-bar {
  background: color-mix(in oklab, var(--text) 6%, transparent);
  border-top: 1px solid color-mix(in oklab, var(--text) 12%, transparent);
  border-bottom: 1px solid color-mix(in oklab, var(--text) 12%, transparent);
}
.proof-bar-inner { opacity: 0.72; }
.proof-label { color: var(--text); opacity: 0.55; }
.proof-logo { color: var(--text); opacity: 0.85; }
.proof-logo svg { stroke: currentColor; }

/* Cards — relative to theme */
.benefit, .menu-card, .step, .review, .faq-item {
  background: color-mix(in oklab, var(--text) 4%, transparent);
  border: 1px solid color-mix(in oklab, var(--text) 10%, transparent);
}
.benefit:hover, .menu-card:hover, .step:hover, .review:hover {
  border-color: color-mix(in oklab, var(--text) 22%, transparent);
}
.benefit-icon, .menu-emoji, .dish-emoji, .step-num {
  background: color-mix(in oklab, var(--primary) 18%, transparent);
  border: 1px solid color-mix(in oklab, var(--primary) 28%, transparent);
  color: var(--primary);
}

/* Trust strip readability */
.trust-num { color: var(--text); }
.trust-item span:last-child { color: var(--text); opacity: 0.62; }


/* AICORES v4.1 light-theme restore */
:root {
  --text: #1f1334 !important;
  --muted: color-mix(in oklab, #1f1334 60%, transparent);
  --border: color-mix(in oklab, #1f1334 12%, transparent);
}
body { background: #fdf6f3; color: #1f1334; }
.section-head h2, .section-head p, .review-text, .review, .faq-q, .faq-a { color: #1f1334; }


/* AICORES v4.1.1 light hero adjust */
.hero::before {
  background: linear-gradient(180deg, rgba(255,255,255,0.10) 0%, rgba(255,255,255,0.55) 100%) !important;
}
.hero::after { display: none !important; }
.hero h1 { color: #1f1334 !important; text-shadow: none !important; }
.hero p { color: color-mix(in oklab, #1f1334 78%, transparent) !important; text-shadow: none !important; }
.hero .badge {
  background: color-mix(in oklab, #1f1334 8%, transparent) !important;
  border-color: color-mix(in oklab, #1f1334 18%, transparent) !important;
  color: #1f1334 !important;
  text-shadow: none !important;
}
.hero-copy {
  background: rgba(255,255,255,0.72) !important;
  border: 1px solid color-mix(in oklab, #1f1334 12%, transparent) !important;
  color: #1f1334 !important;
  backdrop-filter: blur(14px);
  box-shadow: 0 24px 60px -32px color-mix(in oklab, #1f1334 35%, transparent);
}
.hero-copy h1, .hero-copy p { color: inherit !important; }
.hero .trust-num { color: #1f1334 !important; }
.hero .trust-item span:last-child { color: color-mix(in oklab, #1f1334 65%, transparent) !important; }


/* AICORES v4.2 icon styling */
.aic-iconwrap {
  display: inline-flex !important; align-items: center; justify-content: center;
  width: 48px; height: 48px;
  border-radius: 14px;
  background: color-mix(in oklab, var(--primary) 18%, transparent);
  border: 1px solid color-mix(in oklab, var(--primary) 28%, transparent);
  color: var(--primary);
  font-size: 0;
  flex: 0 0 auto;
}
.aic-iconwrap svg { width: 22px; height: 22px; }
.hero-emoji.aic-iconwrap, .med-emoji.aic-iconwrap, .dish-emoji.aic-iconwrap {
  width: 96px; height: 96px;
  border-radius: 999px;
  background: color-mix(in oklab, var(--primary) 14%, transparent);
  border: 1px solid color-mix(in oklab, var(--primary) 26%, transparent);
}
.hero-emoji.aic-iconwrap svg, .med-emoji.aic-iconwrap svg, .dish-emoji.aic-iconwrap svg {
  width: 44px; height: 44px;
}
.aic-brand-mono {
  display: inline-flex !important;
  align-items: center; justify-content: center;
  width: 32px; height: 32px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--primary), var(--accent, var(--primary)));
  color: #fff;
  box-shadow: 0 6px 14px -8px color-mix(in oklab, var(--primary) 60%, transparent);
}
.aic-monogram {
  font-family: 'Manrope', system-ui, sans-serif;
  font-weight: 800;
  font-size: 13px;
  letter-spacing: -0.02em;
  color: #fff;
  line-height: 1;
}
.aic-tag-ic {
  display: inline-flex; vertical-align: -3px;
  width: 16px; height: 16px;
  margin-right: 6px;
  color: currentColor;
}
.aic-tag-ic svg { width: 14px; height: 14px; }

/* hide stray empty wrappers */
/* keep empty wrappers visible until JS fills with SVG */


/* AICORES v4.3 logo + service images */
.brand-mark.aic-has-logo, .aic-brand-mono.aic-has-logo {
  background: transparent !important;
  border: 1px solid color-mix(in oklab, var(--text, #fff) 12%, transparent);
  padding: 4px;
  width: auto !important;
  min-width: 36px;
  height: 36px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: none;
}
.aic-logo-img {
  display: block;
  height: 28px;
  width: auto;
  max-width: 120px;
  object-fit: contain;
}
.aic-service-img-wrap {
  width: calc(100% + 4px);
  margin: -2px -2px 18px -2px;
  aspect-ratio: 4 / 3;
  border-radius: 14px;
  overflow: hidden;
  background: color-mix(in oklab, var(--text, #fff) 6%, transparent);
}
.aic-service-img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center;
  display: block;
  transition: transform .35s ease;
}
.aic-has-image:hover .aic-service-img { transform: scale(1.03); }
.aic-has-image .benefit-icon,
.aic-has-image .menu-emoji,
.aic-has-image .dish-emoji {
  position: absolute;
  top: 14px; left: 14px;
  background: rgba(0,0,0,0.55) !important;
  border-color: rgba(255,255,255,0.18) !important;
  color: #fff !important;
}
.aic-has-image { position: relative; padding-top: 0 !important; }


/* AICORES v4.4 stock photos */
.card-img.has-photo, #heroPhoto.has-photo { font-size: 0; display: block; overflow: hidden; }
.hero-photo-img { width: 100%; height: 100%; min-height: 240px; object-fit: cover; object-position: center; display: block; }
.layout-emoji.has-photo, .hero-emoji.has-photo, .med-emoji.has-photo, .dish-emoji.has-photo { font-size: 0; overflow: hidden; border-radius: 14px; }
.layout-photo, .hero-side-photo { width: 100%; height: 100%; min-height: 160px; object-fit: cover; display: block; }
