﻿:root {
      --ink: #141414;
      --paper: #f5f8fb;
      --ivory: #eef5fa;
      --champagne: #d6a649;
      --gold: #b98928;
      --emerald: #173e61;
      --ruby: #7c1d2e;
      --charcoal: #152333;
      --mist: #e6eef6;
      --line: rgba(20, 20, 20, 0.14);
      --shadow: 0 24px 70px rgba(0, 0, 0, 0.16);
      --glow: 0 0 0 1px rgba(214, 166, 73, 0.26), 0 22px 46px rgba(214, 166, 73, 0.24);
      --soft-shadow: 0 18px 44px rgba(23, 62, 97, 0.11);
      --radius: 8px;
      --max: 1180px;
      --heading: "Playfair Display", Georgia, "Times New Roman", serif;
      --body: "Plus Jakarta Sans", Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
    }

    * {
      box-sizing: border-box;
    }

    html {
      scroll-behavior: smooth;
      scroll-padding-top: 112px;
      overflow-x: hidden;
    }

    body {
      margin: 0;
      font-family: var(--body);
      color: var(--ink);
      background:
        radial-gradient(circle at 18% 8%, rgba(214, 166, 73, 0.12), transparent 28%),
        linear-gradient(180deg, #f8fbfd, var(--paper));
      line-height: 1.55;
      text-rendering: optimizeLegibility;
      -webkit-font-smoothing: antialiased;
      overflow-x: hidden;
    }

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

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

    .topbar {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      z-index: 20;
      border-bottom: 1px solid rgba(214, 166, 73, 0.22);
      background: linear-gradient(90deg, rgba(9, 20, 31, 0.96), rgba(25, 48, 68, 0.94));
      color: #fff;
      backdrop-filter: blur(18px);
      animation: slideDown 0.75s ease both;
    }

    .topbar::after {
      content: "";
      position: absolute;
      left: 0;
      right: 0;
      bottom: -1px;
      height: 1px;
      background: linear-gradient(90deg, transparent, rgba(244, 199, 98, 0.7), transparent);
    }

    .nav {
      width: min(1280px, calc(100% - 48px));
      min-height: 92px;
      margin: 0 auto;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 32px;
    }

    .brand {
      display: inline-flex;
      align-items: center;
      width: 270px;
      height: 70px;
      max-width: 34vw;
      color: #fff;
      overflow: hidden;
    }

    .brand-logo {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center;
      filter: drop-shadow(0 0 16px rgba(255, 255, 255, 0.38));
      transition: transform 0.35s ease, filter 0.35s ease;
    }

    .brand:hover .brand-logo {
      transform: scale(1.08);
      filter: drop-shadow(0 0 24px rgba(255, 255, 255, 0.58));
    }

    .nav-links {
      display: flex;
      align-items: center;
      gap: 6px;
      margin-left: auto;
      padding: 7px;
      border: 1px solid rgba(255, 255, 255, 0.08);
      border-radius: 999px;
      background: rgba(255, 255, 255, 0.045);
      font-size: 14px;
      color: rgba(255, 255, 255, 0.82);
    }

    .nav-links a {
      position: relative;
      padding: 11px 15px;
      border-radius: 999px;
      transition: color 0.25s ease, background 0.25s ease;
    }

    .nav-links a::after {
      display: none;
    }

    .nav-links a:hover {
      color: #fff;
      background: rgba(214, 166, 73, 0.15);
    }

    .nav-links a:hover::after {
      opacity: 1;
      transform: scaleX(1);
    }

    .btn {
      min-height: 48px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      border: 0;
      border-radius: 999px;
      padding: 0 22px;
      font-weight: 800;
      cursor: pointer;
      position: relative;
      overflow: hidden;
      isolation: isolate;
      transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, color 0.25s ease;
      white-space: nowrap;
      text-align: center;
    }

    .btn::before {
      content: "";
      position: absolute;
      inset: -120% auto -120% -65%;
      width: 52%;
      background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.62), transparent);
      transform: rotate(18deg);
      transition: left 0.65s ease;
      z-index: -1;
    }

    .btn:hover {
      transform: translateY(-3px);
    }

    .btn:hover::before {
      left: 120%;
    }

    .btn-primary {
      background: linear-gradient(135deg, #f4c762 0%, var(--champagne) 48%, #a97820 100%);
      color: #17120a;
      box-shadow: 0 14px 28px rgba(0, 0, 0, 0.2);
    }

    .btn-primary:hover {
      box-shadow: var(--glow);
    }

    .btn-danger {
      background:
        linear-gradient(135deg, rgba(255, 236, 236, 0.98) 0%, #e88a8a 44%, #a73535 100%);
      color: #2a0909;
      box-shadow: 0 14px 28px rgba(120, 22, 22, 0.18);
    }

    .btn-danger:hover {
      box-shadow: 0 0 0 1px rgba(232, 138, 138, 0.38), 0 18px 42px rgba(120, 22, 22, 0.24);
    }

    .btn:disabled {
      cursor: not-allowed;
      opacity: 0.68;
      transform: none;
    }

    .btn-dark {
      background: var(--ink);
      color: #fff;
    }

    .btn-light {
      background: rgba(255, 255, 255, 0.94);
      color: var(--ink);
      border: 1px solid rgba(255, 255, 255, 0.72);
      box-shadow: 0 14px 28px rgba(0, 0, 0, 0.12);
    }

    .btn-light:hover {
      background: #fff;
      box-shadow: 0 18px 42px rgba(0, 0, 0, 0.22);
    }

    .hero {
      min-height: 100vh;
      display: grid;
      align-items: center;
      position: relative;
      overflow: hidden;
      color: #fff;
      background:
        linear-gradient(90deg, rgba(7, 17, 28, 0.96) 0%, rgba(12, 37, 59, 0.76) 42%, rgba(12, 37, 59, 0.16) 78%),
        url("assets/optimized/front-view-1280-v2.webp") center / cover no-repeat;
    }

    @supports (background-image: image-set(url("assets/optimized/front-view-768-v2.webp") 1x)) {
      .hero {
        background:
          linear-gradient(90deg, rgba(7, 17, 28, 0.96) 0%, rgba(12, 37, 59, 0.76) 42%, rgba(12, 37, 59, 0.16) 78%),
          image-set(
            url("assets/optimized/front-view-768-v2.webp") 1x,
            url("assets/optimized/front-view-1280-v2.webp") 2x
          ) center / cover no-repeat;
      }
    }

    .hero::after {
      content: "";
      position: absolute;
      inset: auto 0 0 0;
      height: 28%;
      background: linear-gradient(0deg, rgba(0, 0, 0, 0.58), transparent);
      pointer-events: none;
    }

    .hero-inner {
      width: min(var(--max), calc(100% - 32px));
      margin: 0 auto;
      padding: 132px 0 54px;
      position: relative;
      z-index: 1;
      display: grid;
      grid-template-columns: minmax(0, 640px) minmax(300px, 1fr);
      gap: 44px;
      align-items: center;
    }

    .eyebrow {
      display: inline-flex;
      width: fit-content;
      align-items: center;
      gap: 10px;
      border: 1px solid rgba(255, 255, 255, 0.24);
      background: rgba(255, 255, 255, 0.1);
      padding: 8px 12px;
      border-radius: 999px;
      color: #ffe3a1;
      font-size: 13px;
      font-weight: 800;
      text-transform: uppercase;
      letter-spacing: 0;
    }

    .spark {
      width: 9px;
      aspect-ratio: 1;
      background: var(--champagne);
      transform: rotate(45deg);
      box-shadow: 0 0 20px rgba(255, 214, 122, 0.8);
    }

    .hero-logo {
      width: min(560px, 94vw);
      height: auto;
      aspect-ratio: 14 / 5;
      margin: 0 0 22px;
      object-fit: cover;
      object-position: center;
      filter: drop-shadow(0 18px 38px rgba(0, 0, 0, 0.45));
      animation: fadeLift 0.8s 0.1s ease both;
    }

    h1,
    h2,
    h3,
    p {
      margin-top: 0;
    }

    h1 {
      max-width: 720px;
      margin: 22px 0 18px;
      font-family: var(--heading);
      font-size: clamp(42px, 5.8vw, 76px);
      line-height: 1;
      font-weight: 700;
      letter-spacing: 0;
      animation: fadeLift 0.8s 0.22s ease both;
    }

    .hero-copy {
      max-width: 640px;
      margin-bottom: 28px;
      color: rgba(255, 255, 255, 0.84);
      font-size: 18px;
      animation: fadeLift 0.8s 0.34s ease both;
    }

    .hero-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
      animation: fadeLift 0.8s 0.46s ease both;
    }

    .hero-stats {
      display: grid;
      grid-template-columns: 1fr;
      gap: 1px;
      background: rgba(255, 255, 255, 0.18);
      border: 1px solid rgba(255, 255, 255, 0.18);
      box-shadow: var(--shadow);
      align-self: end;
    }

    .stat {
      min-height: 108px;
      padding: 22px;
      background: rgba(10, 14, 13, 0.64);
      backdrop-filter: blur(12px);
      transition: transform 0.28s ease, background 0.28s ease;
      animation: fadeLift 0.8s 0.58s ease both;
    }

    .stat:hover {
      transform: translateY(-5px);
      background: rgba(10, 14, 13, 0.78);
    }

    .stat strong {
      display: block;
      color: #ffd67a;
      font-size: 28px;
      line-height: 1;
      margin-bottom: 8px;
      font-family: Georgia, serif;
    }

    .stat span {
      color: rgba(255, 255, 255, 0.76);
      font-size: 13px;
    }

    section {
      padding: 94px 0;
      scroll-margin-top: 112px;
    }

    #contact,
    #apply,
    #franchise,
    #model,
    #theme,
    #investment {
      scroll-margin-top: 112px;
    }

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

    .section-head {
      max-width: 760px;
      margin-bottom: 34px;
    }

    .section-kicker {
      color: var(--gold);
      font-weight: 900;
      text-transform: uppercase;
      font-size: 13px;
      letter-spacing: 0;
      margin-bottom: 10px;
    }

    h2 {
      font-family: var(--heading);
      font-size: clamp(34px, 5vw, 58px);
      line-height: 1.02;
      letter-spacing: 0;
      margin-bottom: 14px;
    }

    .lead {
      color: rgba(20, 20, 20, 0.72);
      font-size: 17px;
      margin-bottom: 0;
    }

    .opportunity {
      background: #fff;
    }

    .split {
      display: grid;
      grid-template-columns: 1.05fr 0.95fr;
      gap: 40px;
      align-items: start;
    }

    .feature-grid {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 16px;
    }

    .feature,
    .collection,
    .step,
    .faq-item {
      border: 1px solid var(--line);
      border-radius: var(--radius);
      background: #fff;
      padding: 22px;
      transition: transform 0.28s ease, border-color 0.28s ease, box-shadow 0.28s ease;
      box-shadow: 0 10px 28px rgba(23, 62, 97, 0.04);
      min-width: 0;
    }

    .feature:hover,
    .step:hover,
    .faq-item:hover {
      transform: translateY(-6px);
      border-color: rgba(214, 166, 73, 0.5);
      box-shadow: 0 20px 46px rgba(20, 20, 20, 0.1);
    }

    .feature b,
    .step b {
      display: block;
      margin-bottom: 8px;
      font-size: 18px;
    }

    .feature p,
    .step p,
    .collection p,
    .faq-item p {
      margin: 0;
      color: rgba(20, 20, 20, 0.68);
      font-size: 14px;
    }

    .contact-panel {
      position: sticky;
      top: 96px;
      border-radius: var(--radius);
      background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.08), transparent),
        var(--emerald);
      color: #fff;
      padding: 28px;
      box-shadow: var(--shadow);
    }

    .contact-panel h3 {
      font-family: var(--heading);
      font-size: 30px;
      line-height: 1.08;
      margin-bottom: 10px;
    }

    .contact-panel p {
      color: rgba(255, 255, 255, 0.78);
      margin-bottom: 20px;
    }
    form {
      display: grid;
      gap: 12px;
    }

    label {
      display: grid;
      gap: 7px;
      color: rgba(255, 255, 255, 0.82);
      font-size: 13px;
      font-weight: 700;
    }

    input,
    select,
    textarea {
      width: 100%;
      min-height: 46px;
      border: 1px solid rgba(255, 255, 255, 0.22);
      border-radius: var(--radius);
      background: rgba(255, 255, 255, 0.1);
      color: #fff;
      padding: 11px 12px;
      font: inherit;
      outline: none;
      transition: border-color 0.22s ease, background 0.22s ease, box-shadow 0.22s ease;
    }

    input:focus,
    select:focus,
    textarea:focus {
      border-color: rgba(244, 199, 98, 0.75);
      background: rgba(255, 255, 255, 0.15);
      box-shadow: 0 0 0 4px rgba(214, 166, 73, 0.16);
    }

    select option {
      color: var(--ink);
    }

    textarea {
      min-height: 92px;
      resize: vertical;
    }

    input::placeholder,
    textarea::placeholder {
      color: rgba(255, 255, 255, 0.55);
    }

    .detail-list {
      display: grid;
      gap: 10px;
      margin-top: 18px;
    }

    .detail-list span {
      display: block;
      padding: 13px 14px;
      border: 1px solid rgba(255, 255, 255, 0.16);
      border-radius: var(--radius);
      background: rgba(255, 255, 255, 0.08);
      color: rgba(255, 255, 255, 0.86);
      font-size: 14px;
      font-weight: 700;
    }

    .apply-section {
      background:
        linear-gradient(135deg, rgba(23, 62, 97, 0.1), rgba(214, 166, 73, 0.1)),
        #fff;
    }

    .apply-section:target {
      animation: sectionGlow 1.1s ease both;
    }

    .apply-wrap {
      display: grid;
      grid-template-columns: 0.85fr 1.15fr;
      gap: 34px;
      align-items: start;
    }

    .apply-copy {
      position: sticky;
      top: 118px;
    }

    .apply-points {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 12px;
      margin-top: 26px;
    }

    .apply-points span {
      padding: 16px;
      border: 1px solid rgba(23, 62, 97, 0.12);
      border-radius: var(--radius);
      background: rgba(255, 255, 255, 0.78);
      color: var(--emerald);
      font-weight: 800;
      box-shadow: var(--soft-shadow);
      transition: transform 0.25s ease, border-color 0.25s ease;
    }

    .apply-points span:hover {
      transform: translateY(-4px);
      border-color: rgba(214, 166, 73, 0.38);
    }

    .application-form {
      position: relative;
      padding: 34px;
      border: 1px solid rgba(214, 166, 73, 0.28);
      border-radius: var(--radius);
      background:
        radial-gradient(circle at 92% 0%, rgba(244, 199, 98, 0.18), transparent 28%),
        linear-gradient(145deg, rgba(214, 166, 73, 0.12), transparent 34%),
        linear-gradient(180deg, #17130c, #080706);
      box-shadow: var(--shadow);
    }

    .premium-inquiry-form {
      overflow: hidden;
    }

    .premium-inquiry-form::before {
      content: "";
      position: absolute;
      inset: 0;
      border-radius: inherit;
      border: 1px solid rgba(255, 255, 255, 0.08);
      pointer-events: none;
    }

    .form-heading {
      position: relative;
      padding-bottom: 16px;
      margin-bottom: 4px;
      border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    }

    .form-heading span {
      display: inline-flex;
      width: fit-content;
      margin-bottom: 10px;
      padding: 7px 10px;
      border: 1px solid rgba(244, 199, 98, 0.34);
      border-radius: 999px;
      color: #ffe3a1;
      font-size: 12px;
      font-weight: 900;
      text-transform: uppercase;
    }

    .form-heading h3 {
      margin: 0 0 6px;
      font-family: var(--heading);
      font-size: 30px;
      line-height: 1;
      color: #fff;
    }

    .form-heading p {
      margin: 0;
      color: rgba(255, 255, 255, 0.72);
      font-size: 14px;
    }

    .form-progress {
      display: grid;
      gap: 10px;
      margin: 18px 0;
    }

    .progress-top {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 14px;
      color: rgba(255, 255, 255, 0.72);
      font-size: 12px;
      font-weight: 800;
      text-transform: uppercase;
    }

    .progress-top b {
      color: #ffe3a1;
      text-align: right;
    }

    .progress-track {
      height: 8px;
      border-radius: 999px;
      background: rgba(255, 255, 255, 0.1);
      overflow: hidden;
      box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
    }

    .progress-track span {
      display: block;
      width: 11.11%;
      height: 100%;
      border-radius: inherit;
      background: linear-gradient(90deg, var(--champagne), #ffe3a1);
      box-shadow: 0 0 20px rgba(244, 199, 98, 0.42);
      transition: width 0.42s cubic-bezier(0.22, 1, 0.36, 1);
    }

    .form-step {
      display: none;
      animation: stepFade 0.46s cubic-bezier(0.22, 1, 0.36, 1) both;
    }

    .form-step.active {
      display: grid;
      gap: 16px;
      min-height: 340px;
      align-content: start;
      padding: 4px 0;
    }

    .step-copy {
      position: relative;
      padding: 18px;
      border: 1px solid rgba(244, 199, 98, 0.18);
      border-radius: var(--radius);
      background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.035)),
        rgba(255, 255, 255, 0.03);
    }

    .compact-step {
      display: grid;
      grid-template-columns: auto 1fr;
      column-gap: 14px;
      align-items: center;
    }

    .compact-step p {
      grid-column: 2;
    }

    .step-icon {
      display: inline-grid;
      place-items: center;
      width: 46px;
      aspect-ratio: 1;
      margin-bottom: 12px;
      border: 1px solid rgba(255, 227, 161, 0.46);
      border-radius: 50%;
      background: rgba(214, 166, 73, 0.14);
      color: #ffe3a1;
      font-family: var(--heading);
      font-size: 18px;
      font-weight: 800;
    }

    .compact-step .step-icon {
      margin-bottom: 0;
      grid-row: 1 / span 2;
    }

    .step-copy h4 {
      margin: 0 0 8px;
      color: #fff;
      font-family: var(--heading);
      font-size: clamp(24px, 3vw, 34px);
      line-height: 1.05;
    }

    .step-copy p {
      margin: 0;
      color: rgba(255, 255, 255, 0.68);
      font-size: 14px;
    }

    .option-grid,
    .submit-summary {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 12px;
    }

    .choice-card,
    .submit-summary span {
      min-height: 76px;
      padding: 18px;
      border: 1px solid rgba(244, 199, 98, 0.24);
      border-radius: var(--radius);
      background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.035)),
        rgba(255, 255, 255, 0.05);
      color: rgba(255, 255, 255, 0.86);
      font-weight: 800;
      box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.03);
      transition: transform 0.22s ease, border-color 0.22s ease, background 0.22s ease, box-shadow 0.22s ease;
    }

    .choice-card {
      display: flex;
      align-items: center;
      gap: 10px;
      cursor: pointer;
    }

    .choice-card input,
    .radio-group input {
      accent-color: var(--champagne);
    }

    .choice-card:has(input:checked) {
      border-color: rgba(255, 227, 161, 0.72);
      background:
        linear-gradient(145deg, rgba(214, 166, 73, 0.24), rgba(214, 166, 73, 0.08)),
        rgba(255, 255, 255, 0.06);
      box-shadow: var(--glow);
    }

    .choice-card:hover {
      transform: translateY(-3px);
      border-color: rgba(255, 227, 161, 0.56);
    }

    .premium-inquiry-form label:has(input:not([type="radio"]):not([type="file"]):valid),
    .premium-inquiry-form label:has(select:valid),
    .premium-inquiry-form label:has(textarea:valid) {
      color: #ffe3a1;
    }

    .premium-inquiry-form input:not([type="radio"]):not([type="file"]):valid,
    .premium-inquiry-form select:valid,
    .premium-inquiry-form textarea:valid,
    .premium-inquiry-form .has-value {
      border-color: rgba(244, 199, 98, 0.52);
      background:
        linear-gradient(180deg, rgba(214, 166, 73, 0.14), rgba(255, 255, 255, 0.08)),
        rgba(255, 255, 255, 0.1);
    }

    .premium-inquiry-form input:not([type="radio"]):not([type="file"]):valid {
      background-image:
        linear-gradient(180deg, rgba(214, 166, 73, 0.14), rgba(255, 255, 255, 0.08));
    }

    .otp-field {
      display: grid;
      grid-template-columns: minmax(0, 1fr) auto;
      gap: 8px;
    }

    .otp-btn {
      border: 1px solid rgba(244, 199, 98, 0.42);
      border-radius: var(--radius);
      background: rgba(214, 166, 73, 0.16);
      color: #ffe3a1;
      padding: 0 12px;
      font: inherit;
      font-size: 12px;
      font-weight: 900;
      cursor: pointer;
      transition: transform 0.22s ease, background 0.22s ease;
    }

    .otp-btn:hover {
      transform: translateY(-2px);
      background: rgba(214, 166, 73, 0.24);
    }

    .field-note {
      color: rgba(255, 255, 255, 0.58);
      font-size: 11px;
      font-weight: 700;
    }

    .radio-group {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 10px;
      margin: 0;
      padding: 16px;
      border: 1px solid rgba(255, 255, 255, 0.14);
      border-radius: var(--radius);
      background: rgba(255, 255, 255, 0.035);
    }

    .radio-group legend {
      padding: 0 7px;
      color: rgba(255, 255, 255, 0.82);
      font-size: 13px;
      font-weight: 800;
    }

    .radio-group label {
      display: flex;
      width: 100%;
      grid-template-columns: none;
      align-items: center;
      gap: 8px;
      padding: 12px;
      border: 1px solid rgba(255, 255, 255, 0.13);
      border-radius: var(--radius);
      background: rgba(255, 255, 255, 0.06);
      cursor: pointer;
      transition: transform 0.22s ease, border-color 0.22s ease, background 0.22s ease;
    }

    .radio-group label:has(input:checked) {
      border-color: rgba(255, 227, 161, 0.66);
      background: rgba(214, 166, 73, 0.16);
      color: #ffe3a1;
    }

    .radio-group label:hover {
      transform: translateY(-2px);
      border-color: rgba(255, 227, 161, 0.4);
    }

    .conditional-field {
      display: grid;
      gap: 12px;
      padding: 16px;
      border: 1px solid rgba(244, 199, 98, 0.22);
      border-radius: var(--radius);
      background:
        linear-gradient(135deg, rgba(214, 166, 73, 0.12), rgba(255, 255, 255, 0.04)),
        rgba(214, 166, 73, 0.08);
      animation: revealField 0.32s ease both;
    }

    .conditional-field[hidden] {
      display: none;
    }

    .form-actions {
      display: flex;
      justify-content: space-between;
      gap: 12px;
      padding-top: 10px;
      border-top: 1px solid rgba(255, 255, 255, 0.1);
    }

    .form-actions .btn[hidden] {
      display: none;
    }

    .field-error {
      border-color: rgba(255, 145, 145, 0.78) !important;
      box-shadow: 0 0 0 4px rgba(255, 108, 108, 0.14) !important;
    }

    .form-row {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 12px;
    }

    .form-status {
      min-height: 22px;
      margin: 2px 0 0;
      color: rgba(255, 255, 255, 0.78);
      font-size: 14px;
      font-weight: 700;
    }

    .form-status.success {
      color: #bff2cf;
    }

    .form-status.error {
      color: #ffd0d0;
    }

    .privacy-note {
      display: block;
      color: rgba(255, 255, 255, 0.68);
      font-size: 12px;
      line-height: 1.5;
    }

    @keyframes stepFade {
      from {
        opacity: 0;
        transform: translateY(18px) scale(0.985);
      }
      to {
        opacity: 1;
        transform: translateY(0) scale(1);
      }
    }

    @keyframes sectionGlow {
      0% {
        box-shadow: inset 0 0 0 9999px rgba(214, 166, 73, 0.08);
      }
      100% {
        box-shadow: inset 0 0 0 9999px rgba(214, 166, 73, 0);
      }
    }

    @keyframes revealField {
      from {
        opacity: 0;
        transform: translateY(-8px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    @keyframes successBackdrop {
      from {
        opacity: 0;
      }
      to {
        opacity: 1;
      }
    }

    @keyframes successCardIn {
      from {
        opacity: 0;
        transform: translateY(28px) scale(0.96);
      }
      to {
        opacity: 1;
        transform: translateY(0) scale(1);
      }
    }

    @keyframes successRing {
      from {
        opacity: 0;
        transform: rotate(-45deg) scale(0.72);
      }
      to {
        opacity: 1;
        transform: rotate(315deg) scale(1);
      }
    }

    @keyframes successPop {
      0% {
        opacity: 0;
        transform: scale(0.52);
      }
      70% {
        opacity: 1;
        transform: scale(1.08);
      }
      100% {
        opacity: 1;
        transform: scale(1);
      }
    }

    @keyframes successCheck {
      from {
        opacity: 0;
        transform: rotate(-45deg) scale(0.72);
      }
      to {
        opacity: 1;
        transform: rotate(-45deg) scale(1);
      }
    }

    @keyframes successSpark {
      0% {
        opacity: 0;
      }
      35% {
        opacity: 1;
      }
      100% {
        opacity: 0;
      }
    }

    .apply-section {
      background:
        radial-gradient(circle at 82% 8%, rgba(214, 166, 73, 0.14), transparent 26%),
        linear-gradient(180deg, #fff, #f4f0e8);
    }

    .apply-wrap {
      grid-template-columns: 0.72fr 1.28fr;
      gap: 42px;
    }

    .apply-copy {
      padding: 28px;
      border: 1px solid rgba(20, 20, 20, 0.1);
      border-radius: var(--radius);
      background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.92), rgba(244, 240, 232, 0.82)),
        #fff;
      box-shadow: var(--soft-shadow);
    }

    .premium-inquiry-form {
      color: var(--ink);
      padding: 0;
      border-color: rgba(20, 20, 20, 0.12);
      background: #fff;
      box-shadow: 0 28px 70px rgba(20, 20, 20, 0.14);
    }

    .premium-inquiry-form::before {
      border-color: rgba(214, 166, 73, 0.24);
    }

    .premium-inquiry-form .form-heading {
      padding: 28px 30px 22px;
      margin: 0;
      border-bottom: 1px solid rgba(214, 166, 73, 0.22);
      background:
        linear-gradient(135deg, rgba(214, 166, 73, 0.16), transparent 42%),
        #11100d;
    }

    .premium-inquiry-form .form-heading h3,
    .premium-inquiry-form .form-heading p {
      color: #fff;
    }

    .premium-inquiry-form .form-progress {
      margin: 0;
      padding: 18px 30px;
      border-bottom: 1px solid rgba(20, 20, 20, 0.08);
      background: #fbfaf7;
    }

    .premium-inquiry-form .progress-top {
      color: rgba(20, 20, 20, 0.62);
    }

    .premium-inquiry-form .progress-top b {
      color: var(--gold);
    }

    .premium-inquiry-form .progress-track {
      background: rgba(20, 20, 20, 0.08);
    }

    .premium-inquiry-form .form-step.active {
      min-height: 0;
      padding: 24px 30px;
      gap: 18px;
    }

    .premium-inquiry-form .step-copy {
      border-color: rgba(214, 166, 73, 0.22);
      background:
        linear-gradient(135deg, rgba(214, 166, 73, 0.12), rgba(255, 255, 255, 0.8)),
        #fbfaf7;
    }

    .premium-inquiry-form .step-copy h4 {
      color: #11100d;
    }

    .premium-inquiry-form .step-copy p {
      color: rgba(20, 20, 20, 0.62);
    }

    .premium-inquiry-form label {
      color: rgba(20, 20, 20, 0.78);
    }

    .premium-inquiry-form input,
    .premium-inquiry-form select,
    .premium-inquiry-form textarea {
      border-color: rgba(20, 20, 20, 0.14);
      background: #fff;
      color: var(--ink);
    }

    .premium-inquiry-form input::placeholder,
    .premium-inquiry-form textarea::placeholder {
      color: rgba(20, 20, 20, 0.36);
    }

    .premium-inquiry-form .choice-card,
    .premium-inquiry-form .submit-summary span,
    .premium-inquiry-form .radio-group label {
      color: rgba(20, 20, 20, 0.78);
      background: #fff;
      border-color: rgba(20, 20, 20, 0.1);
      box-shadow: 0 12px 30px rgba(20, 20, 20, 0.06);
    }

    .premium-inquiry-form .choice-card.is-selected,
    .premium-inquiry-form .choice-card:has(input:checked),
    .premium-inquiry-form .radio-group label.is-selected,
    .premium-inquiry-form .radio-group label:has(input:checked) {
      color: #11100d;
      border-color: rgba(214, 166, 73, 0.7);
      background:
        linear-gradient(145deg, rgba(255, 227, 161, 0.4), rgba(255, 255, 255, 0.86)),
        #fff;
      box-shadow: 0 18px 38px rgba(214, 166, 73, 0.2);
    }

    .premium-inquiry-form .radio-group {
      grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
      background: #fbfaf7;
      border-color: rgba(20, 20, 20, 0.1);
    }

    .premium-inquiry-form .radio-group legend {
      color: rgba(20, 20, 20, 0.72);
    }

    .premium-inquiry-form .conditional-field {
      border-color: rgba(214, 166, 73, 0.28);
      background: #fbfaf7;
    }

    .premium-inquiry-form .field-note,
    .premium-inquiry-form .privacy-note {
      color: rgba(20, 20, 20, 0.54);
    }

    .premium-inquiry-form .form-actions {
      padding: 18px 30px;
      background: #11100d;
      border-top: 1px solid rgba(214, 166, 73, 0.22);
    }

    .premium-inquiry-form .form-status {
      margin: 0;
      padding: 0 30px 18px;
      color: rgba(20, 20, 20, 0.72);
    }

    .premium-inquiry-form .form-status.error {
      color: #9f1d1d;
    }

    .premium-inquiry-form .form-status.success {
      color: #176b36;
    }

    .premium-inquiry-form .privacy-note {
      padding: 0 30px 12px;
    }

    body.success-open {
      overflow: hidden;
    }

    .success-panel {
      position: fixed;
      inset: 0;
      z-index: 80;
      display: grid;
      place-items: center;
      min-height: 100svh;
      padding: clamp(18px, 4vw, 44px);
      background:
        linear-gradient(135deg, rgba(8, 17, 26, 0.96), rgba(23, 62, 97, 0.92)),
        rgba(8, 17, 26, 0.96);
      color: var(--ink);
      text-align: center;
      animation: successBackdrop 0.42s ease both;
    }

    .success-panel[hidden] {
      display: none;
    }

    .success-card {
      position: relative;
      width: min(100%, 640px);
      padding: clamp(30px, 6vw, 58px);
      overflow: hidden;
      border: 1px solid rgba(214, 166, 73, 0.42);
      border-radius: var(--radius);
      background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(251, 250, 247, 0.96)),
        #fff;
      box-shadow: 0 34px 100px rgba(0, 0, 0, 0.34);
      animation: successCardIn 0.66s cubic-bezier(0.22, 1, 0.36, 1) both;
    }

    .success-card::before,
    .success-card::after {
      content: "";
      position: absolute;
      left: 24px;
      right: 24px;
      height: 1px;
      background: linear-gradient(90deg, transparent, rgba(214, 166, 73, 0.72), transparent);
    }

    .success-card::before {
      top: 18px;
    }

    .success-card::after {
      bottom: 18px;
    }

    .success-animation {
      position: relative;
      display: grid;
      place-items: center;
      width: 128px;
      aspect-ratio: 1;
      margin: 0 auto 24px;
    }

    .success-ring,
    .success-mark {
      grid-area: 1 / 1;
      border-radius: 50%;
    }

    .success-ring {
      width: 118px;
      aspect-ratio: 1;
      border: 1px solid rgba(214, 166, 73, 0.48);
      background:
        conic-gradient(from -90deg, rgba(214, 166, 73, 0), rgba(214, 166, 73, 0.9), rgba(214, 166, 73, 0)),
        rgba(255, 227, 161, 0.14);
      animation: successRing 1.1s cubic-bezier(0.22, 1, 0.36, 1) both;
    }

    .success-mark {
      position: relative;
      display: inline-grid;
      place-items: center;
      width: 78px;
      aspect-ratio: 1;
      background: linear-gradient(135deg, var(--champagne), #ffe3a1);
      box-shadow: 0 18px 42px rgba(214, 166, 73, 0.35);
      animation: successPop 0.48s 0.28s cubic-bezier(0.22, 1, 0.36, 1) both;
    }

    .success-mark::before {
      content: "";
      width: 30px;
      height: 16px;
      margin-top: -4px;
      border-left: 5px solid #11100d;
      border-bottom: 5px solid #11100d;
      transform: rotate(-45deg);
      animation: successCheck 0.46s 0.56s ease both;
    }

    .success-spark {
      position: absolute;
      width: 9px;
      height: 26px;
      border-radius: 999px;
      background: linear-gradient(180deg, #ffe3a1, rgba(214, 166, 73, 0));
      transform-origin: 50% 92px;
      opacity: 0;
      animation: successSpark 0.72s 0.58s ease both;
    }

    .spark-one {
      transform: rotate(18deg) translateY(-72px);
    }

    .spark-two {
      transform: rotate(92deg) translateY(-72px);
      animation-delay: 0.66s;
    }

    .spark-three {
      transform: rotate(192deg) translateY(-72px);
      animation-delay: 0.72s;
    }

    .spark-four {
      transform: rotate(282deg) translateY(-72px);
      animation-delay: 0.78s;
    }

    .success-kicker {
      display: inline-flex;
      width: fit-content;
      margin-bottom: 12px;
      padding: 7px 12px;
      border: 1px solid rgba(214, 166, 73, 0.42);
      border-radius: 999px;
      color: var(--gold);
      font-size: 12px;
      font-weight: 900;
      letter-spacing: 0;
      text-transform: uppercase;
    }

    .success-panel h3 {
      margin: 0 0 12px;
      color: var(--emerald);
      font-family: var(--heading);
      font-size: clamp(42px, 7vw, 72px);
      line-height: 0.96;
    }

    .success-panel p {
      max-width: 500px;
      margin: 0 auto 28px;
      color: rgba(20, 20, 20, 0.72);
      font-size: clamp(16px, 2.2vw, 19px);
      line-height: 1.65;
    }

    .model {
      background:
        linear-gradient(180deg, var(--paper), #eef5fa);
    }

    .model-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
      gap: 18px;
    }

    .model-cell {
      min-height: 100%;
      display: flex;
      flex-direction: column;
      gap: 12px;
      border: 1px solid rgba(23, 62, 97, 0.13);
      border-radius: var(--radius);
      background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(238, 245, 250, 0.78)),
        #fff;
      padding: 24px;
      position: relative;
      overflow: hidden;
      transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
      box-shadow: var(--soft-shadow);
    }

    .model-cell::before {
      content: "";
      position: absolute;
      inset: 0 0 auto;
      height: 4px;
      background: linear-gradient(90deg, var(--emerald), var(--champagne));
    }

    .model-cell:hover {
      transform: translateY(-6px);
      border-color: rgba(214, 166, 73, 0.44);
      box-shadow: 0 24px 54px rgba(23, 62, 97, 0.16);
    }

    .model-cell .num {
      width: 38px;
      aspect-ratio: 1;
      display: grid;
      place-items: center;
      border-radius: 50%;
      background: var(--emerald);
      color: #fff;
      font-weight: 900;
      box-shadow: 0 12px 24px rgba(23, 62, 97, 0.2);
    }

    .model-cell h3 {
      margin: 0;
      font-size: 22px;
      line-height: 1.18;
    }

    .model-cell p {
      color: rgba(20, 20, 20, 0.66);
      margin: 0;
      font-size: 14px;
    }

    .plan-type {
      width: fit-content;
      margin-top: 6px;
      padding: 6px 9px;
      border-radius: 999px;
      background: rgba(214, 166, 73, 0.14);
      color: var(--gold);
      font-size: 11px;
      font-weight: 900;
      text-transform: uppercase;
    }

    .plan-price {
      display: block;
      color: var(--emerald);
      font-family: var(--heading);
      font-size: clamp(30px, 3.2vw, 42px);
      line-height: 1;
    }

    .plan-meta {
      display: grid;
      gap: 8px;
      margin-top: auto;
      padding-top: 8px;
    }

    .plan-meta span {
      display: flex;
      align-items: center;
      min-height: 34px;
      padding: 8px 10px;
      border: 1px solid rgba(23, 62, 97, 0.1);
      border-radius: var(--radius);
      background: rgba(255, 255, 255, 0.72);
      color: rgba(20, 20, 20, 0.74);
      font-size: 12px;
      font-weight: 800;
    }

    .layout-showcase {
      margin-top: 24px;
      display: grid;
      grid-template-columns: 1.15fr 0.85fr;
      gap: 24px;
      align-items: center;
      padding: 24px;
      border: 1px solid var(--line);
      border-radius: var(--radius);
      background: #fff;
      box-shadow: var(--soft-shadow);
    }

    .layout-showcase img {
      width: 100%;
      aspect-ratio: 16 / 9;
      object-fit: cover;
      border-radius: var(--radius);
    }

    .layout-showcase h3 {
      margin: 0 0 10px;
      font-family: var(--heading);
      font-size: clamp(26px, 3vw, 38px);
      line-height: 1.08;
    }

    .layout-showcase p {
      margin: 0;
      color: rgba(20, 20, 20, 0.68);
    }

    .collections {
      background:
        radial-gradient(circle at 80% 0%, rgba(214, 166, 73, 0.14), transparent 28%),
        linear-gradient(180deg, #102033, var(--charcoal));
      color: #fff;
    }

    .collections .lead {
      color: rgba(255, 255, 255, 0.72);
    }

    .collection-grid {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 16px;
    }

    .collection {
      min-height: 230px;
      display: flex;
      flex-direction: column;
      justify-content: flex-end;
      background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(0, 0, 0, 0.46)),
        #303030;
      color: #fff;
      overflow: hidden;
      position: relative;
      transition: transform 0.32s ease, border-color 0.32s ease, box-shadow 0.32s ease;
    }

    .collection::before {
      content: "";
      position: absolute;
      top: 22px;
      right: 22px;
      width: 70px;
      aspect-ratio: 1;
      border: 1px solid rgba(214, 166, 73, 0.6);
      transform: rotate(45deg);
    }

    .collection h3 {
      position: relative;
      margin-bottom: 8px;
      font-size: 22px;
    }

    .collection:hover {
      transform: translateY(-8px);
      border-color: rgba(244, 199, 98, 0.7);
      box-shadow: 0 24px 54px rgba(0, 0, 0, 0.24);
    }

    .collection:hover::before {
      animation: diamondSpin 1.8s ease infinite;
    }

    .collection p {
      position: relative;
      color: rgba(255, 255, 255, 0.72);
    }

    .collection:nth-child(2) {
      background-color: #123f39;
    }

    .collection:nth-child(3) {
      background-color: #61202b;
    }

    .collection:nth-child(4) {
      background-color: #493612;
    }

    .theme-card {
      min-height: 0;
      padding: 0;
      background: linear-gradient(180deg, #13283e, #0e1926);
      border-color: rgba(214, 166, 73, 0.28);
    }

    .theme-card::before {
      display: none;
    }

    .theme-card img {
      width: 100%;
      aspect-ratio: 16 / 10;
      object-fit: cover;
      border-bottom: 1px solid rgba(214, 166, 73, 0.28);
      transition: transform 0.42s ease, filter 0.42s ease;
    }

    .theme-card div {
      padding: 22px;
      position: relative;
      z-index: 1;
    }

    .card-label {
      display: inline-flex;
      width: 38px;
      height: 38px;
      align-items: center;
      justify-content: center;
      margin-bottom: 12px;
      border: 1px solid rgba(244, 199, 98, 0.42);
      border-radius: 50%;
      color: #ffe3a1;
      font-weight: 900;
      font-size: 13px;
    }

    .theme-card:hover img {
      transform: scale(1.035);
      filter: saturate(1.08) contrast(1.04);
    }

    .theme-card-wide {
      grid-column: 1 / -1;
    }

    .theme-card-wide img {
      aspect-ratio: 16 / 7;
    }

    .investment {
      background:
        linear-gradient(135deg, rgba(23, 62, 97, 0.06), rgba(214, 166, 73, 0.08)),
        #fff;
    }

    .band {
      display: grid;
      grid-template-columns: 0.9fr 1.1fr;
      gap: 34px;
      align-items: center;
      border-top: 1px solid var(--line);
      border-bottom: 1px solid var(--line);
      padding: 34px 0;
    }

    .investment-list {
      display: grid;
      gap: 14px;
      margin: 0;
      padding: 0;
      list-style: none;
    }

    .investment-list li {
      display: grid;
      grid-template-columns: 32px 1fr;
      gap: 12px;
      align-items: start;
    }

    .partner-info {
      display: grid;
      grid-template-columns: 0.9fr 1fr;
      gap: 22px;
      align-items: center;
    }

    .partner-info img {
      width: 100%;
      aspect-ratio: 4 / 3;
      object-fit: cover;
      border: 1px solid var(--line);
      border-radius: var(--radius);
      box-shadow: 0 18px 42px rgba(20, 20, 20, 0.12);
    }

    .tick {
      width: 32px;
      aspect-ratio: 1;
      display: grid;
      place-items: center;
      border-radius: 50%;
      background: var(--mist);
      color: var(--emerald);
      font-weight: 900;
    }
    .process {
      background:
        linear-gradient(180deg, var(--ivory), #fff);
    }

    .steps {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 16px;
    }

    .faq {
      background: #fff;
    }

    .faq-grid {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 16px;
    }

    .faq-item h3 {
      margin-bottom: 8px;
      font-size: 18px;
    }

    .cta {
      background:
        linear-gradient(135deg, rgba(214, 166, 73, 0.16), transparent 42%),
        var(--emerald);
      color: #fff;
      padding: 72px 0;
    }

    .cta-inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 24px;
    }

    .cta h2 {
      margin-bottom: 8px;
      max-width: 760px;
    }

    .cta p {
      margin: 0;
      color: rgba(255, 255, 255, 0.76);
      max-width: 670px;
    }

    footer {
      background:
        linear-gradient(135deg, rgba(214, 166, 73, 0.08), transparent 42%),
        #0f1720;
      color: rgba(255, 255, 255, 0.72);
      padding: 56px 0 0;
      font-size: 14px;
    }

    .footer-inner {
      width: min(var(--max), calc(100% - 32px));
      margin: 0 auto;
      display: grid;
      grid-template-columns: minmax(260px, 0.9fr) minmax(0, 1.8fr);
      gap: 42px;
      align-items: start;
    }

    .footer-brand {
      display: grid;
      gap: 12px;
    }

    .footer-brand img {
      width: 230px;
      max-width: 100%;
      aspect-ratio: 27 / 7;
      object-fit: cover;
      object-position: center;
      filter: drop-shadow(0 0 18px rgba(255, 255, 255, 0.18));
    }

    .footer-brand a {
      width: fit-content;
      color: #ffe3a1;
      font-weight: 800;
      transition: color 0.25s ease;
    }

    .footer-brand a:hover,
    .footer-links a:hover {
      color: #fff;
    }

    .footer-brand address {
      max-width: 360px;
      margin: 4px 0 0;
      color: rgba(255, 255, 255, 0.68);
      font-style: normal;
      line-height: 1.7;
    }

    .footer-links {
      display: grid;
      grid-template-columns: repeat(4, minmax(0, 1fr));
      gap: 24px;
    }

    .footer-links div {
      min-width: 0;
      display: grid;
      align-content: start;
      gap: 9px;
    }

    .footer-links h3 {
      margin: 0 0 8px;
      color: #fff;
      font-family: var(--body);
      font-size: 14px;
      line-height: 1.3;
      font-weight: 900;
    }

    .footer-links a {
      color: rgba(255, 255, 255, 0.66);
      line-height: 1.45;
      transition: color 0.25s ease;
    }

    .footer-bottom {
      width: min(var(--max), calc(100% - 32px));
      margin: 44px auto 0;
      padding: 20px 0;
      display: flex;
      justify-content: space-between;
      gap: 18px;
      flex-wrap: wrap;
      border-top: 1px solid rgba(255, 255, 255, 0.12);
      color: rgba(255, 255, 255, 0.56);
    }

    @media (max-width: 1180px) {
      .nav {
        gap: 18px;
      }

      .brand {
        width: 220px;
        max-width: 28vw;
      }

      .nav-links {
        font-size: 13px;
      }

      .nav-links a {
        padding: 10px 11px;
      }

      .hero-inner {
        grid-template-columns: minmax(0, 1.05fr) minmax(260px, 0.7fr);
      }

      .model-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }

      .partner-info {
        grid-template-columns: 1fr;
      }

      .footer-inner {
        grid-template-columns: 1fr;
      }

      .footer-links {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }
    }

    .admin-page {
      min-height: 100vh;
      background:
        linear-gradient(135deg, rgba(13, 30, 48, 0.92), rgba(23, 62, 97, 0.82)),
        url("assets/optimized/front-view-1280-v2.webp") center / cover no-repeat;
      color: #fff;
    }

    .admin-shell {
      width: min(1180px, calc(100% - 32px));
      margin: 0 auto;
      padding: 48px 0;
    }

    .admin-login {
      width: min(460px, 100%);
      margin: 6vh auto 0;
      padding: 30px;
      border: 1px solid rgba(255, 255, 255, 0.16);
      border-radius: var(--radius);
      background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.08), transparent 38%),
        rgba(13, 22, 31, 0.88);
      box-shadow: var(--shadow);
      backdrop-filter: blur(18px);
    }

    .admin-login img {
      width: 240px;
      height: 86px;
      margin-bottom: 20px;
      object-fit: cover;
      object-position: center;
    }

    .admin-login h1,
    .admin-dashboard h1 {
      margin: 0 0 10px;
      font-family: var(--heading);
      font-size: clamp(34px, 5vw, 58px);
      line-height: 1;
    }

    .admin-login p,
    .admin-dashboard p {
      color: rgba(255, 255, 255, 0.74);
    }

    .admin-head {
      display: flex;
      align-items: end;
      justify-content: space-between;
      gap: 18px;
      margin-bottom: 24px;
    }

    .admin-actions {
      display: flex;
      gap: 10px;
    }

    .admin-summary {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 14px;
      margin-bottom: 18px;
      padding: 16px 18px;
      border: 1px solid rgba(255, 255, 255, 0.14);
      border-radius: var(--radius);
      background: rgba(255, 255, 255, 0.1);
      color: rgba(255, 255, 255, 0.8);
      font-weight: 800;
      backdrop-filter: blur(14px);
    }

    .admin-summary b {
      color: #ffe3a1;
      font-size: 22px;
    }

    .applicant-grid {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 16px;
    }

    .applicant-card {
      padding: 22px;
      border: 1px solid rgba(255, 255, 255, 0.16);
      border-radius: var(--radius);
      background: rgba(255, 255, 255, 0.94);
      color: var(--ink);
      box-shadow: 0 20px 50px rgba(0, 0, 0, 0.18);
      transition: transform 0.25s ease, box-shadow 0.25s ease;
    }

    .applicant-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 26px 62px rgba(0, 0, 0, 0.22);
    }

    .applicant-top {
      display: flex;
      justify-content: space-between;
      gap: 14px;
      margin-bottom: 18px;
    }

    .applicant-top h2 {
      margin: 0 0 4px;
      font-size: 28px;
      color: var(--emerald);
    }

    .applicant-top p,
    .applicant-top span {
      margin: 0;
      color: rgba(20, 20, 20, 0.62);
      font-size: 13px;
      font-weight: 800;
    }

    .lead-badge {
      width: fit-content;
      margin: -8px 0 16px;
      padding: 8px 11px;
      border: 1px solid rgba(214, 166, 73, 0.38);
      border-radius: 999px;
      background: rgba(214, 166, 73, 0.14);
      color: var(--gold);
      font-size: 12px;
      font-weight: 900;
      text-transform: uppercase;
    }

    .applicant-card dl {
      display: grid;
      gap: 10px;
      margin: 0 0 18px;
    }

    .applicant-card dl div {
      display: grid;
      grid-template-columns: 128px 1fr;
      gap: 10px;
      padding-bottom: 10px;
      border-bottom: 1px solid rgba(20, 20, 20, 0.08);
    }

    .applicant-card dt {
      color: var(--emerald);
      font-weight: 900;
    }

    .applicant-card dd {
      margin: 0;
      color: rgba(20, 20, 20, 0.74);
    }

    .applicant-card dd a {
      color: var(--emerald);
      font-weight: 900;
    }

    .applicant-actions {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 10px;
    }

    .applicant-actions .btn {
      width: 100%;
    }

    .empty-state {
      padding: 28px;
      border: 1px solid rgba(255, 255, 255, 0.14);
      border-radius: var(--radius);
      background: rgba(255, 255, 255, 0.1);
      text-align: center;
      font-weight: 800;
    }

    @keyframes slideDown {
      from {
        opacity: 0;
        transform: translateY(-16px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    @keyframes fadeLift {
      from {
        opacity: 0;
        transform: translateY(22px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    @keyframes diamondSpin {
      0%,
      100% {
        transform: rotate(45deg) scale(1);
      }
      50% {
        transform: rotate(45deg) scale(1.12);
      }
    }

    @media (prefers-reduced-motion: reduce) {
      *,
      *::before,
      *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        scroll-behavior: auto !important;
        transition-duration: 0.01ms !important;
      }
    }

    @media (max-width: 980px) {
      section {
        padding: 78px 0;
      }

      .nav-links {
        display: none;
      }

      .nav {
        width: min(100% - 28px, var(--max));
        min-height: 82px;
      }

      .hero {
        min-height: auto;
        background:
          linear-gradient(90deg, rgba(7, 17, 28, 0.96) 0%, rgba(12, 37, 59, 0.76) 48%, rgba(12, 37, 59, 0.28) 100%),
          url("assets/optimized/front-view-640-v2.webp") 62% center / cover no-repeat;
      }

      .hero-inner,
      .split,
      .band,
      .partner-info,
      .layout-showcase,
      .apply-wrap {
        grid-template-columns: 1fr;
      }

      .hero-inner {
        padding-top: 122px;
        gap: 28px;
      }

      .apply-copy {
        position: static;
      }

      .hero-stats,
      .model-grid,
      .collection-grid,
      .steps,
      .faq-grid,
      .applicant-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }

      .contact-panel {
        position: static;
      }

      .theme-card-wide img {
        aspect-ratio: 16 / 9;
      }

      .band {
        align-items: start;
      }
    }

    @media (max-width: 640px) {
      :root {
        --shadow: 0 18px 42px rgba(0, 0, 0, 0.14);
      }

      .container,
      .footer-inner,
      .footer-bottom {
        width: min(100% - 24px, var(--max));
      }

      .nav {
        width: min(100% - 20px, var(--max));
        min-height: 78px;
        gap: 10px;
      }

      .brand {
        width: clamp(142px, 43vw, 180px);
        height: auto;
        aspect-ratio: 27 / 7;
        max-width: none;
      }

      .topbar .btn {
        min-height: 40px;
        width: auto;
        padding: 0 12px;
        font-size: 12px;
      }

      .hero {
        background:
          linear-gradient(180deg, rgba(7, 17, 28, 0.95) 0%, rgba(12, 37, 59, 0.76) 54%, rgba(12, 37, 59, 0.42) 100%),
          url("assets/optimized/front-view-480-v2.webp") 62% center / cover no-repeat;
      }

      .hero-inner {
        width: min(100% - 24px, var(--max));
        padding: 112px 0 34px;
        gap: 22px;
      }

      h1 {
        font-size: clamp(34px, 11vw, 42px);
        line-height: 1.04;
      }

      h2 {
        font-size: clamp(30px, 9vw, 40px);
      }

      .hero-logo {
        width: min(390px, 100%);
      }

      .hero-copy {
        font-size: 16px;
      }

      .hero-stats {
        display: none;
      }

      .eyebrow {
        max-width: 100%;
        flex-wrap: wrap;
        border-radius: 18px;
      }

      .hero-actions,
      .cta-inner,
      .form-actions {
        align-items: stretch;
        flex-direction: column;
      }

      .btn {
        width: 100%;
        white-space: normal;
        min-height: 46px;
        padding: 10px 16px;
      }

      .hero-stats,
      .feature-grid,
      .model-grid,
      .collection-grid,
      .steps,
      .faq-grid,
      .form-row,
      .option-grid,
      .submit-summary,
      .otp-field,
      .apply-points,
      .applicant-grid {
        grid-template-columns: 1fr;
      }

      .stat {
        min-height: auto;
        padding: 18px;
      }

      .contact-panel,
      .application-form,
      .layout-showcase,
      .feature,
      .collection,
      .step,
      .faq-item,
      .applicant-card {
        padding: 18px;
      }

      .theme-card {
        padding: 0;
      }

      .theme-card div {
        padding: 18px;
      }

      .layout-showcase {
        gap: 18px;
      }

      .layout-showcase img,
      .theme-card img,
      .theme-card-wide img,
      .partner-info img {
        aspect-ratio: 4 / 3;
      }

      .model-cell {
        min-height: auto;
        padding: 20px;
      }

      .band {
        padding: 24px 0;
      }

      .admin-head,
      .admin-actions,
      .applicant-actions {
        align-items: stretch;
        flex-direction: column;
      }

      .applicant-actions {
        display: flex;
      }

      .applicant-card dl div {
        grid-template-columns: 1fr;
      }

      section {
        padding: 62px 0;
      }

      .footer-inner {
        gap: 30px;
      }

      .footer-links {
        grid-template-columns: 1fr;
        gap: 22px;
      }

      .footer-bottom {
        margin-top: 34px;
        justify-content: flex-start;
      }
    }

    @media (max-width: 420px) {
      .nav {
        min-height: 72px;
      }

      .brand {
        width: clamp(128px, 41vw, 150px);
      }

      .topbar .btn {
        padding: 0 10px;
        font-size: 11px;
      }

      .hero-inner {
        padding-top: 102px;
      }

      .hero-actions {
        gap: 10px;
      }

      .application-form,
      .contact-panel,
      .layout-showcase,
      .admin-login,
      .applicant-card {
        padding: 16px;
      }

      .form-heading h3,
      .contact-panel h3 {
        font-size: 26px;
      }

      .investment-list li {
        grid-template-columns: 28px 1fr;
      }

      .tick {
        width: 28px;
        font-size: 11px;
      }
    }

    @media (max-width: 640px) {
      body {
        background: #f8f6f0;
      }

      .topbar {
        position: sticky;
      }

      .nav {
        min-height: 72px;
        padding: 8px 0;
      }

      .brand {
        width: clamp(184px, 54vw, 230px);
      }

      .brand-logo {
        object-fit: contain;
      }

      .topbar .btn {
        flex: 0 0 auto;
        width: auto;
        min-height: 42px;
        padding: 0 16px;
        border-radius: 999px;
        font-size: 13px;
      }

      .apply-section {
        padding-top: 34px;
      }

      .apply-wrap {
        width: min(100% - 20px, var(--max));
        gap: 18px;
      }

      .apply-copy {
        padding: 18px;
      }

      .apply-copy h2 {
        font-size: clamp(28px, 8vw, 36px);
      }

      .apply-points {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 10px;
      }

      .apply-points span {
        min-height: 74px;
        padding: 13px;
        font-size: 13px;
        line-height: 1.35;
      }

      .premium-inquiry-form {
        width: 100%;
        border-radius: 8px;
      }

      .premium-inquiry-form .form-heading,
      .premium-inquiry-form .form-progress,
      .premium-inquiry-form .form-step.active,
      .premium-inquiry-form .form-actions,
      .premium-inquiry-form .privacy-note,
      .premium-inquiry-form .form-status {
        padding-left: 16px;
        padding-right: 16px;
      }

      .premium-inquiry-form .form-step.active {
        padding-top: 18px;
        padding-bottom: 18px;
      }

      .compact-step {
        grid-template-columns: 1fr;
      }

      .compact-step p {
        grid-column: auto;
      }

      .compact-step .step-icon,
      .step-icon {
        width: 48px;
        margin-bottom: 12px;
        grid-row: auto;
      }

      .step-copy {
        padding: 18px;
      }

      .step-copy h4 {
        font-size: clamp(30px, 9vw, 42px);
        line-height: 1.05;
      }

      .step-copy p {
        font-size: 16px;
        line-height: 1.55;
      }

      .option-grid {
        grid-template-columns: 1fr;
      }

      .choice-card {
        min-height: 86px;
        display: grid;
        grid-template-columns: 34px minmax(0, 1fr);
        align-items: center;
        gap: 14px;
        padding: 18px;
      }

      .choice-card input {
        width: 28px;
        height: 28px;
        margin: 0;
      }

      .choice-card span {
        min-width: 0;
        color: inherit;
        font-size: 18px;
        line-height: 1.25;
        font-weight: 900;
        overflow-wrap: anywhere;
      }

      .radio-group {
        grid-template-columns: 1fr !important;
      }

      .radio-group label {
        min-height: 52px;
        font-size: 15px;
      }

      .otp-field {
        grid-template-columns: 1fr;
      }

      .otp-btn {
        min-height: 42px;
      }

      .premium-inquiry-form .form-actions {
        flex-direction: column;
      }

      .premium-inquiry-form .form-actions .btn {
        width: 100%;
      }

      .success-panel {
        padding: 16px;
      }

      .success-card {
        padding: 30px 18px;
      }

      .success-animation {
        width: 112px;
        margin-bottom: 18px;
      }

      .success-ring {
        width: 102px;
      }

      .success-mark {
        width: 70px;
      }
    }

    @media (max-width: 640px) {
      html {
        scroll-padding-top: 84px;
      }

      .topbar {
        position: sticky;
        background: linear-gradient(90deg, rgba(11, 25, 38, 0.98), rgba(28, 50, 67, 0.96));
      }

      .nav {
        width: calc(100% - 24px);
        min-height: 74px;
        padding: 8px 0;
        gap: 12px;
      }

      .brand {
        width: clamp(150px, 46vw, 190px);
        height: 50px;
        aspect-ratio: auto;
        flex: 1 1 auto;
        min-width: 0;
      }

      .brand-logo {
        object-fit: contain;
        object-position: left center;
        filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.28));
      }

      .topbar .btn {
        flex: 0 0 auto;
        width: auto;
        min-width: 112px;
        min-height: 44px;
        padding: 0 16px;
        font-size: 13px;
        line-height: 1;
      }

      .hero {
        min-height: calc(100svh - 74px);
        align-items: center;
        background:
          linear-gradient(180deg, rgba(6, 14, 23, 0.9) 0%, rgba(10, 24, 37, 0.82) 44%, rgba(7, 13, 18, 0.88) 100%),
          url("assets/optimized/front-view-480-v2.webp") center center / cover no-repeat;
      }

      .hero::after {
        height: 42%;
        background: linear-gradient(0deg, rgba(0, 0, 0, 0.7), transparent);
      }

      .hero-inner {
        width: calc(100% - 28px);
        padding: 36px 0 30px;
        min-height: calc(100svh - 74px);
        display: flex;
        align-items: center;
      }

      .hero-inner > div:first-child {
        width: 100%;
      }

      .hero-logo {
        display: none;
      }

      .eyebrow {
        max-width: 100%;
        padding: 8px 11px;
        gap: 8px;
        border-radius: 999px;
        background: rgba(8, 18, 29, 0.72);
        color: #ffe3a1;
        font-size: 11px;
        line-height: 1.25;
        text-wrap: balance;
      }

      .spark {
        flex: 0 0 auto;
      }

      h1 {
        max-width: 11ch;
        margin: 18px 0 14px;
        font-size: clamp(37px, 10.4vw, 48px);
        line-height: 0.98;
        text-shadow: 0 10px 26px rgba(0, 0, 0, 0.62);
      }

      .hero-copy {
        max-width: 32rem;
        margin-bottom: 24px;
        color: rgba(255, 255, 255, 0.9);
        font-size: 15.5px;
        line-height: 1.58;
        text-shadow: 0 8px 18px rgba(0, 0, 0, 0.48);
      }

      .hero-actions {
        display: grid;
        grid-template-columns: 1fr;
        gap: 12px;
      }

      .hero-actions .btn {
        width: 100%;
        min-height: 50px;
        padding: 12px 18px;
        font-size: 15px;
      }

      .hero-actions .btn-light {
        background: rgba(255, 255, 255, 0.96);
      }
    }

    @media (max-width: 340px) {
      .topbar .btn {
        min-width: 98px;
        padding: 0 12px;
        font-size: 12px;
      }

      .brand {
        width: 138px;
      }

      h1 {
        font-size: 34px;
      }
    }

    /* Premium boutique header */
    html {
      scroll-padding-top: 168px;
    }

    .topbar {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      z-index: 30;
      border: 0;
      background: #fff;
      color: var(--ink);
      box-shadow: 0 10px 28px rgba(20, 20, 20, 0.08);
      backdrop-filter: none;
    }

    .topbar::after {
      display: none;
    }

    .announce-bar {
      min-height: 26px;
      display: flex;
      align-items: center;
      justify-content: center;
      background: linear-gradient(90deg, #a68146, #c9a45f, #a68146);
      color: #fff;
      font-size: 12px;
      font-weight: 900;
      letter-spacing: 1.6px;
      line-height: 1.2;
      text-align: center;
      text-transform: uppercase;
    }

    .header-main {
      width: min(1360px, calc(100% - 56px));
      min-height: 92px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 1fr auto 1fr;
      align-items: center;
      gap: 28px;
      background: #fff;
    }

    .header-utility,
    .header-actions {
      display: flex;
      align-items: center;
      gap: 22px;
      min-width: 0;
      font-size: 13px;
      color: rgba(20, 20, 20, 0.72);
    }

    .header-utility a,
    .header-actions a {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      transition: color 0.2s ease;
    }

    .header-utility a:hover,
    .header-actions a:hover {
      color: var(--gold);
    }

    .header-utility span {
      width: 20px;
      display: inline-flex;
      justify-content: center;
      color: var(--gold);
      font-size: 18px;
      line-height: 1;
    }

    .header-actions {
      justify-content: flex-end;
    }

    .header-icon {
      width: 42px;
      height: 42px;
      justify-content: center;
      border: 1px solid rgba(20, 20, 20, 0.14);
      border-radius: 50%;
      color: var(--emerald);
      font-weight: 900;
    }

    .header-icon:hover {
      border-color: rgba(185, 137, 40, 0.42);
      background: rgba(214, 166, 73, 0.08);
    }

    .brand {
      width: 172px;
      height: 58px;
      max-width: none;
      justify-content: center;
      border-radius: 2px;
      background: #06090c;
      box-shadow: 0 1px 0 rgba(214, 166, 73, 0.32), 0 12px 26px rgba(6, 9, 12, 0.12);
    }

    .brand-logo {
      width: 100%;
      height: 100%;
      object-fit: contain;
      object-position: center;
      filter: none;
      transform: none;
    }

    .brand:hover .brand-logo {
      transform: none;
      filter: none;
    }

    .nav {
      width: 100%;
      min-height: 44px;
      justify-content: center;
      gap: 0;
      border-top: 1px solid rgba(20, 20, 20, 0.08);
      background: #fff;
    }

    .nav-links {
      margin: 0;
      padding: 0;
      border: 0;
      border-radius: 0;
      background: transparent;
      color: #1f1f1f;
      gap: clamp(24px, 4vw, 58px);
      font-size: 14px;
      font-weight: 900;
      letter-spacing: 0.7px;
      text-transform: uppercase;
    }

    .nav-links a {
      padding: 12px 0 13px;
      border-radius: 0;
    }

    .nav-links a::after {
      content: "";
      display: block;
      position: absolute;
      left: 0;
      right: 0;
      bottom: 8px;
      height: 2px;
      background: var(--gold);
      opacity: 0;
      transform: scaleX(0.4);
      transition: opacity 0.22s ease, transform 0.22s ease;
    }

    .nav-links a:hover {
      color: var(--gold);
      background: transparent;
    }

    .nav-links a:hover::after {
      opacity: 1;
      transform: scaleX(1);
    }

    .header-actions .btn {
      min-height: 46px;
      padding: 0 24px;
      box-shadow: 0 12px 24px rgba(185, 137, 40, 0.22);
    }

    .hero-inner {
      padding-top: 196px;
    }

    @media (max-width: 980px) {
      html {
        scroll-padding-top: 96px;
      }

      .topbar {
        position: sticky;
        background: rgba(255, 255, 255, 0.98);
      }

      .announce-bar {
        min-height: 24px;
        padding: 0 14px;
        font-size: 10px;
        letter-spacing: 1px;
      }

      .header-main {
        width: calc(100% - 28px);
        min-height: 72px;
        display: flex;
        justify-content: space-between;
        gap: 14px;
      }

      .header-utility,
      .header-icon,
      .nav {
        display: none;
      }

      .header-actions {
        flex: 0 0 auto;
      }

      .brand {
        width: clamp(150px, 42vw, 190px);
        height: 52px;
        flex: 0 1 auto;
      }

      .topbar .btn,
      .header-actions .btn {
        width: auto;
        min-width: 112px;
        min-height: 42px;
        padding: 0 15px;
        font-size: 13px;
        line-height: 1;
        white-space: nowrap;
      }

      .hero {
        min-height: calc(100svh - 96px);
      }

      .hero-inner {
        min-height: calc(100svh - 96px);
        padding-top: 34px;
      }
    }

    @media (max-width: 380px) {
      .header-main {
        width: calc(100% - 20px);
        gap: 10px;
      }

      .brand {
        width: 138px;
        height: 48px;
      }

      .topbar .btn,
      .header-actions .btn {
        min-width: 98px;
        padding: 0 12px;
        font-size: 12px;
      }
    }

    /* OneCaret themed header refinement */
    .topbar {
      background: var(--emerald);
      color: #fff;
      box-shadow: 0 18px 42px rgba(13, 31, 48, 0.18);
    }

    .announce-bar {
      min-height: 28px;
      background:
        linear-gradient(90deg, rgba(23, 62, 97, 0.95), rgba(214, 166, 73, 0.98) 28%, rgba(244, 199, 98, 0.98) 50%, rgba(214, 166, 73, 0.98) 72%, rgba(23, 62, 97, 0.95));
      color: #fff;
      text-shadow: 0 1px 10px rgba(20, 20, 20, 0.22);
    }

    .header-main {
      min-height: 90px;
      background:
        radial-gradient(circle at 50% -40%, rgba(244, 199, 98, 0.18), transparent 42%),
        linear-gradient(90deg, #102536 0%, var(--emerald) 48%, #102536 100%);
    }

    .header-utility,
    .header-actions {
      color: rgba(255, 255, 255, 0.78);
    }

    .header-utility a:hover,
    .header-actions a:hover {
      color: #f4d284;
    }

    .header-utility span {
      color: #f4c762;
    }

    .header-icon {
      border-color: rgba(244, 199, 98, 0.32);
      background: rgba(255, 255, 255, 0.06);
      color: #f9df9b;
    }

    .header-icon:hover {
      border-color: rgba(244, 199, 98, 0.72);
      background: rgba(244, 199, 98, 0.12);
    }

    .brand {
      width: 186px;
      height: 62px;
      background: transparent;
      box-shadow: none;
      filter: drop-shadow(0 14px 26px rgba(0, 0, 0, 0.32));
    }

    .brand-logo {
      filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.2));
    }

    .nav {
      min-height: 48px;
      border-top: 1px solid rgba(244, 199, 98, 0.22);
      border-bottom: 1px solid rgba(23, 62, 97, 0.08);
      background:
        linear-gradient(180deg, rgba(248, 252, 255, 0.98), rgba(238, 245, 250, 0.98));
      box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.84);
    }

    .nav-links {
      color: #18354d;
    }

    .nav-links a {
      padding: 13px 0 14px;
    }

    .nav-links a:hover {
      color: var(--gold);
    }

    .nav-links a::after {
      bottom: 9px;
      height: 3px;
      border-radius: 999px;
      background: linear-gradient(90deg, #f4c762, var(--gold));
    }

    .header-actions .btn {
      box-shadow: 0 16px 34px rgba(214, 166, 73, 0.25);
    }

    .header-actions .btn:hover {
      box-shadow: 0 0 0 1px rgba(244, 199, 98, 0.42), 0 20px 42px rgba(214, 166, 73, 0.32);
    }

    @media (max-width: 980px) {
      .topbar {
        background: var(--emerald);
      }

      .header-main {
        min-height: 74px;
        background:
          radial-gradient(circle at 22% -30%, rgba(244, 199, 98, 0.16), transparent 42%),
          linear-gradient(90deg, #0e2233, var(--emerald));
      }

      .brand {
        width: clamp(156px, 44vw, 196px);
        height: 54px;
      }

      .header-actions .btn {
        box-shadow: 0 12px 26px rgba(0, 0, 0, 0.2);
      }
    }

