@import url('https://fonts.googleapis.com/css2?family=DM+Serif+Display:ital@0;1&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');

* {
    box-sizing: border-box; 
}

    :root{
      --ink:#0f172a;
      --muted:#6f7f95;
      --purple:#5b4bea;
      --blue:#315bdc;
      --nav:#374151;
      --dot:#cbd5e1;
      --bg-voice: #4b5563;
      --bg-library: #009975;
      --bg-upgrade: #a855f7;
      --bg-credit: #f59e0b;
      --primary-black: #000000;
      --soft-gray: #f9fafb;
      --border-color: #e5e7eb;
      --text-muted: #6b7280;
    }

    *{box-sizing:border-box;}

    body{
      margin:0;
      font-family:Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
      color:var(--ink);
      background:#fff;
      overflow-x:hidden;
    }
    .title,
    h2,
    h3,h5 {
      font-family: "DM Serif Display", serif;
    }

    .video-content h3,
    .umi-video-card h3,
    .umi-upgrade h3,
    .umi-title-text h5,
    .umi-card h3,
    .features-toolkit-title,
    .toolkit-card h3,
    .api-title,
    .custom-detail-section .title,
    .faq-main-title,
    .video-carousel-title,
    .bg-white .title,
    .bg-white .custom-detail-subtitle,
    .solutions-title,
    .solution-content h3,
    .homepage .title,
    .voice-card h3,
    .voice-title-text h5,
    .voice-video-card h3,
    .voice-upgrade h3,
    .video-instruction-title h5,
    .video-info-card h3, .video-tutorial-card h3,
    .video-upgrade-card h3,
    .features-heading h2,
    .feature-box h3,
    .usecase-heading h2,
    .usecase-card h3,
    .how-heading h2,
    .how-step h3,
    .pricing-heading h2,
    .footer-links a,
    .footer-title,
    .footer-desc,
    .footer-copy,
    .faq-head h2,
    .faq-card h3,
    .faq-count,
    .faq-detail-title h3,
    .section-heading h2,
    #voiceSelected,
    button,
    textarea,
    .resource-title,
    .upgrade-title,
    .plan-name,
    .plan-price,
    .music-preview-title h5,
    p{
       font-family: "Roboto", sans-serif;
    }

    a{text-decoration:none;}

    .dot-bg{
      background-color:#f8fbff;
      background-image:radial-gradient(var(--dot) 1.35px, transparent 1.35px);
      background-size:33px 33px;
    }
    .custom-detail-section .title {
      font-size: 42px;
      font-weight: 500;
    }

    /* HEADER */
    .site-header{
      position:fixed;
      top:0;
      left:0;
      width:100%;
      z-index:9999;
      background:transparent;
      transition:background .25s ease, box-shadow .25s ease, border-color .25s ease;
    }

    .site-header.scrolled,
    .site-header.menu-open
    {
      background:#fff;
      box-shadow:0 8px 28px rgb(15 23 42 / 1%);
      /* border-bottom:.5px solid #f3ecec65; */
      transition-property: all;
      transition-timing-function: cubic-bezier(.4, 0, .2, 1);
    }
    .site-header .navbar-nav .nav-link {
      color: #fff;
      font-size: 15px;
      font-weight: 400;
    }
    .site-header.scrolled .navbar-nav .nav-link {
      color: #000;
    }

    .navbar{
      height:120px;
      padding:0;
    }
    .header-video .navbar {
      height: 88px;
    }
    .header-video .logo-img {
      width: 156px;
    }

    .logo-img{
      width:242px;
      height:auto;
      display:block;
    }

    .nav-center{
      gap:30px;
      margin-left:78px;
    }

    .navbar-nav .nav-link{
      color:var(--nav);
      font-size:16px;
      font-weight:400;
      padding:8px 0 !important;
    }

    .navbar-nav .nav-link:hover{
      color:var(--purple);
    }

    .nav-right{
      gap:12px;
    }
    


    .btn-getting{
      padding: 10px 20px;
      border-radius: 8px;
      background: #315bdc;
      color: #fff !important;
      display: inline-flex;
      align-items: center;
      font-size: 16px;
      font-weight: 500;
      box-shadow: 0 10px 22px rgba(49, 91, 220, .22);
      gap: 8px;
    }

    .btn-getting:hover{
      background:#244ed4;
      color:#fff !important;
    }

    .book-link{
      color:#374151;
      font-size:16px;
      font-weight: 500;
      border: 1px solid transparent;;
      font-weight:500;
      transition: .5s;
      padding: 10px 20px;
      border-radius: 8px;

    }
    .book-link:hover {
      border: 1px solid #374151;
    }

    .mobile-toggle{
      width:42px;
      height:42px;
      border:1px solid #cfd8e3;
      border-radius:10px;
      display:none;
      align-items:center;
      justify-content:center;
      color:#4b5563;
      background:rgba(255,255,255,.55);
      font-size:21px;
    }

    /* MOBILE MENU  */
    .mobile-menu-overlay {
      position: fixed;
      inset: 0;
      z-index: 10000;
      background: rgba(0, 0, 0, 0.76);
      display: none;
      /* Hapus padding-top agar bisa full */
    }

    .mobile-menu-overlay.show {
      display: block;
    }

    .mobile-menu-panel {
      width: 100%; 
      height: 100%; 
      max-height: 100vh;
      overflow-y: auto; 
      margin: 0;
      background: #fff;
      border-radius: 0; 
      box-shadow: none;
    }

    .mobile-menu-top{
      height:96px;
      padding:0 16px 0 26px;
      display:flex;
      align-items:center;
      justify-content:space-between;
      border-bottom:1px solid #e5e7eb;
    }

    .mobile-menu-top.dot-bg{
      background-size:33px 33px;
    }

    .mobile-logo{
      width:135px;
    }

    .menu-close{
      width:38px;
      height:38px;
      border:1px solid #d1d5db;
      border-radius:8px;
      background:#f8fafc;
      display:grid;
      place-items:center;
      font-size:23px;
      color:#4b5563;
    }

    .mobile-menu-body{
      padding:18px 12px 30px;
      max-height:calc(100vh - 120px);
      overflow-y:auto;
    }

    .mobile-menu-body a{
      display:block;
      text-align:center;
      color:#4b5563;
      font-size:16px;
      font-weight:500;
      padding:11px 10px;
    }

    .mobile-menu-body .group-title{
      color:#6b7280;
      font-size:14px;
      font-weight:800;
      padding:8px 0 5px;
      border-top:1px solid #e5e7eb;
      text-align:left;
    }

    .mobile-menu-body .submenu a{
      text-align:left;
      padding-left:14px;
    }






    /* HERO VIDEO */
    .hero-video-section{
      height: 100vh;
      min-height: 625px;
    }

    /* VIDEO */
    .hero-video-bg{
      position:absolute;
      inset:0;
      width:100%;
      height:100%;
      object-fit:cover;
      z-index:1;
    }

    /* DARK OVERLAY */
    .hero-overlay{
      position:absolute;
      inset:0;
      z-index:2;
      background:
        linear-gradient(
          to bottom,
          rgba(0,0,0,.45),
          rgba(0,0,0,.25),
          rgba(0,0,0,.55)
        );
    }

    /* CONTENT */
    .hero-content-wrap{
      position:relative;
      z-index:3;
      padding-bottom:80px;
      max-width:720px;
    }

    /* TITLE */
    .hero-big-title{
      color: #fff;
      font-size: 60px;
      font-weight: 600;
      letter-spacing: -2px;
    }

    /* BUTTON */
    .hero-main-btn{
      padding: 10px 16px;
      border-radius: 30px;
      background: #fff;
      color: #111827;
      text-decoration: none;
      font-weight: 400;
      font-size: 14px;
      display: inline-flex;
      align-items: center;
      gap: 10px;
      transition: .2s ease;
    }

    .hero-main-btn:hover{
      background:#f3f4f6;
      color:#111827;
      transform:translateY(-2px);
    }

    
    /* HERO */
    .hero{
      min-height:860px;
      padding:168px 15px 92px;
      text-align:center;
      position:relative;
    }

    .hero-inner{
      max-width:980px;
      margin:0 auto;
    }

    .hero-badge{
      display:inline-flex;
      align-items:center;
      gap:10px;
      min-height:36px;
      padding:0 18px;
      border:1px solid #dbe3ef;
      border-radius:999px;
      background:rgba(255,255,255,.75);
      box-shadow:0 6px 16px rgba(15,23,42,.06);
      color:#4b5563;
      font-size:.75rem;
      font-weight:600;
      letter-spacing:.02em;
      text-transform:uppercase;
      margin-bottom:34px;
    }

    .hero-badge .dot{
      width:7px;
      height:7px;
      border-radius:50%;
      background:#5b4bea;
      flex:0 0 auto;
    }

    .hero-title{
      margin:0;
      color:#0f172a;
      font-size: 3.75rem;
      line-height: 1.1;
      font-weight:700;
      letter-spacing:-.045em;
    }

    .hero-title .gradient{
      display:block;
      background:linear-gradient(90deg,#5645e8 0%, #6d50ed 52%, #4a3bea 100%);
      -webkit-background-clip:text;
      background-clip:text;
      color:transparent;
    }

    .hero-desc{
      max-width:42rem;
      margin:30px auto 0;
      color:#6f7f95;
      font-size: 1.25rem;
      line-height:1.45;
      font-weight:500;
    }

    .hero-small{
      margin-top:30px;
      color:#6f7f95;
      font-size:15px;
      font-weight:500;
    }

    .hero-small a{
      color:#5b4bea;
      text-decoration:underline;
    }

    .hero-actions{
      display:flex;
      justify-content:center;
      gap:16px;
      margin-top:42px;
      flex-wrap:wrap;
    }

    .hero-btn{
      padding-bottom:  1rem;
      padding-top:  1rem;
      padding-left: 2rem;
      padding-right: 2rem;
      border-radius: .5rem;
      transition:.2s ease;
    }

    .hero-btn.dark{
      background:#0d1425;
      color:#fff;
      box-shadow:0 14px 28px rgba(13,20,37,.22);
    }

    .hero-btn.light{
      background:#fff;
      color:#374151;
      border:1px solid #dce3ee;
    }

    .hero-btn.purple{
      background:linear-gradient(90deg,#a02dea,#5544df);
      color:#fff;
      box-shadow:0 14px 30px rgba(91,75,234,.22);
    }

    .hero-btn:hover{transform:translateY(-1px);}


    .trusted{
      margin-top:64px;
      overflow:hidden;
    }

    .trusted-title{
      color:#7a8799;
      font-weight: 500;
      font-size: .875rem;
      line-height: 1.25rem;
      text-transform:uppercase;
      margin-bottom:30px;
      text-align:center;
      letter-spacing: .05em;
    }

    .trusted-slider{
      position:relative;
      max-width:980px;
      margin:0 auto;
      overflow:hidden;
    }

    .trusted-slider::before,
    .trusted-slider::after{
      content:"";
      position:absolute;
      top:0;
      bottom:0;
      width:120px;
      z-index:2;
      pointer-events:none;
    }

    .trusted-slider::before{
      left:0;
      background:linear-gradient(to right,#f8fbff,transparent);
    }

    .trusted-slider::after{
      right:0;
      background:linear-gradient(to left,#f8fbff,transparent);
    }

    .trusted-track{
      display:flex;
      width:max-content;
      animation:trustedScroll 28s linear infinite;
    }

    .trusted-group{
      display:flex;
      align-items:center;
      gap:48px;
      padding-right:48px;
      flex-shrink:0;
    }

    .trusted-logo{
      height:32px;
      width:auto;
      object-fit:contain;
      flex-shrink:0;
      mix-blend-mode:multiply;
    }

    .trusted-logo.small{
      height:26px;
    }

    .trusted-logo.medium{
      height:30px;
    }

    .trusted-logo.large{
      height:36px;
    }

    @keyframes trustedScroll{
      from{
        transform:translateX(0);
      }
      to{
        transform:translateX(-50%);
      }
    }

    .trusted-slider:hover .trusted-track{
      animation-play-state:paused;
    }




    /* VIDEO GALLERY SECTION */
    .video-action-section{
      padding:92px 0 88px;
      background:#f7f9fc;
    }

    .section-heading{
      text-align:center;
      max-width:650px;
      margin:0 auto 54px;
    }

    .section-heading h2{
      font-size: 3rem;
      line-height: 1;
      font-weight: 700;
      letter-spacing: -.025em;
      color:#0f172a;
      margin-bottom: 1.5rem;
    }

    .section-heading p{
      font-size: 1.25rem;
      line-height: 1.75rem;
      line-height:1.45;
      margin:0 auto;
      max-width: 42rem;
    }

    .video-grid{
      /* max-width:970px; */
      margin:0 auto;
    }

    .video-item{
      display: grid;
      display: -ms-grid;
      display: -moz-grid;
      display: -moz-grid-group;
      display: -moz-grid-line;
      display: -ms-inline-grid;
      display: -moz-inline-grid;
      margin-bottom:24px;

    }

    .video-thumb{
      position:relative;
      overflow:hidden;
      border-radius:10px;
      background:#0f172a;
      box-shadow:0 18px 38px rgba(15,23,42,.18);
      aspect-ratio:16 / 10.6;
    }

    .video-thumb::before{
      content:"";
      position:absolute;
      inset:0;
      background:linear-gradient(180deg, rgba(15, 23, 42, 0.23) 0 15%, transparent 38%, rgba(15, 23, 42, 0.036) 100%);
      z-index:2;
      pointer-events:none;
    }

    .video-thumb img{
      width:100%;
      height:100%;
      object-fit:cover;
      display:block;
    }

    .browser-bar{
      position:absolute;
      top:0;
      left:0;
      right:0;
      height:28px;
      background:#172033;
      z-index:3;
      display:flex;
      align-items:center;
      gap:7px;
      padding-left:14px;
    }

    .browser-bar span{
      width:9px;
      height:9px;
      border-radius:50%;
      display:block;
    }

    .browser-bar span:nth-child(1){background:#ff6b57;}
    .browser-bar span:nth-child(2){background:#ffbd2e;}
    .browser-bar span:nth-child(3){background:#27c93f;}

    .yt-play{
      position:absolute;
      left:50%;
      top:54%;
      transform:translate(-50%, -50%);
      width:62px;
      height:44px;
      border-radius:12px;
      background:#ff0000;
      color:#fff;
      display:grid;
      place-items:center;
      font-size:27px;
      z-index:4;
      box-shadow:0 12px 25px rgba(0,0,0,.25);
    }

    .watch-pill{
      position:absolute;
      right:18px;
      bottom:18px;
      min-height:30px;
      padding:0 14px;
      border-radius:999px;
      background:rgba(17,24,39,.42);
      color:#fff;
      display:flex;
      align-items:center;
      gap:6px;
      font-size:13px;
      font-weight:800;
      z-index:4;
      backdrop-filter:blur(4px);
    }

    .share-bubble{
      position:absolute;
      left:20px;
      bottom:16px;
      width:42px;
      height:42px;
      border-radius:50%;
      background:rgba(107,114,128,.58);
      color:#fff;
      display:grid;
      place-items:center;
      font-size:18px;
      z-index:4;
      backdrop-filter:blur(3px);
    }

    .video-content{
      padding:18px 6px 0;
    }

    .video-content h3{
      color:#0f172a;
      font-size:20px;
      line-height:1.3;
      font-weight:700;
      letter-spacing:-.02em;
      margin:0 0 10px;
    }

    .video-content p{
      color:#536275;
      font-size:16px;
      line-height:1.55;
      margin:0;
    }

    /* FEATURES SECTION */
    .features-section{
      position:relative;
      padding:92px 0 96px;
      background:#fff;
      overflow:hidden;
    }

    .features-section::before{
      content:"";
      position:absolute;
      left:-120px;
      top:220px;
      width:340px;
      height:340px;
      border-radius:50%;
      background:rgba(230,238,255,.75);
      filter:blur(80px);
      pointer-events:none;
    }

    .features-eyebrow{
      text-align:center;
      color:#5b4bea;
      font-size: .875rem;
      font-weight: 600;
      line-height: 1.25rem;
      letter-spacing:.08em;
      text-transform:uppercase;
      margin-bottom:12px;
    }

    .features-heading{
      text-align:center;
      max-width:850px;
      margin:0 auto 70px;
    }

    .features-heading h2{
      font-size: 3rem;
      line-height: 1;
      font-weight: 700;
      letter-spacing:-.025em;
      color:#0f172a;
      margin:0 0 22px;
    }

    .features-heading p{
      max-width:42rem;
      margin:0 auto;
      color:#475569;
      font-size: 1.25rem;
      line-height: 1.75rem;
      font-weight:500;
    }

    .features-grid{
      /* max-width:1120px; */
      margin:0 auto;
      display:grid;
      grid-template-columns:repeat(12, 1fr);
      gap:24px;
      position:relative;
      z-index:2;
    }

    .feature-box{
      min-height:280px;
      position:relative;
      overflow:hidden;
      border:1px solid #e4eaf3;
      border-radius:28px;
      background:#fff;
      padding: 40px;
      box-shadow:0 10px 24px rgba(15,23,42,.035);
      transition:transform .22s ease, box-shadow .22s ease, border-color .22s ease, background .22s ease;
    }

    .feature-box:hover{
      transform:translateY(-7px) scale(1.012);
      box-shadow:0 28px 70px rgba(15,23,42,.12);
    }

    .feature-box h3{
      position:relative;
      z-index:2;
      font-size: 1.875rem;
      line-height: 2.25rem;
      font-weight:700;
      letter-spacing:-.035em;
      color:#0f172a;
      margin:0 0 18px;
      transition:color .22s ease;
    }

    .feature-box p{
      position:relative;
      z-index:2;
      max-width:500px;
      color:#536275;
      font-size:17px;
      line-height:1.55;
      margin:0;
      font-weight:500;
    }

    .span-8{grid-column:span 8;}
    .span-4{grid-column:span 4;}

    .fast-card{
      border-color:#f0e1b5;
      background:linear-gradient(90deg,#fff 0 55%,#fff8e8 55% 100%);
    }

    .fast-icon{
      position:absolute;
      right:58px;
      top:86px;
      width:96px;
      height:104px;
      z-index:1;
    }

    .fast-icon span{
      position:absolute;
      width:18px;
      height:78px;
      border-radius:999px;
      background:linear-gradient(180deg,#ffe28a,#ffc09f);
      transform:rotate(12deg);
      opacity:.9;
    }

    .fast-icon span:nth-child(1){left:0; top:0;}
    .fast-icon span:nth-child(2){left:32px; top:0; height:100px;}
    .fast-icon span:nth-child(3){left:65px; top:0; height:58px;}

    .languages-card .big-aa{
      position:absolute;
      right:28px;
      bottom:18px;
      color:#e8e6f0;
      font-size:88px;
      line-height:1;
      font-style:italic;
      transition:color .22s ease, transform .22s ease;
    }

    .custom-dots{
      position:absolute;
      right:28px;
      bottom:28px;
      display:flex;
      gap:4px;
    }

    .custom-dots span{
      width:24px;
      height:24px;
      border-radius:50%;
      border:3px solid #fff;
      margin-left:-9px;
    }

    .custom-dots span:nth-child(1){background:#ff6f8a;}
    .custom-dots span:nth-child(2){background:#8b7cf6;}
    .custom-dots span:nth-child(3){background:#35d0a4;}

    .team-avatars{
      position:absolute;
      right:34px;
      bottom:34px;
      display:flex;
      align-items:center;
      gap:12px;
    }

    .avatars{
      display:flex;
      align-items:center;
    }

    .avatar{
      width:34px;
      height:34px;
      border-radius:50%;
      display:grid;
      place-items:center;
      font-size:12px;
      font-weight:700;
      color:#64748b;
      border:3px solid #fff;
      margin-left:-10px;
    }

    .avatar:first-child{margin-left:0;background:#e7edf5;}
    .avatar:nth-child(2){background:#a7f3d0;color:#047857;}
    .avatar:nth-child(3){background:#172033;color:#fff;}

    .shared-pill{
      border:1px solid #aeead8;
      color:#059669;
      background:#f0fdf8;
      border-radius:999px;
      padding:7px 16px;
      font-size:13px;
      font-weight:700;
    }

    .format-icon{
      position:absolute;
      right:28px;
      bottom:28px;
      display:flex;
      align-items:end;
      gap:9px;
    }

    .format-icon span{
      display:block;
      width:25px;
      border:3px solid #9b6cff;
      border-radius:2px 2px 0 0;
    }

    .format-icon span:nth-child(1){height:17px;}
    .format-icon span:nth-child(2){height:30px;}
    .format-icon span:nth-child(3){height:22px;}

    .voice-icon{
      position:absolute;
      right:40px;
      bottom:34px;
      display:flex;
      align-items:center;
      gap:7px;
    }

    .voice-icon span{
      width:6px;
      border-radius:999px;
      background:#ff7895;
      display:block;
    }

    .voice-icon span:nth-child(1){height:39px;}
    .voice-icon span:nth-child(2){height:27px;}
    .voice-icon span:nth-child(3){height:47px;}
    .voice-icon span:nth-child(4){height:33px;}
    .voice-icon span:nth-child(5){height:25px;}
    .voice-icon span:nth-child(6){height:44px;}

    .fast-card:hover{
      border-color:#f8c94c;
      background:linear-gradient(90deg,#fff 0 55%,#fff4d8 55% 100%);
    }
    .fast-card:hover h3{color:#f47b00;}

    .languages-card:hover{
      border-color:#aab7ff;
      background:#fbfcff;
    }
    .languages-card:hover h3{color:#5b61f1;}
    .languages-card:hover .big-aa{color:#dedcff; transform:scale(1.04);}

    .custom-card:hover{
      border-color:#ffbdc8;
      background:#fffafb;
    }
    .custom-card:hover h3{color:#f05f7f;}

    .team-card:hover{
      border-color:#9debd7;
      background:#fbfffd;
    }
    .team-card:hover h3{color:#059669;}

    .format-card:hover{
      border-color:#c3a7ff;
      background:#fcfaff;
    }
    .format-card:hover h3{color:#8b5cf6;}

    .voice-card:hover{
      border-color:#ff9caf;
      background:#fffafb;
    }
    .voice-card:hover h3{color:#fb7185;}


    /* USE CASE SECTION */
    .usecase-section{
    padding:92px 0 96px;
    background:#f6f9fc;
    }

    .usecase-heading{
    text-align:center;
    margin-bottom:66px;
    }

    .usecase-heading h2{
    font-size: 3rem;
    line-height: 1;
    font-weight:700;
    letter-spacing:-.04em;
    color:#0f172a;
    margin-bottom:18px;
    }

    .usecase-heading p{
      --tw-text-opacity: 1;
      color: #475569;
      font-size: 1.25rem;
      line-height: 1.75rem;
    }

    .usecase-grid{
      /* max-width:1050px;
      margin:0 auto; */
    }
    .usecase-grid .col-md-6.col-lg-4 {
      display: grid;
      display: -ms-grid;
      display: -moz-grid;
      display: -moz-grid-group;
      display: -moz-grid-line;
      display: -ms-inline-grid;
      display: -moz-inline-grid;
    }

    .usecase-card{
    --card-color:#2563eb;
    --card-bg:#f0f8ff;
    min-height:285px;
    border:1px solid color-mix(in srgb, var(--card-color) 24%, #e5e7eb);
    border-radius:26px;
    background:#fff;
    padding:34px 34px 30px;
    display:flex;
    flex-direction:column;
    justify-content:space-between;
    transition:transform .22s ease, box-shadow .22s ease, background .22s ease, border-color .22s ease;
    }

    .usecase-card:hover{
    transform:translateY(-8px) scale(1.015);
    background:var(--card-bg);
    border-color:color-mix(in srgb, var(--card-color) 48%, #fff);
    box-shadow:0 28px 70px color-mix(in srgb, var(--card-color) 18%, transparent);
    }

    .usecase-line{
    width:42px;
    height:6px;
    border-radius:999px;
    background:var(--card-color);
    margin-bottom:28px;
    }

    .usecase-card h3{
      font-size: 1.875rem;
      line-height: 2.25rem;
      font-weight:700;
      letter-spacing:-.025em;
      color:#0f172a;
      margin-bottom:18px;
      transition:color .22s ease;
    }

    .usecase-card:hover h3{
    color:var(--card-color);
    }

    .usecase-card p{
    color:#536275;
    font-size:16.5px;
    line-height:1.55;
    font-weight:500;
    margin:0;
    }

    .usecase-bottom{
    margin-top:30px;
    padding-top:28px;
    border-top:1px solid color-mix(in srgb, var(--card-color) 22%, #e5e7eb);
    display:flex;
    align-items:center;
    justify-content:space-between;
    }

    .usecase-link{
    color:var(--card-color);
    font-size:13px;
    font-weight:700;
    letter-spacing:.08em;
    text-transform:uppercase;
    }

    .usecase-arrow{
    width:34px;
    height:34px;
    border-radius:50%;
    border:1px solid color-mix(in srgb, var(--card-color) 34%, #e5e7eb);
    background:#fff;
    color:var(--card-color);
    display:grid;
    place-items:center;
    font-size:18px;
    box-shadow:0 8px 18px rgba(15,23,42,.08);
    transition:transform .22s ease, box-shadow .22s ease;
    }

    .usecase-card:hover .usecase-arrow{
    transform:translateX(5px);
    box-shadow:0 12px 24px color-mix(in srgb, var(--card-color) 20%, transparent);
    }

    .usecase-blue{
    --card-color:#2563eb;
    --card-bg:#f0f8ff;
    }

    .usecase-purple{
    --card-color:#a735e8;
    --card-bg:#fff5ff;
    }

    .usecase-orange{
    --card-color:#f58a00;
    --card-bg:#fffaf3;
    }

    .usecase-green{
    --card-color:#10b981;
    --card-bg:#f1fff9;
    }

    .usecase-violet{
    --card-color:#6d4df2;
    --card-bg:#f8f5ff;
    }

    .usecase-indigo{
    --card-color:#4f5cf7;
    --card-bg:#f5f7ff;
    }

    .usecase-red{
    --card-color:#f43f5e;
    --card-bg:#fff6f8;
    }



    /* HOW IT WORKS SECTION */
    .how-section{
    padding:105px 0 110px;
    background:#fff;
    border-bottom:1px solid #e5e7eb;
    }

    .how-heading{
    text-align:center;
    margin-bottom:86px;
    }

    .how-heading h2{
    font-size:3rem;
    line-height:1.1;
    font-weight:700;
    letter-spacing:-.04em;
    color:#0f172a;
    margin-bottom:18px;
    }

    .how-heading p{
    max-width:640px;
    margin:0 auto;
    color:#344156;
    font-size:18px;
    line-height:1.35;
    }

    .how-steps{
    max-width:1040px;
    margin:0 auto;
    position:relative;
    display:grid;
    grid-template-columns:repeat(3, 1fr);
    gap:56px;
    }

    .how-steps::before{
    content:"";
    position:absolute;
    top:38px;
    left:16%;
    right:16%;
    border-top:2px dashed #cbd5e1;
    z-index:1;
    }

    .how-step{
    position:relative;
    z-index:2;
    text-align:center;
    }

    .step-number{
    width:92px;
    height:92px;
    margin:0 auto 30px;
    border:1px solid #d9e2ef;
    border-radius:12px;
    background:#fff;
    color:#5546e8;
    display:grid;
    place-items:center;
    font-size:31px;
    font-weight:700;
    box-shadow:0 14px 28px rgba(15,23,42,.10);
    transition:transform .22s ease, box-shadow .22s ease, border-color .22s ease, background .22s ease;
    }

    /* .how-step:hover .step-number{
    transform:translateY(-7px) scale(1.04);
    border-color:#8f85ff;
    background:#f8f7ff;
    box-shadow:0 22px 45px rgba(85,70,232,.18);
    } */

    .how-step h3{
    color:#0f172a;
    font-size:20px;
    line-height:1.3;
    font-weight:700;
    letter-spacing:-.02em;
    margin-bottom:16px;
    }

    .how-step p{
    margin:0 auto;
    color:#465569;
    font-size:16px;
    line-height:1.6;
    font-weight:400;
    }

    .how-action{
    text-align:center;
    margin-top:72px;
    }
    .affiliate-btn,
    .faq-demo a,
    .how-btn{
      padding: 12px 22px;
      border-radius:8px;
      background:#5546e8;
      color:#fff;
      display:inline-flex;
      align-items:center;
      justify-content:center;
      font-size:16px;
      font-weight:600;
      box-shadow:0 12px 24px rgba(85,70,232,.24);
      transition:transform .22s ease, background .22s ease, box-shadow .22s ease;
    }
    .faq-demo a {
      gap: 10px;
    }

    .affiliate-btn:hover,
    .how-btn:hover,
    .faq-demo a:hover{
    color:#fff;
    background:#4738da;
    transform:translateY(-2px);
    box-shadow:0 18px 32px rgba(85,70,232,.32);
    }


    /* PRICING SECTION */
    .pricing-section{
    padding:92px 0 96px;
    background:#f6f9fc;
    border-top:1px solid #e5e7eb;
    }

    .pricing-heading{
    text-align:center;
    margin-bottom:36px;
    }

    .pricing-heading h2,
    .faq-head h2 {
      font-size:3rem;
      line-height:1.15;
      font-weight:700;
      letter-spacing:-.04em;
      color:#0f172a;
      margin-bottom:14px;
    }
    .homePage .pricing-heading h2,
    .homePage .faq-head h2 {
      font-size: 42px;
      font-weight: 500;
    }

    .pricing-heading p,
    .faq-head p{
    color:#536275;
    font-size:20px;
    margin:0;
    }

    .billing-toggle{
    width:max-content;
    margin:0 auto 34px;
    background:#fff;
    border:1px solid #dfe7f2;
    border-radius:999px;
    padding:4px;
    display:flex;
    align-items:center;
    box-shadow:0 7px 18px rgba(15,23,42,.05);
    }

    .billing-btn{
    height:40px;
    padding:0 24px;
    border:0;
    border-radius:999px;
    background:transparent;
    color:#536275;
    font-size:16px;
    font-weight:600;
    }

    .billing-btn.active{
    background:#0d1425;
    color:#fff;
    box-shadow:0 5px 14px rgba(13,20,37,.2);
    }

    .save-badge{
    margin-left:8px;
    color:#10b981;
    font-size:11px;
    font-weight:700;
    }

    .pricing-note{
    text-align:center;
    color:#f59e0b;
    font-size:13px;
    font-weight:800;
    margin-bottom:22px;
    }

    .pricing-table-wrap{
    /* max-width:1120px; */
    margin:0 auto;
    background:#fff;
    border:1px solid #dfe7f2;
    border-radius:10px;
    overflow:hidden;
    box-shadow:0 22px 50px rgba(15,23,42,.12);
    }

    .pricing-table-scroll{
    width:100%;
    overflow-x:auto;
    }

    .pricing-table{
    width:100%;
    min-width:1080px;
    border-collapse:collapse;
    font-size:12px;
    color:#334155;
    }

    .pricing-table th,
    .pricing-table td{
    border-bottom:1px solid #edf2f7;
    padding:14px 12px;
    text-align:center;
    vertical-align:middle;
    }

    .pricing-table th:first-child,
    .pricing-table td:first-child{
    text-align:left;
    width:190px;
    font-weight:700;
    color:#475569;
    }

    .pricing-table thead th{
    background:#f8fafc;
    color:#475569;
    font-size:11px;
    font-weight:700;
    text-transform:uppercase;
    letter-spacing:.03em;
    }

    .pricing-table .price{
    color:#0f172a;
    font-size:14px;
    font-weight:700;
    }

    .pricing-table .small-text{
    display:block;
    color:#64748b;
    font-size:10px;
    font-weight:600;
    margin-top:2px;
    }

    .check{
    color:#00a870;
    font-size:17px;
    font-weight:700;
    }

    .cross{
    color:#cbd5e1;
    font-size:17px;
    font-weight:700;
    }

    .addon{
    color:#f59e0b;
    font-size:18px;
    font-weight:700;
    }

    .blue-text{
    color:#4f46e5;
    font-weight:700;
    font-size:11px;
    }

    .green-text{
    color:#059669;
    font-weight:700;
    font-size:15px;
    }

    .table-btn{
      padding: 6px 11px;
      border-radius: 6px;
      border: 1px solid #d7e0ec;
      background: #fff;
      color: #334155;
      font-size: 12px;
      font-weight: 500;
      transition: .5s;
    }
    .table-btn:hover{
      border: 1px solid #a3a6aa;
    }
    .table-btn.primary:hover{
      opacity: .8;
    }

    .table-btn.primary{
    border-color:#5546e8;
    background:#5546e8;
    color:#fff;
    }

    .pricing-legend{
    margin:22px auto 0;
    display:flex;
    justify-content:center;
    gap:26px;
    flex-wrap:wrap;
    color:#64748b;
    font-size:13px;
    }

    .pricing-guide-link{
    margin-top:44px;
    text-align:center;
    }

    .pricing-guide-link a{
      color: #5546e8;
      font-size: 18px;
      font-weight: 600; 
      transition: .5s;
    }
    .pricing-guide-link a:hover{
      text-decoration: underline;
    }

    .api-tier{
    max-width:860px;
    margin:48px auto 0;
    background:#fff;
    border-radius:10px;
    overflow:hidden;
    border:1px solid #dfe7f2;
    box-shadow:0 20px 45px rgba(15,23,42,.10);
    }

    .api-tier-head{
    background:#0d1425;
    color:#fff;
    padding:24px 28px;
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:20px;
    }

    .api-tier-label{
    color:#94a3b8;
    font-size:11px;
    font-weight:700;
    letter-spacing:.08em;
    text-transform:uppercase;
    margin-bottom:6px;
    }

    .api-tier-head h3{
    font-size:28px;
    font-weight:700;
    margin:0 0 4px;
    }

    .api-tier-head p{
    color:#cbd5e1;
    margin:0;
    font-size:14px;
    }

    .api-btn{
    background:#fff;
    color:#0d1425;
    border-radius:6px;
    padding:11px 17px;
    font-weight:700;
    font-size:13px;
    }

    .api-tier-body{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:32px;
    padding:28px;
    }

    .api-tier-body h4{
    font-size:13px;
    text-transform:uppercase;
    font-weight:700;
    letter-spacing:.04em;
    margin-bottom:16px;
    }

    .api-tier-body p{
    color:#475569;
    font-size:14px;
    line-height:1.6;
    }

    .rate-box{
    background:#f8fafc;
    border:1px solid #e5eaf3;
    border-radius:10px;
    padding:16px;
    margin-bottom:12px;
    }

    .rate-row{
    display:flex;
    justify-content:space-between;
    align-items:center;
    color:#334155;
    font-size:14px;
    font-weight:800;
    }

    /* FAQ SECTION */
    .faq-section{
    padding:110px 0 104px;
    background-color:#f8fbff;
    background-image:radial-gradient(#d7e0ed 1.15px, transparent 1.15px);
    background-size:28px 28px;
    border-bottom:4px solid #5546e8;
    }

    .faq-head{
    text-align:center;
    margin-bottom:54px;
    }


    .faq-search-box{
    max-width:690px;
    margin:0 auto 58px;
    position:relative;
    }

    .faq-search-box i{
      position:absolute;
      left:22px;
      top:50%;
      transform:translateY(-50%);
      color:#8ca0b8;
      font-size:20px;
    }

    .faq-search-box input{
      height:58px;
      border-radius:12px;
      border:1px solid #d7e0ec;
      padding-left:58px;
      font-size:17px;
      color:#0f172a;
      background:#fff;
      box-shadow:0 8px 20px rgba(15,23,42,.035);
    }

    .faq-search-box input::placeholder{
      color:#8ca0b8;
    }

    .faq-category-wrap{
      margin:0 auto;
    }

    .faq-card{
    min-height:208px;
    border:1px solid #d9e3ef;
    border-radius:14px;
    background:rgba(255,255,255,.58);
    display:flex;
    align-items:center;
    justify-content:center;
    text-align:center;
    cursor:pointer;
    transition:transform .22s ease, box-shadow .22s ease, background .22s ease, border-color .22s ease;
    }

    .faq-card:hover{
    transform:translateY(-8px) scale(1.015);
    background:#f1f7ff;
    border-color:#9aabff;
    box-shadow:0 24px 60px rgba(85,70,232,.16);
    }

    .faq-card-icon{
      color:#5546e8;
      font-size:40px;
      line-height:1;
      margin-bottom:24px;
      transition:transform .22s ease;
    }

    .faq-card:hover .faq-card-icon{
      transform:scale(1.08);
    }

    .faq-card h3{
      color:#0f172a;
      font-size:18px;
      line-height:1.32;
      font-weight:500;
      margin-bottom:16px;
    }

    .faq-count{
      display:inline-flex;
      align-items:center;
      justify-content:center;
      height:28px;
      padding:0 14px;
      border-radius:999px;
      background:#dfe6ff;
      color:#315bdc;
      font-size:13px;
      font-weight:400;
    }

    .faq-demo{
    text-align:center;
    margin-top:68px;
    }

    .faq-demo p{
    color:#334155;
    font-size:16px;
    margin-bottom:14px;
    }



    .faq-detail{
    display:none;
    max-width:950px;
    margin:0 auto;
    }

    .faq-back{
      display:inline-flex;
      align-items:center;
      gap:8px;
      color:#5546e8;
      font-size:18px;
      font-weight:500;
      margin-bottom:36px;
      cursor:pointer;
    }

    .faq-detail-title{
      display:flex;
      align-items:center;
      gap:18px;
      margin-bottom:34px;
    }

    .faq-detail-icon{
      width:48px;
      height:48px;
      border:4px solid #5546e8;
      border-radius:50%;
      color:#5546e8;
      display:grid;
      place-items:center;
      font-size:26px;
      flex:0 0 auto;
    }

    .faq-detail-title h3{
      color:#0f172a;
      font-size:34px;
      font-weight:600;
      letter-spacing:-.04em;
      margin:0;
    }

    .faq-section .accordion-item{
      border:1px solid #d9e3ef;
      border-radius:12px !important;
      overflow:hidden;
      margin-bottom:16px;
      background:#fff;
    }

    .faq-section .accordion-button{
      min-height:68px;
      background:#fff;
      color:#0f172a;
      font-size:18px;
      font-weight:700;
      box-shadow:none;
      padding:20px 26px;
    }

    .faq-section .accordion-button:not(.collapsed){
    background:#fff;
    color:#0f172a;
    box-shadow:none;
    }

    .faq-section .accordion-button::after{
    filter:invert(34%) sepia(92%) saturate(1745%) hue-rotate(231deg) brightness(92%) contrast(92%);
    }

    .faq-section .accordion-body{
    color:#334155;
    font-size:17px;
    line-height:1.55;
    padding:8px 26px 28px;
    }

    .faq-section .accordion-body a{
    color:#5546e8;
    text-decoration:underline;
    }


    /* FOOTER */
    .site-footer{
    background:#000;
    color:#fff;
    padding:88px 0 42px;
    border-top:4px solid #5546e8;
    }

    .footer-wrap{
    max-width:1120px;
    margin:0 auto;
    }

    .footer-logo{
      width:100px;
      height:auto;
      margin-bottom:34px;
      filter:brightness(1.4);
    }

    .footer-desc{
      max-width:300px;
      color:#fff;
      font-size:17px;
      line-height:1.5;
      font-weight:300;
      margin:0;
    }

    .footer-title{
      color:#fff;
      font-size:20px;
      line-height:1.2;
      font-weight:500;
      margin-bottom:28px;
    }

    .footer-links{
      list-style:none;
      padding:0;
      margin:0;
    }

    .footer-links li{
      margin-bottom:17px;
    }

    .footer-links a{
      color:#fff;
      font-size:16px;
      line-height:1.2;
      font-weight:500;
      transition:color .2s ease, transform .2s ease;
      display:inline-block;
    }

    .footer-links a:hover{
      color:#8177ff;
      transform:translateX(4px);
    }

    .footer-social{
      display:flex;
      align-items:center;
      gap:18px;
      margin-bottom:28px;
    }

    .footer-social a{
      color:#fff;
      font-size:28px;
      line-height:1;
      display:inline-flex;
      transition:transform .2s ease, color .2s ease;
    }

    .footer-social a:hover{
      color:#8177ff;
      transform:translateY(-4px);
    }

    .footer-divider-small{
      height:1px;
      background:#334155;
      margin:0 0 30px;
    }

    .affiliate-title{
      color:#fff;
      font-size:18px;
      font-weight:700;
      margin-bottom:16px;
    }


    .footer-main-divider{
      height:1px;
      background:#334155;
      margin:58px 0 36px;
    }

    .footer-copy{
      text-align:center;
      color:#fff;
      font-size:18px;
      font-weight:400;
      margin:0;
    }



    /* page playground */
    
    a{text-decoration:none;}

    .playground-header{
      position:sticky;
      top:0;
      z-index:9999;
      background:#fbfdff;
      /* border-bottom:1px solid #e5ebf3; */
    }
    .playground-header .navbar {
      height: 96px;
    }

    .playground-navbar{
      min-height: 103px;
      padding: 0 24px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 18px;
      background: #fff;
    }

    .pg-logo{
      display:inline-flex;
      align-items:center;
      flex:0 0 auto;
    }

    .pg-logo img{
      width:148px;
      height:auto;
      display:block;
    }

    .pg-actions{
      display:flex;
      align-items:center;
      justify-content:flex-end;
      gap:12px;
      flex:1;
    }

    .pg-info{
      display:flex;
      align-items:center;
      gap:12px;
      color:#334155;
      font-size:15px;
      white-space:nowrap;
    }

    .pg-info strong{
      font-size:18px;
      font-weight:500;
      color:#111827;
    }

    .pg-info a{
      color:#111827;
      font-weight:700;
      text-decoration:underline;
    }

    .pg-btn{
      min-height:46px;
      border:0;
      border-radius:8px;
      padding:0 18px;
      color:#fff;
      display:inline-flex;
      align-items:center;
      justify-content:center;
      font-size:15px;
      font-weight:850;
      box-shadow:0 10px 20px rgba(15,23,42,.10);
      transition:transform .2s ease, box-shadow .2s ease, opacity .2s ease;
      white-space:nowrap;
    }

    .pg-btn:hover{
      color:#fff;
      transform:translateY(-1px);
      box-shadow:0 14px 26px rgba(15,23,42,.14);
    }

    .pg-btn.disabled{
      background:#4b5563;
      color:#c7ccd4;
      cursor:not-allowed;
      opacity:1;
    }

    .pg-btn.library{
      background:#0f9f7a;
    }

    .pg-btn.upgrade{
      background:linear-gradient(90deg,#7d35ee,#c922d4);
    }

    .pg-avatar{
      width:43px;
      height:43px;
      border-radius:50%;
      overflow:hidden;
      flex:0 0 auto;
      border:2px solid #eef2f7;
    }

    .pg-avatar img{
      width:100%;
      height:100%;
      object-fit:cover;
      display:block;
    }

    .pg-mobile-close{
      display:none;
      width:38px;
      height:38px;
      border:1px solid #cfd8e3;
      border-radius:9px;
      background:#fff;
      color:#334155;
      place-items:center;
      font-size:21px;
    }

    .pg-credit-pill{
      display:none;
      align-items:center;
      gap:7px;
      min-width:77px;
      height:32px;
      padding:0 12px;
      border-radius:999px;
      background:#eab308;
      color:#4b3b00;
      font-size:15px;
      font-weight:700;
    }

    .pg-credit-pill .coin-dot{
      width:17px;
      height:17px;
      border-radius:50%;
      background:#facc15;
      box-shadow:inset 0 0 0 4px rgba(180,83,9,.16);
    }

    .playground-subbar{
    padding: 0 24px;
    border-top: 1px solid #f1f5f9;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    z-index: -0;
    position: relative;
    background: transparent;
    }

    .sub-dropdown-btn{
      padding:4px 10px;
      border:1px solid #cfd8e3;
      border-radius:0 0 11px 11px;
      background:#fff;
      color:#334155;
      display:inline-flex;
      align-items:center;
      justify-content:space-between;
      gap:10px;
      font-size:14px;
      font-weight:500;
      box-shadow:0 5px 12px rgba(15,23,42,.05);
    }

    .sub-dropdown-btn i{
      width:25px;
      height:25px;
      border-radius:50%;
      background:#eef2f7;
      display:grid;
      place-items:center;
      font-size:13px;
    }

    .faq_ {
      top: 0;
    }
    .faq-dropdown-btn{
      padding:6px 10px;
      border:1px solid #cfd8e3;
      border-radius:0 0 11px 11px;
      background:#fff;
      color:#334155;
      display:inline-flex;
      align-items:center;
      justify-content:space-between;
      gap:10px;
      font-size:14px;
      font-weight:500;
      box-shadow:0 5px 12px rgba(15,23,42,.05);
    }

    .dropdown-menu.pg-menu{
      border:1px solid #dbe3ee;
      box-shadow:0 18px 45px rgba(15,23,42,.12);
      border-radius:12px;
      padding:8px;
    }
    .dropdown-item {
      line-height: 2.2;
    }

    .dropdown-menu.pg-menu .dropdown-item{
      border-radius:8px;
      padding:10px 12px;
      font-weight:650;
      color:#334155;
    }

    .dropdown-menu.pg-menu .dropdown-item:hover{
      background:#f1f5f9;
      color:#111827;
    }

    .playground-main{
      min-height:calc(100vh - 155px);
      background:linear-gradient(180deg,#fbfdff,#f8fafc);
      padding:56px 15px 86px;
    }

    .creator-panel .card_panel{
      /* max-width:900px;
      margin:0 auto; */
      border:1px solid #dbe3ee;
      border-radius:18px;
      background:#fff;
      box-shadow:0 22px 60px rgba(15,23,42,.08);
      padding:24px;
    }

    .watch-tutorial{
      padding: 6px 10px;
      border: 1px solid #ead5ff;
      border-radius: 6px;
      background: #fbf5ff;
      color: #8b32e6;
      display: inline-flex;
      align-items: center;
      gap: 8px;
      font-weight: 500;
      font-size: 14px;
      margin-bottom: 30px;
      transition-property: all;
      transition-timing-function: cubic-bezier(.4, 0, .2, 1);
      transition-duration: .15s;
    }
    .watch-tutorial:hover {
      opacity: .8;
      color: #7e22ce;
      border: 1px solid #d8b4fe;
    }

    .prompt-row{
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:20px;
      margin-bottom:10px;
    }

    .form-label-pg{
      color: #222e3e;
      font-size: 14px;
      font-weight: 400;
      margin: 0;
    }
    .form-switch .form-check-input {
      width: 2.7em;
    }
    .form-switch .form-check-input {
      height: 1.5em;
    }
    .prompt-tools label {
      font-size: 12px;
      font-weight: 400;
      color: #94a3b8;

    }

    .prompt-tools{
      display:flex;
      align-items:center;
      gap:13px;
      flex-wrap:wrap;
      color:#94a3b8;
      font-size:13px;
      font-weight:750;
    }

    .pg-link{
      color: #4f46e5;
      text-decoration: underline;
      font-size: 13px;
      font-weight: 300;
      border: 0;
      background: transparent;
      padding: 0;
    }




    .type-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 15px;
      margin-bottom: 20px;
    }


    .type-card {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 15px 20px;
      border: 1px solid #e9ecef; 
      border-radius: 12px;
      cursor: pointer;
      transition: all 0.2s ease-in-out;
      background-color: #fff;
      font-size: 14px;
      font-weight: 400;
    }


    .type-card:hover {
      border-color: #d1d5db;
    }


    .type-card:has(input:checked) {
      border-color: #0d6efd; 
      background-color: #f8fbff;
      box-shadow: 0 0 0 1px #0d6efd; 
    }

  .type-card:has(input:checked) .form-check-label {
    color: #0d6efd; 
  }

  .type-card:has(input:checked) .pg-link {
    color: #0d6efd;
    font-weight: 400;
  }

  .type-card:has(input:checked) .pg-link i {
    color: #0d6efd;
  }

  .type-card:has(input:checked) .form-check-input {
    border-color: #0d6efd;
    background-color: #0d6efd;
  }



    .type-card .form-check {
      display: flex;
      align-items: center;
      gap: 10px;
      margin-bottom: 0;
      pointer-events: none; 
    }

    .type-card .form-check-input {
      margin-top: 0;
      width: 1.2em;
      height: 1.2em;
      cursor: pointer;
    }




    .type-grid .pg-link {
      /* color: #6c757d; */
      text-decoration: none;
      font-size: 12px;
      font-weight: 400;
      background: none;
      border: none;
      padding: 2px 10px;
      transition-timing-function: cubic-bezier(.4, 0, .2, 1);
      transition-duration: .15s;
    }

    .type-grid .pg-link:hover {
      color: #4f46e5;
      background-color: #e0e7ff;
      padding: 2px 10px;
      border-radius: 6px;
    }

    .form-check-audio label,
    .form-check-audio p {
      color: #94a3b8;
    }
    .form-check-audio p {
      font-size: 12px;
      font-weight: 300;
      margin-right: 16px;
      margin-bottom: 0;
    }
    .form-check-audio label {
      font-size: 13px;
      font-weight: 400;
      margin-right: 10px;
    }

    .form-check-audio {
      background-color: #f8fafc80;
      border: 1px solid #e2e8f0;
      border-radius: 8px;
      padding: 10px 14px;
    }



    /* --- Layout Form (Flexbox) --- */
    .config-form .config-form {
        display: flex;
        flex-direction: column;
        gap: 15px; 
    }

    .config-form .form-row {
        display: flex;
        justify-content: space-between;
        gap: 20px;
    }


    .config-form .flex-1 { flex: 1; max-width: 140px; } 
    .config-form .flex-2 { flex: 2; }                  
    .config-form .flex-spacer { max-width: 140px; }  
    .config-form .form-group-1,
    .config-form .form-group-2 {
      display: flex;
      align-items: center;
      width: 50%;
      gap: 20px;
    } 
    .config-form .form-group-2 {
      justify-content: end;
    }


    /* .config-form .text-right-links .label-header {
        justify-content: flex-start; 
    } */

    .config-form .text-right-links .label-header .action-link {
        margin-left: auto; 
    }

    .config-form .label-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 6px;
        
    }

    .config-form .label-header label {
      font-size: 12px;
      font-weight: 400;
      color: #6b7280;
    }


    .config-form .action-link {
        font-size: 12px;
        font-weight: 200;
        color: #4f46e5; 
        text-decoration: underline;
        display: flex;
        align-items: center;
        gap: 5px;
    }

    .config-form .action-link:hover {
        text-decoration: underline;
    }


    .config-form select {
        width: 100%;
        padding: 10px 12px;
        font-size: 12px;
        color: #1f2937; 
        background-color: #f9fafb; 
        border: 1px solid #d1d5db; 
        border-radius: 8px; 
        appearance: none; 
        -webkit-appearance: none;
        background-image: url('data:image/svg+xml;charset=US-ASCII,<svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 20 20"><path fill="%236b7280" d="M5.293 7.293a1 1 0 011.414 0L10 10.586l3.293-3.293a1 1 0 111.414 1.414l-4 4a1 1 0 01-1.414 0l-4-4a1 1 0 010-1.414z" /></svg>');
        background-repeat: no-repeat;
        background-position: right 10px center; 
        background-size: 16px;
    }

    .config-form select:focus {
        outline: none;
        border-color: #a5b4fc; 
        box-shadow: 0 0 0 3px rgba(165, 180, 252, 0.2); 
    }


    .config-form .add-logo-btn {
        width: 100%;
        padding: 10px;
        font-size: 12px;
        font-weight: 300;
        color: #d1d5db; 
        background-color: #6b7280;
        border: none;
        border-radius: 8px;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        transition: background-color 0.2s;
    }

    .config-form .add-logo-btn:hover {
        background-color: #4b5563;
    }


    .config-form .relative-group {
        position: relative;
        padding-bottom: 25px; 
    }

    .config-form .bottom-preview-link {
        position: absolute;
        bottom: 0;
        right: 0;
        justify-content: flex-end; 
        flex-direction: row; 
    }

    


    .radio-dot{
      width:19px;
      height:19px;
      border:2px solid #b7c5d8;
      border-radius:50%;
      display:inline-block;
      position:relative;
      flex:0 0 auto;
    }



    .locked-upload-row{
      margin-top: 22px;
      border: 2px dashed #e2e8f0;
      border-radius: 13px;
      padding: 12px;
      display: grid;
      grid-template-columns: 1fr auto 1fr;
      align-items: center;
      gap: 14px;
    }

    .locked-box{
      border: 1px solid #eef2f7;
      border-radius: 10px;
      background: #fcfcff;
      color: #475569;
      display: flex;
      align-items: center;
      gap: 12px;
      padding: 14px 18px;
      font-size: 12px;
      font-weight: 200;
      line-height: 1rem;
    }
    .opacity-60 {
        opacity: .6;
    }
    .bi-paperclip {
      display: inline-block; 
      transform: rotate(45deg); 
    }
    .bi-paperclip,
    .bi-camera-video {
      font-size: 18px;
    }
    .locked-icon{
      width:30px;
      height:30px;
      border-radius:50%;
      background:#faf5ff;
      color:#d8b4fe;
      display:grid;
      place-items:center;
      flex:0 0 auto;
    }

    .or-text{
      color:#c5ceda;
      font-weight:700;
      font-size:12px;
    }

    .helper-links{
      margin-top:10px;
      display:flex;
      gap:13px;
      flex-wrap:wrap;
    }
    .helper-links.add-custom {
      gap: 7px;
      align-items: center;
    }
    .helper-links span {
      color: #64748b;
      font-size: .75rem;
      line-height: 1rem;
    }

    .option-row{
      min-height:42px;
      border:1px solid #e5ebf3;
      border-radius:8px;
      margin-top:20px;
      padding:0 12px;
      display:flex;
      align-items:center;
      gap:9px;
      color:#b3becb;
      font-size:13px;
      font-weight:700;
    }

    .option-row input{accent-color:#5b4bea;}

    .instruction-input{
      width:100%;
      min-height:72px;
      border:1px solid #e5ebf3;
      border-radius:9px;
      margin-top:20px;
      padding:16px;
      color:#334155;
      outline:0;
      resize:none;
      font-size: .875rem;
      line-height: 1.25rem;
    }

    .instruction-input::placeholder{
      color:#b3becb; 
      font-size: .875rem;
      font-weight: 300;}

    .settings-grid{
      margin-top:18px;
      display:grid;
      grid-template-columns:repeat(6, 1fr);
      gap:12px;
      align-items:end;
    }

    .field-group label{
      color:#64748b;
      font-size:13px;
      font-weight:850;
      margin-bottom:6px;
      display:flex;
      justify-content:space-between;
      gap:8px;
    }

    .field-group select,
    .field-group input{
      width:100%;
      height:38px;
      border:1px solid #cbd5e1;
      border-radius:8px;
      background:#f8fafc;
      color:#1f2937;
      padding:0 10px;
      font-size:14px;
    }

    .logo-add-btn{
      width:100%;
      height:36px;
      border:0;
      border-radius:8px;
      background:#777;
      color:#d7d7d7;
      font-weight:850;
    }

    .no-credit-btn{
      padding: 10px 20px;
      border:0;
      border-radius:9px;
      background:#2563eb;
      color:#333;
      font-size:16px;
      font-weight:400;
    }

    .estimate-bar{
      min-height:25px;
      margin-top:20px;
      border:1px solid #9fc7ff;
      background:#e9f3ff;
      border-radius:7px;
      color:#334155;
      font-size:12px;
      font-weight:400;
      display:flex;
      align-items:center;
      padding:0 12px;
      gap:7px;
    }

    .page-note{
      text-align:center;
      color:#64748b;
      font-size:12px;
      margin-top:120px;
    }

/* UPGRADE PLAN MODAL */
.open-upgrade-btn{
    color: #5b4bea;
    text-decoration: underline;
    font-size: 12px;
    font-weight: 300;
    border: 0;
    background: transparent;
    padding: 0;
}

.upgrade-modal .modal-dialog{
  /* max-width:980px; */
}

.upgrade-modal .modal-content{
  border:0;
  border-radius:18px;
  overflow:hidden;
}

.upgrade-modal .modal-body{
  padding:28px 24px 32px;
}

.upgrade-close{
  position:absolute;
  top:18px;
  right:18px;
  width:40px;
  height:40px;
  border:1px solid #cfd8e3;
  border-radius:50%;
  background:#f8fafc;
  color:#334155;
  display:grid;
  place-items:center;
  font-size:22px;
  z-index:5;
}

.upgrade-title{
  text-align:center;
  color:#111827;
  font-size:38px;
  font-weight:700;
  letter-spacing:-.04em;
  margin-bottom:18px;
}

.upgrade-tabs{
  width:max-content;
  margin:0 auto 28px;
  padding:5px;
  border:1px solid #cfd8e3;
  border-radius:999px;
  background:#eef3f9;
  display:flex;
  align-items:center;
  gap:5px;
}

.upgrade-tab-btn{
  height:50px;
  min-width:130px;
  border:0;
  border-radius:999px;
  background:transparent;
  color:#475569;
  font-size:17px;
  font-weight:700;
  padding:0 24px;
}

.upgrade-tab-btn.active{
  color:#fff;
  background:#4b4be9;
  box-shadow:0 12px 24px rgba(75,75,233,.28);
}

.upgrade-tab-btn.annual.active{
  background:#0f9f7a;
}

.month-badge{
  margin-left:8px;
  padding:7px 13px;
  border-radius:999px;
  background:#2dd4bf;
  color:#063b35;
  font-size:13px;
  font-weight:700;
}

.upgrade-coupon{
  text-align:center;
  color:#f59e0b;
  font-size:14px;
  font-weight:850;
  margin-bottom:22px;
}

.upgrade-cards{
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:16px;
}

.plan-card{
  min-height:630px;
  border:1px solid #dbe3ee;
  border-radius:14px;
  background:#fff;
  padding:26px 24px;
  display:flex;
  flex-direction:column;
}

.plan-card.highlight{
  border-color:#2563eb;
  box-shadow:0 0 0 1px rgba(37,99,235,.18);
}

.plan-name{
  color:#111827;
  font-size:24px;
  font-weight:700;
  text-align:center;
  margin-bottom:18px;
}

.plan-card.highlight .plan-name{
  color:#2563eb;
}

.plan-price{
  color:#111827;
  font-size:38px;
  line-height:1;
  font-weight:700;
  text-align:center;
  margin-bottom:6px;
}

.plan-period{
  color:#64748b;
  font-size:13px;
  text-align:center;
  line-height:1.35;
  min-height:36px;
  margin-bottom:26px;
}

.plan-features{
  list-style:none;
  padding:0;
  margin:0;
}

.plan-features li{
  display:flex;
  gap:12px;
  color:#334155;
  font-size:15.5px;
  line-height:1.45;
  margin-bottom:18px;
}

.plan-features li i{
  color:#059669;
  font-size:18px;
  flex:0 0 auto;
  margin-top:1px;
}

.addon-title{
  color:#64748b;
  font-size:13px;
  font-weight:700;
  text-transform:uppercase;
  text-align:center;
  margin:18px 0 12px;
}

.addon-list{
  display:grid;
  gap:8px;
  margin-bottom:24px;
}

.addon-item{
  min-height:36px;
  border:1px solid #dbe3ee;
  border-radius:8px;
  background:#f8fafc;
  color:#334155;
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:0 13px;
  font-size:13px;
  font-weight:700;
}

.addon-item span:first-child{
  display:flex;
  align-items:center;
  gap:9px;
}

.addon-item i{
  color:#2563eb;
}

.addon-price{
  color:#2563eb;
  font-weight:700;
}

.subscribe-btn{
  width:100%;
  height:48px;
  border:0;
  border-radius:10px;
  background:#dfe6ef;
  color:#334155;
  font-size:17px;
  font-weight:700;
  margin-top:auto;
}

.plan-card.highlight .subscribe-btn{
  background:linear-gradient(90deg,#2563eb,#5645e8);
  color:#fff;
  box-shadow:0 12px 24px rgba(37,99,235,.24);
}

/* GOLPO SKETCH PREVIEW MODAL */
.sketch-preview-modal .modal-dialog{
  max-width:1160px;
}

.sketch-preview-modal .modal-content{
  border:0;
  border-radius:10px;
  overflow:hidden;
  background:#f8fafc;
}

.sketch-preview-modal .modal-header{
  height:64px;
  background:#fff;
  border-bottom:1px solid #dbe3ee;
  padding:0 24px;
}

.sketch-preview-modal .modal-title{
  color:#111827;
  font-size:18px;
  font-weight:700;
}

.sketch-preview-modal .btn-close{
  box-shadow:none;
}

.sketch-preview-body{
  max-height:78vh;
  overflow-y:auto;
  padding:24px;
}

.preview-section{
  margin-bottom:34px;
}

.preview-section-head{
  display:flex;
  align-items:center;
  gap:14px;
  margin-bottom:20px;
}

.preview-section-head h3{
  color:#334155;
  font-size:16px;
  font-weight:700;
  margin:0;
  white-space:nowrap;
}

.preview-section-head::after{
  content:"";
  height:1px;
  background:#dbe3ee;
  flex:1;
}

.preview-grid{
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:24px;
}

.preview-grid.two{
  grid-template-columns:repeat(2, 335px);
  gap:50px;
}

.preview-card{
  border-radius:10px;
  background:#fff;
  overflow:hidden;
  box-shadow:0 1px 0 rgba(15,23,42,.04);
}

.preview-card-title{
  min-height:46px;
  display:flex;
  align-items:center;
  justify-content:center;
  color:#334155;
  font-size:16px;
  font-weight:700;
  text-align:center;
  padding:0 12px;
}

.preview-thumb{
  position:relative;
  height:195px;
  background:#111827;
  overflow:hidden;
}

.preview-thumb img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}

.preview-play{
  position:absolute;
  left:50%;
  top:50%;
  transform:translate(-50%, -50%);
  width:58px;
  height:58px;
  border-radius:50%;
  border:0;
  background:rgba(255,255,255,.88);
  color:#111827;
  display:grid;
  place-items:center;
  font-size:28px;
  padding-left:4px;
  transition:transform .2s ease, background .2s ease;
}

.preview-play:hover{
  transform:translate(-50%, -50%) scale(1.08);
  background:#fff;
}


/* GOLPO CANVAS PREVIEW MODAL */
.canvas-preview-modal .modal-dialog{
  max-width:1160px;
}

.canvas-preview-modal .modal-content{
  border:0;
  border-radius:10px;
  overflow:hidden;
  background:#f8fafc;
}

.canvas-preview-modal .modal-header{
  height:64px;
  background:#fff;
  border-bottom:1px solid #dbe3ee;
  padding:0 24px;
}

.canvas-preview-modal .modal-title{
  color:#111827;
  font-size:18px;
  font-weight:700;
}

.canvas-preview-body{
  max-height:72vh;
  overflow-y:auto;
  padding:28px 24px 0;
}

.canvas-section-title{
  color:#64748b;
  font-size:15px;
  font-weight:700;
  letter-spacing:.06em;
  text-transform:uppercase;
  margin-bottom:18px;
}

.canvas-preview-grid{
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:24px;
}

.canvas-preview-card{
  border-radius:10px;
  background:#fff;
  overflow:hidden;
  box-shadow:0 1px 0 rgba(15,23,42,.04);
}

.canvas-preview-title{
  min-height:46px;
  display:flex;
  align-items:center;
  justify-content:center;
  color:#334155;
  font-size:16px;
  font-weight:700;
  text-align:center;
  padding:0 12px;
}

.canvas-thumb{
  position:relative;
  height:195px;
  background:#111827;
  overflow:hidden;
}

.canvas-thumb img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}

.canvas-play{
  position:absolute;
  left:50%;
  top:50%;
  transform:translate(-50%, -50%);
  width:58px;
  height:58px;
  border-radius:50%;
  border:0;
  background:rgba(255,255,255,.88);
  color:#111827;
  display:grid;
  place-items:center;
  font-size:28px;
  padding-left:4px;
  transition:transform .2s ease, background .2s ease;
}

.canvas-play:hover{
  transform:translate(-50%, -50%) scale(1.08);
  background:#fff;
}

.canvas-preview-footer{
  position:sticky;
  bottom:0;
  background:#fff;
  border-top:1px solid #dbe3ee;
  padding:14px 0 12px;
  text-align:center;
  margin:24px -24px 0;
}

.view-more-btn{
  height:38px;
  padding:0 22px;
  border-radius:8px;
  background:#eef2ff;
  color:#4f46e5;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:9px;
  font-size:15px;
  font-weight:850;
}

.view-more-btn:hover{
  color:#4f46e5;
  background:#e0e7ff;
}

/* USER MEDIA INFO MODAL */
.user-media-info-modal .modal-dialog{
  max-width:860px;
}

.user-media-info-modal .modal-content{
  border:0;
  border-radius:14px;
  overflow:hidden;
  background:#f8fafc;
}

.user-media-info-modal .modal-header{
  min-height:82px;
  background:#fff;
  border-bottom:1px solid #e5ebf3;
  padding:0 24px;
}

.umi-title-wrap{
  display:flex;
  align-items:center;
  gap:16px;
}

.umi-icon{
  width:48px;
  height:48px;
  border-radius:10px;
  background:#f3e8ff;
  color:#a855f7;
  display:grid;
  place-items:center;
  font-size:24px;
  flex:0 0 auto;
}

.umi-title-text h5{
  color:#111827;
  font-size:24px;
  font-weight:500;
  letter-spacing:-.03em;
  margin:0 0 4px;
}

.umi-title-text p{
  color:#475569;
  font-size:15px;
  margin:0;
}

.user-media-info-modal .btn-close{
  width:40px;
  height:40px;
  border-radius:10px;
  background-color:#f1f5f9;
  box-shadow:none;
}

.umi-body{
  max-height:78vh;
  overflow-y:auto;
  padding:24px;
}

.umi-card{
  border:1px solid #dbe3ee;
  border-radius:10px;
  background:#fff;
  padding:24px;
  margin-bottom:22px;
}

.umi-card h3{
  color:#020617;
  font-size:22px;
  line-height:1.25;
  font-weight:500;
  letter-spacing:-.02em;
  margin:0 0 18px;
}

.umi-card p{
  color:#1f2937;
  font-size:15px;
  font-size:400;
  line-height:1.58;
  margin:0 0 20px;
}

.umi-card p:last-child{
  margin-bottom:0;
}

.umi-card h4{
  color:#020617;
  font-size:20px;
  line-height:1.25;
  font-weight:500;
  margin:24px 0 16px;
}

.umi-list{
  list-style:none;
  padding:0;
  margin:0 0 24px;
}

.umi-list:last-child{
  margin-bottom:0;
}

.umi-list li{
  position:relative;
  color:#1f2937;
  font-size:15.5px;
  line-height:1.45;
  margin-bottom:12px;
  padding-left:24px;
}

.umi-list li::before{
  content:"";
  width:8px;
  height:8px;
  border-radius:50%;
  background:#dfa0df;
  position:absolute;
  left:0;
  top:.55em;
}

.umi-video-card{
  border:1px solid #dbe3ee;
  border-radius:10px;
  background:#fff;
  padding:20px;
  margin-bottom:22px;
}

.umi-video-card h3{
  color:#020617;
  font-size:19px;
  font-weight:500;
  margin:0 0 14px;
}

.umi-video{
  position:relative;
  border-radius:5px;
  overflow:hidden;
  background:#000;
  aspect-ratio:16 / 9;
}

.umi-video img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}

.umi-play{
  position:absolute;
  left:50%;
  top:50%;
  transform:translate(-50%, -50%);
  width:68px;
  height:48px;
  border-radius:12px;
  border:0;
  background:#ff0000;
  color:#fff;
  display:grid;
  place-items:center;
  font-size:30px;
  padding-left:4px;
}

.umi-youtube-btn{
  margin-top:14px;
  height:36px;
  padding:0 16px;
  border-radius:7px;
  background:#dc2626;
  color:#fff;
  display:inline-flex;
  align-items:center;
  gap:8px;
  font-size:14px;
  font-weight:700;
}

.umi-youtube-btn:hover{
  color:#fff;
  background:#b91c1c;
}

.umi-upgrade{
  border:1px solid #f0d5ff;
  border-radius:10px;
  background:#fff7ff;
  padding:20px;
}

.umi-upgrade h3{
  color:#111827;
  font-size:18px;
  font-weight:500;
  margin:0 0 12px;
}

.umi-upgrade p{
  color:#334155;
  font-size:15px;
  line-height:1.5;
  margin:0 0 18px;
}

.umi-upgrade-btn{
  height:38px;
  padding:0 22px;
  border:0;
  border-radius:7px;
  background:linear-gradient(90deg,#9333ea,#d026c9);
  color:#fff;
  display:inline-flex;
  align-items:center;
  font-size:14px;
  font-weight:700;
}

.umi-upgrade-btn:hover{
  color:#fff;
}





/* COMMON ISSUES OFFCANVAS */
.common-issues-canvas{
  width:520px !important;
  background:#f8fafc;
  border-left:1px solid #dbe3ee;
}

.common-issues-canvas .offcanvas-header{
  min-height:94px;
  background:#fff7ff;
  border-bottom:1px solid #e5ebf3;
  padding:0 24px;
}

.common-issues-title{
  display:flex;
  align-items:center;
  gap:18px;
}

.common-issues-icon{
  font-size:32px;
}

.common-issues-title h5{
  color:#111827;
  font-size:25px;
  font-weight:950;
  margin:0;
}

.common-issues-canvas .btn-close{
  width:38px;
  height:38px;
  border-radius:10px;
  background-color:#f8fafc;
  box-shadow:none;
}

.common-issues-body{
  padding:24px;
  overflow-y:auto;
}

.issue-card{
  background:#fff;
  border:1px solid #dbe3ee;
  border-radius:12px;
  padding:20px;
  margin-bottom:18px;
  box-shadow:0 4px 12px rgba(15,23,42,.04);
}

.issue-card h6{
  color:#111827;
  font-size:19px;
  font-weight:950;
  margin-bottom:12px;
  display:flex;
  align-items:center;
  gap:12px;
}

.issue-card p{
  color:#475569;
  font-size:15px;
  line-height:1.55;
  margin-bottom:10px;
}

.issue-card p:last-child{
  margin-bottom:0;
}

.issue-card .fix-text{
  color:#059669;
  font-weight:650;
}

.issue-code{
  background:#f1f5f9;
  border:1px solid #cbd5e1;
  border-radius:8px;
  padding:14px;
  color:#334155;
  font-size:13px;
  line-height:1.6;
  font-family:"Courier New", monospace;
  margin-top:12px;
}

.issue-purple{
  background:#fbf7ff;
  border-color:#ead5ff;
}

.issue-blue{
  background:#f0fdff;
  border-color:#bae6fd;
}

.issue-yellow{
  background:#fffbeb;
  border-color:#fde68a;
}


/* VOICE CUSTOMIZATION MODAL */
.voice-custom-modal .modal-dialog{
  max-width:860px;
}

.voice-custom-modal .modal-content{
  border:0;
  border-radius:14px;
  overflow:hidden;
  background:#f8fafc;
}

.voice-custom-modal .modal-header{
  min-height:82px;
  background:#fff;
  border-bottom:1px solid #e5ebf3;
  padding:0 24px;
}

.voice-title-wrap{
  display:flex;
  align-items:center;
  gap:16px;
}

.voice-icon{
  width:48px;
  height:48px;
  border-radius:10px;
  background:#f3e8ff;
  color:#6b7280;
  display:grid;
  place-items:center;
  font-size:24px;
  flex:0 0 auto;
}

.voice-title-text h5{
  color:#111827;
  font-size:25px;
  font-weight:700;
  letter-spacing:-.03em;
  margin:0 0 4px;
}

.voice-title-text p{
  color:#475569;
  font-size:15px;
  margin:0;
}

.voice-custom-modal .btn-close{
  width:40px;
  height:40px;
  border-radius:10px;
  background-color:#f1f5f9;
  box-shadow:none;
}

.voice-body{
  max-height:78vh;
  overflow-y:auto;
  padding:24px;
}

.voice-card{
  border:1px solid #dbe3ee;
  border-radius:10px;
  background:#fff;
  padding:24px;
  margin-bottom:24px;
}

.voice-card h3{
  color:#020617;
  font-size:30px;
  line-height:1.25;
  font-weight:700;
  letter-spacing:-.02em;
  margin:0 0 18px;
}

.voice-card p{
  color:#1f2937;
  font-size:15.5px;
  line-height:1.58;
  margin:0 0 20px;
}

.voice-list{
  list-style:none;
  padding:0;
  margin:0;
}

.voice-list li{
  position:relative;
  color:#334155;
  font-size:17px;
  line-height:1.45;
  margin-bottom:12px;
  padding-left:24px;
}

.voice-list li::before{
  content:"";
  width:8px;
  height:8px;
  border-radius:50%;
  background:#d946ef;
  position:absolute;
  left:0;
  top:.58em;
}

.voice-video-card{
  border:1px solid #dbe3ee;
  border-radius:10px;
  background:#fff;
  padding:24px;
  margin-bottom:24px;
}

.voice-video-card h3{
  color:#020617;
  font-size:22px;
  line-height:1.25;
  font-weight:700;
  margin:0 0 18px;
}

.voice-video{
  position:relative;
  border-radius:7px;
  overflow:hidden;
  background:#000;
  aspect-ratio:16 / 9;
}

.voice-video img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}

.voice-play{
  position:absolute;
  left:50%;
  top:50%;
  transform:translate(-50%, -50%);
  width:68px;
  height:48px;
  border-radius:12px;
  border:0;
  background:#ff0000;
  color:#fff;
  display:grid;
  place-items:center;
  font-size:30px;
  padding-left:4px;
}

.voice-youtube-btn{
  margin-top:16px;
  height:38px;
  padding:0 16px;
  border-radius:7px;
  background:#dc2626;
  color:#fff;
  display:inline-flex;
  align-items:center;
  gap:8px;
  font-size:14px;
  font-weight:700;
}

.voice-youtube-btn:hover{
  color:#fff;
  background:#b91c1c;
}

.voice-upgrade{
  border:1px solid #f0d5ff;
  border-radius:10px;
  background:#fff7ff;
  padding:24px;
}

.voice-upgrade h3{
  color:#111827;
  font-size:18px;
  font-weight:700;
  margin:0 0 14px;
}

.voice-upgrade p{
  color:#334155;
  font-size:16px;
  line-height:1.5;
  margin:0 0 18px;
}

.voice-upgrade-btn{
  height:40px;
  padding:0 24px;
  border:0;
  border-radius:7px;
  background:linear-gradient(90deg,#9333ea,#d026c9);
  color:#fff;
  display:inline-flex;
  align-items:center;
  font-size:15px;
  font-weight:700;
  box-shadow:0 10px 22px rgba(147,51,234,.22);
}

.voice-upgrade-btn:hover{
  color:#fff;
}


/* INSTRUCTIONS DROPDOWN PANEL */
.instructions-wrap{
  position:relative;
}

.instructions-panel{
  position:absolute;
  /* top:42px; */
  left:0;
  width:320px;
  max-height:calc(100vh - 160px);
  overflow:hidden;
  background:#f8fbff;
  border:1px solid #dbe3ee;
  border-radius:0 0 18px 18px;
  box-shadow:0 24px 70px rgba(15,23,42,.14);
  padding:16px;
  display:none;
  z-index:9999;
}

.instructions-panel.show{
  display:block;
}

.instructions-intro-card{
  background:#fff;
  border:1px solid #dbe3ee;
  border-radius:14px;
  padding:18px;
  box-shadow:0 8px 18px rgba(15,23,42,.05);
  margin-bottom:16px;
}

.instructions-eyebrow{
  color:#64748b;
  font-size:12px;
  letter-spacing:.35em;
  font-weight:700;
  text-transform:uppercase;
  margin-bottom:8px;
}

.instructions-intro-card h4{
  color:#111827;
  font-size:16px;
  font-weight:700;
  margin:0 0 8px;
}

.instructions-intro-card p{
  color:#475569;
  font-size:14px;
  line-height:1.45;
  margin:0;
}

.instructions-scroll{
  max-height:440px;
  overflow-y:auto;
  padding-right:8px;
}

.instructions-scroll::-webkit-scrollbar{
  width:8px;
}

.instructions-scroll::-webkit-scrollbar-track{
  background:transparent;
}

.instructions-scroll::-webkit-scrollbar-thumb{
  background:#8b8b8b;
  border-radius:999px;
}

.plan-drop{
  background:#fff;
  border:1px solid #dbe3ee;
  border-radius:14px;
  margin-bottom:12px;
  overflow:hidden;
}

.plan-drop-head{
  width:100%;
  min-height:76px;
  border:0;
  background:#fff;
  padding:14px 14px;
  display:flex;
  align-items:center;
  gap:12px;
  text-align:left;
}

.plan-icon{
  width:34px;
  height:34px;
  border-radius:50%;
  background:#fdf2ff;
  color:#d946ef;
  display:grid;
  place-items:center;
  flex:0 0 auto;
  font-size:18px;
}

.plan-title{
  color:#111827;
  font-size:16px;
  font-weight:700;
  line-height:1.15;
}

.plan-subtitle{
  color:#475569;
  font-size:13px;
  line-height:1.25;
  margin-top:3px;
}

.plan-arrow{
  margin-left:auto;
  width:28px;
  height:28px;
  border:1px solid #cbd5e1;
  border-radius:50%;
  background:#f8fafc;
  color:#475569;
  display:grid;
  place-items:center;
  font-size:13px;
  transition:.2s ease;
}

.plan-drop.open .plan-arrow{
  transform:rotate(90deg);
}

.plan-drop-body{
  display:none;
  padding:0 14px 14px;
  background:#fff;
}

.plan-drop.open .plan-drop-body{
  display:block;
}

.instruction-item{
  width:100%;
  min-height:88px;
  border:1px solid #dbe3ee;
  border-radius:14px;
  background:#fff;
  box-shadow:0 8px 18px rgba(15,23,42,.04);
  padding:14px;
  margin-bottom:12px;
  display:flex;
  align-items:center;
  gap:13px;
  text-align:left;
  cursor:pointer;
  transition:.2s ease;
}

.instruction-item:hover{
  transform:translateY(-2px);
  box-shadow:0 14px 28px rgba(15,23,42,.10);
  border-color:#b7c7ff;
}

.instruction-item-icon{
  width:32px;
  height:32px;
  border-radius:50%;
  background:#f8f1ff;
  display:grid;
  place-items:center;
  font-size:19px;
  flex:0 0 auto;
}

.instruction-item-text h5{
  color:#111827;
  font-size:16px;
  font-weight:700;
  margin:0 0 6px;
}

.instruction-item-text p{
  color:#475569;
  font-size:13.5px;
  line-height:1.3;
  margin:0;
}

.instruction-item-chevron{
  margin-left:auto;
  color:#94a3b8;
}


        /* Container utama */
        .prompt-container {
            background: white;
            border: 1px solid #dee2e6;
            border-radius: 16px;
            padding: 15px;
            /* max-width: 700px; */
            margin: 0 auto;
            position: relative;
            transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
        }

        /* Efek Fokus Default Bootstrap pada Container */
        .prompt-container:focus-within {
            border-color: #86b7fe;
            outline: 0;
            box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
        }

        .prompt-textarea {
            border: none;
            width: 100%;
            resize: none;
            outline: none;
            margin-bottom: 10px;
            background: transparent;
        }

        /* Preview Area */
        .preview-wrapper {
          display: flex;
          flex-direction: row;
          flex-wrap: wrap;
          gap: 12px;
          margin-top: 15px;
          /* max-width: 700px; */
          margin-left: auto;
          margin-right: auto;
          margin-bottom: 50px;
        }
        .creator-demo-section .preview-wrapper {
          max-width: none;
          align-items: end;
        }
        .creator-demo-section textarea.form-control {
          min-height: calc(5em + .75rem + calc(var(--bs-border-width) * 2));
        }
        .creator-demo-section #voiceSelected,
        .creator-demo-section .style-toggle,
        .creator-demo-section textarea.form-control .btn-attach {
          color: #000;
          font-weight: 400;
        }

        
        .image-container, .doc-tag-wrapper {
            position: relative;
        }

        .image-container { width: 64px; height: 64px; }
        .img-preview {
            width: 100%; height: 100%;
            object-fit: cover; border-radius: 10px;
            border: 1.5px solid #22c55e;
        }

        
        .check-icon {
            position: absolute; bottom: -4px; right: -4px;
            background: #22c55e; color: white; border-radius: 50%;
            width: 18px; height: 18px; font-size: 11px;
            display: flex; align-items: center; justify-content: center;
            border: 2px solid white;
        }

        
        .delete-btn {
            position: absolute; top: -8px; right: -8px;
            background: #ef4444; color: white; border-radius: 50%;
            width: 20px; height: 20px; font-size: 12px;
            display: none; align-items: center; justify-content: center;
            border: 2px solid white; cursor: pointer; z-index: 10;
        }

        .image-container:hover .delete-btn, .doc-tag-wrapper:hover .delete-btn {
            display: flex;
        }

        .doc-tag {
            background: #f3f0ff; border: 1px solid #e9e3ff;
            border-radius: 20px; padding: 4px 14px;
            font-size: 0.85rem; color: #4b5563;
        }

        .btn-attach {
            background: white; border: 1px solid #dee2e6;
            border-radius: 8px; padding: 5px 15px;
            font-size: 0.9rem; color: #000;
        }

        .status-icons { position: absolute; right: 15px; bottom: 15px; }
        .hidden-input { display: none; }



.btn-sign-out {
    color: #374151;
    transition-duration: .3s;
    font-weight: 600;
    font-size: 1rem;
    line-height: 1.5rem;
    padding: 10px 20px;
    background: #f3f4f6;
    border-color: #d1d5db;
    border-width: 1px;
    border-radius: .5rem;
}

.btn-sign-out:hover{
  background-color: #e5e7eb;
  border-width: 1px;
  border-radius: .5rem;
  border-color: #d1d5db;
}


.creator-demo-section{
  background:#f8f8f3;
}

.letter-space{
  letter-spacing:.18em;
}

.youtube-showcase-section .title {
  color: #fff;
}

#voiceSelected {
  font-size: 15px;
}

.title {
  color: #1A1A1A;
  letter-spacing: -.03em;
  line-height: 1.1;
  font-size: 42px;
  font-weight: 400;
}

.homepage .title {
  font-weight: 500;
}
.sub-title {
  color: #858585;
}
.sub-heading {
  color: #545454;
  font-size: 16px;
  margin-top: 12px;
}
/* p {
  color: #545454;
  font-size: 16px;
  line-height: 1.7;
} */
.demo-image-card img{
  height:410px;
  object-fit:cover;
}

.prompt-demo-box{
  background:#e9e9e9;
}

.prompt-demo-textarea{
  min-height:125px;
  resize:none;
  font-size:18px;
  color:#475569;
}

.prompt-demo-textarea::placeholder{
  color:#9ca3af;
}

.style-toggle{
  color:#6b7280;
  border-radius:8px !important;
  padding-inline:14px;
}

.style-toggle.active{
  background:#111827;
  color:#fff;
}

/*  A YouTube channel created with Golpo */
.youtube-showcase-section{
  background:#121212;
  overflow:hidden;
}


.youtube-video-card {
  height: 600px;
}


/* end */


.workflow-section{
  background:#fafaf7;
}

.letter-space{
  letter-spacing:.18em;
}



.border-secondary-50 {
  border: #e6e6e6
}

.workflow-prompt-text{
  min-height:92px;
  color:#1f2937;
  font-size:16px;
  line-height:1.55;
  background:#fff;
}

.workflow-style-toggle{
  color:#6b7280;
  border-radius:8px !important;
  padding-inline:16px;
}

.workflow-style-toggle.active{
  background:#111;
  color:#fff;
}

.workflow-generate-btn{
  height:44px;
  border-radius:8px;
  background:#6254ee;
  color:#fff;
}


/* end */
.custom-detail-section{
  background:#fff;
  border-bottom:1px solid #e5e7eb;
}

.letter-space{
  letter-spacing:.18em;
}

.language-text,
.custom-detail-text{
  max-width:520px;
  line-height:1.6;
}

.script-card{
  background:#f8f8f2;
  border-color:#d9d9d0 !important;
}

.script-inner{
  border-color:#d9d9d0 !important;
}

.script-label{
  letter-spacing:.12em;
  font-size:11px;
}

.script-inner p {
  background-color: #fff;
    border: 1px solid rgba(220, 220, 220, 1);
    border-radius: 8px;
    padding: 16px;
    font-size: 13px;
    color: #545454;
    line-height: 1.7;
    font-family: monospace;
}


.workflow-generate-btn {
  font-size: 14px;
  font-weight: 500;
}

.img-upload img {
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid rgba(220, 220, 220, 1);
  width: 468px;
}

.languages-section{
  background:#fff;
}

.language-box{
  background:#f9f9f6;
  border-color:#ddd !important;
}

.language-box .btn{
  height:42px;
  font-size:12px;
}
.bg_dark {
  background-color: #1A1A1A;
}
.color_secodry-90 {
  color: #858585;
  font-size: 18px;
}
.border-top-40-white {
  border-top: 1px solid #ffffff12;
}

.comparison-card{
  background:#fff;
  border:1px solid #e6e6e2;
  border-radius:20px;
  padding:42px;
  box-shadow:0 2px 10px rgba(0,0,0,.03);
}

.comparison-title{
  font-size:22px;
  font-weight:700;
  color:#111827;
}

.comparison-list li{
  display:flex;
  align-items:flex-start;
  gap:14px;
  margin-bottom:24px;

  font-size:17px;
  line-height:1.6;
  color:#374151;
}

.comparison-list li:last-child{
  margin-bottom:0;
}

.comparison-icon{
  width:28px;
  height:28px;
  border-radius:50%;

  display:flex;
  align-items:center;
  justify-content:center;

  flex-shrink:0;

  font-size:14px;
  margin-top:2px;
}

.comparison-icon.danger{
  background:#fff1f2;
  color:#ef4444;
}

.comparison-icon.success{
  background:#ecfdf3;
  color:#16a34a;
}


.common-questions-section{
  background:#fafaf7;
}


.common-title{
  font-size:34px;
}

.question-title{
  font-size:18px;
}


.related-section{
  background:#fafaf7;
}

.section-title,
.cta-title{
  font-weight:500;
  color:#111;
}

.section-title{
  font-size:42px;
}

.resource-title{
  font-size:28px;
  font-weight:600;
  line-height:1.15;
  color:#0f172a;
}

.related-section .card{
  transition:.25s ease;
}

.related-section .card:hover{
  transform:translateY(-4px);
}

.cta-section{
  background:#0f0f12;
}

.cta-title{
  color:#fff;
  font-size:42px;
}

.cta-small{
  color:#a1a1aa;
  font-size:18px;
}
/* Custom styling untuk menyesuaikan dengan gambar Golpo */
.credits-badge {
  background: linear-gradient(90deg, #f1b428, #e0a107);
  font-weight: 600;
  font-size: 14px;
}

.btn-upgrade {
  background: linear-gradient(90deg, #8e2de2, #4a00e0);
  color: white;
  border: none;
  border-radius: 8px;
}


.navbar-collapse {
  background-color: white;
  padding: 15px;
  border-radius: 10px;
}


.btn-credit {
    background: var(--bg-credit);
    color: #4b3d00;
    font-size: 14px;
    font-weight: 500;
    border-radius: 20px;
    padding: 5px 10px;
    border: none;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.nav-item-custom {
  border-radius: 8px;
  text-align: center;
  font-weight: 600;
  padding: 10px 20px;
  color: white !important;
  text-decoration: none;
  transition: opacity 0.2s;
  width: 100%;
}

.nav-item-custom:hover { opacity: 0.9; color: white; }
.bg-voice { background-color: var(--bg-voice); }
.bg-library { background-color: var(--bg-library); }
.bg-upgrade { background-color: var(--bg-upgrade); }

/* Avatar Styling */
.avatar-img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
}

/* Dropdown custom */
.playground-header .dropdown-toggle::after { display: none; } 
        
.playground-header .dropdown-menu {
  right: 0;
  left: auto;
  min-width: 180px;
}

.logo-img-playground {
  width: 170px;
}

/* pop up canvas */
.common-issues-canvas{
  top: 88px !important;
  height: calc(100vh - 88px) !important;
}
/* end */




/* VOICE PREVIEW MODAL */
.voice-preview-modal .modal-dialog{
  /* max-width:1120px; */
}

.voice-preview-modal .modal-content{
  border:0;
  border-radius:14px;
  overflow:hidden;
  background:#f8fafc;
  box-shadow:0 30px 90px rgba(15,23,42,.22);
}

.voice-preview-modal .modal-header{
  min-height:110px;
  background:#fff;
  border-bottom:1px solid #e5ebf3;
  padding:0 24px;
}

.voice-preview-title h5{
  color:#111827;
  font-size:26px;
  font-weight:950;
  margin:0 0 6px;
}

.voice-preview-title p{
  color:#475569;
  font-size:17px;
  margin:0;
}

.voice-preview-modal .btn-close{
  width:40px;
  height:40px;
  border-radius:9px;
  background-color:#f1f5f9;
  box-shadow:none;
}

.voice-preview-body{
  padding:24px;
}

.voice-grid{
  display:grid;
  grid-template-columns:repeat(2, 1fr);
  gap:16px;
}

.voice-preview-card{
  border:1px solid #dbe3ee;
  border-radius:10px;
  background:#fff;
  padding:18px 16px 16px;
  box-shadow:0 4px 10px rgba(15,23,42,.04);
}

.voice-card-top{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:14px;
  margin-bottom:14px;
}

.voice-card-top h4{
  color:#111827;
  font-size:17px;
  font-weight:950;
  margin:0;
}

.voice-play-btn{
  width:42px;
  height:42px;
  border:0;
  border-radius:50%;
  background:#5546e8;
  color:#fff;
  display:grid;
  place-items:center;
  font-size:22px;
  padding-left:3px;
}

.voice-track{
  height:7px;
  border-radius:999px;
  background:#e2e8f0;
  overflow:hidden;
  margin-bottom:8px;
}

.voice-track span{
  display:block;
  width:0%;
  height:100%;
  background:#5546e8;
  border-radius:999px;
}

.voice-time{
  display:flex;
  justify-content:space-between;
  color:#64748b;
  font-size:13px;
}

.voice-note{
  text-align:center;
  color:#475569;
  font-size:15px;
  margin:26px 0 0;
}

/* PACING PREVIEW MODAL */
.pacing-preview-modal .modal-dialog{
  /* max-width:760px; */
}

.pacing-preview-modal .modal-content{
  border:0;
  border-radius:12px;
  overflow:hidden;
  background:#f8fafc;
  box-shadow:0 30px 90px rgba(15,23,42,.22);
}

.pacing-preview-modal .modal-header{
  min-height:64px;
  background:#fff;
  border-bottom:1px solid #e5ebf3;
  padding:0 24px;
}

.pacing-preview-modal .modal-title{
  color:#111827;
  font-size:18px;
  font-weight:950;
}

.pacing-preview-modal .btn-close{
  width:38px;
  height:38px;
  border-radius:9px;
  background-color:#f1f5f9;
  box-shadow:none;
}

.pacing-preview-body{
  padding:24px;
}

.pacing-grid{
  display:grid;
  grid-template-columns:repeat(2, 1fr);
  gap:24px;
}

.pacing-card{
  background:#fff;
  border-radius:10px;
  overflow:hidden;
}

.pacing-card-title{
  height:46px;
  display:flex;
  align-items:center;
  justify-content:center;
  color:#374151;
  font-size:16px;
  font-weight:950;
}

.pacing-thumb{
  position:relative;
  height:195px;
  overflow:hidden;
  background:#ddd;
}

.pacing-thumb img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}

.pacing-play{
  position:absolute;
  left:50%;
  top:50%;
  transform:translate(-50%, -50%);
  width:58px;
  height:58px;
  border:0;
  border-radius:50%;
  background:rgba(255,255,255,.88);
  color:#111827;
  display:grid;
  place-items:center;
  font-size:28px;
  padding-left:4px;
}

.pacing-play:hover{
  background:#fff;
  transform:translate(-50%, -50%) scale(1.06);
}




/* VIDEO INSTRUCTIONS MODAL */
.video-instruction-modal .modal-dialog{
  /* max-width:760px; */
}

.video-instruction-modal .modal-content{
  border:0;
  border-radius:14px;
  overflow:hidden;
  background:#f8fafc;
}

.video-instruction-modal .modal-header{
  min-height:82px;
  background:#fff;
  border-bottom:1px solid #e5ebf3;
  padding:0 24px;
}

.video-instruction-title{
  display:flex;
  align-items:center;
  gap:14px;
}

.video-instruction-icon{
  width:38px;
  height:38px;
  border-radius:9px;
  background:#f3e8ff;
  color:#a855f7;
  display:grid;
  place-items:center;
  font-size:20px;
}

.video-instruction-title h5{
  color:#111827;
  font-size:21px;
  font-weight:950;
  margin:0;
}

.video-instruction-title p{
  color:#64748b;
  font-size:13px;
  margin:2px 0 0;
}

.video-instruction-modal .btn-close{
  width:38px;
  height:38px;
  border-radius:9px;
  background-color:#f1f5f9;
  box-shadow:none;
}

.video-instruction-body{
  max-height:78vh;
  overflow-y:auto;
  padding:22px;
}

.video-info-card,
.video-tutorial-card{
  border:1px solid #dbe3ee;
  border-radius:10px;
  background:#fff;
  padding:22px;
  margin-bottom:22px;
}

.video-info-card h3,
.video-tutorial-card h3{
  color:#111827;
  font-size:18px;
  font-weight:950;
  margin:0 0 16px;
}

.video-info-card p{
  color:#475569;
  font-size:14px;
  line-height:1.55;
  margin-bottom:16px;
}

.video-info-list{
  list-style:none;
  padding:0;
  margin:0;
}

.video-info-list li{
  position:relative;
  color:#475569;
  font-size:14px;
  line-height:1.45;
  padding-left:22px;
  margin-bottom:10px;
}

.video-info-list li::before{
  content:"";
  width:7px;
  height:7px;
  border-radius:50%;
  background:#d946ef;
  position:absolute;
  left:0;
  top:.55em;
}

.video-tutorial-thumb{
  position:relative;
  overflow:hidden;
  border-radius:6px;
  background:#111827;
  aspect-ratio:16 / 9;
}

.video-tutorial-thumb img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}

.video-youtube-play{
  position:absolute;
  left:50%;
  top:50%;
  transform:translate(-50%, -50%);
  width:68px;
  height:48px;
  border:0;
  border-radius:12px;
  background:#ff0000;
  color:#fff;
  display:grid;
  place-items:center;
  font-size:30px;
  padding-left:4px;
}

.video-watch-youtube{
  margin-top:14px;
  height:36px;
  padding:0 16px;
  border-radius:7px;
  background:#dc2626;
  color:#fff;
  display:inline-flex;
  align-items:center;
  gap:8px;
  font-size:14px;
  font-weight:900;
}

.video-watch-youtube:hover{
  color:#fff;
  background:#b91c1c;
}

.video-upgrade-card{
  border:1px solid #f0d5ff;
  border-radius:10px;
  background:#fff7ff;
  padding:22px;
}

.video-upgrade-card h3{
  color:#111827;
  font-size:17px;
  font-weight:950;
  margin:0 0 10px;
}

.video-upgrade-card p{
  color:#475569;
  font-size:14px;
  margin:0 0 16px;
}

.video-upgrade-btn{
  height:38px;
  padding:0 22px;
  border:0;
  border-radius:7px;
  background:linear-gradient(90deg,#9333ea,#d026c9);
  color:#fff;
  font-size:14px;
  font-weight:900;
  display:inline-flex;
  align-items:center;
}

.video-upgrade-btn:hover{
  color:#fff;
}

.homepage .prompt-demo-textarea {
  height: 100px;
}
.homepage .demo-image-card {
  height: 313px;
}
.homepage .demo-image-card video {
  height: 100%;
}
.workflow-section .btn-secondary {
    font-size: 14px;
    padding: 8px 12px;
}

.features-toolkit-section{
  background:#fff;
}

.features-toolkit-title{
  color:#081226;
  font-size:42px;
  line-height:1.05;
  font-weight:500;
  letter-spacing:-1.5px;
}

.toolkit-card{
  border:1px solid #e5e7eb;
  border-radius:14px;
  padding:28px;
  background:#fff;
  display:flex;
  flex-direction:column;
  transition:.2s ease;
}

.toolkit-card:hover{
  transform:translateY(-3px);
  box-shadow:0 16px 36px rgba(15,23,42,.08);
}

.toolkit-card h3{
  color:#081226;
  font-size:21px;
  line-height:1.35;
  font-weight:500;
  margin-bottom:18px;
}

.toolkit-card p{
  color:#4b5563;
  font-size:15px;
  line-height:1.65;
  margin-bottom:26px;
}

.toolkit-card p a{
  color:#2563eb;
  text-decoration:none;
}

.toolkit-card p a:hover{
  text-decoration:underline;
}

.toolkit-media{
  margin-top:auto;
  border:1px solid #d9d9d9;
  border-radius:7px;
  overflow:hidden;
  background:#f7f7f3;
  height:150px;
}

.toolkit-media img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}

.dark-media{
  background:#000;
}


.toolkit-media{
  cursor:pointer;
}

.toolkit-media video,
.toolkit-media img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}

.media-preview-modal .modal-dialog{
  max-width:1100px;
}

.media-preview-modal .modal-content{
  position:relative;
}

.media-preview-box{
  width:100%;
  max-height:82vh;
  display:flex;
  align-items:center;
  justify-content:center;
}

.media-preview-box img,
.media-preview-box video{
  max-width:100%;
  max-height:82vh;
  border-radius:8px;
  background:#fff;
  object-fit:contain;
}

.media-preview-close{
  position:fixed;
  top:22px;
  right:28px;
  width:44px;
  height:44px;
  border:0;
  border-radius:50%;
  background:rgba(0,0,0,.55);
  color:#fff;
  z-index:1060;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:22px;
}

.media-preview-close:hover{
  background:rgba(0,0,0,.8);
}

/* SOLUTIONS */
.solutions-section{
  background:#fff;
}

.solutions-title{
  color:#081226;
  font-size:42px;
  font-weight:500;
  letter-spacing:-1px;
  margin:0;
}


.solution-content h3{
  color: #081226;
  font-size: 28px;
  line-height: 1.1;
  font-weight: 600;
  margin-bottom: 22px;
}

.solution-content p{
  color:#475569;
  font-size:15px;
  font-weight: 400;
  line-height:1.75;
  margin-bottom:18px;
}

.solution-btn{
  padding: 10px 16px;
  border-radius: 6px;
  background: #0f172a;
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  font-weight: 400;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: .2s ease;
}

.solution-btn:hover{
  background:#111827;
  color:#fff;
  transform:translateY(-2px);
}

/* SECTION */
.video-carousel-section{
  background:#fff;
  overflow:hidden;
}

.video-carousel-title{
  color:#081226;
  font-size:42px;
  line-height:1.05;
  font-weight:500;
  letter-spacing:-2px;
}

/* WRAPPER */
.video-slider-wrapper{
  position:relative;
}

/* SLIDER */
.video-slider{
  display:flex;
  gap:22px;
  overflow-x:auto;
  scroll-behavior:smooth;
  padding:10px 80px;
  scrollbar-width:none;
}

.video-slider::-webkit-scrollbar{
  display:none;
}

/* CARD */
.video-card{
  min-width:380px;
  width:380px;
  height:215px;
  border-radius:18px;
  overflow:hidden;
  position:relative;
  background:#f3f4f6;
  border:1px solid #e5e7eb;
  flex-shrink:0;
}

.video-card video{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}

/* PLAY */
.play-btn{
  width:52px;
  height:52px;
  border:none;
  border-radius:50%;
  background:rgba(255,255,255,.92);
  color:#111827;

  position:absolute;
  top:18px;
  left:18px;

  display:flex;
  align-items:center;
  justify-content:center;

  font-size:22px;

  transition:.2s ease;
}

.play-btn:hover{
  transform:scale(1.08);
}

/* NAV */
.video-nav{
  width:56px;
  height:56px;
  border:none;
  border-radius:50%;
  background:#fff;
  box-shadow:0 10px 30px rgba(0,0,0,.12);

  position:absolute;
  top:50%;
  transform:translateY(-50%);
  z-index:10;

  display:flex;
  align-items:center;
  justify-content:center;

  font-size:24px;
  color:#111827;

  transition:.2s ease;
}

.video-nav:hover{
  transform:translateY(-50%) scale(1.06);
}

.video-nav.prev{
  left:10px;
}

.video-nav.next{
  right:10px;
}


.faq-tabs-section{
  background:#fff;
}

.faq-main-title{
  color:#081226;
  font-size:40px;
  line-height:1.05;
  font-weight:500;
  letter-spacing:-2px;
}

.faq-tabs-nav .nav-link{
    border-radius: 999px;
    background: #f1f5f9;
    color: #081226;
    padding: 6px 13px;
    border: 0;
    font-size: 13px;
    font-weight: 400;
}

.faq-tabs-nav .nav-link.active{
  background:#081226;
  color:#fff;
}


.faq-accordion .accordion-item{
  border:0;
  border-top:1px solid #dbe3ee;
  border-radius:0;
}

.faq-accordion .accordion-item:last-child{
  border-bottom:1px solid #dbe3ee;
}

.faq-accordion .accordion-button{
  background:#fff;
  color:#081226;
  font-size:16px;
  font-weight:500;
  padding:24px 0;
  box-shadow:none;
}

.faq-accordion .accordion-button::after{
  background-image:none;
  content:"+";
  font-size:16px;
  font-weight:400;
  transform:none;
}

.faq-accordion .accordion-button:not(.collapsed)::after{
  content:"−";
}

.faq-accordion .accordion-body{
  padding:0 0 28px;
  color:#334155;
  font-size:16px;
  line-height:1.8;
}


.api-tier-section{
  background:#f8fafc;
}
.border-bottom {
  border-bottom: 1px solid #e2e8f0;
}
.api-title{
  color:#081226;
  font-size:40px;
  line-height:1.1;
  font-weight:500;
  letter-spacing:-1px;
}

.api-subtitle{
  color: #64748b;
  font-size: 16px;
  font-weight: 400;
}

.api-text{
  color: #64748b;
  font-size: 16px;
  font-weight: 400;
}

.api-small{
  color:#64748b;
  font-size:15px;
  line-height:1.6;
}

.api-link{
  color:#081226;
  font-weight:400;
  text-decoration:none;
}

.api-link:hover{
  color:#4f46e5;
}

.api-rate-table{
  border-top:1px solid #e5e7eb;
}

.api-rate-row{
  min-height:62px;
  border-bottom:1px solid #e5e7eb;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:20px;
}

.api-rate-row span{
  color: #64748b;
  font-weight: 300;
  font-size: 16px;
}

.api-rate-row strong{
  color:#111827;
  font-weight:400;
}

.api-note{
  color:#94a3b8;
  font-size:14px;
  margin-top:18px;
}

.api-code-card{
  min-height:285px;
  overflow:auto;
}

.api-code-card pre{
  color:#0f172a;
  font-size:14px;
  line-height:1.8;
}

.api-image-card{
  background:#e8e8e3;
}

.api-image-card img{
  object-fit:cover;
  display:block;
}
.btn-explore {
  background-color: #f1f5f9;
}

@media(max-width:767px){
.workflow-section .btn-secondary {
    font-size: 13px;
    padding: 8px !important;
    width: 100%;
}

  .api-rate-row{
    align-items:flex-start;
    flex-direction:column;
    justify-content:center;
    gap:6px;
  }
}


/* MOBILE */
@media(max-width:991px){



  .video-card{
    min-width:300px;
    width:300px;
    height:180px;
  }

  .video-slider{
    padding:10px 40px;
  }


  .solutions-title{
    font-size:30px;
  }

  .solution-content h3{
    font-size:24px;
  }

}
.site-header .navbar-nav .nav-link:hover {
  color: #fff;
  opacity: .8;
}
  .custom-detail-subtitle {
    font-size: 28px;
  }
  .btn_drak {
    transition-property: color, background-color, border-color, text-decoration-color, fill, stroke;
    transition-timing-function: cubic-bezier(.4, 0, .2, 1);
    color: #ffffff;
    font-size: 14px;
    font-weight: 400;
    padding: 7px 22px;
    background: #020617;
    border-radius: 20px;
    gap: 10px;
    position: relative;
    display: flex;
    align-items: center;
  }
  .btn_white {
    transition-property: color, background-color, border-color, text-decoration-color, fill, stroke;
    transition-timing-function: cubic-bezier(.4, 0, .2, 1);
    color: #ffffff;
    font-size: 14px;
    font-weight: 400;
    padding: 7px 22px;
    border-radius: 20px;
    background: #f3f4f6;
    color: #000;
  }

.header-video.page_youtube_channel .navbar-nav .nav-link {
    color: #020617;
    font-size: 15px;
    font-weight: 400;
}

.loginpage .btn-signup {
  background-color: var(--primary-black);
  color: white;
  border: none;
  padding: 14px;
  border-radius: 12px;
  font-weight: 600;
  width: 100%;
  margin-top: 15px;
  transition: opacity 0.3s;
}
.loginpage .btn-signup:hover {
  opacity: 0.85;
  color: white;
}

.loginpage .divider {
  display: flex;
  align-items: center;
  text-align: center;
  color: var(--text-muted);
  font-size: 0.85rem;
  margin: 25px 0;
}
.loginpage .divider::before, .loginpage .divider::after {
  content: '';
  flex: 1;
  border-bottom: 1px solid var(--border-color);
}
.loginpage .divider span {
  padding: 0 15px;
}
.loginpage .footer-text {
  margin-top: 30px;
  font-size: 0.9rem;
  color: var(--text-muted);
}
.loginpage .footer-text a {
  color: var(--primary-black);
  text-decoration: none;
  font-weight: 600;
}
.loginpage .terms-text {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 20px;
  line-height: 1.5;
}

.loginpage {
  padding-top: 130px;
  padding-bottom: 100px;
  background: #f8f8f3;
}

.login-container {
  background: linear-gradient(180deg,#fbfdff,#f8fafc);
  padding: 2rem;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  border: 1px solid #f9dede;
}
.loginpage .brand-logo {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.loginpage .subtitle {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 40px;
}
.loginpage .form-label {
  display: block;
  text-align: left;
  font-size: 0.9rem;
  font-weight: 500;
  margin-bottom: 8px;
}
.loginpage .input-group-custom {
  position: relative;
  margin-bottom: 20px;
}
.loginpage .form-control {
  background-color: var(--soft-gray);
  border: 1px solid #00000069;
  padding: 14px 18px;
  border-radius: 12px;
  font-size: 1rem;
  transition: all 0.2s ease;
}
.loginpage .form-control:focus {
  background-color: #fff;
  border-color: var(--primary-black);
  box-shadow: none;
}
.loginpage .password-toggle {
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-muted);
  cursor: pointer;
  z-index: 10;
}
.loginpage .btn-signin {
  background-color: var(--primary-black);
  color: white;
  border: none;
  padding: 14px;
  border-radius: 12px;
  font-weight: 600;
  width: 100%;
  margin-top: 10px;
  transition: opacity 0.3s;
}
.loginpage .btn-signin:hover {
  opacity: 0.7;
  color: white;
  background-color: var(--primary-black);
}
.loginpage .btn-social {
  background-color: #fff;
  border: 1px solid var(--border-color);
  padding: 12px;
  border-radius: 12px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-weight: 500;
  margin-bottom: 12px;
  transition: background-color 0.2s;
  transition: .5s;
}
.btn-social:hover {
  background-color: var(--primary-black);
  color: #fff;
}
.login-container h1  {
  font-size: 36px;
  font-weight: 500;
  margin-top: 30px;
  margin-bottom: 20px;
}
.loginpage .divider {
  display: flex;
  align-items: center;
  text-align: center;
  color: var(--text-muted);
  font-size: 0.85rem;
  margin: 25px 0;
}
.loginpage .divider::before, .divider::after {
  content: '';
  flex: 1;
  border-bottom: 1px solid var(--border-color);
}
.loginpage .divider span {
  padding: 0 15px;
}
.loginpage .footer-text {
  margin-top: 30px;
  font-size: 0.9rem;
  color: var(--text-muted);
}
.loginpage .btn_underline {
  color: var(--primary-black);
  text-decoration: none;
  font-weight: 600;
}
.loginpage .btn-reset:hover,
.loginpage .btn_underline:hover {
  text-decoration: underline;
}
.loginpage .extra-links {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 25px;
  font-size: 0.85rem;
}

.loginpage .back-to-login {
  margin-top: 30px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--text-muted);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.9rem;
  transition: color 0.2s;
}
.loginpage .back-to-login:hover {
  color: var(--primary-black);
  opacity: .8s;
}

.pricing {
  padding-top: 150px;
  padding-bottom: 100px;
}


.upgrade-section{
  padding-top: 200px;
  padding-bottom: 100px;
  background:#f8fafc;
}

.upgrade-section-content{
  background:#fff;
  border-radius:18px;
  border:1px solid #e2e8f0;
  box-shadow:0 18px 50px rgba(15,23,42,.08);
  overflow:hidden;
}

.upgrade-section .modal-body{
  padding:40px 24px;
}

.upgrade-section .upgrade-close{
  display:none;
}

/* MOBILE */
@media(max-width:767px){

  .faq-tabs-nav .nav-link{
    padding:6px 13px;
    font-size:14px;
  }
  .custom-detail-subtitle {
    font-size: 24px;
  }
  .video-carousel-title{
    font-size:30px;
    letter-spacing:-1px;
  }

  .video-card{
    min-width:260px;
    width:260px;
    height:150px;
  }

  .video-nav{
    width:44px;
    height:44px;
    font-size:18px;
  }

    .solutions-title{
      font-size:22px;
    }
  
    .solution-content h3{
      font-size:18px;
    }
  


  .toolkit-card{
    padding:22px;
  }
  .hero-video-section{
    min-height:88vh;
  }

  .hero-content-wrap{
    padding-bottom:48px;
  }

  .hero-big-title{
    line-height:1;
    letter-spacing:-1px;
  }

}

@media(max-width:767px){
  .video-instruction-modal .modal-header{
    padding:14px 16px;
  }
  
  .video-instruction-body{
    padding:16px;
  }
  
  .video-info-card,
  .video-tutorial-card,
  .video-upgrade-card{
    padding:18px;
  }
  .pacing-grid{
    grid-template-columns:1fr;
  }

  .pacing-preview-body{
    padding:18px;
  }
}


@media(max-width:767px){
  .voice-preview-modal .modal-header{
    min-height:90px;
  }

  .voice-preview-title h5{
    font-size:22px;
  }

  .voice-preview-title p{
    font-size:14px;
  }

  .voice-grid{
    grid-template-columns:1fr;
  }

  .voice-preview-body{
    padding:18px;
  }
}




/* Desktop Adjustments */
@media (min-width: 992px) {
  .nav-item-custom { width: auto; }
  .navbar-collapse { margin-top: 0; }
}

.common-issues-canvas{
  top: 88px !important;
  height: calc(100vh - 88px) !important;
}

@media(max-width:991px){

  .common-issues-canvas{
    top: 72px !important;
    height: calc(100vh - 72px) !important;
  }

}

.offcanvas-backdrop.show{
  top:88px;
  height:calc(100vh - 88px);
}

@media(max-width:991px){

  .offcanvas-backdrop.show{
    top:72px;
    height:calc(100vh - 72px);
  }

}

/* Mobile Adjustments */
@media (max-width: 991.98px) {
  .navbar-collapse {
    padding-top: 1rem;
    padding-bottom: 1rem;
  }
  .nav-info-mobile {
    padding: 10px 0;
    font-size: 0.9rem;
  }
}

@media (max-width: 768px) {
  .common-issues-canvas{
    width:100% !important;
  }

  .common-issues-title h5{
    font-size:21px;
  }

  .common-issues-body{
    padding:18px;
  }

  .config-form .form-group-1 {
    display: block;
  }
  .no-credit-btn {
    width: 100%;
  }
  .unlock  {
    margin-left: 10px;
  }
  .faq_ {
      top: -50px;
      right: 0;
  }
  .type-grid {
    gap: 28px;
    margin-bottom: 40px;
  }
  .helper-links {
    margin-top: 45px;
  }


  .creator-panel .card_panel {
    padding: 20px 10px;
  }
  .type-card {
    padding: 14px 10px;
    font-size: 12px;
  }
    
    .config-form .form-row {
        flex-wrap: wrap;
        gap: 15px;
    }

    
    .config-form .flex-1 {
        flex: 0 0 calc(50% - 8px); 
        max-width: 100%; 
        margin-bottom: 16px;
        margin-top: 10px;
    }

    
    .config-form .form-group-1,
    .config-form .form-group-2 {
        width: 100%; 
        flex-wrap: wrap;
    }

    
    .config-form .form-group-1 .flex-1 {
        flex: 0 0 calc(50% - 10px);
    }
    
    
    .config-form .form-group-2 .flex-1 {
        flex: 0 0 100%;
        max-width: 100%;
    }
}


@media(max-width:768px){
  .config-form .form-row {
    
  }
  .playground-header .navbar {
    padding: 0;    
    border-bottom: 1px solid #ccc;
  }
  .playground-header .navbar .logo-img-playground {
    width: 100px;
  }
}
@media(max-width:991px){

  .cta-title{
    font-size:42px;
  }

  .cta-text{
    font-size:20px;
  }

  .resource-title{
    font-size:22px;
  }

}


@media(max-width:991px){

  .comparison-card{
    padding:28px;
  }

  .comparison-list li{
    font-size:15px;
  }

}



@media(max-width:767px){

  .youtube-video-card {
    height: 350px;
  }


  .demo-image-card img{
    height:auto;
  }

  .prompt-demo-textarea{
    min-height:110px;
    font-size:16px;
  }
}

@media (min-width: 992px) {
  .mobile-menu-overlay.show {
    display: none !important;
  }
  body {
  overflow: auto !important; 
  }
}

@media (max-width: 575px) {
  .mobile-menu-top {
    height: 80px;
    padding: 0 20px;
  }
  .mobile-menu-body {
    padding: 10px 20px 40px;
  }
}

@media (max-width:768px){

  .upgrade-modal .modal-body{
    padding:26px 14px;
  }

  .upgrade-title{
    font-size:30px;
    padding-right:40px;
  }

  .upgrade-tabs{
    width:100%;
    justify-content: space-between;
    /* display: block; */
  }

  .upgrade-tab-btn{
    /* min-width:0; */
    /* flex:1; */
    padding:0 12px;
    font-size:14px;
    /* width: 100%; */
  }
  .upgrade-tab-btn {
    min-width: auto;
    height: 36px;
  }

  .month-badge{
    display:block;
    margin:4px auto 0;
    width:max-content;
  }

  .billing-toggle{
    width: auto;
    justify-content: space-between;
    padding: 12px 7px;
  }
  /* .footer-social {
    gap: 14px;
  } */
  .footer-social a {
        font-size: 20px;
    }
    .upgrade-tab-btn.annual {
      display: flex;
      justify-content: center;
      align-items: center;
      gap: 13px;
    }
    .month-badge {
     padding: 3px 10px;
     font-size: 12px;
     font-weight: 500;
    }

}

@media (max-width:575px){
  .voice-custom-modal .modal-header{
    padding:14px 16px;
  }

  .voice-title-text h5{
    font-size:21px;
  }

  .voice-title-text p{
    font-size:13px;
  }

  .voice-body{
    padding:16px;
  }

  .voice-card,
  .voice-video-card,
  .voice-upgrade{
    padding:18px;
  }

  .voice-list li{
    font-size:15.5px;
  }
}


@media (max-width:575px){
  .user-media-info-modal .modal-header{
    padding:14px 16px;
  }

  .umi-title-text h5{
    font-size:20px;
  }

  .umi-title-text p{
    font-size:13px;
  }

  .umi-body{
    padding:16px;
  }

  .umi-card{
    padding:18px;
  }
}

@media (max-width:991px){
  .canvas-preview-grid{
    grid-template-columns:1fr 1fr;
    gap:18px;
  }
}

@media (max-width:575px){
  .canvas-preview-body{
    padding:22px 14px 0;
  }

  .canvas-preview-grid{
    grid-template-columns:1fr;
  }

  .canvas-thumb{
    height:185px;
  }

  .canvas-preview-footer{
    margin-left:-14px;
    margin-right:-14px;
  }
}

@media (max-width:991px){
  .preview-grid,
  .preview-grid.two{
    grid-template-columns:1fr 1fr;
    gap:18px;
  }
}

@media (max-width:575px){
  .sketch-preview-body{
    padding:18px 14px;
  }

  .preview-grid,
  .preview-grid.two{
    grid-template-columns:1fr;
  }

  .preview-thumb{
    height:185px;
  }
}

@media (max-width: 991px){
  .upgrade-cards{
    grid-template-columns:1fr;
  }

  .plan-card{
    min-height:auto;
  }
}



    @media (max-width:991px){
      .playground-navbar{
        min-height:83px;
        padding:18px 7px 12px;
        align-items:flex-start;
      }

      .pg-logo img{
        width:138px;
      }

      .pg-actions{
        justify-content:flex-end;
        gap:9px;
      }

      .pg-info.desktop-info,
      .pg-btn.desktop-btn{
        display:none;
      }

      .pg-credit-pill,
      .pg-mobile-close{
        display:inline-flex;
      }

      .pg-avatar{
        width:43px;
        height:43px;
      }

      .playground-subbar{
        padding:0 7px 7px;
        min-height:auto;
        display:grid;
        grid-template-columns:1fr;
        gap:9px;
        border-top:0;
      }

      .mobile-plan{
        color:#475569;
        font-size:14px;
        font-weight:600;
      }

      .mobile-plan a{
        color:#111827;
        text-decoration:underline;
        font-weight:850;
      }

      .mobile-action-stack{
        display:grid;
        gap:9px;
        width:100%;
      }

      .mobile-action-stack .pg-btn{
        width:100%;
        min-height:36px;
        font-size:15px;
      }

      .mobile-action-stack .pg-btn.upgrade{
        min-height:37px;
      }

      .sub-dropdown-btn{
        /* display:none; */
      }

      .faq-dropdown-btn{
        justify-self:end;
        /* min-width:212px; */
        margin-top:0;
      }

      .playground-main{padding:8px 12px 76px;}
      /* .creator-panel{border-radius:0; padding:20px 18px; box-shadow:none;} */
      .prompt-row{align-items:flex-start; flex-direction:column; gap:10px;}
      .type-grid{grid-template-columns:1fr;}
      .locked-upload-row{grid-template-columns:1fr;}
      .or-text{text-align:center;}
      .settings-grid{grid-template-columns:1fr 1fr;}
      .bottom-sticky{display:none;}
    }

/* Pastikan modal di atas semua */
.modal {
  z-index: 2000 !important;
}

/* backdrop (overlay gelap) */
.modal-backdrop {
  z-index: 1990 !important;
}

/* header kamu (turunkan prioritas) */
header, .navbar {
  z-index: 1000 !important;
}


/* music listen */
/* MUSIC PREVIEW MODAL */
.music-preview-modal .modal-dialog{
  max-width:1120px;
}

.music-preview-modal .modal-content{
  border:0;
  border-radius:14px;
  overflow:hidden;
  background:#f8fafc;
  box-shadow:0 30px 90px rgba(15,23,42,.22);
}

.music-preview-modal .modal-header{
  min-height:110px;
  background:#fff;
  border-bottom:1px solid #e5ebf3;
  padding:0 24px;
}

.music-preview-title h5{
  color:#111827;
  font-size:26px;
  font-weight:700;
  letter-spacing:-.03em;
  margin:0 0 6px;
}

.music-preview-title p{
  color:#475569;
  font-size:17px;
  margin:0;
}

.music-preview-modal .btn-close{
  width:40px;
  height:40px;
  border-radius:9px;
  background-color:#f1f5f9;
  box-shadow:none;
}

.music-preview-body{
  padding:24px;
  max-height:76vh;
  overflow-y:auto;
}

.music-grid{
  display:grid;
  grid-template-columns:repeat(2, 1fr);
  gap:16px;
}

.music-card{
  border:1px solid #dbe3ee;
  border-radius:10px;
  background:#fff;
  padding:18px 16px 16px;
  box-shadow:0 4px 10px rgba(15,23,42,.04);
}

.music-card-top{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:14px;
  margin-bottom:14px;
}

.music-card h4{
  color:#111827;
  font-size:17px;
  font-weight:700;
  margin:0;
}

.music-play-btn{
  width:42px;
  height:42px;
  border:0;
  border-radius:50%;
  background:#5546e8;
  color:#fff;
  display:grid;
  place-items:center;
  font-size:22px;
  padding-left:3px;
  flex:0 0 auto;
}

.music-track{
  height:7px;
  border-radius:999px;
  background:#e2e8f0;
  overflow:hidden;
  margin-bottom:8px;
}

.music-track span{
  display:block;
  width:0%;
  height:100%;
  background:#5546e8;
  border-radius:999px;
}

.music-time{
  display:flex;
  justify-content:space-between;
  color:#64748b;
  font-size:13px;
}

.music-note{
  text-align:center;
  color:#475569;
  font-size:15px;
  margin:26px 0 0;
}

.site-header.header-video.scrolled{
  box-shadow: 0px 0px #00000061, 0px 0px #00000066, 0px 0px 2px rgb(33 46 78 / 21%)
}
.site-header.playground-header.site-header.scrolled{
  background: transparent;
}
.site-header.playground-header .navbar {
  background: #fff;
}

.site-header.playground-header .dropdown-menu[data-bs-popper] {
  right: 0px;
  left: auto;
}
.navbar-nav .nav-link.pg-avatar {
  padding: 0 !important;
}

@media (max-width:767px){
  .music-preview-modal .modal-header{
    min-height:90px;
  }

  .music-preview-title h5{
    font-size:22px;
  }

  .music-preview-title p{
    font-size:14px;
  }

  .music-grid{
    grid-template-columns:1fr;
  }

  .music-preview-body{
    padding:18px;
  }
}

/* end */

    @media (min-width:992px){
      .mobile-plan,
      .mobile-action-stack{
        display:none;
      }
    }
    /* end */




@media (max-width:575px){
  .trusted{
    display:block;
    margin-top:42px;
  }

  .trusted-title{
    font-size:12px;
    margin-bottom:22px;
  }

  .trusted-group{
    gap:34px;
    padding-right:34px;
  }

  .trusted-slider::before,
  .trusted-slider::after{
    width:60px;
  }
}


@media (max-width: 767px){
  .hero-big-title {
    max-width: 300px;
  }

  .hero-big-title,
  .homepage .title,
  .features-toolkit-title,
  .video-carousel-title,
  .bg-white .title,
  .custom-detail-section .title,
  .homePage .pricing-heading h2,
  .api-title,
  .faq-main-title {
    font-size: 30px;
    font-weight: 500;
    line-height: 1.4;
  }
  .site-footer{
    padding:64px 22px 34px;
  }

  .footer-logo{
    margin-bottom:24px;
  }

  .footer-desc{
    margin-bottom:34px;
  }

  .footer-title{
    font-size:18px;
    margin-top:12px;
    margin-bottom:20px;
  }

  .footer-links li{
    margin-bottom:13px;
  }

  .footer-links a{
    font-size:16px;
  }

  /* .footer-social a{
    font-size:30px;
  } */

  .footer-copy{
    font-size:16px;
    line-height:1.45;
  }
}    


@media (max-width: 767px){
    .faq-section{
        padding:76px 18px;
    }

    .faq-head h2{
        font-size:42px;
    }

    .faq-head p{
        font-size:18px;
    }

    .faq-card{
        min-height:190px;
    }

    .faq-detail-title h3{
        font-size:29px;
    }
}

@media (max-width: 767px){
    .pricing-section{
        padding:70px 16px;
    }

    .pricing-heading h2,
    .faq-head h2 {
        font-size:30px;
    }

    .pricing-table-wrap{
        border-radius:8px;
    }

    .api-tier-head{
        flex-direction:column;
        align-items:flex-start;
    }

    .api-tier-body{
        grid-template-columns:1fr;
    }
}


@media (max-width: 575px){
    .usecase-section{
        padding:66px 18px 70px;
    }

    .usecase-heading{
        margin-bottom:38px;
    }

    .usecase-heading h2{
        font-size:30px;
    }

    .usecase-heading p{
        font-size:16px;
    }

    .usecase-card{
        min-height:250px;
        padding:28px 26px;
        border-radius:22px;
    }
}

@media (max-width: 767px){
  .how-section{
    padding:70px 18px;
  }

  .how-heading{
    margin-bottom:50px;
  }

  .how-heading h2{
    font-size:30px;
  }

  .how-heading p{
    font-size:16px;
  }

  .how-steps{
    grid-template-columns:1fr;
    gap:44px;
  }

  .how-steps::before{
    display:none;
  }

  .step-number{
    margin-bottom:22px;
  }

  .how-action{
    margin-top:48px;
  }
}


    @media (max-width:1199px){
      .nav-center{margin-left:35px; gap:22px;}
      .navbar-nav .nav-link{font-size:15px;}
      .hero-title{font-size:58px;}
    }

    @media (max-width:991px){
      .features-grid{grid-template-columns:1fr; max-width:720px;}
      .span-8,.span-4{grid-column:span 1;}
      .fast-card{background:linear-gradient(90deg,#fff 0 52%,#fff8e8 52% 100%);}
      .features-heading h2{font-size:36px;}

      .navbar{height:96px;}
      .logo-img{width:132px;}
      .desktop-nav,
      .desktop-actions{display:none !important;}
      .mobile-toggle{display:flex;}
      .hero{
        min-height:720px;
        padding-top:154px;
        padding-bottom:70px;
      }
      .hero-title{font-size:45px;}
      .hero-desc{font-size:21px; max-width:640px;}
    }

    @media (max-width:575px){
      .hero-actions {
        padding: 2px 20px;
      }
      .hero-actions {
        gap: 32px;
      }
      .dot-bg{background-size:32px 32px;}
      .navbar{height:88px; padding:0 18px;}
      .logo-img{width:128px;}
      .hero{
        min-height:620px;
        padding:158px 26px 48px;
      }
      .hero-badge{
        max-width:340px;
        min-height:48px;
        padding:8px 16px;
        font-size:12px;
        line-height:1.15;
        margin-bottom:30px;
      }
      .hero-title{
        font-size: 30px;
        line-height: 1.4;
        letter-spacing: -.02em;
      }
      .hero-title .gradient{display:inline;}
      .hero-desc{
        margin-top:30px;
        font-size:23px;
        line-height:1.45;
      }
      .hero-small,
      .video-action-section{padding:64px 18px 56px;}
      .section-heading{margin-bottom:34px;}
      .section-heading h2{font-size:28px;}
      .section-heading p{font-size:15px;}
      .video-content{padding-top:16px;}
      .features-section{padding:66px 18px 70px;}
      .features-heading{margin-bottom:36px;}
      .features-eyebrow{font-size:11px;}
      .features-heading h2{font-size:30px;}
      .features-heading p{font-size:16px;}
      .feature-box{min-height:210px; padding:28px 24px; border-radius:22px;}
      .feature-box h3{font-size:25px;}
      .feature-box p{font-size:16px;}
      .fast-icon{right:28px; top:96px; transform:scale(.75); transform-origin:right center;}
      .languages-card .big-aa{font-size:72px;}
      .team-avatars{right:22px; bottom:24px; transform:scale(.9); transform-origin:right bottom;}
    }
    