    :root {
      --primary: #1a6ef5;
      --primary-dark: #1458cc;
      --primary-light: #e8f0ff;
      --accent: #00c2a8;
      --dark: #0d1b3e;
      --dark-2: #1c2f5c;
      --text: #374151;
      --muted: #6b7280;
      --border: #e5e9f0;
      --white: #ffffff;
      --bg: #f7f9fc;
      --card-shadow: 0 4px 24px rgba(26, 110, 245, 0.08);
      --card-shadow-hover: 0 12px 40px rgba(26, 110, 245, 0.18);
    }

    *,
    *::before,
    *::after {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
     
      color: var(--text);
      background: var(--white);
      overflow-x: hidden;
    }

  

    /* ── NAVBAR ── */
    .navbar {
      background: rgba(255, 255, 255, 0.95);
      backdrop-filter: blur(12px);
      border-bottom: 1px solid var(--border);
      padding: 0.85rem 0;
      transition: box-shadow .3s;
    }

    .navbar.scrolled {
      box-shadow: 0 2px 20px rgba(26, 110, 245, 0.1);
    }

    .navbar-brand {
      font-size: 1.45rem;
      font-weight: 800;
      color: var(--dark) !important;
      display: flex;
      align-items: center;
      gap: .45rem;
    }

    .navbar-brand .logo-dot {
      color: var(--primary);
    }

    .nav-link {
      font-weight: 500;
      font-size: .9rem;
      color: var(--text) !important;
      padding: .4rem .85rem !important;
      border-radius: 8px;
      transition: color .2s, background .2s;
    }

    .nav-link:hover {
      color: var(--primary) !important;
      background: var(--primary-light);
    }

    .btn-login {
      font-weight: 600;
      font-size: .875rem;
      color: var(--primary);
      border: 1.5px solid var(--primary);
      border-radius: 10px;
      padding: .45rem 1.2rem;
      transition: all .25s;
    }

    .btn-login:hover {
      background: var(--primary-light);
    }

    .btn-getstarted {
      font-weight: 600;
      font-size: .875rem;
      background: var(--primary);
      color: #fff;
      border-radius: 10px;
      padding: .45rem 1.35rem;
      border: none;
      transition: all .25s;
      box-shadow: 0 4px 14px rgba(26, 110, 245, 0.35);
    }

    .btn-getstarted:hover {
      background: var(--primary-dark);
      transform: translateY(-1px);
      box-shadow: 0 6px 20px rgba(26, 110, 245, 0.45);
    }

    /* ── HERO ── */
    #hero {
      background: linear-gradient(135deg, #f0f5ff 0%, #e8f0ff 50%, #f7f9fc 100%);
      padding: 110px 0 80px;
      position: relative;
      overflow: hidden;
    }

    #hero::before {
      content: '';
      position: absolute;
      top: -120px;
      right: -120px;
      width: 500px;
      height: 500px;
      background: radial-gradient(circle, rgba(26, 110, 245, 0.12) 0%, transparent 70%);
      border-radius: 50%;
    }

    #hero::after {
      content: '';
      position: absolute;
      bottom: -80px;
      left: -80px;
      width: 350px;
      height: 350px;
      background: radial-gradient(circle, rgba(0, 194, 168, 0.1) 0%, transparent 70%);
      border-radius: 50%;
    }

    .hero-badge {
      display: inline-flex;
      align-items: center;
      gap: .4rem;
      background: rgba(26, 110, 245, 0.1);
      color: var(--primary);
      border: 1px solid rgba(26, 110, 245, 0.2);
      border-radius: 50px;
      font-size: .78rem;
      font-weight: 600;
      padding: .35rem .95rem;
      margin-bottom: 1.5rem;
      animation: fadeDown .6s ease both;
    }

    .hero-title {
      font-size: clamp(2.4rem, 5vw, 3.6rem);
      font-weight: 800;
      line-height: 1.15;
      color: var(--dark);
      animation: fadeUp .7s .1s ease both;
    }

    .hero-title span {
      color: var(--primary);
    }

    .hero-subtitle {
      font-size: 1.05rem;
      color: var(--muted);
      line-height: 1.75;
      max-width: 520px;
      margin: 1.25rem 0 2.2rem;
      font-weight: 400;
      animation: fadeUp .7s .2s ease both;
    }

    .hero-ctas {
      animation: fadeUp .7s .3s ease both;
      display: flex;
      gap: 1rem;
      flex-wrap: wrap;
    }

    .btn-primary-hero {
      background: var(--primary);
      color: #fff;
      font-weight: 700;
      border-radius: 12px;
      padding: .8rem 2rem;
      font-size: 1rem;
      border: none;
      box-shadow: 0 6px 22px rgba(26, 110, 245, 0.4);
      transition: all .25s;
    }

    .btn-primary-hero:hover {
      background: var(--primary-dark);
      transform: translateY(-2px);
      box-shadow: 0 10px 30px rgba(26, 110, 245, 0.5);
      color: #fff;
    }

    .btn-secondary-hero {
      background: #fff;
      color: var(--dark);
      font-weight: 700;
      border-radius: 12px;
      padding: .8rem 2rem;
      font-size: 1rem;
      border: 1.5px solid var(--border);
      box-shadow: var(--card-shadow);
      transition: all .25s;
    }

    .btn-secondary-hero:hover {
      border-color: var(--primary);
      color: var(--primary);
      transform: translateY(-2px);
    }

    .hero-stats {
      display: flex;
      gap: 2.5rem;
      margin-top: 2.5rem;
      flex-wrap: wrap;
      animation: fadeUp .7s .4s ease both;
    }

    .hero-stat-num {
      font-size: 1.6rem;
      font-weight: 800;
      color: var(--dark);
    }

    .hero-stat-label {
      font-size: .78rem;
      color: var(--muted);
      font-weight: 500;
    }

    /* Dashboard Illustration */
    .dashboard-card {
      background: #fff;
      border-radius: 20px;
      box-shadow: 0 20px 60px rgba(26, 110, 245, 0.15);
      padding: 1.5rem;
      animation: floatUp .8s .3s ease both;
      position: relative;
      z-index: 2;
    }

    .db-header {
      display: flex;
      align-items: center;
      gap: .6rem;
      padding-bottom: 1rem;
      border-bottom: 1px solid var(--border);
      margin-bottom: 1.2rem;
    }

    .db-dot {
      width: 10px;
      height: 10px;
      border-radius: 50%;
    }

    .db-dot.red {
      background: #ff5f57;
    }

    .db-dot.yellow {
      background: #ffbd2e;
    }

    .db-dot.green {
      background: #28c940;
    }

    .db-title {
      font-weight: 700;
      font-size: .85rem;
      color: var(--dark);
      margin-left: auto;
    }

    .db-stats-row {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: .8rem;
      margin-bottom: 1.2rem;
    }

    .db-stat {
      background: var(--bg);
      border-radius: 12px;
      padding: .9rem .8rem;
      text-align: center;
    }

    .db-stat-n {
      font-size: 1.3rem;
      font-weight: 800;
      color: var(--dark);
    }

    .db-stat-l {
      font-size: .68rem;
      color: var(--muted);
      font-weight: 500;
      margin-top: .1rem;
    }

    .db-stat.blue-stat {
      background: var(--primary);
    }

    .db-stat.blue-stat .db-stat-n,
    .db-stat.blue-stat .db-stat-l {
      color: #fff;
    }

    .db-chart-area {
      background: var(--bg);
      border-radius: 12px;
      padding: 1rem;
      height: 100px;
      position: relative;
      overflow: hidden;
    }

    .chart-bars {
      display: flex;
      align-items: flex-end;
      gap: 5px;
      height: 70px;
    }

    .chart-bar {
      flex: 1;
      border-radius: 4px 4px 0 0;
      background: var(--primary-light);
      transition: height .3s;
    }

    .chart-bar.active {
      background: var(--primary);
    }

    .db-tasks {
      margin-top: 1rem;
    }

    .db-task-item {
      display: flex;
      align-items: center;
      gap: .65rem;
      padding: .5rem .2rem;
      border-bottom: 1px solid var(--border);
      font-size: .78rem;
    }

    .db-task-item:last-child {
      border-bottom: none;
    }

    .task-check {
      width: 16px;
      height: 16px;
      border-radius: 50%;
      border: 2px solid var(--border);
      flex-shrink: 0;
    }

    .task-check.done {
      background: var(--accent);
      border-color: var(--accent);
    }

    .task-label {
      flex: 1;
      color: var(--text);
    }

    .task-badge {
      font-size: .65rem;
      font-weight: 600;
      padding: .15rem .5rem;
      border-radius: 20px;
    }

    .tb-high {
      background: #fff0f0;
      color: #e74c3c;
    }

    .tb-med {
      background: #fff8e1;
      color: #f39c12;
    }

    .tb-low {
      background: #e8f8f2;
      color: #27ae60;
    }

    .float-card {
      position: absolute;
      background: #fff;
      border-radius: 12px;
      box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
      padding: .65rem 1rem;
      font-size: .75rem;
      font-weight: 600;
      color: var(--dark);
      display: flex;
      align-items: center;
      gap: .5rem;
      animation: floatBob 4s ease-in-out infinite;
      z-index: 3;
    }

    .float-card.fc-1 {
      top: 12%;
      right: -5%;
      animation-delay: 0s;
    }

    .float-card.fc-2 {
      bottom: 20%;
      left: -6%;
      animation-delay: 1.5s;
    }

    .float-card .fc-icon {
      width: 28px;
      height: 28px;
      border-radius: 8px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: .85rem;
    }

    .fc-icon.green {
      background: #e8f8f2;
      color: #27ae60;
    }

    .fc-icon.blue {
      background: var(--primary-light);
      color: var(--primary);
    }

    /* ── SECTION COMMON ── */
    section {
      padding: 90px 0;
    }

    .section-label {
      font-size: .78rem;
      font-weight: 700;
      letter-spacing: .1em;
      text-transform: uppercase;
      color: var(--primary);
      margin-bottom: .65rem;
    }

    .section-title {
      font-size: clamp(1.9rem, 3.5vw, 2.6rem);
      font-weight: 800;
      color: var(--dark);
      line-height: 1.2;
    }

    .section-sub {
      font-size: 1rem;
      color: var(--muted);
      max-width: 560px;
      margin: 1rem auto 0;
      line-height: 1.7;
    }

    /* ── FEATURES ── */
    #features {
      background: var(--bg);
    }

    .feature-card {
      background: #fff;
      border-radius: 18px;
      padding: 2rem 1.75rem;
      border: 1px solid var(--border);
      box-shadow: var(--card-shadow);
      transition: transform .3s, box-shadow .3s, border-color .3s;
      height: 100%;
    }

    .feature-card:hover {
      transform: translateY(-6px);
      box-shadow: var(--card-shadow-hover);
      border-color: rgba(26, 110, 245, 0.2);
    }

    .feature-icon {
      width: 52px;
      height: 52px;
      border-radius: 14px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.4rem;
      margin-bottom: 1.2rem;
    }

    .fi-blue {
      background: var(--primary-light);
      color: var(--primary);
    }

    .fi-green {
      background: #e8f8f2;
      color: #27ae60;
    }

    .fi-orange {
      background: #fff3e8;
      color: #f07e22;
    }

    .fi-purple {
      background: #f0ecff;
      color: #7c4dff;
    }

    .fi-teal {
      background: #e0f7f5;
      color: #00b09b;
    }

    .fi-red {
      background: #fff0f0;
      color: #e74c3c;
    }

    .fi-indigo {
      background: #eef2ff;
      color: #4f46e5;
    }

    .fi-pink {
      background: #fdf0f8;
      color: #c84b8f;
    }

    .fi-cyan {
      background: #e0f8ff;
      color: #0891b2;
    }

    .feature-card h5 {
      font-size: 1rem;
      font-weight: 700;
      margin-bottom: .5rem;
      color: var(--dark);
    }

    .feature-card p {
      font-size: .875rem;
      color: var(--muted);
      line-height: 1.65;
    }

    /* ── DASHBOARD PREVIEW ── */
    #preview {
      background: #fff;
    }

    .preview-wrapper {
      background: linear-gradient(135deg, var(--dark) 0%, var(--dark-2) 100%);
      border-radius: 24px;
      padding: 2.5rem;
      box-shadow: 0 30px 80px rgba(13, 27, 62, 0.25);
      position: relative;
      overflow: hidden;
    }

    .preview-wrapper::before {
      content: '';
      position: absolute;
      top: -100px;
      right: -100px;
      width: 300px;
      height: 300px;
      background: radial-gradient(circle, rgba(26, 110, 245, 0.3) 0%, transparent 70%);
      border-radius: 50%;
    }

    .preview-topbar {
      display: flex;
      align-items: center;
      gap: 1rem;
      margin-bottom: 1.5rem;
    }

    .preview-topbar .dots {
      display: flex;
      gap: .4rem;
    }

    .preview-topbar .dot {
      width: 10px;
      height: 10px;
      border-radius: 50%;
    }

    .dot-r {
      background: #ff5f57;
    }

    .dot-y {
      background: #ffbd2e;
    }

    .dot-g {
      background: #28c940;
    }

    .preview-topbar span {
      font-size: .75rem;
      color: rgba(255, 255, 255, 0.4);
      margin-left: auto;
    }

    .kpi-row {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 1rem;
      margin-bottom: 1.5rem;
    }

    .kpi-card {
      background: rgba(255, 255, 255, 0.07);
      border-radius: 14px;
      padding: 1.2rem 1rem;
      border: 1px solid rgba(255, 255, 255, 0.1);
    }

    .kpi-label {
      font-size: .7rem;
      color: rgba(255, 255, 255, .5);
      font-weight: 500;
      margin-bottom: .4rem;
    }

    .kpi-value {
      font-size: 1.6rem;
      font-weight: 800;
      color: #fff;
    }

    .kpi-change {
      font-size: .7rem;
      font-weight: 600;
      margin-top: .3rem;
    }

    .up {
      color: #2ecc71;
    }

    .down {
      color: #e74c3c;
    }

    .chart-row {
      display: grid;
      grid-template-columns: 2fr 1fr;
      gap: 1rem;
    }

    .chart-panel {
      background: rgba(255, 255, 255, 0.06);
      border-radius: 14px;
      padding: 1.2rem;
      border: 1px solid rgba(255, 255, 255, 0.08);
    }

    .chart-panel-title {
      font-size: .78rem;
      color: rgba(255, 255, 255, .6);
      font-weight: 600;
      margin-bottom: 1rem;
    }

    .sales-bars {
      display: flex;
      align-items: flex-end;
      gap: 6px;
      height: 90px;
    }

    .sales-bar {
      flex: 1;
      border-radius: 5px 5px 0 0;
      opacity: .7;
      transition: opacity .2s;
    }

    .sales-bar:hover {
      opacity: 1;
    }

    .customer-list {}

    .cl-item {
      display: flex;
      align-items: center;
      gap: .65rem;
      padding: .55rem 0;
      border-bottom: 1px solid rgba(255, 255, 255, .06);
      font-size: .75rem;
    }

    .cl-item:last-child {
      border-bottom: none;
    }

    .cl-avatar {
      width: 28px;
      height: 28px;
      border-radius: 50%;
      font-size: .65rem;
      font-weight: 700;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
    }

    .cl-name {
      color: rgba(255, 255, 255, .85);
      font-weight: 500;
      flex: 1;
    }

    .cl-amount {
      color: #2ecc71;
      font-weight: 600;
    }

    /* ── HOW IT WORKS ── */
    #how {
      background: var(--bg);
    }

    .steps-container {
      position: relative;
    }

    .steps-line {
      position: absolute;
      top: 28px;
      left: calc(10% + 20px);
      right: calc(10% + 20px);
      height: 2px;
      background: linear-gradient(90deg, var(--primary), var(--accent));
      z-index: 0;
    }

    .step-col {
      position: relative;
      z-index: 1;
      text-align: center;
    }

    .step-num {
      width: 56px;
      height: 56px;
      border-radius: 50%;
      background: var(--primary);
      color: #fff;
      font-size: 1.1rem;
      font-weight: 800;
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 1.1rem;
      box-shadow: 0 6px 20px rgba(26, 110, 245, 0.4);
      border: 3px solid #fff;
      transition: transform .3s;
    }

    .step-col:hover .step-num {
      transform: scale(1.12);
    }

    .step-icon-wrap {
      width: 52px;
      height: 52px;
      border-radius: 14px;
      background: var(--primary-light);
      color: var(--primary);
      font-size: 1.3rem;
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto .9rem;
    }

    .step-label {
      font-weight: 700;
      font-size: .92rem;
      color: var(--dark);
      margin-bottom: .3rem;
    }

    .step-desc {
      font-size: .8rem;
      color: var(--muted);
      line-height: 1.55;
    }

    .step-card {
      background: #fff;
      border-radius: 16px;
      padding: 1.5rem 1rem;
      box-shadow: var(--card-shadow);
      border: 1px solid var(--border);
      transition: transform .3s, box-shadow .3s;
    }

    .step-card:hover {
      transform: translateY(-5px);
      box-shadow: var(--card-shadow-hover);
    }

    /* ── PRICING ── */
    #pricing {
      background: #fff;
    }

    .pricing-card {
      background: #fff;
      border-radius: 22px;
      border: 1.5px solid var(--border);
      padding: 2.5rem 2rem;
      transition: transform .3s, box-shadow .3s;
      height: 100%;
      position: relative;
    }

    .pricing-card:hover {
      transform: translateY(-6px);
      box-shadow: var(--card-shadow-hover);
    }

    .pricing-card.highlighted {
      background: var(--primary);
      border-color: var(--primary);
      box-shadow: 0 20px 60px rgba(26, 110, 245, 0.35);
    }

    .pricing-card.highlighted * {
      color: #fff !important;
    }

    .pricing-card.highlighted .pricing-feature i {
      color: rgba(255, 255, 255, .8) !important;
    }

    .pricing-card.highlighted .btn-plan {
      background: #fff;
      color: var(--primary) !important;
      border-color: #fff;
    }

    .pricing-card.highlighted .btn-plan:hover {
      background: rgba(255, 255, 255, .9);
    }

    .popular-badge {
      position: absolute;
      top: -14px;
      left: 50%;
      transform: translateX(-50%);
      background: var(--accent);
      color: #fff;
      font-size: .72rem;
      font-weight: 700;
      padding: .3rem 1.1rem;
      border-radius: 50px;
      letter-spacing: .05em;
      text-transform: uppercase;
    }

    .plan-name {
      font-size: .8rem;
      font-weight: 700;
      letter-spacing: .08em;
      text-transform: uppercase;
      color: var(--primary);
      margin-bottom: .5rem;
    }

    .pricing-card.highlighted .plan-name {
      color: rgba(255, 255, 255, .8) !important;
    }

    .plan-price {
      font-size: 2.8rem;
      font-weight: 800;
      color: var(--dark);
      line-height: 1;
    }

    .plan-price span {
      font-size: 1rem;
      font-weight: 500;
      color: var(--muted);
    }

    .plan-desc {
      font-size: .85rem;
      color: var(--muted);
      margin: .8rem 0 1.5rem;
    }

    .pricing-features {
      list-style: none;
      padding: 0;
      margin-bottom: 2rem;
    }

    .pricing-feature {
      display: flex;
      align-items: center;
      gap: .7rem;
      font-size: .875rem;
      padding: .5rem 0;
      border-bottom: 1px solid rgba(0, 0, 0, .05);
      color: var(--text);
    }

    .pricing-feature:last-child {
      border-bottom: none;
    }

    .pricing-feature i {
      color: var(--accent);
      font-size: .9rem;
    }

    .btn-plan {
      display: block;
      width: 100%;
      text-align: center;
      padding: .85rem;
      border-radius: 12px;
      font-weight: 700;
      font-size: .95rem;
      background: var(--primary-light);
      color: var(--primary);
      border: 1.5px solid transparent;
      transition: all .25s;
      text-decoration: none;
    }

    .btn-plan:hover {
      background: var(--primary);
      color: #fff;
      border-color: var(--primary);
    }

    /* ── CTA ── */
    #cta {
      background: linear-gradient(135deg, var(--dark) 0%, var(--dark-2) 100%);
      padding: 100px 0;
      position: relative;
      overflow: hidden;
    }

    #cta::before {
      content: '';
      position: absolute;
      top: -150px;
      left: -150px;
      width: 400px;
      height: 400px;
      background: radial-gradient(circle, rgba(26, 110, 245, 0.3) 0%, transparent 70%);
      border-radius: 50%;
    }

    #cta::after {
      content: '';
      position: absolute;
      bottom: -100px;
      right: -100px;
      width: 350px;
      height: 350px;
      background: radial-gradient(circle, rgba(0, 194, 168, 0.2) 0%, transparent 70%);
      border-radius: 50%;
    }

    #cta .section-title {
      color: #fff;
    }

    #cta .section-sub {
      color: rgba(255, 255, 255, .65);
    }

    .btn-cta-white {
      background: #fff;
      color: var(--primary);
      font-weight: 700;
      border-radius: 12px;
      padding: .9rem 2.4rem;
      font-size: 1.05rem;
      border: none;
      box-shadow: 0 8px 28px rgba(0, 0, 0, 0.2);
      transition: all .25s;
      display: inline-block;
      text-decoration: none;
    }

    .btn-cta-white:hover {
      transform: translateY(-2px);
      box-shadow: 0 14px 40px rgba(0, 0, 0, 0.3);
      color: var(--primary-dark);
    }

    /* ── FOOTER ── */
    footer {
      background: var(--dark);
      padding: 70px 0 30px;
      color: rgba(255, 255, 255, .6);
    }

    .footer-brand {
      font-size: 1.4rem;
      font-weight: 800;
      color: #fff;
    }

    .footer-desc {
      font-size: .875rem;
      line-height: 1.7;
      margin-top: .65rem;
      max-width: 240px;
    }

    .footer-col-title {
      color: #fff;
      font-weight: 700;
      font-size: .9rem;
      margin-bottom: 1.1rem;
      letter-spacing: .03em;
    }

    .footer-links {
      list-style: none;
      padding: 0;
    }

    .footer-links li {
      margin-bottom: .55rem;
    }

    .footer-links a {
      color: rgba(255, 255, 255, .55);
      font-size: .875rem;
      text-decoration: none;
      transition: color .2s;
    }

    .footer-links a:hover {
      color: var(--primary);
    }

    .social-icons {
      display: flex;
      gap: .65rem;
      margin-top: 1.2rem;
    }

    .social-icon {
      width: 36px;
      height: 36px;
      border-radius: 10px;
      background: rgba(255, 255, 255, .07);
      color: rgba(255, 255, 255, .6);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: .9rem;
      text-decoration: none;
      border: 1px solid rgba(255, 255, 255, .1);
      transition: all .2s;
    }

    .social-icon:hover {
      background: var(--primary);
      color: #fff;
      border-color: var(--primary);
    }

    .footer-divider {
      border-color: rgba(255, 255, 255, .08);
      margin: 2.5rem 0 1.5rem;
    }

    .footer-copy {
      font-size: .8rem;
      color: rgba(255, 255, 255, .35);
    }

    /* ── ANIMATIONS ── */
    @keyframes fadeUp {
      from {
        opacity: 0;
        transform: translateY(24px);
      }

      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    @keyframes fadeDown {
      from {
        opacity: 0;
        transform: translateY(-12px);
      }

      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    @keyframes floatUp {
      from {
        opacity: 0;
        transform: translateY(40px);
      }

      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    @keyframes floatBob {

      0%,
      100% {
        transform: translateY(0);
      }

      50% {
        transform: translateY(-8px);
      }
    }

    .animate-on-scroll {
      opacity: 0;
      transform: translateY(30px);
      transition: opacity .6s ease, transform .6s ease;
    }

    .animate-on-scroll.visible {
      opacity: 1;
      transform: translateY(0);
    }

    /* ── RESPONSIVE ── */
    @media (max-width: 991px) {
      #hero {
        padding: 80px 0 60px;
      }

      .hero-title {
        font-size: 2.2rem;
      }

      .kpi-row {
        grid-template-columns: repeat(2, 1fr);
      }

      .chart-row {
        grid-template-columns: 1fr;
      }

      .steps-line {
        display: none;
      }
    }

    @media (max-width: 767px) {
      section {
        padding: 65px 0;
      }

      .hero-stats {
        gap: 1.5rem;
      }

      .kpi-row {
        grid-template-columns: repeat(2, 1fr);
      }

      .float-card {
        display: none;
      }

      .db-stats-row {
        grid-template-columns: repeat(3, 1fr);
      }
    }

    @media (max-width: 575px) {
      .kpi-row {
        grid-template-columns: 1fr 1fr;
      }
    }