/* ===================================
   HOSTX-INSPIRED HOMEPAGE STYLES
   Using system font stack
   =================================== */

:root {
  --hostx-primary: #0060fe;
  --hostx-darkBlue: #0b0c1b;
  --hostx-darkGray: #363636;
  --hostx-semi-dark: #1a1b2e;
  --hostx-semi-dark-2: #212235;
  --hostx-semi-dark-3: #141526;
  --hostx-gold: #FFB830;
  --hostx-red: #ec625f;
  --hostx-border: #e2e9ee;
  --hostx-light: #ecf4fa;
  --hostx-gray: #9a9aa0;
}

/* Force system font stack for all elements */
.main-header-home,
.se-i,
.se-ii,
.se-iii,
.se-iv,
.se-footer {
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", "Noto Sans", "Liberation Sans", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji" !important;
  font-size: 14px;
}

.main-header-home *,
.se-i *,
.se-ii *,
.se-iii *,
.se-iv *,
.se-footer * {
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", "Noto Sans", "Liberation Sans", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji" !important;
}

/* ===================================
   MAIN HEADER / HERO SECTION
   =================================== */
.main-header-home {
  position: relative;
  padding: 80px 0;
  overflow: hidden;
  background-color: var(--hostx-darkBlue);
  background-image: linear-gradient(135deg, rgba(11, 12, 27, 0.9) 0%, rgba(26, 27, 46, 0.9) 100%);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center bottom;
  min-height: 600px;
  display: flex;
  align-items: center;
}

/* Grid pattern background */
.main-header-home::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 40px 40px;
  background-position: 0 0;
  pointer-events: none;
  z-index: 0;
}

/* Gradient overlay from light (left) to dark (right) */
.main-header-home::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to right,
    rgba(255, 255, 255, 0.03) 0%,
    rgba(255, 255, 255, 0.02) 20%,
    rgba(255, 255, 255, 0.01) 40%,
    rgba(255, 255, 255, 0.005) 50%,
    rgba(0, 0, 0, 0.05) 60%,
    rgba(0, 0, 0, 0.1) 70%,
    rgba(0, 0, 0, 0.15) 80%,
    rgba(0, 0, 0, 0.25) 100%);
  pointer-events: none;
  z-index: 0;
}

.main-header-home .container {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

.main-header-home .row {
  margin-left: 0;
  margin-right: 0;
}

.main-header-home [class*="col-"]:first-child {
  padding-left: 0;
}

/* Force display of right column on large screens */
@media (min-width: 992px) {
  .main-header-home .col-lg-5.d-lg-block,
  .main-header-home .col-xl-5.d-xl-block {
    display: block !important;
  }
}

/* Hero Content Wrapper - Aligned to left container limit */
.hero-content-wrapper {
  max-width: 100%;
  width: 100%;
  margin: 0;
  padding: 0;
}

.main-header-home .title-1 {
  font-size: 56px;
  font-weight: 900;
  color: #ffffff;
  line-height: 1.2;
  max-width: 100%;
  width: 100%;
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", "Noto Sans", "Liberation Sans", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji" !important;
  text-transform: uppercase;
  letter-spacing: -0.5px;
  margin-bottom: 20px;
  text-align: left;
}

.main-header-home .para-1 {
  font-size: 16px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.8);
  max-width: 100%;
  width: 100%;
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", "Noto Sans", "Liberation Sans", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji" !important;
  margin-bottom: 30px;
  font-weight: 400;
  text-align: left;
}

.main-header-home .notify {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background-color: rgba(26, 27, 46, 0.8);
  backdrop-filter: blur(10px);
  border-radius: 50px;
  padding: 12px 20px;
  margin-bottom: 30px;
  margin-left: 0;
  margin-right: auto;
}

.main-header-home .notify .icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: #ffffff;
  border-radius: 50px;
  width: 40px;
  height: 40px;
  margin-right: 15px;
}

.main-header-home .notify .text {
  font-size: 14px;
  color: #ffffff;
  font-weight: 500;
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", "Noto Sans", "Liberation Sans", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji" !important;
}

/* Buttons using existing template classes */
.main-header-home .buttons {
  display: flex;
  gap: 12px;
  align-items: center;
  flex-wrap: wrap;
  justify-content: flex-start;
}

.main-header-home .btn-free-trial {
  background: #1f6bff !important;
  color: #ffffff !important;
  padding: 8px 20px;
  border-radius: 6px;
  font-size: 14px;
  line-height: 21px;
  font-weight: 400;
  text-decoration: none !important;
  text-transform: capitalize;
  border: none;
  transition: background 0.3s;
  display: inline-block !important;
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", "Noto Sans", "Liberation Sans", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji" !important;
}

.main-header-home .btn-free-trial:hover {
  background: #0052cc !important;
  color: #ffffff !important;
  text-decoration: none !important;
}

.main-header-home .btn-login-hero {
  background: transparent !important;
  color: #ffffff !important;
  border: 1px solid rgba(255, 255, 255, 0.3) !important;
  padding: 8px 20px;
  border-radius: 6px;
  font-size: 14px;
  line-height: 21px;
  font-weight: 400;
  text-decoration: none !important;
  text-transform: capitalize;
  transition: all 0.3s;
  display: inline-block !important;
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", "Noto Sans", "Liberation Sans", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji" !important;
}

.main-header-home .btn-login-hero:hover {
  background: rgba(255, 255, 255, 0.1) !important;
  color: #ffffff !important;
  text-decoration: none !important;
  border-color: rgba(255, 255, 255, 0.5) !important;
}

/* Hero Right Wrapper */
.hero-right-wrapper {
  display: flex !important;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  position: relative;
  width: 100%;
  padding: 0 15px;
  height: 100%;
}

/* Hero Illustration */
.hero-illustration {
  width: 100%;
  display: flex !important;
  justify-content: center;
  align-items: center;
  margin-bottom: 40px;
  visibility: visible !important;
}

