    :root {
      --pink: #f22b8c;
      --pink-dark: #c81469;
      --pink-soft: #ffe4f0;
      --navy: #10264c;
      --navy-2: #203f78;
      --gold: #f4b64a;
      --cream: #fff8ef;
      --white: #ffffff;
      --text: #243044;
      --muted: #697386;
      --border: rgba(16, 38, 76, .10);
      --shadow: 0 22px 60px rgba(16, 38, 76, .14);
      --radius: 28px;
    }

    * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
      color: var(--text);
      background:
        radial-gradient(circle at 12% 8%, rgba(242, 43, 140, .13), transparent 30%),
        radial-gradient(circle at 90% 12%, rgba(244, 182, 74, .18), transparent 32%),
        linear-gradient(180deg, #fff 0%, var(--cream) 100%);
      overflow-x: hidden;
    }

    a {
      color: inherit;
      text-decoration: none;
    }

    img {
      display: block;
      max-width: 100%;
    }

    .topbar {
      position: sticky;
      top: 0;
      z-index: 50;
      background: rgba(255, 255, 255, .86);
      border-bottom: 1px solid rgba(16, 38, 76, .08);
      backdrop-filter: blur(18px);
    }

    .nav {
      width: min(1180px, calc(100% - 44px));
      margin: auto;
      padding: 14px 0;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 18px;
    }

    .brand {
      display: flex;
      align-items: center;
      gap: 12px;
      color: var(--navy);
      font-weight: 900;
      letter-spacing: -.03em;
    }

    .brand img {
      width: 74px;
      height: auto;
    }

    .nav-links {
      display: flex;
      align-items: center;
      gap: 22px;
      color: var(--navy);
      font-size: .95rem;
      font-weight: 800;
    }

    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      padding: 14px 20px;
      border: 0;
      border-radius: 999px;
      font-weight: 900;
      cursor: pointer;
      transition: .25s ease;
    }

    .btn-primary {
      color: white;
      background: var(--pink);
      box-shadow: 0 12px 26px rgba(242, 43, 140, .23);
    }

    .btn-primary:hover {
      transform: translateY(-2px);
      background: var(--pink-dark);
      box-shadow: 0 18px 34px rgba(242, 43, 140, .32);
    }

    .btn-secondary {
      color: var(--navy);
      background: white;
      border: 1px solid rgba(16, 38, 76, .12);
    }

    .btn-secondary:hover {
      transform: translateY(-2px);
      box-shadow: 0 14px 30px rgba(16, 38, 76, .10);
    }

    .btn-instagram {
      position: relative;
      overflow: hidden;
      color: white;
      background:
        radial-gradient(circle at 20% 20%, rgba(255, 255, 255, .38), transparent 24%),
        linear-gradient(135deg, #833ab4 0%, #fd1d1d 48%, #fcb045 100%);
      box-shadow: 0 16px 34px rgba(242, 43, 140, .28);
    }

    .btn-instagram::after {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(110deg, transparent 0%, rgba(255,255,255,.34) 45%, transparent 62%);
      transform: translateX(-120%);
      transition: transform .55s ease;
      pointer-events: none;
    }

    .btn-instagram:hover {
      transform: translateY(-2px);
      box-shadow: 0 20px 42px rgba(242, 43, 140, .38);
    }

    .btn-instagram:hover::after {
      transform: translateX(120%);
    }

    .btn-instagram span {
      position: relative;
      z-index: 1;
    }

    .btn-icon {
      width: 24px;
      height: 24px;
      display: inline-grid;
      place-items: center;
      border-radius: 50%;
      background: rgba(255, 255, 255, .22);
      font-size: .96rem;
      line-height: 1;
    }

    body.modal-open {
      overflow: hidden;
    }

    .welcome-modal {
      position: fixed;
      inset: 0;
      z-index: 100;
      display: grid;
      place-items: center;
      padding: 18px;
      background: rgba(16, 38, 76, .46);
      opacity: 0;
      pointer-events: none;
      backdrop-filter: blur(10px);
      transition: opacity .28s ease;
    }

    .welcome-modal.is-visible {
      opacity: 1;
      pointer-events: auto;
    }

    .welcome-dialog {
      position: relative;
      width: min(100%, 510px);
      max-height: min(720px, calc(100vh - 36px));
      overflow: auto;
      padding: 24px;
      border: 1px solid rgba(255, 255, 255, .7);
      border-radius: 28px;
      background:
        radial-gradient(circle at 10% 0%, rgba(242, 43, 140, .18), transparent 34%),
        linear-gradient(145deg, rgba(255, 255, 255, .98), rgba(255, 248, 239, .96));
      box-shadow: 0 30px 90px rgba(16, 38, 76, .28);
      transform: translateY(18px) scale(.97);
      transition: transform .32s ease;
    }

    .welcome-modal.is-visible .welcome-dialog {
      transform: translateY(0) scale(1);
    }

    .modal-close {
      position: absolute;
      top: 14px;
      right: 14px;
      width: 42px;
      height: 42px;
      border: 0;
      border-radius: 50%;
      display: grid;
      place-items: center;
      color: var(--navy);
      background: rgba(16, 38, 76, .08);
      font-size: 1.45rem;
      line-height: 1;
      cursor: pointer;
      transition: .2s ease;
    }

    .modal-close:hover,
    .modal-close:focus-visible {
      color: white;
      background: var(--pink);
      outline: none;
      transform: rotate(90deg);
    }

    .modal-logo {
      width: 92px;
      height: 92px;
      margin: 0 auto 16px;
      padding: 10px;
      border-radius: 26px;
      background: white;
      box-shadow: 0 16px 34px rgba(16, 38, 76, .12);
    }

    .modal-logo img {
      width: 100%;
      height: 100%;
      object-fit: contain;
    }

    .modal-kicker {
      width: fit-content;
      margin: 0 auto 12px;
      padding: 8px 12px;
      border-radius: 999px;
      color: var(--pink);
      background: rgba(242, 43, 140, .10);
      font-size: .84rem;
      font-weight: 900;
    }

    .welcome-dialog h2 {
      max-width: 420px;
      margin: 0 auto 14px;
      color: var(--navy);
      text-align: center;
      font-size: clamp(2rem, 10vw, 3.35rem);
      line-height: .96;
      letter-spacing: -.06em;
    }

    .welcome-dialog p {
      max-width: 420px;
      margin: 0 auto 20px;
      color: var(--muted);
      text-align: center;
      font-size: 1.03rem;
      line-height: 1.6;
    }

    .modal-actions {
      display: grid;
      gap: 12px;
    }

    .modal-actions .btn {
      width: 100%;
      min-height: 54px;
    }

    .modal-profile {
      margin-top: 16px;
      padding: 14px;
      border-radius: 20px;
      color: var(--navy);
      background: rgba(16, 38, 76, .06);
      text-align: center;
      font-size: .94rem;
      font-weight: 800;
    }

    .hero {
      width: min(1180px, calc(100% - 44px));
      min-height: 680px;
      margin: auto;
      padding: 76px 0 44px;
      display: grid;
      grid-template-columns: 1.05fr .95fr;
      align-items: center;
      gap: 42px;
    }

    .eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      margin-bottom: 20px;
      padding: 9px 14px;
      border-radius: 999px;
      color: var(--pink);
      background: rgba(242, 43, 140, .10);
      font-weight: 900;
    }

    h1 {
      margin-bottom: 24px;
      color: var(--navy);
      font-size: clamp(3rem, 7vw, 6.8rem);
      line-height: .88;
      letter-spacing: -.08em;
    }

    h1 span {
      display: block;
      color: var(--pink);
      font-family: "Brush Script MT", "Segoe Script", cursive;
      font-weight: 500;
      letter-spacing: -.02em;
    }

    .hero p {
      max-width: 620px;
      margin-bottom: 28px;
      color: var(--muted);
      font-size: clamp(1.08rem, 2vw, 1.35rem);
      line-height: 1.65;
    }

    .hero-actions {
      display: flex;
      gap: 14px;
      flex-wrap: wrap;
    }

    .hero-card {
      position: relative;
      overflow: hidden;
      padding: 34px;
      border: 1px solid rgba(16, 38, 76, .08);
      border-radius: 44px;
      background: rgba(255, 255, 255, .72);
      box-shadow: var(--shadow);
    }

    .hero-card::before {
      content: "";
      position: absolute;
      inset: -80px -90px auto auto;
      width: 220px;
      height: 220px;
      border-radius: 50%;
      background: rgba(242, 43, 140, .14);
    }

    .logo-wrap {
      position: relative;
      z-index: 2;
      min-height: 360px;
      display: grid;
      place-items: center;
    }

    .logo-wrap img {
      width: min(460px, 92%);
      filter: drop-shadow(0 18px 24px rgba(16, 38, 76, .10));
      animation: float 4.5s ease-in-out infinite;
    }

    @keyframes float {
      0%, 100% { transform: translateY(0) rotate(-1deg); }
      50% { transform: translateY(-12px) rotate(1deg); }
    }

    .sparkle {
      position: absolute;
      border-radius: 50%;
      background: var(--gold);
      box-shadow: 0 0 26px rgba(244, 182, 74, .8);
      animation: pulse 2s ease-in-out infinite;
    }

    .s1 { width: 12px; height: 12px; top: 16%; left: 15%; }
    .s2 { width: 8px; height: 8px; right: 18%; top: 27%; animation-delay: .4s; }
    .s3 { width: 14px; height: 14px; bottom: 18%; left: 23%; animation-delay: .8s; }

    @keyframes pulse {
      50% { transform: scale(1.7); opacity: .45; }
    }

    section {
      padding: 70px 0;
    }

    .section-inner {
      width: min(1180px, calc(100% - 44px));
      margin: auto;
    }

    .section-title {
      display: flex;
      align-items: end;
      justify-content: space-between;
      gap: 22px;
      margin-bottom: 30px;
    }

    h2 {
      color: var(--navy);
      font-size: clamp(2rem, 4vw, 3.5rem);
      line-height: 1;
      letter-spacing: -.06em;
    }

    .section-title p {
      max-width: 540px;
      color: var(--muted);
      font-size: 1.05rem;
      line-height: 1.6;
    }

    .services {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 20px;
    }

    .service-card {
      min-height: 245px;
      padding: 28px;
      border: 1px solid rgba(16, 38, 76, .07);
      border-radius: var(--radius);
      background: white;
      box-shadow: 0 14px 36px rgba(16, 38, 76, .08);
      transition: .25s ease;
    }

    .service-card:hover {
      transform: translateY(-6px);
      box-shadow: var(--shadow);
    }

    .icon {
      width: 58px;
      height: 58px;
      margin-bottom: 18px;
      border-radius: 20px;
      display: grid;
      place-items: center;
      color: var(--pink);
      background: var(--pink-soft);
      font-size: 1.8rem;
    }

    .service-card h3 {
      margin-bottom: 12px;
      color: var(--navy);
      font-size: 1.35rem;
      letter-spacing: -.03em;
    }

    .service-card p {
      color: var(--muted);
      line-height: 1.65;
    }

    .social-zone {
      position: relative;
      overflow: hidden;
      color: white;
      background: linear-gradient(135deg, var(--navy), var(--navy-2));
    }

    .social-zone::before {
      content: "";
      position: absolute;
      top: -240px;
      right: -160px;
      width: 520px;
      height: 520px;
      border-radius: 50%;
      background: rgba(242, 43, 140, .28);
    }

    .social-zone h2 {
      color: white;
    }

    .social-zone .section-title p {
      color: rgba(255, 255, 255, .76);
    }

    .social-grid {
      position: relative;
      z-index: 2;
      display: grid;
      grid-template-columns: 1.05fr .95fr;
      gap: 22px;
      align-items: start;
    }

    .social-card {
      padding: 28px;
      border: 1px solid rgba(255, 255, 255, .18);
      border-radius: 32px;
      background: rgba(255, 255, 255, .10);
      backdrop-filter: blur(12px);
    }

    .tag {
      display: inline-flex;
      width: fit-content;
      margin-bottom: 18px;
      padding: 8px 12px;
      border-radius: 999px;
      color: white;
      background: rgba(255, 255, 255, .16);
      font-size: .85rem;
      font-weight: 900;
    }

    .social-card h3 {
      margin-bottom: 18px;
      color: white;
      font-size: clamp(1.8rem, 3vw, 3rem);
      line-height: 1;
      letter-spacing: -.05em;
    }

    .social-card h4 {
      margin-bottom: 10px;
      color: white;
      font-size: 1.25rem;
    }

    .social-card p {
      color: rgba(255, 255, 255, .78);
      line-height: 1.65;
    }

    .social-actions {
      display: flex;
      gap: 12px;
      flex-wrap: wrap;
      margin-top: 22px;
    }

    .dm-prompt {
      margin-top: 20px;
      padding: 18px;
      border: 1px solid rgba(255, 255, 255, .16);
      border-radius: 24px;
      background:
        linear-gradient(135deg, rgba(131, 58, 180, .34), rgba(253, 29, 29, .22), rgba(252, 176, 69, .22)),
        rgba(255, 255, 255, .08);
    }

    .dm-prompt strong {
      display: block;
      margin-bottom: 6px;
      color: white;
      font-size: 1.05rem;
    }

    .dm-prompt p {
      margin-bottom: 14px;
    }

    .fb-wrapper {
      overflow: hidden;
      margin-top: 18px;
      border-radius: 22px;
      background: white;
    }

    .fb-page,
    .fb-page span,
    .fb-page iframe {
      max-width: 100% !important;
      width: 100% !important;
    }

    .ig-carousel-list {
      display: grid;
      gap: 14px;
      margin-top: 22px;
    }

    .ig-carousel-card {
      display: grid;
      grid-template-columns: 94px 1fr;
      gap: 16px;
      align-items: center;
      padding: 14px;
      border: 1px solid rgba(255, 255, 255, .16);
      border-radius: 24px;
      background: rgba(255, 255, 255, .09);
      transition: .25s ease;
    }

    .ig-carousel-card:hover {
      transform: translateY(-3px);
      background: rgba(255, 255, 255, .13);
    }

    .ig-carousel-thumb {
      width: 94px;
      height: 94px;
      border-radius: 20px;
      display: grid;
      place-items: center;
      color: white;
      background:
        linear-gradient(145deg, rgba(242, 43, 140, .95), rgba(244, 182, 74, .78)),
        radial-gradient(circle at 20% 20%, rgba(255,255,255,.35), transparent 30%);
      font-size: 2rem;
      font-weight: 900;
      box-shadow: 0 14px 28px rgba(0,0,0,.12);
    }

    .ig-carousel-content h4 {
      margin-bottom: 8px;
      color: white;
      font-size: 1.13rem;
      line-height: 1.2;
    }

    .ig-carousel-content p {
      margin-bottom: 12px;
      color: rgba(255, 255, 255, .78);
      font-size: .98rem;
      line-height: 1.5;
    }

    .ig-carousel-link {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      color: white;
      font-size: .92rem;
      font-weight: 900;
      text-decoration: underline;
      text-underline-offset: 4px;
    }

    .insta-note {
      margin-top: 16px;
      padding: 14px;
      border-radius: 18px;
      color: rgba(255,255,255,.82);
      background: rgba(255,255,255,.08);
      font-size: .95rem;
      line-height: 1.55;
    }

    .steps {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 18px;
      counter-reset: steps;
    }

    .step {
      counter-increment: steps;
      padding: 24px;
      border: 1px solid rgba(16, 38, 76, .08);
      border-radius: 26px;
      background: rgba(255, 255, 255, .78);
    }

    .step::before {
      content: counter(steps);
      width: 42px;
      height: 42px;
      margin-bottom: 18px;
      border-radius: 50%;
      display: grid;
      place-items: center;
      color: white;
      background: var(--navy);
      font-weight: 900;
    }

    .step h3 {
      margin-bottom: 10px;
      color: var(--navy);
    }

    .step p {
      color: var(--muted);
      line-height: 1.55;
    }

    .cta {
      width: min(1180px, calc(100% - 44px));
      margin: auto;
      padding: 46px;
      overflow: hidden;
      border-radius: 42px;
      color: white;
      text-align: center;
      box-shadow: var(--shadow);
      background:
        linear-gradient(135deg, rgba(242, 43, 140, .96), rgba(255, 115, 174, .92)),
        url('/images/logo_hero.png') center/contain no-repeat;
    }

    .cta h2 {
      margin-bottom: 18px;
      color: white;
    }

    .cta p {
      max-width: 760px;
      margin: 0 auto 26px;
      color: rgba(255, 255, 255, .92);
      font-size: 1.12rem;
      line-height: 1.7;
    }

    .cta-actions {
      display: flex;
      justify-content: center;
      gap: 14px;
      flex-wrap: wrap;
    }

    footer {
      padding: 42px 22px;
      color: var(--muted);
      text-align: center;
    }

    .reveal {
      opacity: 0;
      transform: translateY(26px);
      transition: .7s ease;
    }

    .reveal.visible {
      opacity: 1;
      transform: translateY(0);
    }

    @media (max-width: 960px) {
      .hero,
      .social-grid {
        grid-template-columns: 1fr;
      }

      .hero {
        min-height: auto;
        padding-top: 42px;
      }

      .services,
      .steps {
        grid-template-columns: repeat(2, 1fr);
      }

      .nav {
        width: min(1180px, calc(100% - 28px));
        gap: 12px;
      }

      .brand img {
        width: 62px;
      }

      .nav-links {
        gap: 14px;
        font-size: .9rem;
      }

      .nav-links .btn {
        width: auto;
        padding: 12px 16px;
        white-space: nowrap;
      }

      .section-title {
        display: block;
      }

      .section-title p {
        margin-top: 16px;
      }
    }

    @media (max-width: 640px) {
      .brand span {
        display: none;
      }

      .nav {
        align-items: center;
      }

      .nav-links {
        gap: 10px;
        font-size: .84rem;
      }

      .nav-links .btn {
        width: auto;
        padding: 11px 14px;
      }

      .hero-actions,
      .social-actions,
      .cta-actions {
        flex-direction: column;
      }

      .btn {
        width: 100%;
      }

      .hero-card {
        padding: 22px;
        border-radius: 30px;
      }

      .logo-wrap {
        min-height: 270px;
      }

      .services,
      .steps {
        grid-template-columns: 1fr;
      }

      .ig-carousel-card {
        grid-template-columns: 1fr;
      }

      .ig-carousel-thumb {
        width: 100%;
        height: 82px;
      }

      .cta {
        padding: 34px 20px;
        border-radius: 30px;
      }
    }

    @media (max-width: 520px) {
      .nav {
        flex-wrap: wrap;
        justify-content: center;
        padding: 10px 0 12px;
      }

      .brand {
        width: 100%;
        justify-content: center;
      }

      .brand img {
        width: 56px;
      }

      .nav-links {
        width: 100%;
        justify-content: center;
        gap: 8px;
        flex-wrap: wrap;
      }

      .nav-links a:not(.btn) {
        padding: 8px 4px;
      }

      .nav-links .btn {
        min-width: 152px;
      }
    }
