  /* Reset and Base Styles */
@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');
  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
	  font-family: "Inter", sans-serif!important;
  }

  html {
    scroll-behavior: smooth;
  }
button,
input,
textarea,
select,
a {
  outline: none!important;
  box-shadow: none!important;
}
.form-sec.new-formbg h6 {
    text-align: center;
    font-size: 24px;
    font-weight: 700;
    color: #000;
}

.form-sec.new-formbg p {
    font-size: 16px;
    font-weight: 500;
    color: #303030
}
.modal-content{    border-top: 5px solid #0D47A1;
    border-radius: 16px;    width: 480px;
    padding: 14px 0;}
.iti{width:100%;}
.close {
    font-size: 26px;
	    z-index: 111111;
    color: #1565c0 !important;
    opacity: 0.8;
    position: absolute;
    border-radius: 50%;
    right: 10px;
    background: none !important;
	top: 13px;}
label {
    font-size: 13px;
    color: #4C4E4F;
    margin: 0 0 10px;
    width: 100%;
    text-align: left;
}

input.submt-button {
    padding: 12px 0;
    background:linear-gradient(135deg, #2563eb 0%, #06b6d4 100%);
    border: 1px solid #2563eb!important;
    transition: ease-in-out all .5ms;
    border-radius: .5rem;
    color: #fff !important;
    font-weight: 700;
    margin: 10px 0;
    width: 100%;
    font-size: 18px;
    box-shadow: 0 4px 11px rgb(192 192 192);
}

input.submt-button:hover {
   background: linear-gradient(135deg, #2563eb 0%, #06b6d4 100%) !important;
    opacity: 0.8;
}
input[type="text"], input[type="password"], input[type="number"], input[type="email"], input[type="tel"], select {
    color: #232226;
    background-color: #fff !important;
    border: 1px solid #d8d8d8;
    width: 100%;
    padding: 11px 14px;
    line-height: 1.3;
    -webkit-border-radius: 4px;
    border-radius: 4px;
    position: relative;
    transition: all cubic-bezier(0.4, 0, 0.2, 1) 0.4s;
    outline: none;
    font-size: 14px;
    font-weight: 400;
    margin: 0 0 8px 0;
}


  body {
    font-family: "Inter", sans-serif;
    line-height: 1.6;
    color: #1e293b;
    background: #ffffff;
    overflow-x: hidden;
  }

.logo-icon img{width:170px;}
  img {
    max-width: 100%;
    height: auto;
    display: block;
  }

  button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    outline: none;
  }

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

  /* Container */
  .container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
  }

  .container-small {
    max-width: 1024px;
    margin: 0 auto;
    padding: 0 24px;
  }

  /* Navigation */
  .navigation {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid #e2e8f0;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
  }

  .nav-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 16px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
  }

  .logo-icon {
    background: linear-gradient(135deg, #2563eb 0%, #06b6d4 100%);
    border-radius: 8px;
    padding: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
  }

  .logo-text {
    font-size: 20px;
    font-weight: 800;
    color: #0f172a;
  }

  .logo-subtext {
    font-size: 11px;
    color: #64748b;
  }

  .nav-cta {
    background: linear-gradient(135deg, #2563eb 0%, #06b6d4 100%);
    color: white;
    padding: 10px 24px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
    transition: all 0.3s ease;
  }

  .nav-cta:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 16px rgba(37, 99, 235, 0.4);
  }

  /* Hero Section */
  .hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 120px 24px 80px;
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 50%, #eff6ff 100%);
    overflow: hidden;
  }

  .hero-pattern {
    position: absolute;
    inset: 0;
    background-image:
      linear-gradient(to right, rgba(128, 128, 128, 0.07) 1px, transparent 1px),
      linear-gradient(to bottom, rgba(128, 128, 128, 0.07) 1px, transparent 1px);
    background-size: 24px 24px;
  }

  .hero-orb {
    position: absolute;
    width: 384px;
    height: 384px;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.3;
  }

  .hero-orb-1 {
    top: 25%;
    left: -192px;
    background: #60a5fa;
  }

  .hero-orb-2 {
    bottom: 25%;
    right: -192px;
    background: #22d3ee;
  }

  .hero-container {
    position: relative;
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
  }

  .hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #dbeafe;
    border: 1px solid #93c5fd;
    border-radius: 9999px;
    padding: 12px 24px;
    margin-bottom: 24px;
    color: #1e40af;
    font-weight: 600;
    font-size: 14px;
  }

  .hero-badge svg {
    color: #2563eb;
  }

  .hero-title {
    font-size: 38px;
    font-weight: 800;
    color: #0f172a;
    line-height: 1.1;
    margin-bottom: 24px;
  }

  .gradient-text {
    background: linear-gradient(135deg, #2563eb 0%, #06b6d4 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
  }

  .hero-subtitle {
    font-size: 18px;
    color: #475569;
    margin-bottom: 16px;
  }

  .hero-message-box {
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 24px;
    margin-bottom: 32px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  }

  .hero-message-box p {
    color: #334155;
    margin-bottom: 12px;
	      font-size: 16px;
  }

  .hero-message-box p:last-child {
    margin-bottom: 0;
  }

  .hero-message-highlight {
    color: #0f172a !important;
    font-weight: 600;
  }

  .hero-buttons {
    display: flex;
    flex-direction: row;
    gap: 8px;
  }

  .btn-primary {
    background: linear-gradient(135deg, #2563eb 0%, #06b6d4 100%)!important;
    color: white!important;
    padding: 16px 32px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 15px;
    box-shadow: 0 8px 16px rgba(37, 99, 235, 0.3);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin: 0 auto;
  }

  .btn-primary:hover {
    transform: scale(1.02);
    box-shadow: 0 12px 24px rgba(37, 99, 235, 0.4);
  }

  .btn-secondary {
    background: white!important;
    color: #2563eb!important;
    padding: 16px 32px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 15px;
    border: 2px solid #2563eb!important;
    transition: all 0.3s ease;
  }

  .btn-secondary:hover {
    background: #eff6ff;
  }

  .hero-image-wrapper {
    position: relative;
  }

  .hero-image {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
    border: 4px solid white;
  }

  .hero-image img {
    width: 100%;
    height: auto;
  }

  .hero-image-overlay {
    position: absolute;
    inset: 0;
    /* background: linear-gradient(to top, rgba(37, 99, 235, 0.3), transparent); */
  }

  .hero-stat {
    position: absolute;
    background: white;
    border-radius: 12px;
    padding: 16px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    border: 1px solid #e2e8f0;
    display: flex;
    align-items: center;
    gap: 12px;
  }

  .hero-stat-1 {
    bottom: -24px;
    left: -24px;
  }

  .hero-stat-2 {
    top: -24px;
    right: -24px;
  }

  .stat-icon {
    border-radius: 8px;
    padding: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .stat-icon-green {
    background: #dcfce7;
    color: #16a34a;
  }

  .stat-icon-blue {
    background: #dbeafe;
    color: #2563eb;
  }

  .stat-value {
    font-size: 24px;
    font-weight: 800;
    color: #0f172a;
  }

  .stat-label {
    font-size: 12px;
    color: #64748b;
  }

  /* Section Styles */
  section {
    scroll-margin-top: 80px;
  }

  .section-header {
    text-align: center;
    margin-bottom: 64px;
  }

  .section-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border-radius: 9999px;
    padding: 12px 24px;
    margin-bottom: 14px;
    font-weight: 700;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
  }

  .badge-red {
    background: #fef2f2;
    border: 1px solid #fecaca;
    color: #dc2626;
  }

  .badge-blue {
    background: #dbeafe;
    border: 1px solid #93c5fd;
    color: #1e40af;
  }

  .badge-green {
    background: #dcfce7;
    border: 1px solid #86efac;
    color: #15803d;
  }

  .badge-purple {
    background: #f3e8ff;
    border: 1px solid #d8b4fe;
    color: #7c3aed;
  }

  .badge-cyan {
    background: #cffafe;
    border: 1px solid #67e8f9;
    color: #0e7490;
  }

  .badge-white {
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: white;
    backdrop-filter: blur(8px);
  }

  .section-title {
    font-size: 34px;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 14px;
  }

  .section-subtitle {
    font-size: 20px;
    color: #64748b;
    max-width: 768px;
    margin: 0 auto;
  }

  /* Problem Section */
  .problem-section {
    padding: 60px 0px;
    background: linear-gradient(to bottom, #ffffff 0%, #f8fafc 100%);
  }

  .problem-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    align-items: start;
  }

  .problem-image-wrapper {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    height: 100%;
    min-height: 500px;
  }

  .problem-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .problem-image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 180, 120, 0.2), rgba(0, 180, 120, 0.8));
  }

  .problem-overlay-text {
    position: absolute;
    bottom: 32px;
    left: 32px;
    right: 32px;
  }

  .overlay-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    padding: 24px;
  }

  .overlay-text-1 {
    color: white;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
  }

  .overlay-text-2 {
    color: white;
    font-size: 24px;
    font-weight: 800;
  }

  .risk-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .risk-card {
    background: white;
    border: 1px solid #E5E7EB;
    border-radius: 12px;
    padding:10px 16px;
    display: flex;
    align-items: flex-start;
    gap: 16px;
    transition: all 0.3s ease;
  }

  .risk-card:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    border-color: #67c8a8;
    transform: translateY(-2px);
  }

  .risk-icon {
       background: #d5fff1;
    border-radius: 8px;
    padding: 9px;
    color: #10B981;
    flex-shrink: 0;
  }
   .risk-icon svg{width: 17px;height: 17px;}

  .risk-content {
    flex: 1;
  }

  .risk-title {
    font-weight: 600;
    color: #0f172a;
    font-size: 15.6px;
    margin-bottom: 4px;
  }

  .risk-description {
    font-size: 14px;
    color: #64748b;
    margin: 0;
  }

  /* Capabilities Section */
  .capabilities-section {
    padding: 60px 0px;
    background: white;
  }

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

  .capability-card {
    background: white;
    border: 2px solid #e2e8f0;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
  }

  .capability-card:hover {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    transform: translateY(-4px);
  }

  .capability-header {
    padding: 24px;
    display: flex;
    align-items:center;
    gap: 16px;
  }

  .gradient-blue {
    background: linear-gradient(135deg, #3b82f6 0%, #06b6d4 100%);
  }

  .gradient-cyan {
    background: linear-gradient(135deg, #06b6d4 0%, #3b82f6 100%);
  }

  .gradient-purple {
    background: linear-gradient(135deg, #a855f7 0%, #3b82f6 100%);
  }

  .gradient-green {
    background: linear-gradient(135deg, #10b981 0%, #06b6d4 100%);
  }

  .capability-icon-wrapper {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(8px);
    border-radius: 12px;
    padding: 12px;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .capability-number {
    font-size: 28px;
    margin-bottom: 8px;
  }

  .capability-title {
    font-size: 22px;
    font-weight: 800;
    color: white;
    margin-bottom: 8px;
  }

  .capability-body {
    padding: 24px;
    background: white;
  }

  .capability-list {
    list-style: none;
    margin-bottom: 24px;
	  padding:0;
  }

  .capability-item {
    display: flex;
	  font-size:16px;
    align-items:center;
    gap: 12px;
    margin-bottom: 12px;
    color: #334155;
  }

  .capability-item:last-child {
    margin-bottom: 0;
  }

  .capability-item svg {
    flex-shrink: 0;
    margin-top: 2px;
    color: #2563eb;
  }

  .capability-tagline {
    background: linear-gradient(to right, #f8fafc 0%, #eff6ff 100%);
    border-radius: 12px;
    padding: 16px;
	  font-size:16px;
    text-align: center;
    font-weight: 600;
    color: #0f172a;
  }

  .tagline-blue {
    border: 1px solid #93c5fd;
  }

  .tagline-cyan {
    border: 1px solid #67e8f9;
  }

  .tagline-purple {
    border: 1px solid #d8b4fe;
  }

  .tagline-green {
    border: 1px solid #86efac;
  }

  /* ===== Features SaaS Section (Complete Security & Compliance Platform) ===== */
  .features-saas-section {
    position: relative;
    padding: 80px 0 88px;
    background: #F8FAFC;
    overflow: hidden;
  }

  .features-saas-divider {
    height: 1px;
    margin: 0 24px;
    max-width: 1280px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 24px;
    background: linear-gradient(90deg, transparent 0%, #e2e8f0 20%, #e2e8f0 80%, transparent 100%);
    opacity: 0.6;
  }

  .features-saas-bg-shapes {
    position: absolute;
    inset: 0;
    pointer-events: none;
  }

  .features-saas-blur {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.4;
  }

  .features-saas-blur-1 {
    width: 400px;
    height: 400px;
    background: #bfdbfe;
    top: -120px;
    right: -80px;
  }

  .features-saas-blur-2 {
    width: 320px;
    height: 320px;
    background: #a5f3fc;
    bottom: -80px;
    left: -60px;
  }

  .features-saas-header {
    text-align: center;
    margin-bottom: 48px;
  }

  .features-saas-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid #e0f2fe;
    border-radius: 9999px;
    font-size: 13px;
    font-weight: 600;
    color: #0369a1;
    letter-spacing: 0.02em;
    margin-bottom: 16px;
  }

  .features-saas-badge svg {
    flex-shrink: 0;
    color: #0ea5e9;
  }

  .features-saas-title {
    font-size: 32px;
    font-weight: 700;
    color: #0f172a;
    letter-spacing: -0.02em;
    line-height: 1.2;
    margin: 0;
  }

  /* Featured card (Client Compliance Protection) */
  .features-saas-featured {
    margin-bottom: 48px;
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s ease, transform 0.6s ease;
  }

  .features-saas-featured.animate-in {
    opacity: 1;
    transform: translateY(0);
  }

  .features-saas-featured-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.95) 0%, rgba(248,250,252,0.98) 100%);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(226, 232, 240, 0.8);
    border-radius: 24px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 20px 40px -12px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    min-height: 420px;
  }

  .features-saas-featured-media {
    background: linear-gradient(160deg, #f1f5f9 0%, #e2e8f0 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    /* padding: 32px; */
  }

  .features-saas-mockup {
    width: 100%;
    max-width: 520px;
  }

  .features-saas-dashboard-svg {
    width: 100%;
    height: auto;
    display: block;
  }

  .features-saas-illustration-wrap {
    max-width: 100%;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
  }

  .features-saas-featured-img {
    width: 100%;
    height: 100%;
    /* min-height: 360px; */
    object-fit: cover;
    object-position: right;
    display: block;
  }

  .features-saas-global-illustration {
    min-height: 260px;
  }

  .features-saas-featured-content {
    padding: 48px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .features-saas-featured-badge {
    display: inline-block;
    align-self: flex-start;
    padding: 6px 14px;
    background: linear-gradient(135deg, #2563eb 0%, #0ea5e9 100%);
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.04em;
    border-radius: 8px;
    margin-bottom: 16px;
  }

  .features-saas-featured-heading {
    font-size:24px;
    font-weight: 700;
    color: #0f172a;
    letter-spacing: -0.02em;
    line-height: 1.25;
    margin: 0 0 12px;
  }

  .features-saas-featured-subheading {
    font-size: 16px;
    line-height: 1.6;
    color: #475569;
    margin: 0 0 24px;
    max-width: 480px;
  }

  .features-saas-featured-list {
    list-style: none;
    margin: 0 0 32px;
    padding: 0;
  }

  .features-saas-featured-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
    color: #334155;
    margin-bottom: 12px;
  }

  .features-saas-featured-list li:last-child {
    margin-bottom: 0;
  }

  .features-saas-featured-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    color: #2563eb;
    transition: transform 0.2s ease;
  }

  .features-saas-featured-list li:hover .features-saas-featured-icon {
    transform: scale(1.1);
  }

  .features-saas-featured-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
  }

  .features-saas-btn-primary {
    padding: 14px 24px;
    background: linear-gradient(135deg, #2563eb 0%, #0ea5e9 100%);
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 14px rgba(37, 99, 235, 0.35);
  }

  .features-saas-btn-primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(37, 99, 235, 0.45);
  }

  .features-saas-btn-primary:active {
    transform: translateY(0);
  }

  .features-saas-btn-ghost {
    padding: 14px 24px;
    background: transparent;
    color: #475569;
    font-size: 15px;
    font-weight: 600;
    border: 1px solid #cbd5e1;
    border-radius: 10px;
    cursor: pointer;
    transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
  }

  .features-saas-btn-ghost:hover {
    background: #f1f5f9;
    color: #0f172a;
    border-color: #94a3b8;
  }

  /* 3-column grid cards */
  .features-saas-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }

  .features-saas-card {
    display: flex;
    flex-direction: column;
    padding: 32px;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(226, 232, 240, 0.9);
    border-radius: 20px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
    transition: opacity 0.5s ease, transform 0.3s ease, box-shadow 0.3s ease;
    min-height: 280px;
    opacity: 0;
    transform: translateY(20px);
  }

  .features-saas-card.animate-in {
    opacity: 1;
    transform: translateY(0);
  }

  .features-saas-card.animate-in:nth-child(1) { transition-delay: 0.1s; }
  .features-saas-card.animate-in:nth-child(2) { transition-delay: 0.2s; }
  .features-saas-card.animate-in:nth-child(3) { transition-delay: 0.3s; }

  .features-saas-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px -12px rgba(0, 0, 0, 0.12);
  }

  .features-saas-card-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.1) 0%, rgba(14, 165, 233, 0.1) 100%);
    border-radius: 12px;
    color: #2563eb;
    margin-bottom: 20px;
    transition: transform 0.3s ease, background 0.3s ease;
  }

  .features-saas-card:hover .features-saas-card-icon {
    transform: scale(1.05);
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.15) 0%, rgba(14, 165, 233, 0.15) 100%);
  }

  .features-saas-card-title {
    font-size: 18px;
    font-weight: 700;
    color: #0f172a;
    margin: 0 0 16px;
    letter-spacing: -0.01em;
  }

  .features-saas-card-list {
    list-style: none;
    margin: 0;
    padding: 0;
    font-size: 14px;
    line-height: 1.6;
    color: #475569;
  }

  .features-saas-card-list li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 10px;
  }

  .features-saas-card-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 8px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #94a3b8;
  }

  .features-saas-card-list li:last-child {
    margin-bottom: 0;
  }

  /* Responsive: tablet – featured stacked */
  @media (max-width: 1024px) {
    .features-saas-featured-inner {
      grid-template-columns: 1fr;
      min-height: auto;
    }

    .features-saas-featured-media {
      min-height: 280px;
      order: -1;
    }

    .features-saas-featured-content {
      padding: 40px 32px;
    }

    .features-saas-grid {
      grid-template-columns: 1fr;
    }

    .features-saas-card {
      min-height: auto;
    }
  }

  /* Responsive: mobile */
  @media (max-width: 768px) {
    .features-saas-section {
      padding: 48px 0 56px;
    }

    .features-saas-header {
      margin-bottom: 32px;
    }

    .features-saas-featured {
      margin-bottom: 32px;
    }

    .features-saas-featured-content {
      padding: 32px 24px;
    }

    .features-saas-featured-cta {
      flex-direction: column;
      align-items: stretch;
    }

    .features-saas-btn-primary,
    .features-saas-btn-ghost {
      width: 100%;
      justify-content: center;
    }

    .features-saas-grid {
      gap: 16px;
    }

    .features-saas-card {
      padding: 24px;
    }
  }

  /* Dashboard Section */
  .dashboard-section {
    padding: 60px 0px;
    background: linear-gradient(to bottom, #f8fafc 0%, #ffffff 100%);
  }

  .personas-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-bottom: 80px;
  }

  .persona-card {
    background: white;
    border: 2px solid #e2e8f0;
    border-radius: 16px;
    padding: 24px;
    text-align: center;
    transition: all 0.3s ease;
  }

  .persona-card:hover {
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
    transform: translateY(-4px);
  }

  .persona-icon {
    display: inline-flex;
    border-radius: 12px;
    padding: 16px;
    margin-bottom: 16px;
    color: white;
  }

  .persona-title {
    font-size: 18px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 8px;
  }

  .persona-description {
    font-size: 14px;
    color: #64748b;
  }

  .dashboard-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
  }

  .dashboard-image-wrapper {
    position: relative;
    border-radius: 16px;
    /* overflow: hidden; */
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    border: 4px solid white;
  }

  .dashboard-image {
    width: 100%;
    height: auto;
  }

  .dashboard-image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(37, 99, 235, 0.4), transparent);
  }

  .dashboard-stat-card {
    position: absolute;
    bottom: -24px;
    right: -24px;
    background: white;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.2);
    border: 2px solid #93c5fd;
    display: flex;
    align-items: center;
    gap: 12px;
  }

  .dashboard-stat-icon {
    background: linear-gradient(135deg, #2563eb 0%, #06b6d4 100%);
    border-radius: 8px;
    padding: 12px;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .dashboard-stat-label {
    font-size: 12px;
    color: #64748b;
  }

  .dashboard-stat-value {
    font-size: 24px;
    font-weight: 800;
    color: #0f172a;
  }

  .dashboard-title {
    font-size: 34px;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 6px;
  }

  .dashboard-subtitle {
    font-size: 18px;
    color: #64748b;
    margin-bottom: 16px;
  }

  .insights-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 32px;
  }

  .insight-item {
    display: flex;
    align-items: center;
    gap: 16px;
    background: linear-gradient(to right, #eff6ff 0%, #cffafe 100%);
    border: 1px solid #93c5fd;
    border-radius: 12px;
    padding: 16px;
    transition: all 0.3s ease;
  }

  .insight-item:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transform: translateX(4px);
  }

  .insight-item svg {
    flex-shrink: 0;
    color: #2563eb;
    background: white;
    border-radius: 8px;
    padding: 10px;
    width: 46px;
    height: 46px;
  }

  .insight-item span {
    flex: 1;
    font-weight: 600;font-size:18px;
    color: #0f172a;
  }

  .insight-badge {
    background: white;
    border: 1px solid #93c5fd;
    border-radius: 8px;
    padding: 8px 16px;
    font-size: 12px;
    font-weight: 700;
    color: #2563eb;
  }

  .dashboard-cta-box {
    background: linear-gradient(135deg, #2563eb 0%, #06b6d4 100%);
    border-radius: 12px;
    padding: 24px;
    text-align: center;
    color: white;
    font-size: 18px;
    font-weight: 600;
  }

  /* How It Works Section */
  .how-it-works-section {
    padding: 60px 0px;
    background: white;
  }

  .steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-bottom: 48px;
  }

  .step-card {
    position: relative;
    background: white;
    border: 2px solid #e2e8f0;
    border-radius: 16px;
    padding: 32px;
    transition: all 0.3s ease;
  }

  .step-card:hover {
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
    transform: translateY(-4px);
  }

  .step-number {
    position: absolute;
    top: -16px;
    left: -16px;
    background: linear-gradient(135deg, #2563eb 0%, #06b6d4 100%);
    color: white;
    border-radius: 12px;
    padding: 8px 16px;
    font-weight: 700;
    font-size: 18px;
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.4);
  }

  .step-icon {
    display: inline-flex;
    border-radius: 16px;
    padding: 20px;
    margin-bottom: 24px;
    color: white;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease;
  }

  .step-card:hover .step-icon {
    transform: scale(1.1);
  }

  .step-title {
    font-size: 20px;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 12px;
  }

  .step-description {
    color: #334155;font-size:16px;
    font-weight: 500;
    margin-bottom: 16px;
  }

  .step-details {
    background: linear-gradient(to right, #eff6ff 0%, #cffafe 100%);
    border: 1px solid #93c5fd;
    border-radius: 12px;
    padding: 16px;
    font-size: 14px;
    font-weight: 600;
    color: #2563eb;
  }

  .how-it-works-cta {
    background: linear-gradient(135deg, #2563eb 0%, #06b6d4 100%);
    border-radius: 16px;
    padding: 48px;
    text-align: center;
    color: white;
    box-shadow: 0 20px 60px rgba(37, 99, 235, 0.3);
  }

  .how-it-works-cta svg {
    margin: 0 auto 16px;
  }

  .how-it-works-cta h3 {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 16px;
  }

  .how-it-works-cta p {
    font-size: 20px;
    margin-bottom: 24px;
    opacity: 0.9;
  }

  .how-it-works-cta .btn-primary, .cost-cta-box .btn-primary {
    background: white !important;
    color: #2563eb !important;
    display: inline-flex;
  }

  /* Testimonials Section */
  .testimonials-section {
    padding: 60px 0px;
    background: linear-gradient(to bottom, #ffffff 0%, #f8fafc 100%);
  }

  .testimonials-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    margin-bottom: 64px;
  }

  .testimonial-card {
    position: relative;
    background: white;
    border: 2px solid #e2e8f0;
    border-radius: 16px;
    padding: 32px;
    transition: all 0.3s ease;
    overflow: hidden;
  }

  .testimonial-card:hover {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    transform: translateY(-4px);
  }

  .testimonial-accent {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(135deg, #2563eb 0%, #06b6d4 100%);
  }

  .testimonial-quote-icon {
    background: linear-gradient(to right, #dbeafe 0%, #cffafe 100%);
    border-radius: 12px;
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #2563eb;
    margin-bottom: 24px;
  }

  .testimonial-stars {
    display: flex;
    gap: 4px;
    margin-bottom: 16px;
    color: #fbbf24;
  }

  .testimonial-quote {
    font-size: 18px;
    color: #334155;
    line-height: 1.7;
    margin-bottom: 24px;
  }

  .testimonial-author {
    display: flex;
    align-items: center;
    gap: 16px;
    padding-top: 24px;
    border-top: 1px solid #e2e8f0;
    position: relative;
  }

  .author-image {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #93c5fd;
  }

  .author-check {
    position: absolute;
    left: 42px;
    top: 18px;
    background: linear-gradient(135deg, #2563eb 0%, #06b6d4 100%);
    border-radius: 50%;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid white;
    color: white;
  }

  .author-name {
    font-weight: 700;
    color: #0f172a;
	  font-size:16px;
  }

  .author-role {
    font-size: 14px;
    color: #64748b;
  }

  .author-company {
    font-size: 14px;
    font-weight: 600;
    color: #2563eb;
  }

  .stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }

  .stat-card {
    border-radius: 12px;
    padding: 24px;
    text-align: center;
    border: 2px solid;
  }

  .stat-card-blue {
    background: linear-gradient(135deg, #eff6ff 0%, #cffafe 100%);
    border-color: #93c5fd;
  }

  .stat-card-purple {
    background: linear-gradient(135deg, #f3e8ff 0%, #eff6ff 100%);
    border-color: #d8b4fe;
  }

  .stat-card-green {
    background: linear-gradient(135deg, #dcfce7 0%, #cffafe 100%);
    border-color: #86efac;
  }

  .stat-card .stat-value {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 8px;
  }

  .stat-card-blue .stat-value {
    color: #2563eb;
  }

  .stat-card-purple .stat-value {
    color: #7c3aed;
  }

  .stat-card-green .stat-value {
    color: #16a34a;
  }

  .stat-card .stat-label {
    font-weight: 600;
    color: #334155;
  }

  /* Cost Section */
  .cost-section {
    padding: 60px 0px;
    background: white;
  }

  .cost-comparison-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    margin-bottom: 48px;
  }

  .cost-card {
    background: white;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
  }

  .cost-card:hover {
    box-shadow: 0 20px 48px rgba(0, 0, 0, 0.2);
    transform: translateY(-4px);
  }

  .cost-card-risk {
    border: 2px solid #fca5a5;
  }

  .cost-card-protection {
    border: 2px solid #93c5fd;
  }

  .cost-card-image {
    position: relative;
    height: 256px;
    overflow: hidden;
  }

  .cost-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .cost-card-image-overlay {
    position: absolute;
    inset: 0;
  }

  .overlay-red {
    background: linear-gradient(to top, rgba(185, 28, 28, 0.9) 0%, rgba(185, 28, 28, 0.4) 50%, transparent 100%);
  }

  .overlay-blue {
    background: linear-gradient(to top, rgba(37, 99, 235, 0.9) 0%, rgba(37, 99, 235, 0.4) 50%, transparent 100%);
  }

  .cost-card-header {
    position: absolute;
    bottom: 24px;
    left: 24px;
    right: 24px;
    display: flex;
    align-items: center;
    gap: 12px;
  }

  .cost-card-icon {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(8px);
    border-radius: 12px;
    padding: 10px;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .cost-card-title {
    font-size: 24px;
    font-weight: 800;
    color: white;
    margin-bottom: 4px;
  }

  .cost-card-subtitle {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.9);
  }

  .cost-card-body {
    padding: 32px;
    display: flex;
    flex-direction: column;
    gap: 20px;
  }

  .cost-item {
    border-radius: 12px;
    padding: 20px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
  }

  .cost-item-risk {
    background: #fef2f2;
    border: 1px solid #fee2e2;
  }

  .cost-item-protection {
    background: linear-gradient(135deg, #eff6ff 0%, #cffafe 100%);
    border: 1px solid #93c5fd;
  }

  .cost-item svg {
    flex-shrink: 0;
    margin-top: 2px;
  }

  .cost-item-risk svg {
    color: #dc2626;
  }

  .cost-item-protection svg {
    color: #2563eb;
  }

  .cost-item-title {
    font-size: 18px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 4px;
  }

  .cost-item-description {
    font-size: 14px;
    color: #64748b;
  }

  .cost-cta-box {
    background: linear-gradient(135deg, #2563eb 0%, #06b6d4 100%);
    border-radius: 16px;
    padding: 48px;
    text-align: center;
    color: white;
    box-shadow: 0 20px 60px rgba(37, 99, 235, 0.3);
  }

  .cost-cta-icon {
    display: inline-flex;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(8px);
    border-radius: 12px;
    padding: 16px;
    margin-bottom: 24px;
  }

  .cost-cta-title {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 16px;
  }

  .cost-cta-subtitle {
    font-size: 18px;
    margin-bottom: 32px;
    opacity: 0.9;
  }

  /* Industry Section */
  .industry-section {
    padding: 60px 24px 40px;
    background: linear-gradient(to bottom, #f8fafc 0%, #ffffff 100%);
  }

  .industry-features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 80px;
  }

  .industry-feature-card {
    background: white;
    border: 2px solid #e2e8f0;
    border-radius: 16px;
    padding: 24px;
    text-align: center;
    transition: all 0.3s ease;
  }

  .industry-feature-card:hover {
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
    transform: translateY(-4px);
  }

  .industry-feature-icon {
    display: inline-flex;
    border-radius: 12px;
    padding: 16px;
    margin-bottom: 16px;
    color: white;
    transition: transform 0.3s ease;
  }

  .industry-feature-card:hover .industry-feature-icon {
    transform: scale(1.1);
  }

  .industry-feature-title {
    font-size: 18px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 8px;
  }

  .industry-feature-description {
    font-size: 14px;
    color: #64748b;
  }

  .trust-box {
    background: linear-gradient(135deg, #2563eb 0%, #06b6d4 100%);
    border-radius: 24px;
    padding: 64px;
    text-align: center;
    box-shadow: 0 20px 60px rgba(37, 99, 235, 0.3);
  }

  .trust-box-icon {
    display: inline-flex;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(8px);
    border-radius: 12px;
    padding: 16px;
    color: white;
    margin-bottom: 24px;
  }

  .trust-box-title {
    font-size: 34px;
    font-weight: 800;
    color: white;
    margin-bottom: 16px;
  }

  .trust-box-subtitle {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 48px;
    max-width: 768px;
    margin-left: auto;
    margin-right: auto;
  }

  .trust-badges-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
  }

  .trust-badge {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    padding: 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s ease;
  }

  .trust-badge:hover {
    background: rgba(255, 255, 255, 0.2);
  }

  .trust-badge svg {
    flex-shrink: 0;
    color: white;
  }

  .trust-badge span {
    color: white;
    font-weight: 600;
    text-align: left;
  }

  /* Final CTA Section */
  .final-cta-section {
    padding: 80px 24px;
    background: linear-gradient(to bottom, #ffffff 0%, #f8fafc 100%);
  }

  .final-cta-box {
    position: relative;
    background: linear-gradient(135deg, #2563eb 0%, #1e40af 50%, #06b6d4 100%);
    border-radius: 24px;
    padding: 64px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(37, 99, 235, 0.3);
  }

  .final-cta-pattern {
    position: absolute;
    inset: 0;
    background-image:
      linear-gradient(to right, rgba(255, 255, 255, 0.07) 1px, transparent 1px),
      linear-gradient(to bottom, rgba(255, 255, 255, 0.07) 1px, transparent 1px);
    background-size: 24px 24px;
    opacity: 0.5;
  }

  .final-cta-orb {
    position: absolute;
    width: 192px;
    height: 192px;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.3;
  }

  .final-cta-orb-1 {
    top: -96px;
    right: -96px;
    background: #22d3ee;
  }

  .final-cta-orb-2 {
    bottom: -96px;
    left: -96px;
    background: #3b82f6;
  }

  .final-cta-content {
    position: relative;
    z-index: 10;
    text-align: center;
  }

  .final-cta-title {
    font-size: 56px;
    font-weight: 800;
    color: white;
    line-height: 1.1;
    margin-bottom: 32px;
  }

  .final-cta-messages {
    margin-bottom: 32px;
  }

  .final-cta-messages p {
    font-size: 24px;
    color: rgba(255, 255, 255, 0.95);
    font-weight: 600;
    margin-bottom: 12px;
  }

  .final-cta-benefits {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 16px;
    padding: 24px;
    margin-bottom: 32px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
  }

  .benefits-title {
    color: white;
    font-weight: 600;
    font-size: 18px;
    margin-bottom: 16px;
    text-align: left;
  }

  .benefits-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
  }

  .benefit-item {
    display: flex;
    align-items: center;
    gap: 12px;
    text-align: left;
  }

  .benefit-item svg {
    flex-shrink: 0;
    background: white;
    border-radius: 50%;
    padding: 4px;
    color: #2563eb;
  }

  .benefit-item span {
    color: white;
    font-size: 18px;
  }

  .btn-white {
    background: white;
    color: #2563eb;
    padding: 20px 40px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 20px;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
  }

  .btn-white:hover {
    transform: scale(1.02);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.3);
  }

  .final-cta-note {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    margin-top: 24px;
  }


  /* Responsive Design */
  @media (max-width: 1024px) {

    .hero-container,
    .problem-grid,
    .dashboard-content,
    .cost-comparison-grid {
      grid-template-columns: 1fr;
      gap: 32px;
    }

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

    .personas-grid {
      grid-template-columns: repeat(2, 1fr);
    }

    .steps-grid,
    .trust-badges-grid,
    .industry-features-grid {
      grid-template-columns: repeat(2, 1fr);
    }

    .hero-title {
      font-size: 42px;
    }

    .section-title {
      font-size: 36px;
    }

    .final-cta-title {
      font-size: 42px;
    }
  }

  @media (max-width: 768px) {
    .hero-title {
             font-size: 24px;
        line-height: 32px;margin-bottom: 10px;
    }
	  .features-saas-featured-heading{font-size:18px;}
    .section-title,.features-saas-title {
      font-size: 22px;
    }

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

    .personas-grid,
    .testimonials-grid,
    .stats-grid,
    .steps-grid,
    .trust-badges-grid,
    .industry-features-grid {
      grid-template-columns: 1fr;
    }

    .hero-stat-1,
    .hero-stat-2 {
      position: static;
      margin-top: 16px;
    }

        .dashboard-stat-card {
        position: absolute;
        margin-top: 13px;
        right: 0;
        left: 0;width: 80%;
        padding: 8px;
    }

    .final-cta-title {
      font-size: 32px;
    }
	  .dashboard-stat-value {
		  font-size: 16px;}

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

    .footer-bottom {
      flex-direction: column;
    }
	  
	  .logo-icon img {
    width: 112px;
}
	  .nav-container{    padding: 16px 15px;}
	.nav-cta {padding: 9px 10px;font-size: 12px;} 
	  .container{padding:0 15px}
.hero-section{    padding:110px 15px 52px;}	  
	  .hero-subtitle { font-size: 16px;}
	  .hero-badge{padding:12px 15px;font-size: 12px;    margin-bottom: 15px;}
	  .hero-message-box p {margin-bottom: 6px;font-size: 14px;}
	  .btn-primary,.btn-secondary { padding: 14px 0px; font-size: 14px;width:100%}
	  .overlay-text-2 {font-size:18px;line-height:28px;}
	  .problem-section,.dashboard-section,.capabilities-section,.how-it-works-section,.testimonials-section,.cost-section,.industry-section{padding: 46px 0px;}
	  .overlay-card{padding: 15px 11px;}
	  .problem-image-wrapper{min-height: 332px;}
	  .section-subtitle {		  font-size: 15px;}
	  .step-card {padding: 20px;text-align: center;}
	.step-icon svg{width:22px;height:22px;}
	  .step-icon {padding: 12px; margin-bottom: 18px;}
	  .step-number {position: absolute;top: -20px;left: -6px;}
	  .step-description {font-size: 14px; line-height: 22px;}
	  .step-details {padding: 9px 12px;font-size: 13px;}
	  .step-title {font-size: 17px;}
	  .how-it-works-cta { padding: 28px 15px;}
	  .how-it-works-cta h3 {font-size: 22px;}
	  .how-it-works-cta p {font-size: 15px;margin-bottom: 15px;}
	  .overlay-text-1 {
    font-size: 16px;
	line-height: 24px;}
	  .section-header {
    text-align: center;
    margin-bottom: 24px;
}
	  .dashboard-stat-icon{    padding: 4px;}
	  .risk-card { padding: 14px 10px;
		  gap: 8px;}
	  .risk-title { font-size: 14px;}
	  .risk-description {font-size: 13px;color: #64748b; line-height:21px;margin-bottom:0; }
.risk-list {gap: 8px;}
.capability-title {
    font-size: 17px;
    font-weight: 800;
    color: white;
    margin-bottom: 0;
}
	  .capability-header {
    padding: 14px 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}
	  .persona-icon {
    display: inline-flex;
    border-radius: 12px;
		  padding: 11px;}
	  .capabilities-grid{    gap: 15px;}
	  .capability-item svg{width:8px;}
	  .capability-item {display: flex;font-size: 14px;align-items: flex-start;gap: 12px;margin-bottom: 9px;color: #334155;}
	  .capability-tagline {padding: 10px; font-size: 14px;}
	  .capability-icon-wrapper svg,.risk-icon svg,.persona-icon svg{width:22px;height:22px;}
	  .persona-description{margin-bottom:0;}
	  .persona-card { padding: 18px;}
	  .personas-grid {gap: 14px; margin-bottom: 32px;}
	  .section-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border-radius: 9999px;
    padding: 12px 14px;
    margin-bottom: 14px;
    font-weight: 700;
		  font-size: 10px;}
	  
	  .dashboard-title { font-size: 22px;}
	  .dashboard-subtitle {		  font-size: 15px;}
	  .insight-item svg{    width: 38px;height: 38px;}
	  .insight-item { display: flex; align-items: center; gap:10px;}
	  .insight-item span {font-size: 15px;line-height: 20px;}
	  .dashboard-section{margin-bottom:0;}
	  .dashboard-cta-box {padding: 10px; font-size: 16px;}
	  
	  .testimonial-card { padding: 15px;}
	  .testimonial-quote {font-size: 15px;margin-bottom: 14px;}
	  .stat-card .stat-value {font-size: 26px;}
	  .stat-card { padding: 12px 0;}
	  .testimonials-grid {gap: 15px; margin-bottom: 24px;}
	  .cost-card-image { position: relative; height: 132px;}
	  .cost-card-body {padding: 22px 15px;gap: 10px;}
	  .cost-card-header{    align-items: flex-start;}
	  .cost-item-title { font-size: 15px;}
	  .cost-item {padding:12px;}
	  .cost-cta-box{padding:20px 14px;}
	  .cost-cta-title { font-size: 22px;line-height: 32px;margin-bottom: 10px;}
	  .cost-cta-subtitle { font-size: 15px; margin-bottom: 15px;}
	  .industry-feature-card { padding: 22px 18px;}
	  .industry-feature-icon {padding:12px; margin-bottom: 14px;}
	   .industry-feature-icon svg{    width:24px;height:24px;}
	  .industry-feature-title {font-size: 16px; line-height: 26px;}
	  .industry-feature-description{margin-bottom:0;}
	  .industry-features-grid {gap: 12px; margin-bottom: 10px;}
	  .trust-box { padding: 25px 15px;        margin: 30px 0 0;}
	  .trust-box-title { font-size: 22px; margin-bottom: 10px;}
	  .trust-box-subtitle { font-size: 16px;margin-bottom: 15px;max-width: 100%;}
	  .modal-content { width: 100%;}
	  
  }

  /* Animations */
  @keyframes fadeInUp {
    from {
      opacity: 0;
      transform: translateY(20px);
    }

    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  .animate-fade-in {
    animation: fadeInUp 0.6s ease-out forwards;
  }

 #model.active, #model1.active,#model2.active { display: flex;}
  .model-content.new-popup-model {background-color: white; padding: 20px; border-radius: 10px;text-align: center;width: 500px; margin: 0 auto;top:120px;position: relative;}
  .model-content.new-popup-model2 {background-color: white; padding: 10px 10px 6px; border-radius: 10px;text-align: center;width: 600px; margin: 0 auto;top:96px;position: relative;    height:auto;}
  .model-content {background-color: white;padding: 20px; border-radius: 10px;text-align: center; width: auto; position: relative;}
  .model-content img {  width:80px;margin-bottom:10px;}
  .close-modal {position: absolute; top: 10px; right: 10px;  cursor: pointer;}
  .form-sec.new-formbg h6 {text-align: center;font-size: 20px;font-weight: 700; color: #000;    padding: 14px 0 0px;margin-top: -20px;}
  .form-sec.new-formbg p { font-size: 12.4px;font-weight: 500;text-align:center;  color: #000;}
  .close-modal img {  width:16px;}




 /* =========================
   Ensure Security Section
========================= */

.ensure-security-section{
  padding:100px 0;
  background:linear-gradient(180deg, #eef6ff 0%, #f8fbff 100%);
}

/* Header */
.ensure-security-header{
  text-align:center;
  margin-bottom:70px;
}

.ensure-security-title{
  font-size:34px;
  font-weight:800;
  color:#0f172a;
  line-height:1.2;
  margin-bottom:20px;
}

.ensure-security-subtitle{
  max-width:850px;
  margin:auto;
  font-size:18px;
  line-height:1.8;
  color:#64748b;
}

/* Card */
.ensure-security-card{
  background: #ffffff;
    border: 1px solid #E2E8F0;
    border-radius: 22px;
    padding: 25px 32px;
    height: 100%;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.05);
    transition: 0.3s ease;

  
}

.ensure-security-card:hover{
  transform:translateY(-6px);
  box-shadow:0 18px 40px rgba(15, 23, 42, 0.10);
}

.ensure-security-card-title{
  font-size:18px;
  font-weight:700;
  color:#0f172a;
  margin-bottom:12px;
  line-height:1.4;
}

.ensure-security-card-text{
  font-size:15px;
  line-height:1.5;
  color:#64748b;
  margin-bottom:0;
}

/* Tablet */
@media(max-width:991px){

  .ensure-security-section{
    padding:80px 0;
  }

  .ensure-security-header{
    margin-bottom:55px;
  }

  .ensure-security-title{
    font-size:42px;
  }

  .ensure-security-card{
    padding:30px 25px;
  }
}

/* Mobile */
@media(max-width:767px){

  .ensure-security-section{
    padding:70px 0;
  }

  .ensure-security-title{
    font-size:32px;
  }

  .ensure-security-subtitle{
    font-size:16px;
  }

  .ensure-security-card-title{
    font-size:22px;
  }

  .ensure-security-card{
    border-radius:18px;
  }
}




 .stats-section {
     background: linear-gradient(135deg, #2563eb 0%, #06b6d4 100%);
      width: 100%;
      padding: 60px 50px;
    }

    .stat-box {
      text-align: center;
      padding: 10px;
    }

    .stat-number {
      font-size: 48px;
      font-weight: 800;
      color: #ffffff;
      line-height: 1;
      margin-bottom: 15px;
      letter-spacing: -1px;
    }

    .stat-label {
      color: rgba(255, 255, 255, 0.85);
      font-size: 18px;
      font-weight: 400;
      line-height: 1.6;
      max-width: 220px;
      margin: 0 auto;
    }

    /* Tablet */
    @media (max-width: 991px) {
      .stat-number {
        font-size: 52px;
      }

      .stat-label {
        font-size: 17px;
      }

      .stats-section {
        padding: 60px 0;
      }
    }

    /* Mobile */
    @media (max-width: 767px) {
      .stats-section {
        padding: 50px 0;
      }

      .stat-box {
        margin-bottom: 40px;
      }

      .stat-number {
        font-size: 46px;
      }

      .stat-label {
        font-size: 16px;
      }
    }
 




 /* =========================
       CEO Spotlight Section
    ========================= */

    .ceo-spotlight-section{
      width:100%;
      background:#f3f4f6;
      padding:100px 0;
    }

    .ceo-spotlight-wrapper{
      background:#ffffff;border: 1px solid #1E88E5;
      border-radius:28px;
      padding:60px;
      box-shadow:0 10px 40px rgba(0,0,0,0.05);
    }

    .ceo-left-panel{    
      border-left:5px solid #d4a017;
      padding-left:10px;
      height:100%;
      display:flex;
      align-items:flex-start;
    }

    .ceo-author-box{
      display:flex;
      align-items:center;
      gap:18px;
    }

    .ceo-author-image{
      width:175px;
      height:175px;
      border-radius:50%;
      overflow:hidden;
      flex-shrink:0;
      border:4px solid #ffffff;
      box-shadow:0 6px 20px rgba(0,0,0,0.10);
    }

    .ceo-author-image img{
      width:100%;
      height:100%;
      object-fit:cover;
    }

    .ceo-author-content span{
      display:block;
      font-size:13px;
      font-weight:700;
      color:#d4a017;
      letter-spacing:1px;
      margin-bottom:10px;
    }

    .ceo-author-content h5{
      font-size:20px;
      font-weight:700;
      color:#111827;
      margin-bottom:8px;
      line-height:1.4;
    }

    .ceo-author-content p{
      font-size:15px;
      color:#6b7280;
      margin:0;
      line-height:1.6;
    }

    /* Right Content */

    .ceo-content{
      padding-left:35px;
    }

    .ceo-heading{
      font-size:34px;
      font-weight:800;
      color:#111827;
      line-height:1.2;
      margin-bottom:28px;
    }

    .ceo-description{
      font-size:16px;
      color:#4b5563;
      line-height:1.6;
      margin-bottom:22px;
    }

    .ceo-cta{
      display:inline-flex;
      align-items:center;
      gap:10px;
      font-size:17px;
      font-weight:700;
      color:#0b5cff;
      text-decoration:none;
      transition:0.3s ease;
      margin-top:10px;
    }

    .ceo-cta:hover{
      gap:16px;
      color:#003fd1;
    }

    /* =========================
       Tablet
    ========================= */

    @media(max-width:991px){

      .ceo-spotlight-section{
        padding:80px 0;
      }

      .ceo-spotlight-wrapper{
        padding:45px;
      }

      .ceo-content{
        padding-left:0;
        margin-top:40px;
      }

      .ceo-heading{
        font-size:38px;
      }
    }

    /* =========================
       Mobile
    ========================= */

    @media(max-width:767px){

      .ceo-spotlight-section{
        padding:70px 0;
      }

      .ceo-spotlight-wrapper{
        padding:30px 22px;
        border-radius:22px;
      }

      .ceo-left-panel{
        padding-left:20px;
      }

      .ceo-author-box{
        flex-direction:column;
        align-items:flex-start;
      }

      .ceo-author-image{
        width:75px;
        height:75px;
      }

      .ceo-heading{
        font-size:30px;
      }

      .ceo-description{
        font-size:16px;
      }

      .ceo-author-content h5{
        font-size:20px;
      }
    }




.testimonial-top-heading{
    display:flex;
    align-items:center;
    gap:14px;
    margin-bottom:20px;
}

.testimonial-heading{
    margin:0;
    font-size:22px;
    font-weight:700;
    color:#111827;
    line-height:1.3;
}