﻿*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

    :root {
      --orange: #FB773C;
      --blue:   #121358;
      --dark:   #1A1A2E;
      --gray:   #6B7280;
      --light:  #F5F5F7;
      --white:  #FFFFFF;
      --border: #E5E7EB;
    }

    html { scroll-behavior: smooth; }

    body {
      font-family: 'Inter', sans-serif;
      color: var(--dark);
      background: var(--white);
      overflow-x: hidden;
      line-height: 1.68;
      -webkit-font-smoothing: antialiased;
      text-rendering: optimizeLegibility;
    }

    /* ── NAV ── */
    nav {
      position: fixed; top: 0; left: 0; right: 0; z-index: 100;
      display: flex; align-items: center; justify-content: space-between;
      padding: 0 5vw;
      height: 68px;
      background: rgba(255,255,255,0.94);
      backdrop-filter: blur(12px);
      border-bottom: 1px solid var(--border);
    }

    .logo {
      font-family: 'Syne', sans-serif;
      font-weight: 800;
      font-size: 1.35rem;
      color: var(--blue);
      letter-spacing: 0;
    }
    .logo span { color: var(--orange); }

    .nav-links {
      display: flex; gap: 2rem; list-style: none;
    }
    .nav-links a {
      text-decoration: none;
      font-size: 0.95rem;
      font-weight: 500;
      line-height: 1.4;
      color: var(--dark);
      transition: color .2s;
    }
    .nav-links a:hover { color: var(--orange); }

    .menu-toggle {
      display: none;
      width: 42px;
      height: 42px;
      border: 1px solid var(--border);
      border-radius: 8px;
      background: var(--white);
      cursor: pointer;
      align-items: center;
      justify-content: center;
      flex-direction: column;
      gap: 5px;
    }

    .menu-toggle span {
      width: 20px;
      height: 2px;
      background: var(--blue);
      border-radius: 2px;
      transition: transform .2s, opacity .2s;
    }

    nav.is-open .menu-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
    nav.is-open .menu-toggle span:nth-child(2) { opacity: 0; }
    nav.is-open .menu-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

    .nav-cta {
      background: var(--orange);
      color: var(--white) !important;
      padding: 0.5rem 1.25rem;
      border-radius: 6px;
      font-weight: 600 !important;
      transition: background .2s, transform .15s !important;
    }
    .nav-cta:hover { background: #d4541f !important; transform: translateY(-1px); color: var(--white) !important; }

    /* ── HERO ── */
    .hero {
      position: relative;
      min-height: 100vh;
      display: grid;
      grid-template-columns: minmax(0, 0.92fr) minmax(360px, 0.72fr);
      gap: clamp(2rem, 5vw, 5rem);
      align-items: center;
      background: var(--blue);
      overflow: hidden;
      padding: 7rem 5vw 6rem;
    }

    /* Diagonal slash — the signature element */
    .hero::after {
      content: '';
      position: absolute;
      right: -5%;
      top: -10%;
      width: 55%;
      height: 130%;
      background: linear-gradient(135deg, #181a67 0%, #121358 100%);
      clip-path: polygon(18% 0%, 100% 0%, 100% 100%, 0% 100%);
      z-index: 0;
    }

    .hero-slash {
      position: absolute;
      right: calc(55% - 6%);
      top: 0; bottom: 0;
      width: 8px;
      background: var(--orange);
      transform: skewX(-6deg);
      z-index: 1;
    }

    /* Grid background dots */
    .hero-dots {
      position: absolute; inset: 0; z-index: 0;
      background-image: radial-gradient(circle, rgba(255,255,255,0.07) 1px, transparent 1px);
      background-size: 32px 32px;
    }

    .hero-content {
      position: relative; z-index: 2;
      max-width: 580px;
    }

    .hero-visual {
      position: relative;
      z-index: 2;
      display: flex;
      align-items: center;
      justify-content: center;
      min-width: 0;
    }

    .hero-visual img {
      width: min(100%, 560px);
      height: auto;
      display: block;
      filter: drop-shadow(0 34px 45px rgba(0,0,0,0.28));
    }

    .hero-eyebrow {
      display: inline-flex; align-items: center; gap: 0.5rem;
      background: rgba(236,101,48,0.15);
      border: 1px solid rgba(236,101,48,0.4);
      color: #f59567;
      font-size: 0.78rem;
      font-weight: 600;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      padding: 0.35rem 0.9rem;
      border-radius: 100px;
      margin-bottom: 1.75rem;
    }
    .hero-eyebrow::before {
      content: '';
      width: 6px; height: 6px;
      border-radius: 50%;
      background: var(--orange);
      animation: pulse 2s infinite;
    }
    @keyframes pulse {
      0%,100% { opacity: 1; transform: scale(1); }
      50% { opacity: 0.5; transform: scale(1.4); }
    }

    .hero h1 {
      font-family: 'Syne', sans-serif;
      font-size: clamp(2.4rem, 5vw, 3.8rem);
      font-weight: 700;
      color: var(--white);
      line-height: 1.16;
      letter-spacing: 0;
      margin-bottom: 1.75rem;
    }
    .hero h1 em {
      font-style: normal;
      color: var(--orange);
    }

    .hero p {
      font-size: 1.16rem;
      color: rgba(255,255,255,0.78);
      line-height: 1.85;
      max-width: 540px;
      margin-bottom: 2.5rem;
      font-weight: 400;
    }

    .hero-actions {
      display: flex; gap: 1rem; flex-wrap: wrap;
    }

    .btn-primary {
      background: var(--orange);
      color: var(--white);
      padding: 0.85rem 2rem;
      border-radius: 8px;
      text-decoration: none;
      font-weight: 600;
      font-size: 0.95rem;
      transition: background .2s, transform .15s, box-shadow .2s;
      box-shadow: 0 4px 20px rgba(236,101,48,0.4);
    }
    .btn-primary:hover {
      background: #d4541f;
      transform: translateY(-2px);
      box-shadow: 0 6px 28px rgba(236,101,48,0.5);
    }

    .btn-secondary {
      background: transparent;
      color: var(--white);
      padding: 0.85rem 2rem;
      border-radius: 8px;
      text-decoration: none;
      font-weight: 500;
      font-size: 0.95rem;
      border: 1.5px solid rgba(255,255,255,0.35);
      transition: border-color .2s, background .2s;
    }
    .btn-secondary:hover {
      border-color: rgba(255,255,255,0.7);
      background: rgba(255,255,255,0.07);
    }

    .hero-stats {
      position: absolute;
      right: 5vw; bottom: 10%;
      z-index: 2;
      display: flex; gap: 2.5rem;
    }
    .stat {
      text-align: center;
    }
    .stat-num {
      font-family: 'Syne', sans-serif;
      font-size: 2.2rem;
      font-weight: 800;
      color: var(--white);
      line-height: 1;
    }
    .stat-num span { color: var(--orange); }
    .stat-label {
      font-size: 0.75rem;
      color: rgba(255,255,255,0.55);
      font-weight: 500;
      text-transform: uppercase;
      letter-spacing: 0.06em;
      margin-top: 0.3rem;
      line-height: 1.45;
    }
    .stat-divider {
      width: 1px;
      background: rgba(255,255,255,0.15);
      align-self: stretch;
    }

    /* ── TRUST BAR ── */
    .trust-bar {
      background: var(--light);
      padding: 1.25rem 5vw;
      display: flex; align-items: center; justify-content: center; gap: 3rem;
      flex-wrap: wrap;
      border-bottom: 1px solid var(--border);
    }
    .trust-item {
      display: flex; align-items: center; gap: 0.6rem;
      font-size: 0.85rem;
      font-weight: 500;
      color: var(--gray);
      line-height: 1.45;
    }
    .trust-icon {
      width: 18px; height: 18px;
      color: var(--orange);
    }

    /* ── SERVICES ── */
    .section {
      padding: 6rem 5vw;
    }

    .section-label {
      font-size: 0.75rem;
      font-weight: 600;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: var(--orange);
      margin-bottom: 0.75rem;
    }

    .section-title {
      font-family: 'Syne', sans-serif;
      font-size: clamp(1.8rem, 3.5vw, 2.6rem);
      font-weight: 700;
      color: var(--blue);
      line-height: 1.28;
      letter-spacing: 0;
      margin-bottom: 1.15rem;
    }

    .section-sub {
      font-size: 1.06rem;
      color: var(--gray);
      max-width: 620px;
      line-height: 1.85;
      margin-bottom: 3.5rem;
    }

    .services-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
      gap: 1.5rem;
    }

    .service-card {
      background: var(--white);
      border: 1.5px solid var(--border);
      border-radius: 14px;
      padding: 2rem;
      transition: border-color .25s, transform .25s, box-shadow .25s;
      position: relative;
      overflow: hidden;
    }
    .service-card::before {
      content: '';
      position: absolute;
      top: 0; left: 0; right: 0;
      height: 3px;
      background: var(--orange);
      transform: scaleX(0);
      transform-origin: left;
      transition: transform .3s;
    }
    .service-card:hover {
      border-color: rgba(236,101,48,0.3);
      transform: translateY(-4px);
      box-shadow: 0 12px 40px rgba(17,46,129,0.1);
    }
    .service-card:hover::before { transform: scaleX(1); }

    .service-card-featured {
      border-color: rgba(236,101,48,0.36);
      background: linear-gradient(180deg, rgba(236,101,48,0.08) 0%, var(--white) 42%);
    }

    .service-card-featured::before {
      transform: scaleX(1);
    }

    .service-icon {
      width: 48px; height: 48px;
      border-radius: 12px;
      background: rgba(236,101,48,0.1);
      display: flex; align-items: center; justify-content: center;
      margin-bottom: 1.25rem;
    }
    .service-icon svg { width: 24px; height: 24px; color: var(--orange); }

    .service-card h3 {
      font-family: 'Syne', sans-serif;
      font-size: 1.1rem;
      font-weight: 700;
      color: var(--blue);
      line-height: 1.35;
      margin-bottom: 0.75rem;
    }
    .service-card p {
      font-size: 0.95rem;
      color: var(--gray);
      line-height: 1.82;
    }

    /* ── WHY ── */
    .why {
      background: var(--blue);
      position: relative;
      overflow: hidden;
    }
    .why::before {
      content: '';
      position: absolute;
      top: -40%; right: -10%;
      width: 600px; height: 600px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(236,101,48,0.12) 0%, transparent 70%);
      pointer-events: none;
    }

    .why .section-title { color: var(--white); }
    .why .section-label { color: #f59567; }
    .why .section-sub { color: rgba(255,255,255,0.6); }

    .why-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 1rem;
    }

    .why-item {
      background: var(--light);
      border: 1px solid var(--border);
      border-radius: 12px;
      padding: 1.75rem;
      display: flex; gap: 1rem; align-items: flex-start;
      transition: background .2s;
    }
    .why-item:hover { background: #ebebed; }

    .why-num {
      font-family: 'Syne', sans-serif;
      font-size: 1.8rem;
      font-weight: 800;
      color: var(--orange);
      line-height: 1;
      flex-shrink: 0;
      min-width: 2.5rem;
    }

    .why-item h4 {
      font-family: 'Syne', sans-serif;
      font-size: 1rem;
      font-weight: 700;
      color: var(--blue);
      line-height: 1.35;
      margin-bottom: 0.55rem;
    }
    .why-item p {
      font-size: 0.94rem;
      color: var(--gray);
      line-height: 1.78;
    }

    /* ── PROCESS ── */
    .process-row {
      display: flex;
      gap: 0;
      position: relative;
    }
    .process-row::before {
      content: '';
      position: absolute;
      top: 28px; left: 28px; right: 28px;
      height: 2px;
      background: linear-gradient(90deg, var(--orange), var(--blue));
      z-index: 0;
    }

    .process-step {
      flex: 1;
      text-align: center;
      padding: 0 1rem;
      position: relative; z-index: 1;
    }

    .step-circle {
      width: 56px; height: 56px;
      border-radius: 50%;
      background: var(--white);
      border: 3px solid var(--orange);
      display: flex; align-items: center; justify-content: center;
      margin: 0 auto 1.25rem;
      font-family: 'Syne', sans-serif;
      font-size: 1.1rem;
      font-weight: 800;
      color: var(--orange);
    }

    .process-step h4 {
      font-family: 'Syne', sans-serif;
      font-size: 0.95rem;
      font-weight: 700;
      color: var(--blue);
      line-height: 1.35;
      margin-bottom: 0.55rem;
    }
    .process-step p {
      font-size: 0.9rem;
      color: var(--gray);
      line-height: 1.78;
    }

    /* ── CTA ── */
    .cta-section {
      background: linear-gradient(135deg, var(--orange) 0%, #c94e20 100%);
      padding: 5rem 5vw;
      position: relative;
      overflow: hidden;
    }
    .cta-section::before {
      content: '';
      position: absolute; inset: 0;
      background-image: radial-gradient(circle, rgba(255,255,255,0.08) 1px, transparent 1px);
      background-size: 28px 28px;
    }

    .cta-section h2 {
      font-family: 'Syne', sans-serif;
      font-size: clamp(1.8rem, 4vw, 2.8rem);
      font-weight: 800;
      color: var(--white);
      margin-bottom: 1rem;
      position: relative;
      line-height: 1.18;
    }
    .cta-section p {
      color: rgba(255,255,255,0.8);
      font-size: 1.05rem;
      line-height: 1.75;
      max-width: 720px;
      margin-bottom: 2.5rem;
      position: relative;
    }
    .btn-white {
      background: var(--white);
      color: var(--orange);
      padding: 0.9rem 2.5rem;
      border-radius: 8px;
      text-decoration: none;
      font-weight: 700;
      font-size: 1rem;
      display: inline-block;
      transition: transform .2s, box-shadow .2s;
      position: relative;
      box-shadow: 0 4px 20px rgba(0,0,0,0.2);
    }
    .btn-white:hover {
      transform: translateY(-2px);
      box-shadow: 0 8px 32px rgba(0,0,0,0.25);
    }

    .contact-section {
      display: grid;
      grid-template-columns: minmax(0, 0.82fr) minmax(320px, 0.78fr);
      gap: clamp(2rem, 5vw, 4rem);
      align-items: center;
      background:
        linear-gradient(135deg, #121358 0%, #181a67 52%, rgba(236,101,48,0.94) 100%);
    }

    .contact-copy,
    .contact-form {
      position: relative;
      z-index: 1;
    }

    .contact-copy .section-label {
      color: #f59567;
    }

    .contact-highlights {
      display: flex;
      flex-wrap: wrap;
      gap: 0.75rem;
      margin-top: 2rem;
    }

    .contact-highlights span {
      display: inline-flex;
      align-items: center;
      min-height: 38px;
      padding: 0.45rem 0.85rem;
      border: 1px solid rgba(255,255,255,0.22);
      border-radius: 8px;
      color: rgba(255,255,255,0.86);
      background: rgba(255,255,255,0.08);
      font-size: 0.9rem;
      font-weight: 600;
      line-height: 1.35;
    }

    .contact-form {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 1rem;
      padding: clamp(1.25rem, 3vw, 2rem);
      background: rgba(255,255,255,0.96);
      border: 1px solid rgba(255,255,255,0.55);
      border-radius: 12px;
      box-shadow: 0 22px 55px rgba(0,0,0,0.2);
    }

    .form-row {
      display: flex;
      flex-direction: column;
      gap: 0.45rem;
    }

    .form-row.full,
    .form-submit,
    .form-note {
      grid-column: 1 / -1;
    }

    .form-row label {
      color: var(--blue);
      font-size: 0.9rem;
      font-weight: 700;
      line-height: 1.35;
    }

    .form-row input,
    .form-row select,
    .form-row textarea {
      width: 100%;
      border: 1.5px solid var(--border);
      border-radius: 8px;
      background: var(--white);
      color: var(--dark);
      font: inherit;
      font-size: 0.95rem;
      line-height: 1.45;
      padding: 0.85rem 0.95rem;
      outline: none;
      transition: border-color .2s, box-shadow .2s;
    }

    .form-row textarea {
      resize: vertical;
      min-height: 130px;
    }

    .form-row input:focus,
    .form-row select:focus,
    .form-row textarea:focus {
      border-color: var(--orange);
      box-shadow: 0 0 0 4px rgba(236,101,48,0.14);
    }

    .form-submit {
      width: 100%;
      border: 0;
      cursor: pointer;
      color: var(--white);
      background: var(--orange);
      box-shadow: 0 10px 24px rgba(236,101,48,0.28);
    }

    .form-note {
      margin: -0.2rem 0 0;
      color: var(--gray) !important;
      font-size: 0.86rem !important;
      line-height: 1.55 !important;
      text-align: center;
    }

    /* ── FOOTER ── */
    footer {
      background: var(--dark);
      padding: 3rem 5vw 2rem;
      display: grid;
      grid-template-columns: 1.5fr 1fr 1fr;
      gap: 3rem;
    }

    .footer-brand .logo { color: var(--white); font-size: 1.2rem; }
    .footer-brand p {
      margin-top: 0.75rem;
      font-size: 0.92rem;
      color: rgba(255,255,255,0.45);
      line-height: 1.78;
      max-width: 320px;
    }

    .footer-col h5 {
      font-family: 'Syne', sans-serif;
      font-size: 0.85rem;
      font-weight: 700;
      color: rgba(255,255,255,0.9);
      letter-spacing: 0.05em;
      text-transform: uppercase;
      margin-bottom: 1rem;
    }
    .footer-col a {
      display: block;
      text-decoration: none;
      font-size: 0.93rem;
      color: rgba(255,255,255,0.45);
      line-height: 1.55;
      margin-bottom: 0.6rem;
      transition: color .2s;
    }
    .footer-col a:hover { color: var(--orange); }

    .footer-bottom {
      background: var(--dark);
      padding: 1rem 5vw;
      border-top: 1px solid rgba(255,255,255,0.08);
      display: flex; justify-content: space-between; align-items: center;
    }
    .footer-bottom p {
      font-size: 0.84rem;
      line-height: 1.55;
      color: rgba(255,255,255,0.3);
    }

    /* ── RESPONSIVE ── */
    @media (max-width: 768px) {
      nav { height: auto; min-height: 68px; padding-top: 0.75rem; padding-bottom: 0.75rem; flex-wrap: wrap; }
      .menu-toggle { display: inline-flex; }
      .nav-links {
        display: none;
        width: 100%;
        flex-direction: column;
        gap: 0.25rem;
        padding: 0.75rem 0 0.25rem;
      }
      nav.is-open .nav-links { display: flex; }
      .nav-links a {
        display: block;
        padding: 0.8rem 0;
      }
      .nav-cta {
        display: inline-flex !important;
        justify-content: center;
        width: 100%;
        margin-top: 0.25rem;
      }
      .hero-stats { position: static; margin-top: 3rem; justify-content: flex-start; }
      .hero { grid-template-columns: 1fr; padding-top: 100px; padding-bottom: 3rem; align-items: flex-start; min-height: auto; }
      .hero-visual { order: 2; justify-content: flex-start; width: 100%; }
      .hero-visual img { width: min(100%, 460px); }
      .hero-stats { order: 3; flex-wrap: wrap; gap: 1.5rem; }
      .hero::after { display: none; }
      .hero-slash { display: none; }
      .why-grid { grid-template-columns: 1fr; }
      .contact-section,
      .contact-form { grid-template-columns: 1fr; }
      .contact-section { padding-top: 4rem; padding-bottom: 4rem; }
      footer { grid-template-columns: 1fr; gap: 2rem; }
      .process-row { flex-direction: column; gap: 2rem; }
      .process-row::before { display: none; }
      .footer-bottom { flex-direction: column; gap: 0.5rem; text-align: center; }
    }

    @media (prefers-reduced-motion: reduce) {
      * { animation: none !important; transition: none !important; }
    }