  :root {
    --yellow: #FADB29;
    --purple: #7F28FA;
    --blue: #2859FA;
    --slate: #515B7A;
    --black: #0E0E0E;
    --white: #FFFFFF;
    --gray-light: #F7F7F7;
    --gray-mid: #E8E8E8;
    --gray-text: #888888;
  }

  * { margin: 0; padding: 0; box-sizing: border-box; }
  html { scroll-behavior: smooth; scroll-padding-top: 80px; }

  body {
    font-family: 'DM Sans', sans-serif;
    background: var(--white);
    color: var(--black);
    overflow-x: hidden;
  }

  h1, h2, h3, h4, p, a, button, span, li {
    font-family: 'DM Sans', sans-serif;
  }

  /* NAV */
  nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    padding: 20px 60px;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    background: rgba(255,255,255,0.92);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(0,0,0,0.06);
  }

  .nav-actions {
    display: flex;
    gap: 16px;
    align-items: center;
    justify-content: flex-end;
  }

  .nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 22px;
    font-weight: 800;
    letter-spacing: -0.5px;
    color: var(--black);
    text-decoration: none;
  }

  .nav-logo img { height: 36px; width: auto; margin-top: 5px; }

  .nav-links {
    display: flex;
    gap: 36px;
    list-style: none;
    justify-content: center;
    position: relative;
  }

  .nav-links a {
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    color: var(--slate);
    transition: color 0.2s;
    position: relative;
  }

  .nav-links a:hover { color: var(--black); }

  .nav-links a.nav-active { color: var(--black); }

  .nav-links a.nav-active::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--blue);
    border-radius: 100px;
  }

  .nav-cta {
    background: var(--blue);
    color: var(--white) !important;
    padding: 10px 22px;
    border-radius: 8px;
    font-weight: 600 !important;
    font-size: 14px !important;
    transition: background 0.2s !important;
    text-decoration: none !important;
  }

  .nav-cta:hover { background: #1e47e0 !important; }

  .lang-toggle {
    background: transparent;
    border: 1px solid rgba(0,0,0,0.18);
    border-radius: 6px;
    padding: 5px 11px;
    font-family: 'DM Sans', sans-serif;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.06em;
    color: var(--slate);
    cursor: pointer;
    transition: border-color 0.2s, color 0.2s;
    line-height: 1;
  }
  .lang-toggle:hover { border-color: var(--blue); color: var(--blue); }


  /* HERO */
  .hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    background: #fff;
  }

  .hero-bg {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 70% 60% at 50% 50%, rgba(40,89,250,0.04) 0%, transparent 70%);
    pointer-events: none;
  }

  .hero-inner {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 820px;
    padding: 120px 40px 80px;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .hero h1 {
    font-family: 'DM Sans', sans-serif;
    font-size: clamp(52px, 8vw, 96px);
    font-weight: 900;
    line-height: 1.0;
    letter-spacing: -3px;
    color: var(--black);
    margin-bottom: 24px;
    animation: fadeUp 0.7s 0.1s ease both;
  }

  .hero-sub {
    font-family: 'DM Sans', sans-serif;
    font-size: 17px;
    font-weight: 400;
    color: var(--slate);
    max-width: 480px;
    line-height: 1.65;
    margin-bottom: 44px;
    text-align: center;
    animation: fadeUp 0.7s 0.2s ease both;
  }

  .hero-actions {
    display: flex;
    gap: 16px;
    align-items: center;
    justify-content: center;
    animation: fadeUp 0.7s 0.3s ease both;
  }

  /* Floating output cards */
  .hf-card {
    position: absolute;
    background: #fff;
    border: 1px solid rgba(0,0,0,0.08);
    border-radius: 14px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.07), 0 1px 4px rgba(0,0,0,0.04);
    padding: 14px 16px;
    width: var(--card-w, 185px);
    z-index: 1;
    bottom: -130px;
    animation: hfCardRise linear infinite;
    animation-duration: var(--rise-dur, 22s);
    animation-delay: var(--rise-delay, 0s);
  }

  .hf-card-head {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
  }

  .hf-card-icon {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }
  .hf-card-icon--blue   { background: #eff6ff; }
  .hf-card-icon--purple { background: #f5f3ff; }
  .hf-card-icon--amber  { background: #fffbeb; }
  .hf-card-icon--green  { background: #f0fdf4; }

  .hf-card-info { flex: 1; min-width: 0; }

  .hf-card-title {
    font-size: 13px;
    font-weight: 700;
    color: var(--black);
    line-height: 1.3;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .hf-card-sub {
    font-size: 11px;
    color: #9ca3af;
    line-height: 1.4;
    margin-top: 2px;
  }

  .hf-card-footer {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.6px;
    text-transform: uppercase;
    color: #9ca3af;
    padding-top: 10px;
    border-top: 1px solid rgba(0,0,0,0.06);
  }

  .hf-status-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #22c55e;
    flex-shrink: 0;
  }
  .hf-status-dot--yellow { background: #FADB29; }
  .hf-status-dot--red    { background: #ef4444; }

  /* Left zone: 4 columns, opacity decreases toward center */
  .hf-card--1  { left: 1%;  --rise-dur: 22s; --rise-delay: 0s;     --peak-opacity: 0.72; --card-w: 175px; }
  .hf-card--7  { left: 1%;  --rise-dur: 22s; --rise-delay: -11s;   --peak-opacity: 0.72; --card-w: 185px; }
  .hf-card--2  { left: 9%;  --rise-dur: 26s; --rise-delay: -8s;    --peak-opacity: 0.52; --card-w: 193px; }
  .hf-card--8  { left: 9%;  --rise-dur: 26s; --rise-delay: -21s;   --peak-opacity: 0.52; --card-w: 178px; }
  .hf-card--13 { left: 17%; --rise-dur: 23s; --rise-delay: -6s;    --peak-opacity: 0.36; --card-w: 190px; }
  .hf-card--14 { left: 17%; --rise-dur: 23s; --rise-delay: -17.5s; --peak-opacity: 0.36; --card-w: 182px; }
  .hf-card--3  { left: 23%; --rise-dur: 20s; --rise-delay: -15s;   --peak-opacity: 0.22; --card-w: 172px; }
  .hf-card--9  { left: 23%; --rise-dur: 20s; --rise-delay: -5s;    --peak-opacity: 0.22; --card-w: 188px; }
  /* Right zone: mirror */
  .hf-card--4  { left: 62%; --rise-dur: 28s; --rise-delay: -4s;    --peak-opacity: 0.22; --card-w: 185px; }
  .hf-card--10 { left: 62%; --rise-dur: 28s; --rise-delay: -18s;   --peak-opacity: 0.22; --card-w: 200px; }
  .hf-card--11 { left: 70%; --rise-dur: 21s; --rise-delay: -10s;   --peak-opacity: 0.36; --card-w: 183px; }
  .hf-card--15 { left: 70%; --rise-dur: 21s; --rise-delay: -0.5s;  --peak-opacity: 0.36; --card-w: 173px; }
  .hf-card--5  { left: 78%; --rise-dur: 24s; --rise-delay: -18s;   --peak-opacity: 0.52; --card-w: 175px; }
  .hf-card--16 { left: 78%; --rise-dur: 24s; --rise-delay: -6s;    --peak-opacity: 0.52; --card-w: 193px; }
  .hf-card--6  { left: 86%; --rise-dur: 21s; --rise-delay: -10s;   --peak-opacity: 0.72; --card-w: 188px; }
  .hf-card--12 { left: 86%; --rise-dur: 21s; --rise-delay: -1s;    --peak-opacity: 0.72; --card-w: 176px; }

  @keyframes hfCardRise {
    0%  { transform: translateY(0);      opacity: 0; }
    8%  { opacity: var(--peak-opacity, 0.6); }
    63% { opacity: var(--peak-opacity, 0.6); }
    76% { opacity: 0; }
    100% { transform: translateY(-110vh); opacity: 0; }
  }

  .btn-primary {
    background: var(--blue);
    color: var(--white);
    padding: 16px 32px;
    border-radius: 10px;
    font-family: 'DM Sans', sans-serif;
    font-size: 15px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all 0.25s;
    text-decoration: none;
    display: inline-block;
  }

  .btn-primary:hover {
    background: #1e47e0;
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(40,89,250,0.28);
  }

  .btn-secondary {
    color: var(--blue);
    font-family: 'DM Sans', sans-serif;
    font-size: 15px;
    font-weight: 500;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: gap 0.2s;
  }

  .btn-secondary:hover { gap: 12px; }

  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(24px); }
    to { opacity: 1; transform: translateY(0); }
  }

  /* ─── CODE EDITOR COMPONENT ─── */
  .code-editor {
    width: 420px;
    background-color: #1d1e22;
    box-shadow: 0 8px 48px rgba(0,0,0,0.28), 0 2px 8px rgba(0,0,0,0.2), 0 0 0 1px rgba(250,219,41,0.18);
    border-radius: 12px;
    padding: 2px;
    transform: rotate(1.5deg);
    transition: transform 0.45s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.45s ease;
  }

  .manifesto-left:hover .code-editor {
    transform: rotate(0deg) scale(1.06);
    box-shadow: 0 20px 72px rgba(0,0,0,0.5), 0 0 0 1px rgba(250,219,41,0.45);
  }

  .code-editor-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 12px 14px 10px;
  }

  .code-editor-title {
    font-family: 'DM Sans', sans-serif;
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 0.8px;
    color: rgb(212 212 212);
  }

  .code-editor-icon {
    width: 18px;
    height: 18px;
    opacity: 0.5;
    transition: opacity 0.2s;
    cursor: pointer;
  }

  .code-editor-icon:hover {
    opacity: 1;
    border-radius: 50px;
    background-color: #6e7281;
  }

  .code-editor-content {
    margin: 0 14px 14px;
    color: white;
  }

  .code-editor-content .code {
    display: block;
    font-family: 'DM Sans', monospace;
    font-size: 13px;
    line-height: 1.9;
    color: rgba(255,255,255,0.85);
  }

  .code-editor-content .code p { white-space: nowrap; }

  .ce-prop { margin-left: 24px; }
  .ce-indent { margin-left: 48px; }

  .ce-0 { color: rgb(86 156 214); }    /* blue — keywords */
  .ce-1 { color: rgb(182 206 168); }   /* green — strings */
  .ce-2 { color: rgb(156 220 254); }   /* light blue — properties */
  .ce-3 { color: rgb(220 180 120); }   /* amber — function names */
  .ce-y { color: var(--yellow); }      /* yellow — special values */

  /* MANIFESTO SCROLL LOCK */
  .manifesto-wrapper {
    position: relative;
    height: 300vh;
  }

  .manifesto-wrapper.manifesto-done {
    height: auto;
  }

  .manifesto-sticky {
    position: sticky;
    top: 0;
    height: 100vh;
    padding: 0 !important;
    display: grid;
    grid-template-columns: 5fr 7fr;
    overflow: hidden;
  }

  .manifesto-wrapper.manifesto-done .manifesto-sticky {
    position: relative;
    top: auto;
  }

  .manifesto-left {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px;
    background: #111113;
    border-right: 1px solid rgba(255,255,255,0.05);
  }

  .manifesto-right {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 60px 80px;
    background: #0a0a0c;
  }

  .manifesto-heading {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.28);
    margin-bottom: 56px;
  }

  .manifesto-lines {
    display: flex;
    flex-direction: column;
    gap: 48px;
  }

  .manifesto-line {
    font-size: clamp(22px, 2.6vw, 42px);
    font-weight: 800;
    letter-spacing: -1.5px;
    line-height: 1.1;
    white-space: nowrap;
    color: rgba(255,255,255,0.75);
    opacity: 0;
    transform: translateY(52px);
    transition: opacity 0.55s cubic-bezier(0.16, 1, 0.3, 1), transform 0.55s cubic-bezier(0.16, 1, 0.3, 1);
  }

  .manifesto-line.visible {
    opacity: 1;
    transform: translateY(0);
  }

  .manifesto-line:last-child {
    color: var(--yellow);
  }

  /* SECTION SHARED */
  section { padding: 100px 60px; }

  .section-label {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--blue);
    margin-bottom: 16px;
  }

  .section-title {
    font-family: 'DM Sans', sans-serif;
    font-size: clamp(32px, 4vw, 52px);
    font-weight: 800;
    letter-spacing: -1.5px;
    line-height: 1.1;
    color: var(--black);
    margin-bottom: 16px;
  }

  .section-sub {
    font-size: 17px;
    color: var(--slate);
    line-height: 1.6;
    max-width: 520px;
  }

  /* WHO IT'S FOR */
  .for-section {
    background: var(--gray-light);
  }

  .for-header {
    max-width: 1200px;
    margin: 0 auto 52px;
  }

  .for-tabs-wrapper {
    max-width: 1200px;
    margin: 0 auto;
  }

  .for-tabs {
    display: flex;
    gap: 0;
    border-bottom: 1px solid var(--gray-mid);
    margin-bottom: 48px;
  }

  .for-tab {
    background: none;
    border: none;
    border-bottom: none;
    margin-bottom: 0;
    padding: 8px 20px;
    font-family: 'DM Sans', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: var(--gray-text);
    cursor: pointer;
    transition: all 0.2s;
    letter-spacing: 0.2px;
    border-radius: 20px;
  }

  .for-tab:hover { color: var(--black); }
  .for-tab.active {
    background: var(--black);
    color: var(--white);
    border-radius: 20px;
  }

  .for-panels-wrap {
    display: grid;
    overflow: hidden;
  }

  .for-tab-panel {
    grid-area: 1 / 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
    opacity: 0;
    pointer-events: none;
    transform: translateX(24px);
    transition: opacity 0.32s ease, transform 0.32s cubic-bezier(0.4, 0, 0.2, 1);
  }

  .for-tab-panel.active {
    opacity: 1;
    pointer-events: auto;
    transform: translateX(0);
  }

  .for-tab-left h3 {
    font-family: 'DM Sans', sans-serif;
    font-size: clamp(28px, 3vw, 40px);
    font-weight: 800;
    letter-spacing: -1px;
    line-height: 1.1;
    color: var(--black);
    margin-bottom: 20px;
  }

  .for-tab-left p {
    font-size: 16px;
    color: var(--slate);
    line-height: 1.75;
  }

  .for-tab-right {
    padding-top: 8px;
  }

  .for-tab-bullets {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }

  .for-tab-bullet {
    display: flex;
    align-items: flex-start;
    gap: 14px;
  }

  .for-tab-bullet-icon {
    width: 22px;
    height: 22px;
    background: var(--yellow);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 1px;
  }

  .for-tab-bullet span {
    font-size: 15px;
    font-weight: 500;
    color: var(--black);
    line-height: 1.5;
  }

  /* QUOTES CAROUSEL */
  .quotes-carousel {
    background: var(--yellow);
    padding: 180px 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    min-height: 680px;
  }

  .carousel-inner {
    max-width: 720px;
    flex: 1;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .carousel-quote-mark {
    font-size: 80px;
    font-weight: 900;
    color: var(--black);
    line-height: 0.8;
    margin-bottom: 32px;
    display: block;
  }

  .carousel-quote {
    font-size: clamp(20px, 2.5vw, 30px);
    font-weight: 700;
    color: var(--black);
    line-height: 1.45;
    margin-bottom: 28px;
    height: 210px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.26s ease;
  }

  .carousel-attribution {
    font-size: 14px;
    color: rgba(14,14,14,0.6);
    font-weight: 500;
    letter-spacing: 0.02em;
    transition: opacity 0.26s ease;
  }

  .carousel-prev, .carousel-next {
    background: none;
    border: 2px solid rgba(14,14,14,0.2);
    border-radius: 50%;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    cursor: pointer;
    color: var(--black);
    opacity: 0.5;
    transition: opacity 0.2s, border-color 0.2s;
    flex-shrink: 0;
    font-family: inherit;
  }
  .carousel-prev:hover, .carousel-next:hover {
    opacity: 1;
    border-color: var(--black);
  }

  .carousel-arrow {
    background: none;
    border: 2px solid rgba(14,14,14,0.2);
    border-radius: 50%;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    cursor: pointer;
    color: var(--black);
    opacity: 0.5;
    transition: opacity 0.2s, border-color 0.2s;
    flex-shrink: 0;
  }

  .carousel-arrow:hover {
    opacity: 1;
    border-color: var(--black);
  }

  /* INTEGRATIONS */
  .tools-section {
    background: var(--gray-light);
    padding: 100px 60px;
  }

  .tools-inner-wrap {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 80px;
    align-items: center;
  }

  .tools-copy {
    flex: 0 0 50%;
  }

  .tools-copy .section-title { color: var(--black); }
  .tools-copy .section-sub   { color: var(--slate); }

  .tools-slot-wrap {
    flex: 1;
    height: 620px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 24px;
  }

  .tools-slot-rail-wrap {
    border-left: 1px solid var(--gray-mid);
    border-right: 1px solid var(--gray-mid);
    height: 100%;
    width: 180px;
    overflow: hidden;
    flex-shrink: 0;
  }

  .tools-slot-scroll {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 70px;
    overflow-y: scroll;
    height: 100%;
    scrollbar-width: none;
    padding: 20px 0;
    -webkit-mask-image: linear-gradient(to bottom, transparent 0%, black 18%, black 82%, transparent 100%);
    mask-image: linear-gradient(to bottom, transparent 0%, black 18%, black 82%, transparent 100%);
  }

  .tools-slot-scroll::-webkit-scrollbar { display: none; }

  .tool-logo {
    width: 80px;
    height: 80px;
    object-fit: contain;
    flex-shrink: 0;
    transition: transform 0.1s ease, opacity 0.1s ease;
  }

  .slot-label {
    font-size: 16px;
    font-weight: 600;
    color: var(--black);
    transition: opacity 0.22s ease;
    white-space: nowrap;
    min-width: 180px;
  }

  /* WHY RAYMONT TEASER */
  .wr-teaser {
    background: var(--gray-light);
    padding: 180px 80px;
    border-top: 1px solid var(--gray-mid);
    min-height: 680px;
    display: flex;
    align-items: center;
  }

  .wr-teaser-inner {
    max-width: 1100px;
    width: 100%;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
  }

  .wr-teaser-left {
  }

  .wr-teaser-headline {
    font-size: clamp(32px, 4vw, 52px);
    font-weight: 900;
    letter-spacing: -1.5px;
    line-height: 1.1;
    color: var(--black);
    margin: 16px 0 20px;
  }

  .wr-teaser-sub {
    font-size: 17px;
    color: var(--slate);
    line-height: 1.7;
    margin-bottom: 32px;
  }

  .wr-teaser-link {
    display: inline-block;
    font-size: 15px;
    font-weight: 700;
    color: var(--blue);
    text-decoration: none;
    border-bottom: 2px solid transparent;
    transition: border-color 0.2s;
  }

  .wr-teaser-link:hover { border-color: var(--blue); }

  .wr-teaser-right {
    display: flex;
    flex-direction: column;
  }

  .wr-belief-item {
    padding: 24px 0;
    border-top: 1px solid var(--gray-mid);
  }

  .wr-belief-item:last-child {
    border-bottom: 1px solid var(--gray-mid);
  }

  .wr-belief-num {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--blue);
    margin-bottom: 8px;
  }

  .wr-belief-item strong {
    display: block;
    font-size: 18px;
    font-weight: 800;
    color: var(--black);
    margin-bottom: 8px;
  }

  .wr-belief-item p {
    font-size: 15px;
    color: var(--slate);
    line-height: 1.7;
  }

  @media (max-width: 900px) {
    .wr-teaser { padding: 72px 24px; min-height: unset; display: block; }
    .wr-teaser-inner { grid-template-columns: 1fr; gap: 48px; }
    .wr-teaser-left { position: static; }
  }

  /* SERVICES */
  .services-section { background: var(--white); }

  .services-inner { max-width: 1200px; margin: 0 auto; }

  .services-header { margin-bottom: 56px; }

  .services-rows {
    border-top: 1px solid var(--gray-mid);
  }

  .service-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0 80px;
    padding: 72px 0;
    border-bottom: 1px solid var(--gray-mid);
    align-items: center;
  }

  .service-row-content { align-self: start; }

  .service-row-name {
    font-family: 'DM Sans', sans-serif;
    font-size: clamp(28px, 3.2vw, 44px);
    font-weight: 800;
    letter-spacing: -1.5px;
    line-height: 1.1;
    color: var(--black);
    margin-bottom: 20px;
  }

  .service-row-desc {
    font-size: 16px;
    color: var(--slate);
    line-height: 1.75;
    margin-bottom: 28px;
  }

  .service-row-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
  }

  .service-row-list li {
    font-size: 14px;
    font-weight: 500;
    color: var(--black);
    padding-left: 18px;
    position: relative;
  }

  .service-row-list li::before {
    content: '·';
    position: absolute;
    left: 0;
    color: var(--blue);
    font-weight: 900;
    font-size: 18px;
    line-height: 1.1;
  }

  /* Service row visuals */
  .service-row-visual {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  /* Dashboard image */
  .svc-dashboard-img {
    width: 100%;
    aspect-ratio: 16 / 10;
    border-radius: 14px;
    box-shadow: 0 40px 100px rgba(0,0,0,0.14), 0 10px 28px rgba(0,0,0,0.07);
    transform: rotate(2deg) perspective(900px) rotateY(-4deg);
    display: block;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
  }

  .service-row:hover .svc-dashboard-img {
    transform: rotate(1deg) perspective(900px) rotateY(-2deg) translateY(-8px);
    box-shadow: 0 56px 120px rgba(0,0,0,0.17), 0 12px 32px rgba(0,0,0,0.08),
                0 0 0 2px rgba(250,219,41,0.5);
  }

  /* AI automation flow visual */
  .svc-auto-visual {
    background: var(--white);
    border: 1px solid var(--gray-mid);
    border-radius: 16px;
    padding: 36px 40px;
    width: 100%;
    max-width: 420px;
    transform: rotate(-1.5deg);
    box-shadow: 0 32px 80px rgba(0,0,0,0.09), 0 6px 20px rgba(0,0,0,0.05);
    position: relative;
    transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
  }

  .service-row:hover .svc-auto-visual {
    border-color: rgba(250,219,41,0.7);
    box-shadow: 0 32px 80px rgba(0,0,0,0.09), 0 6px 20px rgba(0,0,0,0.05),
                0 0 0 2px rgba(250,219,41,0.3);
    transform: rotate(-1deg) translateY(-4px);
  }

  .sav-agent-icon {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 34px;
    height: 34px;
    background: rgba(40,89,250,0.08);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--blue);
  }

  .services-bridge {
    text-align: center;
    font-size: 17px;
    font-weight: 600;
    color: var(--slate);
    padding: 52px 0 0;
    letter-spacing: -0.2px;
  }

  .sav-step {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    position: relative;
  }

  .sav-step:not(.sav-step--last) { padding-bottom: 28px; }

  .sav-step:not(.sav-step--last)::after {
    content: '';
    position: absolute;
    left: 4px;
    top: 14px;
    width: 1px;
    height: calc(100% - 14px);
    background: var(--gray-mid);
  }

  .sav-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--gray-mid);
    border: 1.5px solid var(--gray-mid);
    flex-shrink: 0;
    margin-top: 3px;
    transition: background 0.3s, box-shadow 0.3s;
  }

  .sav-step span {
    font-size: 14px;
    font-weight: 500;
    color: var(--gray-text);
    line-height: 1.4;
    transition: color 0.3s;
  }

  /* Cycling animation — each step lights up in sequence */
  @keyframes savDotCycle {
    0%, 100% {
      background: var(--blue);
      border-color: var(--blue);
      box-shadow: 0 0 0 4px rgba(40,89,250,0.18);
    }
    26%, 74% {
      background: var(--gray-mid);
      border-color: var(--gray-mid);
      box-shadow: none;
    }
  }

  @keyframes savTextCycle {
    0%, 100% { color: var(--black); }
    26%, 74% { color: var(--gray-text); }
  }

  .svc-auto-visual .sav-dot  { animation: savDotCycle  4s linear infinite; }
  .svc-auto-visual .sav-step span { animation: savTextCycle 4s linear infinite; }

  .svc-auto-visual .sav-step:nth-child(1) .sav-dot,
  .svc-auto-visual .sav-step:nth-child(1) span { animation-delay: 0s; }
  .svc-auto-visual .sav-step:nth-child(2) .sav-dot,
  .svc-auto-visual .sav-step:nth-child(2) span { animation-delay: -3s; }
  .svc-auto-visual .sav-step:nth-child(3) .sav-dot,
  .svc-auto-visual .sav-step:nth-child(3) span { animation-delay: -2s; }
  .svc-auto-visual .sav-step:nth-child(4) .sav-dot,
  .svc-auto-visual .sav-step:nth-child(4) span { animation-delay: -1s; }

  /* ABOUT */
  .about-section { background: var(--gray-light); }

  .about-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
  }

  .about-visual { position: relative; }

  .about-photo-frame {
    width: 100%;
    aspect-ratio: 4/5;
    background: var(--yellow);
    border-radius: 24px;
    position: relative;
    overflow: hidden;
  }

  .about-photo-inner {
    position: absolute;
    inset: 16px 16px -8px -8px;
    border-radius: 20px;
    overflow: hidden;
    background: #1a1a1a;
  }

  .about-photo-inner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    border-radius: 20px;
    display: block;
  }

  .about-stat-card {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: var(--white);
    border-radius: 16px;
    padding: 20px 24px;
    box-shadow: 0 16px 48px rgba(0,0,0,0.12);
  }

  .about-stat-number {
    font-family: 'DM Sans', sans-serif;
    font-size: 32px;
    font-weight: 900;
    color: var(--black);
    letter-spacing: -1px;
    line-height: 1;
  }

  .about-stat-label {
    font-size: 12px;
    color: var(--gray-text);
    font-weight: 500;
    margin-top: 4px;
  }

  .about-content .section-label { margin-bottom: 12px; }
  .about-content .section-title { margin-bottom: 20px; }

  .about-body {
    font-size: 16px;
    color: var(--slate);
    line-height: 1.8;
    margin-bottom: 16px;
  }

  /* CTA */
  .cta-section {
    background: var(--blue);
    text-align: center;
    padding: 180px 80px;
    min-height: 680px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }

  .cta-inner {
    max-width: 560px;
    text-align: center;
  }

  .cta-section .section-label {
    color: rgba(255,255,255,0.6);
    margin-bottom: 20px;
  }

  .cta-section .section-title {
    color: var(--white);
    font-size: clamp(32px, 3.6vw, 48px);
    margin: 0 0 24px;
  }

  .cta-sub {
    font-size: 16px;
    color: rgba(255,255,255,0.7);
    line-height: 1.65;
    margin-bottom: 40px;
  }

  /* INTRO WIDGET */
  .intro-widget {
    position: fixed;
    bottom: 32px;
    right: 32px;
    width: 360px;
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 4px 40px rgba(0,0,0,0.13), 0 1px 8px rgba(0,0,0,0.06);
    padding: 22px;
    display: flex;
    gap: 14px;
    align-items: flex-start;
    z-index: 500;
    transform: translateY(14px);
    opacity: 0;
    transition: transform 0.4s cubic-bezier(0.2,0,0.2,1), opacity 0.3s ease;
    pointer-events: none;
  }

  .intro-widget--visible {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .intro-widget-avatar {
    width: 52px;
    height: 52px;
    min-width: 52px;
    border-radius: 50%;
    object-fit: cover;
    object-position: top;
  }

  .intro-widget-body { flex: 1; min-width: 0; }

  .intro-widget-body p {
    font-size: 14px;
    line-height: 1.6;
    color: var(--black);
    margin: 0 0 12px;
    padding-right: 18px;
  }

  .intro-widget-body strong { font-weight: 700; }

  .intro-widget-link {
    font-size: 14px;
    font-weight: 600;
    color: var(--blue);
    text-decoration: none;
  }

  .intro-widget-close {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 24px;
    height: 24px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    color: var(--gray-text);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
  }

  .intro-widget-close:hover { color: var(--black); }

  .btn-yellow {
    background: var(--yellow);
    color: var(--black);
    padding: 18px 40px;
    border-radius: 10px;
    font-family: 'DM Sans', sans-serif;
    font-size: 16px;
    font-weight: 700;
    border: none;
    cursor: pointer;
    transition: all 0.25s;
    text-decoration: none;
    display: inline-block;
  }

  .btn-yellow:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 40px rgba(250,219,41,0.35);
  }

  /* FOOTER */
  footer {
    background: #181818;
    border-top: 1px solid rgba(255,255,255,0.07);
    padding: 64px 60px 32px;
  }

  .footer-top {
    display: flex;
    justify-content: space-between;
    gap: 80px;
    margin-bottom: 48px;
  }

  .footer-brand {
    flex: 0 0 auto;
    max-width: 260px;
  }

  .footer-logo {
    display: block;
    margin-bottom: 16px;
    text-decoration: none;
  }

  .footer-logo img {
    height: 28px;
    width: auto;
    margin-top: 4px;
  }

  .footer-tagline {
    font-size: 14px;
    color: rgba(255,255,255,0.4);
    line-height: 1.65;
    margin-bottom: 20px;
  }

  .footer-social { display: flex; gap: 12px; }

  .footer-social a {
    display: flex;
    align-items: center;
    text-decoration: none;
  }

  .footer-linkedin-icon {
    width: 20px;
    height: 20px;
  }

  .footer-nav {
    display: flex;
    gap: 60px;
  }

  .footer-nav-col {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }

  .footer-nav-heading {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.75);
    margin-bottom: 6px;
  }

  .footer-nav-col a {
    font-size: 14px;
    color: rgba(255,255,255,0.42);
    text-decoration: none;
    transition: color 0.2s;
  }

  .footer-nav-col a:hover { color: rgba(255,255,255,0.85); }

  .footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding-top: 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .footer-copy {
    font-size: 13px;
    color: rgba(255,255,255,0.28);
  }

  .footer-legal {
    display: flex;
    gap: 24px;
  }

  .footer-legal a {
    font-size: 13px;
    color: rgba(255,255,255,0.28);
    text-decoration: none;
    transition: color 0.2s;
  }

  .footer-legal a:hover { color: rgba(255,255,255,0.6); }

  /* ─── TOOL CARDS ─── */
  .tools-cards-outer {
    max-width: 1200px;
    margin: 80px auto 0;
    padding-top: 80px;
    border-top: 1px solid var(--gray-mid);
  }

  .tools-cards-label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--slate);
    margin-bottom: 28px;
  }

  .tools-cards-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
  }

  .tool-card {
    /* seamless on section background */
  }

  .tool-card-top {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
  }

  .tool-card-icon {
    width: 52px;
    height: 52px;
    object-fit: contain;
  }

  .tool-card-name {
    font-size: 24px;
    font-weight: 800;
    letter-spacing: -0.5px;
    color: var(--black);
    margin-bottom: 10px;
  }

  .tool-card-desc {
    font-size: 14px;
    color: var(--slate);
    line-height: 1.7;
    margin-bottom: 20px;
  }

  .tool-card-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
  }

  .tool-card-list li {
    font-size: 14px;
    font-weight: 500;
    color: var(--black);
    padding-left: 16px;
    position: relative;
  }

  .tool-card-list li::before {
    content: '·';
    position: absolute;
    left: 0;
    color: var(--blue);
    font-weight: 900;
    font-size: 18px;
    line-height: 1.1;
  }

  @media (max-width: 900px) {
    .tools-cards-grid { grid-template-columns: 1fr; }
    .tools-cards-outer { padding-top: 56px; margin-top: 56px; }
    .tool-card { padding: 28px 24px; }
  }

  /* ─── SCROLL REVEAL ─── */
  .reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.65s ease, transform 0.65s ease;
  }
  .reveal.visible {
    opacity: 1;
    transform: translateY(0);
  }
  .reveal-d1 { transition-delay: 0.1s; }
  .reveal-d2 { transition-delay: 0.2s; }
  .reveal-d3 { transition-delay: 0.3s; }
  .reveal-d4 { transition-delay: 0.15s; }
  .reveal-d5 { transition-delay: 0.25s; }

  /* ─── UTILITIES ─── */
  .sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0,0,0,0);
    white-space: nowrap;
    border: 0;
  }

  /* ─── COOKIE BANNER ─── */
  .cookie-banner {
    position: fixed;
    bottom: 28px;
    left: 28px;
    max-width: 560px;
    background: var(--black);
    border-radius: 14px;
    padding: 18px 20px;
    display: flex;
    align-items: center;
    gap: 20px;
    z-index: 9999;
    box-shadow: 0 8px 40px rgba(0,0,0,0.28);
    transform: translateY(16px);
    opacity: 0;
    transition: transform 0.35s cubic-bezier(0.2,0,0.2,1), opacity 0.3s ease;
    pointer-events: none;
  }

  .cookie-banner--visible {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .cookie-text {
    font-size: 13px;
    line-height: 1.5;
    color: rgba(255,255,255,0.8);
    flex: 1;
    margin: 0;
  }

  .cookie-text a { color: var(--yellow); text-decoration: none; }
  .cookie-text a:hover { text-decoration: underline; }

  .cookie-actions {
    display: flex;
    gap: 8px;
    flex-shrink: 0;
  }

  .cookie-btn {
    font-family: 'DM Sans', sans-serif;
    font-size: 13px;
    font-weight: 700;
    padding: 8px 16px;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    transition: opacity 0.18s;
  }

  .cookie-accept {
    background: var(--yellow);
    color: var(--black);
  }

  .cookie-decline {
    background: rgba(255,255,255,0.1);
    color: rgba(255,255,255,0.8);
  }

  .cookie-btn:hover { opacity: 0.82; }

  @media (max-width: 600px) {
    .cookie-banner { flex-direction: column; align-items: flex-start; bottom: 16px; left: 16px; right: 16px; max-width: none; }
  }

  /* ─── FAQ ACCORDION ─── */
  .faq-section {
    background: var(--white);
    padding: 180px 80px;
    min-height: 680px;
    border-top: 1px solid var(--gray-mid);
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .faq-section-inner {
    max-width: 780px;
    margin: 0 auto;
  }
  .faq-section-label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--blue);
    margin-bottom: 16px;
    display: block;
  }
  .faq-section-title {
    font-size: clamp(28px, 3.5vw, 42px);
    font-weight: 900;
    letter-spacing: -1.5px;
    line-height: 1.1;
    color: var(--black);
    margin-bottom: 48px;
  }
  .faq-list {
    border: 1.5px solid var(--gray-mid);
    border-radius: 16px;
    overflow: hidden;
  }
  .faq-item {
    border-bottom: 1px solid var(--gray-mid);
  }
  .faq-item:last-child { border-bottom: none; }
  .faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    padding: 22px 28px;
    background: none;
    border: none;
    cursor: pointer;
    font-family: 'DM Sans', sans-serif;
    font-size: 15px;
    font-weight: 700;
    color: var(--black);
    text-align: left;
    transition: background 0.15s;
  }
  .faq-question:hover { background: var(--gray-light); }
  .faq-icon {
    font-size: 22px;
    font-weight: 300;
    color: var(--slate);
    flex-shrink: 0;
    transition: transform 0.3s ease;
    line-height: 1;
  }
  .faq-item.is-open .faq-icon { transform: rotate(45deg); }
  .faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
  }
  .faq-answer-inner {
    padding: 0 28px 22px;
  }
  .faq-answer-inner p {
    font-size: 15px;
    color: var(--slate);
    line-height: 1.75;
    margin: 0;
  }

  /* ─── MOBILE ─── */
  @media (max-width: 768px) {

    /* NAV */
    nav {
      padding: 16px 20px;
      grid-template-columns: 1fr auto;
    }
    .nav-links {
      display: none;
      position: fixed;
      top: 0; left: 0; right: 0; bottom: 0;
      background: #fff;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 36px;
      z-index: 200;
    }
    .nav-links.nav-open { display: flex; }
    .nav-links a { font-size: 22px; font-weight: 700; color: var(--black); }
    .nav-links a.nav-active::after { bottom: -6px; }
    .lang-toggle { display: none; }
    .nav-cta { font-size: 13px !important; padding: 8px 16px !important; }

    /* Hamburger */
    .nav-hamburger {
      display: flex;
      flex-direction: column;
      justify-content: center;
      gap: 5px;
      background: none;
      border: none;
      cursor: pointer;
      padding: 8px;
      margin-left: 8px;
      position: relative;
      z-index: 300;
    }
    .nav-hamburger span {
      display: block;
      width: 22px;
      height: 2px;
      background: var(--black);
      border-radius: 2px;
      transition: transform 0.25s ease, opacity 0.2s ease;
    }
    .nav-hamburger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
    .nav-hamburger.is-open span:nth-child(2) { opacity: 0; }
    .nav-hamburger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

    /* SECTION DEFAULTS */
    section { padding: 72px 24px; }

    /* HERO */
    .hero-inner { padding: 100px 24px 60px; }
    /* Keep outer-edge cards, hide the middle ones that overlap the text */
    .hf-card { --peak-opacity: 0.32; }
    .hf-card--13, .hf-card--14,
    .hf-card--3,  .hf-card--9,
    .hf-card--4,  .hf-card--10,
    .hf-card--11, .hf-card--15 { display: none; }

    /* MANIFESTO */
    .manifesto-wrapper { height: auto; }
    .manifesto-sticky {
      position: relative;
      top: auto;
      height: auto;
      grid-template-columns: 1fr;
    }
    .manifesto-left { display: none; }
    .manifesto-right { padding: 48px 24px 64px; }
    .manifesto-line {
      opacity: 1;
      transform: none;
      white-space: normal;
      transition: none;
    }

    /* WHO IT'S FOR */
    .for-tabs {
      overflow-x: auto;
      -webkit-overflow-scrolling: touch;
      flex-wrap: nowrap;
      padding-bottom: 0;
      gap: 6px;
    }
    .for-tab { flex-shrink: 0; font-size: 13px; padding: 7px 14px; }
    .for-tab-panel {
      grid-template-columns: 1fr;
      gap: 40px;
      transform: none !important;
    }

    /* SERVICES */
    .services-section { padding: 72px 24px; }
    .service-row {
      grid-template-columns: 1fr;
      gap: 36px;
      padding: 48px 0;
    }
    .service-row-visual { order: 1; }
    .svc-dashboard-img { transform: none; }
    .svc-auto-visual { max-width: 100%; transform: none; }

    /* TOOLS */
    .tools-section { padding: 72px 24px; }
    .tools-inner-wrap { flex-direction: column; gap: 40px; }
    .tools-copy { flex: none; }
    .tools-slot-wrap { height: 320px; justify-content: center; }

    /* ABOUT (homepage) */
    .about-section { padding: 72px 24px; }
    .about-inner { grid-template-columns: 1fr; gap: 48px; }
    .about-stat-card { right: 0; }

    /* QUOTES CAROUSEL */
    .quotes-carousel {
      padding: 80px 24px;
      min-height: unset;
      flex-direction: column;
      gap: 24px;
    }
    .carousel-quote { height: auto; }

    /* FAQ */
    .faq-section { padding: 72px 24px; }

    /* CTA */
    .cta-section { padding: 80px 24px; min-height: unset; }

    /* FOOTER */
    footer { padding: 56px 24px 28px; }
    .footer-top { flex-direction: column; gap: 40px; }
    .footer-brand { max-width: 100%; }
    .footer-nav { flex-wrap: wrap; gap: 32px; }
    .footer-bottom { flex-direction: column; gap: 10px; text-align: center; }

    /* INTRO WIDGET */
    .intro-widget { width: auto; left: 16px; right: 16px; bottom: 16px; }

    /* ABOUT PAGE */
    .ab-hero { padding: 100px 24px 60px; min-height: unset; }
    .process-section { padding: 72px 24px; }
    .process-step { grid-template-columns: 56px 1fr; gap: 20px; padding: 36px 0; }
    .process-step-num { font-size: 40px; }
    .about-proof { padding: 80px 24px; min-height: unset; }
    .about-proof .carousel-quote { font-size: clamp(17px, 4vw, 22px); }

    /* LEGAL PAGES */
    .legal-hero { padding: 100px 24px 40px; }
    .legal-body { padding: 48px 24px 72px; }
  }

  /* Ensure hamburger hidden on desktop */
  @media (min-width: 769px) {
    .nav-hamburger { display: none; }
  }
