    :root {
      --purple: #6528F7;
      --purple-hover: #5520d6;
      --purple-light: #ece5fe;
      --black: #000000;
      --white: #FFFFFF;
      --gray-bg: #f7f7f9;
      --gray-text: #555;
      --gray-light: #888;
      --gray-border: #e5e5e5;
      --dark: #1a1a2e;
      --max-w: 1200px;
    }

    *, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
    html { scroll-behavior: smooth; }
    body { font-family: 'Poppins', sans-serif; color: var(--black); background: var(--white); line-height: 1.6; }
    img { max-width: 100%; display: block; }
    a { text-decoration: none; color: inherit; }
    ul { list-style: none; }
    .container { max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }

    /* ======= NAV ======= */
    .nav {
      position: sticky;
      top: 0;
      z-index: 100;
      background: var(--white);
      border-bottom: 1px solid var(--gray-border);
      padding: 0;
    }
    .nav-inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      height: 88px;
      position: relative;
    }
    .nav-logo { flex-shrink: 0; }
    .nav-logo img { height: 44px; width: auto; }
    .nav-menu {
      display: flex;
      align-items: center;
      gap: 40px;
    }
    .nav-menu a {
      font-size: 1rem;
      font-weight: 600;
      color: var(--black);
      transition: color 0.2s;
    }
    .nav-menu a:hover { color: var(--purple); }
    .nav-btns { display: flex; gap: 12px; flex-shrink: 0; }
    .btn {
      display: inline-block;
      padding: 10px 24px;
      border-radius: 6px;
      font-family: 'Poppins', sans-serif;
      font-weight: 600;
      font-size: 0.85rem;
      cursor: pointer;
      transition: all 0.25s;
      border: 2px solid transparent;
      text-align: center;
      white-space: nowrap;
    }
    .btn-outline {
      border-color: var(--purple);
      color: var(--purple);
      background: transparent;
    }
    .btn-outline:hover { background: var(--purple); color: var(--white); }
    .btn-filled {
      background: var(--purple);
      color: var(--white);
      border-color: var(--purple);
    }
    .btn-filled:hover { background: var(--purple-hover); }
    .btn-white {
      background: var(--white);
      color: var(--purple);
      border-color: var(--white);
    }
    .btn-white:hover { background: var(--purple-light); }

    /* Mobile toggle */
    .nav-toggle {
      display: none;
      background: none;
      border: none;
      cursor: pointer;
      padding: 8px;
      z-index: 110;
      position: relative;
    }
    .nav-toggle span {
      display: block;
      width: 24px;
      height: 2.5px;
      background: var(--black);
      margin: 5px 0;
      border-radius: 2px;
      transition: all 0.3s;
    }
    /* Hamburger to X animation */
    .nav-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
    .nav-toggle.active span:nth-child(2) { opacity: 0; }
    .nav-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

    /* Mobile menu overlay */
    .nav-mobile-menu {
      display: none;
      position: absolute;
      top: 88px;
      left: 0;
      right: 0;
      background: var(--white);
      border-bottom: 1px solid var(--gray-border);
      box-shadow: 0 12px 32px rgba(0,0,0,0.1);
      padding: 24px;
      z-index: 105;
      flex-direction: column;
      gap: 8px;
    }
    .nav-mobile-menu.open { display: flex; }
    .nav-mobile-menu a {
      font-size: 1rem;
      font-weight: 600;
      color: var(--black);
      padding: 12px 0;
      border-bottom: 1px solid var(--gray-bg);
      transition: color 0.2s;
    }
    .nav-mobile-menu a:last-of-type { border-bottom: none; }
    .nav-mobile-menu a:hover { color: var(--purple); }
    .nav-mobile-menu .mobile-btns {
      display: flex;
      flex-direction: column;
      gap: 10px;
      margin-top: 16px;
      padding-top: 16px;
      border-top: 1px solid var(--gray-border);
    }
    .nav-mobile-menu .mobile-btns .btn {
      width: 100%;
      text-align: center;
    }

    /* Sticky mobile CTA bar — always visible below header on mobile */
    .nav-mobile-cta {
      display: none;
    }

    /* ======= HERO SLIDER ======= */
    .hero-slider {
      position: relative;
      overflow: hidden;
    }
    .slide {
      display: none;
      padding: 80px 0;
      min-height: 480px;
    }
    .slide.active { display: flex; align-items: center; }
    /* Per-slide gradients — vibrant purple family */
    .slide[data-slide="0"] {
      background: linear-gradient(135deg, #e0d0ff 0%, #c9b0ff 40%, #ece5fe 100%);
    }
    .slide[data-slide="1"] {
      background: linear-gradient(135deg, #d4c0ff 0%, #b89aff 50%, #e0d0ff 100%);
    }
    .slide[data-slide="2"] {
      background: linear-gradient(135deg, #c9b0ff 0%, #a78bfa 40%, #d4c0ff 100%);
    }
    .slide-inner {
      max-width: 720px;
      padding: 0 24px;
    }
    .slide-image { display: none; }
    .slide-tag {
      display: inline-block;
      background: var(--purple);
      color: var(--white);
      font-size: 0.7rem;
      font-weight: 700;
      padding: 4px 14px;
      border-radius: 4px;
      text-transform: uppercase;
      letter-spacing: 0.08em;
      margin-bottom: 16px;
    }
    .slide-text h2 {
      font-size: clamp(2rem, 4vw, 2.8rem);
      font-weight: 900;
      line-height: 1.2;
      margin-bottom: 18px;
    }
    .slide-text p {
      font-size: 1.05rem;
      color: var(--gray-text);
      margin-bottom: 28px;
      line-height: 1.75;
      max-width: 580px;
    }
    /* Slider arrows on sides — large, semi-transparent, edge-positioned */
    .slider-arrow {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      width: 48px; height: 48px;
      border-radius: 0;
      border: none;
      background: transparent;
      display: flex; align-items: center; justify-content: center;
      cursor: pointer;
      font-size: 3rem;
      font-weight: 300;
      color: rgba(0,0,0,0.3);
      transition: color 0.25s;
      z-index: 10;
      line-height: 1;
    }
    .slider-arrow:hover {
      color: rgba(0,0,0,0.6);
    }
    .slider-arrow-prev { left: 12px; }
    .slider-arrow-next { right: 12px; }
    /* Dots below */
    .slider-dots {
      display: flex;
      justify-content: center;
      gap: 10px;
      padding: 20px 0 32px;
      background: var(--white);
    }
    .slider-dot {
      width: 12px; height: 12px;
      border-radius: 50%;
      background: var(--gray-border);
      border: none;
      cursor: pointer;
      transition: background 0.2s;
    }
    .slider-dot.active { background: var(--purple); }

    /* ======= SECTION TITLES ======= */
    .section { padding: 80px 0; }
    .services { padding-top: 40px; }
    .section-title {
      text-align: center;
      margin-bottom: 16px;
      font-size: clamp(1.5rem, 3vw, 2rem);
      font-weight: 900;
    }
    .section-subtitle {
      text-align: center;
      font-size: 0.95rem;
      color: var(--gray-text);
      max-width: 700px;
      margin: 0 auto 48px;
      line-height: 1.7;
    }

    /* ======= SERVICES ======= */
    .services { background: var(--white); }
    .services-heading {
      font-size: clamp(1.5rem, 3vw, 2rem);
      font-weight: 900;
      text-align: center;
      margin-bottom: 12px;
    }
    .services-heading span { color: var(--purple); }
    .services-intro {
      text-align: center;
      font-size: 0.95rem;
      color: var(--gray-text);
      max-width: 650px;
      margin: 0 auto 48px;
      line-height: 1.7;
    }
    /* Card grid */
    .services-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
    }
    .service-card {
      border: none;
      border-radius: 12px;
      position: relative;
      padding: 36px 24px;
      background: var(--white);
      text-align: center;
      transition: all 0.3s;
    }
    .service-card::before {
      content: '';
      position: absolute;
      inset: 0;
      border-radius: 12px;
      padding: 2px;
      background: linear-gradient(180deg, var(--purple), #c084fc);
      -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
      -webkit-mask-composite: xor;
      mask-composite: exclude;
    }
    .service-card:hover {
      transform: translateY(-4px);
      box-shadow: 0 8px 28px rgba(101, 40, 247, 0.12);
    }
    .service-card-icon {
      width: 52px; height: 52px;
      margin: 0 auto 18px;
      display: flex; align-items: center; justify-content: center;
    }
    .service-card-icon svg {
      width: 36px; height: 36px;
      stroke: var(--purple);
      fill: none;
      stroke-width: 1.5;
      stroke-linecap: round;
      stroke-linejoin: round;
    }
    .service-card h3 {
      font-size: 1.05rem;
      font-weight: 700;
      margin-bottom: 10px;
    }
    .service-card p {
      font-size: 0.82rem;
      color: var(--gray-text);
      line-height: 1.65;
    }
    /* Category label at top of card */
    .service-card-cat {
      position: absolute;
      top: -1px;
      left: 50%;
      transform: translateX(-50%);
      font-size: 0.62rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.1em;
      padding: 3px 12px;
      border-radius: 0 0 6px 6px;
      color: var(--white);
      z-index: 2;
    }
    .service-card-cat.get-found { background: var(--purple); }
    .service-card-cat.convert-grow { background: var(--dark); }

    /* ======= PROCESS (APS-style — dot on line, number beside text) ======= */
    .process { background: var(--gray-bg); }
    .process-subtitle {
      text-align: center;
      font-size: 0.95rem;
      color: var(--gray-text);
      max-width: 600px;
      margin: 0 auto 56px;
    }
    .process-steps {
      max-width: 900px;
      margin: 0 auto;
      position: relative;
      padding: 20px 0;
    }
    /* Center vertical line */
    .process-steps::before {
      content: '';
      position: absolute;
      top: 0;
      bottom: 0;
      left: 50%;
      transform: translateX(-50%);
      width: 3px;
      background: var(--gray-border);
    }
    .process-step {
      position: relative;
      display: flex;
      align-items: center;
      min-height: 170px;
    }

    /* Dot on the center line */
    .connector-dot {
      position: absolute;
      left: 50%;
      top: 50%;
      transform: translate(-50%, -50%);
      width: 14px; height: 14px;
      border-radius: 50%;
      background: var(--white);
      border: 3px solid var(--purple);
      z-index: 3;
    }

    /* Horizontal connector line from dot toward the number */
    .process-step::after {
      content: '';
      position: absolute;
      top: 50%;
      height: 3px;
      background: var(--gray-border);
      z-index: 1;
    }

    /* Number circle — beside the text, off the line */
    .step-num {
      width: 64px; height: 64px;
      border-radius: 50%;
      background: var(--purple);
      color: var(--white);
      display: flex; align-items: center; justify-content: center;
      font-size: 1.4rem;
      font-weight: 900;
      flex-shrink: 0;
      position: absolute;
      z-index: 3;
      box-shadow: 0 4px 16px rgba(101, 40, 247, 0.25);
    }

    /* Text block */
    .process-step-text {
      width: calc(50% - 140px);
    }
    .process-step-text h4 {
      font-size: 1.2rem;
      font-weight: 900;
      margin-bottom: 8px;
      line-height: 1.3;
    }
    .process-step-text p {
      font-size: 0.92rem;
      color: var(--gray-text);
      line-height: 1.7;
    }

    /* Odd steps (1,3,5): text + number on the RIGHT */
    .process-step:nth-child(odd)::after {
      left: calc(50% + 7px);
      width: 60px;
    }
    .process-step:nth-child(odd) .step-num {
      left: calc(50% + 72px);
    }
    .process-step:nth-child(odd) .process-step-text {
      margin-left: calc(50% + 152px);
      text-align: left;
    }

    /* Even steps (2,4): text + number on the LEFT */
    .process-step:nth-child(even)::after {
      right: calc(50% + 7px);
      left: auto;
      width: 60px;
    }
    .process-step:nth-child(even) .step-num {
      right: calc(50% + 72px);
      left: auto;
    }
    .process-step:nth-child(even) .process-step-text {
      margin-right: calc(50% + 152px);
      margin-left: auto;
      text-align: right;
      width: calc(50% - 140px);
    }

    .process-cta {
      text-align: center;
      margin-top: 56px;
    }

    /* ======= TOOLS / SCROLLING BANNER ======= */
    .tools { background: var(--white); padding: 60px 0; overflow: hidden; }
    .tools-label {
      text-align: center;
      font-size: 0.75rem;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 0.12em;
      color: var(--gray-light);
      margin-bottom: 32px;
    }
    .scroll-banner {
      display: flex;
      width: max-content;
      animation: scroll-left 30s linear infinite;
    }
    .scroll-banner:hover { animation-play-state: paused; }
    .scroll-track {
      display: flex;
      align-items: center;
      gap: 56px;
      padding: 0 28px;
    }
    .scroll-item {
      display: flex;
      align-items: center;
      gap: 10px;
      flex-shrink: 0;
      opacity: 0.55;
      transition: opacity 0.3s;
      cursor: default;
    }
    .scroll-item:hover { opacity: 1; }
    .scroll-item img {
      height: 28px;
      width: auto;
      object-fit: contain;
    }
    .scroll-item span {
      font-size: 0.88rem;
      font-weight: 600;
      color: var(--gray-text);
      white-space: nowrap;
    }
    @keyframes scroll-left {
      0% { transform: translateX(0); }
      100% { transform: translateX(-50%); }
    }

    /* ======= INDUSTRIES ======= */
    .industries { background: var(--gray-bg); }
    .industries-content {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 48px;
      align-items: center;
    }
    .industries-text h2 {
      font-size: clamp(1.4rem, 2.5vw, 1.8rem);
      font-weight: 900;
      line-height: 1.3;
      margin-bottom: 16px;
    }
    .industries-text p {
      font-size: 0.9rem;
      color: var(--gray-text);
      margin-bottom: 24px;
      line-height: 1.7;
    }
    .industries-bullets li {
      display: flex;
      align-items: center;
      gap: 10px;
      font-size: 0.88rem;
      font-weight: 500;
      padding: 8px 0;
    }
    .industries-bullets li::before {
      content: '✓';
      display: flex;
      align-items: center;
      justify-content: center;
      width: 24px;
      height: 24px;
      background: var(--purple);
      color: var(--white);
      border-radius: 50%;
      font-size: 0.65rem;
      font-weight: 700;
      flex-shrink: 0;
    }
    .industries-visual {
      display: flex;
      flex-direction: column;
      gap: 16px;
    }
    .industry-card-sm {
      background: var(--white);
      border-radius: 10px;
      padding: 24px;
      border-left: 4px solid var(--purple);
      box-shadow: 0 2px 10px rgba(0,0,0,0.04);
    }
    .industry-card-sm h4 {
      font-size: 1rem;
      font-weight: 700;
      margin-bottom: 6px;
    }
    .industry-card-sm p {
      font-size: 0.82rem;
      color: var(--gray-text);
      line-height: 1.6;
    }

    /* ======= ABOUT (APS: image left + text right) ======= */
    .about { background: var(--white); }
    .about-grid {
      display: grid;
      grid-template-columns: 1fr 1.2fr;
      gap: 60px;
      align-items: center;
    }
    /* Orbit graphic */
    .about-visual-wrapper {
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 20px;
    }
    .orbit-graphic {
      position: relative;
      width: 380px;
      height: 380px;
    }
    .orbit-ring, .orbit-lines {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
    }
    .orbit-lines { z-index: 1; }
    .orbit-line {
      stroke: #22c55e;
      stroke-width: 2;
      stroke-linecap: round;
      opacity: 0;
    }
    .orbit-line.extending {
      opacity: 0.6;
      animation: line-extend 0.6s linear forwards;
    }
    .orbit-line.done {
      opacity: 0.2;
    }
    @keyframes line-extend {
      0% { stroke-dasharray: 0 300; }
      100% { stroke-dasharray: 300 0; }
    }
    .orbit-center {
      position: absolute;
      top: 50%; left: 50%;
      transform: translate(-50%, -50%);
      width: 72px; height: 72px;
      border-radius: 50%;
      background: var(--purple);
      color: var(--white);
      display: flex; align-items: center; justify-content: center;
      font-size: 1.5rem;
      font-weight: 900;
      z-index: 5;
      box-shadow: 0 4px 20px rgba(101,40,247,0.3);
    }
    .orbit-item {
      position: absolute;
      top: 50%; left: 50%;
      width: 72px; height: 72px;
      margin: -36px;
      transform: rotate(var(--angle)) translateY(-170px) rotate(calc(-1 * var(--angle)));
      z-index: 4;
    }
    .orbit-icon-wrap {
      width: 72px; height: 72px;
      border-radius: 50%;
      background: var(--white);
      border: 2px solid var(--gray-border);
      display: flex; align-items: center; justify-content: center;
      position: relative;
      transition: all 0.4s;
      box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    }
    .orbit-icon-wrap img {
      width: 36px; height: 36px;
      object-fit: contain;
    }
    .orbit-check {
      position: absolute;
      top: -4px; right: -4px;
      width: 20px; height: 20px;
      border-radius: 50%;
      background: #22c55e;
      color: var(--white);
      font-size: 0.6rem;
      font-weight: 700;
      display: flex; align-items: center; justify-content: center;
      opacity: 0;
      transform: scale(0);
      transition: all 0.3s;
    }
    /* Light-up animation */
    .orbit-item {
      animation: orbit-activate 6.4s infinite;
      animation-delay: var(--delay);
    }
    @keyframes orbit-activate {
      0%, 10% {
        filter: none;
      }
      12% {
        filter: none;
      }
      15%, 27% {
        filter: none;
      }
      100% {
        filter: none;
      }
    }
    /* Activate check and green border on each item sequentially */
    .orbit-item {
      animation: orbit-glow 6.4s ease infinite;
      animation-delay: var(--delay);
    }
    @keyframes orbit-glow {
      0%, 5% {
        --active: 0;
      }
      8%, 20% {
        --active: 1;
      }
      25%, 100% {
        --active: 0;
      }
    }
    /* Since CSS custom properties in keyframes have limited support, use a class-based JS approach instead */
    .orbit-icon-wrap.active {
      border-color: #22c55e;
      background: #f0fdf4;
      box-shadow: 0 0 16px rgba(34, 197, 94, 0.2);
    }
    .orbit-icon-wrap.active .orbit-check {
      opacity: 1;
      transform: scale(1);
    }
    .about-text .label {
      font-size: 0.75rem;
      font-weight: 600;
      color: var(--purple);
      text-transform: uppercase;
      letter-spacing: 0.1em;
      margin-bottom: 8px;
    }
    .about-text h2 {
      font-size: clamp(1.5rem, 2.5vw, 2rem);
      font-weight: 900;
      margin-bottom: 16px;
      line-height: 1.25;
    }
    .about-text p {
      font-size: 0.9rem;
      color: var(--gray-text);
      line-height: 1.75;
      margin-bottom: 24px;
    }

    /* ======= CONTACT FORM (APS bottom style) ======= */
    .contact { background: var(--gray-bg); }
    .contact-inner {
      max-width: 700px;
      margin: 0 auto;
    }
    .contact-form {
      display: flex;
      flex-direction: column;
      gap: 16px;
    }
    .contact-form input,
    .contact-form select,
    .contact-form textarea {
      width: 100%;
      padding: 14px 18px;
      border: 1px solid var(--gray-border);
      border-radius: 8px;
      font-family: 'Poppins', sans-serif;
      font-size: 0.88rem;
      background: var(--white);
      color: var(--black);
      outline: none;
      transition: border-color 0.2s;
    }
    .contact-form input:focus,
    .contact-form select:focus,
    .contact-form textarea:focus {
      border-color: var(--purple);
    }
    .contact-form textarea { min-height: 130px; resize: vertical; }
    .contact-form .form-row {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 16px;
    }
    .contact-form .btn { border: none; width: 100%; padding: 14px; font-size: 0.95rem; }

    /* ======= FOOTER (APS 4-col) ======= */
    .footer {
      background: var(--dark);
      color: rgba(255,255,255,0.55);
      padding: 56px 0 28px;
    }
    .footer-grid {
      display: grid;
      grid-template-columns: 1.5fr 1fr 1fr 1fr;
      gap: 40px;
      margin-bottom: 40px;
    }
    .footer-brand img {
      height: 30px;
      filter: brightness(0) invert(1);
      margin-bottom: 14px;
    }
    .footer-brand p { font-size: 0.8rem; line-height: 1.7; max-width: 280px; }
    .footer-col h4 {
      color: var(--white);
      font-size: 0.85rem;
      font-weight: 700;
      margin-bottom: 16px;
    }
    .footer-col a {
      display: block;
      font-size: 0.8rem;
      padding: 3px 0;
      transition: color 0.2s;
    }
    .footer-col a:hover { color: var(--purple); }
    .footer-bottom {
      border-top: 1px solid rgba(255,255,255,0.08);
      padding-top: 20px;
      text-align: center;
      font-size: 0.75rem;
    }
    .footer-bottom img {
      height: 28px;
      filter: brightness(0) invert(1);
      margin: 0 auto 12px;
    }

    /* ======= RESPONSIVE ======= */
    @media (max-width: 900px) {
      .slide-inner { grid-template-columns: 1fr; }
      .slide-image { display: none; }
      .slider-arrow { display: none; }
      /* Nav: hide desktop menu, show hamburger + sticky CTA */
      .nav-menu { display: none; }
      .nav-btns { display: none; }
      .nav-toggle { display: block; }
      .nav-mobile-cta {
        display: flex;
        position: sticky;
        top: 88px;
        z-index: 99;
        background: var(--white);
        border-bottom: 1px solid var(--gray-border);
        padding: 10px 24px;
        gap: 10px;
      }
      .nav-mobile-cta .btn {
        flex: 1;
        text-align: center;
        padding: 10px 12px;
        font-size: 0.82rem;
      }
      /* Hide buttons from dropdown since they're in the sticky bar */
      .nav-mobile-menu .mobile-btns { display: none; }
      .services-grid { grid-template-columns: repeat(2, 1fr); }
      /* Process mobile */
      .process-steps { overflow: hidden; }
      .process-steps::before { left: 31px; transform: none; top: 28px; bottom: 28px; }
      .process-step { min-height: auto; margin-bottom: 24px; }
      .process-step:last-child { margin-bottom: 0; }
      .process-step::after { display: none; }
      .process-step .connector-dot { display: none; }
      .step-num { position: relative !important; left: auto !important; right: auto !important; transform: none !important; flex-shrink: 0; margin-right: 20px; }
      .process-step:nth-child(odd),
      .process-step:nth-child(even) { justify-content: flex-start; flex-direction: row; }
      .process-step:nth-child(odd) .process-step-text,
      .process-step:nth-child(even) .process-step-text { margin: 0; width: auto; text-align: left; }
      .industries-content { grid-template-columns: 1fr; }
      /* About: text first, orbit below */
      .about-grid { grid-template-columns: 1fr; }
      .about-visual-wrapper { order: 2; }
      .about-text { order: 1; }
      .orbit-graphic { width: 300px; height: 300px; }
      .orbit-item { transform: rotate(var(--angle)) translateY(-130px) rotate(calc(-1 * var(--angle))); }
      .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
    }
    @media (max-width: 600px) {
      .nav-inner { height: 72px; }
      .nav-logo img { height: 36px; }
      .nav-mobile-menu { top: 72px; }
      .nav-mobile-cta { top: 72px; padding: 8px 16px; gap: 8px; }
      .nav-mobile-cta .btn { padding: 9px 10px; font-size: 0.78rem; }
      .services-grid { grid-template-columns: 1fr; }
      .contact-form .form-row { grid-template-columns: 1fr; }
      .footer-grid { grid-template-columns: 1fr; }
      .orbit-graphic { width: 260px; height: 260px; }
      .orbit-item { width: 56px; height: 56px; margin: -28px; transform: rotate(var(--angle)) translateY(-110px) rotate(calc(-1 * var(--angle))); }
      .orbit-icon-wrap { width: 56px; height: 56px; }
      .orbit-icon-wrap img { width: 28px; height: 28px; }
      .orbit-center { width: 56px; height: 56px; font-size: 1.1rem; }
      .slide { min-height: 360px; padding: 60px 0; }
    }

/* ======= PAGE HERO (for inner pages) ======= */
.page-hero {
  background: linear-gradient(135deg, #e0d0ff 0%, #c9b0ff 40%, #ece5fe 100%);
  padding: 80px 0 60px;
  text-align: center;
}
.page-hero h1 {
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 900;
  margin-bottom: 16px;
}
.page-hero p {
  font-size: 1rem;
  color: var(--gray-text);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ======= CONTACT PAGE ======= */
.contact-section { padding: 80px 0; }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: start;
}
.contact-info h2 { font-size: 1.5rem; font-weight: 900; margin-bottom: 16px; }
.contact-info p { font-size: 0.9rem; color: var(--gray-text); line-height: 1.75; margin-bottom: 28px; }
.contact-details { display: flex; flex-direction: column; gap: 16px; }
.contact-detail { display: flex; align-items: center; gap: 14px; font-size: 0.9rem; color: var(--gray-text); }
.contact-detail-icon { width: 40px; height: 40px; background: var(--purple-light); border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 1rem; flex-shrink: 0; }
.contact-detail a { color: var(--purple); font-weight: 600; }
.contact-detail a:hover { text-decoration: underline; }
.contact-form-wrap h2 { font-size: 1.5rem; font-weight: 900; margin-bottom: 8px; }
.contact-form-wrap .form-sub { font-size: 0.88rem; color: var(--gray-text); margin-bottom: 28px; line-height: 1.6; }

@media (max-width: 900px) {
  .contact-grid { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .page-hero { padding: 60px 0 40px; }
}

/* ============================================================
   NAV DROPDOWN
   ============================================================ */
.nav-item { position: relative; }
.nav-item.has-dropdown { display: flex; align-items: center; }
.nav-dropdown-trigger {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 1rem;
  font-weight: 600;
  color: var(--black);
  cursor: pointer;
  transition: color 0.2s;
  background: none;
  border: none;
  font-family: inherit;
  padding: 0;
  text-decoration: none;
}
.nav-dropdown-trigger:hover { color: var(--purple); }
.nav-arrow {
  transition: transform 0.2s;
  flex-shrink: 0;
}
.nav-item.has-dropdown:hover .nav-arrow { transform: rotate(180deg); }

.nav-dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 16px);
  left: 50%;
  transform: translateX(-50%);
  background: var(--white);
  border: 1px solid var(--gray-border);
  border-radius: 12px;
  box-shadow: 0 12px 40px rgba(0,0,0,0.12);
  padding: 24px;
  z-index: 200;
  min-width: 380px;
}
/* Invisible bridge so hover doesn't close when moving cursor to dropdown */
.nav-dropdown::before {
  content: '';
  position: absolute;
  top: -16px;
  left: 0;
  right: 0;
  height: 16px;
}
.nav-item.has-dropdown:hover .nav-dropdown { display: block; }

.nav-dropdown-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.nav-dropdown-col { display: flex; flex-direction: column; gap: 2px; }
.nav-dropdown-label {
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--purple);
  margin-bottom: 8px;
  display: block;
}
.nav-dropdown-col a {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--black);
  padding: 7px 10px;
  border-radius: 6px;
  transition: all 0.18s;
}
.nav-dropdown-col a:hover {
  background: var(--purple-light);
  color: var(--purple);
}

/* ============================================================
   MOBILE SUB-MENU
   ============================================================ */
.mobile-nav-item { border-bottom: 1px solid var(--gray-bg); }
.mobile-nav-trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  background: none;
  border: none;
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--black);
  padding: 12px 0;
  cursor: pointer;
  text-align: left;
}
.mobile-nav-trigger.open .nav-arrow { transform: rotate(180deg); }
.mobile-nav-sub {
  display: none;
  flex-direction: column;
  padding: 4px 0 12px 12px;
  gap: 0;
}
.mobile-nav-sub.open { display: flex; }
.mobile-nav-sub a {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--gray-text);
  padding: 7px 0;
  transition: color 0.2s;
}
.mobile-nav-sub a:hover { color: var(--purple); }

