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

  :root {
    --c-bg:        #FEFDF9;
    --c-bg2:       #F8F7F2;
    --c-bg3:       #F0EFEA;
    --c-text:      #1A1A1A;
    --c-text2:     #5A5A5A;
    --c-text3:     #9A9A9A;
    --c-border:    #E5E4DF;
    --c-border2:   #D0CFCA;
    --c-primary:   #2567C7;
    --c-primary-l: #E8F0FA;
    --c-primary-t: #1B4F9E;
    --c-primary-m: #1F88E6;
    --c-accent:    #4B98DF;
    --c-accent-s:  #A9CBEA;
    --c-code-bg:   #F4F3EF;
    --c-code-text: #2A2A2A;
    --c-code-key:  #2567C7;
    --c-code-com:  #9A9A9A;
    --radius-sm: 6px;
    --radius-md: 10px;
    --radius-lg: 16px;
  }

  @media (prefers-color-scheme: dark) {
    :root {
      --c-bg:       #121212;
      --c-bg2:      #1A1A1A;
      --c-bg3:      #222222;
      --c-text:     #F0EFEA;
      --c-text2:    #A09E98;
      --c-text3:    #605E58;
      --c-border:   #2A2A2A;
      --c-border2:  #3A3A3A;
      --c-primary:  #4B98DF;
      --c-primary-l:#1A2A3A;
      --c-primary-t:#A9CBEA;
      --c-primary-m:#1F88E6;
      --c-accent:   #2567C7;
      --c-accent-s: #1B4F9E;
      --c-code-bg:  #1A1A1A;
      --c-code-text:#F0EFEA;
      --c-code-key: #4B98DF;
      --c-code-com: #605E58;
    }
  }

  html { scroll-behavior: smooth; }

  body {
    background: linear-gradient(160deg, #0A0E17 0%, #0F1A2E 40%, #0A0E17 100%);
    color: var(--c-text);
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
  }

  /* ── LAYOUT ── */
  .page-wrap {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 48px;
    position: relative;
    z-index: 1;
  }

  /* ── NAV ── */
  nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    background: rgba(10, 14, 23, 0.82);
    backdrop-filter: blur(12px) saturate(1.2);
    -webkit-backdrop-filter: blur(12px) saturate(1.2);
    box-shadow: inset 0 -1px 0 0 rgba(255, 255, 255, 0.06);
    padding: 5px;
  }
  .nav-inner {
    max-width: 1200px; margin: 0 auto; padding: 0 48px;
    display: flex; align-items: center; justify-content: space-between;
  }
  .nav-logo {
    display: flex; align-items: center; gap: 12px;
    font-size: 20px; font-weight: 700; letter-spacing: -0.03em;
    color: #E2E8F0; text-decoration: none;
  }
  .nav-logo img { height: 30px; width: auto; display: block; }
  .nav-right { display: flex; align-items: center; gap: 28px; }
  .nav-links { display: flex; align-items: center; gap: 28px; }
  .nav-links a {
    font-size: 13.5px; color: #94A3B8; text-decoration: none;
    font-weight: 450; letter-spacing: -0.01em;
    transition: color 0.2s ease;
    position: relative;
  }
  .nav-links a::after {
    content: ''; position: absolute; bottom: -2px; left: 0; right: 0;
    height: 1.5px; background: #60A5FA;
    transform: scaleX(0); transition: transform 0.3s ease;
    transform-origin: right center;
  }
  .nav-links a:hover { color: #E2E8F0; }
  .nav-links a:hover::after { transform: scaleX(1); transform-origin: left center; }
  .nav-cta {
    background: #2567C7; color: #FFFFFF !important;
    padding: 8px 20px; border-radius: var(--radius-sm);
    font-weight: 500 !important; letter-spacing: -0.01em;
    text-decoration: none;
    
    transition: background 0.2s ease, transform 0.2s ease !important;
  }
  .nav-cta:hover { background: #1B4F9E !important; color: #FFFFFF !important; }
  .nav-cta::after { display: none !important; }

  /* ── SECTIONS (dark futuristic) ── */
  .section {
    padding: 5rem 0;
    scroll-margin-top: 80px;
    position: relative;
  }
  .section::after {
    content: ''; position: absolute; bottom: 0; left: 10%; right: 10%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0, 212, 255, 0.25), transparent);
  }
  .section:nth-child(even) {
    background: rgba(15, 21, 32, 0.4);
    margin: 0 -48px;
    padding-left: 48px;
    padding-right: 48px;
  }
  .section:last-child::after { display: none; }
  #hero { scroll-margin-top: 0; }

  .sec-num {
    font-family: 'JetBrains Mono', monospace;
    font-size: 11px; color: #64748B;
    letter-spacing: 0.12em; margin-bottom: 10px;
  }
  .sec-num::before {
    content: '// ';
    color: rgba(0, 212, 255, 0.45);
  }

  /* ── TAGS ── */
  .tag {
    display: inline-flex; align-items: center;
    font-size: 10px; font-weight: 600;
    letter-spacing: 0.14em; text-transform: uppercase;
    padding: 5px 14px; border-radius: 4px; margin-bottom: 16px;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
  }
  .tag-primary  { background: rgba(37, 103, 199, 0.15); color: #60A5FA; box-shadow: 0 0 0 1px rgba(37, 103, 199, 0.25); }
  .tag-accent   { background: rgba(0, 212, 255, 0.1);   color: #22D3EE; box-shadow: 0 0 0 1px rgba(0, 212, 255, 0.2); }
  .tag-success  { background: rgba(34, 197, 94, 0.1);   color: #4ADE80; box-shadow: 0 0 0 1px rgba(34, 197, 94, 0.2); }
  .tag-neutral  { background: rgba(255, 255, 255, 0.05); color: #94A3B8; box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.08); }

  /* ── TYPOGRAPHY (dark context) ── */
  h1 {
    font-size: clamp(28px, 5vw, 42px);
    font-weight: 700; line-height: 1.08;
    letter-spacing: -0.04em; margin-bottom: 14px;
  }
  h2 {
    font-size: clamp(26px, 3.2vw, 34px);
    font-weight: 600; letter-spacing: -0.025em; margin-bottom: 14px;
    line-height: 1.15; color: #E2E8F0;
  }
  h3 {
    font-size: 13px; font-weight: 600;
    letter-spacing: 0.06em; text-transform: uppercase; margin-bottom: 7px;
    color: #94A3B8;
  }
  p {
    font-size: 15.5px; line-height: 1.85;
    color: #94A3B8; margin-bottom: 12px;
  }
  .sub {
    font-size: 16px; font-weight: 400; line-height: 1.7;
    color: var(--c-text2); margin-bottom: 16px; letter-spacing: -0.01em;
  }

  /* ── META SECTION (dark glass) ── */
  .meta-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 14px; }
  .meta-card {
    border-radius: 12px; padding: 20px 22px;
    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.06);
    border-bottom: 2px solid rgba(0, 212, 255, 0.35);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
  }
  .meta-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 0 1px rgba(0, 212, 255, 0.2), 0 8px 24px rgba(0, 212, 255, 0.08);
  }
  .meta-lbl {
    font-family: 'JetBrains Mono', monospace;
    font-size: 10px; font-weight: 600; letter-spacing: 0.12em;
    text-transform: uppercase; color: #60A5FA; margin-bottom: 7px;
  }
  .meta-val { font-size: 14px; color: #E2E8F0; line-height: 1.6; }
  .author-box {
    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-radius: 12px;
    padding: 18px 22px;
    box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.06);
    border-left: 3px solid rgba(0, 212, 255, 0.45);
    margin-top: 12px;
  }
  .author-row { display: flex; gap: 20px; flex-wrap: wrap; margin-top: 10px; }
  .author-item { font-size: 12px; color: #94A3B8; font-family: 'JetBrains Mono', monospace; }
  .author-item strong { color: #60A5FA; display: block; margin-bottom: 3px; }
  .schema-box {
    background: rgba(0, 0, 0, 0.3); border-radius: 10px;
    padding: 16px 18px; margin-top: 14px;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.05);
  }
  .schema-code {
    font-family: 'JetBrains Mono', monospace;
    font-size: 12.5px; color: #CBD5E1;
    line-height: 1.8; white-space: pre-wrap;
  }
  .sk { color: #60A5FA; }
  .sc { color: #64748B; }

  /* ── BUTTONS (defined in hero section) ── */

  /* ── STAT GRID (dark glass) ── */
  .stat-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin: 16px 0; }
  .stat-card {
    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-radius: 12px;
    padding: 22px 18px; text-align: center;
    box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.06);
    position: relative; overflow: hidden;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
  }
  .stat-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 0 1px rgba(0, 212, 255, 0.2), 0 8px 24px rgba(0, 212, 255, 0.08);
  }
  .stat-card::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(0, 212, 255, 0.5), transparent);
  }
  .stat-num { font-size: 28px; font-weight: 700; letter-spacing: -0.02em; color: #E2E8F0; }
  .stat-lbl { font-size: 11px; color: #64748B; margin-top: 6px; line-height: 1.4; }

  /* ── GRID CARDS (dark glass) ── */
  .grid2 { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin: 16px 0; }
  .grid3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin: 16px 0; }

  .card {
    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.06);
    border-radius: 14px; padding: 24px 26px;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
  }
  .card:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 0 1px rgba(0, 212, 255, 0.2), 0 8px 24px rgba(0, 212, 255, 0.08);
  }
  .card-primary { border-left: 3px solid rgba(0, 212, 255, 0.45); }
  .card-accent   { border-left: 3px solid rgba(37, 103, 199, 0.45); }

  /* ── NODE CARDS (dark glass) ── */
  .node-card {
    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-radius: 14px;
    padding: 24px 26px;
    box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.06);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
  }
  .node-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 0 1px rgba(0, 212, 255, 0.2), 0 8px 24px rgba(0, 212, 255, 0.08);
  }
  .node-id {
    font-family: 'JetBrains Mono', monospace;
    font-size: 10.5px; color: #64748B;
    letter-spacing: 0.1em; margin-bottom: 10px;
  }
  .node-id span { color: #22D3EE; }

  /* ── HERO ── */
  .hero-wrap {
    min-height: 100vh; display: flex; align-items: center;
    padding: 120px 0 80px;
    position: relative;
    z-index: 2;
    background: #0A0E17;
  }
  .hero-inner {
    max-width: 1200px; margin: 0 auto; padding: 0 48px;
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 80px; align-items: center; width: 100%;
  }
  .hero-content { max-width: 540px; }
  .hero-tag {
    display: inline-flex; align-items: center; gap: 6px;
    font-size: 12px; font-weight: 500; letter-spacing: 0.04em;
    text-transform: uppercase; color: #60A5FA;
    margin-bottom: 24px; position: relative;
  }
  .hero-tag::before {
    content: ''; display: inline-block; width: 6px; height: 6px;
    border-radius: 50%; background: #60A5FA;
    opacity: 0.6;
  }
  .hero-headline {
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 700; line-height: 1.08;
    letter-spacing: -0.035em; margin-bottom: 20px;
    color: #E2E8F0;
  }
  .hero-headline span {
    display: block;
    background: linear-gradient(135deg, var(--c-primary), var(--c-primary-m));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
  }
  .hero-sub {
    font-size: 17px; line-height: 1.7;
    color: #94A3B8; margin-bottom: 32px;
    font-weight: 400; letter-spacing: -0.01em;
  }
  .hero-actions { display: flex; align-items: center; gap: 16px; }
  .btn-primary {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 14px 28px;
    background: var(--c-primary); color: #FFFFFF;
    border-radius: var(--radius-sm); font-size: 14.5px;
    font-weight: 500; text-decoration: none; letter-spacing: -0.01em;
    border: none; cursor: pointer;
    font-family: 'Space Grotesk', sans-serif;
    transition: background 0.2s ease, transform 0.15s ease, box-shadow 0.2s ease;
    box-shadow: 0 1px 2px rgba(37, 103, 199, 0.15);
  }
  .btn-primary:hover {
    background: var(--c-primary-t);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(37, 103, 199, 0.25);
  }
  .btn-secondary {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 14px 28px;
    background: transparent; color: #E2E8F0;
    border-radius: var(--radius-sm); font-size: 14.5px;
    font-weight: 450; text-decoration: none; letter-spacing: -0.01em;
    cursor: pointer;
    font-family: 'Space Grotesk', sans-serif;
    transition: box-shadow 0.2s ease, background 0.2s ease, transform 0.15s ease;
    box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.15);
  }
  .btn-secondary:hover {
    box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.25);
    background: rgba(255, 255, 255, 0.05);
    transform: translateY(-1px);
  }

  /* ── HERO ILLUSTRATION ── */
  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(12px); }
    to   { opacity: 1; transform: translateY(0); }
  }
  @keyframes float-node-1 {
    0%, 100% { transform: translate(0, 0); }
    25%      { transform: translate(4px, -3px); }
    50%      { transform: translate(-2px, -5px); }
    75%      { transform: translate(-4px, 2px); }
  }
  @keyframes float-node-2 {
    0%, 100% { transform: translate(0, 0); }
    25%      { transform: translate(-3px, -4px); }
    50%      { transform: translate(2px, -2px); }
    75%      { transform: translate(4px, 3px); }
  }
  @keyframes float-node-3 {
    0%, 100% { transform: translate(0, 0); }
    25%      { transform: translate(-4px, 2px); }
    50%      { transform: translate(2px, 4px); }
    75%      { transform: translate(3px, -3px); }
  }
  @keyframes float-node-4 {
    0%, 100% { transform: translate(0, 0); }
    25%      { transform: translate(3px, 4px); }
    50%      { transform: translate(-4px, 2px); }
    75%      { transform: translate(-2px, -4px); }
  }
  @keyframes orbit-satellite {
    0%   { transform: rotate(0deg) translateX(6px) rotate(0deg); }
    100% { transform: rotate(360deg) translateX(6px) rotate(-360deg); }
  }
  @keyframes orbit-satellite-reverse {
    0%   { transform: rotate(0deg) translateX(5px) rotate(0deg); }
    100% { transform: rotate(-360deg) translateX(5px) rotate(360deg); }
  }
  @keyframes sway-branch {
    0%, 100% { transform: rotate(0deg); }
    50%      { transform: rotate(1.5deg); }
  }
  @keyframes sway-branch-2 {
    0%, 100% { transform: rotate(0deg); }
    50%      { transform: rotate(-1.2deg); }
  }
  @keyframes drift-path {
    0%   { stroke-dashoffset: 0; }
    100% { stroke-dashoffset: -40; }
  }
  @keyframes flow-line {
    0%   { opacity: 0.15; }
    50%  { opacity: 0.5; }
    100% { opacity: 0.15; }
  }
  @keyframes rotate-ring {
    from { transform: rotate(0deg); }
    to   { transform: rotate(360deg); }
  }
  @keyframes breathe-core {
    0%, 100% { transform: scale(1); opacity: 0.95; }
    50%      { transform: scale(1.04); opacity: 1; }
  }
  .hero-svg-node { transform-box: fill-box; transform-origin: center; will-change: transform; }
  .hero-svg-glow { transform-box: fill-box; transform-origin: center; will-change: transform, opacity; }
  .hero-svg-path { stroke-dasharray: 4 6; will-change: opacity; }
  .hero-svg-orbit { transform-box: fill-box; transform-origin: center; will-change: transform; }
  .hero-svg-branch { transform-box: fill-box; transform-origin: left center; will-change: transform; }
  .hero-content {
    animation: fadeUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  }
  .hero-visual {
    display: flex; align-items: center; justify-content: center;
    position: relative;
    animation: fadeUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.15s forwards;
    opacity: 0;
  }
  .hero-visual svg {
    width: 100%; height: auto; max-width: 520px;
    display: block;
  }
  .hero-visual-glow {
    position: absolute; width: 300px; height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(37, 103, 199, 0.15), transparent 70%);
    pointer-events: none;
  }
  .glow-1 { top: 20%; left: 10%; }
  .glow-2 { bottom: 10%; right: 10%; }
  .glow-3 { top: 50%; left: 50%; transform: translate(-50%, -50%); width: 400px; height: 400px; background: radial-gradient(circle, rgba(169, 203, 234, 0.06), transparent 70%); }

  /* ── TECH PILLS (dark) ── */
  .tech-pills { display: flex; flex-wrap: wrap; gap: 8px; margin: 16px 0; }
  .tech-pill {
    font-size: 12px; padding: 5px 14px; border-radius: 4px;
    background: rgba(255, 255, 255, 0.04);
    box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.08);
    color: #94A3B8; font-family: 'JetBrains Mono', monospace;
  }

  /* ── PROCESS (dark) ── */
  .process-row {
    display: grid; grid-template-columns: 72px 1fr; gap: 16px;
    align-items: start; padding: 18px 0;
    position: relative;
  }
  .process-row::after {
    content: ''; position: absolute; bottom: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, rgba(0, 212, 255, 0.15), transparent);
  }
  .process-row:last-child::after { display: none; }
  .process-num {
    font-family: 'JetBrains Mono', monospace;
    font-size: 12px; font-weight: 500;
    color: #22D3EE; padding-top: 4px; letter-spacing: 0.05em;
  }
  .process-title { font-size: 15px; font-weight: 600; margin-bottom: 6px; letter-spacing: -0.01em; color: #E2E8F0; }
  .process-desc { font-size: 14px; color: #94A3B8; line-height: 1.75; margin: 0; }

  /* ── USP (dark) ── */
  .usp-item {
    display: grid; grid-template-columns: 24px 1fr; gap: 14px;
    align-items: start; padding: 16px 0;
    position: relative;
  }
  .usp-item::after {
    content: ''; position: absolute; bottom: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.04), transparent);
  }
  .usp-item:last-child::after { display: none; }
  .usp-diamond {
    width: 9px; height: 9px;
    background: linear-gradient(135deg, #2567C7, #00D4FF);
    transform: rotate(45deg); margin-top: 6px; border-radius: 1px;
    box-shadow: 0 0 10px rgba(0, 212, 255, 0.4);
  }
  .usp-title { font-size: 15px; font-weight: 600; margin-bottom: 5px; color: #E2E8F0; }
  .usp-desc { font-size: 14px; color: #94A3B8; line-height: 1.7; margin: 0; }

  /* ── TESTIMONIALS CAROUSEL ── */
/* ===========================================================
   TESTIMONIALS
=========================================================== */

.testi-carousel{
  position:relative;
  margin-top:3rem;
}

.testi-carousel-inner{
  overflow:hidden;
  width:100%;
}

.testi-track{
  display:flex;
  gap:24px;
  transition:transform .55s cubic-bezier(.22,.61,.36,1);
  will-change:transform;
}

.testi{
  flex:0 0 calc((100% - 48px) / 3);
  min-width:calc((100% - 48px) / 3);

  display:flex;
  flex-direction:column;

  padding:30px;
  border-radius:20px;

  background:
      linear-gradient(
          180deg,
          rgba(255,255,255,.05),
          rgba(255,255,255,.025)
      );

  border:1px solid rgba(255,255,255,.08);

  backdrop-filter:blur(18px);
  -webkit-backdrop-filter:blur(18px);

  transition:
      transform .35s ease,
      border-color .35s ease,
      box-shadow .35s ease,
      background .35s ease;

  min-height:340px;
  position:relative;
  overflow:hidden;
}

.testi::before{
  content:"";
  position:absolute;
  inset:0;
  background:
      radial-gradient(
          circle at top right,
          rgba(37,103,199,.12),
          transparent 60%
      );
  pointer-events:none;
}

.testi:hover{

  transform:translateY(-8px);

  border-color:rgba(37,103,199,.45);

  background:
      linear-gradient(
          180deg,
          rgba(255,255,255,.06),
          rgba(255,255,255,.03)
      );

  box-shadow:
      0 18px 45px rgba(0,0,0,.35),
      0 0 0 1px rgba(37,103,199,.18);
}

.testi-label{

  display:inline-flex;
  align-self:flex-start;

  font-family:"JetBrains Mono", monospace;

  font-size:10px;

  letter-spacing:.12em;

  text-transform:uppercase;

  color:#60A5FA;

  background:rgba(37,103,199,.12);

  border:1px solid rgba(37,103,199,.2);

  padding:6px 12px;

  border-radius:999px;

  margin-bottom:22px;
}

.testi-text{

  flex:1;

  color:#CBD5E1;

  font-size:15px;

  line-height:1.85;

  letter-spacing:-.01em;
}

.testi-author{

  display:flex;

  align-items:center;

  gap:14px;

  margin-top:30px;

  padding-top:22px;

  border-top:1px solid rgba(255,255,255,.08);
}

.testi-avatar{

  width:52px;

  height:52px;

  border-radius:50%;

  display:flex;

  align-items:center;

  justify-content:center;

  flex-shrink:0;

  font-weight:700;

  color:white;

  background:
      linear-gradient(
          135deg,
          #2567C7,
          #4B98DF
      );

  box-shadow:
      0 10px 24px rgba(37,103,199,.35);
}

.testi-info{

  display:flex;

  flex-direction:column;

  gap:4px;
}

.testi-name{

  color:#F8FAFC;

  font-size:15px;

  font-weight:600;
}

.testi-role{

  color:#94A3B8;

  font-size:13px;

  line-height:1.5;
}

/* ===========================================================
 ARROWS
=========================================================== */

.testi-arrow{

  position:absolute;

  top:50%;

  transform:translateY(-50%);

  width:54px;

  height:54px;

  border-radius:50%;

  border:1px solid rgba(255,255,255,.08);

  background:rgba(15,23,42,.85);

  backdrop-filter:blur(18px);

  color:white;

  cursor:pointer;

  display:flex;

  justify-content:center;

  align-items:center;

  font-size:20px;

  transition:.3s;

  z-index:20;
}

.testi-arrow:hover{

  background:#2567C7;

  border-color:#2567C7;

  transform:translateY(-50%) scale(1.06);

  box-shadow:
      0 10px 25px rgba(37,103,199,.35);
}

.testi-arrow-prev{

  left:-70px;
}

.testi-arrow-next{

  right:-70px;
}

/* ===========================================================
 DOTS
=========================================================== */

.testi-dots{

  display:flex;

  justify-content:center;

  align-items:center;

  gap:10px;

  margin-top:32px;
}

.testi-dots span{

  width:10px;

  height:10px;

  border-radius:50%;

  background:rgba(255,255,255,.15);

  cursor:pointer;

  transition:.35s;
}

.testi-dots span.active{

  width:38px;

  border-radius:20px;

  background:#2567C7;
}

/* ===========================================================
 TABLET
=========================================================== */

@media(max-width:1000px){

.testi{

  flex:0 0 calc((100% - 24px)/2);

  min-width:calc((100% - 24px)/2);
}

.testi-arrow-prev{

  left:-20px;
}

.testi-arrow-next{

  right:-20px;
}

}

/* ===========================================================
 MOBILE
=========================================================== */

@media(max-width:700px){

.testi{

  flex:0 0 100%;

  min-width:100%;
}

.testi-arrow{

  width:46px;

  height:46px;

  font-size:18px;
}

.testi-arrow-prev{

  left:10px;
}

.testi-arrow-next{

  right:10px;
}

.testi{

  min-height:auto;
}

}
  /* ── FAQ BOXES (dark glass accordion) ── */
  .faq-boxes { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
  .faq-item {
    padding: 0; border-radius: 14px;
    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.06);
    position: relative; overflow: hidden;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    align-self: start;
  }
  .faq-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 0 1px rgba(0, 212, 255, 0.2), 0 8px 24px rgba(0, 212, 255, 0.08);
  }
  .faq-q {
    font-size: 15px; font-weight: 600; letter-spacing: -0.01em; color: #E2E8F0;
    padding: 18px 22px; cursor: pointer;
    transition: color 0.2s ease;
    user-select: none; position: relative;
  }
  .faq-q:hover { color: #60A5FA; }
  .faq-toggle {
    position: absolute; right: 22px; top: 50%; transform: translateY(-50%);
    font-size: 16px; line-height: 1;
    color: #64748B; transition: color 0.2s ease, transform 0.3s ease;
    font-family: 'JetBrains Mono', monospace;
  }
  .faq-q:hover .faq-toggle { color: #60A5FA; }
  .faq-open .faq-toggle { transform: translateY(-50%) rotate(45deg); }
  .faq-toggle::before { content: '+'; }
  .faq-q:hover .faq-toggle { color: #60A5FA; }
  .faq-open .faq-toggle { transform: rotate(45deg); }
  .faq-a {
    font-size: 13.5px; color: #94A3B8; line-height: 1.8; margin: 0;
    padding: 0 22px 18px;
    display: none;
  }
  .faq-open .faq-a { display: block; }
  .faq-open .faq-q { padding-bottom: 8px; }

  /* ── MID CTA (dark glass) ── */
  .mid-cta {
    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-radius: 14px;
    padding: 30px 32px; margin: 8px 0;
    box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.08);
    position: relative; overflow: hidden;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
  }
  .mid-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 0 1px rgba(0, 212, 255, 0.2), 0 8px 24px rgba(0, 212, 255, 0.08);
  }
  .mid-cta::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, #00D4FF, #2567C7, transparent);
  }
  .mid-cta h3 {
    font-size: 18px; font-weight: 600; text-transform: none;
    letter-spacing: -0.01em; margin-bottom: 7px; color: #E2E8F0;
  }
  .mid-cta p { font-size: 14.5px; margin-bottom: 16px; color: #94A3B8; }

  /* ── CONTACT (dark glass) ── */
  .contact-wrap {
    border-radius: 14px; padding: 34px 36px;
    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.08);
    position: relative; overflow: hidden;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
  }
  .contact-wrap:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 0 1px rgba(0, 212, 255, 0.2), 0 8px 24px rgba(0, 212, 255, 0.08);
  }
  .contact-wrap::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, #2567C7, #00D4FF, transparent);
  }
  .contact-detail { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 20px; }
  .contact-item { font-size: 14px; color: #94A3B8; line-height: 1.8; }
  .contact-item strong {
    font-family: 'JetBrains Mono', monospace;
    font-size: 10.5px; letter-spacing: 0.1em; text-transform: uppercase;
    color: #60A5FA; display: block; margin-bottom: 4px;
  }

  /* ── FOOTER (dark) ── */
  footer {
    text-align: center; padding: 28px 0;
    font-size: 13px; color: #64748B;
    font-family: 'JetBrains Mono', monospace;
    position: relative;
    background: #0A0E17;
  }
  footer::before {
    content: ''; position: absolute; top: 0; left: 10%; right: 10%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0, 212, 255, 0.15), transparent);
  }

  /* ── HAMBURGER ── */
  .nav-hamburger {
    display: none; flex-direction: column; gap: 5px;
    background: none; border: none; cursor: pointer;
    padding: 4px; z-index: 110;
  }
  .nav-hamburger span {
    display: block; width: 22px; height: 2px;
    background: #E2E8F0; border-radius: 2px;
    transition: transform 0.3s ease, opacity 0.3s ease;
  }
  .nav-open .nav-hamburger span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
  .nav-open .nav-hamburger span:nth-child(2) { opacity: 0; }
  .nav-open .nav-hamburger span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

  /* ── MOBILE MENU ── */
  .nav-menu-mobile {
    display: none; position: fixed; top: 110px; left: 0; right: 0; bottom: 0;
    background: rgba(10, 14, 23, 0.97);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    flex-direction: column; align-items: center; justify-content: center;
    gap: 16px; z-index: 105;
    opacity: 0; pointer-events: none;
    transition: opacity 0.3s ease;
    padding: 40px 20px;
  }
  .nav-open .nav-menu-mobile {
    opacity: 1; pointer-events: auto;
  }
  .nav-menu-mobile a {
    font-size: 15px; color: #94A3B8; text-decoration: none;
    font-weight: 450; letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 14px 24px; border-radius: 8px;
    width: 280px; text-align: center;
    transition: background 0.25s ease, color 0.25s ease;
    background: rgba(255,255,255,0.03);
    box-shadow: 0 0 0 1px rgba(255,255,255,0.06);
    font-family: 'Inter', sans-serif;
  }
  .nav-menu-mobile a:hover {
    color: #E2E8F0;
    background: rgba(255,255,255,0.07);
    box-shadow: 0 0 0 1px rgba(0,212,255,0.15);
  }
  .nav-cta-mobile {
    background: #2567C7 !important; color: #FFFFFF !important;
    padding: 14px 24px !important; border-radius: 8px !important;
    font-weight: 600 !important; margin-top: 12px;
    box-shadow: 0 2px 12px rgba(37,103,199,0.3) !important;
    width: 280px; text-align: center;
    font-size: 14px; letter-spacing: 0.04em;
    font-family: 'Space Grotesk', sans-serif;
  }
  .nav-cta-mobile:hover {
    background: #1B4F9E !important;
    box-shadow: 0 4px 20px rgba(37,103,199,0.4) !important;
  }

  /* ── RESPONSIVE ── */
  @media (max-width: 900px) {
    .hero-inner { grid-template-columns: 1fr; gap: 60px; }
    .hero-content { max-width: 100%; }
    .hero-visual { order: -1; }
    .hero-visual svg { max-width: 380px; }

    .nav-links { display: none; }
    .nav-cta { display: none; }
    .nav-hamburger { display: flex; }
    .nav-menu-mobile { display: flex; }
  }
  @media (max-width: 600px) {
    .page-wrap { padding: 0 20px; }
    .meta-grid, .grid2, .grid3, .faq-boxes { grid-template-columns: 1fr; }
    .stat-grid { grid-template-columns: repeat(2, 1fr); }
    .contact-detail { grid-template-columns: 1fr; }
    .hero-actions { flex-direction: column; align-items: flex-start; }
    .hero-visual svg { max-width: 280px; }
    .nav-inner { padding: 0 20px; }
    .hero-inner { padding: 0 20px; gap: 40px; }
    .hero-wrap { padding: 60px 0; }

    .section:nth-child(even) { margin: 0 -20px; padding-left: 20px; padding-right: 20px; }
  }