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

  :root {
      --ink: #0d1117;
      --fog: #f3f4f6;
      --mist: #e8eaf0;
      --slate: #000;
      --teal: #3979fb;
      --teal-lt: #e1ebff;
      --teal-dk: #003fbf;
      --cream: #fefcf8;
      --warm: #f5f0e8;
      --accent: #ff6b35;
      --accent-lt: #fff0ea;
      --white: #ffffff;
      --r-sm: 12px;
      --r-md: 20px;
      --r-lg: 32px;
      --r-xl: 48px;
      --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
      --shadow-md: 0 8px 32px rgba(0, 0, 0, 0.09);
      --shadow-lg: 0 24px 64px rgba(0, 0, 0, 0.12);
  }



  html {
      scroll-behavior: smooth;
  }

  body {
      font-family: 'poppins';
      background: var(--cream);
}
.img-fluid{
    max-width: 100%;
    height: auto;
}
  .btn-ghost {
      padding: 9px 20px;
      border-radius: 100px;
      border: 1px solid rgba(0, 0, 0, 0.12);
      background: transparent;

      font-size: 13px;
      font-weight: 500;
      color: var(--ink);
      cursor: pointer;
      transition: all .2s;
  }

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

  .btn-primary {
      padding: 10px 22px;
      border-radius: 100px;
      border: none;
      background: var(--teal);

      font-size: 13px;
      font-weight: 600;
      color: white;
      cursor: pointer;
      transition: all .2s;
  }

  .btn-primary:hover {
      background: var(--teal-dk);
      transform: translateY(-1px);
      box-shadow: 0 6px 20px rgba(14, 165, 160, 0.35);
  }
  /* ── SECTION SHARED ── */
  section {
      padding: 50px 0;
}
section:nth-child(2n){
    padding: 0 ;
}
section > *{
    max-width: 1310px;
    padding: 0 15px;
    margin: 0 auto;
}
  .section-label {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      padding: 5px 14px;
      border-radius: 100px;
      background: var(--fog);
      color: var(--slate);
      font-size: 11px;
      font-weight: 600;
      letter-spacing: .08em;
      text-transform: uppercase;
      margin-bottom: 20px;
  }
.heading__area{
    margin-bottom: 20px;
    display: block;
    width: 100%;
}
  .heading__area.center > *{
    text-align: center;
  }
.section-title {
    font-size: clamp(28px, 35px, 35px);
    line-height: 1.1;
    font-weight: 600;
    color: #000;
}
.heading__area > p{
    margin: 5px 0 0 0;
}
.heading__area.white > *{
    color: #fff;
}
.section-title.left{
    text-align: left;
}

  p {
      color: #000;
      line-height: 26px;
      font-size: 15px;
      font-weight: 400;
      margin-bottom: 15px;
  }
  p:last-child{
    margin-bottom: 0;
  }
  .button-part {
    display: block;
    width: 100%;
    text-align: left;
}
.button-part.center {
    text-align: center;
}
.button-part a {
    font-size: 18px;
    font-weight: 600;
    padding: 10px 15px 13px 15px;
    width: auto;
    min-height: auto;
    line-height: 24px;
    margin: 0 10px 0px 0px;
    background-color: var(--teal);
    color: #fff;
    display: inline-flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
}


.button-part a.view-demo span small {
    display: block;
    line-height: 1em;
    font-size: 13px;
    color: #fff;
    font-weight: 600;
    margin-top: 0;
    text-transform: uppercase;
}

.button-part a.view-demo:hover {
    background-color: var(--teal-dk);
}
.button-part a i {
    width: 30px;
    height: 30px;
    font-size: 30px;
    position: relative;
    top: 1px;
}
.button-part a:hover {
    background-color: var(--teal-dk);
    color: #fff;
}
.btn__div {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    grid-gap: 15px;
}
.btn__div a {
    margin: 0;
}
  /* ── HERO ── */
