:root {
  --ink: #17131d;
  --ink-soft: #5d5665;
  --surface: #ffffff;
  --surface-alt: #fff8fd;
  --purple: #7c3aed;
  --purple-dark: #5b21b6;
  --pink: #ec4899;
  --orange: #ff7a1a;
  --cyan: #06b6d4;
  --lime: #a3e635;
  --line: rgba(33, 22, 45, .12);
  --shadow: 0 22px 70px rgba(50, 25, 75, .15);
  --radius-lg: 32px;
  --radius-md: 22px;
  --shell: min(1460px, calc(100% - 40px));
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--surface);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
button { cursor: pointer; }
.shell { width: var(--shell); margin-inline: auto; }
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}
.skip-link {
  position: fixed; left: 14px; top: 14px; z-index: 1000; padding: 10px 14px;
  background: #fff; border-radius: 10px; transform: translateY(-160%);
}
.skip-link:focus { transform: translateY(0); }

.site-header {
  position: sticky; top: 0; z-index: 100;
  background: #fff;
  backdrop-filter: none;
  border-bottom: 1px solid rgba(33,22,45,.07);
}
.header-inner { min-height: 82px; display: flex; align-items: center; justify-content: space-between; gap: 30px; }
.brand { display: inline-flex; align-items: center; gap: 12px; font-size: 1.05rem; }
.brand-logo-link { flex-shrink: 0; }
.brand-logo { width: clamp(240px, 23vw, 560px); height: auto; }
.footer-logo { width: min(100%, 420px); }
.main-nav { display: flex; align-items: center; gap: 28px; font-weight: 750; }
.main-nav a { transition: color .2s ease, transform .2s ease; }
.main-nav a:hover { color: var(--purple); transform: translateY(-1px); }
.nav-cta { padding: 13px 18px; border-radius: 999px; color: #fff !important; background: var(--ink); }
.menu-toggle { display: none; border: 0; background: transparent; width: 44px; padding: 8px; }
.menu-toggle span:not(.sr-only) { display: block; height: 2px; margin: 6px 0; background: var(--ink); }

.hero {
  position: relative; isolation: isolate; min-height: 760px; color: #fff; overflow: hidden;
  background: linear-gradient(115deg, #5b33a7 0%, #8b5cf6 46%, #f472b6 100%);
}
.hero-photo {
  position: absolute; inset: 0; z-index: -3;
  background-image:
    linear-gradient(90deg, rgba(46,21,76,.72) 0%, rgba(71,30,111,.52) 42%, rgba(181,82,152,.12) 72%, rgba(59,28,79,.18) 100%),
    url("https://images.unsplash.com/photo-1492684223066-81342ee5ff30?auto=format&fit=crop&w=2000&q=86");
  background-size: cover; background-position: center;
}
.hero::before, .hero::after {
  content: ""; position: absolute; border-radius: 50%; filter: blur(4px); opacity: .85; z-index: -2;
}
.hero::before { width: 400px; height: 400px; right: -80px; top: 40px; background: radial-gradient(circle, rgba(6,182,212,.7), transparent 68%); }
.hero::after { width: 540px; height: 540px; left: 33%; bottom: -280px; background: radial-gradient(circle, rgba(236,72,153,.7), transparent 68%); }
.hero-noise { position: absolute; inset: 0; pointer-events: none; z-index: -1; opacity: .18; background-image: radial-gradient(rgba(255,255,255,.75) .7px, transparent .7px); background-size: 18px 18px; mask-image: linear-gradient(to bottom, rgba(0,0,0,.9), transparent); }
.hero-grid { min-height: 760px; display: grid; grid-template-columns: minmax(0, 1.55fr) 400px; align-items: center; gap: 48px; padding-block: 88px; }
.hero-copy { max-width: none; }
.eyebrow { margin: 0 0 18px; color: rgba(255,255,255,.83); font-size: .84rem; font-weight: 900; letter-spacing: .16em; text-transform: uppercase; }
.eyebrow.dark { color: var(--purple); }
.hero h1 { margin: 0; max-width: 1050px; font-size: clamp(3.15rem, 5.35vw, 6.3rem); line-height: .93; letter-spacing: -.06em; }
.hero h1 span { display: block; color: transparent; background: linear-gradient(90deg, #fff 0%, #ffcf57 45%, #ff7bbd 100%); -webkit-background-clip: text; background-clip: text; }
.hero-lead { max-width: 900px; margin: 28px 0 0; font-size: clamp(1.05rem, 1.55vw, 1.3rem); color: rgba(255,255,255,.86); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; }
.button { min-height: 52px; display: inline-flex; align-items: center; justify-content: center; padding: 14px 22px; border: 0; border-radius: 999px; font-weight: 900; transition: transform .2s ease, box-shadow .2s ease, background .2s ease; }
.button:hover { transform: translateY(-2px); }
.button-primary { color: #fff; background: linear-gradient(135deg, var(--purple), var(--pink)); box-shadow: 0 12px 32px rgba(124,58,237,.34); }
.hero .button-primary { background: #fff; color: var(--purple-dark); }
.button-light { color: #fff; background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.28); backdrop-filter: blur(10px); }
.button-outline { color: var(--purple); background: #fff; border: 1px solid rgba(124,58,237,.24); }
.hero-points { display: flex; flex-wrap: wrap; gap: 12px 22px; list-style: none; margin: 30px 0 0; padding: 0; color: rgba(255,255,255,.82); font-weight: 720; }
.hero-points li::before { content: "✓"; margin-right: 8px; color: #b9f94a; font-weight: 1000; }
.hero-card { padding: 30px; border-radius: 28px; background: rgba(255,255,255,.14); border: 1px solid rgba(255,255,255,.24); backdrop-filter: blur(24px); box-shadow: 0 30px 80px rgba(17,6,33,.27); }
.hero-card h2 { margin: 18px 0 8px; font-size: 2rem; line-height: 1.05; }
.hero-card > p { color: rgba(255,255,255,.76); }
.live-dot { display: inline-flex; align-items: center; gap: 8px; padding: 7px 11px; border-radius: 999px; background: rgba(255,255,255,.12); font-size: .83rem; font-weight: 800; }
.live-dot i { width: 9px; height: 9px; border-radius: 50%; background: #a3e635; box-shadow: 0 0 0 6px rgba(163,230,53,.14); }
.mini-contact { display: block; margin-top: 12px; padding: 15px 17px; border-radius: 16px; background: rgba(255,255,255,.10); }
.mini-contact span { display: block; color: rgba(255,255,255,.65); font-size: .76rem; font-weight: 800; text-transform: uppercase; letter-spacing: .12em; }
.mini-contact strong { font-size: 1rem; }
.hero-visual-card { padding: 16px; }
.hero-visual-single {
  min-height: 510px; border-radius: 28px;
  background-image:
    linear-gradient(145deg, rgba(50, 15, 76, .08), rgba(9, 5, 19, .24)),
    url("https://images.unsplash.com/photo-1527529482837-4698179dc6ce?auto=format&fit=crop&w=1200&q=86");
  background-size: cover; background-position: center;
  box-shadow: inset 0 -60px 100px rgba(15, 10, 27, .20);
}

.trust-strip { background: #fff; border-bottom: 1px solid var(--line); }
.trust-grid { min-height: 76px; display: grid; grid-template-columns: repeat(6, 1fr); align-items: center; gap: 16px; text-align: center; color: var(--ink-soft); font-weight: 850; }
.trust-grid span + span { border-left: 1px solid var(--line); }

.section { padding-block: 110px; }
.section-offer { background: linear-gradient(180deg, #fff 0%, #fff9fc 100%); }
.section-heading { display: grid; grid-template-columns: 1.15fr .85fr; align-items: end; gap: 70px; margin-bottom: 48px; }
.section-heading.compact { grid-template-columns: 1fr; }
.section-heading h2, .event-banner h2, .local-seo h2, .faq-section h2, .contact-section h2 { margin: 0; font-size: clamp(2.3rem, 4.7vw, 5.1rem); line-height: .98; letter-spacing: -.055em; }
.section-heading > p { margin: 0; color: var(--ink-soft); font-size: 1.1rem; }

.offer-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.offer-card { position: relative; overflow: hidden; border-radius: var(--radius-lg); background: #fff; border: 1px solid rgba(33,22,45,.08); box-shadow: 0 16px 55px rgba(47,24,62,.09); transition: transform .3s ease, box-shadow .3s ease; }
.offer-card:hover { transform: translateY(-8px); box-shadow: var(--shadow); }
.offer-image { height: 300px; background-size: cover; background-position: center; }
.image-classic { background-image: linear-gradient(to top, rgba(57,12,73,.45), transparent 50%), url("https://images.unsplash.com/photo-1527529482837-4698179dc6ce?auto=format&fit=crop&w=1000&q=84"); }
.image-360 { background-image: linear-gradient(to top, rgba(31,8,59,.42), transparent 50%), url("https://images.unsplash.com/photo-1505236858219-8359eb29e329?auto=format&fit=crop&w=1000&q=84"); }
.image-ai { background-image: linear-gradient(140deg, rgba(20,9,53,.10), rgba(236,72,153,.2)), url("https://images.unsplash.com/photo-1517245386807-bb43f82c33c4?auto=format&fit=crop&w=1000&q=84"); }
.offer-body { position: relative; padding: 30px; }
.offer-number { position: absolute; right: 28px; top: 24px; color: rgba(124,58,237,.13); font-size: 4.4rem; font-weight: 1000; line-height: 1; }
.offer-kicker { margin: 0 0 7px; color: var(--purple); font-size: .78rem; font-weight: 900; letter-spacing: .12em; text-transform: uppercase; }
.offer-body h3 { margin: 0 0 14px; max-width: 75%; font-size: 1.9rem; line-height: 1.05; }
.offer-body p { color: var(--ink-soft); }
.offer-body ul, .price-card ul { list-style: none; padding: 0; margin: 22px 0; }
.offer-body li, .price-card li { position: relative; padding-left: 24px; margin: 9px 0; }
.offer-body li::before, .price-card li::before { content: "✓"; position: absolute; left: 0; color: var(--purple); font-weight: 1000; }
.offer-body > a { display: inline-flex; gap: 12px; align-items: center; color: var(--purple); font-weight: 900; }

.event-banner { color: #fff; overflow: hidden; background: #17121f; }
.event-banner-grid { display: grid; grid-template-columns: .92fr 1.08fr; align-items: center; gap: 72px; }
.event-banner-copy p:not(.eyebrow) { color: rgba(255,255,255,.72); font-size: 1.08rem; }
.tag-list { display: flex; flex-wrap: wrap; gap: 9px; margin-top: 30px; }
.tag-list span { padding: 9px 12px; border-radius: 999px; background: rgba(255,255,255,.09); border: 1px solid rgba(255,255,255,.12); font-weight: 800; }
.event-collage { display: grid; grid-template-columns: 1.35fr .65fr; grid-template-rows: 1fr 1fr; gap: 16px; min-height: 520px; }
.event-collage > div { border-radius: 24px; background-size: cover; background-position: center; }
.collage-main { grid-row: 1 / span 2; background-image: url("https://images.unsplash.com/photo-1519167758481-83f550bb49b3?auto=format&fit=crop&w=1200&q=84"); }
.collage-one { background-image: url("https://images.unsplash.com/photo-1492684223066-81342ee5ff30?auto=format&fit=crop&w=800&q=84"); }
.collage-two { background-image: url("https://images.unsplash.com/photo-1527529482837-4698179dc6ce?auto=format&fit=crop&w=800&q=84"); }

.steps-grid { counter-reset: step; list-style: none; padding: 0; margin: 0; display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.steps-grid li { position: relative; min-height: 260px; padding: 28px; border-radius: 24px; background: #fff; border: 1px solid var(--line); }
.steps-grid li:nth-child(2) { transform: translateY(22px); }
.steps-grid li:nth-child(3) { transform: translateY(44px); }
.steps-grid li:nth-child(4) { transform: translateY(66px); }
.steps-grid span { width: 52px; height: 52px; display: grid; place-items: center; border-radius: 16px; color: #fff; background: linear-gradient(135deg, var(--purple), var(--pink)); font-size: 1.2rem; font-weight: 950; }
.steps-grid h3 { margin: 42px 0 8px; font-size: 1.35rem; }
.steps-grid p { margin: 0; color: var(--ink-soft); }


.local-seo { background: #f7f4ff; }
.local-grid { display: grid; grid-template-columns: 1fr 430px; gap: 80px; align-items: center; }
.local-grid > div:first-child p:not(.eyebrow) { color: var(--ink-soft); font-size: 1.08rem; }
.local-card { padding: 30px; border-radius: 26px; background: #fff; box-shadow: var(--shadow); }
.local-card p { margin: 0 0 16px; color: var(--ink-soft); font-weight: 800; text-transform: uppercase; letter-spacing: .12em; font-size: .76rem; }
.local-card a { display: block; padding: 15px 0; border-top: 1px solid var(--line); font-weight: 850; }
.local-card a::after { content: "→"; float: right; color: var(--purple); }

.faq-section { background: #fff; }
.faq-grid { display: grid; grid-template-columns: .72fr 1.28fr; gap: 76px; }
.faq-intro { color: var(--ink-soft); }
.accordion details { border-top: 1px solid var(--line); }
.accordion details:last-child { border-bottom: 1px solid var(--line); }
.accordion summary { list-style: none; position: relative; padding: 24px 48px 24px 0; cursor: pointer; font-size: 1.12rem; font-weight: 900; }
.accordion summary::-webkit-details-marker { display: none; }
.accordion summary::after { content: "+"; position: absolute; right: 8px; top: 17px; width: 34px; height: 34px; display: grid; place-items: center; border-radius: 50%; color: var(--purple); background: #f3e8ff; }
.accordion details[open] summary::after { content: "–"; }
.accordion details p { margin: -8px 0 24px; padding-right: 50px; color: var(--ink-soft); }

.contact-section { color: #fff; background:
  linear-gradient(130deg, rgba(18,10,28,.92), rgba(75,22,104,.83)),
  url("https://images.unsplash.com/photo-1505236858219-8359eb29e329?auto=format&fit=crop&w=1900&q=84") center/cover;
}
.contact-grid { display: grid; grid-template-columns: .78fr 1.22fr; gap: 72px; align-items: start; }
.contact-copy > p:not(.eyebrow) { color: rgba(255,255,255,.72); font-size: 1.08rem; }
.contact-details { margin-top: 30px; }
.contact-details > * { display: block; padding: 14px 0; border-bottom: 1px solid rgba(255,255,255,.16); }
.contact-details span { display: block; color: rgba(255,255,255,.58); font-size: .74rem; text-transform: uppercase; letter-spacing: .13em; font-weight: 850; }
.contact-details strong { font-size: 1.05rem; }
.contact-form { padding: 34px; border-radius: 30px; color: var(--ink); background: rgba(255,255,255,.96); box-shadow: 0 34px 90px rgba(8,2,16,.26); }
.form-row { margin-bottom: 16px; }
.two-columns { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; }
.contact-form label { display: block; font-size: .88rem; font-weight: 850; }
.contact-form input, .contact-form select, .contact-form textarea { width: 100%; margin-top: 7px; padding: 14px 15px; border-radius: 13px; border: 1px solid rgba(33,22,45,.16); background: #fff; outline: none; transition: border .2s ease, box-shadow .2s ease; }
.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus { border-color: var(--purple); box-shadow: 0 0 0 4px rgba(124,58,237,.1); }
.contact-form textarea { resize: vertical; }
.consent { display: grid !important; grid-template-columns: 20px 1fr; align-items: start; gap: 10px; margin: 16px 0; color: var(--ink-soft); font-weight: 600 !important; }
.consent input { width: 18px; margin: 3px 0 0; }
.consent a { color: var(--purple); text-decoration: underline; }
.form-submit { width: 100%; }
.form-status { min-height: 24px; margin: 12px 0 0; color: var(--purple); font-weight: 800; }
.form-hint { margin: 8px 0 0; color: var(--ink-soft); font-size: .78rem; }

.site-footer { padding: 70px 0 25px; color: rgba(255,255,255,.72); background: #110d16; }
.footer-grid { display: grid; grid-template-columns: 1.5fr .75fr .75fr; gap: 60px; }
.footer-brand { color: #fff; align-items: flex-start; display: inline-flex; padding: 10px 14px; border-radius: 18px; background: rgba(255,255,255,.98); box-shadow: 0 16px 40px rgba(8,2,16,.18); }
.footer-grid h2 { margin: 0 0 14px; color: #fff; font-size: .9rem; text-transform: uppercase; letter-spacing: .13em; }
.footer-grid a, .footer-grid span { display: block; margin: 8px 0; }
.footer-grid p { max-width: 420px; }
.footer-bottom { display: flex; justify-content: space-between; gap: 20px; margin-top: 46px; padding-top: 20px; border-top: 1px solid rgba(255,255,255,.12); font-size: .88rem; }

@media (max-width: 1120px) {
  .hero-grid { grid-template-columns: minmax(0, 1fr) 330px; gap: 32px; }
  .offer-grid { grid-template-columns: 1fr 1fr; }
  .offer-card:last-child { grid-column: 1 / -1; }
  .steps-grid { grid-template-columns: 1fr 1fr; }
  .steps-grid li:nth-child(n) { transform: none; }
  .event-banner-grid, .faq-grid, .contact-grid { grid-template-columns: 1fr; }
  .local-grid { grid-template-columns: 1fr 360px; gap: 40px; }
}

@media (max-width: 860px) {
  :root { --shell: min(100% - 28px, 740px); }
  .header-inner { min-height: 70px; }
  .menu-toggle { display: block; }
  .main-nav { display: none; position: absolute; left: 14px; right: 14px; top: 78px; flex-direction: column; align-items: stretch; gap: 0; padding: 12px; border-radius: 20px; background: #fff; box-shadow: var(--shadow); }
  .main-nav.open { display: flex; }
  .main-nav a { padding: 14px 12px; }
  .nav-cta { text-align: center; margin-top: 6px; }
  .hero, .hero-grid { min-height: auto; }
  .hero-grid { grid-template-columns: 1fr; padding-block: 90px 70px; }
  .hero-card { max-width: 620px; }
  .hero-visual-single { min-height: 430px; }
  .hero h1 { max-width: 760px; font-size: clamp(3.35rem, 12vw, 5.8rem); }
  .trust-grid { grid-template-columns: repeat(3, 1fr); padding-block: 16px; }
  .trust-grid span + span { border-left: 0; }
  .section { padding-block: 78px; }
  .section-heading { grid-template-columns: 1fr; gap: 18px; }
  .offer-grid, .local-grid { grid-template-columns: 1fr; }
  .offer-card:last-child { grid-column: auto; }
  .event-collage { min-height: 420px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid > div:first-child { grid-column: 1 / -1; }
}

@media (max-width: 560px) {
  .brand-logo { width: min(74vw, 320px); }
  .hero-copy { text-align: left; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .button { width: 100%; }
  .hero-points { display: grid; gap: 8px; }
  .hero-card { padding: 20px; }
  .hero-visual-single { min-height: 320px; }
  .trust-grid { grid-template-columns: 1fr 1fr; font-size: .87rem; }
  .section-heading h2, .event-banner h2, .local-seo h2, .faq-section h2, .contact-section h2 { font-size: clamp(2.25rem, 12vw, 3.6rem); }
  .offer-grid, .steps-grid { grid-template-columns: 1fr; }
  .offer-image { height: 250px; }
  .event-collage { grid-template-columns: 1fr 1fr; grid-template-rows: 260px 170px; }
  .collage-main { grid-column: 1 / -1; grid-row: auto; }
  .two-columns { grid-template-columns: 1fr; }
  .contact-form { padding: 22px; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-grid > div:first-child { grid-column: auto; }
  .footer-bottom { flex-direction: column; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition: none !important; animation: none !important; }
}
