
    :root {
      --cyan: #00C8FF;
      --blue: #2563EB;
      --violet: #7B61FF;
      --purple: #B026FF;
      --navy: #0F172A;
      --navy-2: #111C37;
      --ink: #1E293B;
      --muted: #64748B;
      --line: #DFE7F1;
      --soft: #F6F9FE;
      --white: #FFFFFF;
      --success: #16A34A;
      --shadow: 0 22px 60px rgba(15, 23, 42, .12);
      --radius: 22px;
    }

    * { box-sizing: border-box; }

    html {
      scroll-behavior: smooth;
    }

    body {
      margin: 0;
      font-family: Inter, "Segoe UI", Arial, sans-serif;
      color: var(--ink);
      background: var(--white);
      line-height: 1.6;
      overflow-x: hidden;
    }

    a { color: inherit; text-decoration: none; }
    img { max-width: 100%; display: block; }
    button, input, textarea { font: inherit; }

    .container {
      width: min(1160px, calc(100% - 36px));
      margin: 0 auto;
    }

    .gradient-text {
      background: linear-gradient(90deg, var(--cyan), var(--blue), var(--violet), var(--purple));
      -webkit-background-clip: text;
      background-clip: text;
      color: transparent;
    }

    .nav-wrap {
      position: sticky;
      top: 0;
      z-index: 100;
      backdrop-filter: blur(16px);
      background: rgba(255,255,255,.88);
      border-bottom: 1px solid rgba(223,231,241,.8);
    }

    nav {
      height: 78px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 24px;
    }

    .logo {
      width: 265px;
      max-width: 54vw;
      mix-blend-mode: multiply;
    }

    .nav-links {
      display: flex;
      align-items: center;
      gap: 28px;
      font-size: 14px;
      font-weight: 650;
      color: #334155;
    }

    .nav-links a {
      position: relative;
      padding: 8px 0;
    }

    .nav-links a::after {
      content: "";
      position: absolute;
      left: 0;
      bottom: 2px;
      width: 0;
      height: 2px;
      background: linear-gradient(90deg, var(--cyan), var(--purple));
      transition: width .25s ease;
    }

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

    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 9px;
      border-radius: 13px;
      padding: 13px 19px;
      border: 1px solid transparent;
      font-weight: 750;
      font-size: 14px;
      cursor: pointer;
      transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
    }

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

    .btn-primary {
      color: white;
      background: linear-gradient(100deg, var(--blue), var(--violet), var(--purple));
      box-shadow: 0 12px 28px rgba(82, 71, 255, .23);
    }

    .btn-primary:hover {
      box-shadow: 0 16px 34px rgba(82, 71, 255, .32);
    }

    .btn-secondary {
      color: var(--navy);
      background: white;
      border-color: var(--line);
    }

    .btn-secondary:hover {
      border-color: var(--violet);
      box-shadow: 0 10px 24px rgba(15,23,42,.08);
    }

    .menu-btn {
      display: none;
      width: 44px;
      height: 44px;
      border: 1px solid var(--line);
      background: white;
      border-radius: 12px;
      cursor: pointer;
      align-items: center;
      justify-content: center;
      font-size: 20px;
    }

    .hero {
      position: relative;
      overflow: hidden;
      background:
        radial-gradient(circle at 12% 18%, rgba(0,200,255,.15), transparent 30%),
        radial-gradient(circle at 88% 13%, rgba(176,38,255,.12), transparent 28%),
        linear-gradient(180deg, #FFFFFF 0%, #F8FAFF 100%);
      padding: 88px 0 74px;
    }

    .hero::before {
      content: "";
      position: absolute;
      inset: 0;
      opacity: .26;
      background-image:
        linear-gradient(rgba(37,99,235,.13) 1px, transparent 1px),
        linear-gradient(90deg, rgba(37,99,235,.13) 1px, transparent 1px);
      background-size: 48px 48px;
      mask-image: linear-gradient(to bottom, black, transparent 82%);
    }

    .hero-grid {
      position: relative;
      z-index: 2;
      display: grid;
      grid-template-columns: 1.1fr .9fr;
      gap: 64px;
      align-items: center;
    }

    .eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 9px;
      color: var(--blue);
      font-size: 12px;
      letter-spacing: .16em;
      text-transform: uppercase;
      font-weight: 850;
      margin-bottom: 18px;
    }

    .eyebrow::before {
      content: "";
      width: 30px;
      height: 3px;
      border-radius: 99px;
      background: linear-gradient(90deg, var(--cyan), var(--purple));
    }

    h1 {
      margin: 0;
      font-size: clamp(44px, 6vw, 76px);
      line-height: .98;
      color: var(--navy);
      letter-spacing: -.055em;
      max-width: 760px;
    }

    .hero p {
      font-size: 18px;
      color: var(--muted);
      margin: 24px 0 29px;
      max-width: 690px;
    }

    .hero-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
      margin-bottom: 32px;
    }

    .hero-points {
      display: flex;
      flex-wrap: wrap;
      gap: 18px;
      color: #475569;
      font-size: 13px;
      font-weight: 650;
    }

    .hero-points span {
      display: inline-flex;
      gap: 7px;
      align-items: center;
    }

    .hero-points span::before {
      content: "✓";
      width: 20px;
      height: 20px;
      display: grid;
      place-items: center;
      border-radius: 50%;
      color: white;
      background: linear-gradient(135deg, var(--cyan), var(--violet));
      font-size: 11px;
      font-weight: 900;
    }

    .hero-visual {
      position: relative;
      min-height: 485px;
      display: grid;
      place-items: center;
    }

    .orb {
      position: absolute;
      width: 410px;
      height: 410px;
      border-radius: 50%;
      background: linear-gradient(135deg, rgba(0,200,255,.18), rgba(123,97,255,.15), rgba(176,38,255,.18));
      filter: blur(1px);
      animation: float 6s ease-in-out infinite;
    }

    .visual-card {
      position: relative;
      z-index: 2;
      width: min(410px, 100%);
      padding: 32px;
      border-radius: 28px;
      color: white;
      background:
        linear-gradient(150deg, rgba(255,255,255,.10), rgba(255,255,255,.025)),
        linear-gradient(145deg, #0F172A, #18264A);
      border: 1px solid rgba(255,255,255,.16);
      box-shadow: 0 30px 70px rgba(15,23,42,.28);
      overflow: hidden;
    }

    .visual-card::before {
      content: "";
      position: absolute;
      width: 180px;
      height: 180px;
      right: -58px;
      top: -64px;
      border-radius: 50%;
      border: 2px solid rgba(0,200,255,.22);
    }

    .visual-logo {
      width: 175px;
      filter: brightness(0) invert(1);
      opacity: .96;
      margin-bottom: 35px;
      mix-blend-mode: screen;
    }

    .visual-card h3 {
      margin: 0 0 7px;
      font-size: 25px;
      line-height: 1.15;
    }

    .visual-card p {
      color: #CBD5E1;
      font-size: 13px;
      margin: 0 0 23px;
    }

    .flow-list {
      display: grid;
      gap: 11px;
    }

    .flow-row {
      display: grid;
      grid-template-columns: 34px 1fr auto;
      gap: 11px;
      align-items: center;
      padding: 11px 12px;
      border-radius: 12px;
      background: rgba(255,255,255,.065);
      border: 1px solid rgba(255,255,255,.08);
    }

    .flow-icon {
      width: 34px;
      height: 34px;
      display: grid;
      place-items: center;
      border-radius: 10px;
      background: linear-gradient(135deg, var(--cyan), var(--violet));
      font-size: 14px;
      font-weight: 900;
    }

    .flow-row b { font-size: 12px; }
    .flow-row small { color: #AAB8CF; font-size: 10px; }
    .flow-status {
      color: #A7F3D0;
      font-size: 10px;
      font-weight: 800;
    }

    @keyframes float {
      0%,100% { transform: translateY(0) scale(1); }
      50% { transform: translateY(-12px) scale(1.02); }
    }

    .trust {
      border-top: 1px solid var(--line);
      border-bottom: 1px solid var(--line);
      background: white;
    }

    .trust-grid {
      min-height: 90px;
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      align-items: center;
    }

    .trust-item {
      text-align: center;
      padding: 20px;
      border-right: 1px solid var(--line);
    }
    .trust-item:last-child { border-right: 0; }
    .trust-item strong {
      display: block;
      color: var(--navy);
      font-size: 14px;
    }
    .trust-item span {
      color: var(--muted);
      font-size: 11px;
    }

    section {
      padding: 92px 0;
    }

    .section-head {
      max-width: 720px;
      margin-bottom: 42px;
    }

    .section-head.center {
      text-align: center;
      margin-left: auto;
      margin-right: auto;
    }

    .section-head h2 {
      margin: 8px 0 13px;
      font-size: clamp(32px, 4vw, 48px);
      line-height: 1.06;
      color: var(--navy);
      letter-spacing: -.035em;
    }

    .section-head p {
      margin: 0;
      color: var(--muted);
      font-size: 16px;
    }

    .services {
      background: var(--soft);
    }

    .cards {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 18px;
    }

    .card {
      position: relative;
      padding: 26px;
      background: white;
      border: 1px solid var(--line);
      border-radius: var(--radius);
      transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
      overflow: hidden;
    }

    .card:hover {
      transform: translateY(-5px);
      box-shadow: var(--shadow);
      border-color: rgba(123,97,255,.35);
    }

    .card::after {
      content: "";
      position: absolute;
      width: 90px;
      height: 90px;
      border-radius: 50%;
      top: -42px;
      right: -42px;
      background: linear-gradient(135deg, rgba(0,200,255,.10), rgba(176,38,255,.12));
    }

    .card-icon {
      width: 47px;
      height: 47px;
      display: grid;
      place-items: center;
      border-radius: 14px;
      background: linear-gradient(135deg, rgba(0,200,255,.16), rgba(123,97,255,.18));
      color: var(--blue);
      font-size: 21px;
      font-weight: 900;
      margin-bottom: 21px;
    }

    .card h3 {
      margin: 0 0 9px;
      color: var(--navy);
      font-size: 19px;
    }

    .card p {
      margin: 0;
      color: var(--muted);
      font-size: 14px;
    }

    .process-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 14px;
      counter-reset: process;
    }

    .process-card {
      position: relative;
      padding: 26px 21px;
      border-radius: 18px;
      border: 1px solid var(--line);
      background: white;
      min-height: 205px;
    }

    .process-card::before {
      counter-increment: process;
      content: "0" counter(process);
      display: inline-flex;
      color: var(--violet);
      font-size: 12px;
      font-weight: 900;
      letter-spacing: .12em;
      margin-bottom: 30px;
    }

    .process-card h3 {
      color: var(--navy);
      font-size: 17px;
      margin: 0 0 8px;
    }

    .process-card p {
      color: var(--muted);
      font-size: 13px;
      margin: 0;
    }

    .process-line {
      height: 4px;
      width: 100%;
      border-radius: 99px;
      background: linear-gradient(90deg, var(--cyan), var(--purple));
      margin-top: 22px;
    }

    .value {
      background:
        radial-gradient(circle at 82% 18%, rgba(176,38,255,.11), transparent 26%),
        var(--navy);
      color: white;
    }

    .value-grid {
      display: grid;
      grid-template-columns: .9fr 1.1fr;
      gap: 72px;
      align-items: center;
    }

    .value .section-head h2 { color: white; }
    .value .section-head p { color: #B9C7DD; }

    .value-list {
      display: grid;
      gap: 14px;
    }

    .value-item {
      display: grid;
      grid-template-columns: 46px 1fr;
      gap: 14px;
      padding: 18px;
      border-radius: 16px;
      background: rgba(255,255,255,.065);
      border: 1px solid rgba(255,255,255,.10);
    }

    .value-item .num {
      width: 46px;
      height: 46px;
      display: grid;
      place-items: center;
      border-radius: 13px;
      background: linear-gradient(135deg, var(--cyan), var(--violet));
      font-weight: 900;
    }

    .value-item h3 {
      margin: 0 0 3px;
      font-size: 16px;
    }

    .value-item p {
      color: #B9C7DD;
      margin: 0;
      font-size: 13px;
    }

    .industries {
      background: white;
    }

    .industry-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 14px;
    }

    .industry {
      padding: 24px 20px;
      border: 1px solid var(--line);
      border-radius: 18px;
      background: linear-gradient(180deg, white, #FAFCFF);
    }

    .industry b {
      display: block;
      color: var(--navy);
      margin-bottom: 7px;
      font-size: 15px;
    }

    .industry span {
      color: var(--muted);
      font-size: 12px;
    }

    .about {
      background: var(--soft);
    }

    .about-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 54px;
      align-items: center;
    }

    .about-panel {
      padding: 34px;
      border-radius: 25px;
      background: white;
      border: 1px solid var(--line);
      box-shadow: 0 18px 44px rgba(15,23,42,.08);
    }

    .about-panel img {
      width: 215px;
      margin-bottom: 27px;
      mix-blend-mode: multiply;
    }

    .about-panel h3 {
      margin: 0 0 11px;
      font-size: 25px;
      color: var(--navy);
    }

    .about-panel p {
      margin: 0;
      color: var(--muted);
      font-size: 14px;
    }

    .team-points {
      display: grid;
      gap: 13px;
      margin-top: 23px;
    }

    .team-point {
      display: flex;
      gap: 12px;
      align-items: flex-start;
      color: #475569;
      font-size: 14px;
    }

    .team-point::before {
      content: "✦";
      color: var(--violet);
      font-weight: 900;
    }

    .faq {
      background: white;
    }

    .faq-list {
      max-width: 880px;
      margin: 0 auto;
      display: grid;
      gap: 12px;
    }

    details {
      border: 1px solid var(--line);
      border-radius: 15px;
      padding: 0 18px;
      background: white;
    }

    summary {
      list-style: none;
      cursor: pointer;
      padding: 18px 34px 18px 0;
      color: var(--navy);
      font-weight: 750;
      position: relative;
    }

    summary::-webkit-details-marker { display: none; }

    summary::after {
      content: "+";
      position: absolute;
      right: 3px;
      top: 13px;
      font-size: 24px;
      color: var(--violet);
      transition: transform .2s;
    }

    details[open] summary::after { transform: rotate(45deg); }

    details p {
      margin: 0 0 18px;
      color: var(--muted);
      font-size: 14px;
      padding-right: 26px;
    }

    .contact {
      background:
        radial-gradient(circle at 15% 10%, rgba(0,200,255,.12), transparent 25%),
        radial-gradient(circle at 88% 18%, rgba(176,38,255,.11), transparent 26%),
        #F8FAFF;
    }

    .contact-grid {
      display: grid;
      grid-template-columns: .86fr 1.14fr;
      gap: 44px;
      align-items: start;
    }

    .contact-info {
      padding-top: 20px;
    }

    .contact-info h2 {
      margin: 8px 0 13px;
      color: var(--navy);
      font-size: 42px;
      line-height: 1.05;
      letter-spacing: -.035em;
    }

    .contact-info p {
      color: var(--muted);
      margin: 0 0 25px;
    }

    .contact-chips {
      display: grid;
      gap: 10px;
    }

    .contact-chip {
      display: flex;
      gap: 11px;
      align-items: center;
      padding: 13px 15px;
      border-radius: 13px;
      border: 1px solid var(--line);
      background: white;
      color: #475569;
      font-size: 13px;
    }

    .contact-chip b { color: var(--navy); }

    form {
      padding: 29px;
      border-radius: 23px;
      background: white;
      border: 1px solid var(--line);
      box-shadow: var(--shadow);
    }

    .form-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 14px;
    }

    .field {
      display: grid;
      gap: 6px;
    }

    .field.full { grid-column: 1 / -1; }

    label {
      color: var(--navy);
      font-size: 12px;
      font-weight: 750;
    }

    input, textarea, select {
      width: 100%;
      border: 1px solid var(--line);
      border-radius: 11px;
      padding: 12px 13px;
      outline: none;
      background: #FBFDFF;
      color: var(--ink);
    }

    input:focus, textarea:focus, select:focus {
      border-color: var(--violet);
      box-shadow: 0 0 0 3px rgba(123,97,255,.10);
    }

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

    .form-note {
      margin-top: 11px;
      color: var(--muted);
      font-size: 11px;
    }

    footer {
      background: var(--navy);
      color: #CBD5E1;
      padding: 43px 0 24px;
    }

    .footer-grid {
      display: grid;
      grid-template-columns: 1.2fr .8fr .8fr;
      gap: 40px;
      align-items: start;
    }

    .footer-logo {
      width: 245px;
      filter: brightness(0) invert(1);
      mix-blend-mode: screen;
      margin-bottom: 17px;
    }

    footer p {
      margin: 0;
      color: #94A3B8;
      font-size: 13px;
      max-width: 430px;
    }

    footer h4 {
      margin: 0 0 13px;
      color: white;
      font-size: 13px;
    }

    .footer-links {
      display: grid;
      gap: 8px;
      font-size: 12px;
      color: #AAB8CF;
    }

    .copyright {
      margin-top: 34px;
      padding-top: 20px;
      border-top: 1px solid rgba(255,255,255,.10);
      display: flex;
      justify-content: space-between;
      gap: 20px;
      font-size: 11px;
      color: #7F8EA8;
    }

    .reveal {
      opacity: 0;
      transform: translateY(18px);
      transition: opacity .65s ease, transform .65s ease;
    }

    .reveal.visible {
      opacity: 1;
      transform: translateY(0);
    }

    @media (max-width: 960px) {
      .nav-links {
        position: absolute;
        top: 78px;
        left: 18px;
        right: 18px;
        display: none;
        padding: 18px;
        border-radius: 16px;
        background: white;
        border: 1px solid var(--line);
        box-shadow: var(--shadow);
        flex-direction: column;
        align-items: stretch;
        gap: 4px;
      }
      .nav-links.open { display: flex; }
      .menu-btn { display: flex; }
      nav > .btn { display: none; }
      .hero-grid, .value-grid, .about-grid, .contact-grid {
        grid-template-columns: 1fr;
      }
      .hero-visual { min-height: 430px; }
      .cards { grid-template-columns: repeat(2, 1fr); }
      .process-grid, .industry-grid { grid-template-columns: repeat(2, 1fr); }
      .trust-grid { grid-template-columns: repeat(2, 1fr); }
      .trust-item:nth-child(2) { border-right: 0; }
      .trust-item:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
      .footer-grid { grid-template-columns: 1fr 1fr; }
      .footer-grid > div:first-child { grid-column: 1 / -1; }
    }

    @media (max-width: 640px) {
      .container { width: min(100% - 24px, 1160px); }
      nav { height: 70px; }
      .nav-links { top: 70px; }
      .logo { width: 220px; }
      .hero { padding: 66px 0 52px; }
      h1 { font-size: 46px; }
      .hero p { font-size: 16px; }
      section { padding: 68px 0; }
      .cards, .process-grid, .industry-grid, .form-grid, .footer-grid {
        grid-template-columns: 1fr;
      }
      .field.full { grid-column: auto; }
      .trust-grid { grid-template-columns: 1fr; }
      .trust-item {
        border-right: 0;
        border-bottom: 1px solid var(--line);
      }
      .trust-item:last-child { border-bottom: 0; }
      .visual-card { padding: 24px; }
      .orb { width: 330px; height: 330px; }
      .hero-visual { min-height: 400px; }
      .copyright {
        flex-direction: column;
      }
    }
  