.hero-illustration img {
  display: block !important;
  visibility: visible !important;
}

.hero-img-fluid {
  max-width: 100% !important;
  width: auto !important;
  max-height: 400px;
  height: auto !important;
  object-fit: contain;
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
}

/* Hero Right Text */
.hero-right-text {
  width: 100%;
  max-width: 100%;
}

.hero-right-title {
  font-size: 28px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 20px;
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", "Noto Sans", "Liberation Sans", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji" !important;
  line-height: 1.3;
}

.hero-right-description {
  font-size: 14px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 30px;
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", "Noto Sans", "Liberation Sans", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji" !important;
}

/* Security Standards Grid */
.security-standards-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: center;
  justify-content: center;
  margin-top: 0;
}

.security-standard-item {
  display: flex;
  align-items: center;
  justify-content: center;
}

.security-icon {
  font-size: 32px !important;
  display: block;
}

/* Colors for each security standard icon */
.security-icon.pci-dss {
  color: #1f6bff !important;
}

.security-icon.gdpr {
  color: #10b981 !important;
}

.security-icon.iso {
  color: #f59e0b !important;
}

.security-icon.soc2 {
  color: #8b5cf6 !important;
}

.security-icon.hipaa {
  color: #ec4899 !important;
}

.security-icon.api {
  color: #06b6d4 !important;
}


/* Form Container */
.form-container {
  background-color: rgba(26, 27, 46, 0.8);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 40px;
  width: 100%;
  max-width: 450px;
  display: block !important;
  visibility: visible !important;
}

.header-form {
  width: 100%;
}

.form-title {
  font-size: 24px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 10px;
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", "Noto Sans", "Liberation Sans", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji" !important;
  line-height: 1.3;
}

.form-subtitle {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 20px;
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", "Noto Sans", "Liberation Sans", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji" !important;
  line-height: 1.5;
}

.form-group {
  margin-bottom: 20px;
}

.form-label-text {
  display: block;
  font-size: 12px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 8px;
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", "Noto Sans", "Liberation Sans", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji" !important;
}

.form-control {
  width: 100%;
  padding: 12px 16px;
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  color: #ffffff;
  font-size: 14px;
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", "Noto Sans", "Liberation Sans", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji" !important;
  transition: all 0.3s;
}

.form-control.glassy {
  background-color: rgba(255, 255, 255, 0.05);
}

.form-control::placeholder {
  color: rgba(255, 255, 255, 0.5);
  font-size: 14px;
}

.form-control:focus {
  outline: none;
  border-color: var(--hostx-primary);
  background-color: rgba(255, 255, 255, 0.08);
  box-shadow: 0 0 0 3px rgba(0, 96, 254, 0.1);
}

.form-text {
  display: block;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 6px;
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", "Noto Sans", "Liberation Sans", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji" !important;
}

.btn-fill-success {
  background-color: #10b981;
  color: #ffffff;
  width: 100%;
  padding: 14px;
  border-radius: 8px;
  font-weight: 600;
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", "Noto Sans", "Liberation Sans", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji" !important;
  border: none;
  cursor: pointer;
  transition: all 0.3s;
  font-size: 14px;
}

.btn-fill-success:hover {
  background-color: #059669;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(16, 185, 129, 0.3);
}

.hr {
  text-align: center;
  margin: 20px 0;
  position: relative;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", "Noto Sans", "Liberation Sans", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
}

.hr::before,
.hr::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 40%;
  height: 1px;
  background-color: rgba(255, 255, 255, 0.1);
}

.hr::before {
  left: 0;
}

.hr::after {
  right: 0;
}

.hr span {
  background-color: rgba(26, 27, 46, 0.8);
  padding: 0 15px;
  position: relative;
  z-index: 1;
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", "Noto Sans", "Liberation Sans", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji" !important;
}

.form-comment {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 15px;
  line-height: 1.5;
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", "Noto Sans", "Liberation Sans", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji" !important;
}

.form-comment a {
  color: var(--hostx-primary);
  text-decoration: underline;
}

/* Form Indicators */
.form-indicators {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.indicator-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.7);
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", "Noto Sans", "Liberation Sans", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji" !important;
}

.indicator-item i {
  color: #10b981;
  font-size: 14px;
  flex-shrink: 0;
}

/* ===================================
   SECTION I - FEATURE BOXES
   =================================== */
.se-i {
  padding: 60px 0;
  background-color: var(--hostx-darkBlue);
}

.se-i .box {
  text-align: center;
  padding: 30px 20px;
}

.se-i .box-icon {
  width: 60px;
  height: 60px;
  margin-bottom: 20px;
  filter: brightness(0) invert(1);
}

.se-i .box-title {
  font-size: 20px;
  font-weight: 700;
  color: #ffffff;
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", "Noto Sans", "Liberation Sans", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji" !important;
  line-height: 1.3;
}

/* ===================================
   SECTION II - COMPLIANCE STANDARDS (LIGHT MODE)
   =================================== */
.se-ii {
  padding: 80px 0;
  background-color: #0b0c1b;
}

.se-ii .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

.se-ii .row {
  margin-left: 0;
  margin-right: 0;
}

.se-ii .title-1 {
  font-size: 56px;
  font-weight: 900;
  color: #ffffff;
  line-height: 1;
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", "Noto Sans", "Liberation Sans", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji" !important;
  margin-bottom: 20px;
}

.se-ii .title-1 span {
  line-height: 1;
  display: inline-block;
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", "Noto Sans", "Liberation Sans", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji" !important;
}

.se-ii .title-1 .primary-color {
  color: var(--hostx-primary);
}

.se-ii .title-1 .h1-title {
  font-size: 56px;
  font-weight: 900;
  line-height: 1;
}

.se-ii .para-1 {
  font-size: 14px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", "Noto Sans", "Liberation Sans", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji" !important;
}

