:root {
      --purple-primary: #633991;
      --purple-hover: #502A7A;
      --purple-dark: #3B1C63;
      --card-purple: #482E79;
      --card-gradient: linear-gradient(145deg, #4A2F7C 0%, #321B59 100%);
      --text-dark: #111827;
      --text-muted: #6B7280;
      --text-sub: #71717A;
      --bg-white: #FFFFFF;
      --border-color: #E5E7EB;
      --font-family: 'Plus Jakarta Sans', 'Inter', sans-serif;
    }

    * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      font-family: var(--font-family);
      background-color: var(--bg-white);
      color: var(--text-dark);
      line-height: 1.5;
      -webkit-font-smoothing: antialiased;
    }

    .container {
      max-width: 1280px;
      margin: 0 auto;
      padding: 0 24px;
    }

    /* 1. Top Announcement Bar */
    .top-bar {
      background-color: #633991;
      color: #FFFFFF;
      text-align: center;
      padding: 10px 16px;
      font-size: 13.5px;
      font-weight: 500;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
    }

    .top-bar-badge {
      background-color: rgba(255, 255, 255, 0.95);
      color: #633991;
      font-size: 11px;
      font-weight: 700;
      padding: 2px 10px;
      border-radius: 999px;
      text-transform: uppercase;
      letter-spacing: 0.5px;
    }

    /* 2. Header Navbar */
    .navbar {
      background-color: #FFFFFF;
      padding: 16px 0;
      border-bottom: 1px solid rgba(0,0,0,0.05);
      position: sticky;
      top: 0;
      z-index: 100;
    }

    .nav-wrapper {
      display: flex;
      align-items: center;
      justify-content: space-between;
    }

    .brand-logo {
      display: flex;
      align-items: center;
      gap: 10px;
      text-decoration: none;
    }

    .logo-text {
      font-size: 24px;
      font-weight: 700;
      color: var(--text-dark);
    }

    .logo-purple {
      color: #633991;
      font-weight: 800;
    }

    .nav-links {
      display: flex;
      align-items: center;
      gap: 36px;
      list-style: none;
    }

    .nav-links a {
      text-decoration: none;
      color: var(--text-dark);
      font-weight: 600;
      font-size: 15px;
      transition: color 0.2s ease;
    }

    .nav-links a:hover {
      color: #633991;
    }

    .btn-nav-demo {
      background-color: #633991;
      color: #FFFFFF;
      padding: 10px 24px;
      border-radius: 12px;
      font-weight: 700;
      font-size: 14px;
      text-decoration: none;
      transition: background 0.2s ease, transform 0.2s ease;
    }

    .nav-right {
      display: flex;
      align-items: center;
      gap: 16px;
    }

    .mobile-menu-btn {
      display: none;
      background: none;
      border: none;
      cursor: pointer;
      color: #333333;
      padding: 4px;
    }

    .btn-nav-demo:hover {
      background-color: #502A7A;
      transform: translateY(-1px);
    }

    /* 3. Hero Section */
    .hero-section {
      padding: 40px 0 60px 0;
      position: relative;
      background-color: #FFFFFF;
    }

    .hero-grid {
      display: grid;
      grid-template-columns: 1.18fr 0.82fr;
      gap: 36px;
      align-items: stretch;
    }

    /* Hero Left Area */
    .hero-left-card {
      position: relative;
      border-radius: 0px;
      padding: 20px 5px 20px 0;
      background: #FFFFFF;
      border: none;
      box-shadow: none;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      min-height: 520px;
    }

    /* FULL BACKGROUND SIGNATURE ANIMATION LAYER (SIGNATURE UNTOUCHED) */
    .bg-sig-anim-wrapper {
      position: absolute;
      inset: 0;
      z-index: 1;
      pointer-events: none;
      overflow: hidden;
    }

    .signature-wrap {
      position: absolute;
      top: 0;
      bottom: 0;
      left: 0;
      width: 100%;
      max-width: 100%;
      height: 100%;
      background: transparent;
      overflow: visible;
      opacity: 0.25;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .signature-svg {
      width: 100%;
      height: 100%;
      overflow: visible !important;
      display: block;
    }

    #signaturePath {
      fill: none;
      stroke: #633991;
      stroke-width: 7;
      stroke-linecap: round;
      stroke-linejoin: round;
    }

    #signaturePenTip {
      filter: drop-shadow(0 0 8px #633991);
      transition: opacity 0.2s ease;
    }

    /* FOREGROUND CONTENT */
    .hero-text-content {
      position: relative;
      z-index: 4;
    }

    .hero-kicker {
      color: #9CA3AF;
      font-size: 14.5px;
      font-weight: 500;
      letter-spacing: 0.2px;
      margin-bottom: 18px;
    }

    .hero-heading {
      font-size: 46px;
      line-height: 1.18;
      font-weight: 800;
      color: #111827;
      margin-bottom: 20px;
      letter-spacing: -0.8px;
    }

    .inline-icon-badge {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      vertical-align: middle;
      margin: 0 6px;
      /*background: #F3E8FF;*/
      /*border: 1.5px solid #D8B4FE;*/
      border-radius: 12px;
      /*padding: 4px 8px;*/
    }

    .hero-subtitle {
      font-size: 16px;
      color: var(--text-sub);
      line-height: 1.6;
      margin-bottom: 32px;
      max-width: 540px;
    }

    .hero-cta-row {
      display: flex;
      align-items: center;
      gap: 20px;
      margin-bottom: 36px;
    }

    .btn-hero-demo {
      display: inline-flex;
      align-items: center;
      gap: 12px;
      background-color: #633991;
      color: #FFFFFF;
      padding: 12px 24px;
      border-radius: 999px;
      font-weight: 700;
      font-size: 15px;
      text-decoration: none;
      box-shadow: 0 8px 20px rgba(99, 57, 145, 0.25);
      transition: all 0.25s ease;
    }

    .btn-hero-demo:hover {
      background-color: #502A7A;
      transform: translateY(-2px);
      box-shadow: 0 12px 24px rgba(99, 57, 145, 0.35);
    }

    .btn-arrow-icon {
      width: 26px;
      height: 26px;
      border-radius: 50%;
      background: rgba(255,255,255,0.25);
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .trust-badges-row {
      display: flex;
      align-items: center;
      gap: 12px;
      flex-wrap: wrap;
      position: relative;
      z-index: 4;
    }

    .trust-badge-item {
      display: flex;
      align-items: center;
      gap: 8px;
      font-size: 13.5px;
      font-weight: 600;
      color: #1F2937;
      background: #F3EFFF;
      padding: 8px 14px;
      border-radius: 8px;
      white-space: nowrap;
    }

    .trust-badge-item i {
      color: #633991;
      width: 18px;
      height: 18px;
    }

    /* Hero Right Form Card */
    .hero-form-card {
      background: var(--card-gradient);
      border-radius: 24px;
      padding: 34px 28px;
      color: #FFFFFF;
      box-shadow: 0 20px 40px rgba(67, 39, 117, 0.22);
    }

    .form-title {
      font-size: 20px;
      font-weight: 700;
      text-align: center;
      margin-bottom: 24px;
      color: #FFFFFF;
    }

    .form-group {
      margin-bottom: 16px;
    }

    .form-group label {
      display: block;
      font-size: 13.5px;
      font-weight: 600;
      margin-bottom: 6px;
      color: rgba(255, 255, 255, 0.95);
    }

    .form-control {
      width: 100%;
      padding: 12px 14px;
      border-radius: 8px;
      border: 1px solid rgba(255, 255, 255, 0.2);
      background-color: #FFFFFF;
      color: var(--text-dark);
      font-size: 14px;
      font-family: var(--font-family);
      outline: none;
      transition: border-color 0.2s ease;
    }

    .form-control::placeholder {
      color: #9CA3AF;
    }

    .form-control:focus {
      border-color: #A855F7;
      box-shadow: 0 0 0 3px rgba(168, 85, 247, 0.25);
    }

    select.form-control {
      appearance: none;
      background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%3C6B7280' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
      background-repeat: no-repeat;
      background-position: right 12px center;
      padding-right: 36px;
    }

    .form-row-2 {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 12px;
    }

    .captcha-container {
      display: flex;
      align-items: center;
      gap: 8px;
    }

    .captcha-code-box {
      background-color: #FFFFFF;
      color: #111827;
      font-family: 'Courier New', Courier, monospace;
      font-size: 16px;
      font-weight: 800;
      letter-spacing: 3px;
      padding: 8px 12px;
      border-radius: 6px;
      user-select: none;
      text-decoration: line-through;
      font-style: italic;
      background-image: linear-gradient(45deg, #F3F4F6 25%, #E5E7EB 25%, #E5E7EB 50%, #F3F4F6 50%, #F3F4F6 75%, #E5E7EB 75%, #E5E7EB 100%);
      background-size: 10px 10px;
      display: flex;
      align-items: center;
      justify-content: center;
      min-width: 105px;
    }

    .captcha-btn-refresh {
      background-color: #22C55E;
      color: #FFFFFF;
      border: none;
      border-radius: 6px;
      width: 36px;
      height: 36px;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      flex-shrink: 0;
      transition: background 0.2s ease;
    }

    .captcha-btn-refresh:hover {
      background-color: #16A34A;
    }

    .captcha-btn-refresh i {
      width: 18px;
      height: 18px;
    }

    .checkbox-wrapper {
      display: flex;
      align-items: center;
      gap: 8px;
      margin: 18px 0 22px 0;
      font-size: 12.5px;
      color: rgba(255, 255, 255, 0.9);
    }

    .checkbox-wrapper input[type="checkbox"] {
      width: 16px;
      height: 16px;
      accent-color: #633991;
      cursor: pointer;
    }

    .btn-submit-start {
      width: 100%;
      background-color: #FFFFFF;
      color: var(--purple-dark);
      border: none;
      padding: 13px 20px;
      border-radius: 999px;
      font-weight: 800;
      font-size: 15px;
      cursor: pointer;
      transition: all 0.2s ease;
      box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    }

    .btn-submit-start:hover {
      background-color: #F9FAFB;
      transform: translateY(-1px);
      box-shadow: 0 6px 16px rgba(0,0,0,0.15);
    }

    /* -------------------------------------------------------------
       SECTION 2: CUSTOM VIDEO BOX CONTAINER
       ------------------------------------------------------------- */
    .section-showcase {
      padding: 40px 0 60px 0;
      background-color: #FFFFFF;
      position: relative;
    }

    .custom-video-box-frame {
      position: relative;
      background: linear-gradient(135deg, #E6E0F5 0%, #DCD3F5 40%, #D2E0F8 100%);
      border-radius: 32px;
      padding: 0;
      overflow: hidden;
      box-shadow: 0 20px 60px rgba(99, 57, 145, 0.08);
      width: 100%;
      max-width: 100%;
      margin: 0 auto;
    }

    .video-content-dock {
      position: relative;
      width: 100%;
      height: 100%;
      border-radius: 32px;
      overflow: hidden;
      box-shadow: 0 20px 50px rgba(74, 47, 124, 0.16);
      background: #000000;
    }

    .sec2-video-player {
      width: 100%;
      height: 100%;
      min-height: 520px;
      max-height: 80vh;
      display: block;
      object-fit: cover;
    }

    .bottom-sparkle-icon {
      position: absolute;
      bottom: 24px;
      right: 28px;
      width: 32px;
      height: 32px;
      color: rgba(255, 255, 255, 0.9);
      filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.8));
      z-index: 10;
      pointer-events: none;
    }

    /* -------------------------------------------------------------
       SECTION 3: TRUSTED BY LOGO TICKER MARQUEE
       ------------------------------------------------------------- */
    .section-trusted-by {
      padding: 40px 0 60px 0;
      background-color: #FFFFFF;
      overflow: hidden;
      position: relative;
    }

    .trusted-by-heading {
      text-align: center;
      font-size: 20px;
      font-weight: 700;
      color: #111827;
      margin-bottom: 32px;
    }

    .logo-marquee-wrapper {
      overflow: hidden;
      white-space: nowrap;
      position: relative;
      width: 100%;
      mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
      -webkit-mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
    }

    .logo-marquee-track {
      display: inline-flex;
      align-items: center;
      gap: 36px;
      animation: marqueeRightToLeft 24s linear infinite;
      will-change: transform;
    }

    .logo-marquee-wrapper:hover .logo-marquee-track {
      animation-play-state: paused;
    }

    @keyframes marqueeRightToLeft {
      0% { transform: translateX(0); }
      100% { transform: translateX(-50%); }
    }

    .logo-card {
      flex-shrink: 0;
      background: #FFFFFF;
      border: 1px solid rgba(0, 0, 0, 0.06);
      border-radius: 14px;
      padding: 12px 32px;
      box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
      display: inline-flex;
      align-items: center;
      justify-content: center;
      height: 64px;
      transition: transform 0.2s ease, box-shadow 0.2s ease;
    }

    .logo-card:hover {
      transform: translateY(-2px);
      box-shadow: 0 8px 24px rgba(99, 57, 145, 0.08);
    }

    .logo-card svg, .logo-card img {
      max-height: 38px;
      width: auto;
      display: block;
    }

    .brand-text-bold { font-weight: 800; font-family: 'Plus Jakarta Sans', sans-serif; fill: #1E293B; }
    .brand-text-sub { font-weight: 600; font-family: 'Inter', sans-serif; fill: #64748B; font-size: 10px; }

    /* -------------------------------------------------------------
       SECTION 4: TRANSFORM THE WAY YOU SIGN DOCUMENTS
       ------------------------------------------------------------- */
    .section-features {
      padding: 60px 0 90px 0;
      background-color: #FFFFFF;
    }

    .features-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 48px;
      align-items: center;
    }

    .features-left-card {
      border-radius: 28px;
      padding: 0;
      min-height: 540px;
      height: 100%;
      width: 100%;
      position: relative;
      overflow: hidden;
      box-shadow: 0 20px 50px rgba(61, 39, 122, 0.18);
      display: flex;
      align-items: center;
      justify-content: center;
      background: #3B2A63;
    }

    .features-left-img {
      width: 100%;
      height: 100%;
      min-height: 540px;
      object-fit: cover;
      object-position: center left;
      display: block;
      border-radius: 28px;
    }

    .sidebar-field {
      background: #FFFFFF;
      border: 1px solid #CBD5E1;
      border-radius: 6px;
      padding: 4px 8px;
      font-size: 9px;
      font-weight: 600;
      color: #334155;
      display: flex;
      align-items: center;
      gap: 4px;
    }

    .sidebar-field.active {
      border-color: #633991;
      color: #633991;
      background: #F3E8FF;
    }

    .features-right-content {
      display: flex;
      flex-direction: column;
      align-items: flex-start;
    }

    .features-kicker-pill {
      background: #F3F4F6;
      color: #374151;
      font-weight: 600;
      font-size: 13px;
      padding: 6px 16px;
      border-radius: 999px;
      display: inline-block;
      margin-bottom: 16px;
    }

    .features-heading {
      font-size: 40px;
      line-height: 1.18;
      font-weight: 800;
      color: #111827;
      margin-bottom: 16px;
      letter-spacing: -0.6px;
    }

    .features-subtitle {
      color: #4B5563;
      font-size: 15.5px;
      line-height: 1.6;
      margin-bottom: 32px;
    }

    .feature-cards-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 20px;
      width: 100%;
    }

    .feature-box {
      background: #F0EBFC;
      border-radius: 20px;
      padding: 24px;
      display: flex;
      flex-direction: column;
      gap: 12px;
      transition: transform 0.25s ease, box-shadow 0.25s ease;
    }

    .feature-box:hover {
      transform: translateY(-3px);
      box-shadow: 0 12px 28px rgba(99, 57, 145, 0.08);
    }

    .feature-box-icon {
      width: 44px;
      height: 44px;
      border-radius: 50%;
      background: #FFFFFF;
      color: #633991;
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 4px 12px rgba(99, 57, 145, 0.12);
    }

    .feature-box-icon i {
      width: 22px;
      height: 22px;
    }

    .feature-box-title {
      font-size: 18px;
      font-weight: 700;
      color: #111827;
      line-height: 1.3;
    }

    .feature-box-desc {
      font-size: 13px;
      color: #64748B;
      line-height: 1.5;
    }

    /* -------------------------------------------------------------
       SECTION 5: SMARTER ESIGNATURES TABBED SHOWCASE
       ------------------------------------------------------------- */
    .section-tabs-showcase {
      padding: 70px 0 100px 0;
      background-color: #FFFFFF;
    }

    .tabs-header {
      text-align: center;
      width: 100%;
      max-width: 100%;
      margin: 0 auto 40px auto;
    }

    .tabs-main-heading {
      font-size: 42px;
      font-weight: 800;
      color: #111827;
      line-height: 1.2;
      margin-bottom: 16px;
      letter-spacing: -0.8px;
    }

    .purple-head-text {
      color: #633991;
    }

    .tabs-subtitle {
      font-size: 16px;
      color: #64748B;
      line-height: 1.6;
      margin-bottom: 36px;
      max-width: 840px;
      margin-left: auto;
      margin-right: auto;
    }

    .tab-nav-bar-container {
      display: flex;
      justify-content: center;
      margin-bottom: 40px;
      width: 100%;
    }

    .tab-nav-bar {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 6px;
      background-color: #F5F5F7;
      padding: 6px 10px;
      border-radius: 999px;
      width: 100%;
    }

    .tab-btn {
      flex: 1;
      text-align: center;
      background: transparent;
      border: none;
      color: #374151;
      font-weight: 600;
      font-size: 14.5px;
      padding: 12px 14px;
      border-radius: 999px;
      cursor: pointer;
      transition: all 0.25s ease;
      font-family: var(--font-family);
      white-space: nowrap;
    }

    .tab-btn:hover {
      color: #633991;
    }

    .tab-btn.active {
      background-color: #EDE6FC;
      color: #633991;
      font-weight: 700;
      box-shadow: 0 2px 8px rgba(99, 57, 145, 0.1);
    }

    .tab-panels-wrapper {
      position: relative;
    }

    .tab-panel-content {
      display: none;
      animation: fadeInTab 0.35s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    }

    .tab-panel-content.active {
      display: block;
    }

    @keyframes fadeInTab {
      from { opacity: 0; transform: translateY(12px); }
      to { opacity: 1; transform: translateY(0); }
    }

    .panel-top-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 28px;
      margin-bottom: 28px;
    }

    .showcase-card {
      background-color: #EBE5FA;
      border-radius: 24px;
      padding: 40px 40px 0 40px;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      overflow: hidden;
      min-height: 460px;
      position: relative;
      transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s ease;
    }

    .showcase-card:hover {
      transform: translateY(-4px);
      box-shadow: 0 16px 36px rgba(99, 57, 145, 0.12);
    }

    .card-title {
      font-size: 22px;
      font-weight: 800;
      color: #111827;
      margin-bottom: 14px;
    }

    .card-desc {
      font-size: 14.5px;
      color: #475569;
      line-height: 1.6;
      margin-bottom: 22px;
    }

    .card-link {
      color: #633991;
      font-weight: 700;
      font-size: 15px;
      text-decoration: none;
      display: inline-flex;
      align-items: center;
      gap: 6px;
      transition: gap 0.2s ease;
      margin-bottom: 28px;
    }

    .card-link:hover {
      gap: 10px;
    }

    .card-link i {
      width: 16px;
      height: 16px;
    }

    .card-illustration {
      margin-top: auto;
    }

    .card-illus-assistant {
      background: #FFFFFF;
      border-radius: 20px 20px 0 0;
      padding: 24px;
      box-shadow: 0 14px 30px rgba(99, 57, 145, 0.08);
      transform: rotate(-3deg) translateY(12px);
    }

    .illus-badge {
      display: inline-block;
      background: #633991;
      color: #FFFFFF;
      font-size: 10.5px;
      font-weight: 700;
      padding: 4px 12px;
      border-radius: 999px;
      margin-bottom: 14px;
    }

    .illus-chat-box {
      background: #F8FAFC;
      border-radius: 12px;
      padding: 14px;
    }

    .chat-bubble {
      font-size: 12.5px;
      font-weight: 700;
      color: #111827;
      margin-bottom: 10px;
    }

    .chat-input-sim {
      background: #FFFFFF;
      border: 1px solid #E2E8F0;
      border-radius: 8px;
      padding: 8px 12px;
      font-size: 11.5px;
      color: #94A3B8;
    }

    .card-illus-workflow {
      background: #FFFFFF;
      border-radius: 20px 20px 0 0;
      padding: 24px;
      box-shadow: 0 14px 30px rgba(99, 57, 145, 0.08);
      position: relative;
    }

    .wf-stepper {
      display: flex;
      align-items: center;
      gap: 12px;
      margin-bottom: 16px;
    }

    .wf-step {
      font-size: 11px;
      font-weight: 600;
      color: #64748B;
      background: #F1F5F9;
      padding: 4px 10px;
      border-radius: 6px;
    }

    .wf-step.active {
      background: #633991;
      color: #FFFFFF;
    }

    .wf-tag {
      position: absolute;
      padding: 6px 14px;
      border-radius: 12px;
      font-weight: 700;
      font-size: 11px;
      box-shadow: 0 8px 20px rgba(0,0,0,0.1);
    }

    .sf-badge {
      top: -12px; right: 20px;
      background: #00A1E0; color: #FFFFFF;
    }

    .ai-badge {
      bottom: 20px; right: 20px;
      background: #FFFFFF; color: #633991; border: 1px solid #E9D5FF;
    }

    .panel-bottom-card {
      background-color: #EBE5FA;
      border-radius: 24px;
      padding: 40px 0 0 40px;
      display: grid;
      grid-template-columns: 0.9fr 1.1fr;
      gap: 36px;
      align-items: flex-end;
      overflow: hidden;
      transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s ease;
    }

    .panel-bottom-card:hover {
      transform: translateY(-4px);
      box-shadow: 0 16px 36px rgba(99, 57, 145, 0.12);
    }

    .bottom-card-info {
      padding-bottom: 40px;
    }

    .bottom-card-mockup {
      background: #FFFFFF;
      border-radius: 16px 0 0 0;
      padding: 28px;
      box-shadow: 0 14px 40px rgba(99, 57, 145, 0.1);
    }

    .template-config-header {
      font-size: 13.5px;
      font-weight: 800;
      color: #633991;
      margin-bottom: 16px;
    }

    .template-config-fields {
      display: flex;
      flex-direction: column;
      gap: 12px;
    }

    .sim-field {
      background: #F8FAFC;
      border: 1px solid #E2E8F0;
      border-radius: 8px;
      padding: 10px 14px;
      font-size: 12.5px;
      font-weight: 600;
      color: #334155;
    }

    /* -------------------------------------------------------------
       SECTION 6: EVERYTHING YOU NEED TO SIGN SMARTER
       ------------------------------------------------------------- */
    .section-core-features {
      padding: 0;
      background-color: #FFFFFF;
      width: 100%;
    }

    .core-features-bg-card {
      background: linear-gradient(180deg, #4A2E79 0%, #2A174E 100%);
      border-radius: 0;
      padding: 80px 0;
      position: relative;
      overflow: hidden;
      width: 100%;
    }

    /* Real Image Exact Match Arc Ribbon with Soft Subtle White Glow Shadow */
    .real-arc-container {
      position: absolute;
      top: 170px;
      left: 50%;
      transform: translateX(-50%);
      width: 100%;
      max-width: 1240px;
      height: 400px;
      pointer-events: none;
      z-index: 1;
      filter: drop-shadow(0 -10px 20px rgba(255, 255, 255, 0.48)) drop-shadow(0 -4px 8px rgba(255, 255, 255, 0.35));
    }

    .real-arc-svg {
      width: 100%;
      height: 100%;
      display: block;
      overflow: visible !important;
    }

    .core-features-header {
      text-align: center;
      position: relative;
      z-index: 5;
      margin-bottom: 56px;
    }

    .core-kicker-badge {
      background: #FFFFFF;
      color: #111827;
      font-weight: 700;
      font-size: 13.5px;
      padding: 6px 20px;
      border-radius: 999px;
      display: inline-block;
      margin-bottom: 18px;
      box-shadow: 0 4px 14px rgba(0,0,0,0.12);
    }

    .core-main-heading {
      font-size: 42px;
      font-weight: 800;
      color: #FFFFFF;
      text-align: center;
      margin-bottom: 16px;
      letter-spacing: -0.8px;
    }

    .core-subtitle {
      color: rgba(255, 255, 255, 0.85);
      font-size: 16px;
      line-height: 1.6;
      text-align: center;
      max-width: 780px;
      margin: 0 auto;
    }

    .core-cards-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 28px;
      position: relative;
      z-index: 5;
      margin-bottom: 50px;
    }

    .core-card {
      background: #FFFFFF;
      border-radius: 24px;
      padding: 44px 32px;
      text-align: center;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: flex-start;
      box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
      transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s ease;
    }

    .core-card:hover {
      transform: translateY(-6px);
      box-shadow: 0 28px 50px rgba(0, 0, 0, 0.22);
    }

    .core-icon-badge {
      width: 60px;
      height: 60px;
      border-radius: 18px;
      background: #F5EEFD;
      border: 1.5px solid #E9D5FF;
      color: #633991;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 24px;
    }

    .core-icon-badge i {
      width: 26px;
      height: 26px;
    }

    .core-card-title {
      font-size: 20px;
      font-weight: 800;
      color: #111827;
      margin-bottom: 14px;
      line-height: 1.3;
    }

    .core-card-desc {
      font-size: 14px;
      color: #64748B;
      line-height: 1.6;
    }

    .core-cta-container {
      text-align: center;
      position: relative;
      z-index: 5;
    }

    .btn-see-all-features {
      display: inline-flex;
      align-items: center;
      gap: 12px;
      background-color: #FFFFFF;
      color: #111827;
      padding: 12px 28px;
      border-radius: 999px;
      font-weight: 800;
      font-size: 15px;
      text-decoration: none;
      box-shadow: 0 10px 24px rgba(0, 0, 0, 0.15);
      transition: all 0.25s ease;
    }

    .btn-see-all-features:hover {
      background-color: #F8FAFC;
      transform: translateY(-2px);
      box-shadow: 0 14px 30px rgba(0, 0, 0, 0.2);
    }

    .btn-purple-arrow {
      width: 26px;
      height: 26px;
      border-radius: 50%;
      background: #633991;
      color: #FFFFFF;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .btn-purple-arrow i {
      width: 14px;
      height: 14px;
    }

    /* -------------------------------------------------------------
       SECTION 7: START SIGNING IN JUST A FEW CLICKS
       ------------------------------------------------------------- */
    .section-signing-flow {
      padding: 90px 0 100px 0;
      background-color: #FFFFFF;
      text-align: center;
    }

    .sec7-header {
      max-width: 780px;
      margin: 0 auto 10px auto;
      position: relative;
      z-index: 5;
    }

    .sec7-heading {
      font-size: 42px;
      font-weight: 800;
      color: #111827;
      line-height: 1.2;
      margin-bottom: 16px;
      letter-spacing: -0.8px;
    }

    .sec7-purple-text {
      color: #633991;
    }

    .sec7-subtitle {
      font-size: 16px;
      color: #64748B;
      line-height: 1.6;
    }

    .sec7-flow-wrapper {
      max-width: 1060px;
      margin: -65px auto 105px auto;
      position: relative;
      z-index: 1;
      border-radius: 24px;
      overflow: hidden;
      display: flex;
      justify-content: center;
      align-items: center;
      transform: translateY(-50px);
    }

    .sec7-flow-img {
      width: 100%;
      height: auto;
      display: block;
      object-fit: contain;
    }

    .btn-sec7-trial {
      display: inline-flex;
      align-items: center;
      gap: 12px;
      background-color: #633991;
      color: #FFFFFF;
      padding: 12px 28px;
      border-radius: 999px;
      font-weight: 700;
      font-size: 15px;
      text-decoration: none;
      box-shadow: 0 8px 24px rgba(99, 57, 145, 0.25);
      transition: all 0.25s ease;
    }

    .btn-sec7-trial:hover {
      background-color: #502A7A;
      transform: translateY(-2px);
      box-shadow: 0 12px 28px rgba(99, 57, 145, 0.35);
    }

    .btn-sec7-arrow {
      width: 26px;
      height: 26px;
      border-radius: 50%;
      background: rgba(255, 255, 255, 0.25);
      display: flex;
      align-items: center;
      justify-content: center;
    }

    /* -------------------------------------------------------------
       SECTION 8: WHY CHOOSE ESIGNFORCE?
       ------------------------------------------------------------- */
    .section-why-choose {
      padding: 70px 0 90px 0;
      background-color: #FFFFFF;
    }

    .section-why-choose .container {
      max-width: 1560px;
    }

    .why-choose-card {
      background: linear-gradient(135deg, #5B348B 0%, #361C65 50%, #201041 100%);
      border-radius: 32px;
      padding: 64px 80px;
      color: #FFFFFF;
      box-shadow: 0 24px 60px rgba(42, 23, 78, 0.28);
      position: relative;
      overflow: hidden;
      width: 100%;
    }

    .why-choose-grid {
      display: grid;
      grid-template-columns: 1.04fr 0.96fr;
      gap: 38px;
      align-items: center;
    }

    .why-kicker-badge {
      background: #FFFFFF;
      color: #111827;
      font-weight: 700;
      font-size: 13.5px;
      padding: 6px 20px;
      border-radius: 999px;
      display: inline-block;
      margin-bottom: 22px;
      box-shadow: 0 4px 14px rgba(0, 0, 0, 0.1);
    }

    .why-main-heading {
      font-size: 42px;
      font-weight: 800;
      color: #FFFFFF;
      line-height: 1.2;
      margin-bottom: 18px;
      letter-spacing: -0.6px;
    }

    .why-subtitle {
      color: rgba(255, 255, 255, 0.82);
      font-size: 15.5px;
      line-height: 1.6;
      margin-bottom: 36px;
      max-width: 540px;
    }

    .why-features-list {
      display: flex;
      flex-direction: column;
      gap: 24px;
      margin-bottom: 40px;
    }

    .why-feature-item {
      display: flex;
      align-items: flex-start;
      gap: 18px;
    }

    .why-item-icon {
      width: 44px;
      height: 44px;
      border-radius: 50%;
      background: #FFFFFF;
      color: #633991;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
    }

    .why-item-icon i {
      width: 20px;
      height: 20px;
    }

    .why-item-title {
      font-size: 18px;
      font-weight: 800;
      color: #FFFFFF;
      margin-bottom: 4px;
      line-height: 1.3;
    }

    .why-item-desc {
      font-size: 13.5px;
      color: rgba(255, 255, 255, 0.75);
      line-height: 1.5;
    }

    .btn-why-trial {
      display: inline-flex;
      align-items: center;
      gap: 12px;
      background-color: #FFFFFF;
      color: #633991;
      padding: 12px 28px;
      border-radius: 999px;
      font-weight: 800;
      font-size: 15px;
      text-decoration: none;
      box-shadow: 0 10px 24px rgba(0, 0, 0, 0.2);
      transition: all 0.25s ease;
    }

    .btn-why-trial:hover {
      background-color: #F8FAFC;
      transform: translateY(-2px);
      box-shadow: 0 14px 30px rgba(0, 0, 0, 0.28);
    }

    .btn-why-arrow {
      width: 26px;
      height: 26px;
      border-radius: 50%;
      background: #633991;
      color: #FFFFFF;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .btn-why-arrow i {
      width: 14px;
      height: 14px;
    }

    .why-showcase-wrapper {
      width: 100%;
      position: relative;
      border-radius: 20px;
      overflow: visible;
      display: flex;
      justify-content: center;
      align-items: center;
    }

    .why-showcase-img {
      width: 113%;
      max-width: 113%;
      height: auto;
      display: block;
      object-fit: contain;
      transform: scale(1.07);
      transform-origin: center right;
      filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.25));
    }

    /* -------------------------------------------------------------
       SECTION 9: SECURITY & COMPLIANCE (MATCHING SECTION 8 WEBPAGE WIDTH)
       ------------------------------------------------------------- */
    .section-security-compliance {
      padding: 70px 0 90px 0;
      background-color: #FFFFFF;
      width: 100%;
    }

    .section-security-compliance .container {
      max-width: 1560px;
    }

    .security-card {
      background: linear-gradient(135deg, #5B348B 0%, #361C65 50%, #201041 100%);
      border-radius: 0;
      padding: 64px 80px;
      color: #FFFFFF;
      box-shadow: 0 24px 60px rgba(42, 23, 78, 0.28);
      position: relative;
      overflow: hidden;
      width: 100%;
    }

    .security-grid {
      display: grid;
      grid-template-columns: 1fr 1.18fr;
      gap: 36px;
      align-items: center;
    }

    .sec9-kicker-badge {
      background: #FFFFFF;
      color: #111827;
      font-weight: 700;
      font-size: 13.5px;
      padding: 6px 20px;
      border-radius: 999px;
      display: inline-block;
      margin-bottom: 24px;
      box-shadow: 0 4px 14px rgba(0, 0, 0, 0.1);
    }

    .sec9-main-heading {
      font-size: 44px;
      font-weight: 800;
      color: #FFFFFF;
      line-height: 1.2;
      margin-bottom: 24px;
      letter-spacing: -0.6px;
    }

    .sec9-subtitle {
      color: rgba(255, 255, 255, 0.82);
      font-size: 15.5px;
      line-height: 1.6;
      margin-bottom: 40px;
      max-width: 540px;
    }

    .btn-sec9-demo {
      display: inline-flex;
      align-items: center;
      gap: 12px;
      background-color: #FFFFFF;
      color: #633991;
      padding: 12px 28px;
      border-radius: 999px;
      font-weight: 800;
      font-size: 15px;
      text-decoration: none;
      box-shadow: 0 10px 24px rgba(0, 0, 0, 0.2);
      transition: all 0.25s ease;
    }

    .btn-sec9-demo:hover {
      background-color: #F8FAFC;
      transform: translateY(-2px);
      box-shadow: 0 14px 30px rgba(0, 0, 0, 0.28);
    }

    .btn-sec9-arrow {
      width: 26px;
      height: 26px;
      border-radius: 50%;
      background: #633991;
      color: #FFFFFF;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .btn-sec9-arrow i {
      width: 14px;
      height: 14px;
    }

    .sec9-badges-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 8px;
      width: 100%;
    }

    .compliance-card {
      background: #FFFFFF;
      border-radius: 16px;
      padding: 26px 12px 18px 12px;
      text-align: center;
      box-shadow: 0 14px 36px rgba(0, 0, 0, 0.22);
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: flex-start;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      min-height: 180px;
      position: relative;
    }

    /* Pin Drop Dot Element */
    .card-pin-drop {
      width: 12px;
      height: 12px;
      border-radius: 50%;
      background: #A855F7;
      border: 2px solid #FFFFFF;
      box-shadow: 0 2px 6px rgba(0, 0, 0, 0.25);
      position: absolute;
      top: 7px;
      left: 50%;
      transform: translateX(-50%);
    }

    .card-tilt-1 { transform: rotate(-4deg) translateY(6px); z-index: 1; }
    .card-tilt-2 { transform: rotate(1deg) translateY(-8px); z-index: 2; }
    .card-tilt-3 { transform: rotate(4deg) translateY(8px); z-index: 1; }
    .card-tilt-4 { transform: rotate(-3deg) translateY(-6px); margin-top: -12px; z-index: 3; }
    .card-tilt-5 { transform: rotate(1deg) translateY(4px); margin-top: -12px; z-index: 4; }
    .card-tilt-6 { transform: rotate(3deg) translateY(-8px); margin-top: -12px; z-index: 3; }

    .compliance-card:hover {
      transform: translateY(-8px) scale(1.04) !important;
      box-shadow: 0 22px 48px rgba(0, 0, 0, 0.32);
      z-index: 20 !important;
    }

    .compliance-card-icon {
      height: 44px;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 10px;
    }

    .compliance-card-title {
      font-size: 13px;
      font-weight: 800;
      color: #111827;
      margin-bottom: 5px;
      line-height: 1.2;
    }

    .compliance-card-desc {
      font-size: 10px;
      color: #64748B;
      line-height: 1.4;
    }

    /* -------------------------------------------------------------
       SECTION 10: SEE WHY ESIGNFORCE STANDS OUT (COMPARISON TABLE)
       ------------------------------------------------------------- */
    .section-comparison {
      padding: 90px 0 100px 0;
      background-color: #F6F3FC;
    }

    .comp-header {
      text-align: center;
      max-width: 780px;
      margin: 0 auto 56px auto;
    }

    .comp-heading {
      font-size: 42px;
      font-weight: 800;
      color: #111827;
      line-height: 1.2;
      margin-bottom: 16px;
      letter-spacing: -0.8px;
    }

    .comp-purple-text {
      color: #633991;
    }

    .comp-subtitle {
      font-size: 16px;
      color: #64748B;
      line-height: 1.6;
    }

    /* Comparison Table Container */
    .comp-table-container {
      max-width: 1140px;
      margin: 0 auto;
      position: relative;
      background: transparent;
      padding: 0;
      box-shadow: none;
    }

    .comp-table {
      width: 100%;
      border-collapse: separate;
      border-spacing: 0;
    }

    .comp-table th, .comp-table td {
      padding: 16px 20px;
      vertical-align: middle;
      text-align: center;
    }

    .comp-table th:first-child, .comp-table td:first-child {
      text-align: left;
      font-size: 15.5px;
      font-weight: 700;
      color: #111827;
      padding-left: 28px;
    }

    .comp-table th {
      font-size: 18px;
      font-weight: 800;
      color: #111827;
      padding-bottom: 24px;
      border-bottom: 1px solid #E2E8F0;
    }

    .comp-table tr td {
      border-bottom: 1px solid #F1F5F9;
    }

    /* Highlighted eSignforce Column */
    .col-esignforce {
      background-color: #F5EEFD;
      position: relative;
    }

    .esignforce-header-badge {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      font-size: 18px;
      font-weight: 800;
      color: #633991;
    }

    .comp-table th.col-esignforce {
      border-top-left-radius: 20px;
      border-top-right-radius: 20px;
      border-top: 1.5px solid #D8B4FE;
      border-left: 1.5px solid #D8B4FE;
      border-right: 1.5px solid #D8B4FE;
      border-bottom: none;
    }

    .comp-table td.col-esignforce {
      border-left: 1.5px solid #D8B4FE;
      border-right: 1.5px solid #D8B4FE;
    }

    .comp-table tr:last-child td.col-esignforce {
      border-bottom-left-radius: 20px;
      border-bottom-right-radius: 20px;
      border-bottom: 1.5px solid #D8B4FE;
    }

    /* Checkmark & Cross Icons */
    .icon-check-purple {
      width: 24px;
      height: 24px;
      border-radius: 50%;
      background: #633991;
      color: #FFFFFF;
      display: inline-flex;
      align-items: center;
      justify-content: center;
    }

    .icon-check-purple i {
      width: 14px;
      height: 14px;
    }

    .icon-check-gray {
      width: 24px;
      height: 24px;
      border-radius: 50%;
      background: #E2E8F0;
      color: #94A3B8;
      display: inline-flex;
      align-items: center;
      justify-content: center;
    }

    .icon-check-gray i {
      width: 14px;
      height: 14px;
    }

    .icon-cross-gray {
      width: 24px;
      height: 24px;
      border-radius: 50%;
      background: #E2E8F0;
      color: #64748B;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      font-size: 12px;
      font-weight: 800;
    }

    .text-extra-cost {
      font-size: 14px;
      font-weight: 700;
      color: #111827;
    }

    .brand-col-header {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      font-size: 17px;
      font-weight: 800;
      color: #111827;
    }

    /* -------------------------------------------------------------
       SECTION 11: CONNECT ESIGNFORCE WITH YOUR FAVORITE APPS (SYNCHRONIZED INFINITE MARQUEE)
       ------------------------------------------------------------- */
    .section-integrations {
      padding: 90px 0 100px 0;
      background-color: #FFFFFF;
      overflow: hidden;
    }

    .sec11-header {
      text-align: center;
      max-width: 780px;
      margin: 0 auto 48px auto;
    }

    .sec11-heading {
      font-size: 42px;
      font-weight: 800;
      color: #111827;
      line-height: 1.2;
      margin-bottom: 16px;
      letter-spacing: -0.8px;
    }

    .sec11-purple-text {
      color: #633991;
    }

    .sec11-subtitle {
      font-size: 16px;
      color: #64748B;
      line-height: 1.6;
    }

    /* Full Webpage Width Canvas Wrapper */
    .sec11-canvas-wrapper {
      width: 100%;
      max-width: 100%;
      height: 500px;
      margin: 0 auto;
      position: relative;
      display: flex;
      align-items: center;
      justify-content: center;
      overflow: hidden;
    }

    /* Left Funnel Beam & Bounded Box (50% Width to eliminate center gap) */
    .sec11-funnel-left {
      position: absolute;
      left: 0;
      top: 50%;
      transform: translateY(-50%);
      width: 50%;
      height: 440px;
      background: linear-gradient(90deg, rgba(248, 245, 255, 0.1) 0%, rgba(234, 220, 255, 0.65) 100%);
      clip-path: polygon(0% 4%, 100% 32%, 100% 68%, 0% 96%);
      z-index: 1;
    }

    .sec11-left-box {
      position: absolute;
      left: 0;
      top: 0;
      width: 50%;
      height: 100%;
      overflow: hidden;
      z-index: 5;
    }

    .sec11-left-fade-mask {
      position: absolute;
      left: 0;
      top: 0;
      width: 100px;
      height: 100%;
      background: linear-gradient(90deg, #FFFFFF 20%, rgba(255, 255, 255, 0) 100%);
      z-index: 8;
      pointer-events: none;
    }

    /* Right Funnel Beam & Bounded Box (50% Width to eliminate center gap) */
    .sec11-funnel-right {
      position: absolute;
      right: 0;
      top: 50%;
      transform: translateY(-50%);
      width: 50%;
      height: 440px;
      background: linear-gradient(90deg, rgba(234, 220, 255, 0.65) 0%, rgba(248, 245, 255, 0.1) 100%);
      clip-path: polygon(0% 32%, 100% 4%, 100% 96%, 0% 68%);
      z-index: 1;
    }

    .sec11-right-box {
      position: absolute;
      right: 0;
      top: 0;
      width: 50%;
      height: 100%;
      overflow: hidden;
      z-index: 5;
    }

    .sec11-right-fade-mask {
      position: absolute;
      right: 0;
      top: 0;
      width: 100px;
      height: 100%;
      background: linear-gradient(-90deg, #FFFFFF 20%, rgba(255, 255, 255, 0) 100%);
      z-index: 8;
      pointer-events: none;
    }

    /* Center eSignforce Hub Card (High Z-Index, Ambient Purple Glow Shadow as per reference image) */
    

    /*.sec11-hub-card:hover {*/
    /*  transform: scale(1.03);*/
    /*}*/

    

    

    /* Left Stream Dynamic Perspective Column Flow Container (JS requestAnimationFrame conveyor belt) */
    .sec11-left-box {
      position: absolute;
      left: 0;
      top: 0;
      width: 50%;
      height: 100%;
      overflow: hidden;
      z-index: 5;
    }

    .sec11-integration-column {
      position: absolute;
      left: 0;
      top: 50%;
      transform: translateY(-50%);
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: space-between;
      width: 76px;
      height: 460px; /* Base height, dynamically updated by JS along perspective funnel */
      padding: 8px 0;
      z-index: 6;
      will-change: transform, opacity, height;
    }

    

    .sec11-brand-logo-card:hover {
      transform: scale(1.18);
      box-shadow: 0 14px 32px rgba(99, 57, 145, 0.28);
    }

    /* Right Stream Marquee Track (8 Signed Cards in 100% Truly Seamless Infinite Loop) */
    .sec11-right-stream-track {
      position: absolute;
      left: -20px;
      top: 50%;
      transform: translateY(-50%);
      height: 300px;
      display: flex;
      align-items: center;
      gap: 20px;
      animation: seamlessRightMarquee 8s linear infinite;
    }

    .sec11-paper-doc {
      width: 140px;
      height: 200px;
      background: #FFFFFF;
      border-radius: 12px;
      padding: 16px 14px;
      box-shadow: 0 12px 30px rgba(99, 57, 145, 0.12);
      position: relative;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      flex-shrink: 0;
    }

    @keyframes seamlessRightMarquee {
      0% {
        transform: translateY(-50%) translateX(-640px);
      }
      100% {
        transform: translateY(-50%) translateX(0px);
      }
    }

    .sec11-paper-doc:hover {
      transform: translateY(-6px) scale(1.02);
    }

    .sec11-green-check {
      position: absolute;
      top: -8px;
      right: 12px;
      width: 24px;
      height: 24px;
      border-radius: 50%;
      background: #22C55E;
      color: #FFFFFF;
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 4px 10px rgba(34, 197, 94, 0.3);
    }

    .sec11-lines-stack {
      display: flex;
      flex-direction: column;
      gap: 7px;
      margin-top: 14px;
    }

    .sec11-doc-bar {
      height: 5px;
      border-radius: 3px;
      background: #BAE6FD;
      width: 100%;
    }

    .sec11-sig-pill {
      align-self: flex-end;
      background: rgba(139, 92, 246, 0.08);
      border: 1px solid rgba(139, 92, 246, 0.25);
      border-radius: 8px;
      padding: 3px 6px;
      display: flex;
      align-items: center;
      justify-content: center;
      width: 65px;
      height: 28px;
    }

    .sec11-paper-doc:hover {
      transform: translateY(-6px) scale(1.02);
    }

    .sec11-green-check {
      position: absolute;
      top: -8px;
      right: 12px;
      width: 24px;
      height: 24px;
      border-radius: 50%;
      background: #22C55E;
      color: #FFFFFF;
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 4px 10px rgba(34, 197, 94, 0.3);
    }

    .sec11-lines-stack {
      display: flex;
      flex-direction: column;
      gap: 7px;
      margin-top: 14px;
    }

    .sec11-doc-bar {
      height: 5px;
      border-radius: 3px;
      background: #BAE6FD;
      width: 100%;
    }

    .sec11-sig-pill {
      align-self: flex-end;
      background: #E2E8F0;
      border-radius: 6px;
      padding: 3px 10px;
      font-family: 'Dancing Script', 'Caveat', cursive, sans-serif;
      font-size: 18px;
      font-weight: 700;
      color: #334155;
    }

    .sec11-stream-fade {
      display: flex;
      flex-direction: column;
      gap: 6px;
      opacity: 0.55;
    }

    .sec11-stream-bar {
      width: 36px;
      height: 4px;
      background: #BAE6FD;
      border-radius: 2px;
    }

    /* Background Funnel Beams */
    .sec11-beam-left {
      position: absolute;
      left: 0;
      top: 50%;
      transform: translateY(-50%);
      width: 50%;
      height: 380px;
      background: linear-gradient(90deg, rgba(246, 240, 254, 0.15) 0%, rgba(232, 218, 254, 0.75) 100%);
      clip-path: polygon(0% 12%, 100% 36%, 100% 64%, 0% 88%);
      z-index: 1;
    }

    .sec11-beam-right {
      position: absolute;
      right: 0;
      top: 50%;
      transform: translateY(-50%);
      width: 50%;
      height: 380px;
      background: linear-gradient(90deg, rgba(232, 218, 254, 0.75) 0%, rgba(246, 240, 254, 0.15) 100%);
      clip-path: polygon(0% 36%, 100% 12%, 100% 88%, 0% 64%);
      z-index: 1;
    }

    /* Center eSignforce Hub Card */
    .sec11-hub-card {
      width: 250px;
      height: 380px;
      background: linear-gradient(180deg, #633991 0%, #361C65 50%, #1F0F3D 100%);
      border-radius: 22px;
      box-shadow: 0 10px 40px rgba(99, 57, 145, 0.45), 0 0 60px rgba(139, 92, 246, 0.2);
      z-index: 20;
      position: absolute;
      left: 50%;
      top: 50%;
      transform: translate(-50%, -50%);
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      transition: transform 0.3s ease;
    }

    .sec11-hub-box:hover {
      transform: scale(1.03);
    }

    .sec11-hub-icon {
      width: 44px;
      height: 44px;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .sec11-hub-title {
      font-size: 24px;
      font-weight: 800;
      color: #FFFFFF;
      letter-spacing: -0.5px;
    }

    /* Floating App Logos */
    .sec11-left-logos {
      position: absolute;
      left: 6%;
      top: 50%;
      transform: translateY(-50%);
      width: 360px;
      height: 280px;
      z-index: 5;
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      grid-template-rows: repeat(3, 1fr);
      gap: 20px;
      align-items: center;
      justify-items: center;
    }

    .sec11-logo-item {
      width: 42px;
      height: 42px;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: transform 0.25s ease;
    }

    .sec11-logo-item:hover {
      transform: scale(1.2);
    }

    .sec11-logo-item svg {
      width: 100%;
      height: 100%;
      object-fit: contain;
    }

    /* Right Output Documents Stream */
    .sec11-right-docs {
      position: absolute;
      right: 4%;
      top: 50%;
      transform: translateY(-50%);
      width: 360px;
      height: 280px;
      z-index: 5;
      display: flex;
      align-items: center;
      gap: 14px;
    }

    .sec11-doc-card {
      width: 135px;
      height: 185px;
      background: #FFFFFF;
      border-radius: 12px;
      padding: 14px 12px;
      box-shadow: 0 10px 28px rgba(99, 57, 145, 0.12);
      position: relative;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      transition: transform 0.3s ease;
    }

    .sec11-doc-card:hover {
      transform: translateY(-6px);
    }

    .sec11-check-badge {
      position: absolute;
      top: -8px;
      right: 10px;
      width: 22px;
      height: 22px;
      border-radius: 50%;
      background: #22C55E;
      color: #FFFFFF;
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 4px 8px rgba(34, 197, 94, 0.3);
    }

    .sec11-doc-lines {
      display: flex;
      flex-direction: column;
      gap: 6px;
      margin-top: 12px;
    }

    .sec11-doc-line {
      height: 5px;
      border-radius: 3px;
      background: #BAE6FD;
      width: 100%;
    }

    .sec11-sig-box {
      text-align: right;
      background: #F1F5F9;
      border-radius: 4px;
      padding: 4px 8px;
      display: inline-block;
      align-self: flex-end;
      font-family: 'Dancing Script', 'Caveat', cursive, sans-serif;
      font-size: 18px;
      font-weight: 700;
      color: #334155;
    }

    .sec11-fade-bars {
      display: flex;
      flex-direction: column;
      gap: 6px;
      opacity: 0.5;
    }

    .sec11-fade-bar {
      width: 32px;
      height: 4px;
      background: #BAE6FD;
      border-radius: 2px;
    }

    /* Responsive adjustments */
    @media (max-width: 1024px) {
      .hero-grid, .features-grid, .feature-cards-grid, .panel-top-grid, .panel-bottom-card, .why-choose-grid, .security-grid {
        grid-template-columns: 1fr;
      }
      .core-cards-grid {
        grid-template-columns: 1fr;
      }
      .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: #FFFFFF;
        padding: 20px;
        box-shadow: 0 10px 20px rgba(0,0,0,0.05);
        gap: 20px;
        border-top: 1px solid #EEEEEE;
      }
      .nav-links.active {
        display: flex;
      }
      .mobile-menu-btn {
        display: flex;
      }
      .hero-heading, .features-heading, .tabs-main-heading, .core-main-heading, .sec7-heading {
        font-size: 30px;
      }
      .panel-bottom-card {
        padding: 24px;
      }
      .core-features-bg-card {
        padding: 40px 20px;
      }
    }

    /* -------------------------------------------------------------
       SECTION 12: E-SIGNATURE SOLUTIONS FOR EVERY INDUSTRY
       ------------------------------------------------------------- */
    .section-how-it-works {
      padding: 90px 0;
      background-color: #FAFCFF;
      position: relative;
    }

    .sec12-title-wrapper {
      position: sticky;
      top: 60px;
      /*z-index: 10;*/
      /*background: #FAFCFF;*/
      /*padding-top: 20px;*/
      padding-bottom: 10px;
    }

    .sec12-badge-wrap {
      text-align: center;
      margin-bottom: 12px;
    }

    .sec12-badge {
      display: inline-block;
      padding: 6px 18px;
      background: #F1F5F9;
      color: #475569;
      font-size: 13px;
      font-weight: 600;
      border-radius: 20px;
      border: 1px solid #E2E8F0;
    }

    .sec12-header {
      text-align: center;
      max-width: 780px;
      margin: 0 auto 20px auto;
    }

    .sec12-heading {
      font-size: 38px;
      font-weight: 800;
      color: #0F172A;
      line-height: 1.2;
      margin-bottom: 10px;
      letter-spacing: -0.8px;
    }

    .sec12-purple-text {
      color: #633991;
    }

    .sec12-subtitle {
      font-size: 15px;
      color: #64748B;
      line-height: 1.5;
    }

    .sec12-cards-list {
      display: flex;
      flex-direction: column;
      gap: 36px;
      max-width: 1080px;
      margin: 0 auto;
    }

    .sec12-card {
      position: sticky;
      top: 220px;
      width: 100%;
      height: 520px;
      background: #F8FAFC;
      border-radius: 28px;
      border: 1px solid #CBD5E1;
      box-shadow: 0 16px 40px rgba(15, 23, 42, 0.05), 0 2px 6px rgba(15, 23, 42, 0.02);
      padding: 0;
      display: flex !important;
      flex-direction: row !important;
      align-items: stretch !important;
      justify-content: space-between !important;
      overflow: hidden;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .sec12-card:hover {
      transform: translateY(-4px);
      box-shadow: 0 24px 48px rgba(15, 23, 42, 0.09);
    }


    .sec12-card-left-text {
      width: 44%;
      flex-shrink: 0;
      display: flex;
      flex-direction: column;
      justify-content: center;
      text-align: left;
      padding: 40px 20px 40px 48px;
    }

    .sec12-card-title-group {
      display: flex;
      align-items: baseline;
      gap: 8px;
      margin-bottom: 16px;
      white-space: nowrap;
    }

    .sec12-card-num {
      font-size: 46px;
      font-weight: 900;
      color: #5B398B;
      font-family: 'Plus Jakarta Sans', sans-serif;
      line-height: 1;
    }

    .sec12-card-title {
      font-size: 28px;
      font-weight: 800;
      color: #3B1B6C;
      letter-spacing: -0.5px;
      line-height: 1;
    }

    .sec12-card-desc {
      font-size: 15px;
      color: #475569;
      line-height: 1.6;
      max-width: 390px;
    }

    .sec12-card-right-img {
      width: 56%;
      height: 100%;
      flex-shrink: 0;
      border-radius: 0;
      overflow: hidden;
      display: flex;
      align-items: center;
      justify-content: center;
      background: linear-gradient(180deg, #633991 0%, #29154C 100%);
      padding: 24px 36px;
    }

    .sec12-card-right-img img {
      width: 100%;
      height: 100%;
      object-fit: contain;
      border-radius: 18px;
    }

    @media (max-width: 768px) {
      .sec12-card {
        flex-direction: column !important;
        height: auto;
        padding: 24px 20px;
      }
      .sec12-card-left-text {
        width: 100%;
        margin-bottom: 20px;
      }
    }

    /* -------------------------------------------------------------
       SECTION 13: FLEXIBLE PRICING FOR EVERY TEAM (PIXEL-PERFECT MATCH)
       ------------------------------------------------------------- */
    .section-pricing {
      padding: 100px 0 120px 0;
      background-color: #FFFFFF;
      position: relative;
    }

    .sec13-header {
      text-align: center;
      max-width: 780px;
      margin: 0 auto 52px auto;
    }

    .sec13-heading {
      font-size: 40px;
      font-weight: 800;
      color: #000000;
      line-height: 1.2;
      margin-bottom: 12px;
      letter-spacing: -0.8px;
    }

    .sec13-purple-text {
      color: #67549B;
    }

    .sec13-subtitle {
      font-size: 14.5px;
      color: #64748B;
      line-height: 1.6;
      margin-bottom: 28px;
    }

    /* Billing Toggle Pills */
    .sec13-toggle-wrapper {
      display: inline-flex;
      align-items: center;
      gap: 12px;
    }

    .sec13-toggle-pill {
      background: #67549B;
      padding: 4px;
      border-radius: 50px;
      display: inline-flex;
      align-items: center;
    }

    .sec13-toggle-btn {
      padding: 7px 22px;
      border-radius: 50px;
      font-size: 14px;
      font-weight: 700;
      border: none;
      background: transparent;
      color: #FFFFFF;
      cursor: pointer;
      transition: all 0.25s ease;
      font-family: inherit;
    }

    .sec13-toggle-btn.active {
      background: #FFFFFF;
      color: #000000;
      box-shadow: 0 2px 6px rgba(0,0,0,0.1);
    }

    .sec13-discount-badge {
      font-size: 14px;
      font-weight: 700;
      color: #000000;
    }

    /* Pricing Cards Grid */
    .sec13-pricing-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 28px;
      max-width: 840px;
      margin: 0 auto;
      align-items: stretch;
    }

    .sec13-price-card {
      position: relative;
      border-radius: 28px;
      overflow: visible;
      display: flex;
      flex-direction: column;
      text-align: left;
    }

    .sec13-ribbon-text {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 48px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 14.5px;
      font-weight: 700;
      color: #FFFFFF;
      z-index: 1;
    }

    .sec13-card-content {
      position: relative;
      z-index: 2;
      padding: 36px 32px 40px 32px;
      border-radius: 28px;
      transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
      height: 100%;
      display: flex;
      flex-direction: column;
    }

    /* Hover effect to slide down and reveal ribbon */
    .sec13-price-card:hover .sec13-card-content {
      transform: translateY(48px);
    }

    /* Ribbon Backgrounds (applied to parent to peek through) */
    .sec13-card-light {
      background: #67549B;
      color: #000000;
    }
    
    .sec13-card-purple {
      background: #000000;
      color: #FFFFFF;
    }

    /* Inner Content Backgrounds */
    .sec13-card-light .sec13-card-content {
      background: #FAFAFA;
    }

    .sec13-card-purple .sec13-card-content {
      background: #67549B;
    }

    .sec13-card-title-row {
      display: flex;
      align-items: center;
      gap: 10px;
      margin-bottom: 24px;
    }

    .sec13-emoji {
      font-size: 22px;
      line-height: 1;
    }

    .sec13-card-title {
      font-size: 26px;
      font-weight: 800;
      color: #000000;
      letter-spacing: -0.4px;
      line-height: 1;
      margin: 0;
    }

    .sec13-card-purple .sec13-card-title {
      color: #FFFFFF;
    }

    .sec13-price-row {
      display: flex;
      align-items: baseline;
      gap: 6px;
      margin-bottom: 16px;
    }

    .sec13-price-amount {
      font-size: 40px;
      font-weight: 800;
      letter-spacing: -1px;
      line-height: 1;
      color: #000000;
    }

    .sec13-card-purple .sec13-price-amount {
      font-size: 40px;
      color: #FFFFFF;
    }

    .sec13-price-period {
      font-size: 13.5px;
      color: #94A3B8;
      font-weight: 500;
    }

    .sec13-card-tagline {
      font-size: 14px;
      font-weight: 700;
      color: #000000;
      margin-bottom: 22px;
    }

    .sec13-card-purple .sec13-card-tagline {
      font-size: 14px;
      font-weight: 600;
      color: rgba(255, 255, 255, 0.9);
    }

    .sec13-cta-btn {
      display: block;
      width: 100%;
      text-align: center;
      padding: 12px 20px;
      border-radius: 50px;
      font-size: 14.5px;
      font-weight: 700;
      text-decoration: none;
      transition: all 0.2s ease;
      background: #FFFFFF;
      color: #000000;
      border: 1px solid #E2E8F0;
      box-shadow: 0 1px 3px rgba(0,0,0,0.04);
    }

    .sec13-cta-btn:hover {
      background: #F8FAFC;
      transform: translateY(-1px);
    }

    .sec13-card-purple .sec13-cta-btn {
      border: none;
      box-shadow: 0 2px 8px rgba(0,0,0,0.12);
    }

    .sec13-sub-cta {
      text-align: center;
      font-size: 11.5px;
      color: #94A3B8;
      margin-top: 8px;
      margin-bottom: 24px;
    }

    .sec13-card-purple .sec13-sub-cta {
      color: rgba(255, 255, 255, 0.65);
    }



    /* Card Features List */
    .sec13-features-heading {
      font-size: 14.5px;
      font-weight: 700;
      color: #000000;
      margin-bottom: 16px;
    }

    .sec13-card-purple .sec13-features-heading {
      color: #FFFFFF;
    }

    .sec13-features-list {
      list-style: none;
      padding: 0;
      margin: 0;
      display: flex;
      flex-direction: column;
      gap: 11px;
    }

    .sec13-features-list li {
      display: flex;
      align-items: center;
      gap: 10px;
      font-size: 13.5px;
      font-weight: 600;
      color: #000000;
      line-height: 1.3;
    }

    .sec13-card-purple .sec13-features-list li {
      color: #FFFFFF;
    }

    /* Circular SVG Icons */
    .sec13-icon-badge {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 18px;
      height: 18px;
      border-radius: 50%;
      flex-shrink: 0;
    }

    .sec13-icon-purple {
      background: #67549B;
    }

    .sec13-icon-green {
      background: #22C55E;
    }

    .sec13-icon-red {
      background: #EF4444;
    }

    @media (max-width: 768px) {
      .sec13-pricing-grid {
        grid-template-columns: 1fr;
        max-width: 420px;
      }
    }

    /* -------------------------------------------------------------
       SECTION 14: SCROLL ZOOM REVEAL (VANILLA JS)
       ------------------------------------------------------------- */
    .sec14-scroll-track {
      height: 400vh;
      position: relative;
      background: #FFFFFF;
    }

    .sec14-sticky-container {
      position: sticky;
      top: 0;
      height: 100vh;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 20px;
      padding: 0 20px;
      overflow: hidden;
      background: #FFFFFF;
    }

    .sec14-side-text {
      white-space: nowrap;
      width: 250px;
      font-weight: 500;
      color: #000000;
      font-size: 55px;
      z-index: 1;
    }

    .sec14-text-left {
      text-align: right;
    }

    .sec14-text-right {
      text-align: left;
    }

    .sec14-media-box {
      width: 15vw;
      height: 5vh;
      border-radius: 50px;
      overflow: hidden;
      position: relative;
      flex-shrink: 0;
      background: #000000;
      z-index: 2;
    }

    .sec14-media-box img,
    .sec14-media-box video {
      position: absolute;
      left: 50%;
      top: 50%;
      width: 100vw;
      height: 100vh;
      object-fit: cover;
      transform: translate(-50%, -50%);
    }

    .sec14-play-btn {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      opacity: 0;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      font-family: inherit;
      font-weight: 500;
      color: #FFFFFF;
      text-align: center;
      text-decoration: none;
      white-space: nowrap;
      font-size: 56px;
      cursor: pointer;
      z-index: 10;
      pointer-events: none;
    }

    .sec14-play-icon {
      display: flex;
      align-items: center;
      justify-content: center;
      background: #000000;
      width: 60px;
      height: 60px;
      border-radius: 50%;
      flex-shrink: 0;
    }

    .sec14-play-triangle {
      position: relative;
      left: 2px;
      border-style: solid;
      border-width: 10px 0px 10px 20px;
      border-color: transparent transparent transparent #FFFFFF;
    }

    @media (max-width: 1799px) {
      .sec14-side-text { width: 160px; font-size: 40px; }
      .sec14-sticky-container { gap: 16px; }
      .sec14-play-btn { font-size: 42px; }
      .sec14-play-icon { width: 52px; height: 52px; }
    }
    @media (max-width: 810px) {
      .sec14-side-text { width: 100px; font-size: 22px; }
      .sec14-sticky-container { gap: 10px; }
      .sec14-play-btn { font-size: 26px; }
      .sec14-play-icon { width: 42px; height: 42px; }
      .sec14-play-triangle { border-width: 7px 0px 7px 14px; }
    }

    /* -------------------------------------------------------------
       FOOTER SECTION (PIXEL PERFECT MATCH)
       ------------------------------------------------------------- */
    .site-footer {
      background-color: #FAFAFA;
      padding: 100px 20px 40px 20px;
      font-family: inherit;
    }

    .footer-container {
      max-width: 1280px;
      margin: 0 auto;
      padding: 0 24px;
    }

    /* Footer CTA Banner */
    .footer-cta {
      background: url('https://esignforce.com/wp-content/uploads/2026/08/backgroud.png') 35% center / contain no-repeat, linear-gradient(90deg, #42326b 0%, #67549b 100%);
      border-radius: 28px;
      padding: 0;
      display: flex;
      align-items: center;
      justify-content: space-between;
      margin-bottom: 80px;
      color: #FFFFFF;
      position: relative;
      overflow: hidden;
      min-height: 400px;
    }

    .footer-cta-left {
      flex: 0 0 40%;
      position: relative;
      z-index: 2;
      padding: 60px 0 60px 80px;
    }

    .footer-cta-subtitle {
      font-size: 20px;
      font-weight: 500;
      margin-bottom: 16px;
      opacity: 0.9;
    }

    .footer-cta-title {
      font-size: 35px;
      font-weight: 700;
      line-height: 1.3;
      margin-bottom: 32px;
    }

    .footer-cta-btn {
      display: inline-flex;
      align-items: center;
      background: #FFFFFF;
      color: #000000;
      padding: 8px 10px 8px 24px;
      border-radius: 50px;
      font-weight: 600;
      font-size: 16px;
      text-decoration: none;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .footer-cta-btn:hover {
      transform: translateY(-2px);
      box-shadow: 0 10px 20px rgba(0,0,0,0.1);
      color: #000;
    }

    .footer-cta-btn-icon {
      display: flex;
      align-items: center;
      justify-content: center;
      width: 36px;
      height: 36px;
      background: #67549b;
      border-radius: 50%;
      margin-left: 16px;
      color: #FFFFFF;
    }

    .footer-cta-right {
      position: absolute;
      right: 0%;
      bottom: -15%;
      top: 5%;
      width: 55%;
      z-index: 1;
    }

    .footer-cta-right img {
      width: 100%;
      height: 100%;
      object-fit: contain;
      object-position: left top;
    }

    /* Footer Links Area */
    .footer-content {
      display: flex;
      justify-content: space-between;
      flex-wrap: wrap;
      gap: 40px;
      margin-bottom: 60px;
    }

    .footer-col-main {
      flex: 0 0 350px;
    }

    .footer-logo {
      display: flex;
      align-items: center;
      gap: 8px;
      font-size: 24px;
      font-weight: 700;
      color: #7961F2;
      margin-bottom: 20px;
    }

    .footer-logo-icon {
      width: 32px;
      height: 32px;
      background: #E8E5F6;
      border-radius: 6px;
      display: flex;
      align-items: center;
      justify-content: center;
      color: #67549B;
    }

    .footer-desc {
      font-size: 14.5px;
      line-height: 1.6;
      color: #555555;
      margin-bottom: 30px;
      font-weight: 500;
    }

    .footer-contact-item {
      display: flex;
      align-items: center;
      gap: 12px;
      margin-bottom: 16px;
      font-size: 14px;
      color: #555555;
      font-weight: 500;
    }

    .footer-contact-icon {
      display: flex;
      align-items: center;
      justify-content: center;
      width: 28px;
      height: 28px;
      background: #67549B;
      color: #FFFFFF;
      border-radius: 50%;
    }

    .footer-col-links {
      flex: 1;
      display: flex;
      justify-content: space-around;
      gap: 20px;
    }

    .footer-nav-col h4 {
      font-size: 18px;
      font-weight: 700;
      color: #000000;
      margin-bottom: 24px;
    }

    .footer-nav-col ul {
      list-style: none;
      padding: 0;
      margin: 0;
    }

    .footer-nav-col ul li {
      margin-bottom: 16px;
    }

    .footer-nav-col ul li a {
      text-decoration: none;
      color: #666666;
      font-size: 15px;
      font-weight: 500;
      transition: color 0.3s ease;
    }

    .footer-nav-col ul li a:hover {
      color: #67549B;
    }

    /* Footer Bottom */
    .footer-bottom {
      border-top: 1px solid #E2E8F0;
      padding-top: 24px;
      display: flex;
      align-items: center;
      font-size: 14px;
      color: #333333;
      font-weight: 600;
    }

    .footer-bottom-icon {
      margin-right: 8px;
      color: #666666;
    }

    /* Responsive */
    @media (max-width: 992px) {
      .footer-cta {
        flex-direction: column;
        padding: 40px;
        text-align: center;
      }
      .footer-cta-left {
        margin-bottom: 40px;
      }
      .footer-cta-right img {
        width: 100%;
        transform: none;
      }
      .footer-col-links {
        justify-content: flex-start;
        flex-wrap: wrap;
        gap: 40px;
      }
      .footer-nav-col {
        flex: 0 0 calc(50% - 20px);
      }
    }
    @media (max-width: 768px) {
      .footer-content {
        flex-direction: column;
      }
      .footer-col-main {
        flex: 1 1 100%;
      }
      .footer-nav-col {
        flex: 1 1 100%;
      }
      .footer-cta-title {
        font-size: 28px;
      }
    }


/* ==============================================================
   FINAL MOBILE RESPONSIVE FIXES
   ============================================================== */
@media (max-width: 992px) {
  .hero-heading, .features-heading, .tabs-main-heading, .core-main-heading, 
  .sec7-heading, .why-main-heading, .sec9-main-heading, .sec12-main-heading, 
  .sec13-main-heading, .footer-cta-title, .why-kicker-badge {
    font-size: 32px !important;
    line-height: 1.3 !important;
  }
  .hero-grid, .features-grid, .feature-cards-grid, .panel-top-grid, 
  .why-choose-grid, .security-grid, .sec12-card, .sec13-pricing-grid, 
  .comparison-table-wrapper {
    grid-template-columns: 1fr !important;
    flex-direction: column !important;
  }
}

@media (max-width: 768px) {
  /* TABS (PILLS) WRAPPING FIX */
  .tabs-header {
    overflow: visible !important;
  }
  .tab-nav-bar-container {
    overflow: visible !important;
    width: 100% !important;
  }
  .tab-nav-bar {
    display: flex !important;
    flex-wrap: wrap !important;
    justify-content: center !important;
    overflow: visible !important;
    height: auto !important;
    padding: 15px !important;
    gap: 10px !important;
    border-radius: 20px !important;
    background-color: #F5F5F7 !important;
    white-space: normal !important;
  }
  .tab-btn {
    flex: 0 0 auto !important;
    white-space: normal !important;
    text-align: center !important;
    font-size: 14px !important;
    padding: 8px 16px !important;
  }

  /* Why Choose */
  .why-left-content { padding: 30px 20px !important; }
  .why-kicker-badge { white-space: normal !important; height: auto !important; padding: 10px 15px !important; text-align: center; border-radius: 20px !important; }
  .why-main-heading { font-size: 28px !important; word-break: break-word !important; }
  
  /* Security Heading */
  .security-card { padding: 40px 15px !important; }
  .sec9-main-heading { font-size: 28px !important; word-wrap: break-word !important; hyphens: auto; }

  /* Security Compliance Cards */
  .sec9-badges-grid {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 15px !important;
    margin-top: 30px !important;
  }
  .compliance-card {
    transform: none !important; margin-top: 0 !important; padding: 15px !important;
  }

  /* Comparison Table Swipe */
  .section-comparison { padding: 40px 15px !important; }
  .comp-table-container {
    display: block !important; width: 100% !important; overflow-x: auto !important;
    -webkit-overflow-scrolling: touch; padding-bottom: 15px !important;
  }
  .comp-table { min-width: 600px !important; }

  
  /* Section 11 Scale Down */
  .sec11-canvas-wrapper {
    transform: scale(0.65);
    transform-origin: center top;
    margin-bottom: -150px;
  }

  /* Generic */
  .hero-buttons { flex-direction: column; gap: 12px; }
  .btn-primary, .btn-secondary, .footer-cta-btn { width: 100% !important; text-align: center !important; justify-content: center !important; }
}

@media (max-width: 480px) {
  .sec9-badges-grid { grid-template-columns: 1fr !important; }
  .hero-heading, .sec9-main-heading, .footer-cta-title { font-size: 24px !important; }
}

@media (max-width: 768px) {
  
  
  
  
  
  /* Adjust the canvas height so it doesn't leave massive empty space */
  
}

