
:root {
  --wine: #4b072c;
  --wine-dark: #2a061b;
  --orange: #ee7c2c;
  --orange-soft: #f3a061;
  --lilac: #9c8bc5;
  --lilac-soft: #c4b9df;
  --white: #ffffff;
  --paper: #fbf9fb;
  --ink: #1b171c;
  --muted: #6d6570;
  --line: #e8e0e7;
  --max: 1180px;
  --shadow: 0 24px 70px rgba(75,7,44,.12);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 90px; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }

.container {
  width: min(calc(100% - 40px), var(--max));
  margin: 0 auto;
}

.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,.94);
  border-bottom: 1px solid rgba(232,224,231,.9);
  backdrop-filter: blur(14px);
}
.nav {
  min-height: 78px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 28px;
}
.brand { display: inline-flex; align-items: center; gap: 12px; }
.brand > span:last-child { display: grid; line-height: 1.05; }
.brand strong { letter-spacing: .06em; font-size: 1rem; }
.brand small { margin-top: 5px; color: var(--muted); font-size: .61rem; letter-spacing: .08em; }
.brand-e {
  width: 44px;
  height: 44px;
  border-radius: 50% 50% 45% 55% / 55% 45% 55% 45%;
  display: grid;
  place-items: center;
  font-size: 1.3rem;
  font-weight: 900;
  background: var(--wine);
  color: white;
}
.menu { display: flex; align-items: center; gap: 22px; font-size: .92rem; }
.menu > a:not(.btn):hover { color: var(--wine); }
.menu-btn { display: none; border: 0; background: transparent; padding: 8px; }
.menu-btn span { display: block; width: 25px; height: 2px; background: var(--wine); margin: 5px 0; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--wine);
  border-radius: 999px;
  background: var(--wine);
  color: white;
  padding: 13px 21px;
  font-weight: 800;
  cursor: pointer;
  transition: .18s ease;
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 10px 28px rgba(75,7,44,.18); }
.btn-small { padding: 10px 16px; }
.btn-outline { background: white; color: var(--wine); }
.full { width: 100%; }

.hero {
  position: relative;
  overflow: hidden;
  min-height: 710px;
  display: flex;
  align-items: center;
  background: var(--wine);
  color: white;
}
.hero::after {
  content: "";
  position: absolute;
  right: -170px;
  top: 30px;
  width: 520px;
  height: 520px;
  border: 2px solid rgba(255,255,255,.09);
  border-radius: 51% 49% 60% 40% / 45% 58% 42% 55%;
  transform: rotate(18deg);
}
.hero-curve {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}
.hero-curve-one {
  width: 760px; height: 760px;
  background: var(--orange);
  right: -470px; bottom: -420px;
}
.hero-curve-two {
  width: 520px; height: 520px;
  background: var(--lilac);
  right: -300px; bottom: -390px;
}
.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.12fr .88fr;
  align-items: center;
  gap: 60px;
  padding: 84px 0;
}
.eyebrow {
  font-size: .73rem;
  font-weight: 900;
  letter-spacing: .13em;
  color: var(--orange);
  margin-bottom: 14px;
}
.eyebrow.light { color: #f7b27d; }
.hero h1 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(2.8rem, 6vw, 5.8rem);
  letter-spacing: -.045em;
  line-height: .98;
}
.hero h1 span { color: #f7b27d; }
.hero p {
  max-width: 720px;
  color: rgba(255,255,255,.78);
  font-size: 1.08rem;
  margin: 26px 0 30px;
}
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.hero .btn { background: white; border-color: white; color: var(--wine); }
.hero .btn-outline { background: transparent; color: white; }
.hero-pills { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 30px; }
.hero-pills span {
  border: 1px solid rgba(255,255,255,.18);
  padding: 8px 12px;
  border-radius: 999px;
  color: rgba(255,255,255,.78);
  font-size: .82rem;
}

.hero-visual {
  min-height: 460px;
  position: relative;
}
.oval {
  position: absolute;
  border-radius: 50%;
}
.oval-main {
  width: 360px;
  height: 500px;
  right: 70px;
  top: -5px;
  background: white;
  color: var(--wine);
  transform: rotate(7deg);
  box-shadow: 0 30px 90px rgba(0,0,0,.18);
  overflow: hidden;
}
.oval-main::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 30%, rgba(238,124,44,.13), transparent 38%);
}
.oval-content {
  position: absolute;
  inset: 0;
  display: grid;
  place-content: center;
  text-align: center;
  transform: rotate(-7deg);
}
.big-number {
  font-size: 5rem;
  font-weight: 950;
  color: var(--orange);
  line-height: 1;
}
.oval-title {
  font-size: 1.65rem;
  font-weight: 950;
  line-height: 1.03;
  letter-spacing: -.02em;
}
.oval-sub {
  margin-top: 14px;
  font-size: .75rem;
  font-weight: 900;
  letter-spacing: .18em;
  color: var(--lilac);
}
.oval-mini.orange {
  width: 70px; height: 70px;
  background: var(--orange);
  right: 0; top: 35px;
}
.oval-mini.lilac {
  width: 48px; height: 48px;
  background: var(--lilac);
  left: 50px; bottom: 30px;
}
.dotline {
  position: absolute;
  height: 280px;
  border-left: 3px dotted rgba(255,255,255,.75);
  left: 40px;
  top: 20px;
}