.hero {
    background: linear-gradient(135deg, var(--teal-lt) 0%, var(--teal-lt) 50%, #fff 100%);
    padding: 120px 0 40px;
    overflow: hidden;
    position: relative;
}
.hero__inner{
    max-width: 1310px;
    margin: 0 auto;
    padding: 0 15px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    align-items: center;
}
  .hero::before {
      content: '';
      position: absolute;
      top: -80px;
      right: -120px;
      width: 600px;
      height: 600px;
      background: radial-gradient(circle, rgba(14, 165, 160, 0.08) 0%, transparent 70%);
      border-radius: 50%;
      pointer-events: none;
  }

  .badge {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 6px 14px;
      border-radius: 100px;
      background: var(--teal-lt);
      color: var(--teal-dk);
      font-size: 11px;
      font-weight: 600;
      letter-spacing: .08em;
      text-transform: uppercase;
      margin-bottom: 28px;
  }

  .badge::before {
      content: '';
      width: 6px;
      height: 6px;
      border-radius: 50%;
      background: var(--teal);
      animation: pulse 2s infinite;
  }

  @keyframes pulse {

      0%,
      100% {
          opacity: 1;
          transform: scale(1);
      }

      50% {
          opacity: .5;
          transform: scale(1.4);
      }
  }

  .hero-title {
      font-size: clamp(28px, 5vw, 50px);
      line-height: 1.08;
      font-weight: bold;
      display: block;
      margin: 0 0 5px;
      text-transform: capitalize;
  }
.hero .sub_title {
    line-height: 1em;
    font-size: 26px;
    color: #000;
    display: block;
    font-weight: 600;
    position: relative;
    margin-bottom: 10px;
}
  .hero-title em {
      color: var(--teal);
  }

  .hero-desc {
      font-size: 17px;
      line-height: 1.7;
      color: var(--slate);
      margin-bottom: 20px;
  }

  .hero-actions {
      display: flex;
      gap: 14px;
      align-items: center;
      margin-bottom: 52px;
  }

  .btn-hero {
      padding: 15px 32px;
      border-radius: 100px;
      border: none;
      background: var(--ink);

      font-size: 15px;
      font-weight: 600;
      color: white;
      cursor: pointer;
      transition: all .25s;
  }

  .btn-hero:hover {
      background: #1f2937;
      transform: translateY(-2px);
      box-shadow: 0 12px 32px rgba(0, 0, 0, 0.2);
  }

  .btn-outline-hero {
      padding: 14px 32px;
      border-radius: 100px;
      border: 1.5px solid rgba(0, 0, 0, 0.15);
      background: transparent;

      font-size: 15px;
      font-weight: 500;
      color: var(--ink);
      cursor: pointer;
      transition: all .2s;
  }

  .btn-outline-hero:hover {
      border-color: var(--ink);
      background: var(--fog);
  }

  /* ── HERO VISUAL ── */
  .hero-visual {
      position: relative;
      display: flex;
      flex-direction: column;
      gap: 16px;
  }

  .dashboard-card {
      background: white;
      border-radius: var(--r-lg);
      border: 1px solid rgba(0, 0, 0, 0.07);
      box-shadow: var(--shadow-lg);
      overflow: hidden;
      animation: floatUp .8s ease both;
  }

  @keyframes floatUp {
      from {
          opacity: 0;
          transform: translateY(30px);
      }

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

  .dash-topbar {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 14px 20px;
      border-bottom: 1px solid var(--fog);
      background: var(--cream);
  }

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

  .dash-dots span {
      width: 10px;
      height: 10px;
      border-radius: 50%;
  }

  .dash-dots span:nth-child(1) {
      background: #ff5f57;
  }

  .dash-dots span:nth-child(2) {
      background: #febc2e;
  }

  .dash-dots span:nth-child(3) {
      background: #28c840;
  }

  .stat-block {
      padding: 18px;
      border-radius: var(--r-md);
      background: var(--fog);
  }

  .stat-block.teal {
      background: var(--teal);
      color: white;
  }

  .stat-block p {
      font-size: 11px;
      font-weight: 600;
      opacity: .7;
      text-transform: uppercase;
      letter-spacing: .06em;
      margin-bottom: 8px;
  }

  .stat-block h4 {
      font-size: 30px;
      font-weight: 700;
      line-height: 1;
  }

  .stat-block small {
      font-size: 11px;
      opacity: .6;
      margin-top: 4px;
      display: block;
  }



  /* ── DEMOLINK ── */
section.demolinks {
    background-color: var(--teal);
    padding: 40px 0;
}
.demolinks-inner {
    max-width: 1310px;
    margin: 0 auto;
    padding: 0 15px;
    text-align: center;
}
.demo-links-row {
    display: grid;
    grid-template-rows: 1fr 1fr;
    grid-auto-flow: column;
    gap: 10px;
    max-width: 1190px;
    margin: 0 auto;
}
.demo-links-row li{
    margin: 0;
}
.demo-links-row li a {
    display: block;
    position: relative;
}
.demo-links-row li a::before{
    content: '';
    display: block;
    width: 100%;
    padding-top: 32%;
}
.demo-links-row li a img{
    position: absolute;
    left: 0;
    top: 0;
}
  /* ── FEATURES ── */
  section.features__sec{
    padding-top: 40px;
  }
  .features-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 20px;
  }

  .feat-card {
      background: white;
      border: 1px solid rgba(0, 0, 0, 0.07);
      border-radius: var(--r-lg);
      padding: 36px;
      transition: all .3s;
      cursor: default;
      position: relative;
      overflow: hidden;
  }

  .feat-card::after {
      content: '';
      position: absolute;
      inset: 0;
      border-radius: var(--r-lg);
      background: linear-gradient(135deg, rgba(14, 165, 160, .04), transparent);
      opacity: 0;
      transition: opacity .3s;
  }

  .feat-card:hover {
      box-shadow: var(--shadow-lg);
      transform: translateY(-4px);
  }

  .feat-card:hover::after {
      opacity: 1;
  }

  .feat-number {
      font-size: 60px;
      font-weight: 400;
      color: var(--mist);
      line-height: 1;
      margin-bottom: 10px;
      display: block;
  }

  .feat-card h3 {
      font-size: 20px;
      font-weight: 600;
      color: #000;
      margin-bottom: 16px;
  }

  .feat-list {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 10px;
  }

  .feat-list li {
      display: flex;
      align-items: center;
      gap: 10px;
      margin: 0;
      font-size: 14px;
      color: var(--slate);
  }

  .feat-list li::before {
      content: '';
      flex-shrink: 0;
      width: 20px;
      height: 20px;
      border-radius: 50%;
      background: var(--teal-lt);
      background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230a7a76' stroke-width='2.5'%3E%3Cpath d='M20 6L9 17l-5-5'/%3E%3C/svg%3E");
      background-repeat: no-repeat;
      background-position: center;
      background-size: 12px;
  }

  /* ── PROCESS ── */
  .process-section {
      background: var(--ink);
      border-radius: var(--r-xl);
      padding: 40px;
      max-width: 1320px;
      margin: 40px auto;
      position: relative;
      overflow: hidden;
  }

  .process-section::before {
      content: '';
      position: absolute;
      top: -100px;
      right: -100px;
      width: 400px;
      height: 400px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(14, 165, 160, .15), transparent 70%);
      pointer-events: none;
  }

  .process-section .section-label {
      background: rgba(255, 255, 255, .08);
      color: rgba(255, 255, 255, .5);
  }

  .process-section .section-title {
      color: white;
  }

  .process-section .section-sub {
      color: rgba(255, 255, 255, .45);
      max-width: 100%;
  }

  .steps-grid {
      display: grid;
      grid-template-columns: repeat(5, 1fr);
      gap: 0;
      margin-top: 15px;
      position: relative;
  }

  .steps-grid::before {
      content: '';
      position: absolute;
      top: 44px;
      left: 10%;
      right: 10%;
      height: 1px;
      background: linear-gradient(90deg, transparent, rgba(14, 165, 160, .4), transparent);
  }

  .step-item {
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
      padding: 0 12px;
      position: relative;
  }

  .step-circle {
      width: 88px;
      height: 88px;
      border-radius: 50%;
      border: 1px solid rgba(255, 255, 255, .1);
      background: rgba(255, 255, 255, .05);
      display: grid;
      place-items: center;
      margin-bottom: 20px;
      transition: all .3s;
      cursor: default;
      position: relative;
      z-index: 1;
  }

  .step-circle:hover {
      background: rgba(14, 165, 160, .15);
      border-color: var(--teal);
  }

  .step-circle i {
      stroke: var(--teal);
      fill: none;
      stroke-width: 1.5;
      font-size: 35px;
      color: var(--teal);
  }

  .step-num {
      position: absolute;
      top: -6px;
      right: -6px;
      width: 26px;
      height: 26px;
      border-radius: 50%;
      background: var(--teal);
      color: white;
      font-size: 10px;
      font-weight: 700;
      display: grid;
      place-items: center;
      border: 2px solid var(--ink);
  }

  .step-item strong {
      font-size: 18px;
      font-weight: 600;
      color: white;
      display: block;
      text-transform: capitalize;
      margin-bottom: 8px;
  }

  .step-item p {
      color: rgba(255, 255, 255, .4);
  }

  /* ── BENEFITS ── */
  .grid-c-2{
    margin: 0;
    grid-column: span 2;
  }
  .benefits-layout {
      display: grid;
      grid-template-columns: 1.5fr 1fr;
      gap: 20px;
      align-items: center;
      margin-top: 0;
  }

  .benefits-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 16px;
  }

  .benefit-card {
      padding: 24px;
      border-radius: var(--r-md);
      background: var(--fog);
      transition: all .25s;
      cursor: default;
  }

  .benefit-card:hover {
      background: var(--teal-lt);
      transform: translateY(-2px);
  }

  .benefit-card:hover .benefit-icon {
      background: var(--teal);
      color: #fff;
  }

  .benefit-icon {
      width: 44px;
      height: 44px;
      border-radius: 12px;
      background: white;
      box-shadow: var(--shadow-sm);
      display: grid;
      place-items: center;
      transition: all .25s;
      -webkit-transition: all .25s;
      -moz-transition: all .25s;
      -ms-transition: all .25s;
      -o-transition: all .25s;
      font-size: 25px;
      color: var(--teal);
}
.benefits-layout .b__top{
        display: grid;
        grid-template-columns: 44px auto;
        gap: 15px;
        margin-bottom: 10px;
        align-items: center;
}

  .benefit-card strong {
      font-size: 17px;
      color: #000;
      text-transform: capitalize;
      display: block;
      font-weight: 600;

  }

  .benefit-card p {
    margin: 0;
  }

  /* visual side */
  .visual-panel {
      border-radius: var(--r-xl);
      overflow: hidden;
      position: relative;
      background: linear-gradient(145deg, var(--teal-lt), var(--fog));
      padding: 40px;
      display: flex;
      flex-direction: column;
      gap: 16px;
      min-height: 480px;
      justify-content: center;
  }

  .visual-panel::before {
      content: '';
      position: absolute;
      top: -60px;
      left: -60px;
      width: 240px;
      height: 240px;
      background: radial-gradient(circle, rgba(14, 165, 160, .12), transparent 70%);
      border-radius: 50%;
  }

  /* ── FAQ ── */
