<style>

  </style>
  
      :root {
      --color-primary: #1a3a6b;
      --color-primary-light: #28528f;
      --color-primary-dark: #102445;
      --color-accent: #f2b316;
      --color-accent-soft: rgba(242, 179, 22, 0.16);
      --color-bg: #f5f7fb;
      --color-border: #e2e8f0;
      --color-text: #111827;
      --color-muted: #6b7280;
      --shadow-soft: 0 18px 45px rgba(15, 23, 42, 0.16);
      --radius-lg: 18px;
      --radius-md: 12px;
      --radius-pill: 999px;
      --transition-fast: 180ms ease-out;
      --transition-med: 260ms ease-out;
      --header-height: 76px;
    }

    * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      margin: 0;
      font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
      background: radial-gradient(circle at top left, #e5edff 0, #f9fafb 40%, #eef2ff 95%);
      color: var(--color-text);
      line-height: 1.6;
      -webkit-font-smoothing: antialiased;
    }

    img {
      max-width: 100%;
      display: block;
    }

    a {
      color: inherit;
      text-decoration: none;
    }

    button {
      font: inherit;
    }

    .container {
      width: min(1120px, 100% - 2.5rem);
      margin-inline: auto;
    }

    .section {
      padding: 5rem 0;
      scroll-margin-top: calc(var(--header-height) + 24px);
    }

    @media (max-width: 768px) {
      .section {
        padding: 3.25rem 0;
      }
    }

    h1, h2, h3, h4 {
      font-weight: 700;
      color: #020617;
      letter-spacing: -0.02em;
    }

    h1 {
      font-size: clamp(2.2rem, 3vw + 1.5rem, 3.3rem);
      line-height: 1.08;
      margin-bottom: 1.2rem;
    }

    h2 {
      font-size: clamp(1.6rem, 1.1rem + 1vw, 2.1rem);
      margin-bottom: 1rem;
    }

    h3 {
      font-size: 1.15rem;
      margin-bottom: 0.5rem;
    }

    p {
      color: var(--color-muted);
      font-size: 0.98rem;
    }

    /* Header */
    .site-header {
      position: sticky;
      top: 0;
      z-index: 40;
      backdrop-filter: blur(18px);
      background: radial-gradient(circle at top left, rgba(37, 99, 235, 0.12) 0, rgba(15, 23, 42, 0.96) 38%, rgba(15, 23, 42, 0.96) 100%);
      color: #e5e7eb;
      border-bottom: 1px solid rgba(148, 163, 184, 0.35);
      transition: background var(--transition-med), box-shadow var(--transition-med), border-color var(--transition-med), transform 120ms ease-out;
    }

    .site-header.scrolled {
      background: rgba(15, 23, 42, 0.97);
      box-shadow: 0 18px 40px rgba(15, 23, 42, 0.45);
      border-color: rgba(148, 163, 184, 0.45);
    }

    .header-inner {
      height: var(--header-height);
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 2rem;
    }

    .brand {
      display: flex;
      align-items: center;
      gap: 0.65rem;
    }

    .brand-mark {
      width: 34px;
      height: 34px;
      border-radius: 12px;
      background:
        radial-gradient(circle at 20% 0%, rgba(248, 250, 252, 0.85) 0, transparent 45%),
        linear-gradient(135deg, #facc15, #f97316);
      position: relative;
      box-shadow: 0 10px 24px rgba(250, 204, 21, 0.65);
      display: flex;
      align-items: center;
      justify-content: center;
      color: #0f172a;
      font-size: 0.95rem;
      font-weight: 800;
    }

    .brand-mark::after {
      content: "";
      position: absolute;
      inset: 3px;
      border-radius: inherit;
      border: 1px solid rgba(15, 23, 42, 0.16);
    }

    .brand-text {
      display: flex;
      flex-direction: column;
    }

    .brand-name {
      font-size: 1rem;
      font-weight: 650;
      letter-spacing: 0.05em;
      text-transform: uppercase;
      color: #e5e7eb;
    }

    .brand-tagline {
      font-size: 0.7rem;
      text-transform: uppercase;
      letter-spacing: 0.16em;
      color: #9ca3af;
    }

    .primary-nav {
      display: flex;
      align-items: center;
      gap: 1.8rem;
      font-size: 0.9rem;
    }

    .primary-nav a {
      position: relative;
      color: #e5e7eb;
      padding: 0.25rem 0;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      font-weight: 550;
      font-size: 0.72rem;
      opacity: 0.86;
      transition: color var(--transition-fast), opacity var(--transition-fast), transform var(--transition-fast);
    }

    .primary-nav a::after {
      content: "";
      position: absolute;
      left: 0;
      bottom: -0.25rem;
      width: 0;
      height: 2px;
      border-radius: 999px;
      background: linear-gradient(90deg, #facc15, #fb923c);
      transition: width var(--transition-fast);
    }

    .primary-nav a:hover {
      opacity: 1;
      transform: translateY(-1px);
    }

    .primary-nav a:hover::after {
      width: 100%;
    }

    .header-cta {
      display: flex;
      align-items: center;
      gap: 0.75rem;
    }

    .header-meta {
      display: flex;
      flex-direction: column;
      text-align: right;
    }

    .header-meta-label {
      font-size: 0.68rem;
      text-transform: uppercase;
      letter-spacing: 0.16em;
      color: #9ca3af;
    }

    .header-meta-value {
      font-size: 0.85rem;
      font-weight: 600;
      color: #e5e7eb;
    }

    .pill {
      display: inline-flex;
      align-items: center;
      gap: 0.35rem;
      padding: 0.3rem 0.7rem;
      border-radius: 999px;
      border: 1px solid rgba(148, 163, 184, 0.65);
      background: radial-gradient(circle at 0 0, rgba(248, 250, 252, 0.12) 0, transparent 45%);
      font-size: 0.7rem;
      color: #e5e7eb;
    }

    .pill-dot {
      width: 7px;
      height: 7px;
      border-radius: 999px;
      background: #22c55e;
      box-shadow: 0 0 0 4px rgba(34, 197, 94, 0.26);
    }

    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 0.4rem;
      border-radius: var(--radius-pill);
      padding: 0.55rem 1.3rem;
      font-size: 0.82rem;
      font-weight: 600;
      border: 1px solid transparent;
      cursor: pointer;
      transition: background var(--transition-fast), color var(--transition-fast), box-shadow var(--transition-fast), transform var(--transition-fast), border-color var(--transition-fast);
      white-space: nowrap;
    }

    .btn-primary {
      background: radial-gradient(circle at 0 0, #facc15 0, #f97316 34%, #ea580c 80%);
      color: #0f172a;
      box-shadow: 0 18px 40px rgba(251, 146, 60, 0.55);
    }

    .btn-primary:hover {
      transform: translateY(-1px);
      box-shadow: 0 20px 50px rgba(251, 146, 60, 0.7);
    }

    .btn-ghost {
      background: transparent;
      color: #e5e7eb;
      border-color: rgba(148, 163, 184, 0.6);
    }

    .btn-ghost:hover {
      background: rgba(15, 23, 42, 0.85);
      border-color: rgba(148, 163, 184, 0.85);
    }

    .btn-light {
      background: #ffffff;
      color: var(--color-primary-dark);
      border-color: rgba(148, 163, 184, 0.45);
      box-shadow: 0 16px 40px rgba(148, 163, 184, 0.4);
    }

    .btn-light:hover {
      transform: translateY(-1px);
      box-shadow: 0 20px 50px rgba(148, 163, 184, 0.55);
      border-color: rgba(148, 163, 184, 0.7);
    }

    .btn-icon {
      font-size: 1rem;
      line-height: 0;
    }

    .nav-toggle {
      display: none;
      width: 40px;
      height: 40px;
      border-radius: 999px;
      border: 1px solid rgba(148, 163, 184, 0.7);
      background: radial-gradient(circle at 0 0, rgba(248, 250, 252, 0.32) 0, rgba(15, 23, 42, 0.86) 55%);
      align-items: center;
      justify-content: center;
      cursor: pointer;
      padding: 0;
    }

    .nav-toggle-bars {
      width: 18px;
      height: 14px;
      position: relative;
    }

    .nav-toggle-bars span {
      position: absolute;
      left: 0;
      right: 0;
      height: 2px;
      border-radius: 999px;
      background: #e5e7eb;
      transition: transform 160ms ease-out, opacity 160ms ease-out, top 160ms ease-out, bottom 160ms ease-out;
    }

    .nav-toggle-bars span:nth-child(1) { top: 0; }
    .nav-toggle-bars span:nth-child(2) { top: 6px; }
    .nav-toggle-bars span:nth-child(3) { bottom: 0; }

    .nav-toggle.open .nav-toggle-bars span:nth-child(1) {
      top: 6px;
      transform: rotate(45deg);
    }

    .nav-toggle.open .nav-toggle-bars span:nth-child(2) {
      opacity: 0;
    }

    .nav-toggle.open .nav-toggle-bars span:nth-child(3) {
      bottom: auto;
      top: 6px;
      transform: rotate(-45deg);
    }

    @media (max-width: 900px) {
      .primary-nav {
        position: fixed;
        inset: calc(var(--header-height) + 4px) 1.25rem auto 1.25rem;
        border-radius: 22px;
        background: radial-gradient(circle at 0 0, rgba(248, 250, 252, 0.08) 0, rgba(15, 23, 42, 0.98) 50%);
        border: 1px solid rgba(148, 163, 184, 0.8);
        padding: 1.1rem 1.1rem 1.25rem;
        display: none;
        flex-direction: column;
        gap: 1.1rem;
        box-shadow: 0 24px 60px rgba(15, 23, 42, 0.9);
      }

      .primary-nav.open {
        display: flex;
      }

      .header-cta {
        display: none;
      }

      .nav-toggle {
        display: inline-flex;
      }

      .primary-nav a {
        font-size: 0.8rem;
      }

      body.nav-open {
        overflow: hidden;
      }
    }

    /* Hero */
    .hero {
      position: relative;
      min-height: calc(100vh - var(--header-height));
      display: flex;
      align-items: center;
      color: #e5e7eb;
      overflow: hidden;
      isolation: isolate;
    }

    .hero-slider {
      position: absolute;
      inset: 0;
      z-index: -3;
    }

    .hero-slide {
      position: absolute;
      inset: 0;
      background-size: cover;
      background-position: center;
      filter: saturate(1.1) contrast(1.05);
      transform: scale(1.04);
      opacity: 0;
      transition: opacity 1.2s ease-in-out;
    }

    .hero-slide.active {
      opacity: 1;
    }

    .hero::before {
      content: "";
      position: absolute;
      inset: -10%;
      background:
        radial-gradient(circle at 10% 0%, rgba(248, 250, 252, 0.58) 0, transparent 38%),
        radial-gradient(circle at 90% 0%, rgba(248, 250, 252, 0.25) 0, transparent 40%),
        linear-gradient(135deg, rgba(15, 23, 42, 0.96), rgba(30, 64, 175, 0.98));
      mix-blend-mode: multiply;
      z-index: -2;
    }

    .hero::after {
      content: "";
      position: absolute;
      inset: 0;
      background: radial-gradient(circle at bottom, rgba(15, 23, 42, 0.5), transparent 55%);
      z-index: -1;
    }

    .hero-inner {
      display: grid;
      grid-template-columns: minmax(0, 1.4fr) minmax(0, 1.1fr);
      align-items: center;
      gap: 3rem;
      padding: 4.2rem 0 4.5rem;
    }

    .hero-kicker {
      display: inline-flex;
      align-items: center;
      gap: 0.4rem;
      padding: 0.25rem 0.6rem 0.25rem 0.25rem;
      border-radius: 999px;
      border: 1px solid rgba(148, 163, 184, 0.7);
      background: rgba(15, 23, 42, 0.85);
      margin-bottom: 1.4rem;
    }

    .hero-kicker-badge {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 24px;
      height: 24px;
      border-radius: 999px;
      background: radial-gradient(circle at 0 0, #facc15 0, #f97316 60%, #ea580c 100%);
      color: #0f172a;
      font-size: 0.7rem;
      font-weight: 800;
      box-shadow: 0 0 0 3px rgba(234, 179, 8, 0.35);
    }

    .hero-kicker-text {
      font-size: 0.73rem;
      text-transform: uppercase;
      letter-spacing: 0.14em;
      color: #e5e7eb;
    }

    .hero h1 {
      color: #f9fafb;
    }

    .hero-highlight {
      color: #fde68a;
    }

    .hero-description {
      font-size: 0.98rem;
      max-width: 34rem;
      margin-bottom: 1.8rem;
      color: #e5e7eb;
      opacity: 0.92;
    }

    .hero-cta-row {
      display: flex;
      flex-wrap: wrap;
      gap: 0.75rem;
      margin-bottom: 1.4rem;
    }

    .hero-cta-secondary {
      display: inline-flex;
      align-items: center;
      gap: 0.45rem;
      font-size: 0.8rem;
      color: #e5e7eb;
      opacity: 0.9;
    }

    .hero-cta-secondary-icon {
      width: 18px;
      height: 18px;
      border-radius: 999px;
      border: 1px solid rgba(148, 163, 184, 0.65);
      display: inline-flex;
      align-items: center;
      justify-content: center;
      font-size: 0.8rem;
    }

    .hero-meta {
      display: flex;
      flex-wrap: wrap;
      gap: 0.55rem;
      margin-top: 1.4rem;
    }

    .hero-meta-item {
      display: inline-flex;
      align-items: center;
      gap: 0.4rem;
      padding: 0.4rem 0.75rem;
      border-radius: 999px;
      border: 1px solid rgba(148, 163, 184, 0.7);
      background: rgba(15, 23, 42, 0.85);
      font-size: 0.72rem;
      color: #e5e7eb;
    }

    .hero-meta-dot {
      width: 9px;
      height: 9px;
      border-radius: 999px;
      background: #22c55e;
      box-shadow: 0 0 0 4px rgba(34, 197, 94, 0.32);
    }

    .hero-card {
      backdrop-filter: blur(18px);
      background: linear-gradient(145deg, rgba(15, 23, 42, 0.84), rgba(15, 23, 42, 0.93));
      border-radius: 26px;
      padding: 1.7rem 1.7rem 1.5rem;
      border: 1px solid rgba(148, 163, 184, 0.65);
      box-shadow: var(--shadow-soft);
      color: #e5e7eb;
    }

    .hero-card-header {
      display: flex;
      justify-content: space-between;
      gap: 1rem;
      margin-bottom: 1.25rem;
    }

    .hero-card-title {
      font-size: 0.88rem;
      text-transform: uppercase;
      letter-spacing: 0.14em;
      color: #9ca3af;
    }

    .hero-card-badge {
      display: inline-flex;
      align-items: center;
      gap: 0.35rem;
      padding: 0.3rem 0.75rem;
      border-radius: 999px;
      background: rgba(22, 163, 74, 0.18);
      border: 1px solid rgba(22, 163, 74, 0.6);
      font-size: 0.7rem;
      color: #bbf7d0;
    }

    .hero-card-badge-dot {
      width: 7px;
      height: 7px;
      border-radius: 999px;
      background: #22c55e;
      box-shadow: 0 0 0 3px rgba(22, 163, 74, 0.4);
    }

    .hero-card-list {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 0.75rem;
      margin-bottom: 1.25rem;
    }

    .hero-card-item {
      display: flex;
      align-items: flex-start;
      gap: 0.45rem;
    }

    .hero-card-item-icon {
      margin-top: 0.07rem;
      font-size: 0.85rem;
      color: #bbf7d0;
    }

    .hero-card-item span {
      font-size: 0.83rem;
      color: #e5e7eb;
    }

    .hero-card-footer {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 0.75rem;
      padding-top: 0.9rem;
      border-top: 1px dashed rgba(148, 163, 184, 0.6);
    }

    .hero-card-sub {
      font-size: 0.76rem;
      color: #9ca3af;
    }

    .hero-card-sub strong {
      color: #e5e7eb;
      font-weight: 600;
    }

    .hero-card-avatars {
      display: flex;
      align-items: center;
    }

    .hero-avatar {
      width: 26px;
      height: 26px;
      border-radius: 999px;
      border: 1px solid rgba(15, 23, 42, 0.9);
      overflow: hidden;
      margin-left: -8px;
      box-shadow: 0 8px 22px rgba(15, 23, 42, 0.85);
    }

    .hero-avatar:first-child {
      margin-left: 0;
    }

    .hero-avatar-more {
      display: flex;
      align-items: center;
      justify-content: center;
      background: radial-gradient(circle at 0 0, #facc15 0, #f97316 60%, #ea580c 100%);
      color: #0f172a;
      font-size: 0.75rem;
      font-weight: 700;
    }

    @media (max-width: 960px) {
      .hero-inner {
        grid-template-columns: minmax(0, 1.4fr);
        padding-top: 3.3rem;
        padding-bottom: 3.4rem;
      }

      .hero-card {
        max-width: 420px;
      }
    }

    @media (max-width: 640px) {
      .hero-inner {
        gap: 2.2rem;
      }

      .hero-meta {
        gap: 0.4rem;
      }

      .hero-meta-item {
        font-size: 0.7rem;
      }

      .hero-card {
        padding: 1.3rem 1.2rem 1.2rem;
        border-radius: 22px;
      }

      .hero-card-list {
        grid-template-columns: minmax(0, 1fr);
      }
    }

    /* About */
    .section-header {
      max-width: 640px;
      margin-bottom: 2.5rem;
    }

    .section-kicker {
      font-size: 0.72rem;
      text-transform: uppercase;
      letter-spacing: 0.16em;
      color: var(--color-primary);
      margin-bottom: 0.45rem;
    }

    .section-header p {
      margin-top: 0.35rem;
      font-size: 0.95rem;
    }

    .about-grid {
      display: grid;
      grid-template-columns: minmax(0, 1.2fr) minmax(0, 1.25fr);
      gap: 3rem;
      align-items: center;
    }

    .about-banner {
      position: relative;
      border-radius: 26px;
      overflow: hidden;
      box-shadow: 0 26px 60px rgba(15, 23, 42, 0.25);
      transform: translateY(0);
      transition: transform 200ms ease-out, box-shadow 200ms ease-out;
    }

    .about-banner img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transform: scale(1.04);
      transition: transform 260ms ease-out;
    }

    .about-banner::after {
      content: "";
      position: absolute;
      inset: 0;
      background: radial-gradient(circle at top left, rgba(248, 250, 252, 0.5) 0, transparent 40%), linear-gradient(145deg, rgba(15, 23, 42, 0.1), rgba(30, 64, 175, 0.4));
      mix-blend-mode: soft-light;
    }

    .about-banner:hover {
      transform: translateY(-4px);
      box-shadow: 0 32px 70px rgba(15, 23, 42, 0.35);
    }

    .about-banner:hover img {
      transform: scale(1.07);
    }

    .about-tagline {
      font-size: 0.92rem;
      margin-bottom: 1.1rem;
    }

    .about-list {
      list-style: none;
      margin: 1.1rem 0 1.4rem;
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 0.7rem;
    }

    .about-list li {
      display: flex;
      align-items: flex-start;
      gap: 0.45rem;
      font-size: 0.92rem;
      color: var(--color-text);
    }

    .about-list li span:first-child {
      color: #16a34a;
      font-size: 1rem;
      margin-top: 0.05rem;
    }

    .about-stats {
      position: absolute;
      left: 1.4rem;
      bottom: 1.4rem;
      padding: 0.75rem 0.9rem;
      border-radius: 16px;
      border: 1px solid rgba(15, 23, 42, 0.25);
      background: rgba(248, 250, 252, 0.96);
      box-shadow: 0 16px 40px rgba(15, 23, 42, 0.45);
      display: flex;
      gap: 1rem;
      align-items: center;
    }

    .about-stat {
      display: flex;
      flex-direction: column;
    }

    .about-stat strong {
      font-size: 1rem;
      color: var(--color-primary-dark);
    }

    .about-stat span {
      font-size: 0.7rem;
      text-transform: uppercase;
      letter-spacing: 0.1em;
      color: var(--color-muted);
    }

    @media (max-width: 960px) {
      .about-grid {
        grid-template-columns: minmax(0, 1fr);
        gap: 2.4rem;
      }

      .about-stats {
        position: static;
        margin-top: 0.9rem;
      }

      .about-banner {
        border-radius: 22px;
      }
    }

    @media (max-width: 640px) {
      .about-list {
        grid-template-columns: minmax(0, 1fr);
      }
    }

    /* Services */
    .services-grid {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 1.5rem;
    }

    .card {
      border-radius: var(--radius-lg);
      background: rgba(248, 250, 252, 0.92);
      border: 1px solid rgba(226, 232, 240, 0.9);
      box-shadow: 0 18px 45px rgba(15, 23, 42, 0.08);
      padding: 1.4rem 1.4rem 1.3rem;
      transition: transform var(--transition-fast), box-shadow var(--transition-fast), border-color var(--transition-fast), background var(--transition-fast);
    }

    .card:hover {
      transform: translateY(-4px);
      box-shadow: 0 22px 55px rgba(15, 23, 42, 0.16);
      border-color: rgba(148, 163, 184, 0.7);
      background: #ffffff;
    }

    .card-icon {
      width: 34px;
      height: 34px;
      border-radius: 14px;
      background: linear-gradient(135deg, var(--color-accent), #f97316);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.1rem;
      margin-bottom: 0.65rem;
      color: #0f172a;
      box-shadow: 0 14px 30px rgba(249, 115, 22, 0.45);
    }

    .card p {
      font-size: 0.9rem;
      margin-bottom: 0.65rem;
    }

    .card-tags {
      display: flex;
      flex-wrap: wrap;
      gap: 0.35rem;
    }

    .tag {
      font-size: 0.72rem;
      padding: 0.2rem 0.55rem;
      border-radius: 999px;
      border: 1px solid rgba(148, 163, 184, 0.7);
      background: rgba(248, 250, 252, 0.9);
      color: #475569;
    }

    @media (max-width: 960px) {
      .services-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }
    }

    @media (max-width: 640px) {
      .services-grid {
        grid-template-columns: minmax(0, 1fr);
      }
    }

    /* Testimonials */
    .testimonials {
      background: radial-gradient(circle at top left, rgba(37, 99, 235, 0.08) 0, rgba(15, 23, 42, 0.96) 48%, rgba(15, 23, 42, 0.97) 100%);
      color: #e5e7eb;
    }

    .testimonials .section-header h2,
    .testimonials .section-header p {
      color: #f9fafb;
    }

    .testimonial-slider {
      border-radius: 26px;
      border: 1px solid rgba(148, 163, 184, 0.6);
      background: radial-gradient(circle at 0 0, rgba(248, 250, 252, 0.08) 0, rgba(15, 23, 42, 0.96) 60%);
      padding: 1.5rem 1.5rem 1.3rem;
      box-shadow: 0 26px 60px rgba(15, 23, 42, 0.9);
      display: grid;
      grid-template-columns: auto minmax(0, 1fr) auto;
      align-items: center;
      gap: 1.2rem;
    }

    .testimonial-slide {
      display: none;
      animation: fadeIn 260ms ease-out;
    }

    .testimonial-slide.active {
      display: block;
    }

    .testimonial-quote {
      font-size: 0.96rem;
      margin-bottom: 0.8rem;
      color: #e5e7eb;
    }

    .testimonial-author {
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 0.8rem;
      font-size: 0.82rem;
      color: #cbd5f5;
    }

    .testimonial-author-main {
      display: flex;
      flex-direction: column;
    }

    .testimonial-author-main strong {
      color: #f9fafb;
      font-size: 0.86rem;
    }

    .testimonial-meta {
      font-size: 0.78rem;
      color: #9ca3af;
    }

    .testimonial-rating {
      display: flex;
      align-items: center;
      gap: 0.2rem;
      font-size: 0.78rem;
      color: #facc15;
    }

    .testimonial-rating span:last-child {
      color: #cbd5f5;
      font-size: 0.76rem;
    }

    .slider-btn {
      width: 32px;
      height: 32px;
      border-radius: 999px;
      border: 1px solid rgba(148, 163, 184, 0.7);
      background: rgba(15, 23, 42, 0.8);
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      color: #e5e7eb;
      transition: background var(--transition-fast), border-color var(--transition-fast), transform var(--transition-fast);
    }

    .slider-btn:hover {
      background: rgba(15, 23, 42, 0.9);
      border-color: rgba(248, 250, 252, 0.85);
      transform: translateY(-1px);
    }

    .testimonial-dots {
      display: flex;
      gap: 0.35rem;
      justify-content: center;
      margin-top: 0.9rem;
    }

    .testimonial-dot {
      width: 7px;
      height: 7px;
      border-radius: 999px;
      border: 1px solid rgba(148, 163, 184, 0.7);
      background: transparent;
      cursor: pointer;
      transition: background var(--transition-fast), transform var(--transition-fast), border-color var(--transition-fast), width var(--transition-fast);
    }

    .testimonial-dot.active {
      width: 18px;
      background: linear-gradient(90deg, #facc15, #fb923c);
      border-color: transparent;
      transform: translateY(-1px);
    }

    @keyframes fadeIn {
      from { opacity: 0; transform: translateY(4px); }
      to { opacity: 1; transform: translateY(0); }
    }

    @media (max-width: 768px) {
      .testimonial-slider {
        grid-template-columns: minmax(0, 1fr);
        padding: 1.25rem 1.15rem 1.1rem;
      }

      .slider-btn {
        display: none;
      }
    }

    /* FAQ */
    .faq-grid {
      display: grid;
      grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.4fr);
      gap: 2.5rem;
    }

    .faq-intro {
      font-size: 0.95rem;
    }

    .faq-intro p {
      margin-bottom: 0.65rem;
    }

    .faq-cta {
      margin-top: 1rem;
      font-size: 0.9rem;
    }

    .faq-cta strong {
      color: var(--color-primary-dark);
    }

    .faq-list {
      border-radius: 20px;
      border: 1px solid rgba(203, 213, 225, 0.9);
      background: rgba(248, 250, 252, 0.95);
      overflow: hidden;
    }

    .faq-item + .faq-item {
      border-top: 1px solid rgba(226, 232, 240, 0.9);
    }

    .faq-question {
      width: 100%;
      text-align: left;
      background: none;
      border: none;
      padding: 0.9rem 1rem;
      font-size: 0.92rem;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 1rem;
      cursor: pointer;
    }

    .faq-question-text {
      font-weight: 600;
      color: var(--color-text);
    }

    .faq-toggle-icon {
      flex-shrink: 0;
      width: 22px;
      height: 22px;
      border-radius: 999px;
      border: 1px solid rgba(148, 163, 184, 0.8);
      display: inline-flex;
      align-items: center;
      justify-content: center;
      font-size: 0.75rem;
      color: var(--color-muted);
      transition: transform var(--transition-fast), background var(--transition-fast), border-color var(--transition-fast), color var(--transition-fast);
    }

    .faq-item.open .faq-toggle-icon {
      transform: rotate(90deg);
      background: var(--color-primary);
      border-color: var(--color-primary);
      color: #fefce8;
    }

    .faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 1rem;
      font-size: 0.9rem;
      color: var(--color-muted);
      transition: max-height 240ms ease-out, padding-bottom 240ms ease-out;
    }

    .faq-item.open .faq-answer {
      max-height: 200px;
      padding-bottom: 0.9rem;
    }

    @media (max-width: 900px) {
      .faq-grid {
        grid-template-columns: minmax(0, 1fr);
      }
    }

    /* Contact / Form */
    .contact {
      background: radial-gradient(circle at top left, rgba(37, 99, 235, 0.08) 0, rgba(248, 250, 252, 0.96) 40%, rgba(226, 232, 240, 0.9) 100%);
    }

    .contact-grid {
      display: grid;
      grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.2fr);
      gap: 2.6rem;
      align-items: flex-start;
    }

    .contact-highlight {
      display: inline-flex;
      align-items: center;
      gap: 0.45rem;
      padding: 0.3rem 0.75rem;
      border-radius: 999px;
      border: 1px solid rgba(148, 163, 184, 0.7);
      background: rgba(255, 255, 255, 0.9);
      font-size: 0.75rem;
      margin-bottom: 1.1rem;
    }

    .contact-highlight-dot {
      width: 8px;
      height: 8px;
      border-radius: 999px;
      background: #22c55e;
      box-shadow: 0 0 0 4px rgba(34, 197, 94, 0.3);
    }

    .contact-info p {
      font-size: 0.95rem;
      margin-bottom: 0.9rem;
    }

    .contact-points {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 0.8rem;
      margin-top: 0.75rem;
    }

    .contact-point {
      display: flex;
      flex-direction: column;
      gap: 0.1rem;
      font-size: 0.9rem;
    }

    .contact-point-label {
      font-size: 0.78rem;
      text-transform: uppercase;
      letter-spacing: 0.14em;
      color: var(--color-muted);
    }

    .contact-point-value {
      font-weight: 600;
      color: var(--color-primary-dark);
    }

    .contact-point small {
      font-size: 0.8rem;
      color: var(--color-muted);
    }

    .contact-note {
      margin-top: 1.1rem;
      font-size: 0.82rem;
      color: #64748b;
    }

    .contact-form-wrapper {
      border-radius: 24px;
      background: rgba(255, 255, 255, 0.96);
      box-shadow: 0 22px 55px rgba(15, 23, 42, 0.16);
      border: 1px solid rgba(203, 213, 225, 0.9);
      padding: 1.6rem 1.6rem 1.4rem;
    }

    .form-steps-progress {
      display: flex;
      justify-content: space-between;
      gap: 0.85rem;
      margin-bottom: 1.3rem;
    }

    .step-indicator {
      flex: 1;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 0.3rem;
      font-size: 0.72rem;
      color: var(--color-muted);
    }

    .step-indicator-circle {
      width: 24px;
      height: 24px;
      border-radius: 999px;
      border: 1px solid rgba(148, 163, 184, 0.8);
      background: rgba(248, 250, 252, 0.96);
      display: inline-flex;
      align-items: center;
      justify-content: center;
      font-size: 0.8rem;
      font-weight: 600;
      color: var(--color-muted);
      position: relative;
    }

    .step-indicator::after {
      content: "";
      position: absolute;
      top: 12px;
      left: 50%;
      right: -50%;
      height: 2px;
      background: rgba(203, 213, 225, 0.9);
      z-index: -1;
    }

    .step-indicator:last-child::after {
      display: none;
    }

    .form-steps-progress {
      position: relative;
    }

    .step-indicator:first-child::after {
      left: 50%;
    }

    .step-indicator.active .step-indicator-circle {
      border-color: rgba(34, 197, 94, 0.9);
      background: rgba(220, 252, 231, 0.9);
      color: var(--color-primary-dark);
      box-shadow: 0 0 0 4px rgba(34, 197, 94, 0.18);
    }

    .step-indicator.current .step-indicator-circle {
      border-color: rgba(37, 99, 235, 0.9);
      background: rgba(219, 234, 254, 0.9);
      box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.18);
    }

    .step-indicator-label {
      text-align: center;
    }

    .form-step {
      display: none;
      animation: fadeIn 200ms ease-out;
    }

    .form-step.active {
      display: block;
    }

    .form-row {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 0.9rem;
    }

    .field-group {
      margin-bottom: 0.85rem;
    }

    .field-label {
      display: block;
      font-size: 0.8rem;
      font-weight: 600;
      margin-bottom: 0.25rem;
      color: var(--color-text);
    }

    .field-label span {
      color: #dc2626;
    }

    .field-control {
      width: 100%;
      border-radius: 12px;
      border: 1px solid var(--color-border);
      background: #f9fafb;
      padding: 0.55rem 0.7rem;
      font-size: 0.9rem;
      transition: border-color var(--transition-fast), box-shadow var(--transition-fast), background var(--transition-fast), transform 120ms ease-out;
    }

    .field-control:focus {
      outline: none;
      border-color: rgba(37, 99, 235, 0.9);
      background: #ffffff;
      box-shadow: 0 0 0 1px rgba(37, 99, 235, 0.22), 0 14px 30px rgba(15, 23, 42, 0.16);
      transform: translateY(-1px);
    }

    textarea.field-control {
      min-height: 80px;
      resize: vertical;
    }

    .field-hint {
      font-size: 0.75rem;
      color: #6b7280;
      margin-top: 0.2rem;
    }

    .checkbox {
      display: flex;
      align-items: flex-start;
      gap: 0.4rem;
      font-size: 0.85rem;
      color: var(--color-text);
      cursor: pointer;
    }

    .checkbox-input {
      margin-top: 0.15rem;
    }

    .checkbox-inline {
      margin-top: 0.4rem;
    }

    .checkbox-group {
      padding: 0.4rem 0.5rem 0.15rem;
      border-radius: 12px;
      background: rgba(248, 250, 252, 0.9);
      border: 1px dashed rgba(203, 213, 225, 0.9);
    }

    .checkbox-group .checkbox {
      margin-bottom: 0.1rem;
    }

    .form-navigation {
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 0.75rem;
      margin-top: 0.9rem;
    }

    .form-nav-buttons {
      display: inline-flex;
      gap: 0.5rem;
    }

    .btn-small {
      padding-inline: 1rem;
      padding-block: 0.45rem;
      font-size: 0.8rem;
    }

    .field-error {
      border-color: #dc2626 !important;
      background: #fef2f2 !important;
    }

    .form-message {
      margin-top: 0.7rem;
      font-size: 0.8rem;
      color: #16a34a;
      display: none;
    }

    .form-message.visible {
      display: block;
    }

    .form-disclaimer {
      margin-top: 0.75rem;
      font-size: 0.76rem;
      color: #6b7280;
      line-height: 1.5;
    }

    .form-disclaimer strong {
      color: var(--color-primary-dark);
    }

    @media (max-width: 960px) {
      .contact-grid {
        grid-template-columns: minmax(0, 1fr);
      }

      .contact-form-wrapper {
        padding: 1.4rem 1.25rem 1.25rem;
      }
    }

    @media (max-width: 640px) {
      .form-row {
        grid-template-columns: minmax(0, 1fr);
      }

      .form-steps-progress {
        gap: 0.5rem;
      }

      .step-indicator-label {
        font-size: 0.68rem;
      }

      .form-navigation {
        flex-direction: column-reverse;
        align-items: stretch;
      }

      .form-nav-buttons {
        width: 100%;
        justify-content: space-between;
      }

      .btn {
        width: 100%;
        justify-content: center;
      }

      .btn-small {
        width: auto;
      }

      .contact-points {
        grid-template-columns: minmax(0, 1fr);
      }
    }

    /* Footer */
    footer {
      border-top: 1px solid rgba(148, 163, 184, 0.5);
      background: radial-gradient(circle at top left, rgba(37, 99, 235, 0.16) 0, rgba(15, 23, 42, 0.98) 48%);
      color: #e5e7eb;
      padding: 2.4rem 0 2rem;
      font-size: 0.83rem;
    }

    .footer-grid {
      display: grid;
      grid-template-columns: minmax(0, 1.5fr) repeat(2, minmax(0, 1fr));
      gap: 2.2rem;
      margin-bottom: 1.9rem;
    }

    .footer-brand {
      max-width: 320px;
    }

    .footer-brand p {
      font-size: 0.84rem;
      color: #9ca3af;
      margin-top: 0.35rem;
    }

    .footer-nav h4 {
      font-size: 0.82rem;
      text-transform: uppercase;
      letter-spacing: 0.16em;
      color: #9ca3af;
      margin-bottom: 0.6rem;
    }

    .footer-nav ul {
      list-style: none;
      display: grid;
      gap: 0.25rem;
    }

    .footer-nav a {
      color: #e5e7eb;
      font-size: 0.82rem;
      opacity: 0.9;
      transition: opacity var(--transition-fast), transform var(--transition-fast);
    }

    .footer-nav a:hover {
      opacity: 1;
      transform: translateY(-1px);
    }

    .footer-bottom {
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between;
      gap: 1rem;
      border-top: 1px solid rgba(75, 85, 99, 0.85);
      padding-top: 0.9rem;
      color: #9ca3af;
    }

    .footer-bottom a {
      color: #e5e7eb;
      font-size: 0.8rem;
    }

    @media (max-width: 900px) {
      .footer-grid {
        grid-template-columns: minmax(0, 1.6fr) minmax(0, 1.4fr);
      }
    }

    @media (max-width: 640px) {
      footer {
        padding-top: 2rem;
      }

      .footer-grid {
        grid-template-columns: minmax(0, 1fr);
      }
    }