    :root {
      --primary: #4086F7;
      --primary-light: #EBF2FE;
      --primary-foreground: #FAFAFA;
      --foreground: #19191A;
      --background: #FFFFFF;
      --muted: #737373;
      --border: #E5E5E5;
      --border-light: #F3F4F6;
      --radius-container: 60px;
      --radius-bubble: 16px;
      --shadow-sm: 0px 4px 6px -1px rgba(0,0,0,0.1), 0px 2px 4px -2px rgba(0,0,0,0.1);
      --shadow-md: 0px 10px 15px -3px rgba(0,0,0,0.1), 0px 4px 6px -4px rgba(0,0,0,0.1);
    }

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

    html, body {
      font-family: 'Poppins', sans-serif;
      color: var(--foreground);
      background: var(--background);
      line-height: 1.5;
      overflow-x: hidden;
      max-width: 100vw;
    }

    #root {
      overflow-x: hidden;
    }

    .skip-link {
      position: absolute;
      top: -40px;
      left: 16px;
      background: var(--primary);
      color: white;
      padding: 8px 16px;
      border-radius: 4px;
      z-index: 10000;
      font-size: 14px;
      text-decoration: none;
      transition: top 0.2s;
    }

    .skip-link:focus {
      top: 8px;
    }

    .btn {
      padding: 12px 24px;
      border-radius: 60px;
      font-size: 14px;
      font-weight: 500;
      cursor: pointer;
      transition: background-color 0.2s, color 0.2s;
      border: none;
      font-family: inherit;
    }

    .btn-ghost {
      background: transparent;
      color: var(--foreground);
    }

    .btn-ghost:hover {
      background: var(--border-light);
    }

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

    .btn-primary:hover {
      background: #3070d9;
    }

    /* Hero Section */
    .hero {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 60px 80px 80px;
      max-width: 1400px;
      margin: 0 auto;
      gap: 60px;
      position: relative;
    }

    .hero::before {
      content: '';
      position: absolute;
      top: -50px;
      left: 50%;
      transform: translateX(-30%);
      width: 1400px;
      height: 700px;
      background: radial-gradient(ellipse 70% 60% at 60% 40%, rgba(64, 134, 247, 0.35) 0%, rgba(64, 134, 247, 0.2) 30%, rgba(64, 134, 247, 0.08) 55%, transparent 80%);
      pointer-events: none;
      z-index: -1;
      filter: blur(60px);
    }

    .hero::after {
      content: '';
      position: absolute;
      top: 50px;
      right: -100px;
      width: 800px;
      height: 600px;
      background: radial-gradient(ellipse 60% 50% at 50% 50%, rgba(100, 160, 255, 0.3) 0%, rgba(64, 134, 247, 0.15) 40%, transparent 70%);
      pointer-events: none;
      z-index: -1;
      filter: blur(50px);
    }

    .hero-content {
      flex: 1;
      max-width: 550px;
    }

    .hero-visual-mobile {
      display: none;
    }

    .hero-visual-desktop {
      display: flex;
    }

    .hero-cta {
      display: contents;
    }

    .hero-title {
      font-size: 48px;
      font-weight: 700;
      line-height: 1.2;
      margin-bottom: 24px;
      color: #252F3B;
      letter-spacing: -1.5px;
    }

    .hero-subtitle {
      font-size: 20px;
      font-weight: 300;
      color: #4A5568;
      margin-bottom: 32px;
      line-height: 1.5;
      letter-spacing: -0.3px;
    }

    .hero-subtitle strong {
      font-weight: 700;
      color: #1A202C;
    }

    .btn-large {
      padding: 14px 56px;
      font-size: 14px;
      text-transform: uppercase;
      letter-spacing: 1px;
      font-weight: 600;
    }

    .app-badges {
      display: flex;
      align-items: center;
      gap: 36px;
      margin-top: 28px;
    }

    .app-badge {
      height: 35px !important;
      width: auto !important;
      max-width: none !important;
      opacity: 0.7;
      transition: opacity 0.2s;
      filter: invert(1) brightness(0.3);
    }

    .app-badge:hover {
      opacity: 1;
    }

    .badge-divider {
      width: 1px;
      height: 35px;
      background: var(--border);
    }

    .hero-visual {
      flex: 1;
      display: flex;
      justify-content: center;
      position: relative;
      padding: 20px;
    }

    .hero-visual-container {
      position: relative;
      width: 650px;
      height: 580px;
    }

    .influencer-card {
      position: absolute;
      left: 0;
      top: 0;
      width: 226px;
      height: 380px;
      border-radius: 20px;
      overflow: hidden;
      box-shadow: 0 25px 50px -12px rgba(0,0,0,0.15);
      z-index: 1;
    }

    .influencer-image {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .stats-card {
      position: absolute;
      background: white;
      border: 1px solid var(--border-light);
      border-radius: 24px;
      padding: 16px;
      box-shadow: 0 4px 12px rgba(0,0,0,0.08);
      z-index: 10;
    }

    .stats-spend {
      left: -20px;
      top: 300px;
      width: 240px;
      height: 120px;
      z-index: 2;
      transition: transform 0.3s ease-out;
    }

    .stats-roas {
      right: -50px;
      top: 45px;
      width: 120px;
      padding: 12px;
      display: flex;
      transition: transform 0.3s ease-out;
      align-items: center;
      gap: 8px;
      z-index: 20;
    }

    .stats-icon {
      width: 36px;
      height: 36px;
      background: rgba(148, 179, 245, 0.2);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
    }

    .stats-label {
      font-size: 14px;
      font-weight: 600;
      color: #6e6e6e;
      text-transform: uppercase;
      margin-bottom: 4px;
    }

    .stats-value {
      font-size: 24px;
      font-weight: 700;
      color: #0f1729;
    }

    .stats-graph {
      position: absolute;
      right: 16px;
      bottom: 16px;
      width: 160px;
      height: 45px;
    }

    .stats-graph svg {
      width: 100%;
      height: 100%;
    }

    .mini-chat {
      position: absolute;
      right: 0;
      top: 20px;
      width: 480px;
      height: 480px;
      background: rgba(255, 255, 255, 0.85);
      backdrop-filter: blur(20px);
      border: 2px solid var(--primary);
      border-radius: 47px;
      overflow: hidden;
      box-shadow: 0 25px 50px -12px rgba(64, 134, 247, 0.2);
      display: flex;
      flex-direction: column;
      z-index: 5;
    }

    .mini-chat-header {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      padding: 12px 16px;
      font-size: 12px;
      font-weight: 500;
    }

    .mini-chat-header > span:first-child {
      background: var(--primary-light);
      padding: 8px 14px;
      border-radius: 60px;
      display: flex;
      align-items: center;
      gap: 6px;
    }

    .mini-progress {
      width: 50px;
      height: 6px;
      background: var(--border);
      border-radius: 60px;
      overflow: hidden;
      margin-left: 6px;
    }

    .mini-progress-fill {
      width: 30%;
      height: 100%;
      background: var(--primary);
      border-radius: 60px;
    }

    .mini-chat-content {
      flex: 1;
      overflow: auto;
    }

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

    .mini-chat-message {
      display: flex;
      gap: 10px;
      padding: 12px 20px;
      align-items: flex-start;
      animation: miniFadeIn 0.4s ease forwards;
    }

    .mini-avatar {
      width: 34px;
      height: 34px;
      background: var(--primary);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
    }

    .mini-avatar img {
      width: 50%;
      height: 50%;
      object-fit: contain;
    }

    .mini-bubble {
      background: white;
      border: 1px solid var(--border-light);
      border-radius: 14px;
      padding: 10px 12px;
      box-shadow: 0 4px 6px rgba(0,0,0,0.05);
      max-width: 240px;
      overflow: hidden;
    }

    .mini-bubble-scrollable {
      display: flex;
      flex-direction: column;
    }

    .mini-bubble-scroll-content {
      max-height: 150px;
      overflow-y: auto;
      overflow-x: hidden;
      scrollbar-width: thin;
      scrollbar-color: var(--border-light) transparent;
    }

    .mini-bubble-scroll-content::-webkit-scrollbar {
      width: 4px;
    }

    .mini-bubble-scroll-content::-webkit-scrollbar-track {
      background: transparent;
    }

    .mini-bubble-scroll-content::-webkit-scrollbar-thumb {
      background: var(--border-light);
      border-radius: 2px;
    }

    .mini-sender {
      display: block;
      font-size: 12px;
      font-weight: 600;
      color: var(--primary);
      margin-bottom: 3px;
    }

    .mini-text {
      font-size: 13px;
      color: var(--foreground);
      line-height: 1.4;
    }

    .mini-chat-input {
      display: flex !important;
      gap: 10px !important;
      padding: 14px 20px 20px;
      margin-top: auto;
      align-items: center !important;
    }

    .mini-chat-input input {
      flex: 1 !important;
      height: 44px !important;
      background: white !important;
      border: 1px solid var(--border-light) !important;
      border-radius: 44px !important;
      padding: 0 18px !important;
      font-size: 13px !important;
      font-family: inherit;
      color: var(--muted);
      box-shadow: 0 4px 6px rgba(0,0,0,0.03);
      min-width: 0 !important;
    }

    .mini-send-btn {
      width: 44px !important;
      height: 44px !important;
      min-width: 44px !important;
      min-height: 44px !important;
      background: var(--foreground) !important;
      border-radius: 50% !important;
      border: none !important;
      display: flex !important;
      align-items: center !important;
      justify-content: center !important;
      opacity: 0.2;
      padding: 0 !important;
      flex-shrink: 0 !important;
    }

    .mini-send-btn svg {
      width: 15px !important;
      height: 15px !important;
      stroke: white !important;
      display: block !important;
    }

    /* Hero Chat Animation Styles */
    .mini-approve-btn {
      border: 1px solid #4086F7;
      background: transparent;
      color: #4086F7;
      border-radius: 60px;
      padding: 10px 0;
      width: 100%;
      font-weight: 600;
      font-size: 11px;
      font-family: inherit;
      cursor: pointer;
      margin-top: 10px;
      transition: background-color 0.3s ease;
    }

    .mini-approve-btn:hover {
      background: rgba(64, 134, 247, 0.1);
    }

    .mini-approved-btn {
      background: #40CC96;
      color: white;
      border: none;
      border-radius: 60px;
      padding: 10px 0;
      width: 100%;
      font-weight: 600;
      font-size: 11px;
      font-family: inherit;
      cursor: default;
      margin-top: 10px;
    }

    .mini-concept-btn {
      border: 1px solid #4086F7;
      background: transparent;
      color: #4086F7;
      border-radius: 60px;
      padding: 8px 12px;
      width: 100%;
      font-weight: 500;
      font-size: 10px;
      font-family: inherit;
      cursor: pointer;
      margin-bottom: 6px;
      text-align: left;
      transition: background-color 0.3s ease;
    }

    .mini-concept-btn:last-child {
      margin-bottom: 0;
    }

    .mini-concept-btn:hover {
      background: rgba(64, 134, 247, 0.1);
    }

    .mini-concept-btn-selected {
      background: #4086F7;
      color: white;
      border: 1px solid #4086F7;
      border-radius: 60px;
      padding: 8px 12px;
      width: 100%;
      font-weight: 500;
      font-size: 10px;
      font-family: inherit;
      cursor: default;
      margin-bottom: 6px;
      text-align: left;
    }

    .mini-creator-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 5px;
      margin-top: 7px;
      width: 100%;
      box-sizing: border-box;
    }

    .mini-creator-card {
      background: #EBF2FE;
      border: 1px solid #4086F7;
      border-radius: 7px;
      padding: 6px 3px;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 4px;
      min-width: 0;
      overflow: hidden;
    }

    .mini-creator-avatar {
      width: 30px;
      height: 30px;
      border-radius: 50%;
      background: #ddd;
      overflow: hidden;
    }

    .mini-creator-avatar img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .mini-platform-badge {
      display: flex;
      align-items: center;
      gap: 2px;
      background: white;
      border-radius: 8px;
      padding: 2px 4px;
      font-size: 7px;
      font-weight: 500;
      color: #333;
      max-width: 100%;
      overflow: hidden;
    }

    .mini-platform-badge svg {
      width: 8px;
      height: 8px;
      flex-shrink: 0;
    }

    .mini-platform-badge span {
      overflow: hidden;
      text-overflow: ellipsis;
      white-space: nowrap;
    }

    .mini-launch-btn {
      border: 1px solid #4086F7;
      background: transparent;
      color: #4086F7;
      border-radius: 60px;
      padding: 10px 0;
      width: 100%;
      font-weight: 600;
      font-size: 11px;
      font-family: inherit;
      cursor: pointer;
      margin-top: 10px;
      transition: background-color 0.3s ease;
    }

    .mini-launch-btn:hover {
      background: rgba(64, 134, 247, 0.1);
    }

    /* Partners Section */
    .partners {
      padding: 24px 0;
      margin-top: -60px;
      background: var(--background);
      overflow: hidden;
    }

    .partners-title {
      text-align: center;
      font-size: 18px;
      font-weight: 600;
      color: var(--foreground);
      margin-bottom: 24px;
    }

    .partners-scroll-container {
      overflow: hidden;
      width: 100%;
    }

    .partners-scroll {
      display: flex;
      flex-wrap: nowrap;
      align-items: center;
      gap: 50px;
      animation: scroll-logos 45s linear infinite;
      width: fit-content;
    }

    .partners-scroll:hover {
      animation-play-state: paused;
    }

    @keyframes scroll-logos {
      0% {
        transform: translateX(0);
      }
      100% {
        transform: translateX(-50%);
      }
    }

    .partner-logo {
      height: auto;
      flex-shrink: 0;
      opacity: 0.7;
      filter: grayscale(100%) brightness(0) invert(0.4);
      transition: opacity 0.3s, filter 0.3s;
    }

    .partner-logo-only-grayscale {
      height: auto;
      flex-shrink: 0;
      opacity: 0.7;
      transition: opacity 0.3s, filter 0.3s;
      filter: grayscale(100%);

    }

    .partner-logo:hover {
      opacity: 0.9;
      filter: grayscale(100%) brightness(0) invert(0.5);
    }

    /* Feature Section */
    .feature-section {
      padding: 100px 80px;
      max-width: 1400px;
      margin: 0 auto;
    }

    .feature-header {
      text-align: center;
      margin-bottom: 60px;
    }

    .feature-badge {
      display: inline-block;
      background: var(--primary-light);
      color: var(--primary);
      padding: 8px 16px;
      border-radius: 60px;
      font-size: 14px;
      font-weight: 500;
      margin-bottom: 16px;
    }

    .feature-title {
      font-size: 36px;
      font-weight: 700;
      margin-bottom: 16px;
    }

    .feature-subtitle {
      font-size: 16px;
      color: var(--muted);
      max-width: 600px;
      margin: 0 auto;
    }

    .feature-content {
      display: flex;
      align-items: center;
      gap: 80px;
    }

    .feature-text {
      flex: 1;
    }

    .feature-text h3 {
      font-size: 28px;
      font-weight: 600;
      margin-bottom: 16px;
    }

    .feature-text p {
      color: var(--muted);
      margin-bottom: 24px;
      line-height: 1.7;
    }

    .feature-list {
      list-style: none;
    }

    .feature-list li {
      display: flex;
      align-items: center;
      gap: 12px;
      margin-bottom: 12px;
      font-size: 14px;
    }

    .feature-list li::before {
      content: "✓";
      display: flex;
      align-items: center;
      justify-content: center;
      width: 20px;
      height: 20px;
      background: var(--primary-light);
      color: var(--primary);
      border-radius: 50%;
      font-size: 12px;
      font-weight: 600;
    }

    .feature-visual {
      flex: 1;
      display: flex;
      justify-content: center;
    }

    .feature-cards {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 32px;
      max-width: 1000px;
      margin: 0 auto;
    }

    .feature-card {
      background: white;
      border: 1px solid var(--border-light);
      border-radius: 24px;
      padding: 32px;
      text-align: center;
      transition: box-shadow 0.3s, transform 0.3s;
    }

    .feature-card:hover {
      box-shadow: 0 20px 40px rgba(0,0,0,0.08);
      transform: translateY(-4px);
    }

    .feature-card-icon {
      width: 56px;
      height: 56px;
      background: var(--primary-light);
      border-radius: 16px;
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 20px;
      color: var(--primary);
    }

    .feature-card h3 {
      font-size: 18px;
      font-weight: 600;
      margin-bottom: 12px;
    }

    .feature-card p {
      font-size: 14px;
      color: var(--muted);
      line-height: 1.6;
    }

    /* Chat Window Styles */
    .chat-window {
      width: 680px;
      height: 627px;
      background: rgba(255, 255, 255, 0.85);
      backdrop-filter: blur(20px);
      -webkit-backdrop-filter: blur(20px);
      border-radius: var(--radius-container);
      overflow: hidden;
      box-shadow: 0 25px 80px -20px rgba(64, 134, 247, 0.25), 0 10px 40px -10px rgba(0,0,0,0.1);
      display: flex;
      flex-direction: column;
      border: 1px solid rgba(255, 255, 255, 0.8);
    }

    .chat-header {
      display: flex;
      justify-content: center;
      padding: 16px;
      background: white;
    }

    .chat-progress {
      display: flex;
      align-items: center;
      gap: 10px;
      background: var(--primary-light);
      padding: 12px 20px;
      border-radius: 60px;
    }

    .chat-progress-label {
      font-size: 14px;
      font-weight: 500;
      color: #090E1A;
    }

    .chat-progress-bar {
      width: 63px;
      height: 8px;
      background: var(--border);
      border-radius: 60px;
      overflow: hidden;
    }

    .chat-progress-fill {
      height: 100%;
      background: var(--primary);
      border-radius: 60px;
      transition: width 0.5s ease;
    }

    .chat-messages {
      flex: 1;
      padding: 24px;
      overflow-y: auto;
      display: flex;
      flex-direction: column;
      gap: 24px;
    }

    .message {
      display: flex;
      gap: 12px;
      opacity: 0;
      transform: translateY(20px);
      animation: messageIn 0.4s ease forwards;
    }

    .message.user {
      flex-direction: row-reverse;
    }

    @keyframes messageIn {
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    .message-avatar {
      width: 40px;
      height: 40px;
      border-radius: 50%;
      background: var(--primary);
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      overflow: hidden;
    }

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

    .message-avatar img.ai-avatar {
      width: 60%;
      height: 60%;
      object-fit: contain;
    }

    .message-avatar svg {
      width: 18px;
      height: 24px;
      fill: white;
    }

    .message-bubble {
      background: var(--primary-foreground);
      border: 1px solid var(--border-light);
      border-radius: var(--radius-bubble);
      padding: 12px 16px;
      box-shadow: 0px 4px 6px -1px rgba(0,0,0,0.1), 0px 2px 4px -2px rgba(0,0,0,0.1);
      max-width: 450px;
    }

    .message.user .message-bubble {
      background: var(--primary);
      border-color: transparent;
      color: white;
      box-shadow: 0px 4px 12px -2px rgba(64, 134, 247, 0.4);
    }

    .message-sender {
      font-size: 14px;
      font-weight: 600;
      color: var(--primary);
      margin-bottom: 4px;
    }

    .message.user .message-sender {
      color: white;
    }

    .message-text {
      font-size: 16px;
      line-height: 1.5;
    }

    .message-image {
      width: 228px;
      height: 228px;
      border-radius: 14px;
      object-fit: cover;
      margin-bottom: 10px;
    }

    .message-brief {
      font-size: 14px;
      line-height: 1.5;
      color: #090E1A;
    }

    .message-brief strong {
      display: block;
      margin-bottom: 8px;
    }

    .typing-indicator {
      display: flex;
      gap: 3px;
      padding: 3px 0;
    }

    .typing-dot {
      width: 6px;
      height: 6px;
      background: var(--muted);
      border-radius: 50%;
      animation: bounce 1.4s ease-in-out infinite;
    }

    .typing-dot:nth-child(2) {
      animation-delay: 0.2s;
    }

    .typing-dot:nth-child(3) {
      animation-delay: 0.4s;
    }

    @keyframes bounce {
      0%, 60%, 100% {
        transform: translateY(0);
      }
      30% {
        transform: translateY(-6px);
      }
    }

    .chat-input {
      padding: 24px 32px;
      display: flex;
      gap: 12px;
      align-items: center;
    }

    .chat-input-field {
      flex: 1;
      height: 56px;
      background: white;
      border: 1px solid #E5E7EB;
      border-radius: 60px;
      padding: 0 24px;
      font-size: 16px;
      font-family: inherit;
      color: var(--muted);
      box-shadow: 0px 4px 6px 6px rgba(0,0,0,0.03);
    }

    .chat-input-field::placeholder {
      color: var(--muted);
    }

    .chat-send-btn {
      width: 56px !important;
      height: 56px !important;
      min-width: 56px !important;
      min-height: 56px !important;
      background: var(--foreground) !important;
      border-radius: 60px !important;
      border: none !important;
      cursor: pointer;
      display: flex !important;
      align-items: center !important;
      justify-content: center !important;
      opacity: 0.2;
      box-shadow: var(--shadow-md);
      transition: opacity 0.2s;
      padding: 0 !important;
    }

    .chat-send-btn:hover {
      opacity: 0.4;
    }

    .chat-send-btn svg {
      width: 20px !important;
      height: 20px !important;
      fill: white !important;
      display: block !important;
    }

    /* Growth Engine Flywheel Section */
    .flywheel-section {
      padding: 60px 80px 100px;
      max-width: 1440px;
      margin: 0 auto;
    }

    .flywheel-title {
      font-size: 25px;
      font-weight: 600;
      color: white;
      text-align: center;
      margin-bottom: 20px;
      letter-spacing: -0.7px;
    }

    .flywheel-container {
      background: linear-gradient(76deg, #ECF3FE 5%, #4086F7 122%);
      border-radius: 37px;
      padding: 32px 32px 43px;
      position: relative;
    }

    .flywheel-tabs {
      display: flex;
      justify-content: center;
      margin-bottom: 24px;
    }

    .flywheel-tablist {
      display: flex;
      background: rgba(255, 255, 255, 0.8);
      border: 1px solid var(--border);
      border-radius: 100px;
      padding: 9px;
      gap: 0;
    }

    .flywheel-tab {
      padding: 10px 32px;
      border-radius: 28px;
      font-size: 14px;
      font-weight: 400;
      color: var(--primary);
      background: transparent;
      border: none;
      cursor: pointer;
      transition: background-color 0.3s ease, color 0.3s ease, box-shadow 0.3s ease;
      font-family: inherit;
      white-space: nowrap;
      position: relative;
    }

    .flywheel-tab.active {
      background: var(--primary);
      color: white;
      box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.09);
    }

    .flywheel-tab:not(.active):hover {
      color: rgba(64, 134, 247, 0.7);
    }

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

    .flywheel-tabpanel {
      background: transparent;
      border: 1px solid var(--primary);
      border-radius: 28px;
      overflow: hidden;
      min-height: 500px;
      display: flex;
      align-items: center;
      justify-content: center;
      animation: flywheelFadeIn 0.4s ease;
    }

    .flywheel-tabpanel[hidden] {
      display: none;
    }

    .flywheel-video-container {
      width: 100%;
      height: 100%;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .flywheel-video {
      width: 100%;
      height: auto;
      object-fit: contain;
    }

    /* Mobile carousel label + dots — hidden on desktop */
    .flywheel-mobile-label,
    .flywheel-dots {
      display: none;
    }

    /* Browser Mockup */
    .browser-mockup {
      display: flex;
      flex-direction: column;
      height: 100%;
    }

    .browser-chrome {
      background: linear-gradient(180deg, #F5F5F5 0%, #E8E8E8 100%);
      padding: 8px 12px;
      display: flex;
      align-items: center;
      gap: 8px;
      border-bottom: 1px solid var(--border);
    }

    .browser-dots {
      display: flex;
      gap: 6px;
    }

    .browser-dot {
      width: 12px;
      height: 12px;
      border-radius: 50%;
    }

    .browser-dot.red { background: #FF5F57; }
    .browser-dot.yellow { background: #FFBD2E; }
    .browser-dot.green { background: #28CA41; }

    .browser-tab {
      display: flex;
      align-items: center;
      gap: 6px;
      background: white;
      padding: 6px 12px;
      border-radius: 6px 6px 0 0;
      font-size: 11px;
      color: #666;
      margin-left: 12px;
    }

    .browser-tab-icon {
      width: 14px;
      height: 14px;
      background: var(--primary);
      border-radius: 3px;
    }

    .browser-address-bar {
      background: #F8F8F8;
      padding: 10px 16px;
      display: flex;
      align-items: center;
      border-bottom: 1px solid var(--border);
    }

    .browser-address {
      background: white;
      border: 1px solid var(--border);
      border-radius: 20px;
      padding: 6px 16px;
      font-size: 12px;
      color: #666;
      flex: 0 0 auto;
    }

    .browser-bookmarks {
      display: flex;
      gap: 16px;
      margin-left: 16px;
      font-size: 11px;
      color: #999;
    }

    .browser-bookmark {
      display: flex;
      align-items: center;
      gap: 4px;
    }

    /* Platform Header inside browser */
    .platform-header {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 12px 44px;
      border-bottom: 1px solid var(--border);
      background: rgba(250, 250, 250, 0.15);
    }

    .platform-logo {
      font-size: 16px;
      font-weight: 700;
      color: var(--primary);
      display: flex;
      align-items: center;
      gap: 2px;
    }

    .platform-logo-plus {
      color: #00C853;
      font-size: 12px;
      margin-left: 1px;
    }

    .platform-steps {
      display: flex;
      align-items: center;
      gap: 10px;
    }

    .platform-step {
      display: flex;
      align-items: center;
      gap: 6px;
    }

    .platform-step-number {
      width: 24px;
      height: 24px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 8px;
      font-weight: 600;
    }

    .platform-step-number.active {
      background: var(--primary);
      color: white;
      border: 1px solid var(--primary);
    }

    .platform-step-number.inactive {
      background: #E5E7EB;
      color: #9CA3AF;
      border: 1px solid #E5E7EB;
    }

    .platform-step-label {
      font-size: 8px;
      font-weight: 600;
    }

    .platform-step-label.active {
      color: var(--primary);
    }

    .platform-step-label.inactive {
      color: var(--muted);
    }

    .platform-step-connector {
      width: 31px;
      height: 2px;
      background: #E5E7EB;
      border-radius: 100px;
    }

    .platform-save-btn {
      display: flex;
      align-items: center;
      gap: 8px;
      padding: 8px 12px;
      border: 1px solid var(--border);
      border-radius: 8px;
      font-size: 9px;
      color: var(--muted);
      background: transparent;
      cursor: pointer;
    }

    /* Brief creation bar */
    .brief-creation-bar {
      display: flex;
      align-items: center;
      padding: 12px 44px;
      border-bottom: 1px solid var(--border);
      background: rgba(250, 250, 250, 0.15);
    }

    .brief-creation-label {
      font-size: 12px;
      font-weight: 500;
      color: #090E1A;
      margin-right: 8px;
    }

    .brief-toggle {
      width: 48px;
      height: 9px;
      background: var(--border);
      border-radius: 46px;
      position: relative;
    }

    .brief-toggle-fill {
      position: absolute;
      left: 0;
      top: 0;
      width: 9px;
      height: 9px;
      background: var(--primary);
      border-radius: 46px;
    }

    /* Main content area */
    .platform-content {
      display: flex;
      flex: 1;
      background: linear-gradient(180deg, white 33%, rgba(191, 209, 255, 0.05) 100%);
      min-height: 457px;
    }

    .chat-area {
      flex: 1;
      padding: 30px 44px;
      display: flex;
      flex-direction: column;
      gap: 12px;
      overflow-y: auto;
      max-height: 457px;
    }

    .flywheel-message {
      display: flex;
      gap: 9px;
      align-items: flex-start;
    }

    .flywheel-message.user {
      justify-content: flex-end;
    }

    .flywheel-avatar {
      width: 30px;
      height: 30px;
      border-radius: 50%;
      background: var(--primary);
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      overflow: hidden;
    }

    .flywheel-avatar img {
      width: 60%;
      height: 60%;
      object-fit: contain;
    }

    .flywheel-avatar.user-avatar img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .flywheel-bubble {
      background: var(--primary-foreground);
      border: 1px solid var(--border-light);
      border-radius: 12px;
      padding: 9px 12px;
      box-shadow: 0px 3px 5px -1px rgba(0,0,0,0.1), 0px 2px 3px -2px rgba(0,0,0,0.1);
      max-width: 340px;
    }

    .flywheel-message.user .flywheel-bubble {
      background: var(--primary);
      border-color: #E6E6E6;
      color: white;
    }

    .flywheel-bubble-sender {
      font-size: 11px;
      font-weight: 600;
      color: var(--primary);
      margin-bottom: 4px;
    }

    .flywheel-message.user .flywheel-bubble-sender {
      color: white;
    }

    .flywheel-bubble-text {
      font-size: 12px;
      font-weight: 500;
      line-height: 1.5;
    }

    .flywheel-bubble-text strong {
      font-weight: 600;
    }

    .flywheel-yes-no {
      display: flex;
      gap: 6px;
      margin-top: 9px;
    }

    .flywheel-yes-no-btn {
      flex: 1;
      padding: 6px 12px;
      border-radius: 10px;
      font-size: 11px;
      font-weight: 500;
      cursor: pointer;
      border: none;
      font-family: inherit;
    }

    .flywheel-yes-no-btn.no {
      background: var(--border);
      color: #0F172A;
    }

    .flywheel-yes-no-btn.yes {
      background: var(--primary);
      color: white;
    }

    /* Brief Preview Panel */
    .brief-preview-panel {
      width: 311px;
      background: #FEFEFE;
      border: 1px solid var(--border);
      border-radius: 24px;
      margin: 20px;
      padding: 17px;
      box-shadow: 0px 1px 2px rgba(0,0,0,0.1), 0px 1px 2px -1px rgba(0,0,0,0.1);
      position: relative;
      max-height: 430px;
      overflow: hidden;
    }

    .brief-preview-header {
      margin-bottom: 18px;
    }

    .brief-preview-title {
      font-size: 18px;
      font-weight: 600;
      color: #333;
      letter-spacing: -0.6px;
      margin-bottom: 6px;
    }

    .brief-preview-subtitle {
      font-size: 9px;
      font-weight: 500;
      color: rgba(115, 115, 115, 0.8);
    }

    .brief-preview-close {
      position: absolute;
      top: 11px;
      right: 12px;
      width: 18px;
      height: 18px;
      background: none;
      border: none;
      cursor: pointer;
      padding: 0;
    }

    .brief-preview-fields {
      display: flex;
      flex-direction: column;
      gap: 8px;
    }

    .brief-preview-field {
      background: #F5F5F5;
      border: 1px solid var(--border);
      border-radius: 12px;
      padding: 8px 10px;
      position: relative;
    }

    .brief-preview-field-label {
      font-size: 11px;
      font-weight: 500;
      color: var(--muted);
      margin-bottom: 4px;
    }

    .brief-preview-field-value {
      display: flex;
      align-items: center;
      gap: 6px;
      font-size: 9px;
      font-weight: 500;
      color: rgba(115, 115, 115, 0.7);
    }

    .brief-preview-field-icon {
      width: 18px;
      height: 18px;
      color: var(--muted);
    }

    .brief-preview-field-gift {
      position: absolute;
      right: 6px;
      top: 50%;
      transform: translateY(-50%);
      width: 37px;
      height: 35px;
      background: var(--primary);
      border-radius: 8px;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .brief-preview-field-gift img {
      width: 75%;
      height: 75%;
      object-fit: contain;
    }

    .brief-preview-field.blurred {
      position: relative;
    }

    .brief-preview-field.blurred::after {
      content: '';
      position: absolute;
      inset: 0;
      background: rgba(255, 255, 255, 0.2);
      backdrop-filter: blur(3px);
      border-radius: 12px;
    }

    /* Scrollbar for chat area */
    .chat-area-wrapper {
      display: flex;
      flex: 1;
      position: relative;
    }

    .chat-scrollbar {
      position: absolute;
      right: 10px;
      top: 26px;
      width: 6px;
      height: 170px;
      background: var(--border);
      border-radius: 46px;
    }

    /* Flywheel Section Responsive */
    @media (max-width: 768px) {
      .flywheel-section {
        padding: 40px 24px 60px;
      }

      .flywheel-container {
        padding: 10px;
        border-radius: 20px;
        display: flex;
        flex-direction: column;
      }

      .flywheel-title {
        color: white;
        order: 1;
      }

      /* Hide horizontal tab bar on mobile */
      .flywheel-tabs {
        display: none;
      }

      /* Show mobile label pill above video */
      .flywheel-mobile-label {
        display: block;
        text-align: center;
        margin-bottom: 16px;
        order: 2;
      }

      /* Video panel below label */
      .flywheel-tabpanel {
        order: 3;
      }
      .flywheel-mobile-label span {
        display: inline-block;
        background: var(--primary);
        color: white;
        font-size: 16px;
        font-weight: 600;
        padding: 12px 36px;
        border-radius: 100px;
        font-family: inherit;
      }

      /* Show dot indicators */
      .flywheel-dots {
        display: flex;
        justify-content: center;
        gap: 8px;
        margin-top: 20px;
      }
      .flywheel-dot {
        width: 10px;
        height: 10px;
        border-radius: 50%;
        background: rgba(64, 134, 247, 0.5);
        cursor: pointer;
        transition: background 0.3s ease;
      }
      .flywheel-dot.active {
        background: var(--primary);
      }

      .flywheel-dots {
        order: 4;
      }

      .flywheel-tabpanel {
        min-height: auto;
        border-radius: 14px;
      }

      .platform-content {
        flex-direction: column;
        min-height: auto;
      }

      .platform-header {
        padding: 10px 16px;
      }

      .platform-save-btn {
        display: none;
      }

      .brief-creation-bar {
        padding: 10px 16px;
      }

      .chat-area {
        padding: 20px 16px;
        max-height: 300px;
      }

      .brief-preview-panel {
        width: auto;
        margin: 0 12px 12px;
        max-height: 200px;
      }

      .chat-scrollbar {
        display: none;
      }
    }

    @media (max-width: 640px) {
      .flywheel-section {
        padding: 30px 16px 50px;
      }

      .flywheel-title {
        font-size: 20px;
        margin-bottom: 16px;
      }

      .flywheel-container {
        padding: 8px;
        border-radius: 16px;
      }

      .flywheel-tabpanel {
        min-height: auto;
        border-radius: 12px;
      }

      .platform-steps {
        gap: 4px;
      }

      .platform-step-connector {
        width: 16px;
      }

      .flywheel-bubble {
        max-width: 260px;
      }

      .brief-preview-panel {
        display: none;
      }
    }

    /* Video Gallery Section */
    .video-gallery-section {
      padding: 80px 40px 120px;
      position: relative;
      overflow: hidden;
    }

    .video-gallery-section::before {
      content: '';
      position: absolute;
      bottom: 0;
      left: 50%;
      transform: translateX(-50%);
      width: 1638px;
      height: 416px;
      background: radial-gradient(ellipse 70% 60% at 50% 60%, rgba(46, 126, 255, 0.5) 0%, rgba(46, 126, 255, 0.25) 40%, rgba(255, 255, 255, 0.5) 100%);
      pointer-events: none;
      z-index: 0;
      filter: blur(150px);
      border-radius: 400px;
    }

    .video-gallery-header {
      text-align: center;
      margin-bottom: 40px;
      position: relative;
      z-index: 100;
    }

    .video-gallery-title {
      font-size: 25px;
      font-weight: 600;
      color: #252F3B;
      margin-bottom: 20px;
      letter-spacing: -0.7px;
    }

    .video-filter-container {
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 0;
      position: relative;
      z-index: 500;
    }

    .video-filter-label {
      font-size: 14px;
      font-weight: 600;
      font-family: inherit;
      color: var(--primary);
      text-transform: uppercase;
      cursor: pointer;
      display: flex;
      align-items: center;
      gap: 6px;
      letter-spacing: 0.5px;
      background: none;
      border: none;
      padding: 0;
    }

    .video-filter-label svg {
      width: 12px;
      height: 12px;
      transition: transform 0.3s ease;
      transform: rotate(0deg);
    }

    .video-filter-label.open svg {
      transform: rotate(180deg);
    }

    .video-filter-dropdown {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 16px;
      max-width: 800px;
      margin: 0 auto;
      padding: 0 20px;
      max-height: 0;
      overflow: hidden;
      opacity: 0;
      transition: max-height 0.3s ease, opacity 0.3s ease, margin-top 0.3s ease;
      margin-top: 0;
    }

    .video-filter-dropdown.open {
      max-height: 300px;
      opacity: 1;
      margin-top: 16px;
    }

    .video-filter-option {
      padding: 14px 32px;
      cursor: pointer;
      font-size: 16px;
      font-weight: 600;
      font-family: inherit;
      color: var(--primary);
      background: transparent;
      border: 2px solid var(--primary);
      border-radius: 50px;
      transition: background-color 0.2s ease, color 0.2s ease;
      text-align: center;
      white-space: nowrap;
    }

    .video-filter-option:hover {
      background: var(--primary-light);
    }

    .video-filter-option.active {
      background: var(--primary);
      color: white;
      border-color: var(--primary);
    }

    .video-carousel-wrapper {
      position: relative;
      z-index: 10;
      max-width: 100%;
      overflow: hidden;
    }

    .video-carousel {
      display: flex;
      align-items: center;
      gap: 40px;
      overflow-x: auto;
      scroll-behavior: smooth;
      padding: 30px 40px;
      scrollbar-width: none;
      -ms-overflow-style: none;
      justify-content: center;
    }

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

    .video-carousel.has-many {
      justify-content: flex-start;
    }

    .video-card {
      position: relative;
      border-radius: 24px;
      overflow: hidden;
      cursor: pointer;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
      width: 280px;
      height: 499px;
      flex-shrink: 0;
    }

    .video-card img,
    .video-card .video-overlay {
      border-radius: 24px;
    }

    /* Initially, 3rd video is featured */
    .video-carousel.initial .video-card:nth-child(3) {
      transform: scale(1.15);
      z-index: 2;
    }

    /* When hovering any card, scale it up */
    .video-carousel .video-card:hover {
      transform: scale(1.15);
      box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
      z-index: 5;
    }

    .video-thumbnail {
      width: 100% !important;
      height: 100% !important;
      object-fit: cover !important;
      position: absolute !important;
      top: 0 !important;
      left: 0 !important;
    }

    .video-overlay {
      position: absolute;
      inset: 0;
      background: rgba(0, 0, 0, 0.15);
      display: flex;
      align-items: center;
      justify-content: center;
      opacity: 1;
      transition: background-color 0.3s ease;
    }

    .video-card:hover .video-overlay {
      background: rgba(0, 0, 0, 0.3);
    }

    .play-button {
      width: 64px;
      height: 64px;
      background: rgba(255, 255, 255, 0.15);
      border: 2.5px solid rgba(255, 255, 255, 0.9);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: transform 0.3s ease, background-color 0.3s ease;
      box-shadow: none;
    }

    .video-card:hover .play-button {
      transform: scale(1.1);
      background: rgba(255, 255, 255, 0.25);
    }

    .play-button svg {
      display: none;
    }

    .play-button::after {
      content: '';
      display: block;
      width: 0;
      height: 0;
      border-style: solid;
      border-width: 11px 0 11px 20px;
      border-color: transparent transparent transparent white;
      margin-left: 4px;
    }

    /* Video Modal */
    .video-modal-overlay {
      position: fixed;
      inset: 0;
      background: rgba(0, 0, 0, 0.9);
      z-index: 1000;
      display: flex;
      align-items: center;
      justify-content: center;
      opacity: 0;
      visibility: hidden;
      transition: opacity 0.3s ease, visibility 0.3s ease;
    }

    .video-modal-overlay.active {
      opacity: 1;
      visibility: visible;
    }

    .video-modal-content {
      position: relative;
      max-width: 90vw;
      max-height: 90vh;
      border-radius: 20px;
      overflow: hidden;
      transform: scale(0.9);
      transition: transform 0.3s ease;
    }

    .video-modal-overlay.active .video-modal-content {
      transform: scale(1);
    }

    .video-modal-close {
      position: absolute;
      top: -50px;
      right: 0;
      width: 40px;
      height: 40px;
      background: rgba(255, 255, 255, 0.1);
      border: none;
      border-radius: 50%;
      color: white;
      font-size: 24px;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: background 0.3s ease;
    }

    .video-modal-close:hover {
      background: rgba(255, 255, 255, 0.2);
    }

    .video-modal-video {
      width: 100%;
      max-width: 400px;
      aspect-ratio: 9/16;
      border-radius: 20px;
      border: none;
    }

    /* Carousel Navigation - below carousel like case studies */
    .video-carousel-nav {
      display: flex;
      justify-content: center;
      gap: 60px;
      margin-top: 40px;
    }

    .carousel-nav {
      width: 40px !important;
      height: 40px !important;
      cursor: pointer;
      z-index: 10;
      transition: opacity 0.3s ease, transform 0.3s ease;
      opacity: 0.9;
      background: none;
      border: none;
      padding: 0;
      font: inherit;
    }

    .carousel-nav img {
      filter: brightness(0) saturate(100%) invert(43%) sepia(96%) saturate(1200%) hue-rotate(200deg) brightness(100%) contrast(94%);
    }

    .carousel-nav:hover {
      opacity: 1;
      transform: scale(1.1);
    }

    /* Video Gallery Responsive */
    @media (max-width: 768px) {
      .video-carousel-nav {
        display: none;
      }

      .video-gallery-section {
        padding: 40px 0 60px;
      }

      .video-gallery-header {
        padding: 0 16px;
      }

      .video-gallery-title {
        font-size: 22px;
        margin-bottom: 16px;
      }

      /* Filter dropdown: flex-wrap layout, toggled via .open class */
      .video-filter-dropdown {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 10px;
        max-width: 360px;
        padding: 0 8px;
        max-height: 0;
        overflow: hidden;
        opacity: 0;
        transition: max-height 0.3s ease, opacity 0.3s ease, margin-top 0.3s ease;
        margin-top: 0;
      }

      .video-filter-dropdown.open {
        max-height: 300px;
        opacity: 1;
        margin-top: 16px;
      }

      .video-filter-option {
        padding: 8px 18px;
        font-size: 13px;
        border-width: 1.5px;
      }

      /* Carousel: scroll-snap with peek */
      .video-carousel {
        gap: 14px;
        padding: 24px 16px;
        scroll-snap-type: x mandatory;
        justify-content: flex-start;
      }

      .video-card {
        width: 220px;
        height: 391px;
        scroll-snap-align: start;
        border-radius: 20px;
      }

      .video-card img,
      .video-card .video-overlay {
        border-radius: 20px;
      }

      .video-carousel .video-card:hover {
        transform: none;
      }

      .video-carousel.initial .video-card:nth-child(3) {
        transform: none;
      }

      /* White play button on mobile */
      .play-button {
        width: 52px;
        height: 52px;
        background: rgba(255, 255, 255, 0.15);
        border-width: 2px;
        box-shadow: none;
      }

      .play-button::after {
        border-width: 9px 0 9px 16px;
        margin-left: 3px;
      }
    }

    /* Dashboard Section (legacy) */
    .dashboard-section {
      padding: 60px 80px 100px;
      text-align: center;
    }

    .dashboard-label {
      font-size: 14px;
      color: var(--muted);
      margin-bottom: 24px;
    }

    .dashboard-preview {
      max-width: 1200px;
      margin: 0 auto;
      border-radius: 24px;
      overflow: hidden;
      box-shadow: 0 25px 50px -12px rgba(0,0,0,0.15);
    }

    .dashboard-preview img {
      width: 100%;
      display: block;
    }

    /* Responsive */
    @media (max-width: 1200px) {
      .chat-window {
        width: 560px;
        height: 520px;
      }
    }

    @media (max-width: 1024px) {
      .hero {
        flex-direction: column;
        padding: 40px;
        text-align: center;
      }

      .hero-content {
        max-width: 100%;
        margin-bottom: 40px;
      }

      .hero-title {
        font-size: 36px;
      }

      .hero-subtitle {
        font-size: 20px;
      }

      .app-badges {
        justify-content: center;
      }

      .hero-visual-container {
        width: 100%;
        max-width: 450px;
        height: 420px;
      }

      .influencer-card {
        left: 20px;
        width: 180px;
        height: 320px;
      }

      .stats-spend {
        left: 0;
        top: 280px;
        width: 180px;
        height: 100px;
      }

      .stats-roas {
        right: 20px;
        top: 20px;
        width: 130px;
      }

      .mini-chat {
        right: 0;
        top: 120px;
        width: 280px;
      }

      .feature-content {
        flex-direction: column;
      }

      .feature-cards {
        grid-template-columns: 1fr;
        max-width: 400px;
      }

      .chat-window {
        width: 100%;
        max-width: 500px;
        height: 500px;
      }

      .partners {
        padding: 40px;
      }

      .partners-logos {
        gap: 40px;
      }

      .feature-section {
        padding: 60px 40px;
      }
    }

    @media (max-width: 640px) {
      .hero {
        padding: 24px 16px 40px;
        gap: 0;
      }

      .hero-content {
        display: flex;
        flex-direction: column;
        align-items: center;
        margin-bottom: 0;
        max-width: 100%;
      }

      .hero-text {
        text-align: center;
        order: 1;
      }

      .hero-title {
        font-size: 30px;
        line-height: 1.25;
        letter-spacing: -1.4px;
        margin-bottom: 16px;
      }

      .hero-subtitle {
        font-size: 13px;
        line-height: 1.7;
        letter-spacing: -0.5px;
        margin-bottom: 0;
      }

      .hero-visual-mobile {
        display: block;
        order: 2;
        margin: 16px 0;
        width: 100%;
        overflow: visible;
      }

      .mini-sender {
      display: block;
      font-size: 10px !important;
      font-weight: 400;
      color: var(--primary);
      margin-bottom: 1px;
      text-align: left !important;  
    }
    .stats-graph {
    position: absolute;
    right: 10%;
    bottom: 10%;
    width: 70%;
    height: 40%;
  }

      .hero-visual-mobile .hero-visual {
        padding: 0;
        justify-content: center;
      }

      /* ==================== MOBILE_HERO START ==================== */
      .hero-visual-mobile .hero-visual-container {
        max-width: none;
        width: 100%;
        height: 290px;
        margin: 0 auto;
        position: relative;
        overflow: visible;
      }

      /* MOBILE_HERO: Chat takes full width - ON TOP */
      .hero-visual-mobile .mini-chat {
        transform: scale(0.9) !important;
        transform-origin: top center !important;
        left: 10% !important;
        right: 5% !important;
        top: 0 !important;
        width: 85% !important;
        z-index: 5 !important;
        height: 295px !important;
      }


      /* MOBILE_HERO: Smaller chat text on mobile */
      .hero-visual-mobile .mini-name {
        font-size: 4px !important;
      }

      .mini-chat-header {
        padding: 4px 0;
        font-size: 12px !important;
      }


      .hero-visual-mobile .mini-bubble {
        /* padding: 3px 5px !important; */
        max-width: 210px !important;
      }

      .hero-visual-mobile .mini-text {
        font-size: 10px;
        color: var(--foreground);
        line-height: 1.3;
      }

      .hero-visual-mobile .mini-concept-btn,
      .hero-visual-mobile .mini-concept-btn-selected {
        font-size: 8px !important;
        padding: 5px 6px !important;
        white-space: normal !important;
        text-align: left !important;
        word-wrap: break-word !important;
        line-height: 1.2 !important;
        margin-bottom: 4px !important;
      }

      .hero-visual-mobile .mini-creator-grid {
        gap: 3px !important;
      }

      .hero-visual-mobile .mini-creator-card {
        padding: 4px 2px !important;
      }

      .hero-visual-mobile .mini-creator-avatar {
        width: 24px !important;
        height: 24px !important;
      }

      .hero-visual-mobile .mini-platform-badge span {
        font-size: 7px !important;
        max-width: 50px;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
      }


      /* MOBILE_HERO: Influencer card (video) - overlapping chat from left, above SPEND */
      .hero-visual-mobile .influencer-card {
        transform: scale(0.8) !important;
        transform-origin: top left !important;
        left: 3% !important;
        top: 25px !important;
        z-index: 3 !important;
      }

      /* MOBILE_HERO: ROAS positioned to the right - ON TOP */
      .hero-visual-mobile .stats-roas {
        transform: scale(0.9) !important;
        transform-origin: top right !important;
        right: 3% !important;
        top: 20px !important;
        left: auto !important;
        z-index: 10 !important;
      }

      /* MOBILE_HERO: SPEND - overlapping chat from left, below the video */
      .hero-visual-mobile .stats-spend {
        transform: scale(0.85) !important;
        transform-origin: top left !important;
        left: -10px !important;
        top: 160px !important;
        bottom: auto !important;
        z-index: 3 !important;
      }
      /* ==================== MOBILE_HERO END ==================== */

      .hero-visual-desktop {
        display: none !important;
      }

      .hero-cta {
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 100%;
        order: 3;
      }

      .hero-cta .btn-large {
        width: 100%;
        max-width: 361px;
        height: 54px;
        padding: 0 24px;
        font-size: 20px;
        border-radius: 114px;
        display: flex;
        align-items: center;
        justify-content: center;
      }

      .app-badges {
        flex-direction: row;
        gap: 30px;
        margin-top: 24px;
      }

      .badge-divider {
        display: none;
      }

      /* MOBILE_HERO: Black badges */
      .app-badge {
        height: 30px !important;
        filter: invert(1) brightness(0);
        opacity: 1;
      }

      .hero-visual-container {
        width: 100%;
        max-width: 343px;
        height: 220px;
        margin: 0 auto;
        position: relative;
      }

      .influencer-card {
        left: 10px;
        top: 0;
        width: 95px;
        height: 168px;
        border-radius: 9px;
        z-index: 1;
      }

      .stats-spend {
        display: block;
        left: 0;
        top: 138px;
        width: 95px;
        height: 50px;
        padding: 6px;
        border-radius: 10px;
        z-index: 5;
      }

      .stats-spend .stats-label {
        font-size: 8px;
        margin-bottom: 2px;
      }

      .stats-spend .stats-value {
        font-size: 10px;
      }


      .stats-roas {
        left: auto;
        right: 0;
        top: 25px;
        width: 68px;
        padding: 7px;
        border-radius: 10px;
        flex-direction: row;
        gap: 5px;
        z-index: 10;
      }

      .stats-roas .stats-icon {
        width: 20px;
        height: 20px;
      }

      .stats-roas .stats-label {
        font-size: 8px;
        margin-bottom: 0;
      }

      .stats-roas .stats-value {
        font-size: 10px;
      }

      .mini-chat {
        left: 85px;
        right: 10px;
        top: 10px;
        width: auto;
        height: 205px;
        border-radius: 18px;
        border-width: 1px;
        z-index: 2;
        background: rgba(255, 255, 255, 0.6);
      }

      .mini-chat-header {
        padding: 4px 0;
        font-size: 5px;
      }

      .mini-chat-progress {
        width: 20px;
        height: 3px;
      }

      .mini-chat-progress-fill {
        height: 3px;
      }

      .mini-chat-message {
        padding: 6px 8px;
      }

      .mini-chat-avatar {
        width: 12px;
        height: 12px;
      }

      .mini-chat-bubble {
        padding: 4px 6px;
        border-radius: 6px;
      }

      .mini-chat-name {
        font-size: 5px;
      }

      .mini-chat-text {
        font-size: 6px;
      }

      .mini-chat-input {
        padding: 5px 8px 8px;
      }

      .mini-chat-input-field {
        height: 20px;
        font-size: 6px;
        padding: 0 8px;
        border-radius: 21px;
      }

      .mini-chat-send {
        width: 20px;
        height: 20px;
      }

      .mini-chat-send svg {
        width: 7px;
        height: 7px;
      }

      .partners {
        padding: 30px 16px;
        margin-top: 0;
        padding-top: 40px;
      }

      .partners-title {
        font-size: 14px;
        margin-bottom: 16px;
      }

      .partners-scroll {
        gap: 30px;
      }

      .partner-logo {
        height: 28px;
      }

      .chat-window {
        height: 450px;
        border-radius: 32px;
      }

      .chat-messages {
        padding: 16px;
      }

      .chat-input {
        padding: 16px;
      }

    }

    /* Case Studies Section */
    .case-studies-section {
      background: linear-gradient(180deg, #BCD5FF 0%, #4086F7 30%);
      padding: 72px 0 90px;
      overflow: hidden;
    }

    .case-studies-header {
      text-align: center;
      margin-bottom: 54px;
      padding: 0 36px;
    }

    .case-studies-title {
      font-size: 43px;
      font-weight: 600;
      color: white;
      letter-spacing: -0.6px;
    }

    .case-studies-carousel {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 36px;
      padding: 0;
      min-width: 2200px;
      margin-left: 50%;
      transform: translateX(-50%);
      transition: opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1), transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .case-studies-carousel.transitioning {
      opacity: 0;
    }

    .case-studies-carousel.slide-out-left {
      transform: translateX(calc(-50% - 30px));
    }

    .case-studies-carousel.slide-out-right {
      transform: translateX(calc(-50% + 30px));
    }

    .case-studies-carousel.slide-in-left {
      transform: translateX(calc(-50% - 30px));
      opacity: 0;
    }

    .case-studies-carousel.slide-in-right {
      transform: translateX(calc(-50% + 30px));
      opacity: 0;
    }

    .case-study-card {
      background: linear-gradient(12deg, #EAF2FF 23%, #FFFFFF 80%);
      border-radius: 40px;
      padding: 20px;
      position: relative;
      transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.5s cubic-bezier(0.4, 0, 0.2, 1);
      box-shadow: 0 22px 72px -18px rgba(0, 0, 0, 0.25), 0 14px 36px -9px rgba(0, 0, 0, 0.15);
      flex-shrink: 0;
    }

    .case-study-card.featured {
      width: 700px;
      height: 520px;
    }

    .case-study-card.side {
      width: 700px;
      height: 520px;
      opacity: 0.85;
      transform: scale(0.95);
    }

    .case-study-logo {
      position: absolute;
      top: 28px;
      left: 32px;
      max-width: 300px;
      height: 100px;
      display: flex;
      align-items: center;
      gap: 12px;
      z-index: 2;
    }

    .case-study-logo-text {
      font-size: 24px;
      font-weight: 700;
      color: #1a1a2e;
      text-align: left;
    }

    .case-study-logo-img {
      width: 200px;
      height: 100px;
      object-fit: contain;
      object-position: left center;
    }

    .case-study-logo-name {
      font-size: 20px;
      font-weight: 600;
      color: #1a1a2e;
      white-space: nowrap;
    }

    .case-study-video-container {
      position: absolute;
      right: 22px;
      top: 22px;
      width: 250px;
      height: 476px;
      border-radius: 30px;
      overflow: hidden !important;
      background: #000;
    }

    .case-study-card.side .case-study-video-container {
      width: 250px;
      height: 476px;
    }

    .case-study-video,
    .case-study-video-poster {
      width: 100% !important;
      height: 100% !important;
      object-fit: cover !important;
      max-width: 100% !important;
      max-height: 100% !important;
    }

    iframe.case-study-video {
      position: absolute;
      top: 50%;
      left: 50%;
      min-width: 100%;
      min-height: 100%;
      width: 177.78vh;
      height: 56.25vw;
      transform: translate(-50%, -50%);
      border: none;
      pointer-events: none;
    }

    .case-study-video-loading {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      z-index: 2;
      transition: opacity 0.5s ease-out;
    }

    .case-study-video-loading .case-study-video-poster {
      width: 100% !important;
      height: 100% !important;
      object-fit: cover;
    }

    .case-study-video-spinner {
      position: absolute;
      top: 50%;
      left: 50%;
      width: 36px;
      height: 36px;
      margin: -18px 0 0 -18px;
      border: 3px solid rgba(255,255,255,0.3);
      border-top-color: #fff;
      border-radius: 50%;
      animation: csSpinner 0.8s linear infinite;
    }

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

    .case-study-video-loading.hidden {
      opacity: 0;
      pointer-events: none;
    }

    .case-study-social-icons {
      position: absolute;
      top: 16px;
      right: 16px;
      display: flex;
      gap: 8px;
      z-index: 3;
    }

    .case-study-social-icon {
      width: 40px;
      height: 40px;
      border-radius: 50%;
      opacity: 1;
      transition: opacity 0.3s ease;
      cursor: pointer;
      box-shadow: 0 4px 11px rgba(0, 0, 0, 0.15);
    }

    .case-study-card.side .case-study-social-icon {
      width: 40px;
      height: 40px;
    }

    .case-study-video-container:hover .case-study-social-icon {
      opacity: 1;
    }

    .case-study-metrics {
      position: absolute;
      left: 32px;
      top: 145px;
      display: flex;
      gap: 16px;
    }

    .case-study-card.side .case-study-metrics {
      left: 32px;
      top: 145px;
      gap: 16px;
    }

    .case-study-metric-card {
      width: 180px;
      height: 200px;
      background: linear-gradient(180deg, rgba(118, 169, 251, 0.06) 0%, transparent 100%);
      border: 1px solid var(--primary);
      border-radius: 26px;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      padding: 22px;
    }

    .case-study-card.side .case-study-metric-card {
      width: 180px;
      height: 200px;
      border-radius: 25px;
      padding: 22px;
    }

    .case-study-metric-arrow {
      width: 80px;
      height: 80px;
      margin-bottom: 14px;
      flex-shrink: 0;
    }

    .case-study-card.side .case-study-metric-arrow {
      width: 80px;
      height: 80px;
      margin-bottom: 14px;
      flex-shrink: 0;
    }

    .case-study-metric-value {
      font-size: 48px;
      font-weight: 600;
      color: var(--foreground);
      line-height: 1;
      white-space: nowrap;
    }

    .case-study-card.side .case-study-metric-value {
      font-size: 48px;
    }

    .case-study-metric-type {
      font-size: 22px;
      font-weight: 600;
      color: var(--foreground);
      margin-top: 4px;
      white-space: nowrap;
    }

    .case-study-card.side .case-study-metric-type {
      font-size: 22px;
    }

    .case-study-link {
      position: absolute;
      bottom: 32px;
      left: 38px;
      display: flex;
      align-items: center;
      gap: 8px;
      color: var(--primary);
      font-size: 20px;
      font-weight: 500;
      font-family: inherit;
      text-decoration: underline;
      cursor: pointer;
      transition: opacity 0.3s ease;
      background: none;
      border: none;
      padding: 0;
    }

    .case-study-link:hover {
      opacity: 0.8;
    }

    .case-study-card.side .case-study-link {
      bottom: 32px;
      left: 38px;
      font-size: 20px;
    }

    .case-study-link svg {
      width: 22px;
      height: 22px;
    }

    .case-study-card.side .case-study-link svg {
      width: 22px;
      height: 22px;
    }

    .case-studies-nav {
      display: flex;
      justify-content: center;
      gap: 80px;
      margin-top: 40px;
    }

    .case-studies-nav-arrow {
      width: 60px;
      height: 60px;
      cursor: pointer;
      transition: opacity 0.3s ease, transform 0.3s ease;
      opacity: 0.9;
      background: none;
      border: none;
      padding: 0;
      font: inherit;
    }

    .case-studies-nav-arrow img,
    .case-studies-nav-arrow svg {
      width: 100%;
      height: 100%;
    }

    .case-studies-nav-arrow:hover {
      opacity: 1;
      transform: scale(1.1);
    }

    /* Case Studies Responsive */
    @media (max-width: 1600px) {
      .case-study-card.side {
        display: none;
      }

      .case-studies-carousel {
        justify-content: center;
      }
    }

    @media (max-width: 768px) {
      .case-studies-section {
        background: linear-gradient(180deg, #BCD5FF 0%, #4086F7 30%);
        padding: 32px 0 36px;
        overflow: hidden;
      }

      .case-studies-header {
        margin-bottom: 16px;
      }

      .case-studies-title {
        font-size: 24px;
        color: white;
      }

      .case-studies-carousel {
        min-width: unset;
        margin-left: 0;
        transform: none;
        padding: 0 20px;
        gap: 12px;
        justify-content: center;
        overflow: hidden;
      }

      .case-study-card.featured {
        display: flex;
        flex-wrap: wrap;
        align-content: flex-start;
        gap: 8px;
        width: 280px;
        min-width: 280px;
        max-width: 280px;
        height: auto;
        min-height: unset;
        opacity: 1;
        transform: none;
        flex-shrink: 0;
        padding: 16px;
        border-radius: 20px;
        overflow: hidden;
        scroll-snap-align: center;
        box-shadow: 0 8px 24px -8px rgba(0, 0, 0, 0.2), 0 4px 12px -4px rgba(0, 0, 0, 0.1);
      }

      .case-study-card.side {
        display: none;
      }

      .case-study-card.featured::after {
        display: none;
      }

      .case-study-logo {
        position: relative;
        left: 0;
        top: 0;
        height: 28px;
        max-width: none;
        margin-bottom: 0;
        order: 0;
        flex: 0 0 100%;
      }

      .case-study-logo-img {
        width: auto;
        height: 28px;
      }

      .case-study-logo-text {
        font-size: 12px;
      }

      .case-study-logo-name {
        font-size: 12px;
      }

      .case-study-video-container {
        position: relative;
        right: auto;
        top: auto;
        transform: none;
        width: 95px;
        height: 145px;
        border-radius: 12px;
        margin-top: 0;
        z-index: 2;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
        order: 2;
        flex: 0 0 95px;
      }

      .case-study-social-icons {
        top: 8px;
        right: 8px;
        gap: 4px;
      }

      .case-study-social-icon {
        width: 22px;
        height: 22px;
      }

      .case-study-metrics {
        position: relative;
        left: auto;
        top: auto;
        display: flex;
        flex-direction: row;
        justify-content: flex-start;
        align-items: stretch;
        gap: 8px;
        margin-top: 0;
        max-width: none;
        order: 1;
        flex: 1 1 0;
        min-width: 0;
        overflow: hidden;
      }

      .case-study-metric-card {
        width: calc(50% - 4px);
        flex: 0 0 auto;
        height: auto;
        padding: 8px 10px;
        border-radius: 10px;
        border: 1px solid rgba(64, 134, 247, 0.3);
        background: linear-gradient(180deg, rgba(118, 169, 251, 0.08) 0%, rgba(118, 169, 251, 0.02) 100%);
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 6px;
      }

      .case-study-metric-arrow {
        width: 20px;
        height: 20px;
        margin-bottom: 0;
        flex-shrink: 0;
      }

      .case-study-metric-value {
        font-size: 16px;
      }

      .case-study-metric-type {
        font-size: 10px;
        margin-top: 0;
      }

      .case-study-link {
        position: relative;
        bottom: auto;
        left: auto;
        justify-content: flex-start;
        margin-top: 4px;
        padding-bottom: 0;
        font-size: 12px;
        order: 3;
        flex: 0 0 100%;
      }

      .case-study-link svg {
        width: 14px;
        height: 14px;
      }

      .case-studies-nav {
        gap: 40px;
        margin-top: 16px;
      }

      .case-studies-nav-arrow {
        width: 44px;
        height: 44px;
      }
    }

    /* Case Study Dialog */
    .case-study-dialog-overlay {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: rgba(0, 0, 0, 0.6);
      backdrop-filter: blur(4px);
      z-index: 1000;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 40px;
      opacity: 0;
      visibility: hidden;
      transition: opacity 0.3s ease, visibility 0.3s ease;
    }

    .case-study-dialog-overlay.open {
      opacity: 1;
      visibility: visible;
    }

    .case-study-dialog {
      background: white;
      border-radius: 40px;
      width: 80%;
      max-width: 1200px;
      max-height: 90vh;
      overflow-y: auto;
      position: relative;
      box-shadow: 0 25px 80px rgba(0, 0, 0, 0.25);
      transform: scale(0.95);
      transition: transform 0.3s ease;
      scrollbar-width: none;
      -ms-overflow-style: none;
      padding-top: 24px;
    }

    .case-study-dialog::-webkit-scrollbar {
      display: none;
    }

    .case-study-dialog-overlay.open .case-study-dialog {
      transform: scale(1);
    }

    .case-study-dialog-close {
      position: absolute;
      top: 32px;
      right: 32px;
      width: 40px !important;
      height: 40px !important;
      min-width: 40px !important;
      min-height: 40px !important;
      border: none !important;
      background: rgba(255, 255, 255, 0.9) !important;
      border-radius: 50% !important;
      cursor: pointer;
      display: flex !important;
      align-items: center !important;
      justify-content: center !important;
      z-index: 10;
      transition: background-color 0.2s ease, transform 0.2s ease;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
      font-size: 24px !important;
      color: #333 !important;
      line-height: 1 !important;
      padding: 0 !important;
    }

    .case-study-dialog-close:hover {
      background: white;
      transform: scale(1.1);
    }

    /* Dialog Banner */
    .case-study-dialog-banner {
      background: #EAF2FF;
      border-radius: 22px;
      margin: 24px;
      margin-top: 32px;
      padding: 64px 80px;
      position: relative;
      overflow: hidden;
      min-height: 300px;
      display: flex;
      align-items: flex-start;
    }

    .case-study-dialog-banner-content {
      display: flex;
      flex-direction: column;
      gap: 24px;
      z-index: 1;
    }

    .case-study-dialog-category {
      display: inline-block;
      border: 1px solid var(--primary);
      color: var(--primary);
      padding: 12px 32px;
      border-radius: 60px;
      font-size: 18px;
      font-weight: 600;
      width: fit-content;
    }

    .case-study-dialog-company {
      display: flex;
      align-items: center;
      gap: 24px;
    }

    .case-study-dialog-company-logo {
      width: 100px;
      height: 100px;
      border-radius: 100px;
      background: white;
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
      overflow: hidden;
    }

    .case-study-dialog-company-logo img {
      width: 70%;
      height: 70%;
      object-fit: contain;
    }

    .case-study-dialog-company-name {
      font-size: 48px;
      font-weight: 600;
      color: var(--foreground);
      letter-spacing: -0.7px;
    }

    .case-study-dialog-social {
      position: absolute;
      top: 28px;
      right: 28px;
      display: flex;
      gap: 12px;
      z-index: 2;
    }

    .case-study-dialog-social img {
      width: 48px;
      height: 48px;
      border-radius: 50%;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    }

    .case-study-dialog-banner-image {
      position: absolute;
      right: 0;
      top: 0;
      height: 100%;
      width: 45%;
      object-fit: cover;
      object-position: center;
      border-radius: 0 22px 22px 0;
    }

    /* Dialog Title & Metrics */
    .case-study-dialog-header {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 0 40px;
      margin-top: 24px;
      margin-bottom: 0;
      padding-bottom: 32px;
      gap: 96px;
      border-bottom: 2px solid #E5E5E5;
    }

    .case-study-dialog-title {
      font-size: 54px;
      font-weight: 500;
      color: var(--foreground);
      line-height: 1.2;
      flex: 0 0 calc(50% - 48px);
      max-width: 576px;
    }

    .case-study-dialog-metrics {
      display: flex;
      gap: 96px;
      flex: 1 1 calc(50% - 48px);
      justify-content: flex-start;
    }

    .case-study-dialog-metric {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 8px;
      flex: 1;
    }

    .case-study-dialog-metric-icon {
      width: 80px;
      height: 80px;
      flex-shrink: 0;
    }

    .case-study-dialog-metric-value {
      font-size: 48px;
      font-weight: 600;
      color: var(--foreground);
    }

    .case-study-dialog-metric-type {
      font-size: 24px;
      font-weight: 600;
      color: var(--foreground);
    }

    /* Dialog Subtitle */
    .case-study-dialog-subtitle {
      font-size: 28px;
      font-weight: 500;
      color: #333;
      padding: 32px 40px;
      line-height: 1.5;
      margin: 0 40px;
      margin-bottom: 0;
      padding-bottom: 32px;
      border-bottom: 2px solid #E5E5E5;
    }

    /* Dialog Content */
    .case-study-dialog-content {
      background: rgba(234, 242, 255, 0.35);
      border-radius: 22px;
      margin: 24px;
      margin-top: 0;
      padding: 48px;
      padding-top: 70px;
      border-top: 2px solid #E5E5E5;
    }

    .case-study-dialog-section {
      margin-bottom: 40px;
      padding-bottom: 40px;
      border-bottom: 2px solid rgba(0, 0, 0, 0.1);
    }

    .case-study-dialog-section:last-child {
      margin-bottom: 0;
      padding-bottom: 0;
      border-bottom: none;
    }

    .case-study-dialog-section-title {
      font-size: 36px;
      font-weight: 500;
      color: var(--foreground);
      margin-bottom: 20px;
    }

    .case-study-dialog-section-text {
      font-size: 22px;
      font-weight: 400;
      color: #333;
      line-height: 1.6;
    }

    .case-study-dialog-section-text ul {
      margin: 16px 0;
      padding-left: 32px;
    }

    .case-study-dialog-section-text li {
      margin-bottom: 8px;
    }

    /* Dialog Video Slider */
    .case-study-dialog-video-slider {
      position: relative;
      flex: 0 0 338px;
      width: 338px;
      height: 607px;
      border-radius: 12px;
      overflow: hidden;
    }

    .case-study-dialog-video-slide {
      width: 100%;
      height: 100%;
      position: relative;
    }

    .case-study-dialog-video-slide img,
    .case-study-dialog-video-slide video {
      width: 100%;
      height: 100%;
      object-fit: cover;
      border-radius: 12px;
    }

    .case-study-dialog-video-play {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      width: 64px;
      height: 64px;
      background: rgba(255, 255, 255, 0.15);
      border: 2.5px solid rgba(255, 255, 255, 0.9);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      transition: transform 0.3s ease, background-color 0.3s ease;
      box-shadow: none;
    }

    .case-study-dialog-video-play:hover {
      transform: translate(-50%, -50%) scale(1.1);
      background: rgba(255, 255, 255, 0.25);
    }

    .case-study-dialog-video-play svg {
      display: none;
    }

    .case-study-dialog-video-play::after {
      content: '';
      display: block;
      width: 0;
      height: 0;
      border-style: solid;
      border-width: 11px 0 11px 20px;
      border-color: transparent transparent transparent white;
      margin-left: 4px;
    }

    .case-study-dialog-content-wrapper {
      display: flex;
      gap: 96px;
      position: relative;
      align-items: flex-start;
    }

    .case-study-dialog-content-text {
      flex: 1;
      max-width: calc(100% - 434px);
    }

    /* Dialog Testimonial */
    .case-study-dialog-testimonial {
      background: linear-gradient(5deg, #4086F7 27%, #76A9FB 165%);
      border-radius: 22px;
      margin: 24px;
      padding: 64px 70px;
      position: relative;
      overflow: hidden;
    }

    .case-study-dialog-quote-icon {
      position: absolute;
      font-size: 48px;
      color: rgba(255, 255, 255, 0.3);
      font-family: Georgia, serif;
      line-height: 1;
    }

    .case-study-dialog-quote-icon.start {
      top: 40px;
      left: 70px;
    }

    .case-study-dialog-quote-icon.end {
      bottom: 120px;
      right: 70px;
      transform: rotate(180deg);
    }

    .case-study-dialog-quote {
      font-size: 32px;
      font-weight: 500;
      color: white;
      line-height: 1.5;
      margin: 40px 0 48px;
      position: relative;
      z-index: 1;
    }

    .case-study-dialog-author {
      display: flex;
      align-items: center;
      gap: 20px;
      background: rgba(148, 179, 245, 0.16);
      border-radius: 60px;
      padding: 10px 32px 10px 16px;
      width: fit-content;
    }

    .case-study-dialog-author-avatar {
      width: 82px;
      height: 82px;
      border-radius: 50%;
      background: #ddd;
      overflow: hidden;
    }

    .case-study-dialog-author-avatar img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .case-study-dialog-author-info {
      display: flex;
      flex-direction: column;
      gap: 2px;
    }

    .case-study-dialog-author-name {
      font-size: 24px;
      font-weight: 600;
      color: white;
    }

    .case-study-dialog-author-title {
      font-size: 20px;
      font-weight: 500;
      color: rgba(255, 255, 255, 0.9);
    }

    /* Dialog CTA */
    .case-study-dialog-cta {
      text-align: center;
      padding: 48px 40px;
    }

    .case-study-dialog-cta-title {
      font-size: 36px;
      font-weight: 500;
      color: var(--foreground);
      margin-bottom: 24px;
    }

    .case-study-dialog-cta-button {
      background: var(--primary);
      color: white;
      border: 1px solid white;
      padding: 18px 48px;
      border-radius: 60px;
      font-size: 16px;
      font-weight: 600;
      text-transform: uppercase;
      cursor: pointer;
      transition: background-color 0.2s ease;
    }

    .case-study-dialog-cta-button:hover {
      background: #3070d9;
    }

    /* Dialog Responsive */
    @media (max-width: 1000px) {
      .case-study-dialog {
        width: 95%;
        border-radius: 30px;
      }

      .case-study-dialog-banner {
        flex-direction: column;
        padding: 40px 30px;
        gap: 24px;
      }

      .case-study-dialog-banner-content {
        gap: 20px;
      }

      .case-study-dialog-category {
        padding: 10px 24px;
        font-size: 16px;
      }

      .case-study-dialog-company {
        gap: 20px;
      }

      .case-study-dialog-company-logo {
        width: 60px;
        height: 60px;
      }

      .case-study-dialog-company-name {
        font-size: 32px;
      }

      .case-study-dialog-social {
        top: 24px;
        right: 24px;
        gap: 10px;
      }

      .case-study-dialog-social img {
        width: 40px;
        height: 40px;
      }

      .case-study-dialog-banner-image {
        position: relative;
        width: 100%;
        height: 200px;
        border-radius: 15px;
        margin-top: 0;
        object-fit: cover;
        object-position: center;
      }

      .case-study-dialog-header {
        flex-direction: column;
        padding: 0 24px;
        gap: 24px;
      }

      .case-study-dialog-title {
        font-size: 28px;
        flex: 1;
        max-width: 100%;
      }

      .case-study-dialog-metrics {
        gap: 24px;
        flex: 1;
      }

      .case-study-dialog-metric-value {
        font-size: 32px;
      }

      .case-study-dialog-metric-type {
        font-size: 18px;
      }

      .case-study-dialog-subtitle {
        font-size: 20px;
        padding: 24px;
        margin: 0 24px;
      }

      .case-study-dialog-content {
        padding: 24px;
        margin: 16px;
      }

      .case-study-dialog-content-wrapper {
        flex-direction: column;
        gap: 24px;
      }

      .case-study-dialog-content-text {
        max-width: 100%;
      }

      .case-study-dialog-video-slider {
        position: relative;
        right: auto;
        width: 100%;
        height: 400px;
        margin-bottom: 24px;
        flex: 1;
      }

      .case-study-dialog-section-title {
        font-size: 24px;
      }

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

      .case-study-dialog-testimonial {
        padding: 32px;
        margin: 16px;
      }

      .case-study-dialog-quote {
        font-size: 20px;
      }

      .case-study-dialog-quote-icon {
        font-size: 32px;
      }

      .case-study-dialog-quote-icon.start {
        top: 24px;
        left: 32px;
      }

      .case-study-dialog-quote-icon.end {
        bottom: 100px;
        right: 32px;
      }

      .case-study-dialog-author-avatar {
        width: 60px;
        height: 60px;
      }

      .case-study-dialog-author-name {
        font-size: 18px;
      }

      .case-study-dialog-author-title {
        font-size: 14px;
      }
    }

    @media (max-width: 640px) {
      .case-study-dialog-overlay {
        padding: 0;
      }

      .case-study-dialog {
        width: 100%;
        border-radius: 0;
        max-height: 100vh;
        height: 100vh;
      }

      .case-study-dialog-close {
        position: sticky !important;
        top: 8px;
        right: 0;
        margin-left: auto;
        margin-right: 12px;
        width: 32px !important;
        height: 32px !important;
        min-width: 32px !important;
        min-height: 32px !important;
        font-size: 18px !important;
        z-index: 20;
      }

      .case-study-dialog-banner {
        padding: 20px 16px;
        border-radius: 14px;
        margin: 12px;
        min-height: auto;
        position: relative;
        display: flex;
        flex-direction: column;
        gap: 16px;
      }

      .case-study-dialog-banner-content {
        display: flex;
        flex-direction: column;
        gap: 16px;
        width: 100%;
        position: relative;
        z-index: 1;
        padding-right: 100px;
      }

      .case-study-dialog-category {
        padding: 8px 20px;
        font-size: 14px;
        border-radius: 60px;
        width: fit-content;
        align-self: flex-start;
      }

      .case-study-dialog-company {
        display: flex;
        align-items: center;
        gap: 12px;
        flex-wrap: wrap;
      }

      .case-study-dialog-company-logo {
        width: 48px;
        height: 48px;
        border-radius: 48px;
        flex-shrink: 0;
      }

      .case-study-dialog-company-logo img {
        width: 70%;
        height: 70%;
      }

      .case-study-dialog-company-name {
        font-size: 20px;
        font-weight: 600;
        letter-spacing: -0.3px;
        line-height: 1.2;
      }

      .case-study-dialog-social {
        position: absolute;
        top: 16px;
        right: 16px;
        display: flex;
        gap: 8px;
        z-index: 2;
      }

      .case-study-dialog-social img {
        width: 32px;
        height: 32px;
        border-radius: 50%;
        box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
      }

      .case-study-dialog-banner-image {
        position: relative;
        width: 100%;
        height: 180px;
        border-radius: 12px;
        margin-top: 0;
        object-fit: cover;
        object-position: center;
        order: 3;
      }

      .case-study-dialog-title {
        font-size: 24px;
        line-height: 1.3;
        padding: 0 20px;
        margin-top: 20px;
      }

      .case-study-dialog-metrics {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 12px;
        justify-content: center;
        padding: 20px 16px;
        width: 100%;
      }

      .case-study-dialog-metric-card {
        min-width: 100px;
        flex: 1 1 calc(50% - 12px);
        max-width: none;
        width: 100%;
        padding: 16px;
        border-radius: 20px;
        border: 1px solid var(--primary);
      }

      .case-study-dialog-metric-value {
        font-size: 28px;
      }

      .case-study-dialog-metric-type {
        font-size: 14px;
      }

      .case-study-dialog-subtitle {
        font-size: 18px;
        line-height: 1.4;
        padding: 16px 20px;
        margin: 0 16px;
      }

      .case-study-dialog-video-slider {
        height: auto;
        aspect-ratio: 302/542;
        max-height: 50vh;
        margin: 0 16px 20px 16px;
        border-radius: 12px;
      }

      .case-study-dialog-content {
        padding: 20px;
        margin: 0 16px;
        border-radius: 16px;
      }

      .case-study-dialog-section-title {
        font-size: 22px;
      }

      .case-study-dialog-section-text {
        font-size: 15px;
        line-height: 1.7;
      }

      .case-study-dialog-testimonial {
        margin: 16px;
        border-radius: 16px;
        padding: 32px 20px;
      }

      .case-study-dialog-quote {
        font-size: 15px;
        line-height: 1.5;
      }

      .case-study-dialog-quote-icon {
        font-size: 24px;
      }

      .case-study-dialog-quote-icon.start {
        top: 16px;
        left: 20px;
      }

      .case-study-dialog-quote-icon.end {
        bottom: 80px;
        right: 20px;
      }

      .case-study-dialog-author-avatar {
        width: 50px;
        height: 50px;
      }

      .case-study-dialog-author-name {
        font-size: 16px;
      }

      .case-study-dialog-author-title {
        font-size: 13px;
      }

      .case-study-dialog-cta {
        padding: 24px 20px;
      }

      .case-study-dialog-cta-title {
        font-size: 22px;
        margin-bottom: 20px;
      }

      .case-study-dialog-cta-button {
        width: 100%;
        max-width: 300px;
        height: 52px;
        font-size: 16px;
        padding: 16px 32px;
      }
    }

    /* CTA Section */
    .cta-section {
      position: relative;
      padding: 100px 80px;
      overflow: hidden;
    }

    .cta-section::before {
      content: '';
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      width: 1638px;
      height: 476px;
      background: linear-gradient(180deg, rgba(46, 126, 255, 0.5) 0%, rgba(46, 126, 255, 0.15) 30%, rgba(255, 255, 255, 0) 60%);
      border-radius: 400px;
      filter: blur(150px);
      pointer-events: none;
      z-index: 0;
    }

    .cta-container {
      display: flex;
      align-items: center;
      justify-content: space-between;
      max-width: 1400px;
      margin: 0 auto;
      gap: 60px;
      position: relative;
      z-index: 1;
    }

    .cta-content {
      flex: 1;
      max-width: 650px;
    }

    .cta-title {
      font-size: 48px;
      font-weight: 500;
      line-height: 1.2;
      margin-bottom: 8px;
      color: #252F3B;
      letter-spacing: -1.5px;
    }

    .cta-title-italic {
      font-size: 36px;
      font-style: italic;
      font-weight: 400;
      color: #252F3B;
      letter-spacing: -1.5px;
    }

    .cta-title-question {
      font-size: 40px;
      font-weight: 400;
      color: #252F3B;
      letter-spacing: -1.5px;
    }

    .cta-description {
      font-size: 25px;
      font-weight: 400;
      color: rgba(36, 37, 40, 0.77);
      margin: 24px 0 32px;
      line-height: 1.3;
      letter-spacing: -0.7px;
      max-width: 651px;
    }

    .cta-button {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      padding: 24px 48px;
      background: var(--primary);
      color: white;
      border: 1px solid white;
      border-radius: 120px;
      font-size: 20px;
      font-weight: 600;
      text-transform: uppercase;
      cursor: pointer;
      transition: background-color 0.2s;
      min-width: 339px;
    }

    .cta-button:hover {
      background: #3070d9;
    }

    .cta-chat-card {
      position: relative;
      width: 560px;
      background: rgba(255, 255, 255, 0.6);
      border: 3.2px solid var(--primary);
      border-radius: 75px;
      padding: 40px;
      flex-shrink: 0;
    }

    .cta-chat-message {
      display: flex;
      align-items: flex-start;
      gap: 17px;
      margin-bottom: 68px;
    }

    .cta-chat-avatar {
      width: 57px;
      height: 57px;
      background: var(--primary);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
    }

    .cta-chat-avatar img {
      width: 26px;
      height: 34px;
      object-fit: contain;
    }

    .cta-chat-bubble {
      background: var(--primary-foreground);
      border: 1.667px solid var(--border-light);
      border-radius: 23px;
      padding: 17px 23px;
      box-shadow: var(--shadow-md);
      display: flex;
      flex-direction: column;
      gap: 14px;
    }

    .cta-chat-sender {
      font-size: 20px;
      font-weight: 600;
      color: var(--primary);
    }

    .cta-chat-text {
      font-size: 23px;
      font-weight: 500;
      color: var(--foreground);
      line-height: 1.5;
    }

    .cta-chat-input-wrapper {
      position: relative;
    }

    .cta-chat-input {
      width: 100%;
      height: 97px;
      background: white;
      border: 2px solid var(--primary);
      border-radius: 77px;
      padding: 0 120px 0 30px;
      font-size: 32px;
      font-weight: 600;
      color: var(--foreground);
      font-family: inherit;
      box-shadow: 0px 5px 8px 8px rgba(0, 0, 0, 0.03);
    }

    .cta-chat-input::placeholder {
      color: #999;
    }

    .cta-send-button-wrapper {
      position: absolute;
      right: -50px;
      top: 50%;
      transform: translateY(-50%);
      width: 140px;
      height: 140px;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .cta-send-button {
      width: 97px;
      height: 97px;
      background: var(--foreground);
      border: none;
      border-radius: 77px;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      box-shadow: 0px 12px 27px 0px rgba(46, 46, 46, 0.1),
                  0px 48px 48px 0px rgba(46, 46, 46, 0.09),
                  0px 109px 65px 0px rgba(46, 46, 46, 0.05),
                  0px 194px 78px 0px rgba(46, 46, 46, 0.01),
                  0px 303px 85px 0px rgba(46, 46, 46, 0);
      position: relative;
      z-index: 3;
    }

    .cta-send-button svg {
      width: 36px;
      height: 36px;
      color: white;
    }

    .cta-ripple-container {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      pointer-events: none;
      z-index: 1;
    }

    .cta-ripple {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      border: 2px solid var(--primary);
      border-radius: 50%;
      opacity: 0;
      animation: rippleExpand 2s ease-out infinite;
    }

    .cta-ripple:nth-child(1) {
      animation-delay: 0s;
    }

    .cta-ripple:nth-child(2) {
      animation-delay: 0.4s;
    }

    .cta-ripple:nth-child(3) {
      animation-delay: 0.8s;
    }

    @keyframes rippleExpand {
      0% {
        width: 97px;
        height: 97px;
        opacity: 0.6;
      }
      100% {
        width: 220px;
        height: 220px;
        opacity: 0;
      }
    }

    /* CTA Section Responsive */
    @media (max-width: 1200px) {
      .cta-chat-card {
        width: 480px;
        padding: 32px;
        border-radius: 60px;
      }

      .cta-chat-message {
        margin-bottom: 60px;
      }

      .cta-chat-avatar {
        width: 56px;
        height: 56px;
      }

      .cta-chat-avatar img {
        width: 25px;
        height: 33px;
      }

      .cta-chat-bubble {
        border-radius: 22px;
        padding: 16px 22px;
      }

      .cta-chat-sender {
        font-size: 20px;
      }

      .cta-chat-text {
        font-size: 22px;
      }

      .cta-chat-input {
        height: 80px;
        font-size: 26px;
        padding: 0 100px 0 24px;
      }

      .cta-send-button-wrapper {
        right: -40px;
        width: 120px;
        height: 120px;
      }

      .cta-send-button {
        width: 80px;
        height: 80px;
      }

      .cta-send-button svg {
        width: 30px;
        height: 30px;
      }

      @keyframes rippleExpand {
        0% {
          width: 80px;
          height: 80px;
          opacity: 0.6;
        }
        100% {
          width: 180px;
          height: 180px;
          opacity: 0;
        }
      }
    }

    @media (max-width: 1024px) {
      .cta-section {
        padding: 80px 40px;
      }

      .cta-container {
        flex-direction: column;
        text-align: center;
        gap: 48px;
      }

      .cta-content {
        max-width: 100%;
      }

      .cta-description {
        margin-left: auto;
        margin-right: auto;
      }

      .cta-chat-card {
        width: 100%;
        max-width: 520px;
      }
    }

    @media (max-width: 768px) {
      .cta-section {
        padding: 60px 24px;
      }

      .cta-title {
        font-size: 36px;
      }

      .cta-title-italic {
        font-size: 28px;
      }

      .cta-title-question {
        font-size: 32px;
      }

      .cta-description {
        font-size: 20px;
      }

      .cta-button {
        padding: 20px 40px;
        font-size: 16px;
        min-width: auto;
        width: 100%;
        max-width: 300px;
      }

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

      .cta-chat-message {
        gap: 12px;
        margin-bottom: 40px;
      }

      .cta-chat-avatar {
        width: 48px;
        height: 48px;
      }

      .cta-chat-avatar img {
        width: 22px;
        height: 29px;
      }

      .cta-chat-bubble {
        border-radius: 18px;
        padding: 14px 18px;
        gap: 10px;
      }

      .cta-chat-sender {
        font-size: 16px;
      }

      .cta-chat-text {
        font-size: 18px;
      }

      .cta-chat-input {
        height: 64px;
        font-size: 20px;
        padding: 0 80px 0 20px;
        border-radius: 50px;
      }

      .cta-send-button-wrapper {
        right: -30px;
        width: 100px;
        height: 100px;
      }

      .cta-send-button {
        width: 64px;
        height: 64px;
        border-radius: 50px;
      }

      .cta-send-button svg {
        width: 24px;
        height: 24px;
      }
    }

    @media (max-width: 640px) {
      .cta-section {
        padding: 48px 16px;
      }

      .cta-title {
        font-size: 28px;
      }

      .cta-title-italic {
        font-size: 22px;
      }

      .cta-title-question {
        font-size: 26px;
      }

      .cta-description {
        font-size: 16px;
        margin: 16px 0 24px;
      }

      .cta-button {
        padding: 16px 32px;
        font-size: 14px;
      }

      .cta-chat-card {
        padding: 20px;
        border-radius: 32px;
        border-width: 2px;
      }

      .cta-chat-message {
        margin-bottom: 32px;
      }

      .cta-chat-text {
        font-size: 16px;
      }

      .cta-chat-input {
        height: 56px;
        font-size: 16px;
      }

      .cta-send-button-wrapper {
        right: -25px;
        width: 80px;
        height: 80px;
      }

      .cta-send-button {
        width: 52px;
        height: 52px;
      }

      .cta-send-button svg {
        width: 20px;
        height: 20px;
      }
    }

    /* Book a Demo Modal */
    .book-demo-overlay {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: rgba(255, 255, 255, 0.6);
      backdrop-filter: blur(4px);
      z-index: 1000;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 40px;
      opacity: 0;
      visibility: hidden;
      transition: opacity 0.3s ease, visibility 0.3s ease;
    }

    .book-demo-overlay.open {
      opacity: 1;
      visibility: visible;
    }

    .book-demo-modal {
      background: linear-gradient(-18deg, rgb(170, 205, 255) 0%, rgb(255, 255, 255) 75%);
      border-radius: 40px;
      width: 100%;
      max-width: 1200px;
      height: 85vh;
      overflow: hidden;
      position: relative;
      box-shadow: 0px -2px 6px 0px rgba(0, 0, 0, 0.1);
      transform: scale(0.95);
      transition: transform 0.3s ease;
      display: flex;
      flex-wrap: wrap;
    }

    .book-demo-overlay.open .book-demo-modal {
      transform: scale(1);
    }

    .book-demo-close {
      position: absolute;
      top: 32px;
      right: 32px;
      width: 24px;
      height: 24px;
      border: none;
      background: transparent;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      z-index: 10;
      transition: transform 0.2s ease;
    }

    .book-demo-close:hover {
      transform: scale(1.1);
    }

    .book-demo-close svg {
      width: 24px;
      height: 24px;
      stroke: #333;
    }

    .book-demo-left {
      width: 50%;
      min-height: 600px;
      position: relative;
      padding: 0 80px;
      overflow: visible;
    }

    .book-demo-left-content {
      position: relative;
      display: flex;
      flex-direction: column;
    }

    .book-demo-title {
      font-size: 42px;
      font-weight: 500;
      line-height: 1.33;
      color: #090e1a;
      margin-top: 80px;
      margin-bottom: 0;
    }

    .book-demo-title-highlight {
      background: linear-gradient(to bottom, #4086f7, #76a9fb);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      font-weight: 600;
    }

    .book-demo-checklist {
      list-style: none;
      margin: 20px 0 0 0;
      padding: 0;
    }

    .book-demo-checklist li {
      display: flex;
      align-items: center;
      gap: 16px;
      font-size: 20px;
      font-weight: 500;
      color: #090e1a;
      padding: 12px 0;
    }

    .book-demo-check-icon {
      width: 20px;
      height: 20px;
      flex-shrink: 0;
    }

    .book-demo-trusted {
      position: relative;
      width: 200%;
      margin-top: 60px;
      z-index: 1;
    }

    .book-demo-trusted-text {
      font-size: 18px;
      font-weight: 400;
      color: black;
      margin-bottom: 16px;
    }

    .book-demo-brands {
      display: flex;
      align-items: center;
      gap: 46px;
    }

    .book-demo-brands img {
      height: 23px;
      width: auto;
    }

    .book-demo-right {
      width: 50%;
      padding: 40px;
      display: flex;
      align-items: center;
      justify-content: center;
      position: relative;
      z-index: 2;
    }

    .book-demo-calendly {
      width: 100%;
      max-width: 480px;
      height: 520px;
      border-radius: 24px;
      overflow: hidden;
      border: 2px solid var(--primary);
      background: white;
    }

    .book-demo-calendly iframe {
      border: none;
      width: 100%;
      height: 100%;
    }

    /* Book a Demo Modal Responsive */
    @media (max-width: 1200px) {
      .book-demo-modal {
        flex-direction: column;
        max-height: 95vh;
        overflow-y: auto;
      }

      .book-demo-left {
        width: 100%;
        min-height: auto;
        padding: 40px;
      }

      .book-demo-title {
        font-size: 32px;
        margin-top: 40px;
      }

      .book-demo-checklist li {
        font-size: 18px;
        gap: 14px;
        padding: 10px 0;
      }

      .book-demo-check-icon {
        width: 18px;
        height: 18px;
      }

      .book-demo-trusted {
        position: relative;
        padding: 0 40px 30px;
        width: 100%;
      }

      .book-demo-trusted-text {
        font-size: 16px;
      }

      .book-demo-brands {
        gap: 20px;
        flex-wrap: wrap;
      }

      .book-demo-brands img {
        height: 16px;
      }

      .book-demo-right {
        width: 100%;
        padding: 20px 20px 40px;
      }

      .book-demo-calendly {
        max-width: 100%;
        height: 500px;
      }
    }

    @media (max-width: 640px) {
      .book-demo-overlay {
        padding: 0;
        align-items: flex-start;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
      }

      .book-demo-modal {
        border-radius: 0;
        min-height: 100vh;
        max-height: none;
        height: auto;
        overflow: visible;
      }

      .book-demo-close {
        position: fixed;
        top: 12px;
        right: 12px;
        width: 32px;
        height: 32px;
        min-width: 32px;
        min-height: 32px;
        flex-shrink: 0;
        background: rgba(255, 255, 255, 0.85);
        border-radius: 50%;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
        z-index: 20;
        padding: 0;
      }

      .book-demo-close svg {
        width: 16px;
        height: 16px;
      }

      .book-demo-left {
        padding: 0 20px 16px;
      }

      .book-demo-title {
        font-size: 20px;
        line-height: 1.4;
        margin-top: 24px;
      }

      .book-demo-checklist {
        margin-top: 16px;
      }

      .book-demo-checklist li {
        font-size: 14px;
        gap: 10px;
        padding: 6px 0;
      }

      .book-demo-check-icon {
        width: 20px;
        height: 20px;
        flex-shrink: 0;
      }

      .book-demo-trusted {
        position: relative;
        padding: 16px 20px 20px;
        width: 100%;
      }

      .book-demo-trusted-text {
        font-size: 16px;
        margin-bottom: 12px;
      }

      .book-demo-brands {
        overflow-x: auto;
        flex-wrap: nowrap;
        -webkit-overflow-scrolling: touch;
        gap: 16px;
        padding-bottom: 8px;
      }

      .book-demo-brands::-webkit-scrollbar {
        display: none;
      }

      .book-demo-brands img {
        height: 14px;
        flex-shrink: 0;
      }

      .book-demo-right {
        padding: 0 16px 20px;
      }

      .book-demo-calendly {
        height: 660px;
        border-radius: 16px;
      }
    }
    /* ─── Site Header / Navigation ─────────────────────────────────────── */
    .site-header {
      position: sticky;
      top: 0;
      z-index: 1000;
      background: var(--background);
      border-bottom: 1px solid var(--border);
    }

    .site-header-inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      max-width: 1200px;
      margin: 0 auto;
      padding: 16px 24px;
      min-height: 70px;
    }

    .site-logo {
      display: flex;
      align-items: center;
      text-decoration: none;
    }

    .site-logo-img {
      height: 36px;
      width: auto;
    }

    .site-header-right {
      display: flex;
      align-items: center;
      gap: 24px;
    }

    .site-nav-list {
      list-style: none;
      display: flex;
      align-items: center;
      gap: 24px;
    }

    .site-nav-link {
      text-decoration: none;
      color: var(--foreground);
      font-size: 15px;
      font-weight: 400;
      transition: color 0.2s;
    }

    .site-nav-link:hover {
      color: var(--primary);
    }

    .site-header-cta {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      text-decoration: none;
      font-size: 13px;
      font-weight: 500;
      text-transform: uppercase;
      letter-spacing: 0.5px;
      padding: 10px 20px;
    }

    .site-header-cta svg {
      flex-shrink: 0;
    }

    .site-nav-toggle {
      display: none;
      flex-direction: column;
      justify-content: center;
      gap: 5px;
      background: none;
      border: none;
      cursor: pointer;
      padding: 8px;
      z-index: 1001;
    }

    .hamburger-line {
      display: block;
      width: 24px;
      height: 2px;
      background: var(--foreground);
      border-radius: 2px;
      transition: transform 0.3s, opacity 0.3s;
    }

    .site-nav-toggle[aria-expanded="true"] .hamburger-line:nth-child(1) {
      transform: translateY(7px) rotate(45deg);
    }

    .site-nav-toggle[aria-expanded="true"] .hamburger-line:nth-child(2) {
      opacity: 0;
    }

    .site-nav-toggle[aria-expanded="true"] .hamburger-line:nth-child(3) {
      transform: translateY(-7px) rotate(-45deg);
    }

    @media (max-width: 768px) {
      .site-header-inner {
        padding: 12px 16px;
        min-height: 60px;
      }

      .site-nav-toggle {
        display: flex;
      }

      .site-nav {
        position: fixed;
        top: 60px;
        left: 0;
        right: 0;
        background: var(--background);
        border-bottom: 1px solid var(--border);
        padding: 16px 24px;
        transform: translateY(-100%);
        opacity: 0;
        pointer-events: none;
        transition: transform 0.3s, opacity 0.3s;
        z-index: 999;
      }

      .site-nav.open {
        transform: translateY(0);
        opacity: 1;
        pointer-events: auto;
      }

      .site-nav-list {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
      }

      .site-nav-link {
        font-size: 16px;
      }

      .site-header-cta {
        display: none;
      }

      .site-nav.open ~ .site-header-cta {
        display: none;
      }
    }

    /* ─── Site Footer ──────────────────────────────────────────────────── */
    .site-footer {
      background: linear-gradient(135deg, #4086F7 0%, #5BA0FF 100%);
      color: white;
      border-radius: 40px 40px 0 0;
      margin-top: 40px;
    }

    .site-footer-inner {
      max-width: 1200px;
      margin: 0 auto;
      padding: 60px 24px 40px;
      display: grid;
      grid-template-columns: 1fr 2fr;
      gap: 60px;
    }

    .site-footer-brand {
      display: flex;
      flex-direction: column;
      gap: 20px;
    }

    .site-footer-logo {
      height: 45px;
      width: auto;
    }

    .site-footer-tagline {
      font-size: 14px;
      line-height: 1.7;
      opacity: 0.9;
      max-width: 380px;
    }

    .site-footer-social {
      list-style: none;
      display: flex;
      gap: 16px;
      padding: 0;
    }

    .site-footer-social a {
      color: white;
      display: flex;
      align-items: center;
      justify-content: center;
      width: 36px;
      height: 36px;
      border-radius: 50%;
      transition: opacity 0.2s;
    }

    .site-footer-social a:hover {
      opacity: 0.75;
    }

    .site-footer-social svg {
      width: 22px;
      height: 22px;
    }

    .site-footer-links {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 40px;
    }

    .site-footer-heading {
      font-size: 16px;
      font-weight: 600;
      margin-bottom: 16px;
    }

    .site-footer-column ul {
      list-style: none;
      padding: 0;
      display: flex;
      flex-direction: column;
      gap: 10px;
    }

    .site-footer-column a {
      color: white;
      text-decoration: none;
      font-size: 14px;
      opacity: 0.9;
      transition: opacity 0.2s;
    }

    .site-footer-column a:hover {
      opacity: 1;
      text-decoration: underline;
    }

    @media (max-width: 768px) {
      .site-footer {
        border-radius: 24px 24px 0 0;
        margin-top: 24px;
      }

      .site-footer-inner {
        grid-template-columns: 1fr;
        padding: 40px 20px 32px;
        gap: 40px;
      }

      .site-footer-links {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
      }
    }

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

    /* Reduced motion support */
    @media (prefers-reduced-motion: reduce) {
      *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
      }

      .partners-scroll {
        animation: none;
      }

      .video-card:hover {
        transform: none;
      }

      .video-carousel.initial .video-card:nth-child(3) {
        transform: none;
      }
    }