.se-ii .text-area {
  padding: 20px 0;
}

.se-ii .compliance-illustration {
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
  display: block !important;
  padding: 20px;
}

.se-ii .compliance-illustration .how-it-work-image {
  width: 100%;
  height: auto;
  display: block !important;
  max-width: 100%;
  border-radius: 20px;
  object-fit: cover;
  visibility: visible !important;
}

.se-ii .text-area .btn-free-trial {
  margin-top: 10px;
}

.se-ii .box {
  background-color: var(--hostx-semi-dark);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 25px 20px;
  height: 100%;
  transition: all 0.3s ease;
  position: relative;
  display: flex;
  flex-direction: column;
}

.se-ii .box:hover {
  /* No animation effects */
}

.se-ii .box .icon {
  margin-bottom: 15px;
}

.se-ii .box .icon i {
  display: inline-block;
}

.se-ii .box .box-title {
  font-size: 18px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 12px;
  line-height: 1.3;
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", "Noto Sans", "Liberation Sans", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji" !important;
}

.se-ii .box .box-para {
  font-size: 14px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
  margin-bottom: 0;
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", "Noto Sans", "Liberation Sans", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji" !important;
  flex: 1;
}

.se-ii .item {
  padding: 20px;
  text-align: center;
}

.item-logo-wrapper {
  width: 100px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  border-radius: 16px;
  background-color: rgba(255, 255, 255, 1);
  border: 1px solid rgba(226, 233, 238, 1);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  padding: 15px;
}

.tech-logo {
  width: 100%;
  height: 100%;
  object-fit: contain;
  max-width: 70px;
  max-height: 70px;
  display: block;
}

.item-logo-wrapper svg.tech-logo {
  width: 70px;
  height: 70px;
  flex-shrink: 0;
}

.se-ii .item .text {
  font-size: 14px;
  font-weight: 500;
  color: #0b0c1b;
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", "Noto Sans", "Liberation Sans", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji" !important;
  margin-top: 10px;
}

/* Responsive styles for Section II */
@media only screen and (max-width: 1199.98px) {
  .se-ii {
    padding: 60px 0 30px;
  }
  .se-ii .title-1,
  .se-ii .title-1 span,
  .se-ii .title-1 span.primary-color,
  .se-ii .title-1 .h1-title {
    font-size: 42px;
    line-height: 1.4;
  }
  .se-ii .item {
    margin-bottom: 30px;
  }
}

@media only screen and (max-width: 767px) {
  .se-ii .title-1,
  .se-ii .title-1 span,
  .se-ii .title-1 span.primary-color,
  .se-ii .title-1 .h1-title {
    font-size: 32px;
    line-height: 1.2;
  }

  .item-logo-wrapper {
    width: 80px;
    height: 80px;
  }

  .tech-logo {
    max-width: 50px;
    max-height: 50px;
  }
}

/* ===================================
   SECTION III - PUBLIC SERVICES (VPS Style - Dark Mode)
   =================================== */
.se-i {
  padding: 90px 0;
  background-color: var(--hostx-darkBlue);
}

.se-i .container-fluid {
  max-width: 1800px;
  margin: 0 auto;
  padding: 0 20px;
}

/* se-title */
.se-i .se-title {
  max-width: 1200px;
  margin: 0 auto 60px;
  padding: 0 15px;
  text-align: center !important;
}

.se-i .se-title.text-center {
  text-align: center !important;
}

.se-i .se-title .sub-title {
  font-size: 16px;
  font-weight: 600;
  color: var(--hostx-primary);
  margin-bottom: 10px;
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", "Noto Sans", "Liberation Sans", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji" !important;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-align: center !important;
}

.se-i .se-title .title {
  font-size: 42px;
  font-weight: 900;
  color: #ffffff;
  line-height: 1.2;
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", "Noto Sans", "Liberation Sans", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji" !important;
  text-align: center !important;
}

@media (max-width: 767px) {
  .se-i .se-title .title {
    font-size: 32px;
  }
}

/* card */
.se-i .card {
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  background-color: var(--hostx-semi-dark);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: -4px 4px 0 rgba(0, 96, 254, 0.1);
  transition: all 0.15s cubic-bezier(0.215, 0.610, 0.355, 1);
  height: 100%;
  display: flex;
  flex-direction: column;
  padding: 20px 15px 15px 15px;
  min-height: 550px;
}

/* For Other Services section - override card overflow */
#se-ii .card {
  overflow: visible !important;
  min-height: auto !important;
  max-height: none !important;
  height: auto !important;
}

.se-i .row {
  margin-left: -15px;
  margin-right: -15px;
}

.se-i .row > [class*="col-"] {
  padding-left: 15px;
  padding-right: 15px;
}

.se-i .card:hover {
  box-shadow: 0 0 0 rgba(0, 96, 254, 0.1);
}

.se-i .card.featured-card {
  border: 2px solid var(--hostx-primary);
}

/* head */
.se-i .card .head {
  padding: 0 0 15px 0;
}

.se-i .card .head.mt-3 {
  margin-top: 1rem;
}

/* c-title, c-para */
.se-i .card .head .c-title {
  font-size: 18px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 8px;
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", "Noto Sans", "Liberation Sans", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji" !important;
}

.se-i .card .head .c-para {
  font-size: 14px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 12px;
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", "Noto Sans", "Liberation Sans", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji" !important;
  line-height: 1.5;
  overflow: visible;
  text-overflow: unset;
  white-space: normal;
  word-wrap: break-word;
  display: block;
  max-height: none;
}

/* For Other Services section - ensure full description display */
#se-ii .se-i .card .head .c-para,
#se-ii .card .head .c-para,
#se-ii .card .head p,
#se-ii .card .head div {
  overflow: visible !important;
  text-overflow: unset !important;
  white-space: normal !important;
  word-wrap: break-word !important;
  display: block !important;
  max-height: none !important;
  height: auto !important;
  -webkit-line-clamp: unset !important;
  line-clamp: unset !important;
  text-overflow: clip !important;
}