@media (max-width: 900px) {
  .nav-item.has-dropdown .nav-dropdown { display: none !important; }
}

/* ============================================================
   ABOUT PAGE
   ============================================================ */
.about-mission { background: var(--white); }
.about-mission-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.about-mission-text .label {
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--purple);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 10px;
  display: block;
}
.about-mission-text h2 {
  font-size: clamp(1.3rem, 2.2vw, 1.7rem);
  font-weight: 900;
  line-height: 1.3;
  margin-bottom: 14px;
}
.about-mission-text p {
  font-size: 0.9rem;
  color: var(--gray-text);
  line-height: 1.75;
  margin-bottom: 14px;
}

.about-pillars { background: var(--gray-bg); }
.pillars-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.pillar-card {
  background: var(--white);
  border-radius: 12px;
  padding: 32px 22px;
  text-align: center;
  border-top: 4px solid var(--purple);
  box-shadow: 0 2px 12px rgba(0,0,0,0.05);
}
.pillar-icon {
  width: 56px;
  height: 56px;
  background: var(--purple-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
}
.pillar-icon svg {
  width: 26px;
  height: 26px;
  stroke: var(--purple);
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.pillar-card h3 { font-size: 0.95rem; font-weight: 700; margin-bottom: 10px; }
.pillar-card p { font-size: 0.82rem; color: var(--gray-text); line-height: 1.65; }

.about-stats { background: var(--purple); padding: 56px 0; }
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  text-align: center;
}
.stat-number {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1;
  margin-bottom: 8px;
}
.stat-label {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.4;
}

.about-cta { background: var(--dark); padding: 80px 0; text-align: center; }
.about-cta h2 {
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 900;
  color: var(--white);
  margin-bottom: 16px;
}
.about-cta p {
  font-size: 1rem;
  color: rgba(255,255,255,0.7);
  max-width: 560px;
  margin: 0 auto 32px;
  line-height: 1.7;
}

@media (max-width: 900px) {
  .about-mission-grid { grid-template-columns: 1fr; gap: 36px; }
  .pillars-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .pillars-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   SERVICE PAGES
   ============================================================ */
.page-hero-dark {
  background: var(--dark);
  padding: 80px 0 64px;
  text-align: center;
}
.page-hero-dark .hero-tag {
  display: inline-block;
  background: var(--purple);
  color: var(--white);
  font-size: 0.68rem;
  font-weight: 700;
  padding: 4px 14px;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 20px;
}
.page-hero-dark h1 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 900;
  color: var(--white);
  margin-bottom: 16px;
  line-height: 1.2;
}
.page-hero-dark p {
  font-size: 1rem;
  color: rgba(255,255,255,0.7);
  max-width: 600px;
  margin: 0 auto 28px;
  line-height: 1.7;
}
.page-hero-dark .hero-btns {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}
.page-hero-dark .breadcrumb {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.45);
  margin-bottom: 20px;
}
.page-hero-dark .breadcrumb a {
  color: rgba(255,255,255,0.55);
  transition: color 0.2s;
}
.page-hero-dark .breadcrumb a:hover { color: var(--white); }