section.faq{
    padding-bottom: 40px;
  }
  .faq-layout {
      display: grid;
      grid-template-columns: .8fr 1fr;
      gap: 40px;
      align-items: start;
  }

  .faq-list {
      display: flex;
      flex-direction: column;
      gap: 10px;
  }

  details.faq-item {
      border-radius: var(--r-md);
      border: 1px solid rgba(0, 0, 0, .07);
      background: white;
      overflow: hidden;
      transition: box-shadow .2s;
  }

  details.faq-item:hover {
      box-shadow: var(--shadow-sm);
  }

  details.faq-item[open] {
      box-shadow: var(--shadow-md);
  }

  details.faq-item summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 24px;
    cursor: pointer;
    list-style: none;
    font-size: 18px;
    font-weight: 500;
    user-select: none;
    color: #000;
    text-transform: capitalize;
}

  details.faq-item summary::-webkit-details-marker {
      display: none;
  }

  details.faq-item summary .faq-arrow {
      width: 28px;
      height: 28px;
      border-radius: 50%;
      background: var(--fog);
      display: grid;
      place-items: center;
      flex-shrink: 0;
      transition: all .25s;
  }

  details.faq-item summary .faq-arrow svg {
      width: 14px;
      height: 14px;
      stroke: var(--slate);
      fill: none;
      stroke-width: 2;
      transition: transform .25s;
  }

  details.faq-item[open] summary .faq-arrow {
      background: var(--teal-lt);
  }

  details.faq-item[open] summary .faq-arrow svg {
      stroke: var(--teal);
      transform: rotate(180deg);
  }

  details.faq-item .faq-ans {
      padding: 0 24px 20px;
      font-size: 14px;
      color: var(--slate);
      line-height: 1.7;
  }

  .faq-cta-box {
      background: var(--teal);
      border-radius: var(--r-xl);
      padding: 48px 40px;
      color: white;
      position: sticky;
      top: 120px;
  }