/* type badge - positioned inside card at top */
.se-i .card .card-type-badge {
  position: relative;
  width: calc(100% + 30px);
  padding: 8px 16px;
  border-radius: 18px 18px 0 0;
  font-size: 12px;
  font-weight: 600;
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", "Noto Sans", "Liberation Sans", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji" !important;
  color: #ffffff !important;
  white-space: nowrap;
  text-align: center;
  margin: -20px -15px 0 -15px;
  box-sizing: border-box;
}

.se-i .card .card-type-badge span {
  color: #ffffff !important;
}

.se-i .card .card-type-badge.badge-type-license {
  background-color: #1f6bff;
}

.se-i .card .card-type-badge.badge-type-certification {
  background-color: #10b981;
}

.se-i .card .card-type-badge.badge-type-audit {
  background-color: #f59e0b;
}

/* features */
.se-i .card .features {
  background-color: transparent;
  border-radius: 0;
  padding: 0;
  margin: 0 0 20px;
  flex: 1;
}

/* fea */
.se-i .card .features .fea {
  background-color: transparent;
  border-radius: 0;
  padding: 8px 0;
  border: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  margin-bottom: 0;
}

.se-i .card .features .fea:last-child {
  border-bottom: none;
}

/* icon */
.se-i .card .features .fea .icon {
  padding: 12px 12px 12px 2px;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
}

.se-i .card .features .fea .icon i {
  color: #10b981;
  font-size: 16px;
}

/* text */
.se-i .card .features .fea .text {
  padding: 10px;
  flex: 1;
}

.se-i .card .features .fea .text .main {
  font-size: 14px;
  color: #ffffff;
  font-weight: 500;
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", "Noto Sans", "Liberation Sans", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji" !important;
  line-height: 1.4;
}

.se-i .card .features .fea .text .sub {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.6);
  font-weight: 500;
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", "Noto Sans", "Liberation Sans", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji" !important;
}

/* c-footer */
.se-i .card .c-footer {
  position: relative;
  background-color: transparent;
  padding: 30px 0 0;
  margin-top: auto;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.se-i .card .c-footer.p-2 {
  padding: 30px 0 0;
}

.se-i .card .c-footer .price-wrapper {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
  text-align: center;
}

.se-i .card .c-footer .price {
  font-size: 36px;
  font-weight: 900;
  color: #ffffff;
  line-height: 1.2;
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", "Noto Sans", "Liberation Sans", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji" !important;
  display: flex;
  align-items: baseline;
  gap: 4px;
}

.se-i .card .c-footer .price .currency {
  font-size: 18px;
  font-weight: 600;
  color: #ffffff;
}

.se-i .card .c-footer .price .amount {
  font-size: 36px;
  font-weight: 900;
  color: #ffffff;
}

.se-i .card .c-footer .price .custom-price,
.se-i .card .c-footer .price span:not(.currency):not(.amount) {
  font-size: 18px;
  font-weight: 600;
  color: var(--hostx-primary);
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", "Noto Sans", "Liberation Sans", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji" !important;
  display: inline-block;
  line-height: 1.2;
}

.se-i .card .c-footer .price-comment {
  font-size: 12px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.2;
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", "Noto Sans", "Liberation Sans", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji" !important;
}

.se-i .card .c-footer .actions {
  margin-top: 15px;
  margin-bottom: 0;
}

.se-i .card .c-footer .theme-btn {
  display: block;
  width: 100%;
  padding: 10px 20px;
  background-color: var(--hostx-primary);
  color: #ffffff;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 500;
  text-align: center;
  text-decoration: none !important;
  text-transform: capitalize;
  transition: all 0.3s;
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", "Noto Sans", "Liberation Sans", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji" !important;
  margin-bottom: 0;
}

.se-i .card .c-footer .theme-btn:hover {
  background-color: #0052cc;
  color: #ffffff;
  text-decoration: none !important;
}

/* se-footer */
.se-i .se-footer {
  margin-top: 40px;
}

.se-i .se-footer .line {
  margin: 6px 12px;
  display: flex;
  align-items: center;
}

.se-i .se-footer .line .icon {
  min-width: 16px;
  width: 16px;
  color: #10b981;
  margin-right: 8px;
}

.se-i .se-footer .line .text {
  font-size: 14px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.8);
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", "Noto Sans", "Liberation Sans", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji" !important;
}

/* :: SECTION III - FEATURES SECTION :: */
.se-iii.features-section {
  background-color: #ffffff;
  position: relative;
}

.se-iii .container-fluid {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

.se-iii .se-title {
  text-align: center !important;
  margin-bottom: 60px;
}

.se-iii .se-title .sub-title {
  font-size: 14px;
  font-weight: 600;
  color: var(--hostx-primary);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 15px;
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", "Noto Sans", "Liberation Sans", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji" !important;
  text-align: center !important;
}

.se-iii .se-title .title {
  font-size: 36px;
  font-weight: 900;
  color: #1a1b2e;
  line-height: 1.3;
  margin-bottom: 0;
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", "Noto Sans", "Liberation Sans", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji" !important;
  text-align: center !important;
}

.se-iii .row {
  display: flex;
  flex-wrap: wrap;
  margin-left: -15px;
  margin-right: -15px;
}

.se-iii .row > [class*="col-"] {
  padding-left: 15px;
  padding-right: 15px;
  margin-bottom: 30px;
}

.se-iii .box {
  background-color: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.12);
  border-radius: 16px;
  padding: 30px 25px;
  height: 100%;
  position: relative;
  display: flex;
  flex-direction: column;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
}

.se-iii .box:hover {
  /* No animation effects */
}