/* Service overview: text + stat callout */
.service-overview { background: var(--white); }
.service-overview-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: center;
}
.service-overview-text h2 {
  font-size: clamp(1.3rem, 2.5vw, 1.8rem);
  font-weight: 900;
  margin-bottom: 16px;
}
.service-overview-text p {
  font-size: 0.9rem;
  color: var(--gray-text);
  line-height: 1.75;
  margin-bottom: 16px;
}
.service-overview-callout {
  background: var(--purple-light);
  border-radius: 16px;
  padding: 36px 28px;
  text-align: center;
}
.callout-num {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 900;
  color: var(--purple);
  line-height: 1;
  margin-bottom: 12px;
}
.service-overview-callout p {
  font-size: 0.88rem;
  color: var(--gray-text);
  line-height: 1.6;
  margin: 0;
}

/* Sub-service cards */
.service-sub { background: var(--white); }
.service-sub-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  margin-top: 48px;
}
.service-sub-grid--three { grid-template-columns: repeat(3, 1fr); }
.service-sub-card {
  background: var(--gray-bg);
  border-radius: 12px;
  padding: 32px 26px;
  border-left: 4px solid var(--purple);
}
.service-sub-card h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: 10px; }
.service-sub-card p { font-size: 0.88rem; color: var(--gray-text); line-height: 1.7; }
.service-sub-card ul {
  margin-top: 16px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  list-style: none;
  padding: 0;
}
.service-sub-card li {
  font-size: 0.85rem;
  color: var(--gray-text);
  padding-left: 20px;
  position: relative;
  line-height: 1.5;
}
.service-sub-card li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--purple);
  font-weight: 700;
  font-size: 0.75rem;
  top: 1px;
}