.faq-cta-box .heading__area{
    margin: 0;
}
  .faq-cta-box h3 {

      font-size: 32px;
      font-weight: 400;
      line-height: 1.2;
      margin-bottom: 16px;
  }

  .faq-cta-box p {
    color: #fff;
  }

  .btn-white {
      padding: 14px 28px;
      border-radius: 100px;
      border: none;
      background: white;

      font-size: 14px;
      font-weight: 600;
      color: var(--teal-dk);
      cursor: pointer;
      transition: all .2s;
      display: inline-block;
  }

  .btn-white:hover {
      transform: translateY(-2px);
      box-shadow: 0 10px 30px rgba(0, 0, 0, .15);
  }

  /* ── SECURITY BAND ── */
  .security-cards {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 20px;
  }

  .sec-card {
      background: white;
      border-radius: var(--r-lg);
      padding: 32px;
      border: 1px solid rgba(0, 0, 0, .07);
      transition: all .3s;
  }

  .sec-card:hover {
      box-shadow: var(--shadow-md);
      transform: translateY(-3px);
  }

  .sec-icon {
      width: 52px;
      height: 52px;
      border-radius: 14px;
      background: var(--teal-lt);
      display: grid;
      place-items: center;
      margin-bottom: 20px;
      font-size: 30px;
      color: var(--teal);
  }


  .sec-card strong {
      font-size: 17px;
      font-weight: 600;
      margin-bottom: 12px;
      display: block;
      text-transform: capitalize;
      color: #000;
  }