.se-iii .box .icon {
  margin-bottom: 15px;
}

.se-iii .box .icon i {
  display: inline-block;
}

.se-iii .box:hover .icon i {
  /* No animation effects */
}

.se-iii .box .box-title {
  font-size: 20px;
  font-weight: 700;
  color: #1a1b2e;
  margin-bottom: 15px;
  line-height: 1.3;
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", "Noto Sans", "Liberation Sans", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji" !important;
}

.se-iii .box .box-para {
  font-size: 14px;
  font-weight: 400;
  color: #666666;
  line-height: 1.6;
  margin-bottom: 0;
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", "Noto Sans", "Liberation Sans", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji" !important;
  flex: 1;
}

/* :: SECTION VI - FAQ :: */
.faq-se {
  background-color: #ffffff;
  position: relative;
}

.faq-se .container-fluid {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

.faq-se .se-title {
  text-align: center !important;
  margin-bottom: 60px;
}

.faq-se .se-title .sub-title {
  font-size: 14px;
  font-weight: 600;
  color: var(--hostx-primary);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 15px;
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", "Noto Sans", "Liberation Sans", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji" !important;
  text-align: center !important;
}

.faq-se .se-title .title {
  font-size: 36px;
  font-weight: 900;
  color: #1a1b2e;
  line-height: 1.3;
  margin-bottom: 0;
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", "Noto Sans", "Liberation Sans", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji" !important;
  text-align: center !important;
}

.faq-se .faq-item {
  background-color: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.12);
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s ease;
  margin-bottom: 20px;
}

.faq-se .faq-item:hover {
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
  border-color: rgba(0, 0, 0, 0.2);
}

.faq-se .faq-question {
  padding: 25px 30px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: #ffffff;
  transition: background-color 0.3s ease;
}

.faq-se .faq-question:hover {
  background-color: #f8f9fa;
}

.faq-se .faq-question .question-text {
  font-size: 16px;
  font-weight: 700;
  color: #1a1b2e;
  margin: 0;
  flex: 1;
  padding-right: 20px;
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", "Noto Sans", "Liberation Sans", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji" !important;
}