/* Benefits grid */
.service-benefits { background: var(--gray-bg); }
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 48px;
}
.benefit-card {
  background: var(--white);
  border-radius: 10px;
  padding: 28px 22px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  text-align: center;
}
.benefit-icon {
  width: 48px;
  height: 48px;
  background: var(--purple-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
}
.benefit-icon svg {
  width: 22px;
  height: 22px;
  stroke: var(--purple);
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.benefit-card h4 { font-size: 0.9rem; font-weight: 700; margin-bottom: 8px; }
.benefit-card p { font-size: 0.8rem; color: var(--gray-text); line-height: 1.6; }

/* Service CTA band */
.service-cta { background: var(--purple); padding: 80px 0; text-align: center; }
.service-cta h2 {
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 900;
  color: var(--white);
  margin-bottom: 14px;
}
.service-cta p {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.8);
  max-width: 540px;
  margin: 0 auto 28px;
  line-height: 1.7;
}

/* Services hub linked cards */
.services-hub { background: var(--white); }
.services-hub-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.service-card-link {
  display: block;
  text-decoration: none;
  color: inherit;
}
.service-card-link .service-card { height: 100%; }
.service-card-link-label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--purple);
  margin-top: 14px;
}

/* Related services footer */
.related-services { background: var(--gray-bg); padding: 56px 0; }
.related-services h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--gray-text);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 0.78rem;
}
.related-links {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.related-links a {
  background: var(--white);
  border: 1px solid var(--gray-border);
  border-radius: 6px;
  padding: 8px 16px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--black);
  transition: all 0.2s;
}
.related-links a:hover {
  border-color: var(--purple);
  color: var(--purple);
}