.screens-inner {
    max-width: 1310px;
    margin: 0 auto;
    padding: 0 15px;
}
.TABROW {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin: 0 0 15px 0;
    gap: 15px;
}
.TABROW .TAB {
    min-width: 197px;
    height: 50px;
    padding: 15px 15px;
    box-sizing: border-box;
    font-weight: 600;
    text-transform: uppercase;
    color: #606060;
    letter-spacing: 1px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    box-shadow: 0 0 0 1px #d8d8d8 inset;
    cursor: pointer;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -ms-transition: all 0.5s;
    -o-transition: all 0.5s;
    background-color: #ffffff;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
}
.TABROW .TAB.active {
    background-color: var(--teal);
    color: #fff;
    box-shadow: none;
}
.TABROW{
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 20px;
}
.screens ul {
    display: none;
    list-style: none;
    gap: 20px;
    grid-template-columns: repeat(4, 1fr);
}
.screens ul.active {
    display: grid;
}
.screens ul li {
    box-sizing: border-box;
    margin: 0;
}
.screens ul li img {
    max-width: 100%;
}
.screens ul li img {
    box-shadow: 0 0 8px 0 rgba(0, 0, 0, 0.3);
}
.screens .view-app-flow {
    font-size: 22px;
    background-color: var(--theme);
    font-weight: 600;
    color: #ffffff;
    padding: 14px 40px 17px 40px;
    min-width: 264px;
    box-sizing: border-box;
    display: inline-block;
    border-radius: 30px;
    margin-top: 35px;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -ms-transition: all 0.5s;
    -o-transition: all 0.5s;
}
.screens .view-app-flow:hover {
    background-color: var(--theme-hover);
}