.faq-se .faq-question .toggle-icon {
  font-size: 20px;
  color: var(--hostx-primary);
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.faq-se .faq-question .toggle-icon.active {
  transform: rotate(180deg);
}

.faq-se .faq-answer {
  padding: 0 30px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  display: block;
}

.faq-se .faq-answer.active {
  padding: 0 30px 30px 30px;
  max-height: 1000px;
  margin-bottom: 10px;
}

.faq-se .faq-answer .answer-text {
  font-size: 14px;
  font-weight: 400;
  color: #666666;
  line-height: 1.6;
  margin: 0;
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", "Noto Sans", "Liberation Sans", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji" !important;
}

/* :: SECTION VII - TESTIMONIALS :: */
.testimonials-se {
  background-color: #f5f6f8 !important;
  position: relative;
}

.testimonials-se .container-fluid {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

.testimonials-se .se-title {
  text-align: center !important;
  margin-bottom: 60px;
}

.testimonials-se .se-title .title {
  font-size: 42px;
  font-weight: 900;
  color: #1a1b2e;
  line-height: 1.2;
  margin-bottom: 20px;
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", "Noto Sans", "Liberation Sans", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji" !important;
  text-align: center !important;
}

.testimonials-se .se-title .title .highlight {
  background-color: #ff6b35;
  color: #ffffff;
  padding: 4px 12px;
  border-radius: 4px;
  display: inline-block;
  font-size: 42px;
  line-height: 1.2;
  white-space: nowrap;
}

.testimonials-se .se-title .mission-text {
  font-size: 16px;
  font-weight: 400;
  color: #666666;
  line-height: 1.6;
  max-width: 800px;
  margin: 0 auto;
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", "Noto Sans", "Liberation Sans", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji" !important;
  text-align: center !important;
}

.testimonials-se .testimonial-card {
  background-color: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.12);
  border-radius: 12px;
  padding: 25px 20px;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: all 0.3s ease;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.testimonials-se .testimonial-card:hover {
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  border-color: rgba(0, 0, 0, 0.2);
}

.testimonials-se .testimonial-card .card-header {
  margin-bottom: 15px;
}

.testimonials-se .testimonial-card .client-logo {
  flex-shrink: 0;
}

.testimonials-se .testimonial-card .logo-placeholder {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--hostx-primary) 0%, #4a90e2 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 16px;
  font-weight: 700;
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", "Noto Sans", "Liberation Sans", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji" !important;
}

.testimonials-se .testimonial-card .rating-display {
  display: flex;
  align-items: center;
  gap: 4px;
}

.testimonials-se .testimonial-card .rating-value {
  font-size: 16px;
  font-weight: 700;
  color: #1a1b2e;
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", "Noto Sans", "Liberation Sans", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji" !important;
}

.testimonials-se .testimonial-card .rating-star {
  color: #10b981;
  font-size: 18px;
}

.testimonials-se .testimonial-card .quote {
  flex: 1;
  margin-bottom: 20px;
}

.testimonials-se .testimonial-card .quote-text {
  font-size: 14px;
  font-weight: 400;
  color: #4a4a4a;
  line-height: 1.6;
  margin: 0;
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", "Noto Sans", "Liberation Sans", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji" !important;
}

.testimonials-se .testimonial-card .author-info {
  margin-top: auto;
  padding-top: 15px;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.testimonials-se .testimonial-card .author-name {
  font-size: 15px;
  font-weight: 700;
  color: #1a1b2e;
  margin-bottom: 4px;
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", "Noto Sans", "Liberation Sans", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji" !important;
}

.testimonials-se .testimonial-card .author-username {
  font-size: 12px;
  font-weight: 400;
  color: #999999;
  margin: 0;
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", "Noto Sans", "Liberation Sans", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji" !important;
}

.testimonials-se .btn-view-more {
  display: inline-block;
  padding: 12px 30px;
  background-color: var(--hostx-primary);
  color: #ffffff;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none !important;
  text-transform: capitalize;
  transition: all 0.3s ease;
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", "Noto Sans", "Liberation Sans", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji" !important;
}

.testimonials-se .btn-view-more:hover {
  background-color: #0056d6;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(31, 107, 255, 0.3);
  color: #ffffff;
  text-decoration: none !important;
}

/* :: SECTION VIII - SECURITY CTA :: */
.security-cta-se {
  background-color: #ffffff;
  position: relative;
}

.security-cta-se .container-fluid {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

.security-cta-se .content {
  padding-right: 20px;
}

.security-cta-se .sub-title {
  font-size: 14px;
  font-weight: 600;
  color: var(--hostx-primary);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 15px;
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", "Noto Sans", "Liberation Sans", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji" !important;
}

.security-cta-se .title {
  font-size: 48px;
  font-weight: 900;
  color: #1a1b2e;
  line-height: 1.2;
  margin-bottom: 20px;
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", "Noto Sans", "Liberation Sans", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji" !important;
}

.security-cta-se .para {
  font-size: 16px;
  font-weight: 400;
  color: #666666;
  line-height: 1.6;
  margin-bottom: 30px;
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", "Noto Sans", "Liberation Sans", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji" !important;
}

.security-cta-se .box {
  background-color: #f8f9fa;
  border-radius: 12px;
  padding: 15px 20px;
  margin-bottom: 30px;
}

.security-cta-se .users {
  margin-right: 15px;
}

.security-cta-se .user {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 3px solid #ffffff;
  margin-left: -10px;
  overflow: hidden;
  background-color: #ffffff;
}

.security-cta-se .user:first-child {
  margin-left: 0;
}

.security-cta-se .user svg {
  width: 100%;
  height: 100%;
}

.security-cta-se .text-box {
  flex: 1;
}

.security-cta-se .count {
  font-size: 24px;
  font-weight: 900;
  color: #1a1b2e;
  margin-bottom: 4px;
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", "Noto Sans", "Liberation Sans", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji" !important;
}

.security-cta-se .text {
  font-size: 13px;
  font-weight: 400;
  color: #666666;
  margin: 0;
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", "Noto Sans", "Liberation Sans", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji" !important;
}

.security-cta-se .center-box {
  min-height: 300px;
  width: 100%;
  display: flex !important;
}

.security-cta-se .col-xl-4,
.security-cta-se .col-lg-6 {
  display: flex !important;
}

.security-cta-se .col-xl-3 {
  display: flex !important;
}

/* Force display on all screen sizes */
@media (min-width: 992px) {
  .security-cta-se .col-lg-6 {
    display: flex !important;
  }
}

@media (min-width: 1200px) {
  .security-cta-se .col-xl-4,
  .security-cta-se .col-xl-3 {
    display: flex !important;
  }
}

.security-cta-se .laptop-image-wrapper {
  display: block !important;
  visibility: visible !important;
}

.security-cta-se .laptop-image {
  display: block !important;
  visibility: visible !important;
  max-width: 100%;
  height: auto;
}

.security-cta-se .features {
  display: block !important;
  visibility: visible !important;
}

.security-cta-se .laptop-image-wrapper {
  width: 100%;
  max-width: 500px;
  background: linear-gradient(135deg, rgba(31, 107, 255, 0.1) 0%, rgba(31, 107, 255, 0.15) 100%);
  border-radius: 16px;
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.security-cta-se .laptop-image {
  width: 100%;
  height: auto;
  max-width: 100%;
  border-radius: 12px;
  object-fit: contain;
}

.security-cta-se .features {
  list-style: none;
  padding: 0;
  margin: 0;
}

.security-cta-se .features li {
  font-size: 14px;
  font-weight: 400;
  color: #666666;
  line-height: 1.8;
  margin-bottom: 15px;
  padding-left: 25px;
  position: relative;
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", "Noto Sans", "Liberation Sans", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji" !important;
}

.security-cta-se .features li:before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--hostx-primary);
  font-weight: 700;
  font-size: 16px;
}

.security-cta-se .features li:last-child {
  margin-bottom: 0;
}

/* :: SECTION IX - SUPPORT / CTA :: */
.support-se {
  background-color: #ffffff;
  position: relative;
}

.support-se .container-fluid {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

.support-se .title-1 {
  font-size: 36px;
  font-weight: 900;
  color: #1a1b2e;
  text-align: center;
  margin-bottom: 15px;
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", "Noto Sans", "Liberation Sans", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji" !important;
}

.support-se .para-1 {
  font-size: 16px;
  font-weight: 400;
  color: #666666;
  text-align: center;
  line-height: 1.6;
  margin-bottom: 50px;
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", "Noto Sans", "Liberation Sans", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji" !important;
}

.support-se .row {
  display: flex;
  align-items: stretch;
}

.support-se .row > [class*="col-"] {
  display: flex;
  flex-direction: column;
  padding-left: 15px;
  padding-right: 15px;
}

.support-se .box {
  background-color: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.12);
  border-radius: 12px;
  padding: 25px 20px;
  transition: all 0.3s ease;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
  width: 100%;
  display: flex;
  align-items: center;
  flex: 1 1 auto;
  min-height: 0;
}

.support-se .box:hover {
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  border-color: rgba(0, 0, 0, 0.2);
}

.support-se .box .box-link {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  text-decoration: none !important;
}

.support-se .box .icon {
  width: 60px;
  height: 60px;
  flex-shrink: 0;
  background-color: rgba(31, 107, 255, 0.1);
  border-radius: 12px;
}

.support-se .box .box-text {
  flex: 1;
  position: relative;
  z-index: 2;
}

.support-se .box .box-title {
  font-size: 18px;
  font-weight: 700;
  color: #1a1b2e;
  margin-bottom: 8px;
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", "Noto Sans", "Liberation Sans", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji" !important;
}

.support-se .box .box-para {
  font-size: 14px;
  font-weight: 400;
  color: #666666;
  margin: 0;
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", "Noto Sans", "Liberation Sans", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji" !important;
}

.reviews-se .reviews-slider {
  margin-bottom: 30px;
}

.reviews-se .t-box {
  background-color: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 12px;
  padding: 40px 35px;
  margin: 0 10px;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: all 0.3s ease;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.reviews-se .t-box:hover {
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
  border-color: rgba(0, 0, 0, 0.12);
}

.reviews-se .t-box .icon {
  display: flex;
  align-items: center;
  gap: 4px;
}

.reviews-se .t-box .icon svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.reviews-se .t-box .text {
  font-size: 14px;
  font-weight: 400;
  color: #4a4a4a;
  line-height: 1.6;
  margin-bottom: 20px;
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", "Noto Sans", "Liberation Sans", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji" !important;
  flex: 1;
}

.reviews-se .t-box .c-info {
  margin-top: auto;
  padding-top: 15px;
}

.reviews-se .t-box .c-info .avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.reviews-se .t-box .c-info .avatar svg {
  width: 100%;
  height: 100%;
}

.reviews-se .t-box .c-info .c-text {
  margin-left: 12px;
}

.reviews-se .t-box .c-info .c-name {
  font-size: 15px;
  font-weight: 700;
  color: #1a1b2e;
  margin-bottom: 2px;
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", "Noto Sans", "Liberation Sans", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji" !important;
}

.reviews-se .t-box .c-info .c-job {
  font-size: 13px;
  font-weight: 400;
  color: #999999;
  margin-bottom: 0;
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", "Noto Sans", "Liberation Sans", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji" !important;
}

.reviews-se .rating-box {
  margin-top: 20px;
}

.reviews-se .rating-box .text {
  font-size: 18px;
  font-weight: 700;
  color: #1a1b2e;
  margin: 0;
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", "Noto Sans", "Liberation Sans", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji" !important;
}

.reviews-se .rating-box .icon {
  display: flex;
  align-items: center;
  gap: 2px;
}

.reviews-se .rating-box .icon svg {
  width: 20px;
  height: 20px;
}

.reviews-se .rating-box .text-2 {
  font-size: 14px;
  font-weight: 400;
  color: #666666;
  margin: 0;
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", "Noto Sans", "Liberation Sans", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji" !important;
}

.reviews-se .rating-box .logo {
  height: 24px;
  width: auto;
  margin-left: 8px;
}

.reviews-se .reviews-slider-arrows {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
}

.reviews-se .reviews-slider-arrows .slider-arrow {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(0, 0, 0, 0.12);
  background-color: #ffffff;
  color: #1a1b2e;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 0;
}

.reviews-se .reviews-slider-arrows .slider-arrow:hover {
  background-color: var(--hostx-primary);
  color: #ffffff;
  border-color: var(--hostx-primary);
}

.reviews-se .reviews-slider-arrows .slider-arrow:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

/* Slick slider overrides */
.reviews-se .slick-slide {
  padding: 0 10px;
}

.reviews-se .slick-list {
  margin: 0 -10px;
}

.se-head {
  text-align: center;
  margin-bottom: 60px;
}

.se-title-1 {
  font-size: 36px;
  font-weight: 900;
  color: #ffffff;
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", "Noto Sans", "Liberation Sans", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji" !important;
  margin-bottom: 15px;
}

.se-title-2 {
  font-size: 20px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.8);
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", "Noto Sans", "Liberation Sans", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji" !important;
}

.plans {
  margin-bottom: 40px;
}

.services-row {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: flex-start;
  margin-left: -10px;
  margin-right: -10px;
}

.service-col {
  flex: 1 1 calc(25% - 20px);
  min-width: 250px;
  padding: 0 10px !important;
}

@media (max-width: 1199.98px) {
  .service-col {
    flex: 1 1 calc(33.333% - 20px);
    min-width: 280px;
  }
}

@media (max-width: 991.98px) {
  .service-col {
    flex: 1 1 calc(50% - 20px);
    min-width: 250px;
  }
}

@media (max-width: 767px) {
  .service-col {
    flex: 1 1 100%;
    min-width: 100%;
  }
}

.plan {
  background-color: var(--hostx-semi-dark);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 35px 30px;
  height: 100%;
  transition: all 0.3s;
  position: relative;
  width: 100%;
}

.plan:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  border-color: var(--hostx-primary);
}

.plan.popular-plan {
  border: 2px solid var(--hostx-primary);
  position: relative;
}

.plan.popular-plan::before {
  content: 'POPULAR';
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background-color: var(--hostx-primary);
  color: #ffffff;
  padding: 5px 20px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 700;
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", "Noto Sans", "Liberation Sans", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  text-transform: uppercase;
  letter-spacing: 1px;
}

.plan-head {
  margin-bottom: 25px;
  padding-bottom: 25px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.plan-name {
  font-size: 24px;
  font-weight: 700;
  color: #ffffff;
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", "Noto Sans", "Liberation Sans", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji" !important;
  margin-bottom: 8px;
}

.plan-para {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", "Noto Sans", "Liberation Sans", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji" !important;
  margin: 0;
}

.plan-price {
  margin-bottom: 25px;
}

.plan-price .price {
  font-size: 48px;
  font-weight: 900;
  color: #ffffff;
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", "Noto Sans", "Liberation Sans", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji" !important;
  line-height: 1;
}

.plan-price .price span {
  font-size: 18px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.7);
}

.price-comment {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", "Noto Sans", "Liberation Sans", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji" !important;
  margin-top: 8px;
}

.actions {
  margin-bottom: 30px;
}

.actions .btn {
  width: 100%;
  padding: 12px;
  text-align: center;
}

.group {
  margin-bottom: 30px;
}

.title-4 {
  font-size: 16px;
  font-weight: 700;
  color: #ffffff;
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", "Noto Sans", "Liberation Sans", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji" !important;
  margin-bottom: 15px;
}

.list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.list li {
  display: flex;
  align-items: flex-start;
  margin-bottom: 12px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", "Noto Sans", "Liberation Sans", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji" !important;
}

.list li img {
  width: 18px;
  height: 18px;
  margin-right: 10px;
  margin-top: 2px;
  flex-shrink: 0;
}

/* ===================================
   SECTION IV - MORE FEATURES
   =================================== */
.se-iv {
  padding: 90px 0;
  background-color: var(--hostx-semi-dark-3);
}

.se-iv .box {
  background-color: var(--hostx-semi-dark);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 35px 25px;
  height: 100%;
  position: relative;
  transition: all 0.3s;
  overflow: hidden;
  cursor: pointer;
}

.se-iv .box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--hostx-primary), var(--hostx-gold));
  transform: scaleX(0);
  transition: transform 0.3s;
}

