:root {
      --primary: #e91e63;
      --primary-dark: #e91e63;
      --primary-light: #f1efff;
      --text: #111827;
      --muted: #667085;
      --border: #e5e7eb;
      --background: #ffffff;
      --surface: #f8f9fc;
      --success: #22c55e;
      --shadow: 0 24px 70px rgba(17, 24, 39, 0.12);
      --section-space: 96px;
      --section-space-sm: 72px;
    }

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

    html {
      scroll-behavior: smooth;
    }

    body {
      font-family:
        Inter,
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        Arial,
        sans-serif;
      color: var(--text);
      background: var(--background);
      line-height: 1.6;
      text-rendering: optimizeLegibility;
    }

    img {
      display: block;
      max-width: 100%;
      height: auto;
    }

    a {
      color: inherit;
      text-decoration: none;
    }

    button,
    input {
      font: inherit;
    }

    :focus-visible {
      outline: 3px solid rgba(91, 77, 247, 0.35);
      outline-offset: 3px;
    }

    .container {
      width: min(1200px, calc(100% - 40px));
      margin-inline: auto;
    }
    
      footer.footer img {
      background: #fff !important;
      border-radius: 14px !important;
  }

    .skip-link {
      position: fixed;
      top: 12px;
      left: 12px;
      z-index: 1000;
      padding: 10px 14px;
      border-radius: 8px;
      background: var(--text);
      color: white;
      transform: translateY(-150%);
    }

    .skip-link:focus {
      transform: translateY(0);
    }

    /* Header */

    .header {
      position: sticky;
      top: 0;
      z-index: 100;
      background: rgba(255, 255, 255, 0.92);
      border-bottom: 1px solid var(--border);
      backdrop-filter: blur(12px);
    }

    .navbar {
      position: relative;
      min-height: 72px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 16px;
    }


    footer.footer img {
      background: #fff !important;
      border-radius: 14px !important;
  }
    .nav-toggle {
      display: none;
      width: 44px;
      height: 44px;
      flex: 0 0 44px;
      margin-left: auto;
      padding: 10px;
      border: 1px solid var(--border);
      border-radius: 12px;
      background: #fff;
      cursor: pointer;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 5px;
    }
    .nav-toggle span {
      display: block;
      width: 18px;
      height: 2px;
      border-radius: 999px;
      background: var(--text);
      transition: transform .2s ease, opacity .2s ease;
    }
    .nav-toggle[aria-expanded="true"] span:nth-child(1) {
      transform: translateY(7px) rotate(45deg);
    }
    .nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
    .nav-toggle[aria-expanded="true"] span:nth-child(3) {
      transform: translateY(-7px) rotate(-45deg);
    }

    .logo {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      font-size: 1.25rem;
      font-weight: 750;
    }

    .logo-icon {
      display: block;
      width: auto;
      height: 52px;
      object-fit: contain;
      object-position: left center;
    }

    .nav-links {
      display: flex;
      align-items: center;
      gap: 28px;
      color: var(--muted);
      font-size: 1.15rem;
    }

    .nav-links > a:hover,
    .nav-dropdown-toggle:hover,
    .nav-links > a.is-active,
    .nav-dropdown.is-active .nav-dropdown-toggle {
      color: var(--text);
    }

    .nav-dropdown {
      position: relative;
    }

    .nav-dropdown-toggle {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      padding: 0;
      border: 0;
      background: transparent;
      color: inherit;
      font: inherit;
      cursor: pointer;
    }

    .nav-dropdown-toggle .chevron {
      width: 0.85em;
      height: 0.85em;
      transition: transform 0.2s ease;
    }

    .nav-dropdown-menu {
      display: none;
    }

    @media (min-width: 1025px) {
      .nav-dropdown:hover .nav-dropdown-toggle .chevron,
      .nav-dropdown:focus-within .nav-dropdown-toggle .chevron {
        transform: rotate(180deg);
      }

      .nav-dropdown-menu {
        display: block;
        position: absolute;
        top: calc(100% + 12px);
        left: 50%;
        z-index: 120;
        min-width: 220px;
        padding: 8px;
        border: 1px solid var(--border);
        border-radius: 14px;
        background: #fff;
        box-shadow: 0 18px 40px rgba(17, 24, 39, 0.12);
        opacity: 0;
        visibility: hidden;
        transform: translate(-50%, 6px);
        transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s ease;
      }

      .nav-dropdown-menu::before {
        content: "";
        position: absolute;
        top: -12px;
        left: 0;
        right: 0;
        height: 12px;
      }

      .nav-dropdown:hover .nav-dropdown-menu,
      .nav-dropdown:focus-within .nav-dropdown-menu {
        opacity: 1;
        visibility: visible;
        transform: translate(-50%, 0);
      }
    }

    .nav-dropdown-menu a {
      display: block;
      padding: 10px 12px;
      border-radius: 10px;
      color: var(--text);
      font-weight: 600;
      white-space: nowrap;
    }

    .nav-dropdown-menu a:hover {
      background: var(--primary-light);
      color: var(--primary-dark);
    }

    .nav-button {
      padding: 10px 10px;
      border-radius: 10px;
      background: var(--primary);
      color: white;
      font-weight: 700;
    }

    .nav-button:hover {
      background: var(--primary-dark);
      transform: translateY(-1px);
      color: white !important;
    }

    /* Hero */

    .hero {
      position: relative;
      padding: var(--section-space) 0;
      overflow: hidden;
      color: #fff;
      isolation: isolate;
      background:
        radial-gradient(ellipse 70% 60% at 12% 35%, rgba(255, 120, 170, 0.55), transparent 55%),
        radial-gradient(ellipse 55% 50% at 48% 45%, rgba(233, 30, 99, 0.72), transparent 60%),
        radial-gradient(ellipse 50% 55% at 82% 60%, rgba(120, 20, 70, 0.55), transparent 55%),
        radial-gradient(ellipse 80% 40% at 50% 100%, rgba(20, 4, 14, 0.95), transparent 50%),
        linear-gradient(125deg, #2a0614 0%, #4a0d28 28%, #e91e63 52%, #1a0410 78%, #050208 100%);
    }

    .hero-bg {
      position: absolute;
      inset: 0;
      z-index: -1;
      pointer-events: none;
      overflow: hidden;
    }

    .hero-bg-image {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center;
      opacity: 0.55;
      transform: scale(1.04);
    }

    .hero-bg-dim {
      position: absolute;
      inset: 0;
      background:
        linear-gradient(180deg, rgba(10, 2, 8, 0.35) 0%, rgba(10, 2, 8, 0.15) 40%, rgba(10, 2, 8, 0.55) 100%),
        radial-gradient(ellipse 70% 60% at 50% 40%, rgba(233, 30, 99, 0.25), transparent 70%);
    }

    .hero-orb {
      position: absolute;
      border-radius: 50%;
      filter: blur(48px);
      opacity: 0.85;
      animation: hero-drift 14s ease-in-out infinite alternate;
    }

    .hero-orb-1 {
      width: min(52vw, 520px);
      height: min(52vw, 520px);
      top: -12%;
      left: -8%;
      background: radial-gradient(circle, rgba(255, 180, 210, 0.75) 0%, rgba(233, 30, 99, 0.35) 45%, transparent 70%);
    }

    .hero-orb-2 {
      width: min(48vw, 460px);
      height: min(48vw, 460px);
      top: 18%;
      right: -10%;
      background: radial-gradient(circle, rgba(233, 30, 99, 0.55) 0%, rgba(90, 10, 50, 0.4) 50%, transparent 72%);
      animation-delay: -4s;
      animation-duration: 18s;
    }

    .hero-orb-3 {
      width: min(40vw, 380px);
      height: min(40vw, 380px);
      bottom: -18%;
      left: 32%;
      background: radial-gradient(circle, rgba(190, 40, 110, 0.45) 0%, transparent 68%);
      animation-delay: -7s;
      animation-duration: 16s;
    }

    .hero-mesh {
      position: absolute;
      inset: -20%;
      background:
        radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.14) 0%, transparent 18%),
        radial-gradient(circle at 70% 20%, rgba(255, 140, 190, 0.18) 0%, transparent 22%),
        radial-gradient(circle at 55% 70%, rgba(233, 30, 99, 0.22) 0%, transparent 26%);
      filter: blur(28px);
      opacity: 0.9;
      animation: hero-mesh-shift 20s ease-in-out infinite alternate;
    }

    @keyframes hero-drift {
      0% { transform: translate(0, 0) scale(1); }
      100% { transform: translate(24px, -18px) scale(1.08); }
    }

    @keyframes hero-mesh-shift {
      0% { transform: translate(0, 0) rotate(0deg); }
      100% { transform: translate(-3%, 2%) rotate(2deg); }
    }

    .hero-grid {
      display: grid;
      grid-template-columns: 1fr;
      justify-items: center;
      text-align: center;
      gap: 0;
      position: relative;
      z-index: 1;
    }

    .hero-copy {
      max-width: 820px;
      width: 100%;
    }

    .eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      margin-bottom: 22px;
      padding: 7px 12px;
      border-radius: 999px;
      background: rgba(255, 255, 255, 0.14);
      color: #ffe4ef;
      border: 1px solid rgba(255, 255, 255, 0.22);
      font-size: 0.85rem;
      font-weight: 700;
      backdrop-filter: blur(10px);
    }

    .eyebrow-dot {
      width: 7px;
      height: 7px;
      border-radius: 50%;
      background: #ff8fb8;
      box-shadow: 0 0 10px rgba(255, 143, 184, 0.8);
    }

    h1,
    h2,
    h3 {
      text-wrap: balance;
    }

    h1 {
      max-width: 820px;
      font-size: clamp(2.7rem, 6vw, 4.9rem);
      line-height: 1.05;
      letter-spacing: -0.055em;
    }

    .hero h1 {
      margin-inline: auto;
      color: #fff;
      text-shadow: 0 0 40px rgba(255, 255, 255, 0.28), 0 8px 30px rgba(0, 0, 0, 0.35);
    }

    .accent-text {
      color: var(--primary);
    }

    .hero .accent-text {
      color: #ffb3ce;
    }

    .hero-description {
      max-width: 640px;
      margin: 24px auto 0;
      color: rgba(255, 245, 250, 0.88);
      font-size: 1.1rem;
    }

    .hero-actions {
      display: flex;
      align-items: center;
      justify-content: center;
      flex-wrap: wrap;
      gap: 14px;
      margin-top: 32px;
    }

    .button {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-height: 50px;
      padding: 0 22px;
      border: 0;
      border-radius: 12px;
      cursor: pointer;
      font-weight: 700;
      transition:
        transform 0.2s ease,
        background 0.2s ease,
        border-color 0.2s ease;
    }

    .button-primary {
      background: var(--primary);
      color: white;
    }

    .button-primary:hover {
      background: var(--primary-dark);
      transform: translateY(-1px);
    }

    .button-secondary {
      border: 1px solid var(--border);
      background: white;
      color: var(--text);
    }

    .button-secondary:hover {
      border-color: #c9cbd2;
      background: var(--surface);
    }

    .hero .button-primary {
      background: linear-gradient(135deg, #ff7aad 0%, #ffffff 100%);
      color: #1a0410;
      box-shadow: 0 12px 32px rgba(233, 30, 99, 0.35);
    }

    .hero .button-primary:hover {
      background: linear-gradient(135deg, #ff9ec4 0%, #ffffff 100%);
      transform: translateY(-1px);
    }

    .hero .button-secondary {
      border: 1px solid rgba(255, 255, 255, 0.35);
      background: rgba(255, 255, 255, 0.1);
      color: #fff;
      backdrop-filter: blur(8px);
    }

    .hero .button-secondary:hover {
      border-color: rgba(255, 255, 255, 0.55);
      background: rgba(255, 255, 255, 0.18);
    }

    .hero-note {
      margin-top: 20px;
      color: rgba(255, 235, 245, 0.78);
      font-size: 0.9rem;
      justify-content: center;
    }

    /* Shared sections */

    .section {
      padding: var(--section-space) 0;
    }

    .section-muted {
      background: var(--surface);
    }

    .section-heading {
      max-width: 720px;
      margin: 0 auto 52px;
      text-align: center;
    }

    .section-heading h2 {
      font-size: clamp(2rem, 4vw, 3.1rem);
      line-height: 1.15;
      letter-spacing: -0.035em;
    }

    .section-heading p {
      margin-top: 16px;
      color: var(--muted);
    }

    /* About */

    .about-section {
      position: relative;
      background:
        radial-gradient(ellipse 50% 40% at 90% 20%, rgba(233, 30, 99, 0.06), transparent 60%),
        radial-gradient(ellipse 40% 35% at 8% 80%, rgba(233, 30, 99, 0.04), transparent 55%),
        #ffffff;
      overflow: hidden;
    }

    .about-grid {
      display: grid;
      grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
      align-items: center;
      gap: clamp(32px, 5vw, 64px);
    }

    .about-kicker {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      margin-bottom: 18px;
      color: var(--primary);
      font-size: 0.82rem;
      font-weight: 800;
      letter-spacing: 0.08em;
      text-transform: uppercase;
    }

    .about-kicker::before {
      content: "";
      width: 28px;
      height: 2px;
      border-radius: 999px;
      background: var(--primary);
    }

    .about-lead {
      max-width: 540px;
      margin-bottom: 16px;
      color: var(--muted);
      font-size: 1.05rem;
      line-height: 1.75;
    }

    .about-copy h2 {
      max-width: 560px;
      margin-bottom: 28px;
      font-size: clamp(2.05rem, 4.2vw, 3rem);
      line-height: 1.12;
      letter-spacing: -0.04em;
      color: var(--text);
    }

    .about-mv {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 16px;
      margin-bottom: 32px;
    }

    .about-mv-card {
      padding: 22px 20px;
      border: 1px solid rgba(233, 30, 99, 0.12);
      border-radius: 18px;
      background: linear-gradient(180deg, #fff 0%, #fff7fa 100%);
      box-shadow: 0 10px 28px rgba(17, 24, 39, 0.04);
    }

    .about-mv-card h3 {
      display: flex;
      align-items: center;
      gap: 8px;
      margin-bottom: 10px;
      font-size: 1rem;
      color: var(--primary);
    }

    .about-mv-card h3::before {
      content: "";
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: var(--primary);
      box-shadow: 0 0 0 4px rgba(233, 30, 99, 0.15);
    }

    .about-mv-card p {
      color: var(--text-soft, #344054);
      font-size: 0.92rem;
      line-height: 1.65;
    }

    .button-dark {
      background: #111827;
      color: #fff;
      border-radius: 999px;
      padding-inline: 26px;
      box-shadow: 0 12px 28px rgba(17, 24, 39, 0.18);
    }

    .button-dark:hover {
      background: #1f2937;
      transform: translateY(-1px);
      color: #fff;
    }

    .about-visual {
      display: flex;
      justify-content: center;
      align-items: center;
    }

    .about-visual-frame {
      position: relative;
      width: min(100%, 640px);
    }

    .about-visual-frame::before {
      content: "";
      position: absolute;
      inset: 12% 8% 8%;
      z-index: 0;
      border-radius: 32px;
      background: linear-gradient(145deg, rgba(233, 30, 99, 0.14), rgba(233, 30, 99, 0.04));
      transform: rotate(2deg);
    }

    .about-illustration {
      position: relative;
      z-index: 1;
      width: 100%;
      height: auto;
      display: block;
      border-radius: 8px;
    }

    @media (max-width: 850px) {
      .about-mv {
        grid-template-columns: 1fr;
      }

      .about-visual-frame {
        max-width: 520px;
        margin-inline: auto;
      }
    }

    /* Services / Fields of expertise */

    .services-section {
      position: relative;
      padding: var(--section-space) 0;
      background: #f4f2ec;
      overflow: hidden;
    }

    .services-section .container {
      position: relative;
      z-index: 1;
    }

    .services-watermark {
      position: absolute;
      left: 0;
      right: 0;
      top: 36%;
      z-index: 0;
      margin: 0;
      width: 100%;
      color: rgba(17, 24, 39, 0.06);
      font-family:
        Inter,
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        Arial,
        sans-serif;
      font-size: clamp(4.5rem, 18vw, 14rem);
      font-weight: 800;
      line-height: 0.85;
      letter-spacing: -0.06em;
      text-align: center;
      white-space: nowrap;
      pointer-events: none;
      user-select: none;
      transform: translateY(-50%);
    }

    .services-heading {
      max-width: 720px;
      margin-bottom: 36px;
    }

    .services-heading::before {
      content: "";
      display: block;
      width: 42px;
      height: 2px;
      margin-bottom: 18px;
      background: #111827;
    }

    .services-heading h2 {
      font-family:
        Inter,
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        Arial,
        sans-serif;
      font-size: clamp(2.05rem, 4.2vw, 3rem);
      font-weight: 750;
      line-height: 1.12;
      letter-spacing: -0.04em;
      color: #111827;
      white-space: nowrap;
    }

    .services-heading p {
      max-width: 540px;
      margin-top: 14px;
      color: #6b7280;
      font-size: 1rem;
      line-height: 1.7;
    }

    @media (max-width: 700px) {
      .services-heading h2 {
        white-space: normal;
      }
    }

    .services-grid {
      position: relative;
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 0;
      min-height: 0;
      align-items: start;
    }

    .services-grid::before {
      content: "";
      position: absolute;
      inset: 0;
      background-image: repeating-linear-gradient(
        to right,
        transparent,
        transparent calc(25% - 1px),
        rgba(17, 24, 39, 0.14) calc(25% - 1px),
        rgba(17, 24, 39, 0.14) 25%
      );
      background-size: 100% 100%;
      -webkit-mask-image: repeating-linear-gradient(
        to bottom,
        #000 0 3px,
        transparent 3px 8px
      );
      mask-image: repeating-linear-gradient(
        to bottom,
        #000 0 3px,
        transparent 3px 8px
      );
      pointer-events: none;
    }

    .service-item {
      position: relative;
      z-index: 1;
      padding: 0 28px 24px 0;
      scroll-margin-top: 100px;
    }

    .service-item:last-child {
      padding-right: 0;
    }

    .service-item h3 {
      margin-bottom: 14px;
      font-family:
        Inter,
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        Arial,
        sans-serif;
      font-size: clamp(1.2rem, 2vw, 1.45rem);
      font-weight: 750;
      line-height: 1.25;
      letter-spacing: -0.03em;
    }

    .service-item p {
      max-width: 240px;
      margin-bottom: 14px;
      color: #6b7280;
      font-size: 0.92rem;
      line-height: 1.65;
    }

    .service-read-more {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      color: inherit;
      font-size: 0.88rem;
      font-weight: 700;
      text-decoration: none;
      transition: gap 0.2s ease, opacity 0.2s ease;
    }

    .service-read-more:hover {
      gap: 10px;
      opacity: 0.85;
    }

    .service-item:nth-child(1) {
      padding-top: 0;
    }

    .service-item:nth-child(1) h3,
    .service-item:nth-child(1) .service-read-more { color: #e91e63; }

    .service-item:nth-child(2) {
      padding-top: 56px;
    }

    .service-item:nth-child(2) h3,
    .service-item:nth-child(2) .service-read-more { color: #ea580c; }

    .service-item:nth-child(3) {
      padding-top: 24px;
    }

    .service-item:nth-child(3) h3,
    .service-item:nth-child(3) .service-read-more { color: #7c3aed; }

    .service-item:nth-child(4) {
      padding-top: 80px;
    }

    .service-item:nth-child(4) h3,
    .service-item:nth-child(4) .service-read-more { color: #0d9488; }

    @media (max-width: 980px) {
      .services-grid {
        grid-template-columns: 1fr 1fr;
        gap: 36px 28px;
        min-height: 0;
      }

      .services-grid::before {
        display: none;
      }

      .service-item,
      .service-item:nth-child(1),
      .service-item:nth-child(2),
      .service-item:nth-child(3),
      .service-item:nth-child(4) {
        padding: 0;
      }

      .service-item p {
        max-width: none;
      }

      .services-watermark {
        top: 38%;
        font-size: clamp(4rem, 22vw, 9rem);
      }
    }

    @media (max-width: 600px) {
      .services-section {
        padding: var(--section-space-sm) 0;
      }

      .services-grid {
        grid-template-columns: 1fr;
        gap: 34px;
      }

      .services-watermark {
        font-size: clamp(3.5rem, 28vw, 6rem);
        opacity: 0.85;
      }
    }

    /* Why Choose Us */

    .why-section {
      padding: calc(var(--section-space) - 40px) 0;
      background: #fff;
    }

    .why-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      align-items: center;
      gap: clamp(36px, 5vw, 72px);
    }

    .why-visual {
      position: relative;
      display: flex;
      justify-content: center;
      align-items: center;
      min-height: 0;
    }

    .why-visual-frame {
      position: relative;
      width: min(100%, 480px);
      aspect-ratio: 1;
    }

    .why-visual-lines {
      position: absolute;
      left: 6%;
      right: 10%;
      bottom: 14%;
      z-index: 2;
      display: grid;
      gap: 11px;
      pointer-events: none;
    }

    .why-visual-lines span {
      display: block;
      height: 2px;
      border-radius: 999px;
    }

    .why-visual-lines span:nth-child(1) {
      width: 70%;
      background: #111827;
    }

    .why-visual-lines span:nth-child(2) {
      width: 90%;
      margin-left: 6%;
      background: var(--primary);
    }

    .why-visual-lines span:nth-child(3) {
      width: 62%;
      margin-left: 16%;
      background: #111827;
    }

    .why-visual-lines span:nth-child(4) {
      width: 80%;
      margin-left: 4%;
      background: #ff7aad;
    }

    .why-copy h2 {
      
      margin-bottom: 18px;
      font-size: clamp(2.1rem, 4vw, 2.5rem);
      line-height: 1.15;
      letter-spacing: -0.04em;
      color: var(--text);
      font-weight: 750;
    }

    .why-copy > p {
      margin-bottom: 8px;
      color: var(--muted);
      font-size: 1.05rem;
      line-height: 1.7;
    }

    .why-features {
      list-style: none;
      max-width: 420px;
      margin-top: 20px;
      border-top: 1px solid #e5e7eb;
    }

    .why-features li {
      display: flex;
      align-items: center;
      gap: 16px;
      padding: 18px 0;
      border-bottom: 1px solid #e5e7eb;
      color: #111827;
      font-size: 1.05rem;
      font-weight: 650;
      letter-spacing: -0.01em;
    }

    .why-features .why-icon {
      width: 28px;
      height: 28px;
      flex: 0 0 28px;
      display: grid;
      place-items: center;
    }

    .why-features .why-icon svg {
      width: 22px;
      height: 22px;
      stroke: #111827;
      stroke-width: 1.7;
      stroke-linecap: round;
      stroke-linejoin: round;
      fill: none;
    }

    @media (max-width: 900px) {
      .why-grid {
        grid-template-columns: 1fr;
        gap: 40px;
      }

      .why-visual {
        order: -1;
      }

      .why-visual-frame {
        width: min(100%, 380px);
      }
    }

    /* Stats */

    .stats-section {
      padding: calc(var(--section-space) - 40px) 0;
      background: #0b1c24;
      color: #fff;
    }

    .stats-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 32px;
      align-items: center;
    }

    .stat-item {
      display: flex;
      align-items: flex-start;
      gap: 18px;
    }

    .stat-icon {
      width: 58px;
      height: 58px;
      flex: 0 0 58px;
      display: grid;
      place-items: center;
      border-radius: 16px 16px 22px 16px;
      background: rgba(233, 30, 99, 0.16);
      color: #ff5c95;
    }

    .stat-icon svg {
      width: 28px;
      height: 28px;
      fill: none;
      stroke: currentColor;
      stroke-width: 1.8;
      stroke-linecap: round;
      stroke-linejoin: round;
    }

    .stat-value {
      margin-bottom: 6px;
      font-size: clamp(2.4rem, 4.5vw, 3.4rem);
      font-weight: 800;
      letter-spacing: -0.045em;
      line-height: 1.05;
    }

    .stat-label {
      color: rgba(255, 255, 255, 0.72);
      font-size: 1.05rem;
      line-height: 1.45;
    }

    /* Our Process */

    .process-section {
      position: relative;
      padding: var(--section-space) 0;
      background: #f4f2ec;
      overflow: hidden;
    }

    .process-section .container {
      position: relative;
      z-index: 1;
    }

    .process-heading {
      max-width: 640px;
      margin: 0 auto 56px;
      text-align: center;
    }

    .process-heading h2 {
      font-size: clamp(2rem, 4vw, 3rem);
      line-height: 1.15;
      letter-spacing: -0.035em;
    }

    .process-heading p {
      margin-top: 14px;
      color: var(--muted);
      font-size: 1.05rem;
      line-height: 1.7;
    }

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

    .process-card {
      position: relative;
      padding: 32px 26px 28px;
      border: 1px solid rgba(17, 24, 39, 0.08);
      border-radius: 22px;
      background: #fff;
      box-shadow: 0 14px 36px rgba(17, 24, 39, 0.05);
      counter-increment: process-step;
      transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
    }

    .process-card:hover {
      transform: translateY(-4px);
      border-color: rgba(233, 30, 99, 0.28);
      box-shadow: 0 20px 44px rgba(233, 30, 99, 0.12);
    }

    .process-card::before {
      content: counter(process-step, decimal-leading-zero);
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-width: 42px;
      height: 42px;
      margin-bottom: 20px;
      padding: 0 10px;
      border-radius: 12px;
      background: rgba(233, 30, 99, 0.1);
      color: var(--primary);
      font-size: 0.92rem;
      font-weight: 800;
      letter-spacing: 0.04em;
    }

    .process-card h3 {
      margin-bottom: 10px;
      font-size: 1.2rem;
      letter-spacing: -0.02em;
    }

    .process-card p {
      color: var(--muted);
      font-size: 0.96rem;
      line-height: 1.65;
    }

    /* Final CTA */

    .cta-section {
      padding: var(--section-space) 0;
      background:
        radial-gradient(ellipse 60% 80% at 20% 30%, rgba(233, 30, 99, 0.35), transparent 55%),
        radial-gradient(ellipse 50% 60% at 85% 70%, rgba(120, 20, 70, 0.45), transparent 50%),
        linear-gradient(135deg, #1a0410 0%, #4a0d28 45%, #0a0208 100%);
      color: #fff;
      text-align: center;
    }

    .cta-box {
      max-width: 720px;
      margin-inline: auto;
    }

    .cta-box h2 {
      font-size: clamp(2rem, 4.5vw, 3.2rem);
      line-height: 1.15;
      letter-spacing: -0.04em;
      margin-top: -22px;
    }

    .cta-box > p {
      max-width: 560px;
      margin: 18px auto 28px;
      color: rgba(255, 245, 250, 0.86);
      font-size: 1.08rem;
      line-height: 1.7;
    }

    .cta-actions {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 12px;
    }

    .cta-section .button-primary {
      background: linear-gradient(135deg, #ff7aad 0%, #ffffff 100%);
      color: #1a0410;
      box-shadow: 0 12px 32px rgba(233, 30, 99, 0.35);
    }

    .cta-section .button-primary:hover {
      background: linear-gradient(135deg, #ff9ec4 0%, #ffffff 100%);
      color: #1a0410;
    }

    .cta-section .button-secondary {
      border: 1px solid rgba(255, 255, 255, 0.35);
      background: rgba(255, 255, 255, 0.1);
      color: #fff;
    }

    .cta-section .button-secondary:hover {
      background: rgba(255, 255, 255, 0.18);
      color: #fff;
    }

    @media (max-width: 980px) {
      .stats-grid,
      .process-grid {
        grid-template-columns: 1fr 1fr;
      }
    }

    @media (max-width: 600px) {
      .stats-grid,
      .process-grid {
        grid-template-columns: 1fr;
      }

      .stats-section {
        padding: calc(var(--section-space-sm) - 40px) 0;
      }

      .process-section,
      .blog-section,
      .cta-section {
        padding: var(--section-space-sm) 0;
      }

      .cta-actions {
        flex-direction: column;
        align-items: stretch;
      }

      .cta-actions .button {
        width: 100%;
      }
    }

    /* Global solutions section */

    .local-grid {
      display: grid;
      grid-template-columns: 0.9fr 1.1fr;
      align-items: center;
      gap: 64px;
    }

    .local-label {
      margin-bottom: 12px;
      color: var(--primary);
      font-size: 0.85rem;
      font-weight: 800;
      letter-spacing: 0.08em;
      text-transform: uppercase;
    }

    .local-copy h2 {
      font-size: clamp(2rem, 4vw, 3.1rem);
      line-height: 1.15;
      letter-spacing: -0.035em;
    }

    .local-copy p {
      margin-top: 18px;
      color: var(--muted);
    }

    .location-list {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 14px;
      list-style: none;
    }

    .location-list li {
      padding: 18px;
      border: 1px solid var(--border);
      border-radius: 14px;
      background: white;
      font-weight: 700;
    }


    /* Platforms and industries */

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

    .platform-card,
    .industry-card {
      padding: 24px;
      border: 1px solid var(--border);
      border-radius: 16px;
      background: white;
    }

    .platform-card h3,
    .industry-card h3 {
      margin-bottom: 8px;
      font-size: 1.02rem;
    }

    .platform-card p,
    .industry-card p {
      color: var(--muted);
      font-size: 0.92rem;
    }

    /* Blog */

    .blog-section {
      position: relative;
  
      background: #f4f2ec;
      overflow: hidden;
    }

    .blog-section .container {
      position: relative;
      z-index: 1;
    }

    .blog-heading {
      max-width: 640px;
      margin: 0 auto 56px;
      text-align: center;
    }

    .blog-heading h2 {
      font-size: clamp(2rem, 4vw, 3rem);
      line-height: 1.15;
      letter-spacing: -0.035em;
    }

    .blog-heading p {
      margin-top: 14px;
      color: var(--muted);
      font-size: 1.05rem;
      line-height: 1.7;
    }

    .home-blog-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 22px;
    }

    @media (max-width: 1024px) {
      .home-blog-grid {
        grid-template-columns: 1fr;
        max-width: 560px;
        margin: 0 auto;
      }
    }

    .home-blog-card {
      display: flex;
      flex-direction: column;
      padding: 28px 24px 26px;
      border: 1px solid rgba(17, 24, 39, 0.08);
      border-radius: 22px;
      background: #fff;
      box-shadow: 0 14px 36px rgba(17, 24, 39, 0.05);
      transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
    }

    .home-blog-card:hover {
      transform: translateY(-4px);
      border-color: rgba(233, 30, 99, 0.28);
      box-shadow: 0 20px 44px rgba(233, 30, 99, 0.12);
    }

    .home-blog-tag {
      display: inline-block;
      align-self: flex-start;
      margin-bottom: 12px;
      padding: 4px 10px;
      border-radius: 999px;
      background: rgba(233, 30, 99, 0.1);
      color: var(--primary);
      font-size: 0.75rem;
      font-weight: 750;
      letter-spacing: 0.03em;
      text-transform: uppercase;
    }

    .home-blog-meta {
      display: flex;
      flex-wrap: wrap;
      gap: 10px 16px;
      margin-bottom: 12px;
      color: var(--muted);
      font-size: 0.86rem;
      font-weight: 600;
    }

    .home-blog-card h3 {
      margin-bottom: 10px;
      font-size: 1.22rem;
      letter-spacing: -0.025em;
      line-height: 1.3;
    }

    .home-blog-card h3 a:hover {
      color: var(--primary);
    }

    .home-blog-card p {
      color: var(--muted);
      font-size: 0.95rem;
      line-height: 1.65;
      margin-bottom: 20px;
      flex: 1;
    }

    .home-blog-link {
      color: var(--primary);
      font-weight: 750;
      font-size: 0.95rem;
    }

    .home-blog-link:hover {
      color: var(--primary-dark);
    }

    .blog-actions {
      display: flex;
      justify-content: center;
      margin-top: 40px;
      margin-bottom: 53px;
    }

    /* FAQ */

    .faq-section .section-heading {
      margin-bottom: 40px;
    }

    .faq-list {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 16px;
      max-width: 1100px;
      margin: 0 auto;
      align-items: start;
    }

    .faq-item {
      border: 1px solid var(--border);
      border-radius: 16px;
      background: #fff;
      box-shadow: 0 8px 24px rgba(17, 24, 39, 0.04);
      overflow: hidden;
    }

    .faq-item summary {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 16px;
      padding: 20px 22px;
      cursor: pointer;
      font-weight: 750;
      list-style: none;
      line-height: 1.4;
    }

    .faq-item summary::-webkit-details-marker {
      display: none;
    }

    .faq-item summary::after {
      content: "+";
      flex: 0 0 30px;
      width: 30px;
      height: 30px;
      border-radius: 50%;
      display: grid;
      place-items: center;
      background: var(--primary-light);
      color: var(--primary);
      font-size: 1.2rem;
      line-height: 1;
    }

    .faq-item[open] summary::after {
      content: "?";
    }

    .faq-answer {
      padding: 0 22px 20px;
      color: var(--muted);
      font-size: 0.95rem;
      line-height: 1.65;
    }

    .faq-answer a {
      color: var(--primary);
      text-decoration: none;
    }

    .faq-answer a:hover {
      text-decoration: underline;
    }

    @media (max-width: 850px) {
      .faq-list {
        grid-template-columns: 1fr;
      }
    }

    /* Contact */

    .contact-section {
      padding: var(--section-space) 0;
    }

    .contact-box {
      padding: 60px;
      border-radius: 28px;
      background: var(--text);
      color: white;
      text-align: center;
    }

    .contact-box h2 {
      font-size: clamp(2rem, 4vw, 3rem);
      letter-spacing: -0.035em;
    }

    .contact-box p {
      max-width: 620px;
      margin: 16px auto 28px;
      color: #c7cbd4;
    }

    .contact-details {
      display: flex;
      justify-content: center;
      flex-wrap: wrap;
      gap: 14px 28px;
      margin-top: 22px;
      color: #d9dce3;
      font-size: 0.92rem;
    }

    .contact-details a:hover {
      color: white;
      text-decoration: underline;
    }
    
    .price{
        font-size:2rem;
        font-weight:800;
        color:#111827;
        margin:20px 0;
    }
    



    /* Footer */

    .footer {
      padding: 72px 0 28px;
      border-top: 1px solid var(--border);
      background: #0f1218;
      color: rgba(255, 255, 255, 0.72);
      font-size: 0.95rem;
      text-align: left;
    }

    .footer-grid {
      display: grid;
      grid-template-columns: 1.3fr 1fr 1fr 1.2fr;
      gap: 36px;
      margin-bottom: 48px;
    }

    .footer-brand .logo {
      margin-bottom: 16px;
      color: #fff;
    }

    .footer-brand p {
      max-width: 300px;
      line-height: 1.7;
      color: rgba(255, 255, 255, 0.65);
    }

    .footer-col h4 {
      margin-bottom: 18px;
      color: #fff;
      font-size: 1rem;
      font-weight: 750;
      letter-spacing: -0.02em;
    }

    .footer-col ul {
      list-style: none;
      display: grid;
      gap: 10px;
    }

    .footer-col a {
      color: rgba(255, 255, 255, 0.68);
      transition: color 0.2s ease;
    }

    .footer-col a:hover {
      color: #ff7aad;
    }

    .footer-contact p {
      margin-bottom: 10px;
      line-height: 1.6;
    }

    .footer-contact a {
      color: rgba(255, 255, 255, 0.68);
    }

    .footer-contact a:hover {
      color: #ff7aad;
    }

    .footer-social {
      display: flex;
      gap: 10px;
      margin-top: 18px;
    }

    .footer-social a {
      width: 40px;
      height: 40px;
      display: grid;
      place-items: center;
      border-radius: 12px;
      background: rgba(255, 255, 255, 0.06);
      color: #fff;
      transition: background 0.2s ease, transform 0.2s ease;
    }

    .footer-social a:hover {
      background: var(--primary);
      transform: translateY(-2px);
      color: #fff;
    }

    .footer-social svg {
      width: 18px;
      height: 18px;
      fill: currentColor;
    }

    .footer-bottom {
      padding-top: 22px;
      border-top: 1px solid rgba(255, 255, 255, 0.08);
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between;
      gap: 12px;
      color: rgba(255, 255, 255, 0.5);
      font-size: 0.88rem;
    }

    .footer-bottom a {
      margin-right: 14px;
      color: rgba(255, 255, 255, 0.55);
    }

    .footer-bottom a:hover {
      color: #ff7aad;
    }

    @media (max-width: 980px) {
      .footer-grid {
        grid-template-columns: 1fr 1fr;
      }
    }

    @media (max-width: 600px) {
      .footer-grid {
        grid-template-columns: 1fr;
        gap: 28px;
      }
    }

    /* Responsive */

    @media (max-width: 1024px) {
      .nav-toggle { display: flex; }
      .nav-links {
        display: none;
        position: absolute;
        top: calc(100% + 1px);
        left: 0;
        right: 0;
        z-index: 130;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding: 8px 20px 20px;
        background: #fff;
        border-bottom: 1px solid var(--border);
        box-shadow: 0 18px 40px rgba(17, 24, 39, 0.1);
        color: var(--text);
        font-size: 1.12rem;
      }
      .nav-links.is-open { display: flex; }
      .nav-links > a:not(.nav-button),
      .nav-dropdown {
        display: block;
        width: 100%;
      }
      .nav-links > a:not(.nav-button),
      .nav-dropdown-toggle {
        width: 100%;
        justify-content: space-between;
        padding: 14px 0;
        border-bottom: 1px solid var(--border);
      }
      .nav-links > a:not(.nav-button)::after,
      .nav-dropdown-toggle::after { display: none; }
      .nav-links.is-open {
        overflow-x: hidden;
      }
      .nav-dropdown-menu,
      .nav-dropdown:hover .nav-dropdown-menu,
      .nav-dropdown:focus-within .nav-dropdown-menu {
        display: none;
        position: static;
        left: auto;
        top: auto;
        min-width: 0;
        width: 100%;
        max-width: 100%;
        padding: 0 0 10px 8px;
        margin: 0;
        border: 0;
        border-radius: 0;
        background: transparent;
        box-shadow: none;
        opacity: 1;
        visibility: visible;
        transform: none;
      }
      .nav-dropdown.is-open .nav-dropdown-menu {
        display: block;
      }
      .nav-dropdown.is-open .nav-dropdown-toggle .chevron {
        transform: rotate(180deg);
      }
      .nav-dropdown-menu a {
        padding: 10px 8px;
        white-space: normal;
      }
      .nav-button {
        margin-top: 14px;
        justify-content: center;
        width: 100%;
      }

      .services-grid {
        grid-template-columns: 1fr 1fr;
      }
      .services-grid::before {
        background-image: repeating-linear-gradient(
          to right,
          transparent,
          transparent calc(50% - 1px),
          rgba(17, 24, 39, 0.14) calc(50% - 1px),
          rgba(17, 24, 39, 0.14) 50%
        );
      }

      .stats-grid,
      .process-grid,
      .faq-list {
        grid-template-columns: 1fr 1fr;
      }

      .why-grid,
      .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
      }

      .hero {
        padding: var(--section-space-sm) 0;
      }
    }

    @media (max-width: 850px) {
      .hero-grid,
      .local-grid,
      .about-grid {
        grid-template-columns: 1fr;
        gap: 55px;
      }

      .platform-grid,
      .industry-grid {
        grid-template-columns: 1fr 1fr;
      }

      .faq-list {
        grid-template-columns: 1fr;
      }
    }

    @media (max-width: 600px) {
      .container {
        width: min(100% - 28px, 1200px);
      }

      .logo-text { font-size: 1.05rem; }
      .logo-icon { height: 42px; }

      .services-grid,
      .stats-grid,
      .process-grid,
      .platform-grid,
      .industry-grid {
        grid-template-columns: 1fr;
      }

      .services-grid::before { display: none; }

      .hero-actions {
        align-items: stretch;
        flex-direction: column;
      }

      .button {
        width: 100%;
      }

      .platform-grid,
      .industry-grid,
      .location-list {
        grid-template-columns: 1fr;
      }

      .contact-box {
        padding: 42px 24px;
      }
      
    .price{
        font-size:1.5rem;
    }

      .footer-inner {
        align-items: center;
        flex-direction: column;
      }

      .footer-links {
        flex-wrap: wrap;
      }
    }

    @media (prefers-reduced-motion: reduce) {
      html {
        scroll-behavior: auto;
      }

      *,
      *::before,
      *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
      }
    }
  

    /* Refined visual system ? keeps the original pink brand colour */
    :root {
      --primary-dark: #c2185b;
      --primary-light: #fce7f0;
      --primary-soft: #fff4f8;
      --text-soft: #344054;
      --border-strong: #d9dce3;
      --shadow-soft: 0 12px 34px rgba(17, 24, 39, 0.08);
      --shadow-card: 0 18px 45px rgba(233, 30, 99, 0.10);
    }

    body {
      background:
        radial-gradient(circle at 8% 4%, rgba(233, 30, 99, 0.07), transparent 24rem),
        var(--background);
    }

    .icon {
      width: 1.1em;
      height: 1.1em;
      display: inline-block;
      flex: 0 0 auto;
      stroke: currentColor;
      stroke-width: 1.9;
      stroke-linecap: round;
      stroke-linejoin: round;
      fill: none;
      vertical-align: -0.16em;
    }

    .header {
      box-shadow: 0 8px 30px rgba(17, 24, 39, 0.04);
    }

    .navbar { min-height: 78px; }

    .logo-icon {
      display: block;
      width: auto;
      height: 52px;
      object-fit: contain;
      object-position: left center;
    }

    .nav-links > a:not(.nav-button),
    .nav-dropdown-toggle {
      position: relative;
      padding: 10px 0;
      font-weight: 650;
    }

    .nav-links > a:not(.nav-button)::after,
    .nav-dropdown-toggle::after {
      content: "";
      position: absolute;
      left: 0;
      right: 100%;
      bottom: 5px;
      height: 2px;
      border-radius: 999px;
      background: var(--primary);
      transition: right .2s ease;
    }

    .nav-links > a:not(.nav-button):hover::after,
    .nav-dropdown:hover .nav-dropdown-toggle::after,
    .nav-dropdown:focus-within .nav-dropdown-toggle::after,
    .nav-links > a.is-active:not(.nav-button)::after,
    .nav-dropdown.is-active .nav-dropdown-toggle::after {
      right: 0;
    }

    .nav-dropdown-menu {
      border-color: rgba(233, 30, 99, 0.12);
      box-shadow: 0 18px 45px rgba(17, 24, 39, 0.12), 0 8px 20px rgba(233, 30, 99, 0.08);
    }

    .nav-button,
    .button-primary {
      box-shadow: 0 10px 24px rgba(233, 30, 99, 0.24);
    }

    .hero {
      position: relative;
      padding: var(--section-space) 0;
    }

    .eyebrow {
      box-shadow: 0 6px 20px rgba(233, 30, 99, 0.18);
    }

    h1 { max-width: 820px; }

    .hero-description {
      color: rgba(255, 245, 250, 0.88);
      font-size: 1.13rem;
      line-height: 1.8;
    }

    .button {
      gap: 9px;
      min-height: 52px;
      border-radius: 14px;
    }

    .button-secondary {
      box-shadow: 0 8px 24px rgba(17, 24, 39, 0.06);
    }

    .hero-note {
      display: flex;
      flex-wrap: wrap;
      gap: 8px 16px;
      line-height: 1.5;
    }

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

    .hero-note .icon { color: #ff9ec4; }

    .about-section {
      background:
        radial-gradient(ellipse 50% 40% at 90% 20%, rgba(233, 30, 99, 0.07), transparent 60%),
        radial-gradient(ellipse 40% 35% at 8% 80%, rgba(233, 30, 99, 0.045), transparent 55%),
        #ffffff;
      overflow: hidden;
    }

    .about-grid {
      gap: clamp(48px, 6vw, 88px);
    }

    .about-lead {
      color: var(--text-soft);
      font-size: 1.06rem;
      line-height: 1.75;
    }

    .about-mv-card {
      transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
    }

    .about-mv-card:hover {
      transform: translateY(-3px);
      border-color: rgba(233, 30, 99, 0.28);
      box-shadow: 0 16px 36px rgba(233, 30, 99, 0.1);
    }

    .about-visual-frame {
      animation: about-float 7s ease-in-out infinite alternate;
    }

    @keyframes about-float {
      0% { transform: translateY(0); }
      100% { transform: translateY(-10px); }
    }

    .section { padding: var(--section-space) 0; }

    .section.faq-section {
        padding-top: 50px;
        padding-bottom: 63px;
    }

    .section-muted {
      background:
        linear-gradient(180deg, rgba(233,30,99,.025), transparent 18rem),
        var(--surface);
    }

    .section-heading { margin-bottom: 58px; }
    .section-heading p { font-size: 1.03rem; line-height: 1.75; }

    .platform-card,
    .industry-card {
      position: relative;
      overflow: hidden;
      border-color: rgba(17, 24, 39, 0.09);
      box-shadow: 0 8px 24px rgba(17, 24, 39, 0.035);
      transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
    }

    .platform-card::after,
    .industry-card::after {
      content: "";
      position: absolute;
      width: 80px;
      height: 80px;
      right: -36px;
      bottom: -42px;
      border-radius: 50%;
      background: rgba(233, 30, 99, 0.06);
      transition: transform .22s ease;
    }

    .platform-card:hover,
    .industry-card:hover {
      transform: translateY(-5px);
      border-color: rgba(233, 30, 99, 0.24);
      box-shadow: var(--shadow-card);
    }

    .platform-card:hover::after,
    .industry-card:hover::after { transform: scale(1.25); }

    .card-icon {
      width: 50px;
      height: 50px;
      margin-bottom: 20px;
      border: 1px solid rgba(233,30,99,.12);
      border-radius: 15px;
      display: grid;
      place-items: center;
      background: var(--primary-light);
      color: var(--primary);
      box-shadow: 0 8px 20px rgba(233, 30, 99, 0.09);
    }

    .card-icon .icon { width: 23px; height: 23px; }

    .platform-card,
    .industry-card { padding: 27px; }

    .platform-card h3,
    .industry-card h3 { font-size: 1.06rem; }

    .why-comparison {
      margin-top: 0;
      padding: 42px;
      border: 1px solid rgba(233, 30, 99, 0.14);
      border-radius: 24px;
      background:
        linear-gradient(
          135deg,
          rgba(233, 30, 99, 0.045),
          rgba(255, 255, 255, 0.98)
        );
      box-shadow: 0 18px 45px rgba(17, 24, 39, 0.08);
    }
    
    .why-comparison-heading {
      max-width: 680px;
      margin: 0 auto 32px;
      text-align: center;
    }
    
    .why-comparison-heading h3 {
      margin: 0;
      color: #111827;
      font-size: clamp(1.55rem, 3vw, 2.15rem);
      line-height: 1.2;
      letter-spacing: -0.025em;
    }
    
    .why-comparison-heading p {
      margin: 12px 0 0;
      color: #667085;
      font-size: 1rem;
      line-height: 1.7;
    }
    
    .comparison-table-wrapper {
      overflow-x: auto;
      border: 1px solid #e5e7eb;
      border-radius: 18px;
      background: #ffffff;
      box-shadow: 0 8px 24px rgba(17, 24, 39, 0.04);
      -webkit-overflow-scrolling: touch;
    }
    
    .comparison-table-wrapper:focus-visible {
      outline: 3px solid rgba(233, 30, 99, 0.22);
      outline-offset: 4px;
    }
    
    .comparison-table {
      width: 100%;
      min-width: 680px;
      border-collapse: collapse;
      text-align: left;
    }
    
    .comparison-table th,
    .comparison-table td {
      padding: 18px 22px;
      border-bottom: 1px solid #e5e7eb;
      vertical-align: middle;
    }
    
    .comparison-table thead th {
      background: #f8f9fc;
      color: #111827;
      font-size: 0.92rem;
      font-weight: 800;
      letter-spacing: 0.01em;
    }
    
    .comparison-table thead th:nth-child(2) {
      background: #fff4f8;
      color: #c2185b;
    }
    
    .comparison-table tbody tr:last-child th,
    .comparison-table tbody tr:last-child td {
      border-bottom: 0;
    }
    
    .comparison-table tbody tr {
      transition: background 0.2s ease;
    }
    
    .comparison-table tbody tr:hover {
      background: #fffafd;
    }
    
    .comparison-table td {
      color: #475467;
      font-size: 0.94rem;
      line-height: 1.5;
    }
    
    .comparison-table tbody th {
      width: 24%;
      color: #111827;
      font-size: 0.94rem;
      font-weight: 750;
      line-height: 1.5;
      text-align: left;
    }
    
    .comparison-table td:nth-child(2) {
      background: rgba(233, 30, 99, 0.018);
    }
    
    .check-item,
    .cross-item {
      display: inline-flex;
      align-items: center;
      gap: 10px;
    }
    
    .check-icon,
    .cross-icon {
      width: 24px;
      height: 24px;
      flex: 0 0 24px;
      display: inline-grid;
      place-items: center;
      border-radius: 50%;
      font-size: 0.8rem;
      font-weight: 900;
      line-height: 1;
    }
    
    .check-icon {
      background: #dcfce7;
      color: #15803d;
    }
    
    .cross-icon {
      background: #fee2e2;
      color: #b91c1c;
    }
    
    @media (max-width: 850px) {
      .why-comparison {
        padding: 34px 24px;
      }
    }
    
    @media (max-width: 600px) {
      .why-comparison {
        margin-top: 40px;
        padding: 28px 14px;
        border-radius: 20px;
      }
    
      .why-comparison-heading {
        margin-bottom: 24px;
        padding-inline: 8px;
      }
    
      .why-comparison-heading p {
        font-size: 0.94rem;
      }
    
      .comparison-table-wrapper {
        border-radius: 14px;
      }
    
      .comparison-table th,
      .comparison-table td {
        padding: 15px;
      }
    }    

    .contact-box {
      position: relative;
      overflow: hidden;
      padding: 70px 54px;
      background:
        radial-gradient(circle at 85% 15%, rgba(233,30,99,.27), transparent 18rem),
        linear-gradient(135deg, #111827, #242938);
      box-shadow: 0 28px 70px rgba(17, 24, 39, 0.20);
    }

    .contact-box::before {
      content: "";
      position: absolute;
      width: 180px;
      height: 180px;
      left: -80px;
      bottom: -100px;
      border: 32px solid rgba(255,255,255,.04);
      border-radius: 50%;
    }

    .price {
      display: inline-flex;
      align-items: baseline;
      gap: 8px;
      padding: 12px 18px;
      border: 1px solid rgba(255,255,255,.12);
      border-radius: 999px;
      background: rgba(255,255,255,.07);
      color: white;
    }

    .price span { color: #ff5c95; }
    .price small { color: #d5d8df; }

    @media (max-width: 600px) {
      .hero,
      .section,
      .about-section,
      .services-section,
      .process-section,
      .blog-section,
      .cta-section,
      .contact-section {
        padding: var(--section-space-sm) 0;
      }

      .why-section {
        padding: calc(var(--section-space-sm) - 40px) 0;
      }

      .stats-section {
        padding: calc(var(--section-space-sm) - 40px) 0;
      }

      .section.faq-section {
        padding-top: var(--section-space-sm);
        padding-bottom: var(--section-space-sm);
      }
      .contact-box { padding: 48px 24px; }
      .price { flex-wrap: wrap; justify-content: center; border-radius: 20px; }
    }

    @media (prefers-reduced-motion: reduce) {
      .hero-orb,
      .hero-mesh,
      .about-visual-frame {
        animation: none !important;
      }
    }