.opinion {
        padding-bottom: 0;
    }
    .opinion-inner {
        max-width: 1310px;
        margin: 0 auto;
        padding: 0 15px;
    }
    .opinion .heading-area p {
        margin: 0 0 10px 0;
        text-align: center;
    }
    ul.opinion-list {
        max-width: 100%;
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 20px;
    }
    ul.opinion-list li {
        margin: 0 !important;
    }
    ul.opinion-list li a img {
        width: 100%;
        vertical-align: top;
    }
    ul.opinion-list li a {
        display: inline-block;
        position: relative;
        border-radius: 25px;
        -webkit-border-radius: 25px;
        -moz-border-radius: 25px;
        -ms-border-radius: 25px;
        -o-border-radius: 25px;
        overflow: hidden;
    }
    ul.opinion-list li a:after {
        content: '';
        position: absolute;
        right: 10px;
        bottom: 10px;
        width: 46px;
        height: 46px;
        background-image: url(../images/maple-health-clone/play-button.svg);
        background-repeat: no-repeat;
        background-size: 40px;
        background-position: center;
        background-color: var(--teal);
        border-radius: 50%;
        -webkit-border-radius: 50%;
        -moz-border-radius: 50%;
        -ms-border-radius: 50%;
        -o-border-radius: 50%;
        box-shadow: 0 0 10px 0 rgb(0 0 0 / 50%);
    }


    /* ═══════════════════════════════════════
   RESPONSIVE BREAKPOINTS
═══════════════════════════════════════ */
/* ── TABLET LANDSCAPE: 1024px ── */
@media (max-width: 1024px) {
    .hero__inner {
        display: flex;
        flex-direction: column-reverse;
        gap: 40px;
    }

    .hero-visual {
        max-width: 600px;
        margin: 0 auto;
        width: 100%;
    }

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

    .steps-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 32px;
    }

    .steps-grid::before { display: none; }

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

    .grid-c-2 {
        grid-column: span 1;
    }

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

    .faq-cta-box {
        position: relative;
        top: 0;
    }

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

/* ── TABLET PORTRAIT: 768px ── */
@media (max-width: 768px) {
    .hero .sub_title {
        font-size: 20px;
    }
    .process-section {
        padding: 30px 20px;
        margin: 30px 15px;
        border-radius: var(--r-lg);
    }

    .hero__inner {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .hero-actions {
        margin-bottom: 32px;
    }

    .btn-hero,
    .btn-outline-hero {
        padding: 13px 24px;
        font-size: 14px;
        width: 100%;
        text-align: center;
        justify-content: center;
    }

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

    .feat-card {
        padding: 24px;
    }

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

    .step-circle {
        width: 70px;
        height: 70px;
    }

    .step-item strong {
        font-size: 15px;
    }

    .visual-panel {
        min-height: auto;
        padding: 28px;
    }

    .faq-layout {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    details.faq-item summary {
        font-size: 16px;
        line-height: 19px;
        padding: 14px 18px;
    }

    .faq-cta-box {
        padding: 32px 24px;
        border-radius: var(--r-lg);
    }

    .screens ul {
        grid-template-columns: repeat(2, 1fr);
        text-align: center;
    }


    ul.opinion-list {
        grid-template-columns: repeat(3, 1fr);
    }


    .button-part a {
        font-size: 16px;
    }

}

/* ── MOBILE: 576px ── */
@media (max-width: 576px) {
    .hero__inner {
        padding: 0 15px;
    }

    .badge {
        font-size: 10px;
        padding: 5px 12px;
    }

    .hero-actions {
        flex-direction: column;
        align-items: stretch;
    }

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

    .faq-layout {
        gap: 20px;
    }

    .screens ul {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .TABROW {
        gap: 10px;
    }

    ul.opinion-list {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }
    ul.opinion-list li a:after {
        scale: 0.8;
    }

    .demo-links-row {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
        grid-auto-flow: row;
    }

    .features-grid,
    .security-cards {
        grid-template-columns: 1fr;
    }

    .section-title {
        font-size: clamp(22px, 6vw, 30px);
    }

    .process-section {
        border-radius: var(--r-md);
    }

    .feat-number {
        font-size: 44px;
    }

    .visual-panel {
        padding: 20px;
        border-radius: var(--r-lg);
    }
    .benefits-grid {
        grid-template-columns: 100%;
    }
    .demolinks ul {
    grid-template-columns: 1fr 1fr;
    grid-auto-flow: row;
    gap: 10px;
}
}

/* ── SMALL MOBILE: 400px ── */
@media (max-width: 400px) {
    .process__inner{
        padding: 0;
    }
    .step-item{
        padding: 0;
    }
    .steps-grid {
        grid-template-columns: 1fr;

    }


    .step-circle {
        flex-shrink: 0;
        width: 60px;
        height: 60px;
        margin-bottom: 0;
    }

    .screens ul {
        grid-template-columns: 1fr;
    }


    .feat-card {
        padding: 20px;
    }

    .faq-cta-box {
        padding: 24px 18px;
    }

    section.demolinks {
        padding: 30px 0;
    }
}