@media (max-width: 900px) {
  .services-hub-grid { grid-template-columns: repeat(2, 1fr); }
  .service-overview-grid { grid-template-columns: 1fr; gap: 36px; }
  .service-sub-grid { grid-template-columns: 1fr; }
  .service-sub-grid--three { grid-template-columns: 1fr; }
  .benefits-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .services-hub-grid { grid-template-columns: 1fr; }
  .benefits-grid { grid-template-columns: 1fr; }
  .page-hero-dark { padding: 60px 0 48px; }
}

/* ============================================================
   TOOLS PAGE
   ============================================================ */
.tools-page { background: var(--white); }
.tools-category { margin-bottom: 60px; }
.tools-category:last-child { margin-bottom: 0; }
.tools-category-label {
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--purple);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.tools-category-label::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--gray-border);
}
.tools-logo-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}
.tool-card {
  background: var(--white);
  border: 1px solid var(--gray-border);
  border-radius: 12px;
  padding: 24px 16px;
  text-align: center;
  transition: all 0.22s;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.tool-card:hover {
  border-color: var(--purple);
  box-shadow: 0 4px 20px rgba(101,40,247,0.1);
  transform: translateY(-2px);
}
.tool-card img {
  height: 36px;
  width: auto;
  object-fit: contain;
  filter: grayscale(50%);
  transition: filter 0.22s;
}
.tool-card:hover img { filter: grayscale(0%); }
.tool-card span {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--gray-text);
}

