:root {
    --color-primary: #C53588;
    --color-secondary: #623865;
    --color-accent: #8E4194;
    --color-bg: #F9F9FC;
    --color-surface: #FFFFFF;
    --color-surface-alt: #F3E5F0;
    --color-text: #1A1030;
    --color-muted: #7A6D8E;
    --radius-lg: 1.5rem;
    --radius-md: 1rem;
    --shadow-soft: 0 18px 40px rgba(19, 8, 42, 0.18);
    --shadow-subtle: 0 10px 30px rgba(19, 8, 42, 0.12);
  }
  
  *,
  *::before,
  *::after {
    box-sizing: border-box;
  }
  
  html {
    scroll-behavior: smooth;
  }
  
  body {
    margin: 0;
    font-family: "Poppins", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
    background: radial-gradient(circle at top left, #F8F2F8 0, #F9F9FC 40%, #FFFFFF 100%);
    color: var(--color-text);
  }
  
  /* Layout utils */
  
  .container {
    width: 100%;
    max-width: 1120px;
    margin: 0 auto;
    padding: 0 1.5rem;
  }
  
  .section {
    padding: 4.5rem 0;
  }
  
  .section--alt {
    background: linear-gradient(135deg, #F8F2F8, #FFFFFF);
  }
  
  .section__header {
    max-width: 640px;
    margin: 0 auto 2.5rem;
    text-align: center;
  }
  
  .section__header h2 {
    font-size: 2rem;
    margin: 0 0 0.5rem;
  }
  
  .section__header p {
    margin: 0;
    color: var(--color-muted);
    font-size: 0.98rem;
  }
  
  .grid {
    display: grid;
    gap: 1.75rem;
  }
  
  .grid--2 {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
  
  .grid--3 {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
  
  .align-center {
    align-items: center;
  }
  
  /* Header */
  
  .header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(249, 249, 252, 0.92);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.6);
  }
  
  .header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem 0;
    gap: 1rem;
  }
  
  .brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    color: inherit;
  }
  
  .brand__logo {
    width: 44px;
    height: 44px;
    object-fit: cover;
    border-radius: 50%;
    box-shadow: var(--shadow-subtle);
  }
  
  .brand__text {
    display: flex;
    flex-direction: column;
  }
  
  .brand__title {
    font-weight: 700;
    font-size: 1.1rem;
  }
  
  .brand__subtitle {
    font-size: 0.78rem;
    color: var(--color-muted);
  }
  
  /* Nav */
  
  .nav {
    display: none;
  }
  
  .nav ul {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    list-style: none;
    margin: 0;
    padding: 0;
  }
  
  .nav a {
    text-decoration: none;
    color: var(--color-muted);
    font-size: 0.9rem;
    font-weight: 500;
  }
  
  .nav a:hover {
    color: var(--color-primary);
  }
  
  /* Nav Toggle (mobile) */
  
  .nav-toggle {
    border: none;
    background: transparent;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    padding: 0.2rem;
  }
  
  .nav-toggle span {
    width: 22px;
    height: 2px;
    border-radius: 999px;
    background: var(--color-text);
    transition: transform 0.2s ease, opacity 0.2s ease;
  }
  
  .nav--open {
    display: block;
    position: absolute;
    top: 56px;
    right: 1.5rem;
    background: var(--color-surface);
    border-radius: 999px;
    box-shadow: var(--shadow-soft);
    padding: 0.75rem 1.25rem;
  }
  
  .nav--open ul {
    flex-direction: column;
    align-items: flex-start;
  }
  
  /* Buttons */
  
  .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.35rem;
    padding: 0.8rem 1.7rem;
    border-radius: 999px;
    border: none;
    background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
    color: #fff;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    cursor: pointer;
    box-shadow: var(--shadow-soft);
    transition: transform 0.15s ease, box-shadow 0.15s ease, opacity 0.15s ease;
    white-space: nowrap;
  }
  
  .btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 22px 48px rgba(19, 8, 42, 0.22);
  }
  
  .btn--ghost {
    background: transparent;
    color: var(--color-primary);
    border: 1px solid rgba(197, 53, 136, 0.3);
    box-shadow: none;
  }
  
  .btn--ghost:hover {
    background: rgba(197, 53, 136, 0.05);
  }
  
  .btn--small {
    padding: 0.4rem 0.9rem;
    font-size: 0.82rem;
  }
  
  .btn--full {
    width: 100%;
  }
  
  /* Hero */
  
  .hero {
    padding: 4.5rem 0 3.5rem;
  }
  
  .hero__inner {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  
  .hero__content h1 {
    font-size: 2.1rem;
    line-height: 1.1;
    margin: 0 0 1rem;
  }
  
  .hero__content h1 span {
    color: var(--color-primary);
  }
  
  .hero__content p {
    margin: 0 0 1.5rem;
    color: var(--color-muted);
    font-size: 0.98rem;
  }
  
  .hero__badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
  }
  
  .badge {
    padding: 0.4rem 0.8rem;
    border-radius: 999px;
    background: rgba(197, 53, 136, 0.08);
    color: var(--color-secondary);
    font-size: 0.78rem;
    font-weight: 500;
  }
  
  .hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 1.25rem;
  }
  
  .hero__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    font-size: 0.8rem;
    color: var(--color-muted);
  }
  
  .hero__meta span::before {
    content: "• ";
  }
  
  .hero__visual {
    display: flex;
    justify-content: center;
  }
  
  .hero__card {
    position: relative;
    background: radial-gradient(circle at top left, #F8F2F8, #C53588);
    border-radius: 1.75rem;
    box-shadow: var(--shadow-soft);
    padding: 1.3rem;
    max-width: 360px;
  }
  
  .hero__image {
    display: block;
    width: 100%;
    border-radius: 1.25rem;
  }
  
  .hero__floating-tag {
    position: absolute;
    bottom: 1.4rem;
    left: 50%;
    transform: translateX(-50%);
    background: #1A1030;
    color: #fff;
    font-size: 0.78rem;
    padding: 0.45rem 0.9rem;
    border-radius: 999px;
    box-shadow: 0 12px 26px rgba(9, 4, 24, 0.3);
  }
  
  /* Cards */
  
  .card {
    background: var(--color-surface);
    border-radius: var(--radius-md);
    padding: 1.4rem 1.4rem 1.3rem;
    box-shadow: var(--shadow-subtle);
  }
  
  .card h3 {
    margin: 0 0 0.6rem;
    font-size: 1.05rem;
  }
  
  .card p {
    margin: 0;
    font-size: 0.9rem;
    color: var(--color-muted);
  }
  
  .card--soft {
    background: rgba(243, 229, 240, 0.6);
    border: 1px solid rgba(197, 53, 136, 0.15);
  }
  
  /* Lists */
  
  .pill-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 0.55rem;
    font-size: 0.9rem;
    color: var(--color-muted);
  }
  
  .pill-list li {
    padding: 0.4rem 0.8rem;
    border-radius: 999px;
    background: rgba(142, 65, 148, 0.06);
  }
  
  .check-list {
    list-style: none;
    padding: 0;
    margin: 0.75rem 0 0;
    display: grid;
    gap: 0.45rem;
    font-size: 0.88rem;
    color: var(--color-muted);
  }
  
  .check-list li::before {
    content: "✔";
    color: var(--color-primary);
    font-size: 0.8rem;
    margin-right: 0.35rem;
  }
  
  /* Accent card */
  
  .accent-card {
    background: radial-gradient(circle at top left, #C53588, #8E4194);
    color: #fff;
    border-radius: var(--radius-lg);
    padding: 1.75rem 1.7rem;
    box-shadow: var(--shadow-soft);
  }
  
  .accent-card h3 {
    margin: 0 0 0.6rem;
  }
  
  .accent-card p {
    margin: 0 0 0.8rem;
    font-size: 0.94rem;
  }
  
  /* Timeline */
  
  .timeline {
    position: relative;
    display: grid;
    gap: 1.75rem;
  }
  
  .timeline__step {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 0.9rem;
  }
  
  .timeline__number {
    width: 28px;
    height: 28px;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    font-weight: 600;
  }
  
  .timeline__content h3 {
    margin: 0 0 0.3rem;
    font-size: 1rem;
  }
  
  .timeline__content p {
    margin: 0;
    font-size: 0.9rem;
    color: var(--color-muted);
  }
  
  /* Flotilla */
  
  .fleet__image {
    width: 100%;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-soft);
  }
  
  .fleet__stats {
    display: grid;
    gap: 0.9rem;
  }
  
  .stat {
    background: var(--color-surface);
    border-radius: 1rem;
    padding: 0.9rem 1rem;
    box-shadow: var(--shadow-subtle);
  }
  
  .stat__number {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--color-primary);
  }
  
  .stat__label {
    display: block;
    font-size: 0.85rem;
    color: var(--color-muted);
  }
  
  .fleet__note {
    margin: 0.4rem 0 0;
    font-size: 0.78rem;
    color: var(--color-muted);
  }
  
  /* CTA & Form */
  
  .section--cta {
    background: radial-gradient(circle at top left, #C53588, #623865);
    color: #fff;
  }
  
  .section--cta__inner {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .section--cta__content h2 {
    margin: 0 0 0.7rem;
  }
  
  .section--cta__content p {
    margin: 0 0 0.8rem;
    font-size: 0.96rem;
  }
  
  .section--cta .check-list {
    color: #FDEDFC;
  }
  
  .form {
    background: #fff;
    color: var(--color-text);
    border-radius: 1.5rem;
    padding: 1.6rem 1.5rem 1.4rem;
    box-shadow: var(--shadow-soft);
  }
  
  .form__row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.9rem;
    margin-bottom: 0.9rem;
  }
  
  .form__field {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
    margin-bottom: 0.8rem;
  }
  
  .form__field label {
    font-size: 0.82rem;
    font-weight: 500;
  }
  
  .form__field input,
  .form__field select,
  .form__field textarea {
    border-radius: 0.75rem;
    border: 1px solid rgba(122, 109, 142, 0.35);
    padding: 0.6rem 0.8rem;
    font-family: inherit;
    font-size: 0.9rem;
    outline: none;
    transition: border-color 0.15s ease, box-shadow 0.15s ease;
  }
  
  .form__field input:focus,
  .form__field select:focus,
  .form__field textarea:focus {
    border-color: var(--color-primary);
    box-shadow: 0 0 0 1px rgba(197, 53, 136, 0.35);
  }
  
  .form__hint {
    margin: 0.5rem 0 0;
    font-size: 0.78rem;
    color: var(--color-muted);
  }
  
  /* Footer */
  
  .footer {
    padding: 1.5rem 0 2rem;
    background: #10091e;
    color: #d3cbe9;
  }
  
  .footer__inner {
    text-align: center;
    font-size: 0.82rem;
  }
  
  .footer__small {
    margin-top: 0.25rem;
    color: #9d8fc0;
  }
  
  /* Responsive */
  
  @media (min-width: 720px) {
    .nav {
      display: block;
    }
  
    .nav--open {
      position: static;
      box-shadow: none;
      padding: 0;
      background: transparent;
    }
  
    .nav-toggle {
      display: none;
    }
  
    .hero__inner {
      grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
      align-items: center;
    }
  
    .hero__content h1 {
      font-size: 2.6rem;
    }
  
    .grid--2 {
      grid-template-columns: repeat(2, minmax(0, 1fr));
    }
  
    .grid--3 {
      grid-template-columns: repeat(3, minmax(0, 1fr));
    }
  
    .section--cta__inner {
      grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
      align-items: flex-start;
    }
  
    .form__row {
      grid-template-columns: repeat(2, minmax(0, 1fr));
    }
  }
  
  @media (min-width: 980px) {
    .hero {
      padding: 5rem 0 4.5rem;
    }
  
    .hero__card {
      max-width: 400px;
    }
  }
  