.brand-strip {
  border-bottom: 1px solid var(--line);
  background: white;
}
.strip-grid {
  min-height: 95px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
}
.strip-grid > div { display: flex; align-items: center; gap: 18px; }
.strip-grid strong { color: var(--wine); letter-spacing: .08em; }
.strip-grid span { color: var(--muted); }
.strip-grid a { color: var(--wine); font-weight: 800; }

.section { padding: 92px 0; }
.section-title { max-width: 760px; margin-bottom: 46px; }
.section-title h2,
.priority-section h2,
.contact-section h2 {
  margin: 0;
  font-size: clamp(2.1rem, 4.5vw, 3.8rem);
  line-height: 1.04;
  letter-spacing: -.035em;
}
.section-title p,
.contact-copy > p { color: var(--muted); margin-top: 16px; }
.section-title.light { color: white; }
.section-title.light p { color: rgba(255,255,255,.72); }

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.service-card {
  min-height: 250px;
  border: 1px solid var(--line);
  border-radius: 26px;
  padding: 26px;
  background: white;
  position: relative;
  overflow: hidden;
  transition: .18s ease;
}
.service-card::after {
  content: "";
  position: absolute;
  width: 115px;
  height: 115px;
  border-radius: 50%;
  right: -55px;
  bottom: -55px;
  background: var(--wine);
  opacity: .08;
}
.service-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.service-card .number {
  color: var(--wine);
  font-size: .76rem;
  font-weight: 950;
  letter-spacing: .1em;
}
.service-card h3 { margin: 28px 0 9px; font-size: 1.2rem; }
.service-card p { color: var(--muted); margin: 0; font-size: .92rem; }
.service-card.accent-orange .number { color: var(--orange); }
.service-card.accent-orange::after { background: var(--orange); opacity: .12; }
.service-card.accent-lilac .number { color: var(--lilac); }
.service-card.accent-lilac::after { background: var(--lilac); opacity: .18; }

.process-section {
  position: relative;
  overflow: hidden;
  background: var(--wine);
  color: white;
}
.curve-bg {
  position: absolute;
  width: 720px; height: 720px;
  border-radius: 50%;
  right: -470px; top: 60px;
  background: var(--orange);
  opacity: .88;
}
.process-section .container { position: relative; z-index: 2; }
.timeline {
  display: grid;
  gap: 14px;
  max-width: 850px;
}
.timeline-item {
  display: grid;
  grid-template-columns: 76px 1fr;
  align-items: center;
  gap: 22px;
  padding: 22px 0;
  border-bottom: 1px solid rgba(255,255,255,.14);
}
.timeline-number {
  width: 64px; height: 64px;
  border-radius: 50%;
  display: grid; place-items: center;
  background: white; color: var(--wine);
  font-weight: 950;
}
.timeline-number.orange { background: var(--orange); color: white; }
.timeline-number.lilac { background: var(--lilac); color: white; }
.timeline-item h3 { margin: 0 0 5px; font-size: 1.18rem; }
.timeline-item p { margin: 0; color: rgba(255,255,255,.68); }

