:root {
      --navy: #0A1433;
      --blue: #2563FF;
      --blue-dark: #1557F5;
      --indigo: #4F46E5;
      --cloud: #F4F6FA;
      --slate: #64748B;
      --border: #DDE4F0;
      --teal: #10B981;
      --soft-indigo: #EEF2FF;
      --white: #FFFFFF;
      --radius-lg: 28px;
      --radius-md: 20px;
      --shadow-soft: 0 20px 60px rgba(10, 20, 51, .08);
      --shadow-card: 0 10px 30px rgba(10, 20, 51, .06);
    }

    * {
      box-sizing: border-box;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      margin: 0;
      font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
      color: var(--navy);
      background: var(--white);
      -webkit-font-smoothing: antialiased;
      text-rendering: optimizeLegibility;
    }

    a {
      color: inherit;
      text-decoration: none;
    }

    button,
    input,
    textarea {
      font: inherit;
    }

    .container {
      width: min(1120px, calc(100% - 40px));
      margin: 0 auto;
    }

    .header {
      position: sticky;
      top: 0;
      z-index: 40;
      background: rgba(255, 255, 255, .92);
      backdrop-filter: blur(16px);
      border-bottom: 1px solid rgba(221, 228, 240, .9);
    }

    .header-inner {
      min-height: 72px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 24px;
    }

    .logo {
      display: inline-flex;
      align-items: baseline;
      font-size: 30px;
      font-weight: 850;
      letter-spacing: -0.055em;
      line-height: 1;
    }

    .logo span {
      color: var(--blue);
    }

    .nav {
      display: flex;
      align-items: center;
      gap: 26px;
      font-size: 14px;
      font-weight: 700;
    }

    .nav a {
      color: rgba(10, 20, 51, .82);
      transition: color .18s ease;
    }

    .nav a:hover {
      color: var(--blue);
    }

    .btn {
      min-height: 48px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 9px;
      border-radius: 14px;
      padding: 0 20px;
      font-size: 15px;
      font-weight: 750;
      border: 1px solid transparent;
      cursor: pointer;
      transition: transform .2s ease, background .2s ease, border-color .2s ease, box-shadow .2s ease;
      white-space: nowrap;
    }

    .btn:hover {
      transform: translateY(-2px);
    }

    .btn-primary {
      background: var(--blue);
      color: white;
      box-shadow: 0 14px 30px rgba(37, 99, 255, .22);
    }

    .btn-primary:hover {
      background: var(--blue-dark);
    }

    .btn-secondary {
      background: white;
      color: var(--blue);
      border-color: rgba(37, 99, 255, .35);
    }

    .btn-secondary:hover {
      background: var(--soft-indigo);
    }

    .pill {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      border-radius: 999px;
      border: 1px solid rgba(37, 99, 255, .24);
      background: var(--soft-indigo);
      color: var(--blue);
      padding: 7px 12px;
      font-size: 12px;
      font-weight: 800;
      line-height: 1;
    }

    .pill-neutral {
      color: var(--slate);
      background: white;
      border-color: var(--border);
    }

    .pill-green {
      color: #047857;
      background: #ECFDF5;
      border-color: rgba(16, 185, 129, .25);
    }

    .hero {
      position: relative;
      overflow: hidden;
      padding: 72px 0 56px;
    }

    .hero::before {
      content: "";
      position: absolute;
      right: -120px;
      top: 40px;
      width: 520px;
      height: 520px;
      background: var(--soft-indigo);
      border-radius: 999px;
      filter: blur(65px);
      opacity: .95;
      pointer-events: none;
    }

    .hero-grid {
      position: relative;
      display: grid;
      grid-template-columns: .96fr .84fr;
      align-items: center;
      gap: 64px;
    }

    .hero h1 {
      margin: 24px 0 0;
      max-width: 690px;
      font-size: clamp(46px, 6vw, 72px);
      line-height: 1.02;
      letter-spacing: -0.062em;
      font-weight: 780;
    }

    .hero h1 .accent {
      color: var(--indigo);
    }

    .hero p {
      max-width: 660px;
      margin: 24px 0 0;
      color: rgba(10, 20, 51, .72);
      font-size: 18px;
      line-height: 1.78;
    }

    .hero-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
      margin-top: 32px;
    }

    .hero-proof {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      gap: 18px;
      margin-top: 28px;
      color: rgba(10, 20, 51, .72);
      font-size: 14px;
      font-weight: 650;
    }

    .proof-item {
      display: inline-flex;
      align-items: center;
      gap: 8px;
    }

    .check {
      color: var(--teal);
      font-weight: 900;
    }

    .infinity {
      color: var(--blue);
      font-weight: 900;
      font-size: 18px;
      line-height: 0;
    }

    .a3 {
      color: #16A34A;
      font-size: 24px;
      font-weight: 900;
      letter-spacing: -0.04em;
    }

    .holded {
      color: var(--navy);
      font-size: 15px;
      font-weight: 900;
      letter-spacing: -0.03em;
    }

    .small-note {
      display: block;
      margin-top: 10px;
      color: var(--slate);
      font-size: 14px;
    }

    .mockup-wrap {
      position: relative;
      max-width: 510px;
      margin-left: auto;
    }

    .mockup-card {
      background: white;
      border: 1px solid var(--border);
      border-radius: var(--radius-lg);
      box-shadow: 0 28px 80px rgba(10, 20, 51, .12);
      padding: 22px;
    }

    .mockup-card.secondary {
      position: relative;
      z-index: 2;
      width: 88%;
      margin: -30px 0 0 auto;
      border-radius: 24px;
    }

    .mockup-top {
      display: flex;
      justify-content: space-between;
      align-items: flex-start;
      gap: 18px;
      margin-bottom: 18px;
    }

    .mockup-title {
      margin: 0;
      font-size: 14px;
      font-weight: 800;
    }

    .mockup-subtitle {
      margin: 5px 0 0;
      color: var(--slate);
      font-size: 12px;
    }

    .progress-label {
      color: var(--blue);
      font-weight: 800;
      font-size: 14px;
    }

    .progress {
      height: 8px;
      border-radius: 999px;
      background: #E6ECF5;
      overflow: hidden;
      margin-bottom: 20px;
    }

    .progress span {
      display: block;
      height: 100%;
      width: 53%;
      background: var(--blue);
      border-radius: inherit;
    }

    .steps-list {
      border-top: 1px solid var(--border);
      padding-top: 18px;
      display: grid;
      gap: 14px;
      font-size: 14px;
    }

    .step-line {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 16px;
    }

    .step-left {
      display: flex;
      align-items: center;
      gap: 11px;
    }

    .status-icon {
      width: 17px;
      height: 17px;
      border-radius: 999px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      flex: 0 0 auto;
      font-size: 11px;
    }

    .status-done {
      background: #ECFDF5;
      color: #047857;
    }

    .status-loading {
      border: 2px solid rgba(37, 99, 255, .2);
      border-top-color: var(--blue);
      animation: spin 1s linear infinite;
    }

    .status-pending {
      background: #EEF2F7;
      color: #94A3B8;
    }

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

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

    .metric {
      background: var(--cloud);
      border: 1px solid var(--border);
      border-radius: 18px;
      padding: 16px;
    }

    .metric-label {
      margin: 0;
      color: var(--slate);
      font-size: 11px;
      font-weight: 650;
    }

    .metric-value {
      margin: 8px 0 0;
      font-size: 18px;
      font-weight: 850;
      letter-spacing: -0.035em;
    }

    .metric-value.red {
      color: #EF4444;
    }

    .inline-link {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      margin-top: 18px;
      color: var(--blue);
      font-size: 14px;
      font-weight: 800;
    }

    .feature-strip {
      position: relative;
      margin-top: 64px;
      background: white;
      border: 1px solid var(--border);
      border-radius: var(--radius-lg);
      padding: 28px;
      box-shadow: var(--shadow-card);
    }

    .feature-strip-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 24px;
      text-align: center;
    }

    .feature-icon {
      width: 58px;
      height: 58px;
      margin: 0 auto 15px;
      border-radius: 999px;
      background: var(--soft-indigo);
      color: var(--indigo);
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 0 0 8px #F7F8FC;
      font-size: 24px;
    }

    .feature-strip h3,
    .benefit-card h3,
    .step-card h3,
    .security-card h3 {
      margin: 0;
      font-size: 16px;
      font-weight: 800;
      letter-spacing: -0.02em;
    }

    .feature-strip p,
    .benefit-card p,
    .step-card p,
    .security-card p {
      margin: 10px auto 0;
      color: var(--slate);
      font-size: 14px;
      line-height: 1.7;
    }

    section {
      padding: 92px 0;
    }

    section.cloud {
      background: var(--cloud);
    }

    .eyebrow {
      margin: 0 0 12px;
      color: var(--blue);
      font-size: 13px;
      font-weight: 850;
      letter-spacing: .12em;
      text-transform: uppercase;
    }

    .section-title {
      margin: 0;
      font-size: clamp(32px, 4vw, 44px);
      line-height: 1.1;
      letter-spacing: -0.045em;
      font-weight: 760;
    }

    .section-text {
      margin: 20px 0 0;
      color: var(--slate);
      font-size: 17px;
      line-height: 1.8;
    }

    .center {
      text-align: center;
      max-width: 780px;
      margin: 0 auto;
    }

    .two-col {
      display: grid;
      grid-template-columns: .95fr 1.05fr;
      gap: 64px;
      align-items: center;
    }

    .account-board {
      background: white;
      border: 1px solid var(--border);
      border-radius: var(--radius-lg);
      padding: 24px;
      box-shadow: var(--shadow-card);
    }

    .account-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 14px;
    }

    .account-card {
      background: var(--cloud);
      border: 1px solid var(--border);
      border-radius: var(--radius-md);
      padding: 18px;
    }

    .account-header {
      display: flex;
      justify-content: space-between;
      gap: 12px;
      align-items: flex-start;
    }

    .account-card strong {
      font-weight: 850;
    }

    .account-amount {
      color: var(--blue);
      font-weight: 850;
      white-space: nowrap;
    }

    .account-card p {
      margin: 10px 0 16px;
      color: var(--slate);
      font-size: 14px;
    }

    .steps-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 18px;
      margin-top: 54px;
    }

    .step-card,
    .benefit-card,
    .pricing-card,
    .security-card {
      background: white;
      border: 1px solid var(--border);
      border-radius: var(--radius-lg);
      padding: 28px;
      box-shadow: var(--shadow-card);
    }

    .step-number {
      display: flex;
      width: 42px;
      height: 42px;
      align-items: center;
      justify-content: center;
      border-radius: 999px;
      background: var(--blue);
      color: white;
      font-size: 15px;
      font-weight: 900;
      margin-bottom: 20px;
    }

    .card-icon {
      width: 28px;
      height: 28px;
      color: var(--blue);
      margin-bottom: 18px;
    }

    .product-panel {
      margin-top: 52px;
      display: grid;
      grid-template-columns: 1fr .8fr;
      gap: 18px;
    }

    .panel {
      background: white;
      border: 1px solid var(--border);
      border-radius: 30px;
      box-shadow: var(--shadow-card);
      padding: 26px;
    }

    .panel-head {
      display: flex;
      align-items: flex-start;
      justify-content: space-between;
      gap: 18px;
      margin-bottom: 22px;
    }

    .panel-head h3 {
      margin: 0;
      font-size: 17px;
      font-weight: 850;
    }

    .panel-head p {
      margin: 5px 0 0;
      color: var(--slate);
      font-size: 14px;
    }

    .panel-amount {
      font-size: 26px;
      color: var(--blue);
      font-weight: 850;
      letter-spacing: -0.04em;
      white-space: nowrap;
    }

    .table-wrap {
      overflow-x: auto;
      border-radius: 20px;
      border: 1px solid var(--border);
    }

    table {
      width: 100%;
      min-width: 560px;
      border-collapse: collapse;
      text-align: left;
      font-size: 14px;
    }

    thead {
      background: var(--cloud);
      color: var(--slate);
      font-size: 12px;
    }

    th,
    td {
      padding: 14px;
      border-bottom: 1px solid var(--border);
    }

    tbody tr:last-child td {
      border-bottom: 0;
    }

    td strong {
      font-weight: 850;
    }

    .text-right {
      text-align: right;
    }

    .report-blocks {
      display: grid;
      gap: 14px;
    }

    .report-block {
      display: flex;
      align-items: center;
      gap: 16px;
      background: var(--cloud);
      border-radius: 18px;
      padding: 16px;
    }

    .report-block-icon {
      font-size: 23px;
      color: var(--blue);
    }

    .report-block h4 {
      margin: 0;
      font-size: 15px;
      font-weight: 850;
    }

    .report-block p {
      margin: 4px 0 0;
      color: var(--slate);
      font-size: 14px;
    }

    .benefits-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 18px;
      margin-top: 52px;
    }

    .benefit-icon {
      width: 52px;
      height: 52px;
      display: flex;
      align-items: center;
      justify-content: center;
      background: var(--soft-indigo);
      color: var(--indigo);
      border-radius: 999px;
      font-size: 24px;
      margin-bottom: 18px;
    }

    .demo-grid {
      display: grid;
      grid-template-columns: .9fr 1.1fr;
      gap: 64px;
      align-items: center;
    }

    .report-demo {
      background: white;
      border: 1px solid var(--border);
      border-radius: 30px;
      padding: 26px;
      box-shadow: var(--shadow-soft);
    }

    .report-inner {
      border: 1px solid var(--border);
      border-radius: 22px;
      padding: 22px;
    }

    .report-total {
      display: flex;
      align-items: flex-start;
      justify-content: space-between;
      gap: 20px;
      border-bottom: 1px solid var(--border);
      padding-bottom: 18px;
    }

    .report-total span {
      color: var(--slate);
      font-size: 14px;
    }

    .report-total strong {
      color: var(--blue);
      font-size: 24px;
      letter-spacing: -0.04em;
    }

    .report-summary-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 22px;
      margin-top: 22px;
    }

    .report-summary-grid h4 {
      margin: 0;
      font-size: 15px;
      font-weight: 850;
    }

    .report-summary-grid p {
      margin: 9px 0 0;
      color: var(--slate);
      font-size: 14px;
      line-height: 1.65;
    }

    .security-box {
      background: var(--cloud);
      border: 1px solid var(--border);
      border-radius: 30px;
      padding: 42px;
    }

    .security-grid {
      display: grid;
      grid-template-columns: .82fr 1.18fr;
      gap: 42px;
      align-items: start;
    }

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

    .pricing-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 18px;
      margin-top: 52px;
    }

    .pricing-card.highlighted {
      background: var(--navy);
      color: white;
      border-color: var(--blue);
      box-shadow: 0 24px 80px rgba(10, 20, 51, .18);
      position: relative;
    }

    .recommended {
      position: absolute;
      right: 22px;
      top: 22px;
      border-radius: 999px;
      background: var(--blue);
      color: white;
      padding: 7px 11px;
      font-size: 11px;
      font-weight: 850;
    }

    .pricing-card h3 {
      margin: 0;
      font-size: 26px;
      letter-spacing: -0.04em;
    }

    .price {
      display: flex;
      align-items: flex-end;
      gap: 5px;
      margin-top: 20px;
    }

    .price strong {
      font-size: 52px;
      line-height: .95;
      letter-spacing: -0.06em;
    }

    .price span {
      color: var(--slate);
      font-size: 14px;
      padding-bottom: 6px;
    }

    .highlighted .price span,
    .highlighted .plan-description {
      color: rgba(255, 255, 255, .66);
    }

    .plan-description {
      color: var(--slate);
      line-height: 1.7;
      margin: 18px 0 0;
    }

    .plan-features {
      margin: 26px 0 0;
      padding: 0;
      list-style: none;
      display: grid;
      gap: 13px;
      font-size: 14px;
    }

    .plan-features li {
      display: flex;
      align-items: center;
      gap: 10px;
    }

    .pricing-note {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 18px;
      background: white;
      border: 1px solid var(--border);
      border-radius: var(--radius-lg);
      padding: 24px;
      margin-top: 28px;
      box-shadow: var(--shadow-card);
    }

    .pricing-note-item {
      display: flex;
      align-items: center;
      gap: 12px;
      font-weight: 700;
    }

    .pricing-note-icon {
      color: var(--blue);
      font-size: 22px;
    }

    .faq {
      max-width: 860px;
      margin: 52px auto 0;
      display: grid;
      gap: 12px;
    }

    .faq-item {
      background: white;
      border: 1px solid var(--border);
      border-radius: 22px;
      overflow: hidden;
    }

    .faq-question {
      width: 100%;
      background: transparent;
      border: 0;
      color: var(--navy);
      display: flex;
      justify-content: space-between;
      gap: 20px;
      padding: 20px;
      text-align: left;
      cursor: pointer;
      font-weight: 800;
    }

    .faq-answer {
      display: none;
      padding: 0 20px 20px;
      color: var(--slate);
      line-height: 1.7;
    }

    .faq-item.open .faq-answer {
      display: block;
    }

    .faq-toggle {
      color: var(--blue);
      font-size: 20px;
      line-height: 1;
    }

    .final-cta {
      padding-top: 0;
    }

    .final-box {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 30px;
      border: 1px solid rgba(79, 70, 229, .28);
      background: #F7F8FF;
      border-radius: 30px;
      padding: 40px;
    }

    .final-content {
      display: flex;
      gap: 20px;
      align-items: flex-start;
    }

    .final-icon {
      width: 64px;
      height: 64px;
      flex: 0 0 auto;
      border-radius: 999px;
      background: var(--indigo);
      color: white;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 28px;
    }

    .final-box h2 {
      margin: 0;
      font-size: clamp(26px, 3vw, 36px);
      line-height: 1.15;
      letter-spacing: -0.04em;
    }

    .final-box p {
      margin: 10px 0 0;
      color: var(--slate);
      line-height: 1.7;
      max-width: 680px;
    }

    .footer {
      border-top: 1px solid var(--border);
      padding: 32px 0;
      background: white;
    }

    .footer-inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 24px;
      color: var(--slate);
      font-size: 14px;
    }

    .footer-links {
      display: flex;
      gap: 22px;
    }

    .fade-in {
      opacity: 0;
      transform: translateY(18px);
      transition: opacity .65s ease, transform .65s ease;
    }

    .fade-in.visible {
      opacity: 1;
      transform: translateY(0);
    }



    .header-actions {
      display: flex;
      align-items: center;
      gap: 12px;
    }

    .login-link {
      color: var(--navy);
      font-size: 14px;
      font-weight: 800;
      transition: color .18s ease;
    }

    .login-link:hover {
      color: var(--blue);
    }

    .logo-img {
      display: block;
      height: 42px;
      width: auto;
      max-width: 178px;
      object-fit: contain;
    }

    .footer-logo-img {
      display: block;
      height: 34px;
      width: auto;
      max-width: 148px;
      object-fit: contain;
    }

    .mobile-menu-btn {
      display: none;
      width: 44px;
      height: 44px;
      border: 1px solid var(--border);
      border-radius: 12px;
      background: white;
      color: var(--navy);
      font-size: 22px;
      font-weight: 800;
      cursor: pointer;
    }

    .mobile-nav {
      display: none;
      border-top: 1px solid var(--border);
      background: white;
      padding: 12px 0 18px;
    }

    .mobile-nav.open {
      display: block;
    }

    .mobile-nav a {
      display: block;
      padding: 12px 0;
      font-size: 15px;
      font-weight: 750;
      color: var(--navy);
    }

    .modal-backdrop {
      position: fixed;
      inset: 0;
      z-index: 90;
      display: none;
      align-items: center;
      justify-content: center;
      padding: 20px;
      background: rgba(10, 20, 51, .62);
      backdrop-filter: blur(8px);
    }

    .modal-backdrop.open {
      display: flex;
    }

    .modal {
      width: min(880px, 100%);
      max-height: min(760px, 88vh);
      overflow: auto;
      background: white;
      border-radius: 28px;
      border: 1px solid var(--border);
      box-shadow: 0 30px 100px rgba(10, 20, 51, .28);
      padding: 28px;
    }

    .modal-header {
      display: flex;
      align-items: flex-start;
      justify-content: space-between;
      gap: 24px;
      margin-bottom: 22px;
    }

    .modal-close {
      width: 42px;
      height: 42px;
      border-radius: 12px;
      border: 1px solid var(--border);
      background: var(--cloud);
      cursor: pointer;
      font-size: 22px;
      line-height: 1;
    }

    .demo-report-content {
      border: 1px solid var(--border);
      border-radius: 22px;
      padding: 22px;
      background: #fff;
    }

    .demo-report-content h3 {
      margin: 0 0 6px;
      font-size: 22px;
      letter-spacing: -0.04em;
    }

    .demo-report-content h4 {
      margin: 24px 0 8px;
      font-size: 15px;
      text-transform: uppercase;
      letter-spacing: .08em;
      color: var(--blue);
    }

    .demo-report-content p,
    .demo-report-content li {
      color: var(--slate);
      line-height: 1.7;
    }

    .demo-report-content ul {
      padding-left: 18px;
    }

    .functional-note {
      margin-top: 14px;
      color: var(--slate);
      font-size: 13px;
      line-height: 1.6;
    }

    @media (max-width: 980px) {
      .nav {
        display: none;
      }

      .header .btn {
        display: none;
      }

  
    .header-actions {
      display: flex;
      align-items: center;
      gap: 12px;
    }

    .login-link {
      color: var(--navy);
      font-size: 14px;
      font-weight: 800;
      transition: color .18s ease;
    }

    .login-link:hover {
      color: var(--blue);
    }

    .logo-img {
      display: block;
      height: 42px;
      width: auto;
      max-width: 178px;
      object-fit: contain;
    }

    .footer-logo-img {
      display: block;
      height: 34px;
      width: auto;
      max-width: 148px;
      object-fit: contain;
    }

    .mobile-menu-btn {
        display: inline-flex;
        align-items: center;
        justify-content: center;
      }

      .hero-grid,
      .two-col,
      .demo-grid,
      .security-grid,
      .product-panel {
        grid-template-columns: 1fr;
      }

      .mockup-wrap {
        margin: 0 auto;
        width: min(100%, 540px);
      }

      .feature-strip-grid,
      .benefits-grid,
      .pricing-grid,
      .pricing-note {
        grid-template-columns: repeat(2, 1fr);
      }

      .hero {
        padding-top: 50px;
      }
    }

    @media (max-width: 680px) {
      .container {
        width: min(100% - 28px, 1120px);
      }

      section {
        padding: 72px 0;
      }

      .hero h1 {
        font-size: 43px;
      }

      .hero p,
      .section-text {
        font-size: 16px;
        line-height: 1.75;
      }

      .feature-strip,
      .account-board,
      .panel,
      .report-demo,
      .security-box,
      .final-box {
        padding: 22px;
        border-radius: 24px;
      }

      .feature-strip-grid,
      .account-grid,
      .steps-grid,
      .benefits-grid,
      .pricing-grid,
      .pricing-note,
      .security-cards,
      .report-summary-grid {
        grid-template-columns: 1fr;
      }

      .hero-actions,
      .hero-actions .btn,
      .btn {
        width: 100%;
      }

      .btn {
        white-space: normal;
        text-align: center;
      }

      .mockup-card.secondary {
        width: 100%;
      }

      .panel-head,
      .report-total,
      .final-box,
      .footer-inner {
        flex-direction: column;
        align-items: flex-start;
      }

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

      .footer-links {
        flex-wrap: wrap;
      }
    }


    .pricing-card .plan-button {
      width: 100%;
      margin-top: 30px;
    }

    .modal-subtitle {
      margin-top: 10px;
    }
