* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* ===== Global Typography (single source of truth via :root tokens) ===== */
html {
  font-family: var(--font-family-base, Inter, Arial, sans-serif);
  font-size: 16px;
  line-height: var(--line-height-base, 1.5);
  color: var(--text, #111827);
}

body {
  font-family: inherit;
  background: var(--page-bg, #ffffff);
  color: var(--page-text, #111827);
}

:root[data-theme="dark"] {
  --page-bg: #0b0f19;
  --page-text: #e5e7eb;
  --muted-text: #b6c0cf;
  --header-bg: #0f1627;
  --header-border: #243049;
  --surface-bg: #121826;
  --border-color: #2b3449;
  --dropdown-hover: rgba(255, 255, 255, 0.06);
}

:root[data-theme="dark"] .main-header {
  background: var(--header-bg);
  border-top-color: var(--header-border);
}

:root[data-theme="dark"] .nav-menu a,
:root[data-theme="dark"] .dropdown-toggle {
  color: var(--page-text);
}

:root[data-theme="dark"] .hamburger {
  color: var(--page-text);
}

:root[data-theme="dark"] .dropdown-menu {
  background: var(--surface-bg);
  border-color: var(--border-color);
}

:root[data-theme="dark"] .dropdown-menu a {
  color: var(--page-text);
}

:root[data-theme="dark"] .dropdown-menu a:hover {
  background: var(--dropdown-hover);
}

:root[data-theme="dark"] .header-select {
  background: var(--surface-bg);
  color: var(--page-text);
  border-color: var(--border-color);
}

:root[data-theme="dark"] .privacy-page-main,
:root[data-theme="dark"] .license-page-section {
  background: var(--page-bg);
}

:root[data-theme="dark"] .privacy-container h1,
:root[data-theme="dark"] .privacy-container h2,
:root[data-theme="dark"] .license-page-container h2,
:root[data-theme="dark"] .license-page-container h3 {
  color: var(--page-text);
}

:root[data-theme="dark"] .privacy-container p,
:root[data-theme="dark"] .privacy-container li,
:root[data-theme="dark"] .license-page-container p,
:root[data-theme="dark"] .license-page-container li {
  color: var(--muted-text);
}

:root[data-theme="dark"] .features-section,
:root[data-theme="dark"] .about-section,
:root[data-theme="dark"] .faq-section,
:root[data-theme="dark"] .download-section,
:root[data-theme="dark"] .downloads-page-main {
  background: var(--page-bg);
}

:root[data-theme="dark"] .features-container h2,
:root[data-theme="dark"] .about-header h2,
:root[data-theme="dark"] .about-left h3,
:root[data-theme="dark"] .faq-section h2,
:root[data-theme="dark"] .download-section h2 {
  color: var(--page-text);
}

:root[data-theme="dark"] .features-subtitle,
:root[data-theme="dark"] .about-header p,
:root[data-theme="dark"] .desc,
:root[data-theme="dark"] .subtitle,
:root[data-theme="dark"] .faq-answer,
:root[data-theme="dark"] .download-table span {
  color: var(--muted-text);
}

:root[data-theme="dark"] .feature-card,
:root[data-theme="dark"] .company,
:root[data-theme="dark"] .address,
:root[data-theme="dark"] .faq-item,
:root[data-theme="dark"] .download-table {
  background: var(--surface-bg);
  border-color: var(--border-color);
}

:root[data-theme="dark"] .feature-card h4,
:root[data-theme="dark"] .faq-question,
:root[data-theme="dark"] .download-table th,
:root[data-theme="dark"] .download-table td {
  color: var(--page-text);
}

:root[data-theme="dark"] .feature-card p {
  color: var(--muted-text);
}

:root[data-theme="dark"] .faq-answer,
:root[data-theme="dark"] .download-table td {
  border-top-color: var(--border-color);
}

:root[data-theme="dark"] .faq-item {
  border-color: var(--border-color);
}

:root[data-theme="dark"] .download-table thead {
  background: #1f2937;
}

:root[data-theme="dark"] .analytics-section,
:root[data-theme="dark"] .os-section,
:root[data-theme="dark"] .admin-features-section,
:root[data-theme="dark"] .demo-section,
:root[data-theme="dark"] .video-section,
:root[data-theme="dark"] .edition-section {
  background: var(--page-bg);
}

:root[data-theme="dark"] .analytics-content h2,
:root[data-theme="dark"] .os-container h2,
:root[data-theme="dark"] .admin-features-section .features-container h2,
:root[data-theme="dark"] .demo-container h2,
:root[data-theme="dark"] .video-section h2,
:root[data-theme="dark"] .edition-section h2 {
  color: var(--page-text);
}

:root[data-theme="dark"] .analytics-desc,
:root[data-theme="dark"] .os-subtitle,
:root[data-theme="dark"] .admin-features-section .features-subtitle,
:root[data-theme="dark"] .demo-subtitle,
:root[data-theme="dark"] .form-note,
:root[data-theme="dark"] .subtitle {
  color: var(--muted-text);
}

:root[data-theme="dark"] .analytics-card,
:root[data-theme="dark"] .os-card,
:root[data-theme="dark"] .os-cta,
:root[data-theme="dark"] .demo-form-card,
:root[data-theme="dark"] .edr-feature-card,
:root[data-theme="dark"] .linux-feature-card {
  background: var(--surface-bg);
  border-color: var(--border-color);
}

:root[data-theme="dark"] .os-card ul li,
:root[data-theme="dark"] .os-cta p,
:root[data-theme="dark"] .demo-form-card label,
:root[data-theme="dark"] .demo-form-card p {
  color: var(--muted-text);
}

:root[data-theme="dark"] .demo-form-card input,
:root[data-theme="dark"] .demo-form-card textarea,
:root[data-theme="dark"] .videos-search {
  background: var(--surface-bg);
  border-color: var(--border-color);
}

:root[data-theme="dark"] .demo-form-card input,
:root[data-theme="dark"] .demo-form-card textarea,
:root[data-theme="dark"] .videos-search input {
  color: var(--page-text);
}

:root[data-theme="dark"] .demo-form-card input::placeholder,
:root[data-theme="dark"] .demo-form-card textarea::placeholder,
:root[data-theme="dark"] .videos-search input::placeholder {
  color: rgba(229, 231, 235, 0.65);
}

:root[data-theme="dark"] .admin-features-section .feature-card {
  background: var(--surface-bg);
}

:root[data-theme="dark"] .admin-features-section .feature-text {
  color: var(--muted-text);
}

:root[data-theme="dark"] .edition-table {
  background: var(--surface-bg);
}

:root[data-theme="dark"] .edition-table th,
:root[data-theme="dark"] .edition-table td {
  border-bottom-color: var(--border-color);
}

:root[data-theme="dark"] .edition-table td {
  color: var(--page-text);
}

:root[data-theme="dark"] .edition-table td:nth-child(5) {
  background: rgba(245, 241, 234, 0.08);
}

:root[data-theme="dark"] .edition-table td:nth-child(6) {
  background: rgba(241, 226, 200, 0.08);
}

:root[data-theme="dark"] .linux-hero-section,
:root[data-theme="dark"] .linux-key-features-section,
:root[data-theme="dark"] .linux-system-req-section,
:root[data-theme="dark"] .linux-request-demo-section,
:root[data-theme="dark"] .edr-hero-section,
:root[data-theme="dark"] .edr-overview-section,
:root[data-theme="dark"] .edr-feature-section,
:root[data-theme="dark"] .edr-flow-section,
:root[data-theme="dark"] .edr-request-section,
:root[data-theme="dark"] .videos-page-main {
  background: var(--page-bg);
}

:root[data-theme="dark"] .linux-hero-content h1,
:root[data-theme="dark"] .linux-features-title,
:root[data-theme="dark"] .linux-feature-group h3,
:root[data-theme="dark"] .linux-system-req-title,
:root[data-theme="dark"] .linux-request-demo-title,
:root[data-theme="dark"] .linux-request-demo-left h3,
:root[data-theme="dark"] .edr-hero-content h1,
:root[data-theme="dark"] .edr-overview-content h2,
:root[data-theme="dark"] .edr-flow-left h2,
:root[data-theme="dark"] .edr-feature-card h3,
:root[data-theme="dark"] .edr-request-container h2,
:root[data-theme="dark"] .videos-top-bar h1 {
  color: var(--page-text);
}

:root[data-theme="dark"] .linux-hero-content p,
:root[data-theme="dark"] .linux-feature-card p,
:root[data-theme="dark"] .linux-request-demo-subtitle,
:root[data-theme="dark"] .linux-request-demo-desc,
:root[data-theme="dark"] .edr-hero-content p,
:root[data-theme="dark"] .edr-overview-content p,
:root[data-theme="dark"] .edr-flow-left p,
:root[data-theme="dark"] .edr-feature-card p,
:root[data-theme="dark"] .edr-request-subtitle,
:root[data-theme="dark"] .videos-top-bar p {
  color: var(--muted-text);
}

:root[data-theme="dark"] .downloads-hero h1 {
  color: var(--page-text);
}

:root[data-theme="dark"] .download-page-note {
  color: var(--muted-text);
}

:root[data-theme="dark"] .download-page-note a {
  color: var(--brand);
}

:root[data-theme="dark"] .download-table-wrap {
  background: var(--surface-bg);
  border-color: var(--border-color);
}

:root[data-theme="dark"] .downloads-page .download-btn-link {
  color: #93c5fd;
}

:root[data-theme="dark"] .downloads-page .download-btn-link:hover {
  color: #bfdbfe;
}

:root[data-theme="dark"] .linux-feature-card h4 {
  color: var(--page-text);
}

:root[data-theme="dark"] .linux-btn-outline,
:root[data-theme="dark"] .edr-btn-outline {
  background: transparent;
  color: var(--brand);
}

:root[data-theme="dark"] .linux-system-req-item {
  background: var(--surface-bg);
  border-color: var(--border-color);
}

:root[data-theme="dark"] .linux-system-req-item summary {
  color: var(--page-text);
}

:root[data-theme="dark"] .linux-system-req-item[open] summary {
  border-bottom-color: var(--border-color);
  background: rgba(255, 255, 255, 0.03);
}

:root[data-theme="dark"] .linux-system-req-content {
  background: rgba(255, 255, 255, 0.02);
}

:root[data-theme="dark"] .linux-system-req-content li {
  color: var(--muted-text);
}

:root[data-theme="dark"] .videos-top-bar {
  border-bottom-color: var(--border-color);
}

:root[data-theme="dark"] .videos-sidebar {
  background: var(--surface-bg);
  border-right-color: var(--border-color);
}

:root[data-theme="dark"] .videos-cats button {
  color: var(--page-text);
}

:root[data-theme="dark"] .videos-cats button:hover {
  background: rgba(255, 255, 255, 0.04);
}

:root[data-theme="dark"] .videos-cats button.active {
  background: rgba(245, 158, 11, 0.14);
  color: var(--brand);
}

:root[data-theme="dark"] .npav-blog-message {
  color: var(--muted-text);
}

:root[data-theme="dark"] .blog-card,
:root[data-theme="dark"] .npav-blog-card {
  background: var(--surface-bg);
  border-color: var(--border-color);
  box-shadow: none;
}

:root[data-theme="dark"] .blog-card h4,
:root[data-theme="dark"] .npav-blog-card h4 {
  color: var(--page-text);
}

:root[data-theme="dark"] .blog-card p,
:root[data-theme="dark"] .npav-blog-card p {
  color: var(--muted-text);
}

:root[data-theme="dark"] .blog-footer {
  border-top-color: var(--border-color);
  color: var(--muted-text);
}

:root[data-theme="dark"] .npav-blog-card .blog-footer {
  border-top-color: var(--border-color);
}

:root[data-theme="dark"] .npav-blog-more-btn {
  background: transparent;
}

:root[data-theme="dark"] .demo-left h3 {
  color: var(--page-text);
}

:root[data-theme="dark"] .demo-desc,
:root[data-theme="dark"] .contact-item p,
:root[data-theme="dark"] .contact-item span {
  color: var(--muted-text);
}

:root[data-theme="dark"] .emergency-box {
  background: var(--surface-bg);
}

:root[data-theme="dark"] .emergency-box strong {
  color: var(--page-text);
}

:root[data-theme="dark"] .emergency-box p {
  color: var(--muted-text);
}

:root[data-theme="dark"] .emergency-box a {
  color: #93c5fd;
}

:root[data-theme="dark"] .edr-contact-col > p {
  color: var(--muted-text);
}

:root[data-theme="dark"] .edr-contact-item h4 {
  color: var(--page-text);
}

:root[data-theme="dark"] .edr-contact-item p,
:root[data-theme="dark"] .edr-contact-item span {
  color: var(--muted-text);
}

:root[data-theme="dark"] .edr-emergency-box {
  background: var(--surface-bg);
}

:root[data-theme="dark"] .edr-emergency-box p {
  color: var(--muted-text);
}

:root[data-theme="dark"] .edr-emergency-box a {
  color: #93c5fd;
}

:root[data-theme="dark"] .edr-form-card {
  background: var(--surface-bg);
  box-shadow: none;
}

:root[data-theme="dark"] .edr-form input,
:root[data-theme="dark"] .edr-form textarea {
  background: rgba(255, 255, 255, 0.02);
  border-color: var(--border-color);
  color: var(--page-text);
}

:root[data-theme="dark"] .edr-form input::placeholder,
:root[data-theme="dark"] .edr-form textarea::placeholder {
  color: rgba(229, 231, 235, 0.65);
}

:root[data-theme="dark"] .edr-form-note {
  color: var(--muted-text);
}

:root[data-theme="dark"] .linux-request-demo-left h3 {
  color: var(--page-text);
}

:root[data-theme="dark"] .linux-request-contact-text h4 {
  color: var(--page-text);
}

:root[data-theme="dark"] .linux-request-contact-text p {
  color: var(--muted-text);
}

:root[data-theme="dark"] .linux-request-emergency-box {
  background: var(--surface-bg);
}

:root[data-theme="dark"] .linux-request-emergency-box h4 {
  color: var(--page-text);
}

:root[data-theme="dark"] .linux-request-emergency-box p {
  color: var(--muted-text);
}

:root[data-theme="dark"] .linux-request-emergency-box a {
  color: #93c5fd;
}

:root[data-theme="dark"] .linux-request-demo-form input,
:root[data-theme="dark"] .linux-request-demo-form textarea {
  background: rgba(255, 255, 255, 0.02);
  border-color: var(--border-color);
  color: var(--page-text);
}

:root[data-theme="dark"] .linux-request-demo-form input::placeholder,
:root[data-theme="dark"] .linux-request-demo-form textarea::placeholder {
  color: rgba(229, 231, 235, 0.65);
}

:root[data-theme="dark"] .linux-request-form-note {
  color: var(--muted-text);
}

input,
textarea,
select,
button {
  font-family: inherit;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-family-heading, var(--font-family-base, Inter, Arial, sans-serif));
}

h1 { font-size: var(--font-size-h1, clamp(1.8rem, 5vw, 3rem)); }
h2 { font-size: var(--font-size-h2, clamp(1.6rem, 3.6vw, 2rem)); }
h3 { font-size: var(--font-size-h3, clamp(1.25rem, 2.2vw, 1.5rem)); }
h4 { font-size: var(--font-size-h4, 1rem); }

/* Dynamic latest blogs from API */
.npav-blog-grid {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(4, minmax(240px, 1fr));
  gap: 30px;
  margin-bottom: 26px;
}

.npav-blog-message {
  grid-column: 1 / -1;
  text-align: center;
  color: #4b5563;
  padding: 12px;
}

.npav-blog-card {
  width: 100%;
  display: flex;
  flex-direction: column;
  height: 100%;
  border: 1px solid #d7dce1;
  border-radius: 10px;
  box-shadow: none;
}

.npav-blog-card p {
  flex: 1;
}

.npav-blog-card .blog-footer {
  margin-top: auto;
  border-top: 1px solid #e5e7eb;
}

.npav-blog-card .blog-footer a {
  color: var(--brand);
  font-weight: 600;
}

.npav-blog-action {
  width: 100%;
  display: flex;
  justify-content: center;
}

.npav-blog-more-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 200px;
  min-height: 48px;
  padding: 10px 20px;
  border: 2px solid var(--brand);
  border-radius: 8px;
  color: var(--brand);
  font-weight: 600;
  font-size: 1.05rem;
  text-decoration: none;
  background: #fff;
}

@media (max-width: 1024px) {
  .npav-blog-grid {
    grid-template-columns: repeat(2, minmax(240px, 1fr));
    gap: 22px;
  }
}

@media (max-width: 768px) {
  .npav-blog-grid {
    grid-template-columns: 1fr;
  }
}

body.has-fixed-header {
  padding-top: var(--header-height);
}

/* HEADER */
.main-header {
  width: 100%;
  background: #f4f4f4;
  border-top: 4px solid #333;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 3000;
}

.nav-container {
  max-width: none;
  width: 100%;
  margin: 0;
  padding: 12px 8px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  overflow: visible;
}

/* LOGO */
.logo img {
  display: block;
  width: auto;
  height: auto;
  max-height: 42px;
  object-fit: contain;
}

/* HEADER ZONES */
.header-left {
  justify-self: start;
  display: flex;
  align-items: center;
  gap: 14px;
  white-space: nowrap;
}

.header-left .logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.header-left .logo-npav img {
  max-height: 38px;
  max-width: 112px;
}

.header-left .logo-eps img {
  max-height: 42px;
  max-width: 182px;
}

.header-center {
  display: flex;
  align-items: center;
  justify-self: center;
  gap: 20px;
  position: relative;
  z-index: 210;
  overflow: visible;
}

.header-right-slot {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 14px;
}

.header-prefs {
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: flex-end;
}

.header-select {
  appearance: auto;
  border: 1px solid #cbd5e1;
  border-radius: 4px;
  background: #ffffff;
  color: #111827;
  padding: 6px 10px;
  font-size: 13px;
  font-weight: 600;
}

/* MENU */
.nav-menu {
  display: flex;
  gap: 25px;
}

.nav-menu a {
  text-decoration: none;
  color: black;
  font-size: 15px;
  font-weight: 600;
}

.nav-dropdown {
  position: relative;
  padding-bottom: 8px;
}

.dropdown-toggle {
  background: transparent;
  border: none;
  cursor: pointer;
  font-size: 15px;
  font-weight: 600;
  color: #111;
  padding: 0;
}

.dropdown-toggle .caret {
  font-size: 12px;
}

.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 220px;
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
  z-index: 9999;
  overflow: hidden;
}

