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

  :root {
    --red: #d93c2b;
    --red-light: #F9ECEA;
    --red-mid: #E74C3C;
    --red-dark: #922B21;
    --white: #ffffff;
    --off-white: #FAFAF8;
    --gray-100: #F4F3F0;
    --gray-200: #E8E7E3;
    --gray-400: #9E9B95;
    --gray-700: #3D3C39;
    --gray-900: #1C1B19;
    --font-display: 'DM Sans', sans-serif;
    --font-body: 'DM Sans', sans-serif;
    --radius: 12px;
    --radius-sm: 8px;
  }

  body {
    font-family: var(--font-body);
    background: var(--off-white);
    color: var(--gray-900);
    line-height: 1.7;
    font-size: 16px;
  }

  

  /* HERO */
  .hero {
    background: var(--white);
    border-bottom: 1px solid var(--gray-200);
    padding: 110px 7rem 64px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    overflow: hidden;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 60px;
    background: var(--wh);
  }
  .hero::before {
    content: '';
    position: absolute;
    top: -60px;
    right: -60px;
    width: 320px;
    height: 320px;
    border-radius: 50%;
    background: var(--red-light);
    opacity: 0.6;
    pointer-events: none;
  }
  .hero::after {
    content: '';
    position: absolute;
    bottom: -80px;
    left: -40px;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: var(--gray-100);
    pointer-events: none;
  }
  .hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--red);
    margin-bottom: 20px;
  }
  .hero-eyebrow span {
    width: 24px;
    height: 1px;
    background: var(--red);
    display: inline-block;
  }
  .hero h1 {
    font-family: var(--font-display);
    font-size: clamp(2.2rem, 5vw, 3.2rem);
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: -0.03em;
    color: var(--gray-900);
    max-width: 640px;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
  }
  .hero h1 em {
    font-style: normal;
    color: var(--red);
  }
  .hero-sub {
    font-size: 1.05rem;
    color: var(--gray-400);
    max-width: 520px;
    margin-bottom: 36px;
    font-weight: 300;
    position: relative;
    z-index: 1;
  }
  .hero-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--red);
    color: var(--white);
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 500;
    padding: 13px 28px;
    border-radius: var(--radius-sm);
    text-decoration: none;
    transition: background 0.18s;
    position: relative;
    z-index: 1;
  }
  .hero-cta:hover { background: var(--red-dark); }
  .hero-cta svg { width: 16px; height: 16px; }

  /* MOCK FILE CARD */
  .mock-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius);
    padding: 20px 24px;
    max-width: 480px;
    width: 100%;
    margin: 48px auto 0;
    text-align: left;
    position: relative;
    z-index: 2;
    box-shadow: 0 4px 24px rgba(0,0,0,0.06);
  }
  .mock-profile {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 18px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--gray-200);
  }
  .mock-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--red-light);
    color: var(--red-dark);
    font-weight: 500;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .mock-name { font-weight: 500; font-size: 15px; color: var(--gray-900); }
  .mock-role { font-size: 12px; color: var(--gray-400); }
  .mock-files-label {
    font-size: 11px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--gray-400);
    margin-bottom: 10px;
  }
  .mock-file-list { display: flex; flex-direction: column; gap: 8px; }
  .mock-file {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    background: var(--gray-100);
    border-radius: var(--radius-sm);
    font-size: 13px;
  }
  .mock-file-icon {
    width: 32px;
    height: 32px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 600;
    flex-shrink: 0;
  }
  .icon-pdf { background: #FEE2E2; color: #991B1B; }
  .icon-doc { background: #DBEAFE; color: #1E40AF; }
  .icon-xls { background: #D1FAE5; color: #065F46; }
  .mock-file-name { flex: 1; font-weight: 400; color: var(--gray-700); }
  .mock-file-size { font-size: 11px; color: var(--gray-400); }
  .mock-upload-btn {
    margin-top: 12px;
    width: 100%;
    padding: 10px;
    border: 1.5px dashed var(--gray-200);
    border-radius: var(--radius-sm);
    background: none;
    font-family: var(--font-body);
    font-size: 13px;
    color: var(--gray-400);
    cursor: pointer;
    text-align: center;
    transition: border-color 0.18s, color 0.18s;
  }
  .mock-upload-btn:hover { border-color: var(--red); color: var(--red); }

  /* MAIN CONTENT */
  /*.container {*/
  /*  max-width: 1000px;*/
  /*  margin: 0 auto;*/
  /*  padding: 0 2rem;*/
  /*}*/

  /* INTRO STRIP */
  .intro-strip {
    padding: 72px 0 48px;
    text-align: center;
  }
  .section-label {
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--red);
    margin-bottom: 12px;
  }
  .section-title {
    font-family: var(--font-display);
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    font-weight: 600;
    letter-spacing: -0.025em;
    color: var(--gray-900);
    margin-bottom: 16px;
  }
  .section-body {
    font-size: 1rem;
    color: var(--gray-400);
    max-width: 560px;
    margin: 0 auto;
    font-weight: 300;
  }

  /* FEATURES GRID */
  .features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    padding-bottom: 72px;
  }
  .feature-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius);
    padding: 28px 28px 24px;
    position: relative;
    overflow: hidden;
    transition: border-color 0.2s, box-shadow 0.2s;
  }
  .feature-card:hover {
    border-color: #E8C5C3;
    box-shadow: 0 4px 20px rgba(192,57,43,0.07);
  }
  .feature-card.accent {
    border-color: #E8C5C3;
    background: linear-gradient(135deg, #fff 70%, #FCECEA);
  }
  .feature-icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: var(--red-light);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
  }
  .feature-icon svg {
    width: 22px;
    height: 22px;
    stroke: var(--red);
    fill: none;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
  }
  .feature-title {
    font-size: 1.05rem;
    font-weight: 500;
    color: var(--gray-900);
    margin-bottom: 8px;
  }
  .feature-desc {
    font-size: 14px;
    color: var(--gray-400);
    font-weight: 300;
    line-height: 1.65;
  }

  /* FILE TYPES SECTION */
  .filetypes-section {
    background: var(--white);
    border-top: 1px solid var(--gray-200);
    border-bottom: 1px solid var(--gray-200);
    padding: 64px 0;
  }
  .filetypes-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
  }
  .filetypes-text .section-title { text-align: left; }
  .filetypes-text .section-label { text-align: left; }
  .filetypes-text .section-body { max-width: 400px; margin: 0 0 28px; text-align: left; }
  .filetype-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
  }
  .chip {
    font-size: 12px;
    font-weight: 500;
    padding: 5px 12px;
    border-radius: 100px;
    border: 1px solid var(--gray-200);
    background: var(--gray-100);
    color: var(--gray-700);
    transition: background 0.15s, border-color 0.15s, color 0.15s;
    cursor: default;
  }
  .chip:hover { background: var(--red-light); border-color: #E8C5C3; color: var(--red-dark); }
  .filetypes-visual {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
  }
  .ft-block {
    background: var(--gray-100);
    border-radius: var(--radius-sm);
    padding: 20px 12px;
    text-align: center;
    font-size: 12px;
    font-weight: 500;
    color: var(--gray-700);
    transition: background 0.18s;
  }
  .ft-block:hover { background: var(--red-light); color: var(--red-dark); }
  .ft-block .ext { font-size: 16px; font-weight: 600; margin-bottom: 4px; color: var(--gray-900); }

  /* WHY SECTION */
  .why-section { padding: 72px 0; }
  .why-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-top: 40px;
  }
  .why-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
  }
  .why-num {
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--red-light);
    color: var(--red-dark);
    font-size: 13px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 2px;
  }
  .why-content h3 { font-size: 1rem; font-weight: 500; color: var(--gray-900); margin-bottom: 6px; }
  .why-content p { font-size: 14px; color: var(--gray-400); font-weight: 300; line-height: 1.6; }

  /* CTA BANNER */
  .cta-banner {
    background: var(--gray-900);
    color: var(--white);
    padding: 64px 2rem;
    text-align: center;
  }
  .cta-banner h2 {
    font-family: var(--font-display);
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    font-weight: 600;
    letter-spacing: -0.025em;
    margin-bottom: 14px;
  }
  .cta-banner p {
    font-size: 15px;
    color: rgba(255,255,255,0.55);
    margin-bottom: 32px;
    font-weight: 300;
  }
  .cta-banner a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--red);
    color: var(--white);
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 500;
    padding: 13px 28px;
    border-radius: var(--radius-sm);
    text-decoration: none;
    transition: background 0.18s;
  }
  .cta-banner a:hover { background: var(--red-mid); }


  @media (max-width: 680px) {
    .filetypes-inner { grid-template-columns: 1fr; }
    .why-grid { grid-template-columns: 1fr; }
    .filetypes-visual { grid-template-columns: repeat(3, 1fr); }
  }
   .mock_1{
      text-align:left;
  }

    .support_1 {
    padding: 2px 0;
    background: white;
    text-align: center;
    position: relative;
    margin-top: 0px;
}
.mock-card img{
        width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 10px;
}
/* .filetypes-visual .ft-block:nth-child(9) {
    grid-column: 2;
}

.filetypes-visual .ft-block:nth-child(10) {
    grid-column: 3;
} */

@media screen and (max-width: 767px) {
    .hero{
            display:block;
            padding: 110px 2rem 64px;
      }
}

@media screen and (max-width: 1199px)  and (min-width: 768px){
    .hero{
            padding: 110px 5rem 64px;
      }
}
