    /* ===== RESET & BASE ===== */
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; }
    body {
      font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
      color: #1a1a2e;
      background: #fff;
      line-height: 1.6;
    }
    img { max-width: 100%; display: block; }
    a { color: inherit; text-decoration: none; }

    /* ===== TOKENS ===== */
    :root {
      --pink:    #e8356d;
      --pink-d:  #c4245a;
      --pink-l:  #fde8f0;
      --green:   #2e7d32;
      --green-l: #e8f5e9;
      --tg:      #2CA5E0;
      --vb:      #7B519D;
      --wa:      #25D366;
      --gray:    #f5f5f7;
      --text-m:  #555;
      --radius:  12px;
      --shadow:  0 4px 24px rgba(0,0,0,.1);
    }

    /* ===== UTILS ===== */
    .container {
      max-width: 1100px;
      margin: 0 auto;
      padding: 0 20px;
    }
    .section { padding: 72px 0; }
    .section--gray { background: var(--gray); }
    .section--pink { background: var(--pink-l); }
    .section--green { background: var(--green-l); }
    .section-title {
      font-size: clamp(1.5rem, 3vw, 2.2rem);
      font-weight: 800;
      margin-bottom: 12px;
      line-height: 1.2;
    }
    .section-sub {
      color: var(--text-m);
      font-size: 1.05rem;
      margin-bottom: 40px;
    }
    .tag {
      display: inline-block;
      background: var(--pink);
      color: #fff;
      font-size: .75rem;
      font-weight: 700;
      letter-spacing: .08em;
      text-transform: uppercase;
      padding: 4px 12px;
      border-radius: 20px;
      margin-bottom: 16px;
    }

    /* ===== BUTTONS ===== */
    .btn {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 14px 28px;
      border-radius: 8px;
      font-size: 1rem;
      font-weight: 700;
      border: none;
      cursor: pointer;
      transition: transform .15s, box-shadow .15s, background .15s;
      white-space: nowrap;
    }
    .btn:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(0,0,0,.15); }
    .btn:active { transform: translateY(0); }
    .btn--primary   { background: var(--pink);  color: #fff; }
    .btn--primary:hover { background: var(--pink-d); }
    .btn--secondary { background: #fff; color: var(--pink); border: 2px solid var(--pink); }
    .btn--green     { background: var(--green); color: #fff; }
    .btn--tg        { background: var(--tg);  color: #fff; }
    .btn--vb        { background: var(--vb);  color: #fff; }
    .btn--wa        { background: var(--wa);  color: #fff; }
    .btn--call      { background: #1a1a2e;    color: #fff; }
    .btn--lg        { padding: 16px 36px; font-size: 1.1rem; }
    .btn--sm        { padding: 10px 20px; font-size: .9rem; }
    .btn--full      { width: 100%; justify-content: center; }

    /* ===== HEADER ===== */
    .header {
      position: sticky;
      top: 0;
      z-index: 100;
      background: #fff;
      border-bottom: 1px solid #ececec;
      padding: 12px 0;
    }
    .header__inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 16px;
      flex-wrap: wrap;
    }
    .logo { font-size: 1.1rem; font-weight: 800; color: var(--pink); }
    .logo span { color: #1a1a2e; }
    .header__phone {
      font-weight: 700;
      font-size: 1rem;
      color: var(--pink);
    }
    .header__phone:hover { text-decoration: underline; }

    /* ===== HERO ===== */
    .hero {
      background: linear-gradient(135deg, #1a1a2e 0%, #3d1a2e 60%, #6b1a3e 100%);
      color: #fff;
      padding: 80px 0 72px;
      position: relative;
      overflow: hidden;
    }
    .hero::before {
      content: '🌷';
      position: absolute;
      right: -40px;
      top: 50%;
      transform: translateY(-50%);
      font-size: 360px;
      opacity: .06;
      pointer-events: none;
      line-height: 1;
    }
    .hero__inner { position: relative; max-width: 680px; }
    .hero__title {
      font-size: clamp(2rem, 5vw, 3.4rem);
      font-weight: 900;
      line-height: 1.1;
      margin-bottom: 12px;
    }
    .hero__title span { color: #f9c8d9; }
    .hero__sub {
      font-size: 1.15rem;
      color: #e0c8d4;
      margin-bottom: 20px;
    }
    .hero__features {
      list-style: none;
      margin-bottom: 36px;
      display: flex;
      flex-direction: column;
      gap: 8px;
    }
    .hero__features li {
      display: flex;
      align-items: flex-start;
      gap: 10px;
      font-size: .95rem;
      color: #e8d5dd;
    }
    .hero__features li::before {
      content: '✓';
      color: #f9c8d9;
      font-weight: 900;
      flex-shrink: 0;
      margin-top: 1px;
    }
    .hero__btns {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
      margin-bottom: 48px;
    }
    .hero__tiles {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 12px;
    }
    .tile {
      background: rgba(255,255,255,.08);
      border: 1px solid rgba(255,255,255,.15);
      border-radius: var(--radius);
      padding: 16px 18px;
      font-size: .9rem;
      backdrop-filter: blur(4px);
    }
    .tile__icon { font-size: 1.6rem; margin-bottom: 8px; }
    .tile__title { font-weight: 700; margin-bottom: 4px; color: #f9c8d9; }
    .tile__text { color: #e0c8d4; font-size: .85rem; }

    /* ===== FORM ===== */
    .form-card {
      background: #fff;
      border-radius: 16px;
      box-shadow: var(--shadow);
      padding: 36px 40px;
      max-width: 640px;
      margin: 0 auto;
    }
    .form-title {
      font-size: 1.5rem;
      font-weight: 800;
      margin-bottom: 6px;
    }
    .form-sub {
      color: var(--text-m);
      margin-bottom: 28px;
      font-size: .95rem;
    }
    .form-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 16px;
    }
    .form-grid .span-2 { grid-column: 1 / -1; }
    .field { display: flex; flex-direction: column; gap: 6px; }
    .field label { font-size: .85rem; font-weight: 600; color: #333; }
    .field input,
    .field select,
    .field textarea {
      padding: 11px 14px;
      border: 1.5px solid #ddd;
      border-radius: 8px;
      font-size: .95rem;
      font-family: inherit;
      transition: border-color .2s;
      background: #fafafa;
    }
    .field input:focus,
    .field select:focus,
    .field textarea:focus {
      outline: none;
      border-color: var(--pink);
      background: #fff;
    }
    .field textarea { resize: vertical; min-height: 80px; }
    .radio-group {
      display: flex;
      gap: 20px;
      flex-wrap: wrap;
      padding-top: 4px;
    }
    .radio-group label {
      display: flex;
      align-items: center;
      gap: 8px;
      font-size: .95rem;
      font-weight: 600;
      cursor: pointer;
    }
    .radio-group input[type="radio"] {
      accent-color: var(--pink);
      width: 18px;
      height: 18px;
    }
    .form-note {
      font-size: .78rem;
      color: #888;
      text-align: center;
      margin-top: 12px;
    }
    .form-success {
      display: none;
      text-align: center;
      padding: 20px;
    }
    .form-success__icon { font-size: 3rem; margin-bottom: 12px; }
    .form-success__title { font-size: 1.3rem; font-weight: 800; margin-bottom: 8px; }
    .form-success__text { color: var(--text-m); }

    /* ===== PRICES ===== */
    .prices-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 24px;
      margin-bottom: 0;
    }
    .price-card {
      background: #fff;
      border-radius: 16px;
      box-shadow: var(--shadow);
      padding: 32px;
      position: relative;
      overflow: hidden;
    }
    .price-card::before {
      content: '';
      position: absolute;
      top: 0; left: 0; right: 0;
      height: 4px;
    }
    .price-card--opt::before  { background: var(--pink); }
    .price-card--ret::before  { background: var(--green); }
    .price-card__label {
      font-size: .75rem;
      font-weight: 700;
      letter-spacing: .1em;
      text-transform: uppercase;
      color: var(--text-m);
      margin-bottom: 16px;
    }
    .price-card__title { font-size: 1.3rem; font-weight: 800; margin-bottom: 20px; }
    .price-table { width: 100%; border-collapse: collapse; margin-bottom: 24px; }
    .price-table tr { border-bottom: 1px solid #f0f0f0; }
    .price-table tr:last-child { border-bottom: none; }
    .price-table td { padding: 10px 0; font-size: .95rem; }
    .price-table td:last-child {
      text-align: right;
      font-weight: 700;
      font-size: 1.05rem;
      color: var(--pink);
    }
    .price-big {
      font-size: 2.8rem;
      font-weight: 900;
      color: var(--green);
      line-height: 1;
      margin-bottom: 8px;
    }
    .price-min { font-size: .9rem; color: var(--text-m); margin-bottom: 20px; }
    .price-gift {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      background: var(--green-l);
      color: var(--green);
      font-weight: 700;
      font-size: .85rem;
      padding: 6px 12px;
      border-radius: 20px;
      margin-bottom: 20px;
    }

    /* ===== TRUST ===== */
    .trust-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
      gap: 20px;
    }
    .trust-item {
      background: #fff;
      border-radius: var(--radius);
      padding: 24px;
      display: flex;
      gap: 16px;
      align-items: flex-start;
      box-shadow: 0 2px 12px rgba(0,0,0,.06);
    }
    .trust-icon {
      font-size: 2rem;
      flex-shrink: 0;
      width: 52px;
      height: 52px;
      background: var(--pink-l);
      border-radius: 12px;
      display: flex;
      align-items: center;
      justify-content: center;
    }
    .trust-item h4 { font-size: 1rem; font-weight: 700; margin-bottom: 4px; }
    .trust-item p  { font-size: .88rem; color: var(--text-m); }

    /* ===== QUALITY ===== */
    .quality-list {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
      gap: 16px;
      margin-bottom: 40px;
    }
    .quality-item {
      display: flex;
      align-items: flex-start;
      gap: 12px;
      padding: 18px;
      background: #fff;
      border-radius: var(--radius);
      box-shadow: 0 2px 10px rgba(0,0,0,.06);
    }
    .quality-item__check {
      width: 28px;
      height: 28px;
      background: var(--pink);
      color: #fff;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-weight: 900;
      font-size: .9rem;
      flex-shrink: 0;
    }
    .quality-item p { font-size: .95rem; font-weight: 600; padding-top: 3px; }

    .photo-placeholder {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 12px;
    }
    .photo-box {
      aspect-ratio: 4/3;
      background: linear-gradient(135deg, #fde8f0, #f9c8d9);
      border-radius: var(--radius);
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 8px;
      color: var(--pink);
      font-size: .8rem;
      font-weight: 600;
      text-align: center;
      padding: 12px;
    }
    .photo-box__icon { font-size: 2rem; }

    /* ===== DATES ===== */
    .dates-inner {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 32px;
      align-items: center;
    }
    .dates-text h2 { margin-bottom: 16px; }
    .dates-text p  { color: var(--text-m); margin-bottom: 16px; }
    .dates-badge {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      background: var(--pink);
      color: #fff;
      font-weight: 700;
      font-size: 1.05rem;
      padding: 14px 24px;
      border-radius: var(--radius);
      margin-bottom: 24px;
    }
    .dates-scale {
      background: #fff;
      border-radius: var(--radius);
      padding: 28px;
      box-shadow: var(--shadow);
    }
    .dates-scale h4 {
      font-size: 1.1rem;
      font-weight: 800;
      margin-bottom: 20px;
    }
    .scale-row {
      display: flex;
      align-items: center;
      gap: 12px;
      margin-bottom: 14px;
    }
    .scale-row:last-child { margin-bottom: 0; }
    .scale-label { font-size: .85rem; font-weight: 600; min-width: 120px; }
    .scale-bar-wrap { flex: 1; background: #f0f0f0; border-radius: 8px; height: 10px; }
    .scale-bar { height: 10px; border-radius: 8px; background: var(--pink); }

    /* ===== DELIVERY ===== */
    .delivery-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 20px;
    }
    .delivery-card {
      background: #fff;
      border-radius: var(--radius);
      padding: 28px 24px;
      text-align: center;
      box-shadow: 0 2px 12px rgba(0,0,0,.06);
    }
    .delivery-card__icon { font-size: 2.4rem; margin-bottom: 12px; }
    .delivery-card h4 { font-weight: 800; margin-bottom: 8px; }
    .delivery-card p  { font-size: .88rem; color: var(--text-m); }

    /* ===== CTA STRIP ===== */
    .cta-strip {
      background: linear-gradient(135deg, #1a1a2e, #3d1a2e);
      color: #fff;
      padding: 56px 0;
    }
    .cta-strip__title {
      font-size: clamp(1.3rem, 3vw, 2rem);
      font-weight: 800;
      margin-bottom: 32px;
      text-align: center;
    }
    .cta-btns {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
      justify-content: center;
    }

    /* ===== STEPS ===== */
    .steps {
      display: flex;
      gap: 0;
      position: relative;
    }
    .steps::before {
      content: '';
      position: absolute;
      top: 28px;
      left: calc(28px + 5%);
      right: calc(28px + 5%);
      height: 2px;
      background: linear-gradient(90deg, var(--pink), #f9c8d9);
    }
    .step {
      flex: 1;
      text-align: center;
      padding: 0 16px;
      position: relative;
    }
    .step__num {
      width: 56px;
      height: 56px;
      background: var(--pink);
      color: #fff;
      font-size: 1.4rem;
      font-weight: 900;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 20px;
      position: relative;
      z-index: 1;
      box-shadow: 0 0 0 6px #fff, 0 0 0 8px var(--pink-l);
    }
    .step h4 { font-size: 1rem; font-weight: 700; margin-bottom: 8px; }
    .step p  { font-size: .88rem; color: var(--text-m); }

    /* ===== FAQ ===== */
    .faq-list { max-width: 760px; margin: 0 auto; }
    .faq-item {
      border-bottom: 1px solid #ececec;
    }
    .faq-item:first-child { border-top: 1px solid #ececec; }
    .faq-q {
      width: 100%;
      text-align: left;
      background: none;
      border: none;
      padding: 20px 0;
      font-size: 1rem;
      font-weight: 700;
      cursor: pointer;
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 16px;
      font-family: inherit;
      color: #1a1a2e;
      transition: color .2s;
    }
    .faq-q:hover { color: var(--pink); }
    .faq-q__arrow {
      width: 24px;
      height: 24px;
      border-radius: 50%;
      background: var(--pink-l);
      color: var(--pink);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1rem;
      flex-shrink: 0;
      transition: transform .3s, background .2s;
    }
    .faq-item.open .faq-q__arrow { transform: rotate(180deg); background: var(--pink); color: #fff; }
    .faq-a {
      max-height: 0;
      overflow: hidden;
      transition: max-height .35s ease, padding .35s;
      font-size: .95rem;
      color: var(--text-m);
      line-height: 1.7;
    }
    .faq-item.open .faq-a { max-height: 300px; padding-bottom: 20px; }

    /* ===== CONTACTS ===== */
    .contacts-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 32px;
      align-items: start;
    }
    .contacts-info h3 { font-size: 1.2rem; font-weight: 800; margin-bottom: 20px; }
    .contacts-list { list-style: none; display: flex; flex-direction: column; gap: 14px; }
    .contacts-list li { display: flex; align-items: center; gap: 12px; font-size: .95rem; }
    .contacts-list .ci { font-size: 1.3rem; }

    /* ===== FOOTER ===== */
    .footer {
      background: #1a1a2e;
      color: #aaa;
      padding: 24px 0;
      font-size: .82rem;
      text-align: center;
    }
    .footer span { color: #fff; }

    /* ===== RESPONSIVE ===== */
    @media (max-width: 768px) {
      .section { padding: 48px 0; }
      .hero { padding: 52px 0 48px; }
      .hero__tiles { grid-template-columns: 1fr; }
      .form-card { padding: 24px 20px; }
      .form-grid { grid-template-columns: 1fr; }
      .form-grid .span-2 { grid-column: auto; }
      .prices-grid { grid-template-columns: 1fr; }
      .dates-inner { grid-template-columns: 1fr; }
      .delivery-grid { grid-template-columns: 1fr; }
      .photo-placeholder { grid-template-columns: repeat(2, 1fr); }
      .steps { flex-direction: column; gap: 24px; }
      .steps::before { display: none; }
      .contacts-grid { grid-template-columns: 1fr; }
      .cta-btns { flex-direction: column; align-items: stretch; }
      .cta-btns .btn { justify-content: center; }
    }
    @media (max-width: 480px) {
      .hero__btns { flex-direction: column; }
      .hero__btns .btn { justify-content: center; }
      .hero__tiles { grid-template-columns: 1fr; }
      .photo-placeholder { grid-template-columns: 1fr 1fr; }
    }