
    :root{
      --bg-dark:#071327;
      --bg-light:#f5f6fb;
      --accent:#f5b623;
      --accent-soft:#fff6dd;
      --text-dark:#0b1530;
      --text-muted:#6b7280;
      --card:#ffffff;
      --border:#e5e7eb;
      --radius-lg:18px;
      --radius-md:12px;
      --shadow-soft:0 18px 45px rgba(15,23,42,0.18);
    }
    *{box-sizing:border-box;margin:0;padding:0;}
    body{
      font-family:"Inter",system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",sans-serif;
      background:#ffffff;
      color:var(--text-dark);
      line-height:1.6;
    }
    a{text-decoration:none;color:inherit;}
    img{max-width:100%;display:block;}
    .container{
      width:100%;
      max-width:1300px;
      margin:0 auto;
      padding:0 20px;
    }

    /* NAVBAR */
    .navbar{
      position:sticky;
      top:0;
      z-index:50;
      background:#600000;
      backdrop-filter:blur(18px);
      border-bottom:1px solid rgba(148,163,184,0.25);
    }
    .nav-inner{
      display:flex;
      align-items:center;
      justify-content:space-between;
      padding:20px 16px;
    }
    .logo{
      display:flex;
      align-items:center;
      gap:10px;
      font-weight:700;
      font-size:20px;
    }
    .logo-mark{
      width:36px;
      height:36px;
      border-radius:12px;
      background:var(--accent-soft);
      display:flex;
      align-items:center;
      justify-content:center;
      font-weight:700;
      color:var(--accent);
    }
    .nav-links{
      display:flex;
      gap:28px;
      font-size:14px;
      color:#ffffff;
    }
    .nav-links a:hover{color:#f5b623;}
    /* Responsive button layout */
@media (max-width:640px){
  .nav-actions{
    display:none !important;
  }
}


  .nav-actions a{
    width:90%;
   text-align: center;
    padding: 9px 11px;
    font-size: 15px;
    border-radius: 50px;
  }
}

    .btn{
      display:inline-flex;
      align-items:center;
      justify-content:center;
      padding:10px 22px;
      border-radius:999px;
      font-size:14px;
      font-weight:600;
      border:1px solid transparent;
      cursor:pointer;
      transition:all .2s ease;
    }
    .btn-outline{
      border-color:var(--border);
      background:white;
      color:var(--text-dark);
    }
    .btn-outline:hover{
      background:#f3f4f6;
    }
    .btn-primary1{
      background:var(--accent);
      color:#111827;
      box-shadow:0 14px 30px rgba(249,172,51,0.35);
    }
    .btn-primary:hover{
      filter:brightness(0.96);
      transform:translateY(-1px);
    }

    /* HERO */
    .hero{
      background:radial-gradient(circle at top left,#172554 0,#020617 48%,#020617 100%);
      color:white;
      padding:70px 0 70px;
      position:relative;
      overflow:hidden;
    }
    .hero::after{
      content:"";
      position:absolute;
      inset:0;
      background:radial-gradient(circle at 15% 0,rgba(245,182,35,0.28),transparent 55%);
      opacity:.9;
      pointer-events:none;
    }
    .hero-inner{
      position:relative;
      z-index:1;
      display:grid;
      grid-template-columns:1.25fr 1.1fr;
      gap:50px;
      align-items:center;
    }
    .badge{
      display:inline-flex;
      align-items:center;
      gap:8px;
      padding:4px 14px;
      border-radius:999px;
      font-size:12px;
      background:rgba(15,23,42,0.85);
      border:1px solid rgba(248,250,252,0.18);
      margin-bottom:16px;
    }
    .badge-dot{
      width:9px;
      height:9px;
      border-radius:999px;
      background:#22c55e;
    }
    .hero-title{
      font-family:"Playfair Display",serif;
      font-size:40px;
      line-height:1.1;
      margin-bottom:16px;
    }
    .hero-title span{color:var(--accent);}
    .hero-sub{
      font-size:15px;
      color:#e5e7eb;
      max-width:440px;
      margin-bottom:24px;
    }
    .hero-cta{
      display:flex;
      flex-wrap:wrap;
      gap:14px;
      margin-bottom:22px;
    }
    .hero-meta{
      display:flex;
      gap:26px;
      font-size:13px;
      color:#cbd5f5;
      margin-top:15px;
    }
    .hero-meta div span{
      display:block;
      font-size:18px;
      font-weight:600;
      color:white;
    }
    .hero-card{
      background:radial-gradient(circle at top,#1f2937,#020617);
      border-radius:32px;
      padding:26px;
      box-shadow:0 26px 60px rgba(15,23,42,0.9);
      border:1px solid rgba(148,163,184,0.45);
      position:relative;
    }
    .hero-window{
      background:#020617;
      border-radius:22px;
      padding:20px;
      border:1px solid rgba(148,163,184,0.45);
      min-height:200px;
    }
    .pill{
      position:absolute;
      right:20px;
      top:26px;
      padding:7px 14px;
      background:rgba(15,23,42,0.9);
      border-radius:999px;
      font-size:11px;
      border:1px solid rgba(248,250,252,0.18);
      display:flex;
      gap:8px;
      align-items:center;
    }
    .pill span:first-child{
      display:inline-flex;
      width:18px;
      height:18px;
      border-radius:999px;
      background:var(--accent-soft);
      align-items:center;
      justify-content:center;
      font-size:11px;
      color:#92400e;
      font-weight:700;
    }
    .pill.secure{
      right:auto;
      left:22px;
      top:auto;
      bottom:24px;
    }

    /* STAT BAR */
    .stat-bar{
      background:#020617;
      color:#e5e7eb;
      padding:16px 0 12px;
      border-bottom:1px solid rgba(148,163,184,.4);
    }
    .stat-inner{
      display:flex;
      justify-content:space-between;
      font-size:13px;
      gap:18px;
      flex-wrap:wrap;
    }
    .stat-item span{
      display:block;
      font-size:18px;
      font-weight:600;
      color:white;
    }

    /* SECTION WRAPPER */
    section{
      padding:56px 0;
    }
    .section-label{
      font-size:12px;
      letter-spacing:.14em;
      text-transform:uppercase;
      color:var(--accent);
      font-weight:600;
      margin-bottom:6px;
    }
    .section-title{
      font-family:"Playfair Display",serif;
      font-size:30px;
      margin-bottom:10px;
    }
    .section-sub{
      color:var(--text-muted);
      font-size:14px;
      max-width:540px;
    }

    /* FEATURES GRID */
    .features{
      background:var(--bg-light);
    }
    .feature-grid{
      margin-top:30px;
      display:grid;
      grid-template-columns:repeat(4,minmax(0,1fr));
      gap:18px;
    }
    .card{
      background:var(--card);
      border-radius:var(--radius-md);
      padding:18px 18px 20px;
      border:1px solid var(--border);
      box-shadow:0 10px 25px rgba(15,23,42,0.04);
    }
    .card-icon{
      width:32px;
      height:32px;
      border-radius:12px;
      background:var(--accent-soft);
      display:flex;
      align-items:center;
      justify-content:center;
      margin-bottom:10px;
      font-size:16px;
    }
    .card h3{
      font-size:15px;
      margin-bottom:6px;
    }
    .card p{
      font-size:13px;
      color:var(--text-muted);
    }

    /* HOW IT WORKS */
    .steps{
      background:#050b19;
      color:white;
    }
    .steps-header .section-sub{color:#d1d5db;}
    .step-grid{
      margin-top:26px;
      display:grid;
      grid-template-columns:repeat(4,minmax(0,1fr));
      gap:18px;
    }
    .step{
      background:rgba(15,23,42,0.98);
      border-radius:var(--radius-lg);
      padding:18px 18px 20px;
      border:1px solid rgba(148,163,184,0.4);
      box-shadow:var(--shadow-soft);
    }
    .step-number{
      width:26px;
      height:26px;
      border-radius:999px;
      background:rgba(15,23,42,1);
      border:1px solid rgba(248,250,252,0.2);
      display:flex;
      align-items:center;
      justify-content:center;
      font-size:13px;
      color:var(--accent);
      margin-bottom:10px;
    }
    .step h3{
      font-size:15px;
      margin-bottom:8px;
    }
    .step p{
      font-size:13px;
      color:#d1d5db;
    }

    /* INDUSTRY TILES */
    .industry{
      background:var(--bg-light);
    }
    .industry-grid{
      margin-top:26px;
      display:grid;
      grid-template-columns:repeat(2,minmax(0,1fr));
      gap:18px;
    }
    .industry-card{
      border-radius:var(--radius-lg);
      padding:22px;
      border:1px solid var(--border);
      background:linear-gradient(135deg,#fffcee,#fff7d4);
      box-shadow:0 16px 40px rgba(250,204,21,0.25);
    }
    .industry-card:nth-child(2){
      background:linear-gradient(135deg,#f3f4ff,#e0e7ff);
      box-shadow:0 16px 40px rgba(129,140,248,0.28);
    }
    .industry-card h4{
      font-size:13px;
      text-transform:uppercase;
      letter-spacing:.14em;
      color:var(--text-muted);
      margin-bottom:6px;
    }
    .industry-card h3{
      font-size:20px;
      margin-bottom:8px;
    }
    .industry-list{
      margin-top:8px;
      list-style:none;
      padding:0;
    }
    .industry-list li{
      font-size:13px;
      color:var(--text-muted);
      margin-bottom:4px;
      display:flex;
      align-items:flex-start;
      gap:8px;
    }
    .industry-list li::before{
      content:"✓";
      color:var(--accent);
      font-size:12px;
      margin-top:1px;
    }

    /* TESTIMONIAL */
    .testimonial{
      background:#f9fafb;
    }
    .testimonial-inner{
      margin-top:26px;
      border-radius:26px;
      background:#ffffff00;
      border:1px solid #ffffff00;
      padding:26px 26px 22px;
      box-shadow:0 24px 55px rgba(15,23,42,0.10);
    }
    .stars{
      color:#facc15;
      font-size:16px;
      margin-bottom:10px;
    }
    .quote{
      font-family:"Playfair Display",serif;
      font-size:18px;
      margin-bottom:14px;
    }
    .author{
      display:flex;
      align-items:center;
      gap:10px;
      font-size:13px;
      color:var(--text-muted);
    }
    .author-initial{
      width:32px;
      height:32px;
      border-radius:999px;
      background:var(--accent-soft);
      display:flex;
      align-items:center;
      justify-content:center;
      color:#92400e;
      font-weight:600;
    }

    /* BLOG */
    .blog-grid{
      margin-top:26px;
      display:grid;
      grid-template-columns:repeat(3,minmax(0,1fr));
      gap:18px;
    }
    .blog-card{
      border-radius:18px;
      background:white;
      border:1px solid var(--border);
      padding:18px 18px 20px;
      box-shadow:0 14px 30px rgba(15,23,42,0.07);
    }
    .blog-meta{
      font-size:12px;
      color:var(--text-muted);
      margin-bottom:6px;
      display:flex;
      justify-content:space-between;
    }
    .blog-card h3{
      font-size:15px;
      margin-bottom:6px;
    }
    .blog-card p{
      font-size:13px;
      color:var(--text-muted);
    }

    /* CONTACT */
    .contact{
      background:#020617;
      color:white;
    }
    .contact-inner{
      display:grid;
      grid-template-columns:1.1fr 1.2fr;
      gap:32px;
      align-items:flex-start;
      margin-top:18px;
    }
    .contact-details p{
      font-size:14px;
      color:#e5e7eb;
      margin-bottom:16px;
    }
    .contact-details .info{
      font-size:14px;
      margin-bottom:10px;
    }
    .contact-details .info span{
      display:block;
      font-weight:600;
      color:white;
    }
    form{
      background:#020617;
      border-radius:22px;
      padding:22px;
      border:1px solid rgba(148,163,184,0.6);
      box-shadow:0 20px 50px rgba(15,23,42,0.9);
    }
    .form-row{
      display:grid;
      grid-template-columns:repeat(2,minmax(0,1fr));
      gap:14px;
      margin-bottom:14px;
    }
    .form-group{
      margin-bottom:14px;
      font-size:13px;
    }
    label{
      display:block;
      margin-bottom:4px;
    }
    input,select,textarea{
      width:100%;
      border-radius:12px;
      border:1px solid rgba(148,163,184,0.8);
      background:#020617;
      color:#e5e7eb;
      padding:10px 12px;
      font-family:inherit;
      font-size:13px;
      outline:none;
    }
    input:focus,select:focus,textarea:focus{
      border-color:var(--accent);
      box-shadow:0 0 0 1px rgba(245,182,35,0.35);
    }
    textarea{min-height:90px;resize:vertical;}

    /* FOOTER */
    footer{
      background:#020617;
      color:#9ca3af;
      border-top:1px solid rgba(55,65,81,0.9);
      padding:20px 0;
      font-size:12px;
    }
    .footer-inner{
      display:flex;
      justify-content:space-between;
      align-items:center;
      flex-wrap:wrap;
      gap:12px;
    }
    /* Full-width breadcrumb hero with background image */
.breadcrumb-hero {
  width:100%;
  background-image:url('https://unsplash.com/photos/white-ceramic-table-with-white-table-cloth-24C4MlZRqeI');
  background-size:cover;
  background-position:center;
  background-repeat:no-repeat;
  position:relative;
  padding:26px 0 34px;
  margin-bottom:10px;
}

/* dark overlay for contrast */
.breadcrumb-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgb(86 60 0), rgb(42 29 15 / 92%));
}

/* inner content follows your main width */
.breadcrumb-hero-inner {
  position:relative;
  max-width:1300px;
  margin:0 auto;
  padding:0 20px;
}

/* breadcrumb list */
.breadcrumb-list {
  margin:0 0 8px;
  padding:0;
  list-style:none;
  display:flex;
  flex-wrap:wrap;
  gap:6px;
  font-size:12px;
  color:#cbd5f5;
}
.breadcrumb-list li {
  display:flex;
  align-items:center;
  gap:6px;
}
.breadcrumb-list li+li::before {
  content:"/";
  color:#94a3b8;
  font-size:11px;
}
.breadcrumb-list a {
  color:#e5e7eb;
  text-decoration:none;
}
.breadcrumb-list a:hover {
  color:#facc6b;
}
.breadcrumb-list li[aria-current="page"] {
  color:#facc6b;
  font-weight:500;
}

/* page title inside hero */
.breadcrumb-title {
  margin:0;
  font-size:28px;
  line-height:1.3;
  color:#f9fafb;
}
@media(max-width:768px){
  .breadcrumb-title {
    font-size:22px;
  }
}


    /* RESPONSIVE */
    @media (max-width:960px){
      .hero-inner,
      .contact-inner{
        grid-template-columns:1fr;
      }
      .hero{
        padding:56px 0 48px;
      }
      .hero-card{margin-top:26px;}
      .feature-grid{grid-template-columns:repeat(2,minmax(0,1fr));}
      .step-grid{grid-template-columns:repeat(2,minmax(0,1fr));}
      .industry-grid{grid-template-columns:1fr;}
      .blog-grid{grid-template-columns:repeat(2,minmax(0,1fr));}
    }
    @media (max-width:640px){
      .nav-links{display:none;}
      .hero-title{font-size:30px;}
      .feature-grid,
      .step-grid,
      .blog-grid{grid-template-columns:1fr;}
      .stat-inner{flex-direction:column;align-items:flex-start;}
    }