:root {
      --pink: #C82D8C;
      --deep-purple: #4A0D7A;
      --dark-purple: #24105F;
      --white: #FFFFFF;
      --lavender: #F7F1FA;
      --charcoal: #111111;
      --muted: #6F6677;
      --border: rgba(74, 13, 122, 0.12);
      --gradient: linear-gradient(135deg, #C82D8C 0%, #4A0D7A 100%);
      --shadow: 0 22px 60px rgba(74, 13, 122, 0.14);
      --shadow-strong: 0 28px 90px rgba(36, 16, 95, 0.22);
      --radius: 28px;
      --radius-sm: 18px;
      --container: 1180px;
    }

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

    html {
      scroll-behavior: smooth;
      scroll-padding-top: 96px;
    }

    body {
      font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
      color: var(--charcoal);
      background: var(--white);
      line-height: 1.65;
      overflow-x: hidden;
    }

    body.menu-open {
      overflow: hidden;
    }

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

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

    button,
    input,
    select,
    textarea {
      font: inherit;
    }

    button {
      cursor: pointer;
    }

    ::selection {
      background: rgba(200, 45, 140, 0.2);
      color: var(--deep-purple);
    }

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

    .section {
      padding: 110px 0;
      position: relative;
    }

    .section-sm {
      padding: 72px 0;
    }

    .section-lavender {
      background: var(--lavender);
    }

    .section-dark {
      background:
        radial-gradient(circle at 15% 20%, rgba(200,45,140,.2), transparent 28%),
        radial-gradient(circle at 85% 10%, rgba(103,57,186,.28), transparent 30%),
        var(--dark-purple);
      color: var(--white);
    }

    .eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 9px;
      padding: 8px 14px;
      border-radius: 999px;
      font-size: 0.8rem;
      font-weight: 800;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--deep-purple);
      background: rgba(200, 45, 140, 0.08);
      border: 1px solid rgba(200, 45, 140, 0.18);
      margin-bottom: 20px;
    }

    .section-dark .eyebrow {
      color: #FFDDF2;
      background: rgba(255,255,255,.11);
      border-color: rgba(255,255,255,.14);
    }

    .eyebrow::before {
      content: "";
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: var(--pink);
      box-shadow: 0 0 0 6px rgba(200,45,140,.12);
    }

    .section-title {
      font-size: clamp(2.2rem, 5vw, 4.35rem);
      line-height: 1.05;
      letter-spacing: -0.055em;
      color: var(--deep-purple);
      max-width: 850px;
    }

    .section-dark .section-title {
      color: var(--white);
    }

    .section-copy {
      margin-top: 20px;
      color: var(--muted);
      font-size: 1.08rem;
      max-width: 720px;
    }

    .section-dark .section-copy {
      color: rgba(255,255,255,.74);
    }

    .gradient-text {
      background: var(--gradient);
      -webkit-background-clip: text;
      background-clip: text;
      color: transparent;
    }

    .btn {
      border: 0;
      min-height: 52px;
      padding: 0 22px;
      border-radius: 999px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      font-weight: 800;
      transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
      position: relative;
      overflow: hidden;
    }

    .btn::after {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(110deg, transparent 20%, rgba(255,255,255,.36), transparent 80%);
      transform: translateX(-140%);
      transition: transform .65s ease;
    }

    .btn:hover::after {
      transform: translateX(140%);
    }

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

    .btn-primary {
      background: var(--gradient);
      color: var(--white);
      box-shadow: 0 14px 36px rgba(200,45,140,.3);
    }

    .btn-primary:hover {
      box-shadow: 0 18px 44px rgba(200,45,140,.4);
    }

    .btn-secondary {
      background: var(--white);
      color: var(--deep-purple);
      border: 1px solid var(--border);
      box-shadow: 0 12px 32px rgba(74,13,122,.08);
    }

    .btn-ghost {
      color: var(--white);
      border: 1px solid rgba(255,255,255,.22);
      background: rgba(255,255,255,.11);
      backdrop-filter: blur(14px);
    }

    .icon-arrow {
      width: 18px;
      height: 18px;
      fill: none;
      stroke: currentColor;
      stroke-width: 2;
    }

    /* Header */
    .site-header {
      position: fixed;
      inset: 0 0 auto 0;
      z-index: 1000;
      padding: 14px 0;
      transition: background .3s ease, box-shadow .3s ease, padding .3s ease;
    }

    .site-header.scrolled {
      padding: 8px 0;
      background: rgba(255,255,255,.88);
      backdrop-filter: blur(18px);
      box-shadow: 0 10px 30px rgba(36,16,95,.08);
      border-bottom: 1px solid rgba(74,13,122,.08);
    }

    .nav {
      min-height: 68px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 22px;
    }

    .brand {
      display: flex;
      align-items: center;
      width: 230px;
      height: 64px;
      padding: 7px 12px;
      border-radius: 16px;
      background: rgba(255,255,255,.96);
      box-shadow: 0 10px 30px rgba(74,13,122,.08);
      overflow: hidden;
    }

    .brand img {
      width: 100%;
      height: 100%;
      object-fit: contain;
    }

    .nav-links {
      display: flex;
      align-items: center;
      gap: 4px;
    }

    .nav-links a {
      padding: 10px 12px;
      border-radius: 999px;
      font-size: .92rem;
      font-weight: 700;
      color: #483F50;
      transition: .2s ease;
      white-space: nowrap;
    }

    .nav-links a:hover,
    .nav-links a.active {
      color: var(--deep-purple);
      background: rgba(200,45,140,.08);
    }

    .nav-actions {
      display: flex;
      align-items: center;
      gap: 10px;
    }

    .nav-actions .btn {
      min-height: 46px;
      padding-inline: 18px;
      font-size: .92rem;
    }

    .menu-toggle {
      width: 46px;
      height: 46px;
      display: none;
      border: 0;
      border-radius: 14px;
      background: var(--lavender);
      align-items: center;
      justify-content: center;
      color: var(--deep-purple);
    }

    .menu-toggle svg {
      width: 23px;
      height: 23px;
    }

    /* Hero */
    .hero {
      min-height: 100svh;
      display: flex;
      align-items: center;
      padding: 145px 0 90px;
      background:
        radial-gradient(circle at 8% 15%, rgba(200,45,140,.12), transparent 30%),
        radial-gradient(circle at 90% 25%, rgba(74,13,122,.13), transparent 34%),
        linear-gradient(180deg, #fff 0%, #fbf8fc 100%);
      position: relative;
      overflow: hidden;
    }

    .hero::before {
      content: "";
      position: absolute;
      inset: 0;
      opacity: .35;
      background-image:
        linear-gradient(rgba(74,13,122,.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(74,13,122,.035) 1px, transparent 1px);
      background-size: 44px 44px;
      mask-image: linear-gradient(to bottom, black, transparent 85%);
    }

    .hero-grid {
      display: grid;
      grid-template-columns: 1.08fr .92fr;
      gap: 60px;
      align-items: center;
      position: relative;
      z-index: 2;
    }

    .hero h1 {
      font-size: clamp(3.15rem, 7vw, 6.6rem);
      line-height: .92;
      letter-spacing: -0.07em;
      color: var(--deep-purple);
      margin-bottom: 28px;
      max-width: 820px;
    }

    .hero p {
      color: var(--muted);
      font-size: clamp(1.02rem, 1.7vw, 1.22rem);
      max-width: 690px;
    }

    .hero-actions {
      margin-top: 34px;
      display: flex;
      flex-wrap: wrap;
      gap: 14px;
    }

    .hero-proof {
      margin-top: 42px;
      padding-top: 28px;
      border-top: 1px solid rgba(74,13,122,.1);
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
      max-width: 630px;
    }

    .proof-number {
      font-size: 1.65rem;
      font-weight: 900;
      color: var(--deep-purple);
      line-height: 1;
    }

    .proof-label {
      color: var(--muted);
      font-size: .88rem;
      margin-top: 6px;
    }

    .hero-visual {
      position: relative;
      min-height: 590px;
      perspective: 1200px;
    }

    .visual-stage {
      position: absolute;
      inset: 4% 0 0;
      border-radius: 44px;
      background:
        radial-gradient(circle at 75% 22%, rgba(255,255,255,.25), transparent 22%),
        linear-gradient(145deg, #4A0D7A 0%, #2A0F67 42%, #1C0A4A 100%);
      box-shadow: var(--shadow-strong);
      overflow: hidden;
      transform-style: preserve-3d;
      animation: floatStage 7s ease-in-out infinite;
    }

    .visual-stage::before {
      content: "";
      position: absolute;
      width: 320px;
      height: 320px;
      border-radius: 50%;
      background: radial-gradient(circle at 35% 30%, #fff, #ff80cf 16%, #c82d8c 40%, #3d0d85 72%);
      top: 65px;
      right: 55px;
      box-shadow: inset -34px -44px 72px rgba(18, 4, 62,.45), 0 25px 80px rgba(200,45,140,.38);
      animation: orbFloat 6s ease-in-out infinite;
    }

    .visual-stage::after {
      content: "";
      position: absolute;
      width: 260px;
      height: 74px;
      border: 16px solid rgba(255,255,255,.22);
      border-radius: 50%;
      top: 205px;
      right: 90px;
      transform: rotate(-18deg);
      filter: drop-shadow(0 18px 18px rgba(0,0,0,.25));
    }

    .dash-card {
      position: absolute;
      width: 72%;
      left: 8%;
      bottom: 9%;
      padding: 24px;
      border-radius: 26px;
      color: white;
      background: rgba(255,255,255,.11);
      border: 1px solid rgba(255,255,255,.2);
      backdrop-filter: blur(20px);
      box-shadow: 0 20px 50px rgba(0,0,0,.25);
      transform: rotateX(8deg) rotateY(-10deg) translateZ(40px);
    }

    .dash-top {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 16px;
      margin-bottom: 18px;
    }

    .dash-title {
      font-size: .85rem;
      color: rgba(255,255,255,.68);
    }

    .dash-number {
      font-size: 2.1rem;
      font-weight: 900;
      letter-spacing: -.04em;
    }

    .chart {
      height: 120px;
      position: relative;
      margin-top: 14px;
      overflow: hidden;
    }

    .chart svg {
      width: 100%;
      height: 100%;
      overflow: visible;
    }

    .metric-chip {
      position: absolute;
      padding: 12px 15px;
      border-radius: 16px;
      color: white;
      background: rgba(255,255,255,.13);
      border: 1px solid rgba(255,255,255,.18);
      backdrop-filter: blur(16px);
      box-shadow: 0 18px 34px rgba(0,0,0,.18);
      animation: chipFloat 5s ease-in-out infinite;
    }

    .metric-chip strong {
      display: block;
      font-size: 1.15rem;
    }

    .metric-chip span {
      font-size: .73rem;
      color: rgba(255,255,255,.66);
    }

    .chip-one {
      left: -20px;
      top: 22%;
    }

    .chip-two {
      right: -18px;
      bottom: 20%;
      animation-delay: -2s;
    }

    .float-shape {
      position: absolute;
      border-radius: 24px;
      background: var(--gradient);
      filter: blur(.2px);
      box-shadow: 0 20px 45px rgba(200,45,140,.3);
    }

    .shape-one {
      width: 84px;
      height: 84px;
      top: 6%;
      left: 5%;
      transform: rotate(18deg);
      animation: shapeSpin 9s linear infinite;
    }

    .shape-two {
      width: 52px;
      height: 52px;
      right: 5%;
      top: 6%;
      border-radius: 50%;
      background: #fff;
      box-shadow: 0 18px 34px rgba(255,255,255,.22);
      animation: chipFloat 4s ease-in-out infinite;
    }

    @keyframes floatStage {
      0%,100% { transform: translateY(0) rotateX(0deg) rotateY(0deg); }
      50% { transform: translateY(-12px) rotateX(1deg) rotateY(-1deg); }
    }

    @keyframes orbFloat {
      0%,100% { transform: translateY(0) scale(1); }
      50% { transform: translateY(-18px) scale(1.03); }
    }

    @keyframes chipFloat {
      0%,100% { transform: translateY(0); }
      50% { transform: translateY(-12px); }
    }

    @keyframes shapeSpin {
      to { transform: rotate(378deg); }
    }

    /* Generic Cards */
    .grid-3 {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
    }

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

    .card {
      background: var(--white);
      border: 1px solid var(--border);
      border-radius: var(--radius);
      box-shadow: 0 12px 40px rgba(74,13,122,.07);
      transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
    }

    .card:hover {
      transform: translateY(-8px);
      box-shadow: var(--shadow);
      border-color: rgba(200,45,140,.25);
    }

    /* Markets */
    .market-strip {
      display: grid;
      grid-template-columns: 1fr 2.2fr;
      gap: 28px;
      align-items: center;
    }

    .market-list {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 12px;
    }

    .market-pill {
      display: flex;
      align-items: center;
      gap: 10px;
      min-height: 52px;
      padding: 12px 14px;
      border-radius: 16px;
      background: var(--white);
      border: 1px solid var(--border);
      font-weight: 700;
      color: var(--deep-purple);
    }

    .market-pill span {
      width: 10px;
      height: 10px;
      border-radius: 50%;
      background: var(--pink);
      box-shadow: 0 0 0 6px rgba(200,45,140,.1);
      flex: 0 0 auto;
    }

    /* Services */
    .services-grid {
      margin-top: 50px;
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 24px;
    }

    .service-card {
      padding: 28px;
      min-height: 320px;
      position: relative;
      overflow: hidden;
    }

    .service-card::after {
      content: "";
      position: absolute;
      width: 170px;
      height: 170px;
      border-radius: 50%;
      background: rgba(200,45,140,.06);
      right: -60px;
      top: -60px;
      transition: transform .4s ease;
    }

    .service-card:hover::after {
      transform: scale(1.25);
    }

    .service-head {
      display: flex;
      align-items: flex-start;
      justify-content: space-between;
      gap: 18px;
      position: relative;
      z-index: 2;
    }

    .service-icon {
      width: 58px;
      height: 58px;
      border-radius: 18px;
      display: grid;
      place-items: center;
      background: var(--gradient);
      color: white;
      box-shadow: 0 16px 30px rgba(200,45,140,.22);
      flex: 0 0 auto;
    }

    .service-icon svg {
      width: 28px;
      height: 28px;
      fill: none;
      stroke: currentColor;
      stroke-width: 1.8;
    }

    .service-number {
      font-size: .85rem;
      font-weight: 900;
      color: rgba(74,13,122,.4);
      letter-spacing: .16em;
    }

    .service-card h3 {
      margin-top: 24px;
      font-size: 1.45rem;
      color: var(--deep-purple);
      line-height: 1.2;
      position: relative;
      z-index: 2;
    }

    .service-card p {
      margin-top: 12px;
      color: var(--muted);
      position: relative;
      z-index: 2;
    }

    .service-list {
      margin-top: 20px;
      list-style: none;
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 9px 16px;
      position: relative;
      z-index: 2;
    }

    .service-list li {
      color: #403747;
      font-size: .92rem;
      display: flex;
      align-items: flex-start;
      gap: 8px;
    }

    .service-list li::before {
      content: "✓";
      color: var(--pink);
      font-weight: 900;
    }



    /* Premium stock-image layout and moving countries */
    .country-flow-section {
      overflow: hidden;
      padding-bottom: 54px;
    }

    .country-flow-heading {
      margin-bottom: 28px;
    }

    .country-flow-window {
      width: 100%;
      overflow: hidden;
      padding: 18px 0;
      border-top: 1px solid rgba(74,13,122,.1);
      border-bottom: 1px solid rgba(74,13,122,.1);
      background: rgba(255,255,255,.68);
      mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
    }

    .country-flow-track {
      width: max-content;
      display: flex;
      align-items: center;
      gap: 22px;
      animation: countryFlow 34s linear infinite;
      will-change: transform;
    }

    .country-flow-window:hover .country-flow-track {
      animation-play-state: paused;
    }

    .country-flow-item {
      display: inline-flex;
      align-items: center;
      gap: 11px;
      color: var(--deep-purple);
      font-size: clamp(1rem, 2vw, 1.22rem);
      font-weight: 850;
      white-space: nowrap;
    }

    .country-flow-item i {
      width: 10px;
      height: 10px;
      border-radius: 50%;
      background: var(--pink);
      box-shadow: 0 0 0 6px rgba(200,45,140,.1);
    }

    .country-flow-separator {
      color: rgba(200,45,140,.44);
      font-size: .9rem;
    }

    @keyframes countryFlow {
      from { transform: translateX(0); }
      to { transform: translateX(-50%); }
    }

    /* Clean hero photo */
    .hero-visual {
      min-height: 590px;
      perspective: 1300px;
    }

    .hero-media-frame {
      position: absolute;
      inset: 3% 0 0;
      min-height: 560px;
      overflow: hidden;
      border-radius: 42px;
      background: var(--lavender);
      border: 1px solid rgba(74,13,122,.12);
      box-shadow: 0 32px 90px rgba(36,16,95,.2);
      transform-style: preserve-3d;
      transition: transform .2s ease-out;
    }

    .hero-media-frame > img {
      width: 100%;
      height: 100%;
      min-height: 560px;
      object-fit: cover;
      object-position: center;
      display: block;
    }

    .hero-media-shade {
      position: absolute;
      inset: 0;
      background:
        linear-gradient(to top, rgba(25,7,61,.68), rgba(25,7,61,.04) 58%),
        linear-gradient(105deg, rgba(74,13,122,.22), transparent 50%);
      pointer-events: none;
    }

    .hero-media-badge,
    .hero-media-insight,
    .hero-media-metric {
      position: absolute;
      z-index: 2;
      border: 1px solid rgba(255,255,255,.28);
      background: rgba(255,255,255,.86);
      backdrop-filter: blur(16px);
      box-shadow: 0 18px 48px rgba(36,16,95,.18);
    }

    .hero-media-badge {
      top: 22px;
      left: 22px;
      display: inline-flex;
      align-items: center;
      gap: 9px;
      padding: 10px 14px;
      border-radius: 999px;
      color: var(--deep-purple);
      font-size: .78rem;
      font-weight: 900;
    }

    .badge-dot {
      width: 9px;
      height: 9px;
      border-radius: 50%;
      background: var(--pink);
      box-shadow: 0 0 0 5px rgba(200,45,140,.12);
    }

    .hero-media-insight {
      left: 22px;
      right: 22px;
      bottom: 22px;
      padding: 18px 20px;
      border-radius: 22px;
      color: var(--deep-purple);
    }

    .hero-media-insight span,
    .hero-media-insight small {
      display: block;
      color: var(--muted);
      font-size: .78rem;
    }

    .hero-media-insight strong {
      display: block;
      margin: 4px 0;
      font-size: 1.12rem;
    }

    .hero-media-metric {
      width: 98px;
      padding: 12px;
      border-radius: 18px;
      text-align: center;
      color: var(--deep-purple);
    }

    .hero-media-metric span {
      display: block;
      color: var(--muted);
      font-size: .7rem;
      font-weight: 800;
      text-transform: uppercase;
      letter-spacing: .08em;
    }

    .hero-media-metric strong {
      display: block;
      margin-top: 2px;
      font-size: 1.55rem;
    }

    .metric-one {
      top: 82px;
      right: 20px;
    }

    .metric-two {
      top: 190px;
      right: 20px;
    }

    /* Consistent photo treatment */
    .about-photo,
    .project-photo,
    .blog-photo,
    .visual-image,
    .team-workspace-banner {
      overflow: hidden;
      background: var(--lavender);
    }

    .about-photo > img,
    .project-photo > img,
    .blog-photo > img,
    .visual-image > img,
    .team-workspace-banner > img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
      transition: transform .6s ease;
    }

    .about-photo {
      min-height: 530px;
      position: relative;
    }

    .about-photo::before,
    .about-photo::after {
      display: none;
    }

    .about-photo-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(to top, rgba(25,7,61,.72), transparent 62%);
    }

    .project-photo {
      aspect-ratio: 4 / 3;
    }

    .project-photo::before {
      display: none;
    }

    .project-photo::after,
    .project-photo-overlay {
      position: absolute;
      inset: 0;
      content: "";
      background: linear-gradient(to top, rgba(25,7,61,.32), transparent 64%);
      pointer-events: none;
    }

    .project-card:hover .project-photo img,
    .blog-card:hover .blog-photo img,
    .visual-card:hover .visual-image img {
      transform: scale(1.045);
    }

    .blog-photo {
      aspect-ratio: 16 / 10;
    }

    .blog-cover::before,
    .blog-cover::after {
      display: none;
    }

    .visual-image {
      aspect-ratio: 16 / 10;
    }

    .visual-image::after {
      display: none;
    }

    /* Honest team presentation: one stock workplace photo, real names use initials */
    .team-workspace-banner {
      position: relative;
      height: 390px;
      margin-top: 44px;
      border-radius: 34px;
      box-shadow: 0 24px 70px rgba(36,16,95,.16);
    }

    .team-workspace-overlay {
      position: absolute;
      inset: auto 24px 24px 24px;
      padding: 19px 21px;
      border-radius: 20px;
      color: #fff;
      background: rgba(36,16,95,.72);
      border: 1px solid rgba(255,255,255,.18);
      backdrop-filter: blur(14px);
    }

    .team-workspace-overlay span {
      display: block;
      color: rgba(255,255,255,.68);
      font-size: .78rem;
      font-weight: 800;
      text-transform: uppercase;
      letter-spacing: .09em;
    }

    .team-workspace-overlay strong {
      display: block;
      margin-top: 4px;
      font-size: 1.12rem;
    }

    .team-grid {
      margin-top: 28px;
      grid-template-columns: repeat(3, 1fr);
    }

    .team-identity {
      aspect-ratio: 4 / 3.65;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 14px;
      background:
        radial-gradient(circle at 22% 18%, rgba(255,255,255,.22), transparent 26%),
        linear-gradient(145deg, var(--pink), var(--deep-purple));
      position: relative;
    }

    .team-identity::before {
      display: block;
      inset: 11%;
      border-radius: 34px;
      border: 1px solid rgba(255,255,255,.2);
      box-shadow: inset 0 0 80px rgba(255,255,255,.06);
    }

    .team-initials {
      position: relative;
      z-index: 2;
      width: 106px;
      height: 106px;
      display: grid;
      place-items: center;
      border-radius: 50%;
      color: #fff;
      background: rgba(255,255,255,.14);
      border: 1px solid rgba(255,255,255,.28);
      box-shadow: 0 20px 45px rgba(25,7,61,.22);
      font-size: 2rem;
      font-weight: 900;
      letter-spacing: -.04em;
    }

    .team-identity > span {
      position: relative;
      z-index: 2;
      padding: 7px 11px;
      border-radius: 999px;
      color: #fff;
      background: rgba(255,255,255,.12);
      border: 1px solid rgba(255,255,255,.16);
      font-size: .72rem;
      font-weight: 800;
      text-transform: capitalize;
    }

    /* If a remote stock image cannot load, preserve the layout */
    img.stock-image-error {
      opacity: 0;
    }

    @media (max-width: 1080px) {
      .team-grid {
        grid-template-columns: repeat(2, 1fr);
      }
    }

    @media (max-width: 760px) {
      .country-flow-track {
        animation-duration: 27s;
      }

      .hero-visual {
        min-height: 480px;
      }

      .hero-media-frame,
      .hero-media-frame > img {
        min-height: 460px;
      }

      .hero-media-frame {
        border-radius: 30px;
      }

      .hero-media-metric {
        width: 84px;
      }

      .metric-two {
        top: 178px;
      }

      .team-workspace-banner {
        height: 300px;
      }

      .team-grid {
        grid-template-columns: 1fr;
      }
    }

    @media (max-width: 480px) {
      .hero-media-badge {
        max-width: calc(100% - 40px);
      }

      .hero-media-metric {
        display: none;
      }

      .team-workspace-overlay {
        inset: auto 14px 14px 14px;
      }
    }

    @media (prefers-reduced-motion: reduce) {
      .country-flow-track {
        animation: none;
        flex-wrap: wrap;
        width: auto;
        justify-content: center;
      }
    }


    /* Catchy 3D sticker hero */
    .hero {
      background:
        radial-gradient(circle at 8% 15%, rgba(200,45,140,.12), transparent 30%),
        radial-gradient(circle at 92% 20%, rgba(74,13,122,.12), transparent 34%),
        linear-gradient(180deg, #fff 0%, #fbf8fc 100%);
    }

    .hero-visual {
      min-height: 620px;
      perspective: 1500px;
    }

    .hero-sticker-stage {
      position: absolute;
      inset: 0;
      min-height: 610px;
      border-radius: 42px;
      overflow: hidden;
      background:
        radial-gradient(circle at 18% 18%, rgba(255,255,255,.42), transparent 20%),
        radial-gradient(circle at 84% 18%, rgba(255,255,255,.16), transparent 20%),
        linear-gradient(145deg, #24105F 0%, #4A0D7A 45%, #C82D8C 100%);
      border: 1px solid rgba(255,255,255,.18);
      box-shadow: 0 34px 95px rgba(36,16,95,.28);
      transform-style: preserve-3d;
      transition: transform .2s ease-out;
      isolation: isolate;
    }

    .hero-stage-grid {
      position: absolute;
      inset: 0;
      opacity: .26;
      background-image:
        linear-gradient(rgba(255,255,255,.18) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.18) 1px, transparent 1px);
      background-size: 42px 42px;
      mask-image: linear-gradient(to bottom, black, transparent 86%);
    }

    .hero-stage-glow {
      position: absolute;
      border-radius: 50%;
      filter: blur(8px);
      opacity: .75;
      pointer-events: none;
    }

    .glow-one {
      width: 280px;
      height: 280px;
      left: -60px;
      top: -50px;
      background: radial-gradient(circle, rgba(255,255,255,.55), rgba(255,255,255,0));
    }

    .glow-two {
      width: 320px;
      height: 320px;
      right: -70px;
      bottom: -70px;
      background: radial-gradient(circle, rgba(255,166,225,.52), rgba(255,166,225,0));
    }

    .hero-main-sticker {
      position: absolute;
      inset: 8% 7%;
      padding: 28px;
      border-radius: 34px;
      background:
        linear-gradient(165deg, rgba(255,255,255,.92), rgba(255,255,255,.72));
      border: 1px solid rgba(255,255,255,.55);
      box-shadow:
        0 26px 75px rgba(15, 4, 45, .28),
        inset 0 1px 0 rgba(255,255,255,.9);
      transform: rotate(-5deg) rotateX(7deg) rotateY(-10deg) translateZ(45px);
      z-index: 3;
      backdrop-filter: blur(18px);
    }

    .hero-main-sticker::before,
    .hero-main-sticker::after {
      content: "";
      position: absolute;
      inset: auto;
      border-radius: 32px;
      z-index: -1;
    }

    .hero-main-sticker::before {
      inset: 14px -12px -14px 14px;
      background: rgba(90,23,137,.22);
      filter: blur(2px);
      transform: rotate(3deg);
    }

    .hero-main-sticker::after {
      inset: -12px 18px 18px -14px;
      background: rgba(200,45,140,.18);
      filter: blur(2px);
      transform: rotate(-3deg);
    }

    .hero-sticker-top {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      align-items: center;
      justify-content: space-between;
    }

    .hero-sticker-badge {
      display: inline-flex;
      align-items: center;
      padding: 9px 14px;
      border-radius: 999px;
      background: linear-gradient(135deg, #C82D8C, #4A0D7A);
      color: #fff;
      font-size: .78rem;
      font-weight: 900;
      text-transform: uppercase;
      letter-spacing: .08em;
      box-shadow: 0 12px 28px rgba(200,45,140,.24);
    }

    .hero-sticker-badge.light {
      background: rgba(74,13,122,.08);
      color: var(--deep-purple);
      border: 1px solid rgba(74,13,122,.08);
      box-shadow: none;
    }

    .hero-sticker-center {
      margin-top: 22px;
      display: grid;
      grid-template-columns: 180px 1fr;
      gap: 24px;
      align-items: center;
    }

    .hero-center-icon {
      position: relative;
      width: 168px;
      height: 168px;
      margin-inline: auto;
      display: grid;
      place-items: center;
      transform-style: preserve-3d;
    }

    .hero-icon-core {
      width: 118px;
      height: 118px;
      border-radius: 30px;
      display: grid;
      place-items: center;
      background: linear-gradient(135deg, #C82D8C, #4A0D7A);
      color: #fff;
      font-size: 2.25rem;
      font-weight: 900;
      letter-spacing: -.05em;
      box-shadow: 0 20px 44px rgba(74,13,122,.3);
      z-index: 3;
      transform: rotate(-9deg);
    }

    .hero-icon-ring {
      position: absolute;
      border-radius: 50%;
      border: 2px solid rgba(74,13,122,.16);
    }

    .ring-one {
      inset: 9px;
      animation: heroRing 12s linear infinite;
    }

    .ring-two {
      inset: 25px;
      border-style: dashed;
      animation: heroRingReverse 10s linear infinite;
    }

    .hero-center-copy h3 {
      color: var(--deep-purple);
      font-size: clamp(2rem, 4vw, 3.35rem);
      line-height: .98;
      letter-spacing: -.06em;
    }

    .hero-center-copy p {
      margin-top: 12px;
      color: #5d5267;
      font-size: .98rem;
      max-width: 430px;
    }

    .hero-service-stickers {
      margin-top: 26px;
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 12px;
    }

    .hero-service-stickers span {
      min-height: 52px;
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      padding: 10px 14px;
      border-radius: 18px;
      color: var(--deep-purple);
      background: rgba(255,255,255,.8);
      border: 1px solid rgba(74,13,122,.1);
      font-size: .84rem;
      font-weight: 850;
      box-shadow: 0 10px 24px rgba(74,13,122,.08);
    }

    .hero-sticker-footer {
      margin-top: 22px;
      padding-top: 18px;
      border-top: 1px dashed rgba(74,13,122,.16);
    }

    .hero-sticker-footer strong {
      display: block;
      color: var(--deep-purple);
      font-size: 1rem;
      letter-spacing: -.01em;
    }

    .hero-sticker-footer small {
      display: block;
      margin-top: 5px;
      color: var(--muted);
      font-size: .8rem;
      font-weight: 700;
    }

    .hero-floating-sticker {
      position: absolute;
      z-index: 4;
      padding: 12px 15px;
      border-radius: 18px;
      color: #fff;
      background: rgba(255,255,255,.13);
      border: 1px solid rgba(255,255,255,.18);
      backdrop-filter: blur(16px);
      box-shadow: 0 20px 42px rgba(0,0,0,.18);
      font-size: .84rem;
      font-weight: 900;
      letter-spacing: .03em;
      animation: heroFloatTag 5.5s ease-in-out infinite;
    }

    .float-a { top: 9%; left: 5%; }
    .float-b { top: 18%; right: 7%; animation-delay: -1.1s; }
    .float-c { bottom: 18%; left: 2%; animation-delay: -2.4s; }
    .float-d { bottom: 8%; right: 9%; animation-delay: -3.2s; }

    @keyframes heroFloatTag {
      0%,100% { transform: translateY(0); }
      50% { transform: translateY(-10px); }
    }

    @keyframes heroRing {
      to { transform: rotate(360deg); }
    }

    @keyframes heroRingReverse {
      to { transform: rotate(-360deg); }
    }

    /* Clear portfolio images */
    .project-photo::after,
    .project-photo-overlay {
      display: none !important;
      background: none !important;
    }

    .project-photo {
      background: #f7f1fa;
    }

    .project-photo img {
      filter: none !important;
      opacity: 1 !important;
    }

    .project-card:hover .project-photo img {
      transform: scale(1.03);
    }

    @media (max-width: 1080px) {
      .hero-sticker-center {
        grid-template-columns: 150px 1fr;
        gap: 18px;
      }

      .hero-main-sticker {
        inset: 8% 6%;
      }
    }

    @media (max-width: 760px) {
      .hero-visual {
        min-height: 540px;
      }

      .hero-sticker-stage {
        min-height: 520px;
        border-radius: 30px;
      }

      .hero-main-sticker {
        inset: 5% 4%;
        padding: 22px;
        border-radius: 26px;
        transform: rotate(-3deg) rotateX(4deg) rotateY(-6deg) translateZ(20px);
      }

      .hero-sticker-center {
        grid-template-columns: 1fr;
        text-align: center;
      }

      .hero-center-copy p {
        max-width: none;
      }

      .hero-service-stickers {
        grid-template-columns: 1fr;
      }

      .hero-floating-sticker {
        font-size: .72rem;
        padding: 9px 11px;
      }

      .float-a { top: 7%; left: 3%; }
      .float-b { top: 9%; right: 3%; }
      .float-c { bottom: 12%; left: 3%; }
      .float-d { bottom: 4%; right: 3%; }
    }

    @media (max-width: 480px) {
      .hero-sticker-top {
        justify-content: center;
      }

      .hero-center-icon {
        width: 136px;
        height: 136px;
      }

      .hero-icon-core {
        width: 96px;
        height: 96px;
        font-size: 1.8rem;
      }

      .hero-center-copy h3 {
        font-size: clamp(1.9rem, 10vw, 2.7rem);
      }
    }

    /* Stacked Scroll Services */
    .services-stack {
      margin-top: 54px;
      position: relative;
      padding-bottom: 6vh;
    }

    .service-stack-card {
      --card-bg: #fff;
      --card-text: #111;
      --card-heading: #4A0D7A;
      --card-muted: #6F6677;
      --card-line: rgba(74,13,122,.13);
      --card-chip-bg: rgba(200,45,140,.09);
      --card-chip-text: #C82D8C;
      position: sticky;
      top: calc(94px + (var(--stack-index) * 7px));
      z-index: calc(20 + var(--stack-index));
      min-height: 560px;
      margin-bottom: 18vh;
      padding: clamp(28px, 5vw, 58px);
      border-radius: 38px;
      display: grid;
      grid-template-columns: .9fr 1.1fr;
      gap: clamp(30px, 6vw, 74px);
      align-items: center;
      overflow: hidden;
      isolation: isolate;
      color: var(--card-text);
      background: var(--card-bg);
      border: 1px solid var(--card-line);
      box-shadow: 0 34px 90px rgba(36,16,95,.18);
      transform-origin: center top;
      will-change: transform, filter, opacity;
    }

    .service-stack-card:last-child {
      margin-bottom: 0;
    }

    .service-stack-card::before {
      content: "";
      position: absolute;
      width: 420px;
      height: 420px;
      border-radius: 50%;
      right: -140px;
      top: -190px;
      background: radial-gradient(circle, rgba(255,255,255,.3), rgba(255,255,255,0) 68%);
      z-index: -1;
      pointer-events: none;
    }

    .service-stack-card::after {
      content: "";
      position: absolute;
      inset: 0;
      opacity: .35;
      background-image:
        linear-gradient(rgba(74,13,122,.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(74,13,122,.035) 1px, transparent 1px);
      background-size: 38px 38px;
      mask-image: linear-gradient(90deg, #000, transparent 68%);
      z-index: -2;
      pointer-events: none;
    }

    .service-tone-white {
      --card-bg: linear-gradient(145deg, #FFFFFF, #FBF7FC);
    }

    .service-tone-pink {
      --card-bg: linear-gradient(145deg, #D83B9B, #A51F7A);
      --card-text: #fff;
      --card-heading: #fff;
      --card-muted: rgba(255,255,255,.78);
      --card-line: rgba(255,255,255,.2);
      --card-chip-bg: rgba(255,255,255,.14);
      --card-chip-text: #fff;
    }

    .service-tone-purple {
      --card-bg: linear-gradient(145deg, #5A1789, #2D0E68);
      --card-text: #fff;
      --card-heading: #fff;
      --card-muted: rgba(255,255,255,.76);
      --card-line: rgba(255,255,255,.18);
      --card-chip-bg: rgba(255,255,255,.12);
      --card-chip-text: #fff;
    }

    .service-tone-lavender {
      --card-bg: linear-gradient(145deg, #F7F1FA, #EBDCF3);
      --card-heading: #4A0D7A;
    }

    .service-tone-dark {
      --card-bg: linear-gradient(145deg, #24105F, #16083C);
      --card-text: #fff;
      --card-heading: #fff;
      --card-muted: rgba(255,255,255,.74);
      --card-line: rgba(255,255,255,.17);
      --card-chip-bg: rgba(255,255,255,.1);
      --card-chip-text: #FFD8EF;
    }

    .service-tone-white-alt {
      --card-bg:
        radial-gradient(circle at 12% 15%, rgba(200,45,140,.12), transparent 28%),
        linear-gradient(145deg, #FFFFFF, #F7F1FA);
    }

    .service-tone-gradient {
      --card-bg: linear-gradient(135deg, #C82D8C 0%, #6B1A91 48%, #4A0D7A 100%);
      --card-text: #fff;
      --card-heading: #fff;
      --card-muted: rgba(255,255,255,.78);
      --card-line: rgba(255,255,255,.2);
      --card-chip-bg: rgba(255,255,255,.13);
      --card-chip-text: #fff;
    }

    .service-tone-final {
      --card-bg:
        radial-gradient(circle at 82% 18%, rgba(255,255,255,.14), transparent 25%),
        linear-gradient(145deg, #31106F, #C82D8C);
      --card-text: #fff;
      --card-heading: #fff;
      --card-muted: rgba(255,255,255,.78);
      --card-line: rgba(255,255,255,.2);
      --card-chip-bg: rgba(255,255,255,.13);
      --card-chip-text: #fff;
    }

    .service-stack-copy {
      position: relative;
      z-index: 3;
    }

    .service-stack-topline {
      display: flex;
      align-items: center;
      gap: 12px;
      margin-bottom: 22px;
    }

    .service-stack-number {
      font-size: .85rem;
      font-weight: 900;
      letter-spacing: .14em;
      color: var(--card-chip-text);
    }

    .service-stack-category {
      display: inline-flex;
      padding: 7px 12px;
      border-radius: 999px;
      color: var(--card-chip-text);
      background: var(--card-chip-bg);
      border: 1px solid var(--card-line);
      font-size: .76rem;
      font-weight: 900;
      letter-spacing: .08em;
      text-transform: uppercase;
    }

    .service-stack-card h3 {
      max-width: 720px;
      color: var(--card-heading);
      font-size: clamp(2.35rem, 5.2vw, 5.2rem);
      line-height: .98;
      letter-spacing: -.06em;
    }

    .service-stack-card p {
      margin-top: 20px;
      max-width: 720px;
      color: var(--card-muted);
      font-size: 1.05rem;
    }

    .service-stack-list {
      margin-top: 28px;
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 11px 20px;
      list-style: none;
    }

    .service-stack-list li {
      display: flex;
      align-items: flex-start;
      gap: 9px;
      color: var(--card-text);
      font-size: .93rem;
    }

    .service-stack-list li::before {
      content: "✦";
      color: var(--card-chip-text);
      font-size: .78rem;
      margin-top: 3px;
      flex: 0 0 auto;
    }

    .service-stack-cta {
      margin-top: 30px;
      display: inline-flex;
      align-items: center;
      gap: 11px;
      padding: 13px 17px;
      border-radius: 999px;
      color: var(--card-heading);
      background: var(--card-chip-bg);
      border: 1px solid var(--card-line);
      font-weight: 900;
      transition: transform .25s ease, background .25s ease;
    }

    .service-stack-cta:hover {
      transform: translateY(-3px);
    }

    .service-stack-cta span {
      font-size: 1.05rem;
    }

    .service-stack-visual {
      min-height: 390px;
      position: relative;
      display: grid;
      place-items: center;
      perspective: 1100px;
      transform-style: preserve-3d;
    }

    .service-3d-icon {
      width: clamp(190px, 26vw, 310px);
      aspect-ratio: 1;
      border-radius: 38%;
      display: grid;
      place-items: center;
      background: rgba(255,255,255,.12);
      border: 1px solid var(--card-line);
      backdrop-filter: blur(18px);
      box-shadow:
        0 32px 70px rgba(36,16,95,.22),
        inset 0 1px rgba(255,255,255,.28);
      transform: rotateX(10deg) rotateY(-12deg);
      animation: serviceIconFloat 6s ease-in-out infinite;
      position: relative;
      z-index: 3;
    }

    .service-tone-white .service-3d-icon,
    .service-tone-lavender .service-3d-icon,
    .service-tone-white-alt .service-3d-icon {
      background: rgba(255,255,255,.72);
    }

    .service-3d-icon svg {
      width: 63%;
      height: 63%;
      filter: drop-shadow(0 18px 22px rgba(36,16,95,.18));
    }

    .service-orbit {
      position: absolute;
      border-radius: 50%;
      border: 1px solid var(--card-line);
      pointer-events: none;
    }

    .orbit-a {
      width: 330px;
      height: 120px;
      transform: rotate(-18deg);
      animation: serviceOrbit 8s linear infinite;
    }

    .orbit-b {
      width: 255px;
      height: 255px;
      border-style: dashed;
      animation: serviceOrbitReverse 11s linear infinite;
    }

    .service-float-label {
      position: absolute;
      z-index: 4;
      padding: 9px 13px;
      border-radius: 14px;
      color: var(--card-heading);
      background: rgba(255,255,255,.72);
      border: 1px solid rgba(255,255,255,.5);
      backdrop-filter: blur(15px);
      box-shadow: 0 16px 35px rgba(36,16,95,.14);
      font-size: .78rem;
      font-weight: 900;
      animation: serviceLabelFloat 5s ease-in-out infinite;
    }

    .service-tone-pink .service-float-label,
    .service-tone-purple .service-float-label,
    .service-tone-dark .service-float-label,
    .service-tone-gradient .service-float-label,
    .service-tone-final .service-float-label {
      color: #fff;
      background: rgba(255,255,255,.13);
      border-color: rgba(255,255,255,.18);
    }

    .label-one {
      left: 4%;
      top: 20%;
    }

    .label-two {
      right: 2%;
      top: 31%;
      animation-delay: -1.8s;
    }

    .label-three {
      left: 18%;
      bottom: 12%;
      animation-delay: -3s;
    }

    .service-stack-card.is-covered {
      filter: saturate(.84) brightness(.94);
    }

    @keyframes serviceIconFloat {
      0%, 100% { transform: translateY(0) rotateX(10deg) rotateY(-12deg); }
      50% { transform: translateY(-15px) rotateX(6deg) rotateY(-7deg); }
    }

    @keyframes serviceOrbit {
      to { transform: rotate(342deg); }
    }

    @keyframes serviceOrbitReverse {
      to { transform: rotate(-360deg); }
    }

    @keyframes serviceLabelFloat {
      0%, 100% { transform: translateY(0); }
      50% { transform: translateY(-11px); }
    }

    @media (max-width: 900px) {
      .service-stack-card {
        grid-template-columns: 1fr;
        min-height: 720px;
        top: calc(82px + (var(--stack-index) * 5px));
        padding: 34px;
        margin-bottom: 13vh;
      }

      .service-stack-visual {
        min-height: 300px;
        order: 1;
      }

      .service-stack-copy {
        order: 2;
      }

      .service-3d-icon {
        width: min(250px, 66vw);
      }
    }

    @media (max-width: 600px) {
      .service-stack-card {
        top: calc(76px + (var(--stack-index) * 3px));
        min-height: 700px;
        padding: 26px 22px;
        border-radius: 28px;
        margin-bottom: 10vh;
      }

      .service-stack-card h3 {
        font-size: clamp(2.1rem, 13vw, 3.7rem);
      }

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

      .service-stack-visual {
        min-height: 255px;
      }

      .orbit-a {
        width: 270px;
        height: 95px;
      }

      .orbit-b {
        width: 210px;
        height: 210px;
      }

      .service-float-label {
        font-size: .69rem;
        padding: 7px 10px;
      }
    }

    @media (prefers-reduced-motion: reduce) {
      .service-stack-card {
        position: relative;
        top: auto;
        margin-bottom: 24px;
      }
    }

    /* Results */
    .stats-grid {
      margin-top: 50px;
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 18px;
    }

    .stat-card {
      padding: 30px 22px;
      text-align: center;
      border-radius: 24px;
      background: rgba(255,255,255,.11);
      border: 1px solid rgba(255,255,255,.13);
      backdrop-filter: blur(14px);
    }

    .stat-number {
      font-size: clamp(2.25rem, 5vw, 4rem);
      font-weight: 900;
      letter-spacing: -.06em;
      line-height: 1;
    }

    .stat-label {
      margin-top: 10px;
      color: rgba(255,255,255,.7);
    }

    /* Portfolio */
    .portfolio-toolbar {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      margin-top: 36px;
    }

    .filter-btn {
      border: 1px solid var(--border);
      background: white;
      color: var(--deep-purple);
      border-radius: 999px;
      padding: 10px 15px;
      font-weight: 800;
      transition: .2s ease;
    }

    .filter-btn.active,
    .filter-btn:hover {
      background: var(--gradient);
      color: white;
      border-color: transparent;
    }

    .portfolio-grid {
      margin-top: 32px;
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
    }

    .project-card {
      overflow: hidden;
    }

    .project-visual {
      aspect-ratio: 4/3;
      position: relative;
      overflow: hidden;
      background: var(--gradient);
    }

    .project-visual::before,
    .project-visual::after {
      content: "";
      position: absolute;
      border-radius: 32px;
      background: rgba(255,255,255,.16);
      border: 1px solid rgba(255,255,255,.2);
      backdrop-filter: blur(10px);
    }

    .project-visual::before {
      width: 62%;
      height: 58%;
      left: 12%;
      bottom: 10%;
      transform: rotate(-6deg);
    }

    .project-visual::after {
      width: 36%;
      height: 40%;
      right: 8%;
      top: 12%;
      transform: rotate(8deg);
    }

    .project-dashboard {
      position: absolute;
      inset: 18% 14%;
      z-index: 2;
      border-radius: 22px;
      background: rgba(255,255,255,.92);
      padding: 18px;
      box-shadow: 0 18px 42px rgba(20,5,57,.28);
      transform: perspective(700px) rotateX(5deg) rotateY(-6deg);
    }

    .project-dashboard .bars {
      display: flex;
      align-items: end;
      gap: 8px;
      height: 66px;
      margin-top: 16px;
    }

    .project-dashboard .bars i {
      flex: 1;
      border-radius: 8px 8px 3px 3px;
      background: var(--gradient);
      display: block;
    }

    .project-content {
      padding: 24px;
    }

    .tag {
      display: inline-flex;
      padding: 6px 10px;
      border-radius: 999px;
      background: rgba(200,45,140,.09);
      color: var(--pink);
      font-weight: 800;
      font-size: .78rem;
    }

    .project-content h3 {
      margin-top: 13px;
      color: var(--deep-purple);
      font-size: 1.32rem;
    }

    .project-content p {
      margin-top: 8px;
      color: var(--muted);
      font-size: .95rem;
    }

    .project-metrics {
      margin-top: 18px;
      display: flex;
      gap: 18px;
      flex-wrap: wrap;
    }

    .project-metrics strong {
      color: var(--deep-purple);
      display: block;
    }

    .project-metrics span {
      color: var(--muted);
      font-size: .76rem;
    }

    /* Process */
    .process-grid {
      margin-top: 48px;
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 18px;
      position: relative;
    }

    .process-grid::before {
      content: "";
      position: absolute;
      height: 2px;
      left: 7%;
      right: 7%;
      top: 34px;
      background: linear-gradient(90deg, rgba(200,45,140,.2), rgba(74,13,122,.35));
    }

    .process-step {
      position: relative;
      z-index: 2;
      padding: 0 8px;
    }

    .process-num {
      width: 68px;
      height: 68px;
      border-radius: 50%;
      display: grid;
      place-items: center;
      background: var(--gradient);
      color: white;
      font-weight: 900;
      box-shadow: 0 14px 34px rgba(200,45,140,.25);
    }

    .process-step h3 {
      color: var(--deep-purple);
      margin-top: 22px;
      font-size: 1.2rem;
    }

    .process-step p {
      color: var(--muted);
      margin-top: 8px;
      font-size: .94rem;
    }

    /* About */
    .about-grid {
      display: grid;
      grid-template-columns: .92fr 1.08fr;
      gap: 60px;
      align-items: center;
    }

    .about-visual {
      min-height: 520px;
      border-radius: 40px;
      background:
        radial-gradient(circle at 30% 25%, rgba(255,255,255,.3), transparent 24%),
        var(--gradient);
      position: relative;
      overflow: hidden;
      box-shadow: var(--shadow-strong);
    }

    .about-visual::before {
      content: "";
      position: absolute;
      width: 340px;
      height: 340px;
      border: 48px solid rgba(255,255,255,.15);
      border-radius: 50%;
      left: -90px;
      bottom: -85px;
    }

    .about-visual::after {
      content: "";
      position: absolute;
      width: 240px;
      height: 240px;
      border-radius: 50%;
      background: radial-gradient(circle at 38% 32%, #fff, #f191cb 12%, #C82D8C 38%, #2a0b62 75%);
      top: 54px;
      right: 46px;
      box-shadow: 0 28px 70px rgba(24,6,66,.4);
      animation: orbFloat 6s ease-in-out infinite;
    }

    .about-floating-card {
      position: absolute;
      z-index: 2;
      left: 30px;
      right: 30px;
      bottom: 32px;
      padding: 26px;
      border-radius: 24px;
      color: white;
      background: rgba(255,255,255,.12);
      border: 1px solid rgba(255,255,255,.2);
      backdrop-filter: blur(18px);
    }

    .about-floating-card strong {
      display: block;
      font-size: 1.5rem;
      margin-bottom: 8px;
    }

    .about-points {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 16px;
      margin-top: 30px;
    }

    .about-point {
      padding: 20px;
      border-radius: 20px;
      background: var(--lavender);
      border: 1px solid var(--border);
    }

    .about-point h4 {
      color: var(--deep-purple);
      margin-bottom: 7px;
    }

    .about-point p {
      color: var(--muted);
      font-size: .92rem;
    }


    /* HD Visual Showcase */
    .visual-showcase-section {
      background:
        radial-gradient(circle at 12% 18%, rgba(200,45,140,.09), transparent 27%),
        radial-gradient(circle at 88% 82%, rgba(74,13,122,.08), transparent 30%),
        #fff;
    }

    .visual-showcase {
      margin-top: 48px;
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
      perspective: 1500px;
    }

    .visual-card {
      border-radius: 30px;
      overflow: hidden;
      background: #fff;
      border: 1px solid var(--border);
      box-shadow: 0 20px 55px rgba(74,13,122,.1);
      transform-style: preserve-3d;
      transition: transform .4s ease, box-shadow .4s ease;
    }

    .visual-card:hover {
      transform: translateY(-10px) rotateX(2deg) rotateY(-2deg);
      box-shadow: 0 32px 78px rgba(74,13,122,.18);
    }

    .visual-image {
      aspect-ratio: 16 / 10;
      overflow: hidden;
      background: var(--lavender);
      position: relative;
    }

    .visual-image::after {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(115deg, transparent 30%, rgba(255,255,255,.28), transparent 70%);
      transform: translateX(-130%);
      transition: transform .9s ease;
    }

    .visual-card:hover .visual-image::after {
      transform: translateX(130%);
    }

    .visual-image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform .65s ease;
    }

    .visual-card:hover .visual-image img {
      transform: scale(1.045);
    }

    .visual-card-copy {
      padding: 24px;
    }

    .visual-card-copy span {
      display: inline-flex;
      padding: 6px 10px;
      border-radius: 999px;
      color: var(--pink);
      background: rgba(200,45,140,.08);
      font-size: .76rem;
      font-weight: 900;
      text-transform: uppercase;
      letter-spacing: .1em;
    }

    .visual-card-copy h3 {
      margin-top: 13px;
      color: var(--deep-purple);
      font-size: 1.3rem;
    }

    .visual-card-copy p {
      margin-top: 8px;
      color: var(--muted);
      font-size: .92rem;
    }

    .client-logo {
      text-transform: none;
      letter-spacing: 0;
      min-height: 150px;
      align-content: center;
      gap: 8px;
      transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
    }

    .client-logo:hover {
      transform: translateY(-7px);
      box-shadow: var(--shadow);
      border-color: rgba(200,45,140,.28);
    }

    .client-logo strong {
      display: block;
      color: var(--deep-purple);
      font-size: 1rem;
    }

    .client-logo small {
      display: block;
      color: var(--muted);
      font-weight: 600;
      font-size: .75rem;
      overflow-wrap: anywhere;
    }

    .client-mark {
      width: 46px;
      height: 46px;
      margin: 0 auto 2px;
      border-radius: 15px;
      display: grid;
      place-items: center;
      color: #fff;
      background: var(--gradient);
      box-shadow: 0 12px 28px rgba(200,45,140,.22);
      font-size: 1.2rem;
      font-weight: 900;
    }

    .partnership-grid h3 {
      margin-top: 13px;
      color: var(--deep-purple);
    }

    .partnership-grid p {
      color: var(--muted);
      margin-top: 8px;
    }

    .partnership-icon {
      width: 48px;
      height: 48px;
      border-radius: 16px;
      display: grid;
      place-items: center;
      background: var(--gradient);
      color: #fff;
      font-size: 1.3rem;
      box-shadow: 0 12px 28px rgba(200,45,140,.2);
    }

    .team-photo {
      background: var(--gradient);
    }

    .team-photo img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform .6s ease;
    }

    .team-card:hover .team-photo img {
      transform: scale(1.045);
    }

    @media (max-width: 1080px) {
      .visual-showcase {
        grid-template-columns: 1fr 1fr;
      }
      .client-logos {
        grid-template-columns: repeat(3, 1fr);
      }
    }

    @media (max-width: 760px) {
      .visual-showcase {
        grid-template-columns: 1fr;
      }
      .client-logos {
        grid-template-columns: 1fr 1fr;
      }
    }

    @media (max-width: 480px) {
      .client-logos {
        grid-template-columns: 1fr;
      }
    }

    /* Pricing */
    .pricing-grid {
      margin-top: 48px;
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
      align-items: stretch;
    }

    .pricing-card {
      padding: 30px;
      position: relative;
    }

    .pricing-card.featured {
      color: white;
      background: var(--dark-purple);
      border-color: transparent;
      transform: translateY(-14px);
      box-shadow: var(--shadow-strong);
    }

    .pricing-card.featured:hover {
      transform: translateY(-20px);
    }

    .popular-badge {
      position: absolute;
      top: 20px;
      right: 20px;
      padding: 7px 11px;
      border-radius: 999px;
      background: var(--gradient);
      color: white;
      font-size: .74rem;
      font-weight: 900;
      letter-spacing: .08em;
      text-transform: uppercase;
    }

    .pricing-card h3 {
      color: var(--deep-purple);
      font-size: 1.5rem;
    }

    .pricing-card.featured h3 {
      color: white;
    }

    .price {
      margin-top: 24px;
      font-size: 2.7rem;
      font-weight: 900;
      color: var(--deep-purple);
      letter-spacing: -.05em;
    }

    .pricing-card.featured .price {
      color: white;
    }

    .price small {
      display: block;
      font-size: .84rem;
      color: var(--muted);
      letter-spacing: 0;
      font-weight: 600;
      margin-top: 4px;
    }

    .pricing-card.featured .price small {
      color: rgba(255,255,255,.64);
    }

    .pricing-list {
      list-style: none;
      margin: 26px 0;
      display: grid;
      gap: 12px;
    }

    .pricing-list li {
      display: flex;
      align-items: flex-start;
      gap: 10px;
      color: #4f4656;
    }

    .pricing-card.featured .pricing-list li {
      color: rgba(255,255,255,.78);
    }

    .pricing-list li::before {
      content: "✓";
      color: var(--pink);
      font-weight: 900;
    }

    /* Clients */
    .client-logos {
      margin-top: 46px;
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 18px;
    }

    .client-logo {
      min-height: 110px;
      border-radius: 22px;
      background: white;
      border: 1px solid var(--border);
      display: grid;
      place-items: center;
      text-align: center;
      padding: 20px;
      color: var(--deep-purple);
      font-weight: 900;
      letter-spacing: .08em;
      text-transform: uppercase;
      box-shadow: 0 12px 36px rgba(74,13,122,.06);
    }

    .testimonials-grid {
      margin-top: 34px;
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 22px;
    }

    .testimonial {
      padding: 26px;
    }

    .stars {
      color: #F6B91B;
      letter-spacing: .16em;
    }

    .testimonial blockquote {
      margin-top: 16px;
      color: #433A49;
      font-size: 1rem;
    }

    .testimonial-author {
      display: flex;
      align-items: center;
      gap: 12px;
      margin-top: 20px;
    }

    .avatar {
      width: 46px;
      height: 46px;
      border-radius: 50%;
      display: grid;
      place-items: center;
      color: white;
      font-weight: 900;
      background: var(--gradient);
    }

    .testimonial-author strong {
      color: var(--deep-purple);
      display: block;
    }

    .testimonial-author span {
      color: var(--muted);
      font-size: .84rem;
    }

    /* Team */
    .team-grid {
      margin-top: 46px;
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 22px;
    }

    .team-card {
      overflow: hidden;
    }

    .team-photo {
      aspect-ratio: 4/4.4;
      position: relative;
      background:
        radial-gradient(circle at 50% 36%, rgba(255,255,255,.95) 0 14%, transparent 15%),
        radial-gradient(circle at 50% 53%, rgba(255,255,255,.75) 0 24%, transparent 25%),
        linear-gradient(145deg, rgba(200,45,140,.86), rgba(74,13,122,.96));
      overflow: hidden;
    }

    .team-photo::before {
      content: "";
      position: absolute;
      inset: 12%;
      border-radius: 50% 50% 38% 38%;
      border: 1px solid rgba(255,255,255,.2);
      box-shadow: inset 0 0 80px rgba(255,255,255,.08);
    }

    .team-content {
      padding: 20px;
    }

    .team-content h3 {
      color: var(--deep-purple);
      font-size: 1.15rem;
    }

    .team-role {
      color: var(--pink);
      font-weight: 800;
      font-size: .88rem;
      margin-top: 4px;
    }

    .team-content p {
      color: var(--muted);
      font-size: .88rem;
      margin-top: 9px;
    }

    /* Blog */
    .blog-grid {
      margin-top: 46px;
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
    }

    .blog-card {
      overflow: hidden;
    }

    .blog-cover {
      aspect-ratio: 16/10;
      display: grid;
      place-items: center;
      position: relative;
      color: white;
      background: var(--gradient);
      overflow: hidden;
    }

    .blog-cover::before {
      content: "";
      width: 170px;
      height: 170px;
      border-radius: 50%;
      border: 34px solid rgba(255,255,255,.13);
      position: absolute;
      right: -35px;
      top: -40px;
    }

    .blog-cover svg {
      width: 72px;
      height: 72px;
      fill: none;
      stroke: currentColor;
      stroke-width: 1.5;
      position: relative;
      z-index: 2;
    }

    .blog-content {
      padding: 22px;
    }

    .blog-meta {
      display: flex;
      justify-content: space-between;
      gap: 14px;
      color: var(--muted);
      font-size: .78rem;
    }

    .blog-content h3 {
      color: var(--deep-purple);
      font-size: 1.22rem;
      line-height: 1.3;
      margin-top: 14px;
    }

    .blog-content p {
      color: var(--muted);
      margin-top: 10px;
      font-size: .92rem;
    }

    .text-link {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      margin-top: 16px;
      color: var(--pink);
      font-weight: 900;
    }

    /* Contact */
    .contact-grid {
      display: grid;
      grid-template-columns: .82fr 1.18fr;
      gap: 44px;
      align-items: start;
    }

    .contact-info {
      padding: 32px;
      border-radius: 30px;
      background: var(--dark-purple);
      color: white;
      box-shadow: var(--shadow-strong);
    }

    .contact-info h3 {
      font-size: 1.7rem;
    }

    .contact-info > p {
      color: rgba(255,255,255,.7);
      margin-top: 10px;
    }

    .contact-list {
      margin-top: 28px;
      display: grid;
      gap: 14px;
    }

    .contact-item {
      display: flex;
      gap: 14px;
      align-items: flex-start;
      padding: 14px;
      border-radius: 18px;
      background: rgba(255,255,255,.11);
      border: 1px solid rgba(255,255,255,.12);
    }

    .contact-icon {
      width: 42px;
      height: 42px;
      border-radius: 14px;
      display: grid;
      place-items: center;
      background: rgba(200,45,140,.22);
      flex: 0 0 auto;
    }

    .contact-icon svg {
      width: 21px;
      height: 21px;
      fill: none;
      stroke: currentColor;
      stroke-width: 1.8;
    }

    .contact-item strong {
      display: block;
    }

    .contact-item span {
      color: rgba(255,255,255,.66);
      font-size: .9rem;
    }

    .contact-form {
      padding: 34px;
    }

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

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

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

    .field label {
      font-size: .87rem;
      font-weight: 800;
      color: var(--deep-purple);
    }

    .field input,
    .field select,
    .field textarea {
      width: 100%;
      border: 1px solid var(--border);
      border-radius: 15px;
      background: #fff;
      padding: 14px 15px;
      outline: none;
      color: var(--charcoal);
      transition: border-color .2s ease, box-shadow .2s ease;
    }

    .field textarea {
      min-height: 132px;
      resize: vertical;
    }

    .field input:focus,
    .field select:focus,
    .field textarea:focus {
      border-color: rgba(200,45,140,.55);
      box-shadow: 0 0 0 4px rgba(200,45,140,.09);
    }

    .form-status {
      display: none;
      margin-top: 16px;
      padding: 13px 15px;
      border-radius: 14px;
      color: #1e6a44;
      background: #e9fff4;
      border: 1px solid #b9efd4;
      font-weight: 700;
    }

    /* CTA */
    .cta-panel {
      padding: 60px;
      border-radius: 38px;
      color: white;
      background:
        radial-gradient(circle at 85% 15%, rgba(255,255,255,.18), transparent 25%),
        var(--gradient);
      box-shadow: var(--shadow-strong);
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 36px;
      overflow: hidden;
      position: relative;
    }

    .cta-panel::after {
      content: "";
      position: absolute;
      width: 280px;
      height: 280px;
      border: 48px solid rgba(255,255,255,.12);
      border-radius: 50%;
      right: -80px;
      bottom: -120px;
    }

    .cta-panel h2 {
      font-size: clamp(2rem, 4vw, 3.5rem);
      line-height: 1.05;
      max-width: 720px;
      letter-spacing: -.05em;
      position: relative;
      z-index: 2;
    }

    .cta-panel p {
      margin-top: 14px;
      color: rgba(255,255,255,.76);
      max-width: 650px;
      position: relative;
      z-index: 2;
    }

    .cta-panel .btn {
      flex: 0 0 auto;
      position: relative;
      z-index: 2;
    }

    /* Footer */
    .footer {
      padding: 72px 0 28px;
      background: #16083C;
      color: white;
    }

    .footer-grid {
      display: grid;
      grid-template-columns: 1.4fr repeat(3, .8fr);
      gap: 44px;
    }

    .footer-brand {
      width: 250px;
      height: 76px;
      background: white;
      border-radius: 18px;
      padding: 8px 12px;
      overflow: hidden;
    }

    .footer-brand img {
      width: 100%;
      height: 100%;
      object-fit: contain;
    }

    .footer-about {
      margin-top: 18px;
      color: rgba(255,255,255,.65);
      max-width: 390px;
    }

    .footer h4 {
      font-size: 1rem;
      margin-bottom: 16px;
    }

    .footer-links {
      display: grid;
      gap: 10px;
    }

    .footer-links a {
      color: rgba(255,255,255,.65);
      transition: .2s ease;
    }

    .footer-links a:hover {
      color: white;
      transform: translateX(4px);
    }

    .footer-bottom {
      margin-top: 50px;
      padding-top: 22px;
      border-top: 1px solid rgba(255,255,255,.1);
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 18px;
      color: rgba(255,255,255,.52);
      font-size: .88rem;
    }

    /* Floating WhatsApp */
    .whatsapp {
      position: fixed;
      right: 22px;
      bottom: 22px;
      z-index: 999;
      width: 58px;
      height: 58px;
      border-radius: 50%;
      display: grid;
      place-items: center;
      color: white;
      background: #21C063;
      box-shadow: 0 16px 36px rgba(33,192,99,.35);
      transition: transform .25s ease;
    }

    .whatsapp:hover {
      transform: translateY(-5px) scale(1.03);
    }

    .whatsapp svg {
      width: 28px;
      height: 28px;
      fill: currentColor;
    }

    /* Modal */
    .modal {
      position: fixed;
      inset: 0;
      z-index: 2000;
      display: none;
      place-items: center;
      padding: 20px;
      background: rgba(18,7,45,.7);
      backdrop-filter: blur(10px);
    }

    .modal.open {
      display: grid;
    }

    .modal-panel {
      width: min(720px, 100%);
      max-height: 88vh;
      overflow: auto;
      background: white;
      border-radius: 28px;
      padding: 30px;
      box-shadow: 0 30px 90px rgba(0,0,0,.35);
      position: relative;
    }

    .modal-close {
      position: absolute;
      top: 18px;
      right: 18px;
      width: 42px;
      height: 42px;
      border: 0;
      border-radius: 50%;
      background: var(--lavender);
      color: var(--deep-purple);
      font-size: 1.4rem;
    }

    .modal-panel h3 {
      color: var(--deep-purple);
      font-size: 2rem;
      padding-right: 48px;
    }

    .modal-panel p {
      color: var(--muted);
      margin-top: 14px;
    }

    .modal-points {
      margin-top: 22px;
      display: grid;
      gap: 10px;
      list-style: none;
    }

    .modal-points li {
      padding: 12px 14px;
      border-radius: 14px;
      background: var(--lavender);
      color: #44394d;
    }

    /* Reveal */
    .reveal {
      opacity: 0;
      transform: translateY(28px);
      transition: opacity .7s ease, transform .7s ease;
    }

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

    /* Responsive */
    @media (max-width: 1080px) {
      .nav-links {
        position: fixed;
        inset: 88px 18px auto 18px;
        padding: 18px;
        border-radius: 24px;
        background: rgba(255,255,255,.97);
        box-shadow: var(--shadow-strong);
        border: 1px solid var(--border);
        display: none;
        flex-direction: column;
        align-items: stretch;
        max-height: calc(100vh - 110px);
        overflow: auto;
      }

      .nav-links.open {
        display: flex;
      }

      .nav-links a {
        padding: 13px 15px;
      }

      .menu-toggle {
        display: inline-flex;
      }

      .nav-actions .btn {
        display: none;
      }

      .hero-grid,
      .about-grid,
      .contact-grid,
      .market-strip {
        grid-template-columns: 1fr;
      }

      .hero {
        padding-top: 130px;
      }

      .hero-visual {
        min-height: 540px;
      }

      .grid-4,
      .stats-grid,
      .team-grid {
        grid-template-columns: repeat(2, 1fr);
      }

      .portfolio-grid,
      .blog-grid,
      .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
      }

      .client-logos {
        grid-template-columns: repeat(3, 1fr);
      }

      .footer-grid {
        grid-template-columns: 1.3fr 1fr 1fr;
      }

      .footer-grid > div:last-child {
        grid-column: 2 / 4;
      }
    }

    @media (max-width: 760px) {
      .section {
        padding: 82px 0;
      }

      .brand {
        width: 190px;
        height: 58px;
      }

      .hero h1 {
        font-size: clamp(3rem, 17vw, 4.8rem);
      }

      .hero-proof {
        grid-template-columns: 1fr;
        gap: 15px;
      }

      .hero-visual {
        min-height: 430px;
      }

      .visual-stage {
        border-radius: 28px;
      }

      .visual-stage::before {
        width: 220px;
        height: 220px;
        top: 54px;
        right: 26px;
      }

      .visual-stage::after {
        width: 190px;
        height: 58px;
        top: 150px;
        right: 40px;
        border-width: 12px;
      }

      .dash-card {
        width: 84%;
        left: 8%;
        padding: 18px;
      }

      .services-grid,
      .portfolio-grid,
      .pricing-grid,
      .blog-grid,
      .testimonials-grid,
      .stats-grid,
      .team-grid,
      .grid-3,
      .grid-4 {
        grid-template-columns: 1fr;
      }

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

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

      .process-grid {
        grid-template-columns: 1fr;
        gap: 26px;
      }

      .process-grid::before {
        width: 2px;
        height: calc(100% - 60px);
        left: 33px;
        right: auto;
        top: 28px;
      }

      .process-step {
        padding-left: 92px;
        min-height: 74px;
      }

      .process-num {
        position: absolute;
        left: 0;
        top: 0;
      }

      .process-step h3 {
        margin-top: 0;
      }

      .about-points {
        grid-template-columns: 1fr;
      }

      .pricing-card.featured {
        transform: none;
      }

      .client-logos {
        grid-template-columns: repeat(2, 1fr);
      }

      .form-grid {
        grid-template-columns: 1fr;
      }

      .field.full {
        grid-column: auto;
      }

      .contact-form {
        padding: 24px;
      }

      .cta-panel {
        padding: 38px 26px;
        flex-direction: column;
        align-items: flex-start;
      }

      .footer-grid {
        grid-template-columns: 1fr;
      }

      .footer-grid > div:last-child {
        grid-column: auto;
      }

      .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
      }
    }

    @media (max-width: 480px) {
      .container {
        width: min(100% - 24px, var(--container));
      }

      .nav {
        min-height: 60px;
      }

      .brand {
        width: 170px;
        height: 54px;
      }

      .hero-actions .btn {
        width: 100%;
      }

      .market-list,
      .client-logos {
        grid-template-columns: 1fr;
      }

      .service-card,
      .pricing-card,
      .contact-info {
        padding: 23px;
      }

      .metric-chip {
        display: none;
      }
    }

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

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

      .reveal {
        opacity: 1;
        transform: none;
      }
    }
  
    /* Clean professional hero — no sticker, no dashboard */
    .hero-clean-premium {
      min-height: 100svh;
      display: flex;
      align-items: center;
      position: relative;
      overflow: hidden;
      padding: 150px 0 90px;
      background:
        linear-gradient(120deg, #24105F 0%, #3A106D 46%, #7B1D8E 72%, #C82D8C 100%);
      isolation: isolate;
    }

    .hero-clean-premium::before {
      content: "";
      position: absolute;
      inset: 0;
      background:
        radial-gradient(circle at 20% 20%, rgba(255,255,255,.12), transparent 24%),
        radial-gradient(circle at 85% 25%, rgba(255,255,255,.08), transparent 22%),
        linear-gradient(90deg, rgba(36,16,95,.22), transparent 45%);
      pointer-events: none;
      z-index: 1;
    }

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

    .hero-clean-grid {
      position: absolute;
      inset: 0;
      opacity: .18;
      background-image:
        linear-gradient(rgba(255,255,255,.12) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.12) 1px, transparent 1px);
      background-size: 52px 52px;
      mask-image: linear-gradient(90deg, transparent, black 30%, black 100%);
    }

    .hero-clean-glow {
      position: absolute;
      border-radius: 50%;
      filter: blur(16px);
      opacity: .9;
    }

    .hero-clean-glow.glow-one {
      width: 420px;
      height: 420px;
      right: 7%;
      top: 5%;
      background: radial-gradient(circle, rgba(255,255,255,.22), rgba(255,255,255,0));
    }

    .hero-clean-glow.glow-two {
      width: 500px;
      height: 500px;
      right: -8%;
      bottom: -18%;
      background: radial-gradient(circle, rgba(255,136,215,.36), rgba(255,136,215,0));
    }

    .hero-clean-orb {
      position: absolute;
      border-radius: 50%;
      background:
        radial-gradient(circle at 34% 28%, #fff 0 10%, #FCA4DA 24%, #C82D8C 54%, #4A0D7A 100%);
      box-shadow:
        inset -20px -24px 36px rgba(36,16,95,.35),
        0 30px 65px rgba(15,3,45,.28);
      animation: heroCleanOrb 7s ease-in-out infinite;
    }

    .orb-one {
      width: 180px;
      height: 180px;
      right: 12%;
      top: 15%;
    }

    .orb-two {
      width: 86px;
      height: 86px;
      right: 5%;
      top: 43%;
      animation-delay: -2s;
    }

    .orb-three {
      width: 56px;
      height: 56px;
      right: 28%;
      bottom: 14%;
      animation-delay: -4s;
    }

    .hero-clean-graph {
      position: absolute;
      right: -2%;
      top: 9%;
      width: min(66vw, 930px);
      height: 78%;
      overflow: visible;
      opacity: .98;
    }

    .clean-graph-line {
      fill: none;
      stroke: url(#cleanGraphStroke);
      stroke-width: 12;
      stroke-linecap: round;
      stroke-linejoin: round;
      stroke-dasharray: 1450;
      stroke-dashoffset: 1450;
      animation: cleanGraphDraw 2.5s ease-out forwards;
      filter: drop-shadow(0 14px 22px rgba(15,3,45,.3));
    }

    .clean-graph-fill {
      fill: url(#cleanGraphFill);
      transform-origin: bottom;
      transform: scaleY(.1);
      animation: cleanGraphFill 2s ease-out forwards;
    }

    .clean-graph-point {
      fill: #fff;
      stroke: #C82D8C;
      stroke-width: 6;
      opacity: 0;
      animation: cleanGraphPoint .45s ease-out forwards;
    }

    .clean-graph-point.p1 { animation-delay: .85s; }
    .clean-graph-point.p2 { animation-delay: 1.2s; }
    .clean-graph-point.p3 { animation-delay: 1.6s; }
    .clean-graph-point.p4 { animation-delay: 2s; }

    .hero-clean-icon {
      position: absolute;
      z-index: 2;
      min-width: 58px;
      height: 58px;
      padding: 0 14px;
      display: grid;
      place-items: center;
      border-radius: 18px;
      color: #fff;
      background: rgba(255,255,255,.14);
      border: 1px solid rgba(255,255,255,.2);
      backdrop-filter: blur(18px);
      box-shadow: 0 20px 42px rgba(15,3,45,.2);
      font-size: .82rem;
      font-weight: 900;
      animation: cleanIconFloat 6s ease-in-out infinite;
    }

    .icon-meta { right: 37%; top: 14%; }
    .icon-google { right: 7%; top: 10%; animation-delay: -1.3s; }
    .icon-seo { right: 29%; bottom: 16%; animation-delay: -2.6s; }
    .icon-web { right: 5%; bottom: 18%; animation-delay: -3.7s; }
    .icon-brand { right: 18%; top: 48%; animation-delay: -4.8s; }

    .hero-clean-metric {
      position: absolute;
      z-index: 3;
      min-width: 142px;
      padding: 14px 16px;
      border-radius: 20px;
      color: #fff;
      background: rgba(255,255,255,.13);
      border: 1px solid rgba(255,255,255,.2);
      backdrop-filter: blur(18px);
      box-shadow: 0 20px 44px rgba(15,3,45,.2);
      animation: cleanMetricFloat 6.4s ease-in-out infinite;
    }

    .hero-clean-metric span {
      display: block;
      color: rgba(255,255,255,.68);
      font-size: .7rem;
      text-transform: uppercase;
      letter-spacing: .08em;
      font-weight: 800;
    }

    .hero-clean-metric strong {
      display: block;
      margin-top: 5px;
      font-size: 1.75rem;
      line-height: 1;
    }

    .metric-reach {
      right: 34%;
      top: 34%;
    }

    .metric-leads {
      right: 8%;
      bottom: 31%;
      animation-delay: -2.8s;
    }

    .hero-clean-content {
      position: relative;
      z-index: 5;
      width: min(var(--container), calc(100% - 36px));
    }

    .hero-clean-copy {
      max-width: 700px;
      position: relative;
      z-index: 6;
    }

    .hero-clean-eyebrow {
      color: #fff;
      background: rgba(255,255,255,.11);
      border-color: rgba(255,255,255,.18);
    }

    .hero-clean-eyebrow::before {
      background: #FF7CC7;
      box-shadow: 0 0 0 6px rgba(255,124,199,.12);
    }

    .hero-clean-premium h1 {
      margin-top: 14px;
      margin-bottom: 26px;
      color: #fff;
      font-size: clamp(3.3rem, 7vw, 6.7rem);
      line-height: .9;
      letter-spacing: -.075em;
      text-shadow: 0 18px 36px rgba(15,3,45,.2);
    }

    .hero-clean-premium h1 span {
      color: #FFD3EC;
    }

    .hero-clean-premium p {
      max-width: 650px;
      color: rgba(255,255,255,.76);
      font-size: clamp(1rem, 1.6vw, 1.18rem);
    }

    .hero-clean-secondary {
      color: #fff;
      background: rgba(255,255,255,.1);
      border: 1px solid rgba(255,255,255,.18);
      backdrop-filter: blur(16px);
    }

    .hero-clean-proof {
      border-top-color: rgba(255,255,255,.16);
    }

    .hero-clean-proof .proof-number {
      color: #fff;
    }

    .hero-clean-proof .proof-label {
      color: rgba(255,255,255,.62);
    }

    @keyframes cleanGraphDraw {
      to { stroke-dashoffset: 0; }
    }

    @keyframes cleanGraphFill {
      to { transform: scaleY(1); }
    }

    @keyframes cleanGraphPoint {
      from { opacity: 0; transform: scale(.2); }
      to { opacity: 1; transform: scale(1); }
    }

    @keyframes heroCleanOrb {
      0%,100% { transform: translateY(0) rotate(0deg); }
      50% { transform: translateY(-15px) rotate(5deg); }
    }

    @keyframes cleanIconFloat {
      0%,100% { transform: translateY(0); }
      50% { transform: translateY(-12px); }
    }

    @keyframes cleanMetricFloat {
      0%,100% { transform: translateY(0); }
      50% { transform: translateY(-10px); }
    }

    @media (max-width: 980px) {
      .hero-clean-premium {
        min-height: 940px;
        padding: 130px 0 80px;
        align-items: flex-start;
      }

      .hero-clean-copy {
        max-width: 720px;
      }

      .hero-clean-graph {
        width: 100%;
        right: -8%;
        top: 38%;
        height: 58%;
        opacity: .72;
      }

      .hero-clean-orb,
      .hero-clean-icon,
      .hero-clean-metric {
        opacity: .72;
      }

      .metric-reach {
        right: 38%;
        top: 57%;
      }

      .metric-leads {
        right: 8%;
        bottom: 14%;
      }
    }

    @media (max-width: 680px) {
      .hero-clean-premium {
        min-height: 850px;
        padding: 115px 0 70px;
      }

      .hero-clean-premium h1 {
        font-size: clamp(3rem, 16vw, 4.7rem);
      }

      .hero-clean-proof {
        grid-template-columns: repeat(3, 1fr);
        gap: 12px;
      }

      .hero-clean-graph {
        right: -30%;
        top: 48%;
        width: 135%;
        height: 48%;
        opacity: .58;
      }

      .orb-one {
        width: 120px;
        height: 120px;
        right: -20px;
        top: 50%;
        opacity: .65;
      }

      .orb-two,
      .orb-three,
      .hero-clean-icon,
      .hero-clean-metric {
        display: none;
      }
    }

    @media (max-width: 480px) {
      .hero-clean-premium {
        min-height: 820px;
      }

      .hero-clean-proof {
        grid-template-columns: 1fr;
      }

      .hero-clean-graph {
        top: 58%;
      }
    }


    /* Final team portrait layout */
    .team-card {
      overflow: hidden;
    }

    .team-photo.team-portrait {
      position: relative;
      aspect-ratio: 4 / 4.5;
      overflow: hidden;
      background:
        linear-gradient(145deg, rgba(200,45,140,.16), rgba(74,13,122,.18)),
        var(--lavender);
    }

    .team-photo.team-portrait::before {
      display: none;
    }

    .team-photo.team-portrait img {
      width: 100%;
      height: 100%;
      display: block;
      object-fit: cover;
      filter: saturate(.92) contrast(1.02);
      transition: transform .6s ease, filter .6s ease;
    }

    .team-card:hover .team-photo.team-portrait img {
      transform: scale(1.045);
      filter: saturate(1) contrast(1.03);
    }

    .team-photo-gradient {
      position: absolute;
      inset: 0;
      background:
        linear-gradient(to top, rgba(36,16,95,.78) 0%, rgba(36,16,95,.12) 43%, transparent 70%),
        linear-gradient(120deg, rgba(200,45,140,.08), transparent 48%);
      pointer-events: none;
    }

    .team-photo-role {
      position: absolute;
      left: 16px;
      right: 16px;
      bottom: 15px;
      padding: 10px 13px;
      border-radius: 14px;
      color: #fff;
      background: rgba(255,255,255,.13);
      border: 1px solid rgba(255,255,255,.2);
      backdrop-filter: blur(14px);
      font-size: .76rem;
      font-weight: 850;
      text-align: center;
      letter-spacing: .01em;
      box-shadow: 0 12px 28px rgba(18,5,49,.16);
    }

    @media (max-width: 760px) {
      .team-photo.team-portrait {
        aspect-ratio: 4 / 4.2;
      }
    }

    /* Subtle animated social media icon background */
    body {
      position: relative;
    }

    .social-bg-icons {
      position: fixed;
      inset: 0;
      z-index: 0;
      pointer-events: none;
      overflow: hidden;
    }

    .social-bg-icon {
      position: absolute;
      width: 68px;
      height: 68px;
      display: grid;
      place-items: center;
      border-radius: 22px;
      background: rgba(255,255,255,.11);
      border: 1px solid rgba(255,255,255,.14);
      backdrop-filter: blur(14px);
      box-shadow: 0 14px 34px rgba(36,16,95,.12);
      opacity: .18;
      animation: socialBgFloat 18s ease-in-out infinite;
      will-change: transform, opacity;
    }

    .social-bg-icon svg {
      width: 28px;
      height: 28px;
      color: rgba(74, 13, 122, .68);
      fill: currentColor;
      stroke: currentColor;
      stroke-width: 1.7;
    }

    .social-bg-icon .yt-play {
      color: rgba(255,255,255,.95);
      fill: rgba(255,255,255,.95);
      stroke: none;
    }

    .social-bg-icon.s-ig svg,
    .social-bg-icon.s-gads svg {
      fill: none;
    }

    .social-bg-icon.s-fb svg,
    .social-bg-icon.s-in svg,
    .social-bg-icon.s-tt svg,
    .social-bg-icon.s-yt svg {
      stroke: none;
    }

    .s-ig {
      top: 10%;
      left: 4%;
      animation-duration: 20s;
    }

    .s-fb {
      top: 18%;
      right: 5%;
      animation-delay: -2.5s;
      animation-duration: 23s;
    }

    .s-in {
      top: 43%;
      right: 9%;
      animation-delay: -5.5s;
      animation-duration: 21s;
    }

    .s-yt {
      top: 58%;
      left: 6%;
      animation-delay: -7.8s;
      animation-duration: 24s;
    }

    .s-tt {
      bottom: 14%;
      right: 18%;
      animation-delay: -10.1s;
      animation-duration: 22s;
    }

    .s-gads {
      bottom: 10%;
      left: 18%;
      animation-delay: -12.4s;
      animation-duration: 26s;
    }

    @keyframes socialBgFloat {
      0%, 100% {
        transform: translate3d(0, 0, 0) scale(1) rotate(0deg);
        opacity: .16;
      }
      25% {
        transform: translate3d(12px, -10px, 0) scale(1.03) rotate(3deg);
        opacity: .20;
      }
      50% {
        transform: translate3d(-10px, -20px, 0) scale(1.06) rotate(-2deg);
        opacity: .24;
      }
      75% {
        transform: translate3d(8px, -8px, 0) scale(1.02) rotate(2deg);
        opacity: .18;
      }
    }

    header,
    section,
    footer,
    .whatsapp-float {
      position: relative;
      z-index: 1;
    }

    @media (max-width: 760px) {
      .social-bg-icon {
        width: 52px;
        height: 52px;
        border-radius: 18px;
        opacity: .16;
      }

      .social-bg-icon svg {
        width: 22px;
        height: 22px;
      }

      .s-fb,
      .s-tt {
        right: -1%;
      }

      .s-ig,
      .s-yt {
        left: -1%;
      }

      .s-gads {
        left: 8%;
      }
    }

    @media (prefers-reduced-motion: reduce) {
      .social-bg-icon {
        animation: none;
      }
    }


    /* Multi-page layout adjustments */
    .inner-page main > section:first-child { padding-top: 165px; }
    .inner-page .site-header:not(.scrolled) {
      background: rgba(255,255,255,.88);
      backdrop-filter: blur(18px);
      border-bottom: 1px solid rgba(74,13,122,.07);
    }
    @media (max-width: 760px) {
      .inner-page main > section:first-child { padding-top: 135px; }
    }


    /* Premium white header */
    .site-header {
      padding: 10px 0;
      background: rgba(255,255,255,.97) !important;
      backdrop-filter: blur(20px);
      -webkit-backdrop-filter: blur(20px);
      border-bottom: 1px solid rgba(74,13,122,.08);
      box-shadow: 0 8px 28px rgba(36,16,95,.07);
    }

    .site-header.scrolled {
      padding: 7px 0;
      background: rgba(255,255,255,.99) !important;
      border-bottom: 1px solid rgba(74,13,122,.10);
      box-shadow: 0 10px 34px rgba(36,16,95,.10);
    }

    .site-header .brand {
      background: transparent;
      box-shadow: none;
      padding-left: 0;
    }

    .site-header .nav {
      min-height: 66px;
    }

    .site-header .nav-links a {
      color: #3d3345;
    }

    .site-header .nav-links a:hover,
    .site-header .nav-links a.active {
      color: var(--deep-purple);
      background: rgba(200,45,140,.09);
    }

    .site-header .menu-toggle {
      background: #F7F1FA;
      border: 1px solid rgba(74,13,122,.08);
      box-shadow: 0 8px 18px rgba(36,16,95,.05);
    }

    @media (max-width: 1080px) {
      .site-header .nav-links {
        top: 86px;
        background: rgba(255,255,255,.99);
        border: 1px solid rgba(74,13,122,.09);
        box-shadow: 0 22px 55px rgba(36,16,95,.15);
      }
    }


    /* HOME PAGE HEADER FIX — full white, high-contrast navigation */
    body.home-page #siteHeader {
      background: #FFFFFF !important;
      background-image: none !important;
      opacity: 1 !important;
      padding: 8px 0 !important;
      border-bottom: 1px solid rgba(74,13,122,.10) !important;
      box-shadow: 0 8px 30px rgba(36,16,95,.10) !important;
      backdrop-filter: none !important;
      -webkit-backdrop-filter: none !important;
    }

    body.home-page #siteHeader .nav {
      min-height: 70px !important;
      background: #FFFFFF !important;
    }

    body.home-page #siteHeader .brand {
      background: transparent !important;
      box-shadow: none !important;
      opacity: 1 !important;
    }

    body.home-page #siteHeader .nav-links {
      opacity: 1 !important;
      visibility: visible !important;
    }

    body.home-page #siteHeader .nav-links a {
      color: #24105F !important;
      opacity: 1 !important;
      visibility: visible !important;
      text-shadow: none !important;
      font-weight: 800 !important;
    }

    body.home-page #siteHeader .nav-links a:hover,
    body.home-page #siteHeader .nav-links a.active {
      color: #C82D8C !important;
      background: rgba(200,45,140,.09) !important;
    }

    body.home-page #siteHeader .nav-actions .btn-primary {
      color: #FFFFFF !important;
      background: linear-gradient(135deg, #C82D8C, #4A0D7A) !important;
      opacity: 1 !important;
    }

    body.home-page #siteHeader .menu-toggle {
      color: #4A0D7A !important;
      background: #F7F1FA !important;
      opacity: 1 !important;
    }

    @media (max-width: 1080px) {
      body.home-page #siteHeader .nav-links {
        background: #FFFFFF !important;
        border: 1px solid rgba(74,13,122,.10) !important;
        box-shadow: 0 22px 55px rgba(36,16,95,.16) !important;
      }

      body.home-page #siteHeader .nav-links a {
        color: #24105F !important;
      }
    }


    /* Enhanced home hero: globe + orbiting social icons + growth */
    .hero-world-premium {
      min-height: 100svh;
      position: relative;
      overflow: hidden;
      padding: 155px 0 95px;
      background:
        radial-gradient(circle at 14% 18%, rgba(255,255,255,.12), transparent 24%),
        radial-gradient(circle at 84% 15%, rgba(255,255,255,.10), transparent 22%),
        linear-gradient(118deg, #24105F 0%, #35106A 34%, #5D157D 66%, #C82D8C 100%);
      isolation: isolate;
    }

    .hero-world-premium::before {
      content: "";
      position: absolute;
      inset: 0;
      background:
        linear-gradient(90deg, rgba(20,5,52,.20), transparent 42%),
        linear-gradient(180deg, rgba(255,255,255,.04), transparent 40%);
      pointer-events: none;
      z-index: 0;
    }

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

    .hero-world-bg-grid {
      position: absolute;
      inset: 0;
      opacity: .18;
      background-image:
        linear-gradient(rgba(255,255,255,.12) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.12) 1px, transparent 1px);
      background-size: 58px 58px;
      mask-image: linear-gradient(90deg, transparent 0%, rgba(0,0,0,.78) 28%, black 100%);
    }

    .hero-world-bg-glow {
      position: absolute;
      border-radius: 50%;
      filter: blur(20px);
      opacity: .92;
    }

    .bg-glow-one {
      width: 360px;
      height: 360px;
      left: -60px;
      top: 10%;
      background: radial-gradient(circle, rgba(255,146,221,.28), rgba(255,146,221,0));
    }

    .bg-glow-two {
      width: 460px;
      height: 460px;
      right: -120px;
      top: 4%;
      background: radial-gradient(circle, rgba(255,255,255,.16), rgba(255,255,255,0));
    }

    .bg-glow-three {
      width: 520px;
      height: 520px;
      right: 2%;
      bottom: -20%;
      background: radial-gradient(circle, rgba(255,130,204,.32), rgba(255,130,204,0));
    }

    .hero-world-grid {
      position: relative;
      z-index: 2;
      display: grid;
      grid-template-columns: minmax(0, 1.02fr) minmax(0, .98fr);
      gap: clamp(30px, 4vw, 70px);
      align-items: center;
    }

    .hero-world-copy {
      position: relative;
      z-index: 4;
      max-width: 700px;
    }

    .hero-world-eyebrow {
      color: #fff;
      background: rgba(255,255,255,.10);
      border-color: rgba(255,255,255,.16);
    }

    .hero-world-eyebrow::before {
      background: #FF87D0;
      box-shadow: 0 0 0 6px rgba(255,135,208,.12);
    }

    .hero-world-copy h1 {
      margin-top: 14px;
      margin-bottom: 24px;
      color: #fff;
      font-size: clamp(3.2rem, 7vw, 6.8rem);
      line-height: .9;
      letter-spacing: -.08em;
      text-shadow: 0 22px 42px rgba(18,4,62,.22);
    }

    .hero-world-copy h1 span {
      color: #FFD2E9;
    }

    .hero-world-copy p {
      max-width: 650px;
      color: rgba(255,255,255,.78);
      font-size: clamp(1rem, 1.5vw, 1.16rem);
    }

    .hero-world-subline {
      margin-top: 16px;
      display: inline-flex;
      align-items: center;
      min-height: 42px;
      max-width: 620px;
      padding: 10px 16px;
      border-radius: 999px;
      color: rgba(255,255,255,.82);
      background: rgba(255,255,255,.10);
      border: 1px solid rgba(255,255,255,.14);
      box-shadow: 0 12px 28px rgba(10,2,35,.12);
      font-size: .87rem;
      line-height: 1.4;
      backdrop-filter: blur(14px);
    }

    .hero-world-secondary {
      color: #fff;
      background: rgba(255,255,255,.08);
      border: 1px solid rgba(255,255,255,.16);
      backdrop-filter: blur(14px);
    }

    .hero-world-proof {
      margin-top: 42px;
      border-top-color: rgba(255,255,255,.14);
    }

    .hero-world-proof .proof-number {
      color: #fff;
    }

    .hero-world-proof .proof-label {
      color: rgba(255,255,255,.64);
    }

    .hero-world-visual {
      position: relative;
      min-height: 640px;
      perspective: 1400px;
      z-index: 3;
    }

    .hero-world-stage {
      position: absolute;
      inset: 0;
      border-radius: 44px;
      overflow: hidden;
      background:
        radial-gradient(circle at 72% 18%, rgba(255,255,255,.16), transparent 21%),
        linear-gradient(145deg, rgba(255,255,255,.08), rgba(255,255,255,.03)),
        linear-gradient(145deg, #2A0F67 0%, #1F0C51 42%, #4D0E79 72%, #A21D8F 100%);
      border: 1px solid rgba(255,255,255,.14);
      box-shadow:
        0 34px 90px rgba(15,3,45,.28),
        inset 0 1px 0 rgba(255,255,255,.16);
      transform-style: preserve-3d;
      transition: transform .18s ease-out;
    }

    .hero-world-stage::after {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(90deg, rgba(255,255,255,.04), transparent 28%, transparent 100%);
      pointer-events: none;
      z-index: 0;
    }

    .hero-world-stage-glow {
      position: absolute;
      border-radius: 50%;
      filter: blur(18px);
      opacity: .9;
      pointer-events: none;
      z-index: 0;
    }

    .glow-a {
      width: 240px;
      height: 240px;
      left: -60px;
      top: 40px;
      background: radial-gradient(circle, rgba(255,255,255,.18), rgba(255,255,255,0));
    }

    .glow-b {
      width: 280px;
      height: 280px;
      right: -40px;
      top: 130px;
      background: radial-gradient(circle, rgba(255,130,204,.25), rgba(255,130,204,0));
    }

    .glow-c {
      width: 320px;
      height: 320px;
      right: 10%;
      bottom: -90px;
      background: radial-gradient(circle, rgba(255,255,255,.10), rgba(255,255,255,0));
    }

    .hero-world-growth-line {
      position: absolute;
      left: 0;
      right: 0;
      bottom: 0;
      width: 100%;
      height: 74%;
      z-index: 1;
      opacity: .94;
    }

    .world-growth-stroke {
      fill: none;
      stroke: url(#heroWorldGraphStroke);
      stroke-width: 10;
      stroke-linecap: round;
      stroke-linejoin: round;
      stroke-dasharray: 1450;
      stroke-dashoffset: 1450;
      animation: heroWorldGraphDraw 2.6s ease-out forwards;
      filter: drop-shadow(0 12px 18px rgba(255,130,204,.28));
    }

    .world-growth-fill {
      fill: url(#heroWorldGraphFill);
      transform-origin: bottom;
      transform: scaleY(.08);
      animation: heroWorldGraphFill 2s ease-out forwards;
    }

    .world-growth-point {
      fill: #fff;
      stroke: #C82D8C;
      stroke-width: 5;
      opacity: 0;
      animation: heroWorldPointPop .44s ease-out forwards;
    }

    .gp1 { animation-delay: .85s; }
    .gp2 { animation-delay: 1.18s; }
    .gp3 { animation-delay: 1.52s; }
    .gp4 { animation-delay: 1.88s; }

    .hero-world-system {
      position: absolute;
      inset: 5% 10% 12% 18%;
      z-index: 3;
      display: grid;
      place-items: center;
      transform-style: preserve-3d;
    }

    .hero-world-orbit {
      position: absolute;
      inset: 50%;
      border-radius: 50%;
      border: 1px solid rgba(255,255,255,.18);
      transform: translate(-50%, -50%);
      pointer-events: none;
    }

    .orbit-a {
      width: 420px;
      height: 420px;
      opacity: .8;
      animation: orbitTiltA 10s ease-in-out infinite;
    }

    .orbit-b {
      width: 520px;
      height: 300px;
      transform: translate(-50%, -50%) rotate(18deg);
      opacity: .55;
      animation: orbitTiltB 12s ease-in-out infinite;
    }

    .orbit-c {
      width: 500px;
      height: 340px;
      transform: translate(-50%, -50%) rotate(-22deg);
      opacity: .38;
      animation: orbitTiltC 14s ease-in-out infinite;
    }

    .orbit-node {
      position: absolute;
      left: 50%;
      top: 50%;
      width: 520px;
      height: 520px;
      margin-left: -260px;
      margin-top: -260px;
      animation: heroOrbit 18s linear infinite;
      transform-origin: 50% 50%;
    }

    .orbit-node .orbit-chip {
      position: absolute;
      left: 50%;
      top: 0;
      transform: translateX(-50%);
      min-width: 86px;
      padding: 11px 12px 10px;
      border-radius: 18px;
      color: #fff;
      background: rgba(255,255,255,.12);
      border: 1px solid rgba(255,255,255,.18);
      box-shadow: 0 18px 40px rgba(10,2,35,.16);
      backdrop-filter: blur(16px);
      display: grid;
      justify-items: center;
      gap: 6px;
      animation: heroOrbitCounter 18s linear infinite;
    }

    .orbit-node small {
      font-size: .68rem;
      line-height: 1;
      font-weight: 800;
      letter-spacing: .01em;
      white-space: nowrap;
    }

    .orbit-icon {
      width: 42px;
      height: 42px;
      border-radius: 50%;
      display: grid;
      place-items: center;
      background: rgba(255,255,255,.18);
      box-shadow: inset 0 1px 0 rgba(255,255,255,.18);
    }

    .orbit-icon svg {
      width: 20px;
      height: 20px;
      fill: none;
      stroke: currentColor;
      stroke-width: 1.8;
      color: #fff;
    }

    .chip-fb .orbit-icon svg,
    .chip-in .orbit-icon svg,
    .chip-tt .orbit-icon svg,
    .chip-ga .orbit-icon svg,
    .chip-yt .orbit-icon svg {
      fill: currentColor;
      stroke: none;
    }

    .chip-yt .yt-play {
      fill: #ffffff;
    }

    .orbit-node-ig { animation-duration: 16s; }
    .orbit-node-ig .orbit-chip { animation-duration: 16s; }

    .orbit-node-fb { animation-duration: 18s; animation-delay: -3s; }
    .orbit-node-fb .orbit-chip { animation-duration: 18s; animation-delay: -3s; }

    .orbit-node-in { animation-duration: 21s; animation-delay: -6s; }
    .orbit-node-in .orbit-chip { animation-duration: 21s; animation-delay: -6s; }

    .orbit-node-tt { animation-duration: 22s; animation-delay: -10s; }
    .orbit-node-tt .orbit-chip { animation-duration: 22s; animation-delay: -10s; }

    .orbit-node-ga { animation-duration: 19s; animation-delay: -14s; }
    .orbit-node-ga .orbit-chip { animation-duration: 19s; animation-delay: -14s; }

    .orbit-node-yt { animation-duration: 24s; animation-delay: -18s; }
    .orbit-node-yt .orbit-chip { animation-duration: 24s; animation-delay: -18s; }

    .hero-world-globe-wrap {
      position: relative;
      width: 290px;
      height: 290px;
      z-index: 4;
      display: grid;
      place-items: center;
      animation: heroGlobeFloat 6s ease-in-out infinite;
    }

    .hero-world-shadow {
      position: absolute;
      width: 70%;
      height: 26px;
      bottom: -16px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(0,0,0,.34), rgba(0,0,0,0));
      filter: blur(6px);
      opacity: .5;
    }

    .hero-world-globe {
      position: relative;
      width: 100%;
      height: 100%;
      border-radius: 50%;
      overflow: hidden;
      background:
        radial-gradient(circle at 34% 28%, rgba(255,255,255,.95) 0 8%, rgba(255,255,255,.32) 18%, rgba(222,181,255,.08) 24%, rgba(200,45,140,.68) 55%, rgba(74,13,122,.96) 100%);
      box-shadow:
        inset -26px -26px 52px rgba(18,4,62,.42),
        inset 18px 18px 28px rgba(255,255,255,.09),
        0 28px 70px rgba(10,2,35,.30);
      border: 1px solid rgba(255,255,255,.16);
      transform-style: preserve-3d;
    }

    .hero-world-globe::before {
      content: "";
      position: absolute;
      inset: 10%;
      border-radius: 50%;
      border: 1px solid rgba(255,255,255,.14);
      opacity: .7;
    }

    .hero-world-globe::after {
      content: "";
      position: absolute;
      inset: 0;
      border-radius: 50%;
      background: linear-gradient(145deg, rgba(255,255,255,.12), transparent 40%, rgba(255,255,255,.06) 70%, transparent);
      pointer-events: none;
    }

    .globe-shine {
      position: absolute;
      width: 38%;
      height: 38%;
      left: 16%;
      top: 12%;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(255,255,255,.62), rgba(255,255,255,0));
      filter: blur(8px);
      opacity: .78;
      z-index: 5;
    }

    .globe-grid {
      position: absolute;
      inset: 0;
      border-radius: 50%;
      opacity: .28;
      pointer-events: none;
    }

    .globe-grid-x {
      background:
        repeating-linear-gradient(
          to bottom,
          transparent 0 16px,
          rgba(255,255,255,.16) 16px 17px
        );
      mask-image: radial-gradient(circle at center, black 62%, transparent 100%);
    }

    .globe-grid-y {
      background:
        repeating-linear-gradient(
          to right,
          transparent 0 18px,
          rgba(255,255,255,.16) 18px 19px
        );
      mask-image: radial-gradient(circle at center, black 62%, transparent 100%);
      transform: rotate(12deg);
    }

    .globe-continents {
      position: absolute;
      inset: 0;
      animation: heroContinentSpin 18s linear infinite;
    }

    .continent {
      position: absolute;
      background: linear-gradient(145deg, rgba(255,255,255,.36), rgba(242,223,255,.18));
      border-radius: 48% 52% 44% 56% / 45% 49% 51% 55%;
      filter: drop-shadow(0 6px 10px rgba(255,255,255,.06));
    }

    .continent-1 {
      width: 84px;
      height: 54px;
      left: 54px;
      top: 80px;
      transform: rotate(-16deg);
    }

    .continent-2 {
      width: 62px;
      height: 76px;
      right: 58px;
      top: 68px;
      transform: rotate(18deg);
    }

    .continent-3 {
      width: 72px;
      height: 44px;
      left: 112px;
      top: 148px;
      transform: rotate(8deg);
    }

    .continent-4 {
      width: 48px;
      height: 64px;
      right: 80px;
      bottom: 74px;
      transform: rotate(14deg);
    }

    .continent-5 {
      width: 56px;
      height: 34px;
      left: 70px;
      bottom: 82px;
      transform: rotate(-10deg);
    }

    .globe-point {
      position: absolute;
      width: 10px;
      height: 10px;
      border-radius: 50%;
      background: #fff;
      box-shadow: 0 0 0 8px rgba(255,255,255,.08), 0 0 18px rgba(255,255,255,.7);
      animation: heroGlobePulse 2.2s ease-in-out infinite;
      z-index: 5;
    }

    .point-1 { left: 74px; top: 92px; }
    .point-2 { left: 138px; top: 154px; animation-delay: -.4s; }
    .point-3 { right: 78px; top: 90px; animation-delay: -.8s; }
    .point-4 { right: 92px; bottom: 84px; animation-delay: -1.2s; }
    .point-5 { left: 94px; bottom: 88px; animation-delay: -1.6s; }

    .hero-world-floating-card {
      position: absolute;
      z-index: 5;
      min-width: 160px;
      padding: 14px 16px;
      border-radius: 20px;
      color: #fff;
      background: rgba(255,255,255,.12);
      border: 1px solid rgba(255,255,255,.16);
      backdrop-filter: blur(16px);
      box-shadow: 0 18px 40px rgba(10,2,35,.16);
      animation: heroFloatingCard 6s ease-in-out infinite;
    }

    .hero-world-floating-card span,
    .hero-world-floating-card small {
      display: block;
      color: rgba(255,255,255,.68);
    }

    .hero-world-floating-card span {
      font-size: .68rem;
      text-transform: uppercase;
      letter-spacing: .08em;
      font-weight: 850;
    }

    .hero-world-floating-card strong {
      display: block;
      margin: 6px 0 5px;
      font-size: 1.42rem;
      line-height: 1;
    }

    .hero-world-floating-card small {
      font-size: .72rem;
      line-height: 1.35;
    }

    .card-one {
      left: 5%;
      top: 12%;
    }

    .card-two {
      right: 5%;
      bottom: 22%;
      animation-delay: -2.6s;
    }

    .hero-world-metrics {
      position: absolute;
      left: 5%;
      right: 5%;
      bottom: 5%;
      z-index: 5;
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 12px;
    }

    .hero-world-metric {
      padding: 15px 14px;
      border-radius: 18px;
      background: rgba(255,255,255,.12);
      border: 1px solid rgba(255,255,255,.16);
      box-shadow: 0 16px 34px rgba(10,2,35,.16);
      backdrop-filter: blur(16px);
    }

    .hero-world-metric span {
      display: block;
      color: rgba(255,255,255,.70);
      font-size: .68rem;
      text-transform: uppercase;
      letter-spacing: .08em;
      font-weight: 850;
    }

    .hero-world-metric strong {
      display: block;
      margin-top: 6px;
      color: #fff;
      font-size: 1.55rem;
      line-height: 1;
      letter-spacing: -.04em;
    }

    @keyframes heroWorldGraphDraw {
      to { stroke-dashoffset: 0; }
    }

    @keyframes heroWorldGraphFill {
      to { transform: scaleY(1); }
    }

    @keyframes heroWorldPointPop {
      from { opacity: 0; transform: scale(.25); }
      to { opacity: 1; transform: scale(1); }
    }

    @keyframes heroOrbit {
      from { transform: rotate(0deg); }
      to { transform: rotate(360deg); }
    }

    @keyframes heroOrbitCounter {
      from { transform: translateX(-50%) rotate(0deg); }
      to { transform: translateX(-50%) rotate(-360deg); }
    }

    @keyframes heroGlobeFloat {
      0%, 100% { transform: translateY(0); }
      50% { transform: translateY(-12px); }
    }

    @keyframes heroContinentSpin {
      from { transform: translateX(0) rotate(0deg); }
      to { transform: translateX(-10px) rotate(-10deg); }
    }

    @keyframes heroGlobePulse {
      0%, 100% { transform: scale(1); box-shadow: 0 0 0 8px rgba(255,255,255,.08), 0 0 18px rgba(255,255,255,.7); }
      50% { transform: scale(1.12); box-shadow: 0 0 0 12px rgba(255,255,255,.06), 0 0 24px rgba(255,255,255,.9); }
    }

    @keyframes orbitTiltA {
      0%,100% { transform: translate(-50%, -50%) rotate(0deg); }
      50% { transform: translate(-50%, -50%) rotate(4deg); }
    }

    @keyframes orbitTiltB {
      0%,100% { transform: translate(-50%, -50%) rotate(18deg); }
      50% { transform: translate(-50%, -50%) rotate(23deg); }
    }

    @keyframes orbitTiltC {
      0%,100% { transform: translate(-50%, -50%) rotate(-22deg); }
      50% { transform: translate(-50%, -50%) rotate(-16deg); }
    }

    @keyframes heroFloatingCard {
      0%,100% { transform: translateY(0); }
      50% { transform: translateY(-10px); }
    }

    @media (max-width: 1180px) {
      .hero-world-grid {
        grid-template-columns: 1fr;
      }

      .hero-world-copy {
        max-width: 760px;
      }

      .hero-world-visual {
        min-height: 620px;
      }
    }

    @media (max-width: 860px) {
      .hero-world-premium {
        padding: 135px 0 86px;
      }

      .hero-world-subline {
        border-radius: 18px;
      }

      .hero-world-visual {
        min-height: 560px;
      }

      .hero-world-stage {
        border-radius: 34px;
      }

      .hero-world-system {
        inset: 10% 6% 20% 8%;
      }

      .orbit-a { width: 340px; height: 340px; }
      .orbit-b { width: 390px; height: 250px; }
      .orbit-c { width: 370px; height: 280px; }

      .orbit-node {
        width: 400px;
        height: 400px;
        margin-left: -200px;
        margin-top: -200px;
      }

      .hero-world-globe-wrap {
        width: 220px;
        height: 220px;
      }

      .hero-world-floating-card {
        min-width: 138px;
      }
    }

    @media (max-width: 680px) {
      .hero-world-premium {
        padding: 122px 0 70px;
      }

      .hero-world-copy h1 {
        font-size: clamp(2.9rem, 14vw, 4.8rem);
      }

      .hero-world-subline {
        max-width: 100%;
        padding: 11px 14px;
        font-size: .8rem;
      }

      .hero-world-proof {
        grid-template-columns: repeat(3, 1fr);
        gap: 12px;
      }

      .hero-world-visual {
        min-height: 490px;
      }

      .hero-world-growth-line {
        height: 64%;
      }

      .hero-world-system {
        inset: 14% 1% 26% 1%;
      }

      .orbit-a { width: 290px; height: 290px; }
      .orbit-b { width: 320px; height: 215px; }
      .orbit-c { width: 310px; height: 235px; }

      .orbit-node {
        width: 320px;
        height: 320px;
        margin-left: -160px;
        margin-top: -160px;
      }

      .orbit-node .orbit-chip {
        min-width: 70px;
        padding: 8px 8px;
        border-radius: 16px;
      }

      .orbit-node small {
        display: none;
      }

      .orbit-icon {
        width: 36px;
        height: 36px;
      }

      .orbit-icon svg {
        width: 17px;
        height: 17px;
      }

      .hero-world-globe-wrap {
        width: 180px;
        height: 180px;
      }

      .continent-1 { width: 52px; height: 34px; left: 34px; top: 50px; }
      .continent-2 { width: 40px; height: 52px; right: 34px; top: 44px; }
      .continent-3 { width: 46px; height: 28px; left: 68px; top: 96px; }
      .continent-4 { width: 32px; height: 44px; right: 52px; bottom: 46px; }
      .continent-5 { width: 36px; height: 22px; left: 44px; bottom: 48px; }

      .point-1 { left: 45px; top: 58px; }
      .point-2 { left: 84px; top: 100px; }
      .point-3 { right: 44px; top: 56px; }
      .point-4 { right: 52px; bottom: 48px; }
      .point-5 { left: 58px; bottom: 50px; }

      .hero-world-floating-card {
        display: none;
      }

      .hero-world-metrics {
        left: 3%;
        right: 3%;
        bottom: 4%;
        gap: 8px;
      }

      .hero-world-metric {
        padding: 11px 10px;
      }

      .hero-world-metric strong {
        font-size: 1.18rem;
      }
    }

    @media (max-width: 480px) {
      .hero-world-proof {
        grid-template-columns: 1fr;
      }

      .hero-world-visual {
        min-height: 450px;
      }

      .hero-world-metrics {
        grid-template-columns: 1fr 1fr 1fr;
      }
    }


    /* Bloomizo branded loading screen */
    .bloomizo-loader {
      position: fixed;
      inset: 0;
      z-index: 999999;
      display: grid;
      place-items: center;
      background:
        radial-gradient(circle at 50% 44%, rgba(247,241,250,.46), rgba(255,255,255,0) 36%),
        #FFFFFF;
      opacity: 1;
      visibility: visible;
      transition: opacity .58s ease, visibility .58s ease;
      overflow: hidden;
    }

    .bloomizo-loader::before,
    .bloomizo-loader::after {
      content: "";
      position: absolute;
      border-radius: 50%;
      filter: blur(16px);
      pointer-events: none;
    }

    .bloomizo-loader::before {
      width: 280px;
      height: 280px;
      top: -120px;
      right: -100px;
      background: radial-gradient(circle, rgba(200,45,140,.09), rgba(200,45,140,0));
    }

    .bloomizo-loader::after {
      width: 320px;
      height: 320px;
      left: -130px;
      bottom: -140px;
      background: radial-gradient(circle, rgba(74,13,122,.08), rgba(74,13,122,0));
    }

    .bloomizo-loader.is-hidden {
      opacity: 0;
      visibility: hidden;
      pointer-events: none;
    }

    .bloomizo-loader.skip-loader {
      display: none !important;
    }

    .bloomizo-loader-inner {
      position: relative;
      z-index: 2;
      width: min(460px, calc(100vw - 48px));
      display: grid;
      justify-items: center;
      gap: 30px;
      transform: translateY(-1vh);
    }

    .bloomizo-loader-brand {
      display: grid;
      justify-items: center;
      gap: 10px;
      animation: bloomizoLoaderEnter .72s cubic-bezier(.2,.75,.2,1) both;
    }

    .bloomizo-loader-logo-wrap {
      width: min(360px, 80vw);
      min-height: 96px;
      display: grid;
      place-items: center;
    }

    .bloomizo-loader-logo {
      width: 100%;
      max-width: 360px;
      height: auto;
      display: block;
      object-fit: contain;
    }

    .bloomizo-loader-tagline {
      margin-top: -2px;
      color: #7A7480;
      font-size: clamp(1rem, 2.3vw, 1.35rem);
      font-weight: 500;
      letter-spacing: .01em;
      text-align: center;
    }

    .bloomizo-loader-progress {
      position: relative;
      width: min(310px, 72vw);
      height: 8px;
      overflow: hidden;
      border-radius: 999px;
      background: #E9EDF3;
      box-shadow: inset 0 1px 2px rgba(36,16,95,.07);
      animation: bloomizoLoaderEnter .72s .08s cubic-bezier(.2,.75,.2,1) both;
    }

    .bloomizo-loader-progress-bar {
      position: absolute;
      inset: 0 auto 0 0;
      width: 6%;
      border-radius: inherit;
      background: linear-gradient(90deg, #7D42F6 0%, #A43DEA 42%, #C82D8C 72%, #F050B3 100%);
      box-shadow: 0 0 18px rgba(200,45,140,.22);
      transition: width .18s ease-out;
    }

    .bloomizo-loader-progress-shine {
      position: absolute;
      top: 0;
      bottom: 0;
      width: 72px;
      left: -80px;
      border-radius: inherit;
      background: linear-gradient(90deg, transparent, rgba(255,255,255,.64), transparent);
      animation: bloomizoLoaderShine 1.15s linear infinite;
    }

    @keyframes bloomizoLoaderEnter {
      from {
        opacity: 0;
        transform: translateY(12px) scale(.985);
      }
      to {
        opacity: 1;
        transform: translateY(0) scale(1);
      }
    }

    @keyframes bloomizoLoaderShine {
      to { left: calc(100% + 80px); }
    }

    @media (max-width: 560px) {
      .bloomizo-loader-inner {
        width: min(350px, calc(100vw - 38px));
        gap: 24px;
      }

      .bloomizo-loader-logo-wrap {
        width: min(300px, 78vw);
        min-height: 78px;
      }

      .bloomizo-loader-logo {
        max-width: 300px;
      }

      .bloomizo-loader-progress {
        width: min(270px, 70vw);
        height: 7px;
      }
    }

    @media (prefers-reduced-motion: reduce) {
      .bloomizo-loader-brand,
      .bloomizo-loader-progress,
      .bloomizo-loader-progress-shine {
        animation: none;
      }

      .bloomizo-loader {
        transition-duration: .2s;
      }
    }

/* Mobile stacked-services readability fix */
    @media (max-width: 600px) {
      .services-stack {
        margin-top: 34px;
        padding-bottom: 12vh;
      }

      .service-stack-card {
        top: calc(84px + (var(--stack-index) * 2px));
        min-height: 0;
        height: auto;
        margin-bottom: 24vh;
        padding: 18px 17px 20px;
        border-radius: 24px;
        grid-template-columns: 1fr;
        gap: 8px;
        align-items: start;
        overflow: hidden;
      }

      .service-stack-card:last-child {
        margin-bottom: 0;
      }

      .service-stack-visual {
        min-height: 145px;
        height: 145px;
        order: 1;
        margin-bottom: 2px;
      }

      .service-stack-copy {
        order: 2;
      }

      .service-3d-icon {
        width: 122px;
        border-radius: 32%;
      }

      .service-orbit.orbit-a {
        width: 165px;
        height: 58px;
      }

      .service-orbit.orbit-b {
        width: 132px;
        height: 132px;
      }

      .service-float-label {
        display: none;
      }

      .service-stack-topline {
        gap: 8px;
        margin-bottom: 9px;
      }

      .service-stack-number {
        font-size: .72rem;
        letter-spacing: .10em;
      }

      .service-stack-category {
        padding: 5px 9px;
        font-size: .62rem;
        letter-spacing: .055em;
      }

      .service-stack-card h3 {
        font-size: clamp(1.72rem, 8.7vw, 2.45rem);
        line-height: 1;
        letter-spacing: -.045em;
      }

      .service-stack-card p {
        margin-top: 8px;
        font-size: .82rem;
        line-height: 1.42;
      }

      .service-stack-list {
        margin-top: 12px;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 6px 10px;
      }

      .service-stack-list li {
        gap: 6px;
        font-size: .75rem;
        line-height: 1.28;
      }

      .service-stack-list li::before {
        font-size: .58rem;
        margin-top: 2px;
      }

      .service-stack-cta {
        margin-top: 13px;
        padding: 8px 11px;
        font-size: .74rem;
      }

      .service-stack-cta span {
        font-size: .86rem;
      }
    }

    @media (max-width: 390px) {
      .service-stack-card {
        top: calc(82px + (var(--stack-index) * 1px));
        margin-bottom: 28vh;
        padding: 16px 15px 18px;
      }

      .service-stack-visual {
        min-height: 128px;
        height: 128px;
      }

      .service-3d-icon {
        width: 108px;
      }

      .service-orbit.orbit-a {
        width: 146px;
        height: 52px;
      }

      .service-orbit.orbit-b {
        width: 118px;
        height: 118px;
      }

      .service-stack-card h3 {
        font-size: clamp(1.58rem, 8.4vw, 2.15rem);
      }

      .service-stack-card p {
        font-size: .78rem;
      }

      .service-stack-list {
        gap: 5px 8px;
      }

      .service-stack-list li {
        font-size: .70rem;
      }

      .service-stack-cta {
        margin-top: 10px;
        padding: 7px 10px;
      }
    }

/* ---------------------------------------------------------
   Performance layer — preserves the visual design while
   reducing expensive rendering work, especially on mobile.
   --------------------------------------------------------- */

main > section:not(#home):not(#services) {
  content-visibility: auto;
  contain-intrinsic-size: 820px;
}

.project-card,
.blog-card,
.team-card,
.pricing-card,
.client-logo,
.stat-card {
  contain: layout paint;
}

/* Moving glass elements are much cheaper without live backdrop sampling. */
.social-bg-icon,
.orbit-node .orbit-chip {
  -webkit-backdrop-filter: none !important;
  backdrop-filter: none !important;
  background-color: rgba(255,255,255,.13);
}

/* Only promote elements that actually animate. */
.orbit-node,
.hero-world-globe-wrap,
.world-growth-stroke,
.country-flow-track {
  backface-visibility: hidden;
  transform: translateZ(0);
}

@media (hover: none), (pointer: coarse) {
  .btn::after {
    display: none;
  }

  .btn:hover,
  .card:hover,
  .pricing-card.featured:hover {
    transform: none;
  }
}

@media (max-width: 768px) {
  /* Large live blur filters are among the biggest mobile GPU costs. */
  .hero-world-bg-glow,
  .hero-world-stage-glow,
  .hero-clean-glow,
  .bloomizo-loader::before,
  .bloomizo-loader::after {
    filter: none !important;
  }

  .hero-world-subline,
  .hero-world-secondary,
  .hero-world-metric,
  .hero-world-floating-card,
  .social-bg-icon,
  .contact-info,
  .stat-card {
    -webkit-backdrop-filter: none !important;
    backdrop-filter: none !important;
  }

  .hero-world-subline,
  .hero-world-secondary,
  .hero-world-metric,
  .hero-world-floating-card {
    background: rgba(255,255,255,.14);
  }

  .hero-world-stage {
    transition: none !important;
    box-shadow: 0 24px 55px rgba(15,3,45,.22);
  }

  .service-stack-card {
    will-change: auto !important;
    box-shadow: 0 20px 48px rgba(36,16,95,.15);
  }

  .social-bg-icon {
    box-shadow: none;
  }

  .hero-world-globe {
    box-shadow:
      inset -18px -18px 36px rgba(18,4,62,.34),
      0 20px 45px rgba(10,2,35,.22);
  }
}

/* Pause decorative motion when the tab/app is not visible. */
html.page-hidden .social-bg-icon,
html.page-hidden .orbit-node,
html.page-hidden .hero-world-globe-wrap,
html.page-hidden .country-flow-track,
html.page-hidden .hero-world-bg-glow,
html.page-hidden .hero-world-stage-glow {
  animation-play-state: paused !important;
}


/* =========================================================
   Enhanced Homepage — lightweight, no new heavy animations
   ========================================================= */

.home-trust-strip {
  padding: 34px 0 42px;
  background: #fff;
  border-bottom: 1px solid rgba(74,13,122,.08);
}

.home-trust-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 24px;
  margin-bottom: 22px;
}

.home-trust-head span {
  color: var(--pink);
  font-size: .78rem;
  font-weight: 900;
  letter-spacing: .10em;
  text-transform: uppercase;
}

.home-trust-head strong {
  max-width: 720px;
  color: var(--deep-purple);
  font-size: clamp(1rem, 2vw, 1.25rem);
  line-height: 1.45;
  text-align: right;
}

.home-client-row {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 10px;
}

.home-client-chip {
  min-height: 76px;
  padding: 12px 10px;
  border: 1px solid rgba(74,13,122,.09);
  border-radius: 18px;
  background: #fff;
  color: var(--deep-purple);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  text-align: left;
  font-size: .76rem;
  line-height: 1.25;
  font-weight: 850;
  box-shadow: 0 8px 22px rgba(36,16,95,.045);
  transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}

.home-client-chip:hover {
  transform: translateY(-3px);
  border-color: rgba(200,45,140,.22);
  box-shadow: 0 12px 28px rgba(36,16,95,.08);
}

.home-client-letter {
  width: 34px;
  height: 34px;
  flex: 0 0 34px;
  border-radius: 11px;
  display: grid;
  place-items: center;
  color: #fff;
  background: var(--gradient);
  font-weight: 900;
}

.home-section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, .7fr);
  gap: 46px;
  align-items: end;
}

.home-section-heading .section-copy {
  margin-top: 0;
}

.home-service-grid {
  margin-top: 48px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.home-service-card {
  position: relative;
  min-height: 285px;
  padding: 26px;
  overflow: hidden;
  border-radius: 26px;
  background: #fff;
  border: 1px solid rgba(74,13,122,.10);
  color: var(--charcoal);
  box-shadow: 0 14px 34px rgba(36,16,95,.065);
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}

.home-service-card::after {
  content: "";
  position: absolute;
  width: 130px;
  height: 130px;
  right: -46px;
  top: -54px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(200,45,140,.11), rgba(200,45,140,0) 70%);
  pointer-events: none;
}

.home-service-card:hover {
  transform: translateY(-5px);
  border-color: rgba(200,45,140,.24);
  box-shadow: 0 20px 44px rgba(36,16,95,.10);
}

.home-service-index {
  position: absolute;
  top: 23px;
  right: 24px;
  color: rgba(74,13,122,.34);
  font-size: .74rem;
  font-weight: 900;
  letter-spacing: .11em;
}

.home-service-icon {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 17px;
  color: #fff;
  background: var(--gradient);
  box-shadow: 0 12px 28px rgba(200,45,140,.18);
  font-size: 1.2rem;
  font-weight: 900;
}

.home-service-card h3 {
  margin-top: 24px;
  color: var(--deep-purple);
  font-size: 1.28rem;
  line-height: 1.2;
}

.home-service-card p {
  margin-top: 10px;
  color: var(--muted);
  font-size: .92rem;
}

.home-service-link {
  position: absolute;
  left: 26px;
  bottom: 24px;
  color: var(--pink);
  font-size: .84rem;
  font-weight: 900;
}

.home-service-actions {
  margin-top: 28px;
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.home-why-section {
  background:
    radial-gradient(circle at 84% 20%, rgba(200,45,140,.09), transparent 24%),
    linear-gradient(180deg, #fff, #FBF8FC);
}

.home-why-layout {
  display: grid;
  grid-template-columns: .82fr 1.18fr;
  gap: 58px;
  align-items: center;
}

.home-why-copy .btn {
  margin-top: 28px;
}

.home-value-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.home-value-card {
  min-height: 205px;
  padding: 25px;
  border-radius: 24px;
  background: #fff;
  border: 1px solid rgba(74,13,122,.09);
  box-shadow: 0 12px 30px rgba(36,16,95,.055);
}

.home-value-card > span {
  display: inline-flex;
  color: var(--pink);
  font-size: .76rem;
  font-weight: 900;
  letter-spacing: .10em;
}

.home-value-card h3 {
  margin-top: 24px;
  color: var(--deep-purple);
  font-size: 1.24rem;
}

.home-value-card p {
  margin-top: 9px;
  color: var(--muted);
  font-size: .9rem;
}

.home-work-grid {
  margin-top: 44px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.home-work-card {
  padding: 27px;
  border-radius: 26px;
  background: #fff;
  border: 1px solid rgba(74,13,122,.09);
  box-shadow: 0 12px 30px rgba(36,16,95,.055);
}

.home-work-top {
  display: flex;
  align-items: center;
  gap: 14px;
}

.home-work-brand {
  width: 54px;
  height: 54px;
  flex: 0 0 54px;
  border-radius: 17px;
  display: grid;
  place-items: center;
  color: #fff;
  background: var(--gradient);
  font-size: .86rem;
  font-weight: 900;
  box-shadow: 0 12px 25px rgba(200,45,140,.18);
}

.home-work-card h3 {
  color: var(--deep-purple);
  font-size: 1.2rem;
}

.home-work-top div > span {
  display: block;
  margin-top: 3px;
  color: var(--pink);
  font-size: .78rem;
  font-weight: 850;
}

.home-work-card p {
  margin-top: 19px;
  color: var(--muted);
  font-size: .91rem;
}

.home-work-card > a {
  display: inline-flex;
  margin-top: 18px;
  color: var(--deep-purple);
  font-size: .82rem;
  font-weight: 900;
}

.home-review-note {
  margin: 22px auto 0;
  max-width: 720px;
  text-align: center;
  color: var(--muted);
  font-size: .8rem;
}

.home-growth-process {
  background: #fff;
}

.home-growth-head {
  max-width: 790px;
}

.home-process-row {
  margin-top: 44px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.home-process-step {
  position: relative;
  min-height: 210px;
  padding: 25px 22px;
  border-radius: 24px;
  overflow: hidden;
  color: #fff;
  background: linear-gradient(145deg, #24105F 0%, #4A0D7A 58%, #7D1C8A 100%);
  box-shadow: 0 16px 38px rgba(36,16,95,.14);
}

.home-process-step::after {
  content: "";
  position: absolute;
  width: 130px;
  height: 130px;
  right: -60px;
  bottom: -65px;
  border-radius: 50%;
  border: 22px solid rgba(255,255,255,.07);
}

.home-process-number {
  color: #FFD3EC;
  font-size: .76rem;
  font-weight: 900;
  letter-spacing: .12em;
}

.home-process-step h3 {
  margin-top: 38px;
  font-size: 1.45rem;
}

.home-process-step p {
  margin-top: 10px;
  color: rgba(255,255,255,.72);
  font-size: .88rem;
}

.home-final-cta {
  padding-top: 18px;
  padding-bottom: 80px;
  background: #fff;
}

.home-final-cta-inner {
  padding: clamp(30px, 5vw, 54px);
  border-radius: 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  color: #fff;
  background:
    radial-gradient(circle at 86% 20%, rgba(255,255,255,.14), transparent 28%),
    linear-gradient(120deg, #24105F 0%, #4A0D7A 52%, #C82D8C 100%);
  box-shadow: 0 24px 60px rgba(36,16,95,.18);
}

.home-final-cta-inner > div:first-child {
  max-width: 700px;
}

.home-final-cta-inner span {
  color: #FFD3EC;
  font-size: .8rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .10em;
}

.home-final-cta-inner h2 {
  margin-top: 10px;
  font-size: clamp(2rem, 4vw, 3.5rem);
  line-height: 1.05;
  letter-spacing: -.05em;
}

.home-final-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
}

.home-final-whatsapp {
  color: #fff;
  background: rgba(255,255,255,.11);
  border: 1px solid rgba(255,255,255,.20);
}

@media (max-width: 1100px) {
  .home-client-row {
    grid-template-columns: repeat(3, 1fr);
  }

  .home-service-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .home-why-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 820px) {
  .home-section-heading {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .home-process-row {
    grid-template-columns: repeat(2, 1fr);
  }

  .home-final-cta-inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .home-final-cta-actions {
    justify-content: flex-start;
  }
}

@media (max-width: 620px) {
  .home-trust-head {
    align-items: flex-start;
    flex-direction: column;
  }

  .home-trust-head strong {
    text-align: left;
  }

  .home-client-row {
    grid-template-columns: repeat(2, 1fr);
  }

  .home-client-chip {
    min-height: 68px;
    justify-content: flex-start;
    font-size: .7rem;
  }

  .home-service-grid,
  .home-value-grid,
  .home-work-grid,
  .home-process-row {
    grid-template-columns: 1fr;
  }

  .home-service-card {
    min-height: 255px;
  }

  .home-value-card,
  .home-process-step {
    min-height: 175px;
  }

  .home-process-step h3 {
    margin-top: 24px;
  }

  .home-final-cta {
    padding-bottom: 58px;
  }
}

@media (max-width: 390px) {
  .home-client-row {
    grid-template-columns: 1fr;
  }

  .home-client-chip {
    min-height: 62px;
  }
}



/* Professional homepage reviews */
.home-reviews-head{
  display:grid;grid-template-columns:minmax(0,1fr) minmax(320px,.7fr);
  gap:48px;align-items:end
}
.home-reviews-head .section-copy{margin-top:0}
.home-reviews-grid{
  margin-top:46px;display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:20px
}
.home-review-card{
  position:relative;min-height:350px;padding:28px;border-radius:28px;background:#fff;
  border:1px solid rgba(74,13,122,.09);box-shadow:0 16px 38px rgba(36,16,95,.07);overflow:hidden
}
.home-review-card-top{
  display:grid;grid-template-columns:auto 1fr auto;gap:14px;align-items:center
}
.home-review-avatar{
  width:50px;height:50px;border-radius:16px;display:grid;place-items:center;color:#fff;
  background:var(--gradient);font-size:.82rem;font-weight:900
}
.home-review-client h3{color:var(--deep-purple);font-size:1.08rem;line-height:1.2}
.home-review-client span{display:block;margin-top:4px;color:var(--muted);font-size:.76rem;font-weight:700}
.home-review-stars{color:#F0A320;letter-spacing:.08em;font-size:.82rem;white-space:nowrap}
.home-review-quote-mark{margin-top:18px;height:34px;color:rgba(200,45,140,.25);font-family:Georgia,serif;font-size:4.4rem;line-height:1}
.home-review-card blockquote{margin:2px 0 0;color:#38294D;font-size:1.02rem;line-height:1.7;font-weight:600}
.home-review-footer{
  margin-top:22px;padding-top:18px;border-top:1px solid rgba(74,13,122,.08);
  display:flex;align-items:center;justify-content:space-between;gap:14px
}
.home-review-draft{
  display:inline-flex;padding:6px 9px;border-radius:999px;background:rgba(74,13,122,.055);
  color:rgba(74,13,122,.72);font-size:.66rem;line-height:1.2;font-weight:800
}
.home-review-footer a{color:var(--pink);font-size:.76rem;font-weight:900;white-space:nowrap}
@media(max-width:850px){
  .home-reviews-head{grid-template-columns:1fr;gap:18px}
  .home-reviews-grid{grid-template-columns:1fr}
}
@media(max-width:620px){
  .home-review-card{min-height:0;padding:22px}
  .home-review-card-top{grid-template-columns:auto 1fr}
  .home-review-stars{grid-column:2;margin-top:-4px}
  .home-review-card blockquote{font-size:.93rem;line-height:1.6}
  .home-review-footer{align-items:flex-start;flex-direction:column}
}



/* =========================================================
   Unique homepage service visuals
   ========================================================= */
.home-services-visual {
  background:
    radial-gradient(circle at 8% 12%, rgba(200,45,140,.07), transparent 20%),
    linear-gradient(180deg, #ffffff 0%, #fbf8fc 100%);
}

.home-feature-grid {
  margin-top: 46px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.home-feature-card {
  overflow: hidden;
  border-radius: 28px;
  background: #fff;
  border: 1px solid rgba(74,13,122,.09);
  box-shadow: 0 16px 40px rgba(36,16,95,.07);
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}

.home-feature-card:hover {
  transform: translateY(-5px);
  border-color: rgba(200,45,140,.22);
  box-shadow: 0 22px 46px rgba(36,16,95,.10);
}

.home-feature-media {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #f4eef7;
}

.home-feature-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.home-feature-body {
  padding: 24px 24px 26px;
}

.home-feature-kicker {
  display: inline-flex;
  padding: 7px 11px;
  border-radius: 999px;
  color: var(--pink);
  background: rgba(200,45,140,.08);
  font-size: .72rem;
  font-weight: 900;
  letter-spacing: .07em;
  text-transform: uppercase;
}

.home-feature-card h3 {
  margin-top: 16px;
  color: var(--deep-purple);
  font-size: 1.42rem;
  line-height: 1.25;
}

.home-feature-card p {
  margin-top: 10px;
  color: var(--muted);
  font-size: .92rem;
}

.home-feature-card ul {
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 7px;
}

.home-feature-card li {
  color: #38294D;
  font-size: .84rem;
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.home-feature-card li::before {
  content: "✦";
  color: var(--pink);
  font-size: .72rem;
  margin-top: 2px;
}

.home-feature-card a {
  display: inline-flex;
  margin-top: 18px;
  color: var(--deep-purple);
  font-size: .84rem;
  font-weight: 900;
}

/* =========================================================
   Unique homepage review slider
   ========================================================= */
.home-reviews-slider-section {
  position: relative;
  overflow: hidden;
}

.home-reviews-slider-section::before {
  content: "";
  position: absolute;
  width: 460px;
  height: 460px;
  left: -210px;
  top: -180px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(200,45,140,.09), rgba(200,45,140,0) 70%);
  pointer-events: none;
}

.home-reviews-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, .72fr);
  gap: 48px;
  align-items: end;
}

.home-reviews-hero .section-copy {
  margin-top: 0;
}

.home-reviews-slider-shell {
  margin-top: 42px;
}

.home-slider-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 22px;
  margin-bottom: 18px;
}

.home-slider-note strong {
  display: block;
  color: var(--deep-purple);
  font-size: .98rem;
}

.home-slider-note span {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: .82rem;
}

.home-slider-controls {
  display: flex;
  gap: 10px;
}

.home-slider-btn {
  width: 48px;
  height: 48px;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  color: #fff;
  background: var(--gradient);
  box-shadow: 0 12px 26px rgba(200,45,140,.18);
  transition: transform .2s ease, box-shadow .2s ease;
}

.home-slider-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 32px rgba(200,45,140,.24);
}

.home-slider-btn span {
  font-size: 1.06rem;
  font-weight: 900;
}

.home-review-slider-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(340px, 420px);
  gap: 18px;
  overflow-x: auto;
  padding-bottom: 10px;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scrollbar-width: none;
}

.home-review-slider-track::-webkit-scrollbar {
  display: none;
}

.home-review-slide-card {
  scroll-snap-align: start;
  overflow: hidden;
  border-radius: 30px;
  background: #fff;
  border: 1px solid rgba(74,13,122,.09);
  box-shadow: 0 18px 42px rgba(36,16,95,.08);
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

.home-review-slide-media {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #efe9f4;
}

.home-review-slide-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.home-review-service-tag {
  position: absolute;
  left: 16px;
  bottom: 16px;
  padding: 7px 12px;
  border-radius: 999px;
  color: #fff;
  background: rgba(36,16,95,.78);
  font-size: .72rem;
  font-weight: 900;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.home-review-slide-body {
  padding: 22px 22px 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.home-review-slide-top {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 12px;
  align-items: center;
}

.home-review-slide-top h3 {
  color: var(--deep-purple);
  font-size: 1.06rem;
  line-height: 1.2;
}

.home-review-slide-top span {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: .75rem;
  font-weight: 700;
}

.home-review-slide-card blockquote {
  margin: 18px 0 0;
  color: #38294D;
  font-size: .95rem;
  line-height: 1.7;
  font-weight: 600;
  flex: 1;
}

.home-review-slide-footer {
  margin-top: 22px;
  padding-top: 17px;
  border-top: 1px solid rgba(74,13,122,.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

@media (max-width: 1080px) {
  .home-feature-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 880px) {
  .home-reviews-hero {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .home-slider-head {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 620px) {
  .home-feature-body {
    padding: 18px 18px 20px;
  }

  .home-feature-card h3 {
    font-size: 1.22rem;
  }

  .home-review-slider-track {
    grid-auto-columns: 88%;
  }

  .home-review-slide-body {
    padding: 18px 18px 20px;
  }

  .home-review-slide-top {
    grid-template-columns: auto 1fr;
  }

  .home-review-stars {
    grid-column: 2;
    margin-top: -3px;
  }

  .home-review-slide-card blockquote {
    font-size: .9rem;
    line-height: 1.6;
  }

  .home-review-slide-footer {
    align-items: flex-start;
    flex-direction: column;
  }
}



/* =========================================================
   Homepage mobile compact pass
   ========================================================= */
@media (max-width: 620px) {
  body.home-page .section {
    padding-top: 62px;
    padding-bottom: 62px;
  }

  body.home-page .section-sm {
    padding-top: 44px;
    padding-bottom: 44px;
  }

  .home-section-heading,
  .home-reviews-hero {
    gap: 12px;
  }

  .home-section-heading .section-copy,
  .home-reviews-hero .section-copy,
  .home-why-copy .section-copy {
    font-size: .84rem;
    line-height: 1.5;
    max-width: 100%;
  }

  .home-section-heading .section-title,
  .home-reviews-hero .section-title,
  .home-why-copy .section-title,
  .home-growth-head .section-title {
    font-size: clamp(1.9rem, 8.8vw, 2.5rem);
    line-height: 1.02;
  }

  .home-trust-strip {
    padding: 24px 0 30px;
  }

  .home-trust-head {
    gap: 8px;
    margin-bottom: 16px;
  }

  .home-trust-head strong {
    font-size: .92rem;
    line-height: 1.35;
  }

  .home-client-row {
    gap: 8px;
  }

  .home-client-chip {
    min-height: 58px;
    padding: 9px 10px;
    border-radius: 14px;
  }

  .home-client-letter {
    width: 30px;
    height: 30px;
    flex-basis: 30px;
    border-radius: 9px;
  }

  .home-feature-grid {
    margin-top: 28px;
    gap: 16px;
  }

  .home-feature-card {
    border-radius: 22px;
  }

  .home-feature-media {
    aspect-ratio: 16 / 7.8;
  }

  .home-feature-body {
    padding: 16px 16px 18px;
  }

  .home-feature-kicker {
    padding: 5px 8px;
    font-size: .62rem;
  }

  .home-feature-card h3 {
    margin-top: 11px;
    font-size: 1.08rem;
    line-height: 1.2;
  }

  .home-feature-card p {
    margin-top: 7px;
    font-size: .8rem;
    line-height: 1.45;
  }

  .home-feature-card ul {
    margin-top: 10px;
    gap: 4px;
  }

  .home-feature-card li {
    font-size: .74rem;
  }

  .home-feature-card a {
    margin-top: 12px;
    font-size: .76rem;
  }

  .home-service-actions {
    margin-top: 20px;
    gap: 8px;
  }

  .home-service-actions .btn {
    width: 100%;
    justify-content: center;
  }

  .home-why-layout {
    gap: 28px;
  }

  .home-why-copy .btn {
    margin-top: 18px;
  }

  .home-value-grid {
    gap: 10px;
  }

  .home-value-card {
    min-height: 0;
    padding: 17px;
    border-radius: 18px;
  }

  .home-value-card h3 {
    margin-top: 12px;
    font-size: 1rem;
  }

  .home-value-card p {
    margin-top: 6px;
    font-size: .78rem;
    line-height: 1.4;
  }

  .home-reviews-slider-shell {
    margin-top: 26px;
  }

  .home-slider-head {
    margin-bottom: 12px;
    gap: 12px;
  }

  .home-slider-note strong {
    font-size: .86rem;
  }

  .home-slider-note span {
    font-size: .72rem;
  }

  .home-slider-btn {
    width: 42px;
    height: 42px;
  }

  .home-review-slider-track {
    grid-auto-columns: 91%;
    gap: 12px;
    padding-bottom: 4px;
  }

  .home-review-slide-card {
    border-radius: 22px;
  }

  .home-review-slide-media {
    aspect-ratio: 16 / 7.5;
  }

  .home-review-service-tag {
    left: 12px;
    bottom: 10px;
    padding: 5px 8px;
    font-size: .6rem;
  }

  .home-review-slide-body {
    padding: 15px 15px 17px;
  }

  .home-review-avatar {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    font-size: .7rem;
  }

  .home-review-slide-top {
    gap: 8px;
  }

  .home-review-slide-top h3 {
    font-size: .94rem;
  }

  .home-review-slide-top span {
    font-size: .66rem;
  }

  .home-review-stars {
    font-size: .7rem;
  }

  .home-review-slide-card blockquote {
    margin-top: 13px;
    font-size: .82rem;
    line-height: 1.5;
  }

  .home-review-slide-footer {
    margin-top: 14px;
    padding-top: 12px;
    gap: 7px;
  }

  .home-review-draft {
    padding: 4px 7px;
    font-size: .56rem;
  }

  .home-review-slide-footer a {
    font-size: .68rem;
  }

  .home-process-row {
    margin-top: 26px;
    gap: 10px;
  }

  .home-process-step {
    min-height: 0;
    padding: 18px 16px;
    border-radius: 18px;
  }

  .home-process-step h3 {
    margin-top: 14px;
    font-size: 1.16rem;
  }

  .home-process-step p {
    margin-top: 6px;
    font-size: .76rem;
    line-height: 1.4;
  }

  .home-final-cta {
    padding-top: 10px;
    padding-bottom: 44px;
  }

  .home-final-cta-inner {
    padding: 24px 20px;
    border-radius: 24px;
    gap: 18px;
  }

  .home-final-cta-inner h2 {
    font-size: 1.85rem;
    line-height: 1.05;
  }

  .home-final-cta-actions {
    width: 100%;
  }

  .home-final-cta-actions .btn {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 390px) {
  body.home-page .section {
    padding-top: 54px;
    padding-bottom: 54px;
  }

  .home-feature-media,
  .home-review-slide-media {
    aspect-ratio: 16 / 7;
  }

  .home-review-slider-track {
    grid-auto-columns: 94%;
  }

  .home-client-chip {
    font-size: .66rem;
  }
}



/* =========================================================
   Premium Clients Page
   ========================================================= */
.clients-page-hero {
  position: relative;
  padding: clamp(92px, 10vw, 145px) 0 clamp(70px, 8vw, 115px);
  overflow: hidden;
  background:
    radial-gradient(circle at 88% 22%, rgba(200,45,140,.15), transparent 26%),
    radial-gradient(circle at 72% 78%, rgba(74,13,122,.12), transparent 28%),
    linear-gradient(180deg, #fff 0%, #fbf7fc 100%);
}

.clients-page-hero::after {
  content: "";
  position: absolute;
  width: 460px;
  height: 460px;
  left: -220px;
  bottom: -250px;
  border-radius: 50%;
  border: 60px solid rgba(74,13,122,.035);
  pointer-events: none;
}

.clients-hero-layout {
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(470px, 1.08fr);
  gap: 72px;
  align-items: center;
}

.clients-hero-copy {
  position: relative;
  z-index: 2;
}

.clients-hero-copy h1 {
  margin-top: 16px;
  max-width: 780px;
  color: var(--deep-purple);
  font-size: clamp(3rem, 6vw, 5.8rem);
  line-height: .96;
  letter-spacing: -.065em;
}

.clients-hero-copy p {
  margin-top: 22px;
  max-width: 650px;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.72;
}

.clients-hero-actions {
  margin-top: 30px;
  display: flex;
  flex-wrap: wrap;
  gap: 11px;
}

.clients-logo-cloud {
  position: relative;
  min-height: 500px;
  isolation: isolate;
}

.clients-cloud-center {
  position: absolute;
  inset: 50% auto auto 50%;
  width: 190px;
  height: 190px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 8px;
  background: #fff;
  border: 1px solid rgba(74,13,122,.10);
  box-shadow: 0 28px 70px rgba(36,16,95,.13);
  z-index: 3;
}

.clients-cloud-center::before,
.clients-cloud-center::after {
  content: "";
  position: absolute;
  inset: -55px;
  border-radius: 50%;
  border: 1px dashed rgba(74,13,122,.13);
  z-index: -1;
}

.clients-cloud-center::after {
  inset: -128px;
  border-style: solid;
  border-color: rgba(200,45,140,.08);
}

.clients-cloud-center img {
  width: 118px;
  max-height: 54px;
  object-fit: contain;
}

.clients-cloud-center small {
  color: var(--pink);
  font-size: .68rem;
  font-weight: 900;
  letter-spacing: .09em;
  text-transform: uppercase;
}

.clients-cloud-logo {
  position: absolute;
  width: 122px;
  min-height: 104px;
  padding: 13px 10px;
  border-radius: 24px;
  background: #fff;
  border: 1px solid rgba(74,13,122,.09);
  box-shadow: 0 15px 38px rgba(36,16,95,.08);
  display: grid;
  place-items: center;
  align-content: center;
  gap: 9px;
  text-align: center;
  color: var(--deep-purple);
  transition: transform .2s ease, box-shadow .2s ease;
  z-index: 4;
}

.clients-cloud-logo:hover {
  transform: translateY(-5px);
  box-shadow: 0 22px 46px rgba(36,16,95,.13);
}

.clients-cloud-logo img {
  width: 42px;
  height: 42px;
  border-radius: 11px;
  object-fit: contain;
  background: #fff;
}

.clients-cloud-logo span {
  max-width: 100px;
  font-size: .67rem;
  line-height: 1.2;
  font-weight: 900;
}

.cloud-a { left: 4%; top: 5%; }
.cloud-b { right: 4%; top: 9%; }
.cloud-c { left: 0; bottom: 12%; }
.cloud-d { right: 1%; bottom: 10%; }
.cloud-e { left: 31%; top: 0; }
.cloud-f { right: 28%; bottom: 0; }

.clients-showcase-section {
  background: #fff;
}

.clients-section-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, .72fr);
  gap: 46px;
  align-items: end;
}

.clients-section-head .section-copy {
  margin-top: 0;
}

.clients-premium-grid {
  margin-top: 46px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.client-premium-card {
  position: relative;
  min-height: 360px;
  padding: 24px;
  overflow: hidden;
  border-radius: 28px;
  background: #fff;
  border: 1px solid rgba(74,13,122,.095);
  box-shadow: 0 14px 35px rgba(36,16,95,.065);
  display: flex;
  flex-direction: column;
  color: var(--charcoal);
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}

.client-premium-card::after {
  content: "";
  position: absolute;
  width: 130px;
  height: 130px;
  right: -58px;
  bottom: -58px;
  border-radius: 50%;
  border: 22px solid rgba(200,45,140,.05);
  pointer-events: none;
}

.client-premium-card:hover {
  transform: translateY(-6px);
  border-color: rgba(200,45,140,.24);
  box-shadow: 0 22px 48px rgba(36,16,95,.10);
}

.client-card-featured {
  background:
    radial-gradient(circle at 88% 8%, rgba(255,255,255,.14), transparent 22%),
    linear-gradient(145deg, #24105F 0%, #4A0D7A 66%, #6e1486 100%);
  border-color: transparent;
  color: #fff;
}

.client-card-featured .client-premium-copy h3,
.client-card-featured .client-card-link {
  color: #fff;
}

.client-card-featured .client-premium-copy p {
  color: rgba(255,255,255,.72);
}

.client-card-featured .client-industry,
.client-card-featured .client-service-tags span {
  color: #fff;
  background: rgba(255,255,255,.12);
  border-color: rgba(255,255,255,.14);
}

.client-card-featured .client-card-link {
  border-color: rgba(255,255,255,.15);
}

.client-premium-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 14px;
}

.client-logo-box {
  width: 74px;
  height: 74px;
  border-radius: 20px;
  background: #fff;
  border: 1px solid rgba(74,13,122,.08);
  box-shadow: 0 10px 25px rgba(36,16,95,.07);
  display: grid;
  place-items: center;
  position: relative;
}

.client-logo-box img {
  width: 48px;
  height: 48px;
  border-radius: 11px;
  object-fit: contain;
  position: relative;
  z-index: 2;
}

.client-logo-fallback {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: var(--deep-purple);
  font-size: .86rem;
  font-weight: 900;
  z-index: 1;
}

.client-industry {
  padding: 7px 10px;
  border-radius: 999px;
  color: var(--pink);
  background: rgba(200,45,140,.07);
  border: 1px solid rgba(200,45,140,.08);
  font-size: .66rem;
  font-weight: 900;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.client-premium-copy {
  margin-top: 28px;
}

.client-premium-copy h3 {
  color: var(--deep-purple);
  font-size: 1.34rem;
  line-height: 1.18;
}

.client-premium-copy p {
  margin-top: 10px;
  color: var(--muted);
  font-size: .88rem;
  line-height: 1.55;
}

.client-service-tags {
  margin-top: 18px;
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.client-service-tags span {
  padding: 6px 9px;
  border-radius: 999px;
  color: #5a3e72;
  background: rgba(74,13,122,.045);
  border: 1px solid rgba(74,13,122,.07);
  font-size: .66rem;
  font-weight: 800;
}

.client-card-link {
  margin-top: auto;
  padding-top: 22px;
  border-top: 1px solid rgba(74,13,122,.08);
  color: var(--deep-purple);
  font-size: .78rem;
  font-weight: 900;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.client-card-link strong {
  color: var(--pink);
  font-size: 1rem;
}

.clients-industry-strip {
  background: linear-gradient(180deg, #fbf8fc, #fff);
}

.clients-industries {
  padding: 34px;
  border-radius: 30px;
  background: #fff;
  border: 1px solid rgba(74,13,122,.08);
  box-shadow: 0 18px 46px rgba(36,16,95,.06);
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 40px;
  align-items: center;
}

.clients-industries-copy h2 {
  margin-top: 10px;
  color: var(--deep-purple);
  font-size: clamp(1.8rem, 3vw, 3rem);
  line-height: 1.05;
  letter-spacing: -.04em;
}

.clients-industry-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  justify-content: flex-end;
}

.clients-industry-pills span {
  padding: 10px 13px;
  border-radius: 999px;
  color: var(--deep-purple);
  background: #f8f3fa;
  border: 1px solid rgba(74,13,122,.08);
  font-size: .76rem;
  font-weight: 850;
}

.clients-page-cta {
  padding-top: 20px;
  padding-bottom: 80px;
  background: #fff;
}

.clients-cta-box {
  padding: clamp(28px, 5vw, 50px);
  border-radius: 32px;
  background:
    radial-gradient(circle at 88% 16%, rgba(255,255,255,.12), transparent 27%),
    linear-gradient(120deg, #24105F 0%, #4A0D7A 55%, #C82D8C 100%);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  box-shadow: 0 24px 60px rgba(36,16,95,.17);
}

.clients-cta-box > div {
  max-width: 720px;
}

.clients-cta-box > div > span {
  color: #ffd3ec;
  font-size: .78rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .09em;
}

.clients-cta-box h2 {
  margin-top: 8px;
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1.05;
  letter-spacing: -.045em;
}

@media (max-width: 1100px) {
  .clients-hero-layout {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .clients-logo-cloud {
    min-height: 440px;
    max-width: 680px;
    width: 100%;
    margin: 0 auto;
  }

  .clients-premium-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 800px) {
  .clients-section-head,
  .clients-industries {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .clients-industry-pills {
    justify-content: flex-start;
  }

  .clients-cta-box {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 620px) {
  .clients-page-hero {
    padding: 76px 0 58px;
  }

  .clients-hero-copy h1 {
    font-size: clamp(2.55rem, 12vw, 3.6rem);
  }

  .clients-hero-copy p {
    margin-top: 16px;
    font-size: .86rem;
    line-height: 1.55;
  }

  .clients-hero-actions .btn {
    width: 100%;
    justify-content: center;
  }

  .clients-logo-cloud {
    min-height: 360px;
  }

  .clients-cloud-center {
    width: 135px;
    height: 135px;
  }

  .clients-cloud-center::before {
    inset: -38px;
  }

  .clients-cloud-center::after {
    inset: -86px;
  }

  .clients-cloud-center img {
    width: 88px;
  }

  .clients-cloud-center small {
    font-size: .54rem;
  }

  .clients-cloud-logo {
    width: 92px;
    min-height: 82px;
    padding: 9px 7px;
    border-radius: 18px;
  }

  .clients-cloud-logo img {
    width: 32px;
    height: 32px;
  }

  .clients-cloud-logo span {
    font-size: .58rem;
  }

  .cloud-a { left: 0; top: 5%; }
  .cloud-b { right: 0; top: 8%; }
  .cloud-c { left: 0; bottom: 8%; }
  .cloud-d { right: 0; bottom: 8%; }
  .cloud-e { left: 35%; top: 0; }
  .cloud-f { right: 30%; bottom: 0; }

  .clients-premium-grid {
    margin-top: 28px;
    grid-template-columns: 1fr;
    gap: 13px;
  }

  .client-premium-card {
    min-height: 0;
    padding: 19px;
    border-radius: 22px;
  }

  .client-logo-box {
    width: 60px;
    height: 60px;
    border-radius: 16px;
  }

  .client-logo-box img {
    width: 39px;
    height: 39px;
  }

  .client-premium-copy {
    margin-top: 20px;
  }

  .client-premium-copy h3 {
    font-size: 1.18rem;
  }

  .client-premium-copy p {
    font-size: .8rem;
  }

  .client-card-link {
    margin-top: 18px;
    padding-top: 16px;
  }

  .clients-industries {
    padding: 22px;
    border-radius: 23px;
  }

  .clients-industry-pills {
    gap: 7px;
  }

  .clients-industry-pills span {
    padding: 7px 9px;
    font-size: .67rem;
  }

  .clients-page-cta {
    padding-bottom: 55px;
  }

  .clients-cta-box {
    padding: 26px 21px;
    border-radius: 24px;
  }

  .clients-cta-box .btn {
    width: 100%;
    justify-content: center;
  }
}



/* =========================================================
   Clients Page — mobile layout fix
   Desktop design stays unchanged.
   ========================================================= */
@media (max-width: 620px) {
  .clients-page-hero {
    padding: 58px 0 44px;
  }

  .clients-hero-layout {
    display: block;
  }

  .clients-hero-copy {
    text-align: left;
  }

  .clients-hero-copy .eyebrow {
    font-size: .68rem;
  }

  .clients-hero-copy h1 {
    margin-top: 10px;
    max-width: 100%;
    font-size: clamp(2.15rem, 10.5vw, 3rem);
    line-height: .98;
    letter-spacing: -.055em;
  }

  .clients-hero-copy p {
    margin-top: 13px;
    max-width: 94%;
    font-size: .8rem;
    line-height: 1.48;
  }

  .clients-hero-actions {
    margin-top: 20px;
    gap: 8px;
  }

  .clients-hero-actions .btn {
    min-height: 44px;
    padding: 11px 14px;
    font-size: .76rem;
  }

  /* Convert the desktop orbit/cloud into a stable mobile logo grid */
  .clients-logo-cloud {
    margin-top: 30px;
    min-height: 0;
    max-width: none;
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 9px;
  }

  .clients-cloud-center,
  .clients-cloud-logo {
    position: relative !important;
    inset: auto !important;
    left: auto !important;
    right: auto !important;
    top: auto !important;
    bottom: auto !important;
    transform: none !important;
  }

  .clients-cloud-center {
    order: -1;
    grid-column: 1 / -1;
    width: 100%;
    height: auto;
    min-height: 92px;
    padding: 16px 18px;
    border-radius: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    box-shadow: 0 14px 32px rgba(36,16,95,.08);
  }

  .clients-cloud-center::before,
  .clients-cloud-center::after {
    display: none;
  }

  .clients-cloud-center img {
    width: 96px;
    max-height: 42px;
  }

  .clients-cloud-center small {
    font-size: .56rem;
    letter-spacing: .07em;
  }

  .clients-cloud-logo {
    width: 100%;
    min-height: 76px;
    padding: 10px 9px;
    border-radius: 17px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    align-content: unset;
    gap: 9px;
    text-align: left;
    box-shadow: 0 8px 20px rgba(36,16,95,.055);
  }

  .clients-cloud-logo:hover {
    transform: none;
  }

  .clients-cloud-logo img {
    width: 34px;
    height: 34px;
    flex: 0 0 34px;
    border-radius: 9px;
  }

  .clients-cloud-logo span {
    max-width: none;
    font-size: .66rem;
    line-height: 1.2;
  }

  .clients-showcase-section {
    padding-top: 54px;
    padding-bottom: 54px;
  }

  .clients-section-head {
    display: block;
  }

  .clients-section-head .section-title {
    margin-top: 10px;
    font-size: clamp(1.9rem, 8.8vw, 2.45rem);
    line-height: 1.02;
  }

  .clients-section-head .section-copy {
    margin-top: 10px;
    font-size: .8rem;
    line-height: 1.45;
  }

  .clients-premium-grid {
    margin-top: 24px;
    gap: 10px;
  }

  .client-premium-card {
    min-height: 0;
    padding: 16px;
    border-radius: 19px;
    box-shadow: 0 9px 24px rgba(36,16,95,.055);
  }

  .client-premium-card:hover {
    transform: none;
  }

  .client-premium-top {
    align-items: center;
  }

  .client-logo-box {
    width: 52px;
    height: 52px;
    border-radius: 14px;
  }

  .client-logo-box img {
    width: 34px;
    height: 34px;
  }

  .client-logo-fallback {
    font-size: .72rem;
  }

  .client-industry {
    padding: 5px 8px;
    font-size: .57rem;
    letter-spacing: .045em;
  }

  .client-premium-copy {
    margin-top: 15px;
  }

  .client-premium-copy h3 {
    font-size: 1.06rem;
    line-height: 1.18;
  }

  .client-premium-copy p {
    margin-top: 6px;
    font-size: .74rem;
    line-height: 1.42;
  }

  .client-service-tags {
    margin-top: 11px;
    gap: 5px;
  }

  .client-service-tags span {
    padding: 4px 7px;
    font-size: .57rem;
  }

  .client-card-link {
    margin-top: 13px;
    padding-top: 12px;
    font-size: .69rem;
  }

  .clients-industry-strip {
    padding-top: 8px;
    padding-bottom: 42px;
  }

  .clients-industries {
    padding: 18px;
    border-radius: 19px;
    gap: 14px;
  }

  .clients-industries-copy .eyebrow {
    font-size: .64rem;
  }

  .clients-industries-copy h2 {
    margin-top: 7px;
    font-size: 1.55rem;
    line-height: 1.05;
  }

  .clients-industry-pills {
    gap: 5px;
  }

  .clients-industry-pills span {
    padding: 6px 8px;
    font-size: .59rem;
  }

  .clients-page-cta {
    padding-top: 0;
    padding-bottom: 48px;
  }

  .clients-cta-box {
    padding: 22px 18px;
    border-radius: 21px;
    gap: 16px;
  }

  .clients-cta-box > div > span {
    font-size: .62rem;
  }

  .clients-cta-box h2 {
    margin-top: 6px;
    font-size: 1.75rem;
    line-height: 1.04;
  }

  .clients-cta-box .btn {
    min-height: 44px;
    padding: 11px 14px;
    font-size: .76rem;
  }
}

@media (max-width: 380px) {
  .clients-logo-cloud {
    grid-template-columns: 1fr;
  }

  .clients-cloud-center {
    grid-column: 1;
  }

  .clients-hero-copy h1 {
    font-size: 2.05rem;
  }

  .clients-section-head .section-title {
    font-size: 1.85rem;
  }
}



/* =========================================================
   New Bloomizo Pricing — White / Pink / Purple
   ========================================================= */
.pricing-page-section {
  background:
    radial-gradient(circle at 10% 12%, rgba(200,45,140,.075), transparent 22%),
    radial-gradient(circle at 90% 86%, rgba(74,13,122,.07), transparent 24%),
    linear-gradient(180deg, #fff 0%, #fbf8fc 100%);
}

.pricing-page-head {
  max-width: 780px;
}

.pricing-page-head .section-copy {
  max-width: 660px;
}

.pricing-new-grid {
  margin-top: 50px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  align-items: stretch;
}

.pricing-new-card {
  position: relative;
  min-height: 690px;
  padding: 30px;
  border-radius: 30px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(36,16,95,.10);
  transition: transform .22s ease, box-shadow .22s ease;
}

.pricing-new-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 28px 64px rgba(36,16,95,.14);
}

.pricing-launch {
  background: #fff;
  color: var(--charcoal);
  border: 1px solid rgba(74,13,122,.10);
}

.pricing-growth {
  background:
    radial-gradient(circle at 90% 8%, rgba(255,255,255,.18), transparent 24%),
    linear-gradient(145deg, #C82D8C 0%, #B72B88 58%, #942273 100%);
  color: #fff;
  border: 1px solid transparent;
}

.pricing-scale {
  background:
    radial-gradient(circle at 88% 8%, rgba(255,255,255,.14), transparent 24%),
    linear-gradient(145deg, #24105F 0%, #4A0D7A 58%, #5C1484 100%);
  color: #fff;
  border: 1px solid transparent;
}

.pricing-new-card::after {
  content: "";
  position: absolute;
  width: 180px;
  height: 180px;
  right: -82px;
  bottom: -82px;
  border-radius: 50%;
  border: 30px solid rgba(255,255,255,.055);
  pointer-events: none;
}

.pricing-launch::after {
  border-color: rgba(200,45,140,.045);
}

.pricing-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.pricing-plan-label {
  font-size: 1.45rem;
  font-weight: 900;
  letter-spacing: -.035em;
}

.pricing-launch .pricing-plan-label {
  color: var(--deep-purple);
}

.pricing-plan-type {
  padding: 7px 10px;
  border-radius: 999px;
  font-size: .64rem;
  font-weight: 900;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.pricing-launch .pricing-plan-type {
  color: var(--pink);
  background: rgba(200,45,140,.07);
  border: 1px solid rgba(200,45,140,.09);
}

.pricing-growth .pricing-plan-type,
.pricing-scale .pricing-plan-type {
  color: #fff;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.14);
}

.pricing-new-price {
  margin-top: 32px;
}

.pricing-from {
  display: block;
  margin-bottom: 5px;
  font-size: .72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .075em;
  opacity: .72;
}

.pricing-new-price strong {
  display: inline;
  font-size: clamp(3.2rem, 5vw, 4.7rem);
  line-height: 1;
  letter-spacing: -.065em;
}

.pricing-launch .pricing-new-price strong {
  color: var(--deep-purple);
}

.pricing-period {
  margin-left: 5px;
  font-size: .82rem;
  font-weight: 800;
  opacity: .72;
}

.pricing-new-price small {
  display: block;
  margin-top: 8px;
  font-size: .75rem;
  font-weight: 700;
  opacity: .70;
}

.pricing-plan-copy {
  margin-top: 24px;
  min-height: 72px;
  font-size: .9rem;
  line-height: 1.55;
}

.pricing-launch .pricing-plan-copy {
  color: var(--muted);
}

.pricing-growth .pricing-plan-copy,
.pricing-scale .pricing-plan-copy {
  color: rgba(255,255,255,.76);
}

.pricing-new-list {
  margin: 24px 0 0;
  padding: 22px 0 0;
  border-top: 1px solid rgba(74,13,122,.09);
  list-style: none;
  display: grid;
  gap: 11px;
}

.pricing-growth .pricing-new-list,
.pricing-scale .pricing-new-list {
  border-color: rgba(255,255,255,.15);
}

.pricing-new-list li {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  font-size: .84rem;
  line-height: 1.4;
}

.pricing-new-list li::before {
  content: "✓";
  flex: 0 0 auto;
  width: 19px;
  height: 19px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  margin-top: 0;
  font-size: .62rem;
  font-weight: 900;
}

.pricing-launch .pricing-new-list li {
  color: #4f4656;
}

.pricing-launch .pricing-new-list li::before {
  color: #fff;
  background: var(--gradient);
}

.pricing-growth .pricing-new-list li,
.pricing-scale .pricing-new-list li {
  color: rgba(255,255,255,.86);
}

.pricing-growth .pricing-new-list li::before,
.pricing-scale .pricing-new-list li::before {
  color: var(--deep-purple);
  background: #fff;
}

.pricing-note {
  margin-top: 18px;
  padding: 9px 11px;
  border-radius: 12px;
  font-size: .68rem;
  font-weight: 800;
}

.pricing-growth .pricing-note,
.pricing-scale .pricing-note {
  color: rgba(255,255,255,.78);
  background: rgba(255,255,255,.09);
}

.pricing-new-card .btn {
  margin-top: auto;
  width: 100%;
  justify-content: center;
}

.pricing-white-btn {
  color: #fff;
  background: var(--gradient);
  border: 0;
}

.pricing-pink-btn {
  color: var(--pink);
  background: #fff;
  border: 0;
}

.pricing-purple-btn {
  color: var(--deep-purple);
  background: #fff;
  border: 0;
}

.pricing-popular-badge {
  position: absolute;
  top: 18px;
  right: 18px;
  padding: 7px 10px;
  border-radius: 999px;
  color: var(--pink);
  background: #fff;
  font-size: .62rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .07em;
  box-shadow: 0 8px 20px rgba(36,16,95,.12);
}

.pricing-growth .pricing-card-head {
  padding-right: 108px;
}

.pricing-custom-note {
  margin-top: 24px;
  padding: 22px 24px;
  border-radius: 22px;
  background: #fff;
  border: 1px solid rgba(74,13,122,.08);
  box-shadow: 0 12px 30px rgba(36,16,95,.055);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.pricing-custom-note strong {
  display: block;
  color: var(--deep-purple);
  font-size: .98rem;
}

.pricing-custom-note span {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: .78rem;
}

.pricing-custom-note a {
  color: var(--pink);
  font-size: .78rem;
  font-weight: 900;
  white-space: nowrap;
}

@media (max-width: 1050px) {
  .pricing-new-grid {
    grid-template-columns: 1fr;
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
  }

  .pricing-new-card {
    min-height: 0;
  }

  .pricing-plan-copy {
    min-height: 0;
  }
}

@media (max-width: 620px) {
  .pricing-page-section {
    padding-top: 64px;
    padding-bottom: 58px;
  }

  .pricing-page-head .section-title {
    font-size: clamp(2rem, 9.5vw, 2.65rem);
    line-height: 1.02;
  }

  .pricing-page-head .section-copy {
    margin-top: 10px;
    font-size: .82rem;
    line-height: 1.5;
  }

  .pricing-new-grid {
    margin-top: 28px;
    gap: 13px;
  }

  .pricing-new-card {
    padding: 20px;
    border-radius: 22px;
    box-shadow: 0 12px 30px rgba(36,16,95,.08);
  }

  .pricing-new-card:hover {
    transform: none;
  }

  .pricing-plan-label {
    font-size: 1.2rem;
  }

  .pricing-plan-type {
    padding: 5px 8px;
    font-size: .56rem;
  }

  .pricing-growth .pricing-card-head {
    padding-right: 0;
    padding-top: 30px;
  }

  .pricing-popular-badge {
    top: 15px;
    right: 15px;
    font-size: .55rem;
  }

  .pricing-new-price {
    margin-top: 22px;
  }

  .pricing-new-price strong {
    font-size: 3.2rem;
  }

  .pricing-period {
    font-size: .72rem;
  }

  .pricing-plan-copy {
    margin-top: 16px;
    font-size: .8rem;
    line-height: 1.45;
  }

  .pricing-new-list {
    margin-top: 17px;
    padding-top: 16px;
    gap: 8px;
  }

  .pricing-new-list li {
    font-size: .75rem;
  }

  .pricing-new-card .btn {
    margin-top: 20px;
  }

  .pricing-custom-note {
    margin-top: 16px;
    padding: 17px;
    border-radius: 18px;
    align-items: flex-start;
    flex-direction: column;
    gap: 9px;
  }
}



/* =========================================================
   Pricing mobile UX fix — swipe cards, no overlap
   Desktop pricing remains unchanged
   ========================================================= */
@media (max-width: 620px) {
  .pricing-page-section {
    overflow: hidden;
    padding-top: 54px;
    padding-bottom: 52px;
  }

  .pricing-page-head {
    max-width: 100%;
  }

  .pricing-page-head .eyebrow {
    font-size: .64rem;
  }

  .pricing-page-head .section-title {
    margin-top: 9px;
    font-size: clamp(1.95rem, 9vw, 2.45rem);
    line-height: 1;
    letter-spacing: -.045em;
  }

  .pricing-page-head .section-copy {
    margin-top: 9px;
    max-width: 92%;
    font-size: .78rem;
    line-height: 1.45;
  }

  /* Mobile pricing becomes a horizontal swipe deck */
  .pricing-new-grid {
    width: calc(100vw - 20px);
    max-width: none;
    margin-top: 24px;
    margin-left: 0;
    margin-right: 0;
    padding: 0 12px 10px 0;
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: minmax(0, 88vw);
    grid-template-columns: none;
    gap: 12px;
    overflow-x: auto;
    overflow-y: visible;
    scroll-snap-type: x mandatory;
    scroll-padding-left: 0;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }

  .pricing-new-grid::-webkit-scrollbar {
    display: none;
  }

  .pricing-new-card {
    scroll-snap-align: start;
    min-height: 0;
    height: auto;
    padding: 18px;
    border-radius: 22px;
    box-shadow: 0 10px 26px rgba(36,16,95,.08);
  }

  .pricing-new-card:hover {
    transform: none;
    box-shadow: 0 10px 26px rgba(36,16,95,.08);
  }

  .pricing-new-card::after {
    width: 115px;
    height: 115px;
    right: -54px;
    bottom: -54px;
    border-width: 20px;
  }

  .pricing-card-head {
    gap: 8px;
  }

  .pricing-plan-label {
    font-size: 1.08rem;
  }

  .pricing-plan-type {
    padding: 4px 7px;
    font-size: .52rem;
    letter-spacing: .045em;
  }

  /* Badge becomes part of normal flow on mobile */
  .pricing-popular-badge {
    position: static;
    align-self: flex-start;
    display: inline-flex;
    width: fit-content;
    margin-bottom: 10px;
    padding: 5px 8px;
    font-size: .52rem;
    box-shadow: none;
  }

  .pricing-growth .pricing-card-head {
    padding: 0;
  }

  .pricing-new-price {
    margin-top: 17px;
    display: flex;
    align-items: baseline;
    flex-wrap: wrap;
    gap: 0 4px;
  }

  .pricing-from {
    flex-basis: 100%;
    margin-bottom: 4px;
    font-size: .58rem;
    letter-spacing: .055em;
  }

  .pricing-new-price strong {
    font-size: 2.75rem;
    line-height: .96;
  }

  .pricing-period {
    margin-left: 0;
    font-size: .66rem;
  }

  .pricing-new-price small {
    flex-basis: 100%;
    margin-top: 5px;
    font-size: .64rem;
  }

  .pricing-plan-copy {
    margin-top: 13px;
    min-height: 0;
    font-size: .73rem;
    line-height: 1.4;
  }

  /* Compact features into two columns */
  .pricing-new-list {
    margin-top: 13px;
    padding-top: 13px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 7px 8px;
  }

  .pricing-new-list li {
    min-width: 0;
    gap: 5px;
    font-size: .65rem;
    line-height: 1.28;
  }

  .pricing-new-list li::before {
    width: 15px;
    height: 15px;
    flex-basis: 15px;
    font-size: .5rem;
  }

  .pricing-note {
    margin-top: 11px;
    padding: 7px 9px;
    border-radius: 9px;
    font-size: .59rem;
  }

  .pricing-new-card .btn {
    min-height: 42px;
    margin-top: 15px;
    padding: 10px 12px;
    border-radius: 12px;
    font-size: .72rem;
  }

  .pricing-custom-note {
    margin-top: 14px;
    padding: 15px;
    border-radius: 17px;
    gap: 8px;
  }

  .pricing-custom-note strong {
    font-size: .86rem;
  }

  .pricing-custom-note span {
    margin-top: 3px;
    font-size: .68rem;
    line-height: 1.4;
  }

  .pricing-custom-note a {
    font-size: .7rem;
    white-space: normal;
  }
}

@media (max-width: 380px) {
  .pricing-new-grid {
    grid-auto-columns: minmax(0, 90vw);
  }

  .pricing-new-card {
    padding: 16px;
  }

  .pricing-new-price strong {
    font-size: 2.55rem;
  }

  .pricing-new-list li {
    font-size: .61rem;
  }
}



/* =========================================================
   Pricing mobile vertical fix
   Desktop remains unchanged
   ========================================================= */
@media (max-width: 620px) {
  .pricing-page-section {
    overflow: visible;
  }

  .pricing-new-grid {
    width: 100%;
    max-width: none;
    margin-top: 26px;
    margin-left: 0;
    margin-right: 0;
    padding: 0;
    display: grid;
    grid-template-columns: 1fr;
    grid-auto-flow: row;
    grid-auto-columns: auto;
    gap: 16px;
    overflow: visible;
    scroll-snap-type: none;
  }

  .pricing-new-card {
    width: 100%;
    max-width: 100%;
    scroll-snap-align: none;
    min-height: 0;
    height: auto;
    padding: 20px;
    border-radius: 22px;
  }

  .pricing-card-head {
    align-items: center;
  }

  .pricing-new-price {
    margin-top: 18px;
    display: block;
  }

  .pricing-from {
    display: block;
    margin-bottom: 5px;
  }

  .pricing-new-price strong {
    display: inline;
    font-size: 3rem;
  }

  .pricing-period {
    display: inline;
    margin-left: 4px;
    font-size: .7rem;
  }

  .pricing-new-price small {
    display: block;
    margin-top: 6px;
  }

  .pricing-plan-copy {
    margin-top: 15px;
    font-size: .78rem;
    line-height: 1.45;
  }

  .pricing-new-list {
    margin-top: 16px;
    padding-top: 15px;
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .pricing-new-list li {
    font-size: .73rem;
    line-height: 1.35;
  }

  .pricing-new-list li::before {
    width: 17px;
    height: 17px;
    flex-basis: 17px;
    font-size: .54rem;
  }

  .pricing-note {
    margin-top: 13px;
  }

  .pricing-new-card .btn {
    margin-top: 18px;
    width: 100%;
    min-height: 44px;
  }

  .pricing-popular-badge {
    position: static;
    display: inline-flex;
    width: fit-content;
    margin-bottom: 10px;
  }

  .pricing-growth .pricing-card-head {
    padding: 0;
  }
}

@media (max-width: 380px) {
  .pricing-new-card {
    padding: 18px;
  }

  .pricing-new-price strong {
    font-size: 2.75rem;
  }
}



/* Live contact form status */
.form-status.success {
  color: #146c43;
  background: #eaf8f0;
  border: 1px solid #b9e4ca;
}
.form-status.error {
  color: #842029;
  background: #fff0f1;
  border: 1px solid #f1c2c7;
}
.contact-form button[disabled] {
  opacity: .72;
  cursor: wait;
}