.dropdown-menu a {
  display: block;
  padding: 10px 14px;
  color: #111827;
  text-decoration: none;
  font-size: 14px;
}

.dropdown-menu a:hover {
  background: #f3f4f6;
}

.nav-dropdown.open .dropdown-menu {
  display: block;
}

@media (min-width: 901px) {
  .nav-dropdown:hover .dropdown-menu,
  .nav-dropdown:focus-within .dropdown-menu {
    display: block;
  }
}

/* LOGIN */
.btn-login {
  background: var(--brand);
  color: white;
  padding: 9px 15px;
  border-radius: 10px;
  text-decoration: none;
}

/* CONTACT INLINE (FIXED) */
.contact-group {
  display: flex;              /* 🔥 IMPORTANT */
  flex-direction: row;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: bold;
  white-space: nowrap;
}

.contact {
  display: flex;
  align-items: center;
  gap: 5px;
}

/* HAMBURGER */
.hamburger {
  display: none;
  font-size: 28px;
  cursor: pointer;
  border: none;
  background: transparent;
}

/* MOBILE */
@media(max-width:900px) {

  .nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 8px;
  }

  .hamburger {
    display: block;
    order: 2;
    margin-left: auto;
  }

  .header-left {
    order: 1;
    gap: 8px;
  }

  .header-right-slot {
    display: none;
  }

  .logo img {
    max-height: 34px;
  }

  .header-left .logo-npav img {
    max-height: 30px;
    max-width: 88px;
  }

  .header-left .logo-eps img {
    max-height: 34px;
    max-width: 146px;
  }

  .header-center {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: white;
    flex-direction: column;
    padding: 20px;
    align-items: flex-start;
    z-index: 30;
  }

  .header-center.active {
    display: flex;
  }

  .nav-menu {
    flex-direction: column;
    gap: 15px;
  }

  .header-prefs-in-menu {
    width: 100%;
    justify-content: flex-start;
    margin: 4px 0 10px;
  }

  .header-prefs-in-menu .header-select {
    width: 100%;
    max-width: 260px;
  }

  .nav-dropdown {
    width: 100%;
  }

  .dropdown-toggle {
    width: 100%;
    text-align: left;
  }

  .dropdown-menu {
    position: static;
    width: 100%;
    box-shadow: none;
    border: 1px solid #e5e7eb;
    margin-top: 8px;
  }

  .contact-group {
    margin-top: 10px;
  }
}