@media (max-width: 900px) {
  .tools-logo-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 600px) {
  .tools-logo-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ============================================================
   FAQ PAGE
   ============================================================ */
.faq-section { background: var(--white); }
.faq-category { margin-bottom: 52px; }
.faq-category:last-child { margin-bottom: 0; }
.faq-category-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--purple);
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--purple-light);
}
.faq-list { display: flex; flex-direction: column; }
.faq-item { border-bottom: 1px solid var(--gray-border); }
.faq-item:first-child { border-top: 1px solid var(--gray-border); }
.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
  cursor: pointer;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--black);
  gap: 16px;
  background: none;
  border: none;
  width: 100%;
  font-family: 'Poppins', sans-serif;
  text-align: left;
  transition: color 0.2s;
}
.faq-question:hover { color: var(--purple); }
.faq-question.open { color: var(--purple); }
.faq-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--purple-light);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.2s;
}
.faq-icon svg {
  width: 14px;
  height: 14px;
  stroke: var(--purple);
  fill: none;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform 0.25s;
}
.faq-question.open .faq-icon { background: var(--purple); }
.faq-question.open .faq-icon svg { stroke: var(--white); transform: rotate(45deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
}
.faq-answer.open {
  max-height: 500px;
  padding-bottom: 18px;
}
.faq-answer p {
  font-size: 0.88rem;
  color: var(--gray-text);
  line-height: 1.75;
}
