    :root{
      --bg:#ffffff;
      --bg-soft:#f8fafc;
      --text:#0f172a;
      --text-soft:#475569;
      --text-hero:#040715;
      --line:#e2e8f0;
      --primary:#047857;
      --primary-dark:#115e59;
      --accent:#0ea5e9;
      --shadow:0 10px 30px rgba(15,23,42,.08);
      --radius:20px;
      --max:1180px;
    }

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

    html{
      scroll-behavior:smooth;
    }

    body{
      font-family:Inter,ui-sans-serif,system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",sans-serif;
      background:var(--bg);
      color:var(--text);
      line-height:1.6;
      -webkit-font-smoothing:antialiased;
      text-rendering:optimizeLegibility;
    }

    img{
      max-width:100%;
      height:auto;
      display:block;
    }

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

    button,
    input,
    select{
      font:inherit;
    }

    .skip-link{
      position:absolute;
      left:-999px;
      top:auto;
      width:1px;
      height:1px;
      overflow:hidden;
    }

    .skip-link:focus{
      left:20px;
      top:20px;
      width:auto;
      height:auto;
      background:#fff;
      color:#000;
      padding:12px 16px;
      border-radius:12px;
      z-index:1000;
      outline:3px solid var(--accent);
    }

    :focus-visible{
      outline:3px solid var(--accent);
      outline-offset:3px;
      border-radius:8px;
    }

    .container{
      width:min(100% - 2rem, var(--max));
      margin-inline:auto;
    }

    header{
      position:sticky;
      top:0;
      z-index:50;
      background:rgba(255,255,255,.88);
      backdrop-filter:blur(14px);
      border-bottom:1px solid rgba(226,232,240,.7);
    }

    .nav{
      display:flex;
      align-items:center;
      justify-content:space-between;
      padding:1rem 0;
    }

    .brand{
      font-size:1.25rem;
      font-weight:800;
      letter-spacing:-0.03em;
    }

    .brand span{
      color:var(--primary);
    }

    nav ul{
      display:flex;
      gap:1.5rem;
      list-style:none;
    }

    nav a{
      color:var(--text-soft);
      font-size:.95rem;
      font-weight:700;
      transition:.2s ease;
    }

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

    .nav-cta{
      display:inline-flex;
      align-items:center;
      justify-content:center;
      padding:.8rem 1.1rem;
      border-radius:999px;
      background:var(--text);
      color:#fff;
      font-weight:600;
      transition:.25s ease;
    }

    .nav-cta:hover{
      transform:translateY(-1px);
      background:#000;
    }

    main{
      overflow:hidden;
    }

    section{
      padding:5.5rem 0;
    }

    .hero{
      position:relative;
      padding:4rem 0 4rem;
      background: linear-gradient(315deg, #ff6b35 0%, #ffad3a 80%);
    }

    .stats-section{
      position:relative;
      margin-top:-1.5rem;
      padding:0 0 5rem;
    }

    .stats-grid{
      display:grid;
      grid-template-columns:repeat(4,1fr);
      gap:1.5rem;
    }

    .stat-card{
      position:relative;
      overflow:hidden;
      background:#fdfdfd;
      border:1px solid var(--line);
      border-radius:24px;
      padding:2rem 1.5rem;
      text-align:center;
      box-shadow:
        0 4px 20px rgba(15,23,42,.05);
      transition:
        transform .3s ease,
        box-shadow .3s ease,
        border-color .3s ease;
    }

    .stat-card::before{
      content:"";
      position:absolute;
      inset:0 0 auto 0;
      height:3px;
      background:#0ac61a;
/*        linear-gradient(
          90deg,
          var(--primary),
          var(--accent)
        );
*/
    }

    .stat-card:hover{
      transform:translateY(-4px);
      border-color:#cbd5e1;
      box-shadow:
        0 14px 40px rgba(15,23,42,.10);
    }

    .stat-number{
      font-size:clamp(2rem,4vw,3rem);
      line-height:1;
      font-weight:800;
      letter-spacing:-0.02em;
      margin-bottom:.75rem;
      color:var(--text);
    }

    .stat-label{
      color:var(--text-soft);
      font-size:.98rem;
      line-height:1.5;
      max-width:18ch;
      margin-inline:auto;
    }

    @media (max-width:980px){
      .stats-grid{
        grid-template-columns:repeat(2,1fr);
      }
    }

    @media (max-width:640px){

  .stats-section{
    padding-bottom:4rem;
  }

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

  .stat-card{
    padding:1.75rem 1.25rem;
  }
    }

    .hero-grid{
      display:grid;
      grid-template-columns:1.1fr .9fr;
      gap:2rem;
      align-items:center;
    }

    .eyebrow{
      display:inline-flex;
      align-items:center;
      gap:.5rem;
      padding:.45rem .85rem;
      border-radius:999px;
      background:#ecfeff;
      color:#0f766e;
      font-size:.82rem;
      font-weight:700;
      margin-bottom:1.5rem;
      border:1px solid rgba(15,118,110,.15);
    }

    h1{
      font-size:clamp(2.6rem,6vw,5rem);
      line-height:1.03;
      letter-spacing:-0.01em;
      margin-bottom:1.5rem;
      max-width:12ch;
      color: #363636;
    }

    .hero p{
      font-size:1.2rem;
      color:var(--text-hero);
      max-width:60ch;
    }

    .hero-actions{
      display:flex;
      flex-wrap:wrap;
      gap:1rem;
      margin-top:2rem;
    }

    .btn{
      display:inline-flex;
      align-items:center;
      justify-content:center;
      padding:1rem 1.35rem;
      border-radius:999px;
      font-weight:700;
      transition:.25s ease;
      border:1px solid transparent;
    }

    .btn-primary{
      background:var(--primary);
      color:#fff;
    }

    .btn-primary:hover{
      background:var(--primary-dark);
      transform:translateY(-2px);
    }

    .btn-secondary{
      background:#fff;
      border-color:var(--line);
      color:var(--text);
    }

    .btn-secondary:hover{
      border-color:#cbd5e1;
      transform:translateY(-2px);
    }

    .hero-card{
      position:relative;
      padding:0;
      border-radius:24px;
      background:rgba(255,255,255,.82);
      border:0 solid rgb(0, 0, 0);
      box-shadow:var(--shadow);
      min-height:440px;
      overflow:hidden;
    }

    .hero-card::before{
      content:"";
      position:absolute;
      inset:0;
      background:
        linear-gradient(135deg, rgba(14,165,233,.08), transparent 35%),
        linear-gradient(315deg, rgba(15,118,110,.08), transparent 40%);
    }

    .dashboard{
      position:relative;
      display:grid;
      gap:1rem;
      z-index:2;
    }

    .dashboard-box{
      background:#fff;
      border:1px solid var(--line);
      border-radius:18px;
      padding:1rem;
      animation:float 5s ease-in-out infinite;
    }

    .dashboard-box:nth-child(2){
      animation-delay:.8s;
    }

    .dashboard-box:nth-child(3){
      animation-delay:1.6s;
    }

    .mini-label{
      font-size:.8rem;
      font-weight:700;
      color:var(--primary);
      margin-bottom:.65rem;
      text-transform:uppercase;
      letter-spacing:.08em;
    }

    .mini-lines{
      display:grid;
      gap:.5rem;
    }

    .mini-lines span{
      display:block;
      height:10px;
      border-radius:999px;
      background:linear-gradient(90deg,#cbd5e1,#e2e8f0);
    }

    .mini-lines span:nth-child(1){
      width:90%;
    }

    .mini-lines span:nth-child(2){
      width:70%;
    }

    .mini-lines span:nth-child(3){
      width:55%;
    }

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

    .section-heading{
      max-width:760px;
      margin-bottom:3rem;
    }

    .section-heading h2{
      font-size:clamp(2rem,4vw,3rem);
      line-height:1.1;
      letter-spacing:-0.01em;
      margin-bottom:1rem;
    }

    .section-heading p{
      color:var(--text-soft);
      font-size:1.05rem;
    }

    .grid-3{
      display:grid;
      grid-template-columns:repeat(3,1fr);
      gap:1.5rem;
    }

    .card{
      background:#fff;
      border:1px solid var(--line);
      border-radius:var(--radius);
      padding:2rem;
      transition:.3s ease;
      box-shadow:0 1px 2px rgba(15,23,42,.02);
    }

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

    .icon{
      width:56px;
      height:56px;
      border-radius:16px;
      margin-bottom:1.2rem;
      background:
        linear-gradient(135deg, rgba(14,165,233,.16), rgba(15,118,110,.16));
      display:flex;
      align-items:center;
      justify-content:center;
    }

    .icon svg{
      width:32px;
      height:32px;
    }

    .card h3{
      margin-bottom:.8rem;
      font-size:1.2rem;
    }

    .card p{
      color:var(--text-soft);
    }

    .feature-layout{
      display:grid;
      grid-template-columns:repeat(2,1fr);
      gap:2rem;
    }

    .feature-panel{
      background:var(--bg-soft);
      border:1px solid var(--line);
      border-radius:24px;
      padding:2.2rem;
    }

    .feature-panel h3 {
      padding-bottom: 0.5rem;
      margin-bottom: 1.25rem;
      border-bottom: 3px solid transparent;
      border-image: linear-gradient(90deg, #f97316, #facc15) 1;
    }

    .feature-list{
      display:grid;
      gap:.7rem;
      list-style:none;
    }

    .feature-list li{
      display:flex;
      gap:.9rem;
      align-items:flex-start;
      color:var(--text-soft);
    }

    .feature-list li::before{
      content:"✓";
      font-size:.85rem;
      line-height:1;
      margin-top:.2rem;
      color:#fff;
      background:#f97316;
      width:16px;
      height:16px;
      border-radius:999px;
      display:grid;
      place-items:center;
      flex-shrink:0;
    }
    
    .steps{
      display:grid;
      grid-template-columns:repeat(3,1fr);
      gap:1.5rem;
      counter-reset:steps;
    }

    .step{
      position:relative;
      padding:2rem;
      border-radius:24px;
      border:1px solid var(--line);
      background:#fff;
    }

.step::before{
  counter-increment:steps;
  content:counter(steps);
  width:42px;
  height:42px;
  border-radius:999px;
  display:flex;
  align-items:center;
  justify-content:center;
  font-weight:900;
  background:transparent;
  border:2px solid #f97316;
  color:#f97316;
  margin-bottom:1rem;
}

    .step h3{
      margin-bottom:.8rem;
    }

    .step p{
      color:var(--text-soft);
    }

    .form-section{
      position:relative;
    }

    .form-wrapper{
      background:
        linear-gradient(135deg,#0f172a,#111827);
      color:#fff;
      border-radius:32px;
      padding:3rem;
      display:grid;
      grid-template-columns:1fr 1fr;
      gap:3rem;
      overflow:hidden;
      position:relative;
    }

    .form-wrapper::before{
      content:"";
      position:absolute;
      inset:0;
      background:
        radial-gradient(circle at top right, rgba(14,165,233,.2), transparent 28%),
        radial-gradient(circle at bottom left, rgba(15,118,110,.18), transparent 28%);
      pointer-events:none;
    }

    .form-content{
      position:relative;
      z-index:2;
    }

    .form-content h2{
      font-size:clamp(2rem,4vw,3rem);
      line-height:1.1;
      margin-bottom:1rem;
      letter-spacing:-0.02em;
    }

    .form-content p{
      color:rgba(255,255,255,.76);
    }

    form{
      position:relative;
      z-index:2;
      display:grid;
      gap:1rem;
    }

    .field{
      display:grid;
      gap:.55rem;
    }

    label{
      font-weight:600;
      font-size:.95rem;
    }

    input,
    select{
      width:100%;
      padding:1rem;
      border-radius:14px;
      border:1px solid rgba(255,255,255,.12);
      background:rgba(255,255,255,.06);
      color:#fff;
    }

    input::placeholder{
      color:rgba(255,255,255,.5);
    }

    .checkbox{
      display:flex;
      gap:.75rem;
      align-items:flex-start;
      font-size:.92rem;
      color:rgba(255,255,255,.75);
    }

    .checkbox input{
      width:auto;
      margin-top:.2rem;
    }

    .submit-btn{
      border:none;
      cursor:pointer;
    }

    footer{
      padding:3rem 0;
      border-top:1px solid var(--line);
      background:#fff;
    }

    .footer-grid{
      display:grid;
      grid-template-columns:1fr auto;
      gap:2rem;
      align-items:center;
    }

    .footer-links{
      display:flex;
      flex-wrap:wrap;
      gap:1.25rem;
    }

    .footer-links a{
      color:var(--text-soft);
      font-size:.95rem;
    }

    .footer-meta{
      margin-top:1rem;
      color:#64748b;
      font-size:.92rem;
    }

    .socials{
      display:flex;
      gap:.75rem;
    }

    .socials a{
      width:42px;
      height:42px;
      border-radius:999px;
      border:1px solid var(--line);
      display:flex;
      align-items:center;
      justify-content:center;
      transition:.2s ease;
    }

    .socials a:hover{
      transform:translateY(-2px);
      border-color:#cbd5e1;
    }

    @media (max-width:980px){

      .hero-grid,
      .feature-layout,
      .form-wrapper,
      .grid-3,
      .steps{
        grid-template-columns:1fr;
      }

      nav ul{
        display:none;
      }

      .hero{
        padding-top:2rem;
      }

      .hero-card{
        min-height:auto;
      }
    }

    @media (max-width:640px){

      section{
        padding:4rem 0;
      }

      .hero-actions{
        flex-direction:column;
      }

      .btn{
        width:100%;
      }

      .form-wrapper{
        padding:2rem;
      }

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