@media (max-width: 900px) {
  :root[data-theme="dark"] .header-center {
    background: var(--surface-bg);
    border-top: 1px solid var(--border-color);
  }

  :root[data-theme="dark"] .nav-menu a:hover {
    background: rgba(255, 255, 255, 0.04);
  }
}

/* SLIDER */

.slider{
position:relative;
height:600px;
overflow:hidden;
}

.slide{
position:absolute;
width:100%;
height:100%;
opacity:0;
transition:0.6s;
}

.slide.active{
opacity:1;
}

.bg{
width:100%;
height:100%;
object-fit:cover;
position:absolute;
z-index:-1;
}

.content{
position:absolute;
top:50%;
left:10%;
transform:translateY(-50%);
color:white;
max-width:600px;
}

.content h1{
margin-bottom:20px;
}

.buttons{
display:flex;
gap:15px;
flex-wrap:wrap;
}

.btn{
padding:10px 20px;
border-radius:6px;
border:none;
cursor:pointer;
}

.primary{
background:var(--brand);
color:white;
}

.outline{
border:1px solid white;
background:transparent;
color:white;
}

.dashed{
border:1px dashed white;
background:transparent;
color:white;
}


/* Features Section */
 
.features-section {
  background: #ffffff;
  padding: 70px 10px;
}

.features-container {
  max-width: 1600px;
  margin: auto;
  text-align: center;
}

.features-container h2 {
  font-size: var(--font-size-h2);
  margin-bottom: 10px;
  font-family: var(--font-family-heading);
}

.features-subtitle {
  color: #6b7280;
  max-width: 700px;
  margin: 0 auto 60px;
  font-size: 15px;
}

/* Grid */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
  margin-bottom: 40px;
}

/* Card */
.feature-card {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 14px;
  padding: 24px;
  text-align: left;
  transition: all 0.25s ease;
}

.feature-card:hover {
  box-shadow: 0 15px 30px rgba(0,0,0,0.08);
  transform: translateY(-4px);
}

/* Header (ICON + TITLE SAME ROW) */
.feature-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
}

/* Icon */
.feature-card .icon {
  width: 45px;
  height: 45px;
  background: #dcfce7;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-card .icon img {
  width: 22px;
  height: 22px;
}

/* Title */
.feature-card h4 {
  margin: 0;
  font-size: 16px;
}

/* Text */
.feature-card p {
  font-size: 14px;
  color: #6b7280;
}

/* Button */
.btn-primary {
  background: var(--brand);
  color: white;
  padding: 12px 26px;
  border-radius: 10px;
  border: none;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
}

.features-action {
  margin-top: 10px;
}

/* Hidden */
.hidden,
.features-grid.hidden {
  display: none !important;
}

/* Responsive */
@media (max-width: 768px) {
  .features-container h2 {
    font-size: var(--font-size-h2);
  }
}


/* ARROWS */

.prev, .next {
    border-radius: 20px;
    border: none;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 25px;
    line-height: 1;
    width: 44px;
    height: 44px;
    background: rgba(0,0,0,0.5);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 5;
}
.prev{ left:20px; }
.next{ right:20px; }

/* FOOTER */

/* ================= FOOTER ================= */
.site-footer {
  background: radial-gradient(circle at top left, #2a2620, #0f0f0f);
  color: #d1d5db;
  padding: 70px 10px 30px;
}

.footer-container {
  max-width: 1200px;
  margin: auto;
}

/* Grid */
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.15);
}

/* Brand */
.brand-title {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 22px;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 14px;
}

.brand-icon {
  color: var(--brand);
  font-size: 22px;
}

.footer-brand p {
  font-size: 15px;
  color: #cbd5e1;
  line-height: 1.6;
}

/* Columns */
.footer-col h4 {
  color: #ffffff;
  font-size: 16px;
  margin-bottom: 14px;
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-col li {
  margin-bottom: 10px;
}

.footer-col a {
  color: #cbd5e1;
  text-decoration: none;
  font-size: 14px;
}

.footer-col a:hover {
  color: var(--brand);
}

/* Contact */
.contact-line {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
  font-size: 14px;
}

.contact-line span {
  color: var(--brand);
}

/* Bottom */
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 22px;
  flex-wrap: wrap;
  gap: 14px;
}

.footer-bottom p {
  font-size: 13px;
  color: #9ca3af;
}

.footer-bottom a {
  color: #cbd5e1;
  text-decoration: none;
}

.footer-bottom a:hover {
  color: var(--brand);
}

/* Social */
.social-icons {
  display: flex;
  gap: 10px;
}

.social-icons a {
  width: 32px;
  height: 32px;
  background: #ffffff;
  color: #111;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  text-decoration: none;
}

/* Responsive */
@media (max-width: 900px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 600px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}




/* anlytics Section css */

.analytics-section {
  background: #fffdf9;
  padding: 60px 10px;
}

.analytics-container {
max-width: 1600px;
  margin: auto;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
}

.analytics-content h2 {
  font-size: var(--font-size-h2);
  margin-bottom: 16px;
  font-family: var(--font-family-heading);
}

.analytics-desc {
  color: #6b7280;
  font-size: 15px;
  max-width: 520px;
  margin-bottom: 30px;
}

.analytics-list {
  list-style: none;
}

.analytics-list li {
  display: flex;
  gap: 14px;
  margin-bottom: 22px;
}

.list-icon {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: bold;
}