.package-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  align-items: stretch;
}
.package-card {
  border: 1px solid var(--line);
  border-radius: 28px;
  padding: 30px;
  display: flex;
  flex-direction: column;
  position: relative;
  background: white;
}
.package-card.featured {
  background: var(--wine);
  color: white;
  border-color: var(--wine);
  box-shadow: var(--shadow);
  transform: translateY(-12px);
}
.package-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.package-top span {
  color: var(--orange);
  font-size: .75rem;
  font-weight: 950;
  letter-spacing: .12em;
}
.package-top strong { font-size: 2rem; color: var(--lilac); }
.package-card h3 { font-size: 1.5rem; margin: 18px 0 12px; }
.package-card ul {
  padding-left: 18px;
  color: var(--muted);
  flex: 1;
  margin-bottom: 26px;
}
.package-card li { margin-bottom: 9px; }
.package-card.featured ul { color: rgba(255,255,255,.72); }
.package-card.featured .btn { background: white; color: var(--wine); border-color: white; }
.tag {
  position: absolute;
  right: 24px;
  top: -14px;
  background: var(--orange);
  color: white;
  border-radius: 999px;
  padding: 8px 12px;
  font-size: .68rem;
  font-weight: 950;
  letter-spacing: .08em;
}

.priority-section {
  position: relative;
  overflow: hidden;
  background: var(--orange);
  color: white;
  padding: 78px 0;
}
.priority-curve {
  position: absolute;
  border-radius: 50%;
}
.priority-curve.one {
  width: 520px; height: 520px;
  right: -320px; top: -190px;
  background: var(--wine);
}
.priority-curve.two {
  width: 380px; height: 380px;
  right: -250px; top: -90px;
  background: var(--lilac);
}
.priority-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 70px;
  align-items: center;
}
.priority-section p { color: rgba(255,255,255,.82); }
.priority-list { display: grid; grid-template-columns: repeat(3,1fr); gap: 14px; }
.priority-list > div {
  background: rgba(255,255,255,.10);
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 22px;
  padding: 22px;
}
.priority-list strong,
.priority-list small { display: block; }
.priority-list small { margin-top: 6px; color: rgba(255,255,255,.73); }
.bubble { width: 34px; height: 34px; display: block; border-radius: 50%; margin-bottom: 17px; }
.bubble.white { background: white; }
.bubble.orange { background: var(--wine); }
.bubble.lilac { background: var(--lilac); }

.faq-section { background: var(--paper); }
.faq-grid {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 70px;
}
.faq-list details { border-bottom: 1px solid var(--line); }
.faq-list summary {
  cursor: pointer;
  padding: 22px 0;
  list-style: none;
  font-weight: 850;
}
.faq-list summary::-webkit-details-marker { display:none; }
.faq-list summary::after { content: "+"; float:right; color: var(--wine); font-size: 1.3rem; }
.faq-list details[open] summary::after { content: "−"; }
.faq-list p { color: var(--muted); margin: -4px 0 22px; }

.contact-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 70px;
  align-items: start;
}
.social-box {
  margin-top: 28px;
  border-radius: 26px;
  padding: 24px;
  background: var(--wine);
  color: white;
  display: grid;
  max-width: 430px;
}
.social-box span,
.social-box small { color: rgba(255,255,255,.67); }
.social-box strong { font-size: 1.4rem; margin: 3px 0; }