.se-iv .box:hover::before {
  transform: scaleX(1);
}

.se-iv .box:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  border-color: var(--hostx-primary);
}

.se-iv .box .icon {
  width: 60px;
  height: 60px;
  margin-bottom: 20px;
  filter: brightness(0) invert(1);
}

.se-iv .box-title {
  font-size: 20px;
  font-weight: 700;
  color: #ffffff;
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", "Noto Sans", "Liberation Sans", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji" !important;
  margin-bottom: 15px;
  line-height: 1.3;
}

.se-iv .box-para {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", "Noto Sans", "Liberation Sans", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji" !important;
  line-height: 1.6;
  margin-bottom: 20px;
}

.se-iv .arrow {
  text-align: right;
  margin-top: auto;
}

.se-iv .arrow img {
  width: 24px;
  height: 24px;
  opacity: 0.5;
  transition: all 0.3s;
}

.se-iv .box:hover .arrow img {
  opacity: 1;
  transform: translateX(5px);
}

/* ===================================
   SECTION FOOTER
   =================================== */
.se-footer {
  padding: 40px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
}

.se-footer .line {
  display: flex;
  align-items: center;
  gap: 10px;
}

.se-footer .line .icon {
  width: 20px;
  height: 20px;
}

.se-footer .line .text {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", "Noto Sans", "Liberation Sans", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji" !important;
}

