
    :root {
      --red: #D93C2A;
      --red-soft: #F9E8EB;
      --white: #FFFFFF;
      --wh:#fdfbfb;
      --off-white: #FAFAFA;
      --light: #F4F4F6;
      --mid: #E8E8EC;
      --text: #1C1C2E;
      --muted: #6B6B80;
      --border: #E2E2EA;
    }

    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; }

    body {
      font-family: 'DM Sans', sans-serif;
      background: var(--off-white);
      color: var(--text);
      overflow-x: hidden;
    }

   
    /* ── HERO ── */
    .hero {
      min-height: 100vh;
      display: grid;
      grid-template-columns: 1fr 1fr;
      align-items: center;
      padding: 120px 8vw 80px;
      gap: 60px;
      background: var(--wh);
    }

    @media(max-width: 768px) {
      .hero { grid-template-columns: 1fr; padding-top: 100px; }
      /*.hero-right { display: none; }*/
      
    }
    

    .hero-eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      font-size: 12px;
      font-weight: 600;
      letter-spacing: 3px;
      text-transform: uppercase;
      color: var(--red);
      margin-bottom: 24px;
    }

    .hero-eyebrow::before {
      content: '';
      width: 28px; height: 2px;
      background: var(--red);
      display: block;
    }

    .hero h1 {
      font-family: 'Playfair Display', serif;
      font-size: clamp(38px, 4.5vw, 66px);
      font-weight: 900;
      color: var(--text);
      line-height: 1.08;
      margin-bottom: 22px;
    }

    .hero h1 em {
      font-style: italic;
      color: var(--red);
    }

    .hero-desc {
      font-size: 17px;
      font-weight: 300;
      color: var(--muted);
      line-height: 1.8;
      max-width: 480px;
      margin-bottom: 40px;
    }

    .hero-actions {
      display: flex;
      gap: 14px;
      flex-wrap: wrap;
    }

    .btn-primary {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 14px 30px;
      background: var(--red);
      color: white;
      font-size: 14px;
      font-weight: 600;
      border-radius: 10px;
      text-decoration: none;
      border: none;
      cursor: pointer;
      transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
      box-shadow: 0 6px 20px rgba(200,16,46,0.22);
    }

    .btn-primary:hover {
      background: #a80d25;
      transform: translateY(-2px);
      box-shadow: 0 12px 28px rgba(200,16,46,0.28);
    }

    .btn-ghost {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 14px 28px;
      background: transparent;
      color: var(--text);
      font-size: 14px;
      font-weight: 500;
      border-radius: 10px;
      border: 1.5px solid var(--border);
      cursor: pointer;
      text-decoration: none;
      transition: border-color 0.2s, background 0.2s, color 0.2s;
    }

    .btn-ghost:hover { border-color: var(--red); color: var(--red); background: var(--red-soft); }

    /* Hero right – mock UI card */
    .hero-right { position: relative; }

    .ui-card {
      background: var(--white);
      border-radius: 24px;
      border: 1px solid var(--border);
      padding: 32px;
      box-shadow: 0 24px 64px rgba(0,0,0,0.07);
      animation: floatCard 5s ease-in-out infinite;
    }

    @keyframes floatCard {
      0%, 100% { transform: translateY(0); }
      50% { transform: translateY(-10px); }
    }

    .ui-card-header {
      display: flex;
      align-items: center;
      justify-content: space-between;
      margin-bottom: 24px;
    }

    .ui-card-title { font-size: 13px; font-weight: 600; color: var(--muted); letter-spacing: 1px; text-transform: uppercase; }
    .ui-dot { width: 8px; height: 8px; border-radius: 50%; background: #4ADE80; box-shadow: 0 0 0 3px rgba(74,222,128,0.2); }

    .ui-platform {
      display: flex;
      align-items: center;
      gap: 14px;
      padding: 14px 18px;
      border-radius: 12px;
      background: var(--light);
      margin-bottom: 10px;
      transition: background 0.2s;
    }

    .ui-platform:hover { background: var(--red-soft); }

    .ui-plat-icon {
      width: 36px; height: 36px;
      border-radius: 9px;
      background: var(--white);
      border: 1px solid var(--border);
      display: flex; align-items: center; justify-content: center;
      font-size: 18px;
    }

    .ui-plat-name { font-size: 14px; font-weight: 600; color: var(--text); }
    .ui-plat-status { font-size: 12px; color: var(--muted); }
    .ui-divider { height: 1px; background: var(--border); margin: 20px 0; }

    .ui-stat-row { display: flex; gap: 12px; }

    .ui-stat {
      flex: 1;
      background: var(--light);
      border-radius: 10px;
      padding: 14px 16px;
      text-align: center;
    }

    .ui-stat-num { font-size: 22px; font-weight: 700; color: var(--text); }
    .ui-stat-label { font-size: 11px; color: var(--muted); margin-top: 3px; }

    /* ── SECTIONS SHARED ── */
    .section { padding: 96px 8vw; }

    .section-tag {
      font-size: 11px;
      font-weight: 600;
      letter-spacing: 4px;
      text-transform: uppercase;
      color: var(--red);
      margin-bottom: 14px;
    }

    .section-title {
      font-family: 'Playfair Display', serif;
      font-size: clamp(28px, 3.5vw, 50px);
      font-weight: 700;
      color: var(--text);
      line-height: 1.15;
      max-width: 620px;
    }

    .section-desc {
      margin-top: 14px;
      font-size: 16px;
      font-weight: 300;
      color: var(--muted);
      line-height: 1.8;
      max-width: 540px;
    }

    /* ── WHY GRID ── */
    .why-grid {
      display: grid;
      /* grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); */
      grid-template-columns: repeat(3, 1fr);
      gap: 20px;
      margin-top: 56px;
    }

    .why-card {
      background: var(--white);
      border-radius: 18px;
      padding: 32px 28px;
      border: 1px solid var(--border);
      transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
      position: relative;
      overflow: hidden;
    }

    .why-card::after {
      content: '';
      position: absolute;
      bottom: 0; left: 0; right: 0;
      height: 3px;
      background: var(--red);
      transform: scaleX(0);
      transform-origin: left;
      transition: transform 0.4s ease;
    }

    .why-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 16px 40px rgba(0,0,0,0.07);
      border-color: transparent;
    }

    .why-card:hover::after { transform: scaleX(1); }

    .why-icon {
      width: 48px; height: 48px;
      border-radius: 12px;
      background: var(--red-soft);
      display: flex; align-items: center; justify-content: center;
      font-size: 22px;
      margin-bottom: 20px;
    }

    .why-card h3 { font-size: 15px; font-weight: 600; color: var(--text); margin-bottom: 8px; }
    .why-card p { font-size: 13.5px; color: var(--muted); line-height: 1.7; }

    /* ── SETUP ── */
    .setup-wrap {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 80px;
      align-items: center;
    }

    @media(max-width: 768px) { .setup-wrap { grid-template-columns: 1fr; gap: 48px; } }

    .steps-list { margin-top: 48px; }

    .step {
      display: flex;
      gap: 22px;
      padding-bottom: 32px;
      position: relative;
    }

    .step:last-child { padding-bottom: 0; }

    .step-line {
      position: absolute;
      left: 19px; top: 48px; bottom: 0;
      width: 1px;
      background: var(--border);
    }

    .step:last-child .step-line { display: none; }

    .step-num {
      width: 40px; height: 40px;
      border-radius: 12px;
      background: var(--red-soft);
      color: var(--red);
      font-weight: 700;
      font-size: 15px;
      display: flex; align-items: center; justify-content: center;
      flex-shrink: 0;
      border: 1.5px solid rgba(200,16,46,0.15);
    }

    .step-body h4 { font-size: 15px; font-weight: 600; color: var(--text); margin-bottom: 5px; }
    .step-body p { font-size: 13.5px; color: var(--muted); line-height: 1.7; }

    /* Setup right panel */
    .setup-panel {
      background: var(--text);
      border-radius: 24px;
      padding: 40px 36px;
      color: white;
      position: relative;
      overflow: hidden;
    }

    .setup-panel::before {
      content: '';
      position: absolute;
      top: -60px; right: -60px;
      width: 220px; height: 220px;
      border-radius: 50%;
      background: rgba(200,16,46,0.1);
    }

    .setup-panel-inner { position: relative; z-index: 1; }

    .panel-logo {
      font-family: 'Playfair Display', serif;
      font-size: 22px;
      font-weight: 700;
      margin-bottom: 6px;
    }

    .panel-logo span { color: var(--red); }
    .panel-sub { font-size: 11px; color: rgba(255,255,255,0.35); margin-bottom: 28px; letter-spacing: 2px; text-transform: uppercase; }

    .panel-item {
      background: rgba(255,255,255,0.06);
      border: 1px solid rgba(255,255,255,0.1);
      border-radius: 12px;
      padding: 16px 20px;
      display: flex;
      align-items: center;
      gap: 14px;
      margin-bottom: 10px;
      transition: background 0.2s;
      cursor: pointer;
    }

    .panel-item:hover { background: rgba(255,255,255,0.11); }

    .panel-icon {
      width: 34px; height: 34px;
      border-radius: 8px;
      background: rgba(255,255,255,0.1);
      display: flex; align-items: center; justify-content: center;
      font-size: 16px;
    }

    .panel-name { font-size: 13px; font-weight: 600; }
    .panel-status { font-size: 11px; color: rgba(255,255,255,0.4); margin-top: 2px; }

    .panel-bullet {
      margin-top: 24px;
      padding-top: 20px;
      border-top: 1px solid rgba(255,255,255,0.08);
      display: flex;
      flex-direction: column;
      gap: 10px;
    }

    .panel-bullet-item {
      display: flex;
      align-items: center;
      gap: 10px;
      font-size: 12px;
      color: rgba(255,255,255,0.5);
    }

    .panel-bullet-item span { color: var(--red); font-size: 14px; }

    /* ── TEMPLATES ── */
    .template-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
      gap: 20px;
      margin-top: 56px;
    }

    .template-card {
      border-radius: 18px;
      overflow: hidden;
      border: 1px solid var(--border);
      background: var(--white);
      transition: transform 0.3s, box-shadow 0.3s;
    }

    .template-card:hover {
      transform: translateY(-6px);
      box-shadow: 0 20px 48px rgba(0,0,0,0.08);
    }

    .t-preview {
      height: 130px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 38px;
    }

    .t-gray { background: var(--light); }
    .t-soft { background: var(--red-soft); }
    .t-dark { background: var(--text); }

    .t-info { padding: 20px 22px; }
    .t-info h4 { font-size: 14px; font-weight: 600; color: var(--text); }
    .t-info p { font-size: 12.5px; color: var(--muted); margin-top: 5px; }

    /* ── SEND FLOW ── */
    .send-flow {
      display: flex;
      gap: 0;
      margin-top: 60px;
      overflow-x: auto;
      padding-bottom: 12px;
    }

    .flow-step {
      flex: 1;
      min-width: 180px;
      text-align: center;
      padding: 0 16px;
      position: relative;
    }

    .flow-step:not(:last-child)::after {
      content: '→';
      position: absolute;
      right: -10px;
      top: 18px;
      font-size: 20px;
      color: var(--muted);
    }

    .flow-icon {
      width: 52px; height: 52px;
      border-radius: 14px;
      background: var(--white);
      border: 1.5px solid var(--border);
      font-size: 22px;
      display: flex; align-items: center; justify-content: center;
      margin: 0 auto 16px;
      transition: background 0.3s, border-color 0.3s, transform 0.3s;
    }

    .flow-step:hover .flow-icon {
      background: var(--red-soft);
      border-color: rgba(200,16,46,0.25);
      transform: scale(1.08);
    }

    .flow-step h4 { font-size: 13px; font-weight: 600; color: var(--text); margin-bottom: 5px; }
    .flow-step p { font-size: 12px; color: var(--muted); line-height: 1.6; }

    .manual-note {
      margin-top: 28px;
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 12px 22px;
      background: var(--white);
      border: 1px solid var(--border);
      border-radius: 10px;
      font-size: 13px;
      color: var(--muted);
    }

    /* ── NOTICES ── */
    .notice-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 22px;
      margin-top: 56px;
    }

    @media(max-width: 640px) {
      .notice-grid { grid-template-columns: 1fr; }
      .send-flow { flex-direction: column; gap: 28px; }
      .flow-step:not(:last-child)::after { display: none; }
    }

    .notice-card {
      border-radius: 18px;
      padding: 32px;
      display: flex;
      gap: 18px;
      border: 1px solid var(--border);
    }

    .notice-card.warn { background: var(--red-soft); border-color: rgba(200,16,46,0.12); }
    .notice-card.ok { background: #F0FFF4; border-color: rgba(34,197,94,0.2); }

    .notice-icon { font-size: 26px; flex-shrink: 0; }

    .notice-body h4 { font-size: 15px; font-weight: 600; color: var(--text); margin-bottom: 12px; }
    .notice-body ul { list-style: none; display: flex; flex-direction: column; gap: 8px; }

    .notice-body li {
      font-size: 13.5px;
      color: #444;
      padding-left: 18px;
      position: relative;
    }

    .notice-body li::before { content: '-'; position: absolute; left: 0; color: var(--red); }

    /* ── CTA ── */
    .cta-section {
      background: var(--text);
      text-align: center;
      padding: 100px 8vw;
      position: relative;
      overflow: hidden;
    }

    .cta-section::before {
      content: '';
      position: absolute;
      top: -80px; left: 50%;
      transform: translateX(-50%);
      width: 500px; height: 500px;
      border-radius: 50%;
      background: rgba(200,16,46,0.07);
      filter: blur(60px);
    }

    .cta-section > * { position: relative; z-index: 1; }

    .cta-section h2 {
      font-family: 'Playfair Display', serif;
      font-size: clamp(30px, 4.5vw, 56px);
      color: var(--white);
      margin-bottom: 18px;
      line-height: 1.12;
    }

    .cta-section h2 em { font-style: italic; color: var(--red); }

    .cta-section p {
      font-size: 16px;
      font-weight: 300;
      color: rgba(255,255,255,0.55);
      max-width: 500px;
      margin: 0 auto 44px;
      line-height: 1.8;
    }

    .cta-buttons { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

    .btn-cta-primary {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 15px 34px;
      background: var(--red);
      color: white;
      font-size: 14px;
      font-weight: 600;
      border-radius: 10px;
      border: none;
      cursor: pointer;
      text-decoration: none;
      transition: background 0.2s, transform 0.2s;
      box-shadow: 0 8px 24px rgba(200,16,46,0.3);
    }

    .btn-cta-primary:hover { background: #a80d25; transform: translateY(-2px); }

    .btn-cta-ghost {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 15px 30px;
      background: transparent;
      color: rgba(255,255,255,0.7);
      font-size: 14px;
      font-weight: 500;
      border-radius: 10px;
      border: 1.5px solid rgba(255,255,255,0.18);
      cursor: pointer;
      text-decoration: none;
      transition: border-color 0.2s, color 0.2s;
    }

    .btn-cta-ghost:hover { border-color: rgba(255,255,255,0.5); color: white; }

   

    /* ── REVEAL ── */
    .reveal {
      opacity: 0;
      transform: translateY(22px);
      transition: opacity 0.65s ease, transform 0.65s ease;
    }

    .reveal.visible { opacity: 1; transform: none; }
    .fa-background{
      color: #fff;
    background: #d93c2b;
    border-radius: 9px;
    padding: 5px;
    }
    .panel-logo img{
        width: 200px;
    background: white;
    padding: 7px;
    }
      .support_1 {
    padding: 2px 0;
    background: white;
    text-align: center;
    position: relative;
    margin-top: 0px;
}
.setup-panel-inner img{
        width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius:10px;
}
.cta_a:hover{
    color:#fff;
}

@media screen and (max-width: 767px) and (min-width: 576px) {
    .why-grid{
              grid-template-columns: repeat(2, 1fr);
      }
}
@media screen and (max-width: 575px) {
    .why-grid{
              grid-template-columns: repeat(1, 1fr);
      }
}

