:root {
      --navy: #0b1b3b;
      --gold: #f5c451;
      --light-bg: #f5f7fb;
      --text: #1b1b1f;
      --muted: #6b7280;
      --white: #ffffff;
      --radius-lg: 18px;
      --shadow-soft: 0 18px 40px rgba(15, 23, 42, 0.16);
      --transition-fast: 0.2s ease;
    }

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

    body {
      font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
      color: var(--text);
      background: #f0f2f7;
      line-height: 1.6;
    }

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

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

    /* Layout */
    .page-wrapper {
      min-height: 100vh;
      display: flex;
      flex-direction: column;
      background: radial-gradient(circle at top left, #142857 0, #020617 50%, #020617 100%);
      color: var(--white);
    }

    .container {
      width: 100%;
      max-width: 1100px;
      margin: 0 auto;
      padding: 0 20px;
    }

    /* Header / Nav */
    header {
      position: sticky;
      top: 0;
      z-index: 20;
      backdrop-filter: blur(18px);
      background: linear-gradient(to bottom, rgba(2, 6, 23, 0.95), rgba(2, 6, 23, 0.7));
      border-bottom: 1px solid rgba(148, 163, 184, 0.18);
    }

    .nav {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 14px 0;
    }

    .brand {
      display: flex;
      align-items: center;
      gap: 10px;
    }

    .brand-logo {
      height: 44px;
      width: auto;
      display: block;
    }


    .brand-mark {
      width: 40px;
      height: 40px;
      border-radius: 50%;
      background: radial-gradient(circle at 30% 30%, #facc6b, #f97316);
      display: flex;
      align-items: center;
      justify-content: center;
      font-weight: 800;
      font-size: 1.1rem;
      color: #111827;
      box-shadow: 0 10px 25px rgba(251,191,36,0.35);
    }

    .brand-text {
      display: flex;
      flex-direction: column;
      line-height: 1.1;
    }

    .brand-title {
      font-weight: 700;
      letter-spacing: 0.06em;
      text-transform: uppercase;
      font-size: 0.82rem;
      color: #e5e7eb;
    }

    .brand-subtitle {
      font-size: 0.7rem;
      color: #9ca3af;
      letter-spacing: 0.08em;
      text-transform: uppercase;
    }

    .nav-links {
      display: flex;
      gap: 22px;
      align-items: center;
      font-size: 0.9rem;
    }

    .nav-links a {
      color: #e5e7eb;
      position: relative;
      padding-bottom: 2px;
    }

    .nav-links a::after {
      content: "";
      position: absolute;
      left: 0;
      bottom: 0;
      width: 0;
      height: 2px;
      border-radius: 999px;
      background: linear-gradient(to right, #facc6b, #f97316);
      transition: width var(--transition-fast);
    }

    .nav-links a:hover::after {
      width: 100%;
    }

    .nav-cta {
      padding: 8px 16px;
      border-radius: 999px;
      background: linear-gradient(to right, #facc6b, #f97316);
      color: #111827;
      font-weight: 600;
      font-size: 0.86rem;
      border: none;
      cursor: pointer;
      box-shadow: 0 10px 25px rgba(248, 181, 55, 0.4);
      transition: transform var(--transition-fast), box-shadow var(--transition-fast), opacity var(--transition-fast);
      white-space: nowrap;
    }

    .nav-cta:hover {
      transform: translateY(-1px);
      box-shadow: 0 16px 35px rgba(248, 181, 55, 0.6);
      opacity: 0.96;
    }

    .nav-toggle {
      display: none;
      flex-direction: column;
      gap: 4px;
      cursor: pointer;
    }

    .nav-toggle span {
      width: 20px;
      height: 2px;
      background: #e5e7eb;
      border-radius: 999px;
    }

    @media (max-width: 720px) {
      .nav-links {
        position: absolute;
        inset: 55px 16px auto 16px;
        background: rgba(15, 23, 42, 0.98);
        border-radius: 14px;
        padding: 14px 16px;
        flex-direction: column;
        align-items: flex-start;
        border: 1px solid rgba(148, 163, 184, 0.4);
        transform-origin: top;
        transform: scaleY(0.9);
        opacity: 0;
        pointer-events: none;
        transition: opacity var(--transition-fast), transform var(--transition-fast);
      }

      .nav-links.open {
        opacity: 1;
        pointer-events: auto;
        transform: scaleY(1);
      }

      .nav-cta {
        width: 100%;
        justify-content: center;
        text-align: center;
      }

      .nav-toggle {
        display: flex;
      }
    }

    /* Hero */
    .hero {
      padding: 40px 0 70px;
    }

    @media (min-width: 900px) {
      .hero {
        padding: 60px 0 90px;
      }
    }

    .hero-grid {
      display: grid;
      grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
      gap: 38px;
      align-items: center;
    }

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

    .eyebrow {
      display: inline-flex;
      padding: 4px 10px 4px 5px;
      border-radius: 999px;
      border: 1px solid rgba(148, 163, 184, 0.5);
      align-items: center;
      gap: 8px;
      font-size: 0.72rem;
      text-transform: uppercase;
      letter-spacing: 0.09em;
      color: #e5e7eb;
      margin-bottom: 14px;
      background: radial-gradient(circle at left, rgba(250,204,21,0.23), transparent 60%);
    }

    .eyebrow-dot {
      width: 18px;
      height: 18px;
      border-radius: 999px;
      background: radial-gradient(circle at 30% 30%, #facc6b, #f97316);
      box-shadow: 0 0 0 4px rgba(250, 204, 21, 0.15);
    }

    .hero-title {
      font-size: clamp(2.2rem, 4vw, 3rem);
      line-height: 1.08;
      margin-bottom: 16px;
      max-width: 620px;
    }

    .hero-title span.highlight {
      background-image: linear-gradient(to right, #facc6b, #f97316);
      -webkit-background-clip: text;
      color: transparent;
      font-weight: 800;
    }

    .hero-subtitle {
      font-size: 0.97rem;
      color: #cbd5f5;
      max-width: 520px;
      margin-bottom: 26px;
    }

    .hero-badges {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
      margin-bottom: 24px;
      font-size: 0.78rem;
      color: #cbd5f5;
    }

    .hero-badge {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      padding: 5px 9px;
      border-radius: 999px;
      border: 1px solid rgba(148, 163, 184, 0.5);
      background: rgba(15, 23, 42, 0.85);
    }

    .hero-badge-dot {
      width: 8px;
      height: 8px;
      border-radius: 999px;
      background: #22c55e;
      box-shadow: 0 0 0 4px rgba(34,197,94,0.25);
    }

    .hero-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      align-items: center;
      margin-bottom: 18px;
    }

    .hero-actions .primary {
      padding: 10px 20px;
      border-radius: 999px;
      border: none;
      cursor: pointer;
      background: linear-gradient(to right, #facc6b, #f97316);
      color: #111827;
      font-weight: 600;
      font-size: 0.92rem;
      box-shadow: 0 18px 35px rgba(248, 181, 55, 0.65);
      display: inline-flex;
      align-items: center;
      gap: 8px;
      transition: transform var(--transition-fast), box-shadow var(--transition-fast), opacity var(--transition-fast);
    }

    .hero-actions .primary:hover {
      transform: translateY(-1px);
      box-shadow: 0 22px 40px rgba(248, 181, 55, 0.85);
      opacity: 0.97;
    }

    .hero-actions .secondary {
      padding: 9px 14px;
      border-radius: 999px;
      border: 1px solid rgba(148, 163, 184, 0.6);
      background: rgba(15, 23, 42, 0.85);
      color: #e5e7eb;
      font-size: 0.85rem;
      display: inline-flex;
      align-items: center;
      gap: 8px;
      cursor: pointer;
      transition: background var(--transition-fast), border-color var(--transition-fast), transform var(--transition-fast);
    }

    .hero-actions .secondary:hover {
      background: rgba(15, 23, 42, 0.95);
      border-color: rgba(248, 181, 55, 0.8);
      transform: translateY(-1px);
    }

    .hero-footnote {
      font-size: 0.75rem;
      color: #9ca3af;
    }

    /* Hero card */
    .hero-card {
      background: radial-gradient(circle at top left, rgba(248,250,252,0.05), rgba(15,23,42,0.8));
      border-radius: 24px;
      padding: 18px;
      box-shadow: var(--shadow-soft);
      border: 1px solid rgba(148, 163, 184, 0.45);
      position: relative;
      overflow: hidden;
    }

    .hero-card::before {
      content: "";
      position: absolute;
      inset: -60px;
      background:
        radial-gradient(circle at 10% 0%, rgba(234,179,8,0.16), transparent 55%),
        radial-gradient(circle at 100% 40%, rgba(59,130,246,0.1), transparent 55%);
      opacity: 0.8;
      pointer-events: none;
    }

    .hero-card-inner {
      position: relative;
      z-index: 1;
    }

    .hero-card-header {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-bottom: 14px;
    }

    .hero-card-title {
      font-size: 0.9rem;
      font-weight: 600;
      color: #e5e7eb;
    }

    .hero-card-pill {
      font-size: 0.7rem;
      padding: 4px 10px;
      border-radius: 999px;
      background: rgba(15,23,42,0.85);
      border: 1px solid rgba(248, 181, 55, 0.7);
      display: inline-flex;
      align-items: center;
      gap: 6px;
    }

    .hero-card-pill span.dot {
      width: 8px;
      height: 8px;
      border-radius: 999px;
      background: #22c55e;
    }

    .hero-card-body {
      background: rgba(15,23,42,0.85);
      border-radius: 18px;
      padding: 14px;
      border: 1px solid rgba(148, 163, 184, 0.5);
      margin-bottom: 12px;
    }

    .hero-card-body h3 {
      font-size: 0.9rem;
      margin-bottom: 8px;
    }

    .hero-card-body p {
      font-size: 0.8rem;
      color: #cbd5f5;
      margin-bottom: 10px;
    }

    .hero-card-steps {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 8px;
      font-size: 0.68rem;
    }

    .hero-card-step {
      padding: 6px 7px;
      border-radius: 12px;
      background: rgba(15,23,42,0.95);
      border: 1px solid rgba(148, 163, 184, 0.6);
    }

    .hero-card-step span {
      display: block;
    }

    .hero-card-step span.label {
      color: #9ca3af;
      margin-bottom: 2px;
      text-transform: uppercase;
      letter-spacing: 0.1em;
      font-size: 0.6rem;
    }

    .hero-card-step span.value {
      color: #e5e7eb;
      font-weight: 500;
    }

    .hero-card-footer {
      display: flex;
      justify-content: space-between;
      align-items: center;
      font-size: 0.75rem;
      color: #cbd5f5;
    }

    .hero-card-footer-avatars {
      display: flex;
      gap: -8px;
    }

    .hero-card-footer-avatar {
      width: 22px;
      height: 22px;
      border-radius: 999px;
      border: 1px solid rgba(15,23,42,0.8);
      background: radial-gradient(circle at 30% 30%, #facc6b, #f97316);
    }

    .hero-card-footer-badge {
      padding: 4px 8px;
      border-radius: 999px;
      background: rgba(15,23,42,0.9);
      border: 1px solid rgba(148, 163, 184, 0.6);
      font-size: 0.7rem;
    }

    /* Sections wrapper */
    main {
      background: linear-gradient(to bottom, rgba(15,23,42,1) 0, #020617 40%, #020617 100%);
      flex: 1;
    }

    .section {
      padding: 36px 0;
    }

    @media (min-width: 900px) {
      .section {
        padding: 48px 0;
      }
    }

    .section-header {
      text-align: center;
      margin-bottom: 24px;
      color: #e5e7eb;
    }

    .section-kicker {
      font-size: 0.75rem;
      text-transform: uppercase;
      letter-spacing: 0.2em;
      color: #9ca3af;
      margin-bottom: 6px;
    }

    .section-title {
      font-size: 1.4rem;
      margin-bottom: 6px;
    }

    .section-subtitle {
      font-size: 0.9rem;
      color: #9ca3af;
      max-width: 540px;
      margin: 0 auto;
    }

    /* How it works */
    .steps-grid {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 18px;
    }

    @media (max-width: 900px) {
      .steps-grid {
        grid-template-columns: minmax(0, 1fr);
      }
    }

    .step-card {
      background: radial-gradient(circle at top, rgba(15,23,42,0.95), rgba(15,23,42,1));
      border-radius: var(--radius-lg);
      padding: 18px;
      border: 1px solid rgba(148, 163, 184, 0.5);
      color: #e5e7eb;
      box-shadow: 0 16px 32px rgba(15,23,42,0.5);
    }

    .step-label {
      font-size: 0.75rem;
      text-transform: uppercase;
      letter-spacing: 0.15em;
      color: #9ca3af;
      margin-bottom: 4px;
    }

    .step-title {
      font-size: 1rem;
      margin-bottom: 6px;
    }

    .step-text {
      font-size: 0.86rem;
      color: #cbd5f5;
    }

    /* Finder form */
    .finder-wrapper {
      display: grid;
      grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.9fr);
      gap: 22px;
      align-items: center;
    }

    @media (max-width: 900px) {
      .finder-wrapper {
        grid-template-columns: minmax(0, 1fr);
      }
    }

    .finder-card {
      background: #f8fafc;
      border-radius: 24px;
      padding: 20px 20px 18px;
      box-shadow: var(--shadow-soft);
      color: #020617;
      border: 1px solid #e2e8f0;
    }

    .finder-header {
      margin-bottom: 12px;
    }

    .finder-header h3 {
      font-size: 1.1rem;
      margin-bottom: 4px;
    }

    .finder-header p {
      font-size: 0.84rem;
      color: #6b7280;
    }

    .finder-grid {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 10px 12px;
      margin-bottom: 10px;
    }

    @media (max-width: 600px) {
      .finder-grid {
        grid-template-columns: minmax(0, 1fr);
      }
    }

    .form-field {
      display: flex;
      flex-direction: column;
      gap: 3px;
      font-size: 0.8rem;
    }

    .form-field label {
      color: #4b5563;
      font-weight: 500;
    }

    .form-field input,
    .form-field select,
    .form-field textarea {
      border-radius: 12px;
      border: 1px solid #d1d5db;
      padding: 8px 9px;
      font-size: 0.8rem;
      font-family: inherit;
      outline: none;
      transition: border-color var(--transition-fast), box-shadow var(--transition-fast), background var(--transition-fast);
      background: #ffffff;
    }

    .form-field input:focus,
    .form-field select:focus,
    .form-field textarea:focus {
      border-color: #f97316;
      box-shadow: 0 0 0 1px rgba(248, 181, 55, 0.7);
      background: #ffffff;
    }

    .form-field textarea {
      resize: vertical;
      min-height: 68px;
    }

    .finder-footer {
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 10px;
      margin-top: 6px;
      flex-wrap: wrap;
    }

    .finder-footer button {
      padding: 9px 18px;
      border-radius: 999px;
      border: none;
      cursor: pointer;
      font-size: 0.86rem;
      font-weight: 600;
      background: linear-gradient(to right, #f97316, #facc6b);
      color: #111827;
      box-shadow: 0 12px 26px rgba(248, 181, 55, 0.6);
      display: inline-flex;
      align-items: center;
      gap: 6px;
      transition: transform var(--transition-fast), box-shadow var(--transition-fast), opacity var(--transition-fast);
    }

    .finder-footer button:hover {
      transform: translateY(-1px);
      box-shadow: 0 14px 30px rgba(248, 181, 55, 0.8);
      opacity: 0.97;
    }

    .finder-note {
      font-size: 0.72rem;
      color: #6b7280;
      max-width: 230px;
    }

    .finder-side {
      color: #e5e7eb;
      font-size: 0.88rem;
    }

    .finder-side h3 {
      font-size: 1.05rem;
      margin-bottom: 6px;
    }

    .finder-side p {
      color: #cbd5f5;
      margin-bottom: 10px;
    }

    .finder-points {
      list-style: none;
      padding-left: 0;
      margin: 0;
      display: grid;
      gap: 6px;
      font-size: 0.82rem;
      color: #cbd5f5;
    }

    .finder-points li::before {
      content: "•";
      color: #facc6b;
      margin-right: 6px;
    }

    /* Why choose us */
    .features-grid {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 18px;
    }

    @media (max-width: 900px) {
      .features-grid {
        grid-template-columns: minmax(0, 1fr);
      }
    }

    .feature-card {
      background: radial-gradient(circle at top, rgba(15,23,42,0.95), rgba(15,23,42,1));
      border-radius: var(--radius-lg);
      padding: 18px;
      border: 1px solid rgba(148, 163, 184, 0.5);
      color: #e5e7eb;
      box-shadow: 0 16px 32px rgba(15,23,42,0.5);
      position: relative;
      overflow: hidden;
    }

    .feature-icon {
      width: 32px;
      height: 32px;
      border-radius: 999px;
      background: radial-gradient(circle at 30% 30%, #facc6b, #f97316);
      margin-bottom: 8px;
      display: flex;
      align-items: center;
      justify-content: center;
      color: #111827;
      font-weight: 800;
      font-size: 0.9rem;
      box-shadow: 0 8px 20px rgba(248, 181, 55, 0.5);
    }

    .feature-title {
      font-size: 0.98rem;
      margin-bottom: 6px;
    }

    .feature-text {
      font-size: 0.84rem;
      color: #cbd5f5;
    }

    /* Testimonials & Contact */
    .two-column {
      display: grid;
      grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
      gap: 18px;
      align-items: flex-start;
    }

    @media (max-width: 900px) {
      .two-column {
        grid-template-columns: minmax(0, 1fr);
      }
    }

    .testimonials-card {
      background: radial-gradient(circle at top, rgba(15,23,42,0.95), rgba(15,23,42,1));
      border-radius: 24px;
      padding: 18px;
      border: 1px solid rgba(148, 163, 184, 0.5);
      color: #e5e7eb;
    }

    .testimonial {
      border-left: 2px solid rgba(248, 181, 55, 0.8);
      padding-left: 10px;
      margin-bottom: 12px;
    }

    .testimonial:last-child {
      margin-bottom: 0;
    }

    .testimonial-text {
      font-size: 0.84rem;
      margin-bottom: 4px;
      color: #e5e7eb;
    }

    .testimonial-meta {
      font-size: 0.75rem;
      color: #9ca3af;
    }

    .contact-card {
      background: #020617;
      border-radius: 24px;
      padding: 18px;
      border: 1px solid rgba(148, 163, 184, 0.5);
      color: #e5e7eb;
    }

    .contact-card h3 {
      font-size: 1.05rem;
      margin-bottom: 6px;
    }

    .contact-card p {
      font-size: 0.86rem;
      color: #cbd5f5;
      margin-bottom: 10px;
    }

    .contact-details {
      display: grid;
      gap: 6px;
      margin-bottom: 10px;
      font-size: 0.84rem;
    }

    .contact-details span.label {
      color: #9ca3af;
    }

    .contact-details a {
      color: #facc6b;
    }

    .contact-small {
      font-size: 0.74rem;
      color: #9ca3af;
    }

    /* Footer */
    footer {
      background: #020617;
      border-top: 1px solid rgba(148, 163, 184, 0.4);
      color: #6b7280;
      font-size: 0.78rem;
    }

    .footer-inner {
      padding: 14px 0 18px;
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
      justify-content: space-between;
      align-items: center;
    }

    .footer-links {
      display: flex;
      gap: 14px;
      flex-wrap: wrap;
    }

    .footer-links a {
      color: #9ca3af;
    }