/* ===================================
   ADDITIONAL UTILITY STYLES
   =================================== */
.primary-color {
  color: var(--hostx-primary) !important;
}

.bg-2 {
  background-color: #ffffff !important;
}

.shadow-off {
  box-shadow: none !important;
}

.w-100 {
  width: 100% !important;
}

.font-500 {
  font-weight: 500 !important;
}

.mr-1 {
  margin-right: 8px !important;
}

.mb-md-0 {
  margin-bottom: 0 !important;
}

@media (min-width: 768px) {
  .mb-md-0 {
    margin-bottom: 0 !important;
  }
}

.mb-1 {
  margin-bottom: 8px !important;
}

.mb-2 {
  margin-bottom: 16px !important;
}

.mb-4 {
  margin-bottom: 32px !important;
}

.mb-5 {
  margin-bottom: 40px !important;
}

.mt-1 {
  margin-top: 8px !important;
}

.mt-2 {
  margin-top: 16px !important;
}

.mt-lg-0 {
  margin-top: 0 !important;
}

@media (min-width: 992px) {
  .mt-lg-0 {
    margin-top: 0 !important;
  }
}

.text-xl-left {
  text-align: left !important;
}

@media (min-width: 1200px) {
  .text-xl-left {
    text-align: left !important;
  }
}

.text-center {
  text-align: center !important;
}

.d-xl-block {
  display: block !important;
}

@media (min-width: 1200px) {
  .d-xl-block {
    display: block !important;
  }
}

.d-none {
  display: none !important;
}

.d-xl-none {
  display: none !important;
}

@media (min-width: 1200px) {
  .d-xl-none {
    display: none !important;
  }
}

.mx-xl-0 {
  margin-left: 0 !important;
  margin-right: 0 !important;
}

@media (min-width: 1200px) {
  .mx-xl-0 {
    margin-left: 0 !important;
    margin-right: 0 !important;
  }
}

.mx-auto {
  margin-left: auto !important;
  margin-right: auto !important;
}

.px-xl-0 {
  padding-left: 0 !important;
  padding-right: 0 !important;
}

@media (min-width: 1200px) {
  .px-xl-0 {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
}

/* ===================================
   RESPONSIVE
   =================================== */
@media only screen and (max-width: 991.98px) {
  .main-header-home .title-1 {
    font-size: 48px;
  }

  .hero-content-wrapper {
    text-align: center;
  }

  .main-header-home .title-1,
  .main-header-home .para-1 {
    text-align: center;
  }

  .hero-right-wrapper {
    margin-top: 40px;
  }

  .hero-illustration {
    margin-bottom: 20px;
  }

  .hero-img-fluid {
    max-width: 80%;
  }

  .security-standards-grid {
    gap: 15px;
  }

  .security-icon {
    font-size: 28px !important;
  }

  .form-container {
    max-width: 100%;
  }
}

@media only screen and (max-width: 767px) {
  .main-header-home {
    padding: 60px 0;
    min-height: auto;
  }

  .main-header-home .title-1 {
    font-size: 38px;
  }

  .main-header-home .para-1 {
    font-size: 14px;
  }

  .main-header-home .buttons {
    justify-content: center;
  }

  .security-standards-grid {
    gap: 12px;
  }

  .security-icon {
    font-size: 24px !important;
  }


  .se-title-1 {
    font-size: 28px;
  }

  .plan-price .price {
    font-size: 36px;
  }
}