.list-icon.green { background: #dcfce7; color: #16a34a; }
.list-icon.blue { background: #dbeafe; color: #2563eb; }
.list-icon.purple { background: #ede9fe; color: #7c3aed; }

.analytics-card {
  background: #ffffff;
  border-radius: 18px;
  padding: 24px;
  box-shadow: 0 30px 60px rgba(0,0,0,0.12);
}

.card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.live-badge {
  background: #dcfce7;
  color: #16a34a;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-bottom: 20px;
}

.stat-box {
  padding: 16px;
  border-radius: 14px;
}

.stat-box.success { background: #ecfdf5; }
.stat-box.warning { background: #fff7ed; }
.stat-box.info { background: #eff6ff; }
.stat-box.purple { background: #f5f3ff; }

.stat-value {
  font-size: 22px;
  font-weight: 700;
  display: block;
  margin-bottom: 4px;
}

.stat-box small {
  color: #6b7280;
  font-size: 12px;
}

.dashboard-image img {
  width: 100%;
  border-radius: 14px;
}

@media (max-width: 992px) {
  .analytics-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .analytics-desc {
    margin-left: auto;
    margin-right: auto;
  }

  .analytics-list li {
    justify-content: center;
    text-align: left;
  }
}


/* ================= SUPPORTED OS ================= */
.os-section {
  padding: 55px 10px;
  background: #ffffff;
}
.os-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.os-icon img {
  width: 45px !important;
  height: 45px !important;
}
.os-container {
max-width: 1600px;
  margin: auto;
  text-align: center;
}

.os-container h2 {
  font-size: var(--font-size-h2);
  font-family: var(--font-family-heading);
  margin-bottom: 6px;
}

.os-subtitle {
  color: #6b7280;
  font-size: 15px;
  margin-bottom: 50px;
}

/* Grid */
.os-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

/* Card */
.os-card {
  background: #fffaf3;
  border: 1px solid #e5e7eb;
  border-radius: 18px;
  padding: 26px 22px;
  text-align: left;
}

.os-icon {
  width: 44px;
  height: 44px;
    
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 14px;
}

.os-card h3 {
  font-size: 17px;
  margin-bottom: 12px;
}

.os-card ul {
  padding-left: 18px;
}

.os-card ul li {
  font-size: 14px;
  color: #4b5563;
  margin-bottom: 8px;
}

/* CTA */
.os-cta {
  margin-top: 60px;
  background: #fff3e0;
  border-radius: 18px;
  padding: 28px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.os-cta p {
  font-size: 15px;
  color: #4b5563;
}

.os-cta button {
  background: var(--brand);
  color: #fff;
  border: none;
  padding: 10px 26px;
  border-radius: 8px;
  font-size: 14px;
  cursor: pointer;
}

/* Responsive */
@media (max-width: 1024px) {
  .os-grid {
    grid-template-columns: repeat(1, 1fr);
  }
}

@media (max-width: 640px) {
  .os-grid {
    grid-template-columns: 1fr;
  }

  .os-container h2 {
    font-size: var(--font-size-h2);
  }
}

/* ================= ADVANCED FEATURES ================= */
.admin-features-section {
  padding: 55px 10px;
  background: #ffffff;
}

.admin-features-section .features-container {
  max-width: 1600px;
  margin: auto;
  text-align: center;
}

.admin-features-section .features-container h2 {
  font-size: var(--font-size-h2);
  margin-bottom: 8px;
}

.admin-features-section .features-subtitle {
  color: #6b7280;
  font-size: 15px;
  margin-bottom: 50px;
}

/* Grid */
.admin-features-section .features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}

/* Card */
.admin-features-section .feature-card {
  border-radius: 16px;
  padding: 26px;
  text-align: left;
  border: 2px solid;
  background: linear-gradient(180deg, #ffffff, #f9fafb);
}

/* Header (ICON + TITLE) */
.admin-features-section .feature-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

/* Icon */
.admin-features-section .feature-icon {
  width: 45px;
  height: 45px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.admin-features-section .feature-icon img {
  width: 45px;
  height: 45px;
}

/* Title */
.admin-features-section .feature-card h3 {
  margin: 0;
  font-size: 17px;
}

/* Text */
.admin-features-section .feature-text {
  font-size: 14px;
  color: #4b5563;
}

.admin-features-section .more-text {
  display: none;
}

/* Button Center */
.admin-features-section .read-more {
  display: block;
  margin: 16px auto 0;
  background: none;
  border: none;
  color: #6366f1;
  font-size: 14px;
  cursor: pointer;
}

/* Expand */
.admin-features-section .feature-card.expanded .more-text {
  display: inline;
}

/* Colors */
.admin-features-section .blue { border-color: #3b82f6; background: #f8fbff; }
.admin-features-section .purple { border-color: #a855f7; background: #fcf8ff; }
.admin-features-section .green { border-color: #22c55e; background: #f7fff9; }
.admin-features-section .orange { border-color: #f97316; background: #fff7ed; }
.admin-features-section .cyan { border-color: #06b6d4; background: #f5feff; }
.admin-features-section .red { border-color: #ef4444; background: #fff5f5; }

/* Responsive */
@media (max-width: 1024px) {
  .admin-features-section .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .admin-features-section .features-grid {
    grid-template-columns: 1fr;
  }
}
 /* ================= REQUEST DEMO ================= */
.demo-section {
  padding: 55px 10px;
  background: #ffffff;
}

.demo-container {
max-width: 1600px;
  margin: auto;
}

.demo-container h2 {
  text-align: center;
  font-size: var(--font-size-h2);
  margin-bottom: 6px;
}

.demo-subtitle {
  text-align: center;
  color: #6b7280;
  margin-bottom: 60px;
}

/* Grid */
.demo-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 60px;
}

/* Left */
.demo-left h3 {
  font-size: 22px;
  margin-bottom: 12px;
}

.demo-desc {
  color: #6b7280;
  margin-bottom: 30px;
}

.contact-item {
  display: flex;
  gap: 14px;
  margin-bottom: 22px;
}

.icon-box {
  width: 42px;
  height: 42px;
  
  color: #fff;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}
.icon-box img {
  width: 45px;   /* small icon */
  height: 45px;
}
.contact-item strong {
  display: block;
  margin-bottom: 4px;
}

.contact-item p,
.contact-item span {
  margin: 0;
  font-size: 14px;
  color: #4b5563;
}

/* Emergency */
.emergency-box {
  margin-top: 30px;
  padding: 20px;
  background: #fff4e5;
  border-radius: 12px;
}

.emergency-box strong {
  display: block;
  margin-bottom: 6px;
}

.emergency-box p {
  font-size: 14px;
  color: #4b5563;
}

.emergency-box a {
  display: inline-block;
  margin-top: 8px;
  color: #2563eb;
  font-weight: 600;
  text-decoration: none;
}

/* Form */
.demo-form-card {
  background: #ffffff;
  border-radius: 18px;
  padding: 34px;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.12);
}

.demo-form-card input,
.demo-form-card textarea {
  width: 100%;
  padding: 14px 16px;
  margin-bottom: 18px;
  border-radius: 8px;
  border: 1px solid #d1d5db;
  font-size: 14px;
}

.demo-form-card textarea {
  height: 110px;
  resize: none;
}

.demo-form-card button {
  width: 100%;
  background: var(--brand);
  color: #ffffff;
  padding: 14px;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  cursor: pointer;
}

.demo-form-card button:hover {
  background: var(--brand);
}

.form-note {
  margin-top: 14px;
  font-size: 12px;
  color: #6b7280;
  text-align: center;
}

.form-note a {
  color: #2563eb;
  text-decoration: none;
}

/* Responsive */
@media (max-width: 900px) {
  .demo-grid {
    grid-template-columns: 1fr;
  }
}

.edition-section{
padding:80px 20px;
background:#f6f6f6;
text-align:center;
}

.edition-container{
max-width: 1600px;
margin:auto;
}

.edition-section h2{
font-size:var(--font-size-h2);
margin-bottom:10px;
}

.subtitle{
color:#666;
margin-bottom:40px;
}

/* TABLE */

.table-wrapper{
overflow-x:auto;
}

.edition-table{
width:100%;
border-collapse:collapse;
background:white;
border-radius:10px;
overflow:hidden;
}

.edition-table thead{
background:linear-gradient(to right,#f39c12,#e67e22);
color:white;
}

.edition-table th,
.edition-table td{
padding:14px;
text-align:center;
border-bottom:1px solid #eee;
}

.edition-table td:first-child{
text-align:left;
font-weight:500;
}

/* COLUMN COLORS */

.edition-table td:nth-child(5){
background:#f5f1ea;
}

.edition-table td:nth-child(6){
background:#f1e2c8;
}

/* CHECK MARK */

.edition-table td{
font-size:15px;
color:black;
font-weight: bold;
}

/* MOBILE */

@media(max-width:768px){

.edition-section h2{
font-size:var(--font-size-h2);
}

.edition-table th,
.edition-table td{
padding:10px;
font-size:14px;
}

}
.edition-table-scroll{
  max-height: 600px;
  overflow-y: auto;
  overflow-x: visible;
  border-radius: 10px;
  display: block;
}
.edition-table thead th{
position:sticky;
top:0;
background:linear-gradient(to right,#f39c12,#e67e22);
color:white;
z-index:2;
}



/* Download Section  */

.download-section{
padding:30px 20px;
background:#f5f5f5;
text-align:center;
}

.download-container{
max-width:1600px;
margin:auto;
}

.subtitle{
color:#666;
margin-bottom:30px;
}

/* RESPONSIVE WRAPPER */

.table-responsive{
overflow-x:auto;
}

/* TABLE */

.download-table{
width:100%;
border-collapse:collapse;
background:#fff;
border-radius:10px;
overflow:hidden;
table-layout: fixed;
}

/* HEADER */

.download-table thead{
background:#d9d4cd;
}

.download-table th{
padding:15px;
font-weight:600;
}

/* ROWS */

.download-table td{
padding:15px;
border-top:1px solid #eee;
}

/* ALIGNMENT */

.download-table td:nth-child(2),
.download-table td:nth-child(3),
.download-table td:nth-child(4),
.download-table td:nth-child(5),
.download-table th:nth-child(2),
.download-table th:nth-child(3),
.download-table th:nth-child(4),
.download-table th:nth-child(5){
text-align:center;
white-space: nowrap;
}

.download-table th:nth-child(1),
.download-table td:nth-child(1){ width: 42%; }
.download-table th:nth-child(2),
.download-table td:nth-child(2){ width: 16%; }
.download-table th:nth-child(3),
.download-table td:nth-child(3){ width: 12%; }
.download-table th:nth-child(4),
.download-table td:nth-child(4){ width: 12%; }
.download-table th:nth-child(5),
.download-table td:nth-child(5){ width: 18%; }

/* BUTTON */

.download-btn{
background:var(--brand);
border:none;
color:white;
padding:8px 18px;
border-radius:6px;
cursor:pointer;
font-weight:600;
}

/* TEXT SMALL */

.download-table span{
color:#777;
font-size:13px;
}

/* MOBILE IMPROVEMENT */

@media(max-width:768px){

.download-table{
min-width:600px; /* forces scroll */
}

}
/* NOTE */

.note{
margin-top:15px;
font-size:14px;
color:#6c5ce7;
}

.note a{
color:#6c5ce7;
text-decoration:underline;
}



/* About your Organization  */
.about-section{
padding:30px 20px;
background:#f5f5f5;
}

.about-container{
max-width:1600px;
margin:auto;
}

/* HEADER */

.about-header{
text-align:center;
margin-bottom:50px;
}

.about-header h2{
font-size:var(--font-size-h2);
margin-bottom:5px;
}

.about-header p{
color:#777;
}

/* LAYOUT */

.about-content{
display:flex;
gap:50px;
align-items:center;
}

/* LEFT */

.about-left{
flex:1;
}

.tag{
color:var(--brand);
font-size:12px;
font-weight:bold;
}

.about-left h3{
font-size:28px;
margin:10px 0;
}

.desc{
color:#666;
margin-bottom:20px;
line-height:1.6;
}

/* FEATURES */

.features{
display:grid;
grid-template-columns:1fr 1fr;
gap:10px 30px;
margin-bottom:25px;
}

.feature{
font-size:14px;
}

/* COMPANY INFO */

.company-info{
display:grid;
grid-template-columns: 1fr 1fr;
gap:16px;
align-items:stretch;
margin-top:20px;
}

.company{
display:flex;
align-items:center;
gap:10px;
background:#fff;
padding:14px 16px;
border-radius:10px;
min-height:78px;
}

.circle{
width:40px;
height:40px;
background:#ccc;
border-radius:50%;
}

.address{
background:#fff;
padding:14px 16px;
border-radius:10px;
font-size:13px;
min-height:78px;
display:flex;
align-items:center;
}

/* RIGHT */

.about-right{
flex:1;
position:relative;
}

.main-img{
width:100%;
border-radius:15px;
}

/* SMALL IMAGE CARD */

.small-card{
position:absolute;
bottom:60px;
left:20px;
background:#fff;
padding:5px;
border-radius:12px;
box-shadow:0 5px 15px rgba(0,0,0,0.1);
}

.small-card img{
width:180px;
border-radius:10px;
}

/* EXPERIENCE BADGE */

.experience{
position:absolute;
bottom:10px;
right:10px;
background:var(--brand);
color:#fff;
padding:10px 15px;
border-radius:10px;
text-align:center;
}

.experience strong{
font-size:20px;
}

/* RESPONSIVE */

@media(max-width:900px){

.about-content{
flex-direction:column;
}

.features{
grid-template-columns:1fr;
}

.company-info{
grid-template-columns:1fr;
}

.small-card{
position:relative;
bottom:auto;
left:auto;
margin-top:10px;
}

.experience{
position:relative;
margin-top:10px;
}

}
 

/* FAQ */
.faq-section{
padding:30px 20px;
background:#f5f5f5;
text-align:center;
}

.faq-container{
max-width:1600px;
margin:auto;
}

.faq-section h2{
font-size:var(--font-size-h2);
margin-bottom:10px;
}

.subtitle{
color:#666;
margin-bottom:40px;
}

/* FAQ ITEM */

.faq-item{
background:#fff;
border-radius:8px;
margin-bottom:15px;
overflow:hidden;
border:1px solid #eee;
}

/* QUESTION */

.faq-question{
padding:15px 20px;
cursor:pointer;
display:flex;
justify-content:space-between;
align-items:center;
font-weight:500;
}

/* ANSWER */

.faq-answer{
display:none;
padding:15px 20px;
border-top:1px solid #eee;
color:#555;
text-align:left;
}

/* ACTIVE */

.faq-item.active .faq-answer{
display:block;
}

.faq-item.active .arrow{
transform:rotate(180deg);
}

/* BUTTON */

.faq-btn{
margin-top:20px;
background:var(--brand);
color:white;
padding:12px 25px;
border:none;
border-radius:8px;
cursor:pointer;
font-weight:600;
}

/* ARROW */

.arrow{
transition:0.3s;
}

/* Blogs */
/* WRAPPER CENTER */
.blog-wrapper{
max-width:1600px;
margin:auto;
position:relative;
display:flex;
align-items:center;
}

/* SCROLL */

.table-scroll{
overflow-x:auto;
}

/* TABLE */

/* CENTER THE TABLE */
.blog-table{
margin: 0 auto;   /* 🔥 THIS FIXES CENTERING */
border-collapse: separate;
border-spacing: 20px;
}

/* ENSURE WRAPPER IS CENTERED */
.blog-wrapper{
max-width:1600px;
margin:auto;
position:relative;
display:flex;
align-items:center;
justify-content:center; /* 🔥 ADD THIS */
}

/* CENTER SCROLL AREA */
.table-scroll{
overflow-x:auto;
width:100%;
display:flex;
justify-content:center; /* 🔥 ADD THIS */
}

/* CARD */

.blog-card{
width:370px;
background:#fff;
border-radius:12px;
box-shadow:0 5px 15px rgba(0,0,0,0.1);
overflow:hidden;
}

.blog-card img{
width:100%;
height:165px;
object-fit:cover;
}

.blog-card h4{
padding:15px;
font-size:16px;
}

.blog-card p{
padding:0 15px 10px;
color:#666;
font-size:14px;
}

.blog-footer{
display:flex;
justify-content:space-between;
padding:10px 15px 15px;
font-size:13px;
}

.video-section{
padding:80px 20px;
background:#f5f5f5;
text-align:center;
}

.video-container{
max-width:1200px;
margin:auto;
}

.video-section h2{
font-size:var(--font-size-h2);
margin-bottom:10px;
}

.subtitle{
color:#666;
margin-bottom:40px;
}

/* GRID */

.video-grid{
display:grid;
grid-template-columns:repeat(2,1fr);
gap:30px;
}

/* CARD */

.video-card{
position:relative;
border-radius:15px;
overflow:hidden;
}

.video-card img{
width:100%;
height:250px;
object-fit:cover;
border-radius:15px;
}

/* PLAY BUTTON */

.play-btn{
position:absolute;
top:50%;
left:50%;
transform:translate(-50%,-50%);
background:var(--brand);
color:white;
width:60px;
height:60px;
border-radius:50%;
border:none;
display:flex;
align-items:center;
justify-content:center;
font-size:24px;
cursor:pointer;
box-shadow:0 5px 15px rgba(0,0,0,0.3);
}

/* MOBILE */

@media(max-width:768px){
.video-grid{
grid-template-columns:1fr;
}
}

 
/* ===== Refactor Override Layer (Scalable + Responsive) ===== */
:root {
  --header-height: 86px;
  --container-max: 1200px;
  --space-section: clamp(2.5rem, 5vw, 4.5rem);
  --space-inline: clamp(1rem, 3vw, 2rem);
  --brand: #f59e0b;
  --text: #111827;
  --muted: #6b7280;
  --surface: #ffffff;
  --surface-alt: #f5f5f5;
  --radius: 12px;

  /* Typography tokens */
  --font-family-base: Inter, Arial, sans-serif;
  --font-family-heading: var(--font-family-base);
  --line-height-base: 1.5;
  --font-size-h1: clamp(1.8rem, 5vw, 3rem);
  --font-size-h2: clamp(1.6rem, 3.6vw, 2rem);
  --font-size-h3: clamp(1.25rem, 2.2vw, 1.5rem);
  --font-size-h4: 1rem;
}

img {
  max-width: 100%;
  height: auto;
}

.features-container,
.analytics-container,
.os-container,
.demo-container,
.edition-container,
.download-container,
.about-container,
.faq-container,
.blog-wrapper {
  max-width: none;
  width: 100%;
  padding-inline: 4cm;
}

@media (max-width: 900px) {
  .features-container,
  .analytics-container,
  .os-container,
  .demo-container,
  .edition-container,
  .download-container,
  .about-container,
  .faq-container,
  .blog-wrapper {
    padding-inline: 12px;
  }
}

.features-section,
.analytics-section,
.os-section,
.demo-section,
.edition-section,
.download-section,
.about-section,
.faq-section,
.blog-section,
.video-section,
.admin-features-section {
  padding-block: var(--space-section);
}

.slider {
  min-height: 420px;
  height: min(72vh, 620px);
}

.content {
  left: 6%;
  right: 6%;
  max-width: 720px;
}

.content h1 {
  font-size: var(--font-size-h1);
  line-height: 1.2;
}

.content p {
  font-size: clamp(0.95rem, 2vw, 1.1rem);
  margin-bottom: 1rem;
}

.buttons {
  row-gap: 0.75rem;
}

.btn,
.btn-primary,
.download-btn,
.faq-btn,
.demo-form-card button,
.os-cta button,
.btn-login {
  min-height: 42px;
}

.blog-title {
  text-align: center;
  font-size: var(--font-size-h2);
  margin-bottom: 1rem;
}

/* Scope advanced features to avoid collision with top features section */
.admin-features-section .features-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
}

.admin-features-section .feature-card {
  border-radius: 16px;
  padding: 1.25rem;
  text-align: left;
  border: 2px solid;
}

.admin-features-section .feature-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

@media (max-width: 1024px) {
  .admin-features-section .features-grid,
  .os-grid,
  .demo-grid,
  .analytics-container,
  .about-content {
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
  }

  .analytics-container,
  .demo-grid,
  .about-content {
    display: grid;
  }
}

@media (max-width: 900px) {
  .nav-container {
    padding-inline: 8px;
  }

  .header-center {
    z-index: 20;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
  }

  .edition-table,
  .download-table,
  .blog-table {
    min-width: 720px;
  }
}

@media (max-width: 768px) {
  .prev,
  .next {
    font-size: 18px;
    padding: 0.35rem 0.5rem;
  }

  .content {
    top: 54%;
  }

  .content .buttons {
    flex-direction: column;
    align-items: flex-start;
  }

  .content .btn {
    width: 100%;
    max-width: 260px;
  }

  .features-grid,
  .admin-features-section .features-grid,
  .video-grid,
  .os-grid,
  .demo-grid,
  .analytics-container,
  .about-content,
  .company-info,
  .footer-grid {
    grid-template-columns: 1fr;
    display: grid;
  }

  .contact-group {
    flex-wrap: wrap;
  }

  .about-left h3 {
    font-size: var(--font-size-h3);
  }

  .analytics-content h2,
  .features-container h2,
  .os-container h2,
  .demo-container h2,
  .about-header h2,
  .faq-section h2,
  .edition-section h2 {
    font-size: var(--font-size-h2);
  }
}

@media (max-width: 480px) {
  .slider {
    min-height: 520px;
  }

  .content {
    top: 52%;
  }

  .download-table,
  .edition-table,
  .blog-table {
    min-width: 640px;
  }
}

button:focus-visible,
a:focus-visible,
input:focus-visible,
textarea:focus-visible {
  outline: 2px solid var(--brand);
  outline-offset: 2px;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

.app-toast {
  position: fixed;
  right: 20px;
  bottom: 20px;
  background: #111827;
  color: #fff;
  padding: 10px 14px;
  border-radius: 8px;
  font-size: 14px;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.2s ease, transform 0.2s ease;
  z-index: 9999;
  pointer-events: none;
}

.app-toast.show {
  opacity: 1;
  transform: translateY(0);
}

.back-to-top {
  position: fixed;
  right: 20px;
  bottom: 20px;
  width: 44px;
  height: 44px;
  border: none;
  border-radius: 8px;
  background: var(--brand);
  color: #fff;
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
  z-index: 9998;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
}

.back-to-top.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* Performance: skip rendering offscreen sections until needed */
.analytics-section,
.edition-section,
.download-section,
.about-section,
.faq-section,
.blog-section,
.video-section,
.os-section,
.admin-features-section,
.demo-section,
.site-footer {
  content-visibility: auto;
  contain-intrinsic-size: 800px;
}

/* Consistent mobile horizontal scrolling for all index tables */
@media (max-width: 900px) {
  .table-wrapper,
  .table-responsive,
  .table-scroll {
    width: 100%;
    overflow-x: auto !important;
    overflow-y: visible;
    -webkit-overflow-scrolling: touch;
  }

  .edition-table,
  .download-table,
  .blog-table {
    min-width: 820px !important;
  }
}

/* Antivirus For Linux Page */
.linux-hero-section {
  background: #f5f5f5;
  padding: 70px 0;
}

.linux-hero-container {
  width: 100%;
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 2cm;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 56px;
}

.linux-hero-content h1 {
  font-size: var(--font-size-h1);
  line-height: 1.15;
  margin-bottom: 20px;
  color: #111;
  font-family: var(--font-family-heading);
}

.linux-hero-content p {
  color: #4b5563;
  font-size: 1.05rem;
  line-height: 1.8;
  max-width: 640px;
  margin-bottom: 28px;
}

.linux-hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.linux-btn {
  min-width: 140px;
  min-height: 44px;
  padding: 12px 24px;
  border-radius: 8px;
  font-size: 1.05rem;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.linux-btn-primary {
  background: var(--brand);
  color: #fff;
  border: 1px solid var(--brand);
}

.linux-btn-outline {
  background: #fff;
  color: var(--brand);
  border: 1px solid var(--brand);
}

.linux-hero-image-wrap {
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.18);
}

.linux-hero-image-wrap img {
  width: 100%;
  height: auto;
  display: block;
}

.linux-key-features-section {
  background: #f5f5f5;
  padding: 18px 0 72px;
}

.linux-features-container {
  width: 100%;
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 2cm;
}

.linux-features-title {
  text-align: center;
  color: #111;
  font-family: var(--font-family-heading);
  font-size: var(--font-size-h2);
  margin-bottom: 34px;
}

.linux-feature-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 36px 42px;
}

.linux-feature-group h3 {
  margin: 0 0 16px;
  color: #111;
  font-size: clamp(1.35rem, 2vw, 1.8rem);
  font-weight: 700;
  line-height: 1.3;
  display: inline-block;
  padding-bottom: 6px;
  border-bottom: 3px solid var(--brand);
}

.linux-feature-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.linux-feature-card {
  background: #fff;
  border: 1px solid #d8dee5;
  border-radius: 10px;
  padding: 14px 16px;
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.linux-feature-icon {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background: #d6f4e8;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.linux-feature-icon img {
  width: 22px;
  height: 22px;
  object-fit: contain;
}

.linux-feature-card h4 {
  margin: 0 0 4px;
  color: #111;
  font-size: 1.06rem;
  font-weight: 700;
  line-height: 1.35;
}

.linux-feature-card p {
  margin: 0;
  color: #5f6770;
  font-size: 0.95rem;
  line-height: 1.65;
}

.linux-system-req-section {
  background: #f5f5f5;
  padding: 6px 0 86px;
}

.linux-system-req-container {
  width: 100%;
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 2cm;
}

.linux-system-req-title {
  text-align: center;
  color: #111;
  font-family: var(--font-family-heading);
  font-size: var(--font-size-h2);
  line-height: 1.2;
  margin: 0 0 28px;
}

.linux-system-req-list {
  max-width: 1180px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.linux-system-req-item {
  border: 1px solid #d8dde3;
  border-radius: 4px;
  background: #f5f5f5;
  overflow: hidden;
}

.linux-system-req-item summary {
  list-style: none;
  cursor: pointer;
  padding: 22px 22px;
  font-size: 1.08rem;
  font-weight: 600;
  color: #2d384a;
}

.linux-system-req-item:first-child summary {
  color: #8b6034;
}

.linux-system-req-item summary::-webkit-details-marker {
  display: none;
}

.linux-system-req-item[open] summary {
  border-bottom: 1px solid #d8dde3;
  background: #fff;
}

.linux-system-req-content {
  background: #fff;
  padding: 14px 22px 16px;
}

.linux-system-req-content ul {
  margin: 0;
  padding-left: 18px;
}

.linux-system-req-content li {
  color: #4a5568;
  font-size: 0.98rem;
  line-height: 1.7;
}

@media (max-width: 1024px) {
  .linux-hero-container {
    padding: 0 20px;
    gap: 30px;
  }

  .linux-features-container {
    padding: 0 20px;
  }

  .linux-system-req-container {
    padding: 0 20px;
  }

  .linux-feature-grid {
    gap: 28px 24px;
  }
}

@media (max-width: 900px) {
  .linux-hero-container {
    grid-template-columns: 1fr;
  }

  .linux-hero-content {
    order: 2;
  }

  .linux-hero-image-wrap {
    order: 1;
  }

  .linux-key-features-section {
    padding: 10px 0 52px;
  }

  .linux-feature-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .linux-features-title {
    margin-bottom: 24px;
  }

  .linux-system-req-section {
    padding: 8px 0 62px;
  }

  .linux-system-req-title {
    margin-bottom: 20px;
  }
}

@media (max-width: 640px) {
  .linux-hero-content p {
    font-size: 0.98rem;
    line-height: 1.7;
  }

  .linux-btn {
    min-width: 132px;
  }

  .linux-feature-group h3 {
    font-size: 1.3rem;
    margin-bottom: 12px;
  }

  .linux-feature-card {
    padding: 12px 13px;
    gap: 12px;
  }

  .linux-feature-icon {
    width: 36px;
    height: 36px;
  }

  .linux-feature-icon img {
    width: 20px;
    height: 20px;
  }

  .linux-feature-card h4 {
    font-size: 1rem;
  }

  .linux-feature-card p {
    font-size: 0.91rem;
    line-height: 1.6;
  }

  .linux-system-req-title {
    font-size: clamp(1.72rem, 8vw, 2.05rem);
  }

  .linux-system-req-item summary {
    padding: 16px 14px;
    font-size: 1rem;
  }

  .linux-system-req-content {
    padding: 10px 14px 14px;
  }

  .linux-system-req-content li {
    font-size: 0.92rem;
    line-height: 1.62;
  }
}

.linux-request-demo-section {
  background: #f5f5f5;
  padding: 6px 0 90px;
}

.linux-request-demo-container {
  width: 100%;
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 2cm;
}

.linux-request-demo-title {
  text-align: center;
  color: #111;
  font-family: var(--font-family-heading);
  font-size: var(--font-size-h2);
  line-height: 1.2;
  margin: 0 0 8px;
}

.linux-request-demo-subtitle {
  text-align: center;
  color: #666f79;
  font-size: 0.96rem;
  margin: 0 0 52px;
}

.linux-request-demo-grid {
  display: grid;
  grid-template-columns: 1.03fr 0.97fr;
  gap: 50px;
  align-items: start;
}

.linux-request-demo-left h3 {
  margin: 0 0 12px;
  color: #111;
  font-size: clamp(1.62rem, 2.2vw, 2.05rem);
  line-height: 1.2;
}

.linux-request-demo-desc {
  margin: 0 0 30px;
  color: #5b6672;
  font-size: 0.97rem;
  line-height: 1.75;
  max-width: 640px;
}

.linux-request-contact-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.linux-request-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.linux-request-icon {
  width: 46px;
  height: 46px;
  flex-shrink: 0;
}

.linux-request-icon img {
  width: 46px;
  height: 46px;
  display: block;
}

.linux-request-contact-text h4 {
  margin: 0 0 3px;
  color: #111;
  font-size: 1.24rem;
  line-height: 1.2;
}

.linux-request-contact-text p {
  margin: 0 0 3px;
  color: #5f6770;
  font-size: 0.95rem;
  line-height: 1.55;
}

.linux-request-emergency-box {
  margin-top: 26px;
  background: #fff4e5;
  border-radius: 12px;
  padding: 20px 22px;
  max-width: 640px;
}

.linux-request-emergency-box h4 {
  margin: 0 0 8px;
  color: #111;
  font-size: 1.2rem;
  line-height: 1.25;
}

.linux-request-emergency-box p {
  margin: 0;
  color: #4f5863;
  font-size: 0.95rem;
  line-height: 1.65;
}

.linux-request-emergency-box a {
  display: inline-block;
  margin-top: 10px;
  color: #1d4ed8;
  font-size: 0.96rem;
  font-weight: 600;
  text-decoration: none;
}

.linux-demo-form-card {
  padding: 30px 26px 22px;
  box-shadow: 0 26px 55px rgba(0, 0, 0, 0.13);
}

.linux-request-demo-form input,
.linux-request-demo-form textarea {
  width: 100%;
  border: 1px solid #b6bcc3;
  border-radius: 9px;
  padding: 13px 16px;
  margin-bottom: 16px;
  color: #111;
  font-size: 0.95rem;
  font-family: var(--font-family-base);
  background: #fff;
}

.linux-request-demo-form textarea {
  min-height: 118px;
  resize: none;
}

.linux-request-demo-form button {
  width: 100%;
  background: var(--brand);
  color: #fff;
  border: none;
  border-radius: 9px;
  padding: 13px;
  font-size: 1.05rem;
  font-weight: 600;
  cursor: pointer;
}

.linux-request-form-note {
  margin: 14px 0 0;
  text-align: center;
  color: #6b7280;
  font-size: 0.84rem;
  line-height: 1.5;
}

.linux-request-form-note a {
  color: #4b5563;
  text-decoration: none;
}

@media (max-width: 1024px) {
  .linux-request-demo-container {
    padding: 0 20px;
  }

  .linux-request-demo-grid {
    gap: 30px;
  }
}

@media (max-width: 900px) {
  .linux-request-demo-section {
    padding: 2px 0 58px;
  }

  .linux-request-demo-subtitle {
    margin-bottom: 32px;
  }

  .linux-request-demo-grid {
    grid-template-columns: 1fr;
    gap: 26px;
  }
}

@media (max-width: 640px) {
  .linux-request-demo-title {
    font-size: clamp(1.58rem, 7.4vw, 1.92rem);
  }

  .linux-request-demo-subtitle {
    font-size: 0.95rem;
    margin-bottom: 24px;
  }

  .linux-request-demo-left h3 {
    font-size: 1.5rem;
  }

  .linux-request-demo-desc {
    font-size: 0.92rem;
    line-height: 1.65;
    margin-bottom: 22px;
  }

  .linux-request-contact-text h4 {
    font-size: 1.12rem;
  }

  .linux-request-contact-text p {
    font-size: 0.9rem;
  }

  .linux-request-emergency-box {
    padding: 14px 14px;
  }

  .linux-request-emergency-box h4 {
    font-size: 1.08rem;
  }

  .linux-request-emergency-box p,
  .linux-request-emergency-box a {
    font-size: 0.9rem;
  }

  .linux-demo-form-card {
    padding: 18px 14px 14px;
  }

  .linux-request-demo-form input,
  .linux-request-demo-form textarea {
    font-size: 0.9rem;
    margin-bottom: 12px;
  }

  .linux-request-demo-form button {
    font-size: 0.96rem;
    padding: 11px;
  }

.linux-request-form-note {
    font-size: 0.78rem;
  }
}

/* Latest blogs layout override: keep cards row + button below */
.blog-section .blog-wrapper {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: flex-start;
  gap: 22px;
  max-width: 1800px;
  padding-inline: 1.5cm !important;
}

.blog-section .npav-blog-grid {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 0;
}

.blog-section .npav-blog-card img {
  width: 100%;
  max-width: 100%;
  height: 190px;
  object-fit: cover;
  display: block;
}

.blog-section .npav-blog-action {
  width: 100%;
  display: flex;
  justify-content: center;
}

@media (max-width: 1200px) {
  .blog-section .npav-blog-grid {
    grid-template-columns: repeat(2, minmax(220px, 1fr));
  }
}

@media (max-width: 768px) {
  .blog-section .blog-wrapper {
    padding-inline: 12px !important;
    margin-inline: auto;
  }

  .blog-section .npav-blog-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .blog-section .npav-blog-card {
    width: 100%;
    margin-inline: auto;
  }

  .blog-section .npav-blog-card img {
    height: 180px;
  }
}

/* Explicit mobile horizontal scroll for edition + download tables */
@media (max-width: 900px) {
  .edition-section .table-wrapper,
  .download-section .table-responsive {
    width: 100%;
    overflow-x: scroll;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    scrollbar-color: #9ca3af #e5e7eb;
    position: relative;
  }

  .edition-section .table-wrapper::-webkit-scrollbar,
  .download-section .table-responsive::-webkit-scrollbar {
    height: 8px;
  }

  .edition-section .table-wrapper::-webkit-scrollbar-track,
  .download-section .table-responsive::-webkit-scrollbar-track {
    background: #e5e7eb;
    border-radius: 999px;
  }

  .edition-section .table-wrapper::-webkit-scrollbar-thumb,
  .download-section .table-responsive::-webkit-scrollbar-thumb {
    background: #9ca3af;
    border-radius: 999px;
  }

  .edition-section .table-wrapper::before,
  .download-section .table-responsive::before {
    content: "Swipe horizontally \2192";
    display: block;
    font-size: 12px;
    color: #6b7280;
    text-align: right;
    margin-bottom: 6px;
  }

  .edition-section .edition-table {
    min-width: 980px;
  }

  .download-section .download-table {
    min-width: 860px;
  }
}

/* EDR Page */
.edr-hero-section,
.edr-overview-section,
.edr-feature-section,
.edr-flow-section,
.edr-request-section {
  background: #f5f5f5;
}

.edr-hero-section {
  padding: 60px 0 34px;
}

.edr-hero-container,
.edr-overview-container,
.edr-feature-container,
.edr-flow-container,
.edr-request-container {
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 2cm;
}

.edr-hero-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 38px;
  align-items: center;
}

.edr-hero-content h1 {
  font-family: var(--font-family-heading);
  font-size: var(--font-size-h1);
  margin-bottom: 16px;
  color: #141414;
}

.edr-hero-content p {
  color: #5f6672;
  line-height: 1.8;
  font-size: 1.06rem;
  max-width: 600px;
  margin-bottom: 26px;
}

.edr-hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.edr-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  min-width: 130px;
  padding: 10px 20px;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
}

.edr-btn-primary {
  background: var(--brand);
  color: #fff;
  border: 1px solid var(--brand);
}

.edr-btn-outline {
  background: #fff;
  color: var(--brand);
  border: 1px solid var(--brand);
}

.edr-hero-image img,
.edr-overview-image img {
  width: 100%;
  display: block;
  border-radius: 14px;
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.16);
}

.edr-overview-section {
  padding: 34px 0 24px;
}

.edr-overview-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: center;
}

.edr-overview-content h2 {
  font-family: var(--font-family-heading);
  font-size: var(--font-size-h2);
  margin-bottom: 14px;
  color: #171717;
}

.edr-overview-content p {
  color: #5f6672;
  line-height: 1.75;
  margin-bottom: 10px;
}

.edr-feature-section {
  padding: 26px 0 34px;
}

.edr-feature-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.edr-feature-card {
  background: #fff;
  border: 1px solid #dfe3e8;
  border-radius: 10px;
  padding: 14px 16px;
  min-height: 150px;
}

.edr-feature-icon {
  width: 38px;
  height: 38px;
  border-radius: 9px;
  background: #cdeee0;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
}

.edr-feature-icon img {
  width: 19px;
  height: 19px;
}

.edr-feature-card h3 {
  font-size: 1rem;
  margin-bottom: 8px;
  color: #1f2937;
}

.edr-feature-card p {
  font-size: 0.92rem;
  color: #667085;
  line-height: 1.65;
}

.edr-flow-section {
  padding: 42px 0 26px;
}

.edr-flow-container {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 34px;
  align-items: center;
}

.edr-flow-left h2 {
  font-family: var(--font-family-heading);
  font-size: var(--font-size-h2);
  margin-bottom: 14px;
}

.edr-flow-left p {
  color: #5f6672;
  line-height: 1.75;
}

.edr-flow-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 14px;
}

.edr-flow-list li {
  display: flex;
  align-items: center;
  gap: 10px;
}

.edr-step-num {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #7b7b7b;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}

.edr-step-pill {
  display: inline-flex;
  align-items: center;
  min-height: 50px;
  padding: 10px 22px;
  border-radius: 28px;
  color: #fff;
  font-weight: 600;
  min-width: 280px;
}

.edr-pill-cyan { background: #1ab4bf; }
.edr-pill-red { background: #eb5a52; }
.edr-pill-orange { background: #f1ad19; }
.edr-pill-green { background: #56b733; }
.edr-pill-purple { background: #b763be; }

.edr-request-section {
  padding: 34px 0 56px;
}

.edr-request-container h2 {
  text-align: center;
  font-family: var(--font-family-heading);
  font-size: var(--font-size-h2);
  margin-bottom: 8px;
}

.edr-request-subtitle {
  text-align: center;
  color: #6b7280;
  margin-bottom: 34px;
}

.edr-request-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  align-items: start;
}

.edr-contact-col h3 {
  font-size: 1.7rem;
  margin-bottom: 10px;
}

.edr-contact-col > p {
  color: #6b7280;
  line-height: 1.7;
  margin-bottom: 20px;
}

.edr-contact-item {
  display: flex;
  gap: 12px;
  margin-bottom: 16px;
}

.edr-contact-item img {
  width: 34px;
  height: 34px;
}

.edr-contact-item h4 {
  margin-bottom: 4px;
}

.edr-contact-item p,
.edr-contact-item span {
  color: #616872;
  font-size: 0.95rem;
}

.edr-emergency-box {
  background: #fff3e0;
  border-radius: 12px;
  padding: 16px;
  margin-top: 18px;
}

.edr-emergency-box h4 {
  margin-bottom: 8px;
}

.edr-emergency-box p {
  color: #616872;
  margin-bottom: 8px;
}

.edr-emergency-box a {
  color: #2563eb;
  text-decoration: none;
  font-weight: 700;
}

.edr-form-card {
  background: #fff;
  border-radius: 16px;
  padding: 26px;
  box-shadow: 0 20px 44px rgba(0, 0, 0, 0.14);
}

.edr-form input,
.edr-form textarea {
  width: 100%;
  border: 1px solid #d1d5db;
  border-radius: 8px;
  padding: 12px 14px;
  margin-bottom: 14px;
  font-size: 0.95rem;
}

.edr-form textarea {
  min-height: 120px;
  resize: vertical;
}

.edr-form button {
  width: 100%;
  border: none;
  border-radius: 8px;
  background: var(--brand);
  color: #fff;
  font-weight: 600;
  padding: 12px 14px;
  cursor: pointer;
}

.edr-form-note {
  margin-top: 12px;
  text-align: center;
  font-size: 0.8rem;
  color: #6b7280;
}

.edr-form-note a {
  color: #2563eb;
  text-decoration: none;
}

@media (max-width: 1100px) {
  .edr-hero-container,
  .edr-overview-container,
  .edr-flow-container,
  .edr-request-grid {
    grid-template-columns: 1fr;
  }

  .edr-hero-container,
  .edr-overview-container,
  .edr-feature-container,
  .edr-flow-container,
  .edr-request-container {
    padding: 0 20px;
  }

  .edr-feature-grid {
    grid-template-columns: 1fr;
  }

  .edr-step-pill {
    min-width: 0;
    width: 100%;
  }
}

@media (max-width: 700px) {
  .edr-hero-section {
    padding-top: 30px;
  }

  .edr-feature-card {
    min-height: 0;
  }

  .edr-form-card {
    padding: 16px;
  }
}

/* License Agreement Page */
.license-page-section {
  background: #f5f5f5;
  padding: 58px 0 70px;
}

.license-page-container {
  width: 100%;
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 2cm;
}

.license-page-container h1 {
  color: var(--brand);
  font-size: var(--font-size-h1);
  font-weight: 700;
  margin-bottom: 8px;
}

.license-page-container h2 {
  color: #111827;
  font-size: var(--font-size-h2);
  margin-bottom: 16px;
}

.license-page-container h3 {
  color: #111827;
  font-size: clamp(1.18rem, 2.2vw, 1.6rem);
  margin-top: 18px;
  margin-bottom: 10px;
}

.license-page-container p {
  color: #4b5563;
  font-size: 1.05rem;
  line-height: 1.9;
  margin-bottom: 10px;
}

.license-page-container ul {
  margin: 0 0 8px 28px;
  padding: 0;
}

.license-page-container li {
  color: #4b5563;
  font-size: 1.05rem;
  line-height: 1.9;
  margin-bottom: 4px;
}

@media (max-width: 900px) {
  .license-page-container {
    padding: 0 16px;
  }

  .license-page-section {
    padding: 34px 0 48px;
  }

  .license-page-container p,
  .license-page-container li {
    font-size: 0.98rem;
    line-height: 1.75;
  }

  .license-page-container ul {
    margin-left: 20px;
  }
}

/* Download page */
.downloads-page-main {
  background: #f5f5f5;
  padding-bottom: 48px;
}

.downloads-hero {
  padding: 36px 0 10px;
}

.downloads-page-container {
  width: 100%;
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 2cm;
}

.downloads-hero h1 {
  margin: 0;
  text-align: center;
  font-size: var(--font-size-h1);
  color: #111827;
}

.download-section h2 {
  text-align: center;
  margin: 0 0 6px;
  font-size: var(--font-size-h2);
  color: #111827;
}

.download-table-wrap {
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 12px;
  overflow: hidden;
}

.download-link {
  color: #1a55a3;
  font-weight: 500;
  text-decoration: none;
}

.download-link:hover {
  text-decoration: underline;
}

.download-page-note {
  text-align: center;
  margin-top: 14px;
  color: #4b5563;
}

.download-page-note span {
  color: #ef4444;
}

.download-title-icon {
  width: 22px;
  height: 22px;
  vertical-align: -3px;
  margin-right: 6px;
}

.downloads-page .download-btn-link {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  gap: 6px;
  min-height: 24px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: #1a55a3;
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  white-space: nowrap;
  line-height: 1.2;
}

.downloads-page .download-btn-link:hover {
  background: transparent;
  color: #0d3d80;
  text-decoration: underline;
}

.downloads-page .download-btn-link .fa {
  font-size: 13px;
  line-height: 1;
}

@media (max-width: 900px) {
  .downloads-page-container {
    padding: 0 14px;
  }

  .downloads-hero {
    padding-top: 20px;
  }
}

/* Videos page */
.videos-page-main {
  background: #f5f5f5;
  min-height: 100vh;
}

.videos-top-bar {
  padding: 34px 2cm 18px;
  border-bottom: 1px solid #dde2e9;
  text-align: center;
}

.videos-top-bar h1 {
  color: #111827;
  font-size: var(--font-size-h1);
  margin-bottom: 4px;
}

.videos-top-bar p {
  color: #667085;
  margin-bottom: 14px;
}

.videos-search {
  max-width: 560px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  border: 1px solid #cbd5e1;
  border-radius: 8px;
  background: #fff;
}

.videos-search-icon {
  width: 48px;
  text-align: center;
  color: #64748b;
  font-weight: 700;
}

.videos-search input {
  width: 100%;
  border: none;
  outline: none;
  padding: 11px 12px 11px 0;
  font-size: 1rem;
  background: transparent;
}

.videos-layout {
  display: grid;
  grid-template-columns: 210px 1fr;
  min-height: calc(100vh - 175px);
}

.videos-sidebar {
  background: #fff;
  border-right: 1px solid #dde2e9;
}

.videos-sidebar-title {
  background: var(--brand);
  color: #fff;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 14px 12px;
}

.videos-cats {
  list-style: none;
  margin: 0;
  padding: 6px 0;
}

.videos-cats button {
  width: 100%;
  border: none;
  background: transparent;
  text-align: left;
  padding: 12px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-size: 1rem;
}

.videos-cats button:hover {
  background: #fff7e8;
}

.videos-cats button.active {
  background: #fff4de;
  color: #c47a00;
  font-weight: 700;
}

.videos-count {
  min-width: 26px;
  height: 26px;
  border-radius: 999px;
  font-size: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #fff1d6;
  color: #c47a00;
}

.videos-cats button.active .videos-count {
  background: var(--brand);
  color: #fff;
}

.videos-main {
  padding: 20px 24px;
}

.videos-main-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}

.videos-main-head h2 {
  margin: 0;
  font-size: var(--font-size-h2);
  color: #111827;
}

.videos-main-head p {
  color: #667085;
  margin: 0;
}

.videos-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.video-card {
  background: #fff;
  border: 1px solid #dbe2ea;
  border-radius: 10px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.video-thumb {
  position: relative;
  padding-top: 58%;
  background: linear-gradient(135deg, #334155, #1f2937);
  cursor: pointer;
}

.video-thumb img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 44px;
  text-shadow: 0 8px 20px rgba(0, 0, 0, 0.45);
}

.video-body {
  padding: 12px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex: 1;
}

.video-cat {
  color: var(--brand);
  font-size: 12px;
  font-weight: 700;
}

.video-title {
  margin: 0;
  font-size: 1.05rem;
}

.video-desc {
  color: #667085;
  font-size: 0.93rem;
  line-height: 1.5;
}

.video-tags {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  margin-top: 2px;
}

.video-tags span {
  font-size: 11px;
  border: 1px solid #f8d7a0;
  background: #fff6e7;
  color: #b86a00;
  border-radius: 999px;
  padding: 2px 8px;
}

.video-btn {
  margin-top: auto;
  border: 0;
  border-radius: 8px;
  background: var(--brand);
  color: #fff;
  padding: 10px;
  font-weight: 700;
  cursor: pointer;
}

.video-btn:hover {
  background: #d88b09;
}

.videos-empty {
  display: none;
  padding: 30px;
  text-align: center;
  color: #667085;
}

.video-modal {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.65);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 16px;
  z-index: 5000;
}

.video-modal.open {
  display: flex;
}

.video-modal-card {
  background: #fff;
  width: min(980px, 100%);
  border-radius: 10px;
  overflow: hidden;
}

.video-modal-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 14px;
  border-bottom: 1px solid #e5e7eb;
}

.video-modal-close {
  border: 0;
  background: transparent;
  font-size: 24px;
  cursor: pointer;
}

.video-frame {
  width: 100%;
  aspect-ratio: 16/9;
  border: 0;
  display: block;
  background: #000;
}

@media (max-width: 1200px) {
  .videos-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  .videos-top-bar {
    padding: 24px 14px 14px;
  }

  .videos-layout {
    grid-template-columns: 1fr;
  }

  .videos-sidebar {
    border-right: none;
    border-bottom: 1px solid #dde2e9;
  }

  .videos-cats {
    display: flex;
    gap: 8px;
    padding: 10px;
    overflow-x: auto;
  }

  .videos-cats li {
    flex: 0 0 auto;
  }

  .videos-cats button {
    border: 1px solid #d7dce4;
    border-radius: 999px;
    padding: 8px 12px;
    gap: 8px;
  }

  .videos-main {
    padding: 14px;
  }

  .videos-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 560px) {
  .videos-grid {
    grid-template-columns: 1fr;
  }
}

/* Privacy Policy page */
.privacy-page-main {
  background: #f5f5f5;
  padding: 44px 0 72px;
}

.privacy-container {
  width: 100%;
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 2cm;
}

.privacy-container h1 {
  margin: 0 0 16px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--brand);
  color: #111827;
  font-size: var(--font-size-h1);
}

.privacy-updated {
  background: #eef6ff;
  color: #234a7d;
  border-left: 4px solid var(--brand);
  border-radius: 8px;
  padding: 12px 14px;
  margin-bottom: 20px;
  font-weight: 600;
}

.privacy-container h2 {
  margin: 24px 0 8px;
  color: #111827;
  font-size: var(--font-size-h2);
}

.privacy-container p,
.privacy-container li {
  color: #4b5563;
  font-size: 1.04rem;
  line-height: 1.85;
}

.privacy-container p {
  margin-bottom: 10px;
  text-align: justify;
}

.privacy-container ul {
  margin: 0 0 10px 22px;
}

.privacy-container a {
  color: var(--brand);
  font-weight: 600;
  text-decoration: none;
}

.privacy-container a:hover {
  text-decoration: underline;
}

@media (max-width: 900px) {
  .privacy-page-main {
    padding: 28px 0 54px;
  }

  .privacy-container {
    padding: 0 16px;
  }

  .privacy-container p,
  .privacy-container li {
    font-size: 0.97rem;
    line-height: 1.75;
  }

  .privacy-container ul {
    margin-left: 18px;
  }
}
