:root {
      --todify: #0AB1D7;
      --todify-dark: #0C7ABA;
      --ink: #0D1B2A;
      --muted: #607083;
      --soft: #F3FAFD;
      --line: rgba(13, 27, 42, 0.1);
      --white: #FFFFFF;
      --cream: #FBFDFF;
      --shadow: 0 24px 70px rgba(12, 122, 186, 0.16);
      --radius: 28px;
    }

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

    html {
      scroll-behavior: smooth;
    }

    body {
      font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
      color: var(--ink);
      background:
        radial-gradient(circle at 10% 10%, rgba(10, 177, 215, 0.14), transparent 32%),
        radial-gradient(circle at 85% 5%, rgba(12, 122, 186, 0.12), transparent 28%),
        linear-gradient(180deg, #FFFFFF 0%, #F8FCFE 45%, #FFFFFF 100%);
      overflow-x: hidden;
    }

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

    .container {
      width: min(1180px, calc(100% - 40px));
      margin: 0 auto;
    }

    .nav {
      position: sticky;
      top: 0;
      z-index: 40;
      backdrop-filter: blur(20px);
      background: rgba(255, 255, 255, 0.78);
      border-bottom: 1px solid rgba(13, 27, 42, 0.08);
    }

    .nav-inner {
      height: 76px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 24px;
    }

    .brand {
      display: flex;
      align-items: center;
      gap: 12px;
      font-weight: 900;
      letter-spacing: -0.04em;
      font-size: 24px;
    }

    .brand-mark {
      width: 42px;
      height: 42px;
      border-radius: 14px;
      background: linear-gradient(135deg, var(--todify), var(--todify-dark));
      display: grid;
      place-items: center;
      color: white;
      box-shadow: 0 14px 30px rgba(10, 177, 215, 0.3);
      font-size: 18px;
    }

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

    .nav-cta {
      display: flex;
      align-items: center;
      gap: 12px;
    }

    .nav-toggle {
      display: none;
      flex-direction: column;
      gap: 6px;
      background: none;
      border: none;
      cursor: pointer;
      padding: 8px;
      z-index: 50;
    }

    .nav-toggle span {
      display: block;
      width: 24px;
      height: 2px;
      background: var(--todify-dark);
      border-radius: 2px;
      transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .nav.is-open .nav-toggle span:nth-child(1) {
      transform: translateY(8px) rotate(45deg);
    }

    .nav.is-open .nav-toggle span:nth-child(2) {
      transform: scaleX(0);
      opacity: 0;
    }

    .nav.is-open .nav-toggle span:nth-child(3) {
      transform: translateY(-8px) rotate(-45deg);
    }

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

    /* Mobile full-screen menu overlay */
    .mobile-menu {
      display: none;
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: #fff;
      z-index: 9999;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 0;
      padding: 80px 30px 40px;
      overflow-y: auto;
    }

    .mobile-menu.is-open {
      display: flex;
    }

    .mobile-menu-link {
      width: 100%;
      padding: 20px;
      text-align: center;
      font-size: 20px;
      font-weight: 700;
      color: var(--ink);
      border-bottom: 1px solid rgba(13, 27, 42, 0.06);
      text-decoration: none;
      transition: color 0.2s;
    }

    .mobile-menu-link:hover {
      color: var(--todify);
    }

    .mobile-menu-cta {
      margin-top: 32px;
      border-bottom: none !important;
      width: 100%;
      max-width: 320px;
    }

    .mobile-menu-close {
      position: absolute;
      top: 20px;
      right: 20px;
      display: flex;
      align-items: center;
      gap: 8px;
      background: rgba(13, 27, 42, 0.06);
      border: none;
      border-radius: 999px;
      padding: 10px 18px 10px 14px;
      font-size: 14px;
      font-weight: 700;
      color: var(--ink);
      cursor: pointer;
      transition: background 0.2s, transform 0.2s;
    }

    .mobile-menu-close:hover {
      background: rgba(13, 27, 42, 0.1);
      transform: scale(1.04);
    }

    html[dir="rtl"] .mobile-menu-close {
      right: auto;
      left: 20px;
    }

    .btn {
      border: 0;
      cursor: pointer;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      min-height: 56px;
      padding: 0 28px;
      border-radius: 999px;
      font-weight: 900;
      letter-spacing: -0.01em;
      transition: 0.25s ease;
      white-space: nowrap;
    }

    .btn-primary {
      color: white;
      background: linear-gradient(135deg, var(--todify), var(--todify-dark));
      box-shadow: 0 16px 36px rgba(10, 177, 215, 0.34);
    }

    .btn-primary:hover {
      transform: translateY(-2px);
      box-shadow: 0 22px 46px rgba(10, 177, 215, 0.42);
    }

    .btn-ghost {
      background: white;
      color: var(--ink);
      border: 1px solid var(--line);
    }

    .btn-ghost:hover {
      transform: translateY(-2px);
      border-color: rgba(10, 177, 215, 0.4);
    }

    .hero {
      position: relative;
      padding: 90px 0 68px;
      background: var(--soft);
    }

    .hero-grid {
      display: grid;
      grid-template-columns: 1fr 0.92fr;
      gap: 54px;
      align-items: center;
    }

    .pill {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      padding: 9px 14px;
      border: 1px solid rgba(10, 177, 215, 0.22);
      background: rgba(255, 255, 255, 0.78);
      border-radius: 999px;
      color: var(--todify-dark);
      font-weight: 900;
      font-size: 13px;
      box-shadow: 0 12px 36px rgba(12, 122, 186, 0.08);
    }

    .dot {
      width: 9px;
      height: 9px;
      background: var(--todify);
      border-radius: 50%;
      box-shadow: 0 0 0 6px rgba(10, 177, 215, 0.12);
    }

    h1 {
      font-size: clamp(46px, 6vw, 78px);
      line-height: 0.95;
      letter-spacing: -0.075em;
      margin-top: 24px;
      max-width: 820px;
    }

    .gradient-text {
      background: linear-gradient(135deg, var(--todify-dark), var(--todify));
      -webkit-background-clip: text;
      background-clip: text;
      color: transparent;
    }

    .hero-copy {
      color: var(--muted);
      font-size: 20px;
      line-height: 1.65;
      margin-top: 26px;
      max-width: 690px;
    }

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

    .microcopy {
      color: var(--muted);
      font-weight: 700;
      font-size: 13px;
      margin-top: 14px;
    }

    .hero-stats {
      margin-top: 36px;
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      background: white;
      border: 1px solid var(--line);
      border-radius: 28px;
      box-shadow: 0 20px 50px rgba(12, 122, 186, 0.08);
      overflow: hidden;
    }

    .stat {
      flex: 1;
      padding: 24px 16px;
      text-align: center;
      position: relative;
    }

    .stat:not(:last-child)::after {
      content: "";
      position: absolute;
      inset-inline-end: 0;
      top: 20%;
      height: 60%;
      width: 1px;
      background: var(--line);
    }

    .stat strong {
      display: block;
      font-size: 32px;
      color: var(--todify-dark);
      letter-spacing: -0.04em;
      margin-bottom: 4px;
    }

    .stat span {
      display: block;
      font-size: 13px;
      color: var(--muted);
      font-weight: 700;
      margin-top: 6px;
      line-height: 1.35;
    }

    .mockup-wrap {
      position: relative;
    }

    .mockup {
      background: rgba(255, 255, 255, 0.84);
      border: 1px solid rgba(13, 27, 42, 0.1);
      border-radius: 36px;
      box-shadow: var(--shadow);
      padding: 12px;
      overflow: hidden;
      position: relative;
    }

    .mockup::before {
      content: "";
      position: absolute;
      inset: -120px auto auto -120px;
      width: 260px;
      height: 260px;
      border-radius: 50%;
      background: rgba(10, 177, 215, 0.14);
      filter: blur(2px);
    }

    .hero-image {
      display: block;
      width: 100%;
      height: auto;
      border-radius: 28px;
    }

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

    .window-dots {
      display: flex;
      gap: 8px;
    }

    .window-dots span {
      width: 10px;
      height: 10px;
      border-radius: 50%;
      background: rgba(13, 27, 42, 0.16);
    }

    .status-chip {
      font-size: 12px;
      font-weight: 900;
      color: var(--todify-dark);
      background: rgba(10, 177, 215, 0.12);
      border: 1px solid rgba(10, 177, 215, 0.24);
      padding: 8px 10px;
      border-radius: 999px;
    }

    .product-card {
      display: grid;
      grid-template-columns: 130px 1fr;
      gap: 18px;
      background: white;
      border: 1px solid var(--line);
      border-radius: 26px;
      padding: 16px;
      box-shadow: 0 18px 46px rgba(13, 27, 42, 0.08);
    }

    .shirt {
      height: 140px;
      border-radius: 24px;
      background: linear-gradient(135deg, #EFF8FC, #DFF3FA);
      display: grid;
      place-items: center;
      position: relative;
      overflow: hidden;
    }

    .shirt svg {
      width: 92px;
      opacity: 0.95;
    }

    .card-title {
      font-size: 18px;
      font-weight: 950;
      letter-spacing: -0.03em;
      margin-bottom: 8px;
    }

    .card-sub {
      color: var(--muted);
      font-weight: 700;
      line-height: 1.45;
      font-size: 14px;
    }

    .price-row {
      display: flex;
      align-items: center;
      gap: 10px;
      flex-wrap: wrap;
      margin-top: 16px;
    }

    .price {
      font-weight: 950;
      font-size: 22px;
      color: var(--todify-dark);
    }

    .tag {
      padding: 8px 10px;
      background: #F1FBFE;
      border: 1px solid rgba(10, 177, 215, 0.18);
      border-radius: 999px;
      font-size: 12px;
      font-weight: 900;
      color: var(--todify-dark);
    }

    .flow {
      margin-top: 18px;
      display: grid;
      gap: 12px;
    }

    .flow-step {
      display: flex;
      align-items: center;
      justify-content: space-between;
      background: rgba(255, 255, 255, 0.8);
      border: 1px solid rgba(13, 27, 42, 0.08);
      border-radius: 20px;
      padding: 14px;
    }

    .flow-step b {
      font-size: 14px;
      letter-spacing: -0.02em;
    }

    .flow-step span {
      font-size: 12px;
      color: var(--muted);
      font-weight: 800;
    }

    .integrations {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 10px;
      margin-top: 18px;
    }

    .integration {
      min-height: 62px;
      background: white;
      border: 1px solid var(--line);
      border-radius: 18px;
      display: grid;
      place-items: center;
      font-weight: 950;
      color: var(--muted);
      font-size: 13px;
    }

    .floating-card {
      position: absolute;
      background: white;
      border: 1px solid var(--line);
      box-shadow: 0 18px 50px rgba(13, 27, 42, 0.13);
      border-radius: 22px;
      padding: 14px 16px;
      display: flex;
      align-items: center;
      gap: 12px;
      animation: float 5s ease-in-out infinite;
    }

    .floating-card.one {
      right: -20px;
      top: 70px;
    }

    .floating-card.two {
      left: -28px;
      bottom: 82px;
      animation-delay: 0.8s;
    }

    .float-icon {
      width: 36px;
      height: 36px;
      border-radius: 14px;
      background: rgba(10, 177, 215, 0.12);
      display: grid;
      place-items: center;
      color: var(--todify-dark);
      font-weight: 950;
    }

    .floating-card b {
      display: block;
      font-size: 13px;
      letter-spacing: -0.02em;
    }

    .floating-card small {
      display: block;
      color: var(--muted);
      font-weight: 700;
      margin-top: 3px;
    }

    @keyframes float {

      0%,
      100% {
        transform: translateY(0);
      }

      50% {
        transform: translateY(-10px);
      }
    }

    section {
      padding: 76px 0;
    }

    .section-head {
      max-width: 780px;
      margin: 0 auto 50px auto;
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
    }

    .section-head::after {
      content: "";
      display: block;
      width: 60px;
      height: 4px;
      border-radius: 4px;
      background: linear-gradient(90deg, var(--todify-dark), #F2994A);
      margin-top: 24px;
    }

    .eyebrow {
      display: inline-flex;
      align-items: center;
      padding: 8px 16px;
      border: 1px solid rgba(10, 177, 215, 0.2);
      background: #F1FBFE;
      border-radius: 999px;
      color: var(--todify-dark);
      font-weight: 800;
      font-size: 11px;
      letter-spacing: 1px;
      text-transform: uppercase;
      margin-bottom: 20px;
    }

    h2 {
      font-size: clamp(34px, 4vw, 54px);
      line-height: 1.02;
      letter-spacing: -0.06em;
    }

    .section-text {
      color: var(--muted);
      font-size: 18px;
      line-height: 1.65;
      margin-top: 18px;
    }

    .desktop-section-cta {
      display: inline-flex;
      min-height: 46px;
      padding: 0 20px;
      box-shadow: 0 14px 30px rgba(10, 177, 215, 0.2);
      transition: transform 0.25s ease, box-shadow 0.25s ease, filter 0.25s ease;
    }

    .desktop-section-cta:hover {
      transform: translateY(-2px);
      box-shadow: 0 20px 38px rgba(10, 177, 215, 0.28);
      filter: saturate(1.04);
    }

    .section-end-cta {
      display: flex;
      justify-content: center;
      margin-top: 34px;
    }

    /* ====== UGC CAROUSEL STYLES ====== */
    .carousel-wrapper {
      position: relative;
      padding: 0 40px;
      max-width: 1080px;
      margin: 0 auto;
    }

    .carousel-track {
      display: flex;
      gap: 20px;
      overflow-x: auto;
      scroll-snap-type: x mandatory;
      scrollbar-width: none;
      -ms-overflow-style: none;
      padding-bottom: 20px;
    }

    .carousel-track::-webkit-scrollbar {
      display: none;
    }

    .carousel-slide {
      flex: 0 0 calc(33.333% - 14px);
      scroll-snap-align: start;
      border-radius: 20px;
      overflow: hidden;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
      position: relative;
      aspect-ratio: 9/16;
      background: var(--ink);
      /* Dark background for placeholders */
      display: flex;
      align-items: center;
      justify-content: center;
      color: white;
      font-weight: bold;
      transition: transform 0.3s ease;
    }

    .carousel-arrow {
      position: absolute;
      top: calc(50% - 10px);
      transform: translateY(-50%);
      width: 48px;
      height: 48px;
      background: white;
      border: 1px solid var(--line);
      border-radius: 50%;
      box-shadow: 0 10px 24px rgba(12, 122, 186, 0.15);
      cursor: pointer;
      display: grid;
      place-items: center;
      z-index: 10;
      color: var(--todify-dark);
      transition: 0.2s ease;
    }

    .carousel-arrow:hover {
      background: var(--soft);
      transform: translateY(-50%) scale(1.05);
    }

    .carousel-arrow.prev {
      left: -15px;
    }

    .carousel-arrow.next {
      right: -15px;
    }

    /* ====== GRIDS & CARDS ====== */
    .audience-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 18px;
    }

    .audience-card,
    .feature-card,
    .faq-item,
    .profit-box,
    .lead-box {
      background: rgba(255, 255, 255, 0.86);
      border: 1px solid var(--line);
      border-radius: var(--radius);
      box-shadow: 0 20px 60px rgba(12, 122, 186, 0.08);
    }

    .audience-card {
      padding: 26px;
      min-height: 250px;
      position: relative;
      overflow: hidden;
    }

    .audience-card::after {
      content: "";
      position: absolute;
      right: -70px;
      top: -70px;
      width: 160px;
      height: 160px;
      background: rgba(10, 177, 215, 0.1);
      border-radius: 50%;
    }

    .icon {
      width: 52px;
      height: 52px;
      border-radius: 18px;
      background: linear-gradient(135deg, rgba(10, 177, 215, 0.18), rgba(12, 122, 186, 0.12));
      color: var(--todify-dark);
      display: grid;
      place-items: center;
      font-weight: 950;
      margin-bottom: 22px;
      font-size: 20px;
    }

    .audience-card h3,
    .feature-card h3,
    .step-card h3,
    .lead-box h3 {
      font-size: 22px;
      letter-spacing: -0.04em;
      margin-bottom: 10px;
    }

    .audience-card p,
    .feature-card p,
    .step-card p,
    .lead-box p {
      color: var(--muted);
      line-height: 1.6;
      font-weight: 650;
    }

    .steps-grid {
      display: grid;
      grid-template-columns: repeat(5, 1fr);
      gap: 14px;
      align-items: stretch;
    }

    .step-card {
      padding: 0;
      position: relative;
      display: flex;
      flex-direction: column;
      gap: 18px;
      height: 100%;
      background: transparent;
      border: none;
      box-shadow: none;
    }

    .step-number {
      position: absolute;
      top: -12px;
      left: -12px;
      width: 44px;
      height: 44px;
      display: grid;
      place-items: center;
      border-radius: 50%;
      background: rgba(255, 255, 255, 0.85);
      backdrop-filter: blur(12px);
      -webkit-backdrop-filter: blur(12px);
      border: 1px solid rgba(255, 255, 255, 0.4);
      box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
      color: var(--todify-blue);
      font-weight: 900;
      font-size: 18px;
      z-index: 10;
    }

    .step-image {
      width: 100%;
      aspect-ratio: 1 / 1;
      object-fit: cover;
      display: block;
      border-radius: 20px;
      background: linear-gradient(135deg, #EFF8FC, #DFF3FA);
      box-shadow: 0 16px 40px rgba(12, 122, 186, 0.12), inset 0 0 0 1px rgba(255, 255, 255, 0.35);
    }

    .step-content {
      display: flex;
      flex-direction: column;
      gap: 10px;
      flex: 1 1 auto;
    }

    .step-card h3,
    .step-card p {
      margin: 0;
    }

    .step-card h3 {
      min-height: 2.4em;
      display: flex;
      align-items: flex-start;
    }

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

    .feature-card {
      min-height: auto;
      padding: 0;
      overflow: hidden;
      display: flex;
      flex-direction: column;
    }

    .feature-img {
      width: 100%;
      height: 180px;
      background: linear-gradient(135deg, #EFF8FC, #DFF3FA);
      position: relative;
    }

    .feature-img img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .feature-content {
      padding: 24px;
      flex-grow: 1;
    }

    .profit-section {
      padding-top: 58px;
    }

    .profit-layout {
      display: grid;
      grid-template-columns: 1fr 1.1fr;
      gap: 60px;
      align-items: stretch;
    }

    .profit-box {
      background: white;
      padding: 40px;
      border-radius: 40px;
      border: 1px solid rgba(0,0,0,0.06);
      box-shadow: 0 30px 60px rgba(0,0,0,0.04);
      display: flex;
      flex-direction: column;
      height: 100%;
    }

    .profit-form {
      display: grid;
      gap: 20px;
    }

    .input-group {
      background: #F8FAFC;
      padding: 24px;
      border-radius: 24px;
      border: 1px solid transparent;
      transition: all 0.3s ease;
    }

    .input-group:focus-within {
      background: white;
      border-color: rgba(10, 177, 215, 0.3);
      box-shadow: 0 10px 30px rgba(10, 177, 215, 0.08);
      transform: translateY(-2px);
    }

    .input-group label {
      display: block;
      font-size: 14px;
      font-weight: 700;
      color: var(--ink);
      margin-bottom: 12px;
    }

    .slider-group .label-row {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-bottom: 12px;
    }

    .value-badge {
      background: #E8F7FD;
      color: var(--todify-dark);
      padding: 4px 12px;
      border-radius: 99px;
      font-size: 14px;
      font-weight: 800;
    }

    /* Range Input Customization */
    input[type="range"] {
      -webkit-appearance: none;
      width: 100%;
      height: 6px;
      background: #E8F0F2;
      border-radius: 5px;
      outline: none;
    }

    input[type="range"]::-webkit-slider-thumb {
      -webkit-appearance: none;
      appearance: none;
      width: 24px;
      height: 24px;
      background: white;
      border: 3px solid var(--todify-dark);
      border-radius: 50%;
      cursor: pointer;
      box-shadow: 0 4px 10px rgba(0,0,0,0.1);
      transition: 0.2s;
    }

    input[type="range"]::-webkit-slider-thumb:hover {
      transform: scale(1.1);
      box-shadow: 0 6px 15px rgba(0,0,0,0.15);
    }

    .services-box {
      margin-top: 10px;
      padding: 24px;
      background: white;
      border: 1px solid var(--line);
      border-radius: 20px;
      box-shadow: 0 4px 12px rgba(0,0,0,0.03);
    }

    .services-box h4 {
      font-size: 13px;
      text-transform: uppercase;
      letter-spacing: 0.05em;
      color: var(--ink-light);
      margin-bottom: 16px;
    }

    .service-tag {
      display: flex;
      align-items: center;
      gap: 10px;
      font-size: 14px;
      font-weight: 600;
      color: var(--ink);
      margin-bottom: 10px;
    }

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

    .service-tag svg {
      color: #10B981;
    }

    /* Profit Card (Results) */
    .profit-card-main {
      background: linear-gradient(135deg, #0C7ABA 0%, #0AB1D7 100%);
      color: white;
      padding: 48px;
      border-radius: 40px;
      box-shadow: 0 40px 100px rgba(10, 177, 215, 0.25);
      position: relative;
      overflow: hidden;
      display: flex;
      flex-direction: column;
      justify-content: center;
      height: 100%;
    }

    .profit-card-main::before {
      content: "";
      position: absolute;
      top: -100px;
      right: -100px;
      width: 300px;
      height: 300px;
      background: radial-gradient(circle, rgba(255,255,255,0.15) 0%, transparent 70%);
      pointer-events: none;
    }

    .card-header {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-bottom: 40px;
    }

    .card-header h3 {
      font-size: 24px;
      margin: 0;
    }

    .card-header .tag {
      background: rgba(255,255,255,0.2);
      padding: 4px 12px;
      border-radius: 99px;
      font-size: 12px;
      font-weight: 700;
      text-transform: uppercase;
    }

    .profit-summary {
      display: flex;
      flex-direction: column;
      gap: 30px;
      margin-bottom: 30px;
    }

    .profit-graph {
      height: 60px;
      margin: 10px 0 30px;
      opacity: 0.6;
    }

    .profit-graph svg {
      width: 100%;
      height: 100%;
      overflow: visible;
    }

    .summary-item .label {
      display: block;
      font-size: 14px;
      opacity: 0.8;
      margin-bottom: 8px;
    }

    .highlight-text {
      font-size: 32px;
      font-weight: 900;
    }

    .summary-divider {
      height: 1px;
      background: rgba(255,255,255,0.15);
    }

    .hero-text {
      font-size: 56px;
      font-weight: 950;
      line-height: 1;
      letter-spacing: -0.04em;
    }

    .summary-item.main .label {
      font-size: 16px;
      font-weight: 700;
      opacity: 1;
    }

    .breakdown-collapsible {
      background: rgba(0,0,0,0.1);
      border-radius: 24px;
      padding: 24px;
      margin-bottom: 30px;
    }

    .breakdown-header {
      font-size: 13px;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.05em;
      opacity: 0.7;
      margin-bottom: 16px;
    }

    .breakdown-list {
      display: grid;
      gap: 12px;
    }

    .breakdown-row {
      display: flex;
      justify-content: space-between;
      font-size: 15px;
      font-weight: 600;
    }

    .breakdown-row.total {
      margin-top: 8px;
      padding-top: 12px;
      border-top: 1px solid rgba(255,255,255,0.1);
      font-weight: 800;
      font-size: 17px;
    }

    .profit-context {
      font-size: 15px;
      opacity: 0.9;
      line-height: 1.5;
    }

    .profit-context strong {
      color: white;
      font-weight: 800;
    }

    .slider-wrap {
      margin-top: 24px;
      display: grid;
      gap: 12px;
    }

    label {
      color: var(--muted);
      font-weight: 900;
      font-size: 14px;
    }

    .lead-layout {
      display: grid;
      grid-template-columns: 1fr 0.92fr;
      gap: 28px;
      align-items: stretch;
    }

    .lead-box {
      padding: 32px;
    }

    .lead-list {
      display: grid;
      gap: 14px;
      margin-top: 24px;
    }

    .lead-list li {
      list-style: none;
      display: flex;
      gap: 12px;
      align-items: flex-start;
      color: var(--muted);
      font-weight: 750;
      line-height: 1.55;
    }

    .check {
      width: 22px;
      height: 22px;
      flex: 0 0 22px;
      border-radius: 50%;
      background: rgba(10, 177, 215, 0.14);
      color: var(--todify-dark);
      display: grid;
      place-items: center;
      font-size: 12px;
      font-weight: 950;
      margin-top: 1px;
    }

    .form {
      background: white;
      border: 1px solid var(--line);
      border-radius: 30px;
      padding: 24px;
      box-shadow: var(--shadow);
    }

    .form h3 {
      font-size: 24px;
      letter-spacing: -0.04em;
      margin-bottom: 8px;
    }

    .form p {
      color: var(--muted);
      line-height: 1.5;
      font-weight: 650;
      margin-bottom: 20px;
    }

    .field-grid {
      display: grid;
      gap: 12px;
    }

    .field {
      width: 100%;
      min-height: 54px;
      border: 1px solid rgba(13, 27, 42, 0.12);
      background: #FBFDFF;
      border-radius: 18px;
      padding: 0 16px;
      font: inherit;
      font-weight: 700;
      color: var(--ink);
      outline: none;
    }

    .field:focus {
      border-color: rgba(10, 177, 215, 0.55);
      box-shadow: 0 0 0 4px rgba(10, 177, 215, 0.1);
    }

    select.field {
      appearance: none;
    }

    .form .btn {
      width: 100%;
      margin-top: 14px;
    }

    .form-note {
      font-size: 12px;
      color: var(--muted);
      text-align: center;
      font-weight: 700;
      margin-top: 12px;
    }

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

    .faq-item {
      padding: 0;
      overflow: hidden;
    }

    .faq-trigger {
      width: 100%;
      border: 0;
      background: transparent;
      padding: 22px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 18px;
      cursor: pointer;
      text-align: left;
      font: inherit;
      color: inherit;
    }

    .faq-item h3 {
      font-size: 18px;
      letter-spacing: -0.03em;
      margin: 0;
      flex: 1 1 auto;
    }

    .faq-icon {
      width: 34px;
      height: 34px;
      border-radius: 50%;
      border: 1px solid rgba(10, 177, 215, 0.18);
      display: grid;
      place-items: center;
      color: var(--todify-dark);
      font-size: 20px;
      font-weight: 900;
      flex: 0 0 auto;
      transition: 0.25s ease;
    }

    .faq-answer {
      overflow: hidden;
      max-height: 0;
      opacity: 0;
      transition: max-height 0.28s ease, opacity 0.2s ease;
    }

    .faq-answer p {
      color: var(--muted);
      line-height: 1.58;
      font-weight: 700;
      margin: 0;
      padding: 0 22px 22px;
    }

    .faq-item.is-open .faq-answer {
      max-height: 260px;
      opacity: 1;
    }

    .faq-item.is-open .faq-icon {
      transform: rotate(45deg);
      background: rgba(10, 177, 215, 0.1);
    }

    .final-cta {
      padding: 120px 0 140px;
    }

    .cta-card {
      background: 
        radial-gradient(circle at 0% 0%, rgba(255, 255, 255, 0.15) 0%, transparent 40%),
        radial-gradient(circle at 100% 100%, rgba(0, 0, 0, 0.1) 0%, transparent 40%),
        linear-gradient(135deg, #0C7ABA 0%, #0AB1D7 100%);
      color: white;
      border-radius: 56px;
      padding: 80px 40px;
      box-shadow: 
        0 40px 100px rgba(10, 177, 215, 0.25),
        0 20px 40px rgba(12, 122, 186, 0.15);
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
      overflow: hidden;
      position: relative;
    }

    /* Decorative elements */
    .cta-card::before,
    .cta-card::after {
      content: "";
      position: absolute;
      width: 400px;
      height: 400px;
      border-radius: 50%;
      background: rgba(255, 255, 255, 0.05);
      z-index: 0;
    }

    .cta-card::before {
      top: -200px;
      right: -100px;
    }

    .cta-card::after {
      bottom: -200px;
      left: -100px;
    }

    .cta-card h2 {
      max-width: 820px;
      font-size: clamp(38px, 5vw, 64px);
      line-height: 1;
      letter-spacing: -0.04em;
      margin: 0;
      z-index: 1;
    }

    .cta-card p {
      opacity: 0.95;
      margin: 28px auto 0;
      font-size: 22px;
      line-height: 1.5;
      font-weight: 500;
      max-width: 720px;
      z-index: 1;
    }

    .cta-points {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 14px;
      margin-top: 40px;
      z-index: 1;
    }

    .cta-point {
      display: inline-flex;
      align-items: center;
      padding: 12px 20px;
      border-radius: 999px;
      background: rgba(255, 255, 255, 0.1);
      border: 1px solid rgba(255, 255, 255, 0.2);
      font-size: 14px;
      font-weight: 800;
      backdrop-filter: blur(8px);
      color: white;
    }

    .cta-actions {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 24px;
      margin-top: 54px;
      width: 100%;
      z-index: 1;
    }

    .cta-card .btn {
      background: white;
      color: var(--todify-dark);
      padding: 0 56px;
      min-height: 72px;
      font-size: 20px;
      border-radius: 999px;
      box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
      transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
      width: fit-content;
    }

    .cta-card .btn:hover {
      background: white;
      transform: translateY(-4px) scale(1.02);
      box-shadow: 0 30px 60px rgba(0, 0, 0, 0.2);
    }

    .cta-note {
      margin: 0;
      font-size: 15px;
      line-height: 1.5;
      opacity: 0.85;
      max-width: 400px;
      text-align: center;
      font-weight: 600;
      color: rgba(255, 255, 255, 0.9);
    }

    .footer {
      padding: 34px 0;
      color: var(--muted);
      border-top: 1px solid var(--line);
      font-weight: 700;
    }

    .footer-inner {
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 20px;
      flex-wrap: wrap;
    }

    .footer-meta {
      display: flex;
      align-items: center;
      gap: 18px;
      flex-wrap: wrap;
      justify-content: flex-end;
    }

    .footer-meta p {
      margin: 0;
    }

    .footer-links {
      display: flex;
      align-items: center;
      gap: 10px;
      flex-wrap: wrap;
      justify-content: flex-end;
    }

    .footer-link {
      color: var(--todify-dark);
      text-decoration: none;
      font-weight: 900;
      padding: 10px 14px;
      border: 1px solid rgba(10, 177, 215, 0.18);
      border-radius: 999px;
      background: rgba(255, 255, 255, 0.88);
      box-shadow: 0 10px 24px rgba(12, 122, 186, 0.08);
      transition: 0.2s ease;
    }

    .footer-link:hover {
      color: var(--todify);
      border-color: rgba(10, 177, 215, 0.32);
      transform: translateY(-1px);
    }

    .footer-link-icon {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 44px;
      height: 44px;
      color: var(--todify-dark);
      text-decoration: none;
      border: 1px solid rgba(10, 177, 215, 0.18);
      border-radius: 50%;
      background: rgba(255, 255, 255, 0.88);
      box-shadow: 0 10px 24px rgba(12, 122, 186, 0.08);
      transition: 0.2s ease;
    }

    .footer-link-icon:hover {
      color: var(--todify);
      border-color: rgba(10, 177, 215, 0.32);
      transform: translateY(-2px);
      box-shadow: 0 15px 30px rgba(12, 122, 186, 0.15);
    }

    .mobile-only {
      display: none;
    }

    .mobile-float-cta {
      display: none;
      position: fixed;
      left: 50%;
      right: auto;
      transform: translateX(-50%);
      width: min(calc(100% - 28px), 420px);
      bottom: calc(12px + env(safe-area-inset-bottom, 0px));
      z-index: 45;
      min-height: 56px;
      padding: 0 20px;
      border: 1px solid rgba(255, 255, 255, 0.22);
      box-shadow: 0 18px 42px rgba(10, 177, 215, 0.3);
      backdrop-filter: blur(14px);
      -webkit-backdrop-filter: blur(14px);
    }

    /* ====== MEDIA QUERIES ====== */
    @media (max-width: 1120px) {
      .nav-inner {
        gap: 16px;
      }

      .nav-links {
        gap: 20px;
      }

      .brand {
        font-size: 22px;
      }

      .btn {
        min-height: 46px;
        padding: 0 18px;
      }

      .hero-grid {
        gap: 36px;
      }

      .hero-copy {
        font-size: 18px;
      }

      .hero-stats {
        grid-template-columns: repeat(3, minmax(0, 1fr));
      }
    }

    @media (max-width: 980px) {
      .desktop-section-cta {
        display: none;
      }

      .section-end-cta {
        display: none;
      }

      .container {
        width: min(100% - 36px, 1180px);
      }

      .nav {
        position: sticky;
      }

      .nav-inner {
        min-height: 64px;
        height: auto;
        padding: 0;
        flex-wrap: nowrap;
        justify-content: space-between;
      }

      .nav-links {
        display: none;
      }

      .nav-toggle {
        display: flex;
      }

      .nav.is-open .nav-links {
        /* No-op: mobile menu is handled by .mobile-menu overlay outside nav */
        display: none;
      }

      .hero-grid,
      .profit-layout,
      .lead-layout,
      .cta-card {
        grid-template-columns: 1fr;
      }

      .hero {
        padding-top: 58px;
      }

      .hero-stats {
        grid-template-columns: repeat(3, minmax(0, 1fr));
      }

      .mockup-wrap {
        max-width: 620px;
        margin: 0 auto;
      }

      .floating-card.one {
        right: 8px;
        top: 26px;
      }

      .floating-card.two {
        left: 8px;
        bottom: 26px;
      }

      .audience-grid,
      .features-grid,
      .faq-grid {
        grid-template-columns: 1fr 1fr;
      }

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

      .cta-card {
        padding: 38px;
      }

      .footer-inner,
      .footer-meta,
      .footer-links {
        justify-content: center;
      }

      .footer-meta {
        flex-direction: column;
        text-align: center;
        width: 100%;
      }

      .carousel-slide {
        flex: 0 0 calc(50% - 10px);
      }
    }

    @media (max-width: 820px) {
      h1 {
        font-size: clamp(38px, 8vw, 56px);
      }

      h2 {
        font-size: clamp(28px, 6vw, 40px);
      }

      .section-head {
        margin: 0 auto 38px auto;
      }

      .section-text {
        font-size: 16px;
      }

      .hero-copy {
        font-size: 17px;
      }

      .hero-stats {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }

      .stat:nth-child(2)::after,
      .stat:nth-child(4)::after {
        display: none;
      }

      .stat:nth-child(1), .stat:nth-child(2) {
        border-bottom: 1px solid var(--line);
      }

      .audience-grid,
      .features-grid,
      .faq-grid,
      .catalog-grid {
        grid-template-columns: 1fr;
      }

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

      .catalog-placeholder {
        max-width: 520px;
      }

      .catalog-item {
        align-items: stretch;
      }

      .faq-item {
        padding: 0;
      }

      .cta-card {
        border-radius: 40px;
        padding: 60px 24px;
      }

      .cta-actions {
        width: 100%;
        align-items: stretch;
      }

      .cta-note {
        max-width: none;
        text-align: center;
        font-size: 14px;
      }

      .cta-card .btn {
        width: 100%;
        padding: 0 24px;
      }

      .integration-box {
        min-width: 200px;
        width: max-content;
        padding: 14px 44px;
        font-size: 16px;
        overflow: visible;
      }
    }

    @media (max-width: 660px) {
      body {
        padding-bottom: 104px;
      }

      .desktop-section-cta {
        display: none;
      }

      .container {
        width: min(100% - 28px, 1180px);
      }

      .nav-inner {
        min-height: 64px;
        padding: 0;
        flex-wrap: nowrap;
        justify-content: space-between;
      }

      .nav-cta {
        display: flex;
        align-items: center;
        gap: 6px;
        margin-left: auto;
        margin-right: 8px;
      }

      .lang-switch {
        padding: 2px;
        gap: 2px;
        box-shadow: none;
        background: rgba(255, 255, 255, 0.5);
      }

      .lang-btn {
        min-width: 28px;
        padding: 0 4px;
        font-size: 9px;
        min-height: 28px;
      }

      .brand img {
        height: 24px !important;
      }

      .nav-toggle {
        display: flex;
      }

      .nav-links {
        display: none;
      }

      .nav.is-open .nav-links {
        display: none; /* handled by .mobile-menu outside nav */
      }

      .nav-links a {
        width: 100%;
        padding: 18px;
        text-align: center;
        font-size: 18px;
        font-weight: 700;
        color: var(--ink);
        border-bottom: 1px solid rgba(13, 27, 42, 0.06);
      }

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

      .nav-menu-cta {
        display: flex !important;
        margin-top: 30px;
        width: 100%;
        justify-content: center;
      }

      .brand-mark {
        width: 38px;
        height: 38px;
      }

      .hero {
        padding: 38px 0 40px;
      }

      h1 {
        font-size: clamp(34px, 10vw, 44px);
        line-height: 1;
        margin-top: 18px;
      }

      .hero-copy {
        font-size: 16px;
        line-height: 1.6;
        margin-top: 18px;
      }

      .hero-actions {
        flex-direction: column;
      }

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

      .pill {
        font-size: 11px;
        padding: 8px 12px;
      }

      .hero-stats {
        margin-top: 28px;
      }

      .audience-grid,
      .features-grid,
      .faq-grid,
      .steps-grid,
      .integrations {
        grid-template-columns: 1fr;
      }

      .product-card {
        grid-template-columns: 1fr;
      }

      .shirt {
        height: 170px;
      }

      .mockup-wrap {
        display: none;
      }

      .floating-card {
        display: none;
      }

      section {
        padding: 54px 0;
      }

      .cta-card {
        padding: 28px 22px;
        border-radius: 28px;
        gap: 22px;
      }

      .cta-card h2 {
        font-size: clamp(32px, 9vw, 42px);
        line-height: 1.02;
      }

      .cta-card p {
        font-size: 16px;
      }

      .cta-points {
        gap: 8px;
      }

      .cta-point {
        width: 100%;
        justify-content: center;
      }

      .faq-item h3 {
        font-size: 17px;
      }

      .faq-item p,
      .catalog-item p,
      .audience-card p,
      .feature-card p {
        font-size: 15px;
      }

      .catalog-item h3,
      .audience-card h3,
      .feature-card h3,
      .step-card h3 {
        font-size: 19px;
      }

      .catalog-placeholder {
        margin-bottom: 16px;
      }

      .cp-pill {
        left: 18px;
        bottom: 18px;
      }

      .integration-box {
        min-width: 180px;
        width: max-content;
        padding: 12px 36px;
        font-size: 15px;
        gap: 10px;
        overflow: visible;
      }

      .integration-mark {
        width: 30px;
        height: 30px;
      }

      .mobile-only {
        display: block;
      }

      .mobile-float-cta {
        display: inline-flex;
      }

      .carousel-wrapper {
        padding: 0 0 54px;
      }

      .carousel-slide {
        flex: 0 0 100%;
      }

      .carousel-arrow {
        display: grid;
        top: auto;
        bottom: 0;
        transform: none;
        width: 44px;
        height: 44px;
      }

      .carousel-arrow.prev {
        left: calc(50% - 56px);
      }

      .carousel-arrow.next {
        right: calc(50% - 56px);
      }

      .carousel-arrow:hover {
        transform: scale(1.04);
      }

      .footer {
        padding: 28px 0 10px;
      }

      .footer-inner {
        gap: 16px;
      }

      .footer-links {
        gap: 8px;
      }

      .footer-link {
        width: 100%;
        justify-content: center;
        text-align: center;
      }
    }

    @media (max-width: 420px) {
      .mobile-float-cta {
        width: calc(100% - 22px);
        min-height: 54px;
        font-size: 15px;
        bottom: calc(10px + env(safe-area-inset-bottom, 0px));
      }

      body {
        padding-bottom: 98px;
      }
    }



/* ====== LANGUAGE DROPDOWN ====== */
.lang-dropdown {
  position: relative;
  z-index: 100;
}

.lang-dropdown-trigger {
  display: flex;
  align-items: center;
  gap: 8px;
  background: white;
  border: 1px solid var(--line);
  padding: 8px 16px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 800;
  color: var(--ink);
  cursor: pointer;
  transition: all 0.2s ease;
  box-shadow: 0 4px 12px rgba(0,0,0,0.03);
}

.lang-dropdown-trigger:hover {
  border-color: var(--todify);
  background: #F8FAFC;
}

.lang-dropdown-menu {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  background: white;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 8px;
  min-width: 120px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
  display: none;
  flex-direction: column;
  gap: 4px;
  animation: slideDown 0.2s ease;
}

@keyframes slideDown {
  from { opacity: 0; transform: translateY(-10px); }
  to { opacity: 1; transform: translateY(0); }
}

.lang-dropdown.is-open .lang-dropdown-menu {
  display: flex;
}

.lang-dropdown.is-open .lang-dropdown-trigger svg {
  transform: rotate(180deg);
}

.lang-dropdown-menu .lang-btn {
  background: none;
  border: none;
  padding: 10px 16px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 700;
  text-align: left;
  color: var(--ink);
  cursor: pointer;
  transition: all 0.2s;
  white-space: nowrap;
}

.lang-dropdown-menu .lang-btn:hover {
  background: #EFF8FC;
  color: var(--todify);
}

.lang-dropdown-menu .lang-btn.active {
  background: var(--todify);
  color: white;
}

html[dir="rtl"] .lang-dropdown-menu {
  right: auto;
  left: 0;
  text-align: right;
}

html[dir="rtl"] .lang-dropdown-menu .lang-btn {
  text-align: right;
}

/* ====== FLOATING MOBILE CTA ====== */
.mobile-float-cta {
  display: none;
}

@media (max-width: 660px) {
  .mobile-float-cta {
    display: inline-flex;
    position: fixed;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000;
    width: min(90%, 340px);
    box-shadow: 0 16px 48px rgba(10, 177, 215, 0.4);
    font-size: 16px;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
  }
}



/* ====== SECTION END CTA ====== */
.section-end-cta {
  margin-top: 54px;
  display: flex;
  justify-content: center;
}

.desktop-section-cta {
  font-size: 16px;
  padding: 0 40px;
}

.lang-btn {
  border: 0;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  min-height: 34px;
  padding: 0 10px;
  border-radius: 999px;
  font: inherit;
  font-size: 12px;
  font-weight: 950;
  transition: 0.2s ease;
}

.lang-btn:hover {
  color: var(--todify-dark);
  background: rgba(10, 177, 215, 0.08);
}

.lang-btn.active {
  color: #fff;
  background: linear-gradient(135deg, var(--todify), var(--todify-dark));
  box-shadow: 0 8px 18px rgba(10, 177, 215, 0.22);
}

html[dir="rtl"] body {
  direction: rtl;
}

html[dir="rtl"] .hero-grid,
html[dir="rtl"] .profit-layout,
html[dir="rtl"] .lead-layout,
html[dir="rtl"] .cta-card,
html[dir="rtl"] .product-card {
  direction: rtl;
}

html[dir="rtl"] .hero-copy,
html[dir="rtl"] .section-text,
html[dir="rtl"] .audience-card p,
html[dir="rtl"] .feature-card p,
html[dir="rtl"] .step-card p,
html[dir="rtl"] .lead-box p,
html[dir="rtl"] .faq-item p {
  line-height: 1.85;
}

html[dir="rtl"] h1,
html[dir="rtl"] h2,
html[dir="rtl"] h3 {
  letter-spacing: -0.035em;
}

html[dir="rtl"] .lead-list li {
  text-align: right;
}

html[dir="rtl"] .check {
  margin-top: 4px;
}

html[dir="rtl"] .floating-card {
  direction: rtl;
}

html[dir="rtl"] .calc-row {
  direction: rtl;
}

html[dir="rtl"] .faq-trigger {
  flex-direction: row-reverse;
  text-align: right;
}

html[dir="rtl"] .faq-answer p {
  text-align: right;
}



/* ====== INTEGRATIONS SECTION ====== */
.integrations-section {
  background: #FAFBFC;
  padding: 80px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  text-align: center;
}

.marquee-wrap {
  width: 100%;
  overflow: hidden;
  position: relative;
  padding: 20px 0;
  margin-bottom: 40px;
  mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.marquee-content {
  display: flex;
  gap: 24px;
  width: max-content;
  animation: marquee 50s linear infinite;
}

.marquee-content:hover {
  animation-play-state: paused;
}

@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(calc(-50% - 12px)); }
}

@keyframes marquee-rtl {
  0% { transform: translateX(0); }
  100% { transform: translateX(calc(50% + 12px)); }
}

html[dir="rtl"] .marquee-content {
  animation: marquee-rtl 50s linear infinite;
}

.integration-box {
  background: white;
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 20px 64px;
  min-width: 240px;
  width: max-content;
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  font-size: 18px;
  font-weight: 800;
  color: var(--ink);
  box-shadow: 0 10px 30px rgba(0,0,0,0.03);
  transition: 0.3s ease;
  overflow: visible;
}

.integration-box img {
  max-width: none !important;
  display: block;
}

.integration-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(12, 122, 186, 0.1);
  border-color: rgba(10, 177, 215, 0.4);
}

.integration-mark {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
}

.integration-mark svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.integration-mark.shopify svg {
  fill: #95BF47;
  stroke: white;
}

.integration-mark.woocommerce svg {
  fill: #7F54B3;
  stroke: white;
}

.integration-mark.dropify svg {
  fill: none;
  stroke: #0AB1D7;
}

.integration-mark.youcan svg {
  fill: #E91E63;
  stroke: white;
}

.integration-mark.jumia svg {
  fill: #F59E0B;
  stroke: white;
}

.integration-mark.marjane svg {
  fill: #0F766E;
  stroke: white;
}

.integration-name.shopify {
  color: #95BF47;
}

.integration-name.woocommerce {
  color: #7F54B3;
}

.integration-name.dropify {
  color: #0AB1D7;
}

.integration-name.youcan {
  color: #E91E63;
}

.integration-name.jumia {
  color: #1F2937;
}

.integration-name.marjane {
  color: #004D40;
}

.coming-soon-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  border: 1px solid var(--line);
  background: white;
  border-radius: 999px;
  color: var(--muted);
  font-weight: 700;
  font-size: 13px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.02);
}

.coming-soon-dot {
  width: 6px;
  height: 6px;
  background: #60A5FA;
  border-radius: 50%;
}

/* ====== CATALOG SECTION ====== */
.catalog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.catalog-item {
  display: flex;
  flex-direction: column;
}

.catalog-placeholder {
  background: #F3F9FB;
  border-radius: 28px;
  padding: 16px;
  aspect-ratio: 1 / 1;
  position: relative;
  margin-bottom: 20px;
  display: flex;
  overflow: hidden;
  align-items: stretch;
  justify-content: stretch;
  box-shadow: 0 18px 48px rgba(12, 122, 186, 0.08);
}

.catalog-image {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  border-radius: 20px;
  background: white;
}

.cp-pill {
  display: inline-flex;
  background: var(--todify);
  color: white;
  font-size: 9px;
  font-weight: 800;
  padding: 5px 12px;
  border-radius: 999px;
  text-transform: uppercase;
  position: absolute;
  left: 28px;
  bottom: 28px;
  box-shadow: 0 10px 24px rgba(10, 177, 215, 0.2);
}

.catalog-item h3 {
  font-size: 20px;
  font-weight: 900;
  margin-bottom: 6px;
  letter-spacing: -0.02em;
}

.catalog-item p {
  font-size: 14px;
  color: var(--muted);
  font-weight: 700;
  line-height: 1.5;
}

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

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


/* ====== SELLER REVIEWS SECTION ====== */
.reviews-masonry {
  column-count: 3;
  column-gap: 20px;
}
@media (max-width: 980px) {
  .reviews-masonry {
    column-count: 2;
  }
}
@media (max-width: 660px) {
  .reviews-masonry {
    column-count: 1;
  }
}

.seller-review-card {
  background: white;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 20px;
  margin-bottom: 20px;
  break-inside: avoid;
  box-shadow: 0 10px 30px rgba(0,0,0,0.03);
}

.sr-header {
  display: flex;
  gap: 12px;
  margin-bottom: 16px;
}

.sr-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #EAF7FC;
  display: grid;
  place-items: center;
  font-weight: bold;
  color: var(--todify-dark);
  font-size: 16px;
  flex-shrink: 0;
}

.sr-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.sr-name-row {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.sr-name {
  font-weight: 800;
  font-size: 15px;
}

.sr-badge {
  font-size: 10px;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 999px;
}

.sr-badge-seller {
  background: #eff6ff;
  color: #3b82f6;
}

.sr-badge-store {
  background: #f1f5f9;
  color: #475569;
}

.sr-rating-row {
  display: flex;
  align-items: center;
  gap: 8px;
}

.sr-stars {
  color: #fbbf24;
  font-size: 14px;
  letter-spacing: 2px;
}

.sr-rating-num {
  font-weight: 800;
  font-size: 14px;
  color: #10b981;
}

.sr-order {
  font-size: 11px;
  font-weight: 700;
  color: #64748b;
  background: #f8fafc;
  padding: 2px 6px;
  border-radius: 6px;
  border: 1px solid #e2e8f0;
}

.sr-body {
  border-left: 3px solid #8b5cf6;
  padding-left: 12px;
  margin-bottom: 16px;
}

.sr-text {
  font-size: 14px;
  color: #334155;
  line-height: 1.6;
  font-weight: 500;
}

.sr-footer {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.sr-footer-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 700;
  padding: 5px 10px;
  border-radius: 999px;
  border: 1px solid #e2e8f0;
  background: white;
}

.sr-pill-icon {
  color: #94a3b8;
}

.sr-type-detailed {
  color: #10b981;
  border-color: #d1fae5;
  background: #ecfdf5;
}

.sr-type-short {
  color: #f59e0b;
  border-color: #fef3c7;
  background: #fffbeb;
}

html[dir="rtl"] .sr-header {
  flex-direction: row-reverse;
}

html[dir="rtl"] .sr-name-row, html[dir="rtl"] .sr-rating-row {
  flex-direction: row-reverse;
}

html[dir="rtl"] .sr-body {
  border-left: none;
  border-right: 3px solid #8b5cf6;
  padding-left: 0;
  padding-right: 12px;
}

html[dir="rtl"] .sr-text {
  text-align: right;
}


/* Reviews Wrapper */
.reviews-wrapper {
  position: relative;
}

.btn-view-more {
  background: white;
  border: 1px solid var(--line);
  color: var(--todify-dark);
  font-weight: 800;
  font-size: 14px;
  padding: 14px 28px;
  border-radius: 999px;
  cursor: pointer;
  box-shadow: 0 4px 14px rgba(0,0,0,0.05);
  transition: all 0.2s ease;
}

.btn-view-more:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.08);
}

/* Responsive for Profit Section */
@media (max-width: 1024px) {
  .profit-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .profit-card-main {
    padding: 32px;
  }
}

@media (max-width: 640px) {
  .hero-text {
    font-size: 38px;
  }
  
  .highlight-text {
    font-size: 24px;
  }
  
  .profit-card-main {
    padding: 24px;
    border-radius: 30px;
  }
  
  .card-header h3 {
    font-size: 20px;
  }
}

    .field {
      background: white;
      border: 1px solid var(--line);
      padding: 14px 18px;
      border-radius: 14px;
      font-weight: 600;
      width: 100%;
      outline: none;
      transition: border-color 0.2s;
    }

    .field:focus {
      border-color: var(--todify);
    }