.quote-form {
  border: 1px solid var(--line);
  border-radius: 28px;
  padding: 28px;
  box-shadow: var(--shadow);
}
.quote-form label {
  display: grid;
  gap: 7px;
  margin-bottom: 17px;
  font-size: .89rem;
  font-weight: 800;
}
.quote-form input,
.quote-form select,
.quote-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 15px;
  padding: 13px 14px;
  outline: none;
  background: white;
  color: var(--ink);
}
.quote-form input:focus,
.quote-form select:focus,
.quote-form textarea:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 4px rgba(238,124,44,.10);
}
.form-note { margin: 13px 0 0; color: var(--muted); font-size: .78rem; }
code { background: var(--paper); border-radius: 6px; padding: 2px 5px; }

.footer {
  position: relative;
  overflow: hidden;
  background: var(--wine-dark);
  color: white;
  padding: 54px 0 24px;
}
.footer-curve {
  position: absolute;
  width: 460px; height: 460px;
  border-radius: 50%;
  right: -270px; bottom: -310px;
  background: var(--orange);
}
.footer-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.3fr .7fr 1fr;
  gap: 40px;
}
.footer p, .footer small { color: rgba(255,255,255,.61); }
.footer .brand small { color: rgba(255,255,255,.58); }
.footer-bottom {
  position: relative;
  z-index: 2;
  margin-top: 38px;
  padding-top: 22px;
  border-top: 1px solid rgba(255,255,255,.12);
  display: flex;
  justify-content: space-between;
  gap: 20px;
  color: rgba(255,255,255,.58);
  font-size: .82rem;
}

.toast {
  position: fixed;
  left: 50%;
  bottom: 24px;
  transform: translate(-50%,20px);
  background: var(--wine-dark);
  color: white;
  padding: 12px 18px;
  border-radius: 999px;
  opacity: 0;
  pointer-events: none;
  transition: .2s ease;
  z-index: 130;
}
.toast.show { opacity: 1; transform: translate(-50%,0); }

@media (max-width: 980px) {
  .menu-btn { display:block; }
  .menu {
    position:absolute;
    top:78px;
    left:20px; right:20px;
    display:none;
    flex-direction:column;
    align-items:stretch;
    gap:8px;
    background:white;
    padding:16px;
    border:1px solid var(--line);
    border-radius:20px;
    box-shadow:var(--shadow);
  }
  .menu.open { display:flex; }
  .hero-grid,
  .priority-grid,
  .faq-grid,
  .contact-grid { grid-template-columns:1fr; gap:42px; }
  .hero-visual { min-height: 360px; }
  .oval-main { width: 280px; height: 390px; right: 50%; transform: translateX(50%) rotate(7deg); }
  .oval-content { transform: rotate(-7deg); }
  .services-grid { grid-template-columns:repeat(2,1fr); }
  .package-grid { grid-template-columns:1fr; }
  .package-card.featured { transform:none; }
  .priority-list { grid-template-columns:1fr; }
  .footer-grid { grid-template-columns:1fr; }
}

@media (max-width: 640px) {
  .container { width:min(calc(100% - 28px),var(--max)); }
  .brand small { display:none; }
  .hero { min-height:auto; }
  .hero-grid { padding:62px 0 70px; }
  .hero h1 { font-size:clamp(2.5rem,14vw,4rem); }
  .hero-visual { min-height:300px; }
  .oval-main { width:220px; height:305px; }
  .big-number { font-size:4rem; }
  .oval-title { font-size:1.25rem; }
  .oval-mini.orange { right:5px; top:0; }
  .services-grid { grid-template-columns:1fr; }
  .timeline-item { grid-template-columns:58px 1fr; gap:15px; }
  .timeline-number { width:52px; height:52px; }
  .strip-grid { flex-direction:column; align-items:flex-start; padding:22px 0; }
  .strip-grid > div { flex-direction:column; align-items:flex-start; gap:3px; }
  .section { padding:70px 0; }
  .quote-form { padding:20px; }
  .footer-bottom { flex-direction:column; }
}