/* WordPress compatibility */
.admin-bar .nav-wrap { top: 32px; }
.contact-alert {
  grid-column: 1 / -1;
  padding: 13px 15px;
  margin-bottom: 14px;
  border-radius: 12px;
  font-size: 13px;
  font-weight: 700;
}
.contact-alert.success { background: #ECFDF5; color: #166534; border: 1px solid #BBF7D0; }
.contact-alert.error { background: #FEF2F2; color: #991B1B; border: 1px solid #FECACA; }
.hp-field { position: absolute !important; left: -9999px !important; width: 1px !important; height: 1px !important; overflow: hidden !important; }
.wp-page-shell { min-height: 60vh; padding: 110px 0 80px; background: var(--soft); }
.wp-page-card { max-width: 920px; margin: 0 auto; padding: 38px; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow); }
.wp-page-card h1 { font-size: clamp(34px, 5vw, 58px); line-height: 1.05; margin-bottom: 24px; }
.wp-page-card h2, .wp-page-card h3 { color: var(--navy); }
.wp-page-card p, .wp-page-card li { color: var(--ink); }
.wp-page-card a { color: var(--blue); text-decoration: underline; }
@media (max-width: 782px) { .admin-bar .nav-wrap { top: 46px; } }
@media (max-width: 640px) { .wp-page-card { padding: 24px; } }
