@import url('https://fonts.googleapis.com/css2?family=Cairo:wght@400;500;600;700;800;900&display=swap');

:root {
  --primary-color: #0284c7;
  --primary-dark: #0369a1;
  --primary-light: #e0f2fe;
  --accent-color: #f43f5e;
  --bg-body: #f8fafc;
  --bg-surface: #ffffff;
  --bg-surface-subtle: #f8fafc;
  --bg-surface-elevated: #ffffff;
  --card-bg: #ffffff;
  --text-heading: #0f172a;
  --text-body: #334155;
  --text-muted: #64748b;
  --border-color: #e2e8f0;
  --border-subtle: #f1f5f9;
  --nav-bg: rgba(255, 255, 255, 0.94);
  --nav-border: rgba(226, 232, 240, 0.9);
  --toggle-btn-bg: #f1f5f9;
  --toggle-btn-border: #cbd5e1;
  --toggle-btn-text: #1e293b;
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.04);
  --shadow-md: 0 10px 25px -5px rgba(0, 0, 0, 0.08), 0 8px 10px -6px rgba(0, 0, 0, 0.04);
  --shadow-lg: 0 20px 30px -10px rgba(0, 0, 0, 0.12), 0 10px 15px -5px rgba(0, 0, 0, 0.04);
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
}

[data-theme="dark"] {
  --primary-color: #38bdf8;
  --primary-dark: #0284c7;
  --primary-light: rgba(56, 189, 248, 0.14);
  --accent-color: #fb7185;
  --bg-body: #080c14;
  --bg-surface: #0f172a;
  --bg-surface-subtle: #141e33;
  --bg-surface-elevated: #1e293b;
  --card-bg: #0f172a;
  --text-heading: #f8fafc;
  --text-body: #cbd5e1;
  --text-muted: #94a3b8;
  --border-color: #1e293b;
  --border-subtle: #182236;
  --nav-bg: rgba(8, 12, 20, 0.94);
  --nav-border: rgba(255, 255, 255, 0.08);
  --toggle-btn-bg: #1e293b;
  --toggle-btn-border: #334155;
  --toggle-btn-text: #f8fafc;
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.35);
  --shadow-md: 0 10px 25px -5px rgba(0, 0, 0, 0.5);
  --shadow-lg: 0 20px 30px -10px rgba(0, 0, 0, 0.6);
}

*, *::before, *::after {
  box-sizing: border-box;
  font-family: 'Cairo', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif !important;
  margin: 0;
  padding: 0;
}

*,
*:focus,
*:active,
*:focus-visible,
button,
button:focus,
button:active,
a,
a:focus,
a:active,
input,
input:focus,
input:active,
select,
select:focus,
select:active,
textarea,
textarea:focus,
textarea:active,
.btn,
.btn:focus,
.btn:active,
.btn:focus-visible,
.lang-globe-btn,
.theme-toggle-btn,
.navbar-nav > li > a {
  outline: none !important;
  -webkit-tap-highlight-color: transparent !important;
  -webkit-focus-ring-color: transparent !important;
}

html {
  scroll-behavior: auto !important;
  direction: ltr !important;
  font-size: 16px;
  overflow-x: hidden;
}

body {
  color: var(--text-body);
  background-color: var(--bg-body);
  direction: ltr !important;
  font-size: 15px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  transition: background-color 0.3s ease, color 0.3s ease;
}

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

a {
  text-decoration: none !important;
  color: inherit;
  transition: all 0.2s ease;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.container {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}

@media (min-width: 768px) { .container { width: 750px; } }
@media (min-width: 992px) { .container { width: 970px; } }
@media (min-width: 1200px) { .container { width: 1170px; } }

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

.row:before, .row:after {
  display: table;
  content: " ";
  clear: both;
}

.col-xs-12, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-offset-1, .col-sm-offset-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-offset-0, .col-md-offset-1, .col-lg-4, .col-lg-offset-2 {
  position: relative;
  min-height: 1px;
  padding-right: 15px;
  padding-left: 15px;
}

@media (min-width: 768px) {
  .col-sm-5 { width: 41.66666667%; float: left; }
  .col-sm-6 { width: 50%; float: left; }
  .col-sm-7 { width: 58.33333333%; float: left; }
  .col-sm-8 { width: 66.66666667%; float: left; }
  .col-sm-offset-1 { margin-left: 8.33333333%; }
  .col-sm-offset-2 { margin-left: 16.66666667%; }
}

@media (min-width: 992px) {
  .col-md-3 { width: 25%; float: left; }
  .col-md-4 { width: 33.33333333%; float: left; }
  .col-md-5 { width: 41.66666667%; float: left; }
  .col-md-6 { width: 50%; float: left; }
  .col-md-7 { width: 58.33333333%; float: left; }
  .col-md-offset-0 { margin-left: 0; }
  .col-md-offset-1 { margin-left: 8.33333333%; }
}

@media (min-width: 1200px) {
  .col-lg-4 { width: 33.33333333%; float: left; }
  .col-lg-offset-2 { margin-left: 16.66666667%; }
}

.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.title-row {
  margin-top: 0 !important;
  margin-bottom: 36px !important;
  text-align: center !important;
  display: block !important;
  clear: both !important;
}

.section-title {
  font-size: 30px !important;
  font-weight: 700 !important;
  color: var(--text-heading) !important;
  line-height: 1.35 !important;
  margin: 0 0 10px 0 !important;
  padding: 0 !important;
  display: block !important;
  letter-spacing: -0.2px;
  clear: both !important;
  transition: color 0.3s ease;
}

.text-lead {
  font-size: 15.5px !important;
  font-weight: 500 !important;
  color: var(--text-muted) !important;
  line-height: 1.6 !important;
  margin: 0 !important;
  padding: 0 !important;
  display: block !important;
  transition: color 0.3s ease;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1050;
}

#siteNavbar {
  background: var(--nav-bg) !important;
  backdrop-filter: blur(16px) !important;
  -webkit-backdrop-filter: blur(16px) !important;
  box-shadow: var(--shadow-sm) !important;
  border-bottom: 1px solid var(--nav-border) !important;
  min-height: 64px !important;
  height: 64px !important;
  display: flex !important;
  align-items: center !important;
  padding: 0 !important;
  transition: background 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

#siteNavbar .container {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  height: 100% !important;
  flex-direction: row !important;
}

.navbar-header {
  display: flex !important;
  align-items: center !important;
}

.navbar-brand {
  height: 64px !important;
  padding: 0 !important;
  display: flex !important;
  align-items: center !important;
  margin: 0 !important;
  cursor: default;
}

.navbar-brand img {
  max-height: 30px !important;
  width: auto !important;
  pointer-events: none;
}

.navbar-brand-media-light { display: none !important; }
.navbar-brand-media-dark { display: block !important; }

[data-theme="dark"] .navbar-brand-media-light { display: block !important; }
[data-theme="dark"] .navbar-brand-media-dark { display: none !important; }

.navbar-collapse {
  display: flex !important;
  align-items: center !important;
}

.navbar-nav {
  display: flex !important;
  align-items: center !important;
  list-style: none;
  margin: 0 !important;
  padding: 0 !important;
}

.navbar-nav > li {
  display: flex !important;
  align-items: center !important;
}

.navbar-nav > li > a {
  font-weight: 700 !important;
  font-size: 14.5px !important;
  color: var(--text-heading) !important;
  padding: 6px 14px !important;
  margin: 0 2px;
  border-radius: var(--radius-sm);
  line-height: 20px;
  display: inline-flex !important;
  align-items: center !important;
  gap: 7px;
  transition: all 0.2s ease;
}

.nav-ico {
  stroke: var(--text-muted);
  transition: stroke 0.2s ease;
}

.navbar-nav > li > a:hover,
.navbar-nav > li.active > a {
  color: var(--primary-color) !important;
  background-color: var(--primary-light) !important;
}

.navbar-nav > li > a:hover .nav-ico,
.navbar-nav > li.active > a .nav-ico {
  stroke: var(--primary-color);
}

.navbar-toggle-icon {
  display: none;
  background: var(--toggle-btn-bg);
  border: 1px solid var(--toggle-btn-border);
  color: var(--text-heading);
  border-radius: var(--radius-sm);
  width: 40px;
  height: 40px;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  padding: 0;
  transition: all 0.2s ease;
}

.navbar-toggle-icon .hamburger-icon {
  stroke: var(--text-heading);
  transition: stroke 0.2s ease;
}

.navbar-toggle-icon:hover {
  background: var(--primary-light);
  border-color: var(--primary-color);
}

.navbar-toggle-icon:hover .hamburger-icon {
  stroke: var(--primary-color);
}

.nav-actions-wrap {
  display: inline-flex !important;
  align-items: center !important;
  gap: 8px;
  margin-left: 8px !important;
  margin-right: 4px !important;
}

.theme-toggle-btn {
  width: 38px !important;
  height: 38px !important;
  min-width: 38px !important;
  min-height: 38px !important;
  border-radius: 50% !important;
  padding: 0 !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  background: var(--toggle-btn-bg);
  color: var(--toggle-btn-text);
  border: 1px solid var(--toggle-btn-border);
  cursor: pointer;
  outline: none !important;
  flex: 0 0 38px !important;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.lang-globe-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  background: var(--toggle-btn-bg);
  color: var(--toggle-btn-text);
  border: 1px solid var(--toggle-btn-border);
  border-radius: 20px;
  padding: 5px 14px;
  font-size: 13.5px;
  font-weight: 800;
  cursor: pointer;
  outline: none !important;
  height: 38px;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.theme-icon-sun {
  display: none;
  stroke: #f59e0b;
}

.theme-icon-moon {
  display: block;
  stroke: #0284c7;
}

[data-theme="dark"] .theme-icon-sun {
  display: block;
}

[data-theme="dark"] .theme-icon-moon {
  display: none;
}

.lang-globe-btn .globe-icon {
  stroke: var(--primary-color);
}

.theme-toggle-btn:hover,
.lang-globe-btn:hover {
  background: var(--primary-color);
  color: #ffffff;
  border-color: var(--primary-color);
  box-shadow: 0 4px 12px rgba(2, 132, 199, 0.25);
  transform: translateY(-1px);
}

.theme-toggle-btn:hover svg,
.lang-globe-btn:hover .globe-icon {
  stroke: #ffffff;
}

@media (max-width: 991px) {
  #siteNavbar .container {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    width: 100% !important;
    padding-right: 15px !important;
    padding-left: 15px !important;
  }
  .navbar-header {
    width: 100% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    margin: 0 !important;
  }
  .navbar-brand {
    padding: 0 !important;
  }
  .navbar-toggle-icon {
    display: flex !important;
    margin-left: auto !important;
    margin-right: 0 !important;
  }
  .navbar-collapse {
    display: none !important;
    position: absolute;
    top: 64px;
    left: 0;
    right: 0;
    background: var(--bg-surface) !important;
    border-bottom: 1px solid var(--border-color);
    padding: 16px 20px 20px 20px;
    box-shadow: var(--shadow-lg);
    max-height: calc(100vh - 70px);
    overflow-y: auto;
    transition: background 0.3s ease;
  }
  .navbar-collapse.in {
    display: block !important;
    animation: navSlideDown 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  }
  .navbar-nav {
    flex-direction: column;
    align-items: stretch !important;
    gap: 6px;
    width: 100%;
  }
  .navbar-nav > li { width: 100%; display: block !important; }
  .navbar-nav > li > a {
    width: 100%;
    padding: 10px 14px !important;
    font-size: 15px !important;
    display: flex !important;
  }
  .nav-actions-wrap {
    width: 100%;
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    gap: 12px;
    margin: 12px 0 0 0 !important;
    padding-top: 12px;
    border-top: 1px solid var(--border-color);
  }
  .nav-actions-wrap .theme-toggle-btn {
    flex: 0 0 38px !important;
    width: 38px !important;
    height: 38px !important;
    border-radius: 50% !important;
  }
  .nav-actions-wrap .lang-globe-btn {
    flex: 1 !important;
    height: 38px !important;
  }
}

@keyframes navSlideDown {
  from { opacity: 0; transform: translateY(-8px); }
  to { opacity: 1; transform: translateY(0); }
}

.home-hero {
  background: linear-gradient(180deg, #090d16 0%, #0c1938 50%, #0369a1 100%) !important;
  position: relative;
  overflow: hidden;
  padding: 175px 0 135px 0 !important;
  min-height: 680px;
  display: flex;
  align-items: center;
  justify-content: center;
}

[data-theme="dark"] .home-hero {
  background: linear-gradient(180deg, #060910 0%, #091226 50%, #02466d 100%) !important;
}

.hero-centered-content {
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.hero-logo-wrap {
  margin-bottom: 20px;
  display: flex;
  justify-content: center;
}

.hero-logo {
  width: 130px !important;
  max-width: 130px !important;
  height: auto;
  filter: drop-shadow(0 10px 24px rgba(56, 189, 248, 0.35));
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-logo:hover {
  transform: scale(1.06);
}

.hero-title {
  font-size: 44px !important;
  font-weight: 800 !important;
  color: #ffffff !important;
  letter-spacing: -0.5px;
  margin-top: 0 !important;
  margin-bottom: 16px !important;
  text-shadow: 0 4px 16px rgba(0, 0, 0, 0.35);
}

.hero-description {
  font-size: 18px !important;
  font-weight: 500 !important;
  color: #cbd5e1 !important;
  line-height: 1.8;
  margin-bottom: 32px !important;
  max-width: 620px;
}

.hero-btn-wrap {
  display: flex;
  justify-content: center;
}

.btn-hero {
  background: linear-gradient(135deg, #38bdf8 0%, #0284c7 100%) !important;
  color: #ffffff !important;
  border: 1px solid rgba(255, 255, 255, 0.25) !important;
  border-radius: 30px !important;
  font-weight: 800 !important;
  padding: 13px 38px !important;
  font-size: 16px !important;
  box-shadow: 0 10px 25px rgba(2, 132, 199, 0.45) !important;
  display: inline-block;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-hero:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 32px rgba(56, 189, 248, 0.55) !important;
  background: linear-gradient(135deg, #7dd3fc 0%, #0284c7 100%) !important;
  color: #ffffff !important;
}

.service-section {
  padding: 130px 0 !important;
  background: var(--bg-surface) !important;
  border-bottom: 1px solid var(--border-color);
  transition: background 0.3s ease, border-color 0.3s ease;
}

.service-grid {
  display: grid !important;
  grid-template-columns: repeat(4, 1fr) !important;
  gap: 22px !important;
  width: 100% !important;
  margin: 0 auto !important;
}

@media (max-width: 991px) {
  .service-grid { grid-template-columns: repeat(2, 1fr) !important; }
}

@media (max-width: 575px) {
  .service-grid { grid-template-columns: 1fr !important; }
}

.iconbox {
  background: var(--bg-surface-subtle) !important;
  border: 1px solid var(--border-color) !important;
  border-radius: var(--radius-md) !important;
  padding: 28px 18px !important;
  text-align: center !important;
  box-shadow: var(--shadow-sm) !important;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: flex-start !important;
  height: 100% !important;
  min-height: 220px !important;
}

.iconbox:hover {
  background: var(--bg-surface) !important;
  transform: translateY(-5px) !important;
  box-shadow: 0 12px 25px -5px rgba(2, 132, 199, 0.2) !important;
  border-color: var(--primary-color) !important;
}

.iconbox-media {
  margin-bottom: 14px;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 52px;
}

.iconbox-media-img {
  width: 48px;
  height: 48px;
  object-fit: contain;
  margin: 0 auto;
  transition: transform 0.25s ease;
}

.iconbox:hover .iconbox-media-img { transform: scale(1.06); }

.iconbox-header {
  margin-bottom: 8px;
  width: 100%;
}

.iconbox-header-title {
  font-weight: 700 !important;
  font-size: 17.5px !important;
  color: var(--text-heading) !important;
  margin: 0;
  min-height: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.3s ease;
}

.iconbox-content {
  flex-grow: 1;
  display: flex;
  align-items: center;
}

.iconbox-content p {
  color: var(--text-body) !important;
  font-size: 13.5px !important;
  font-weight: 500 !important;
  line-height: 1.6 !important;
  margin: 0;
  transition: color 0.3s ease;
}

.feature1-section {
  padding: 130px 0 !important;
  background: var(--bg-body) !important;
  border-bottom: 1px solid var(--border-color);
  transition: background 0.3s ease, border-color 0.3s ease;
}

.feature2-section {
  padding: 130px 0 !important;
  background: var(--bg-surface) !important;
  border-bottom: 1px solid var(--border-color);
  transition: background 0.3s ease, border-color 0.3s ease;
}

.feature-1-row, .feature-2-row {
  display: flex !important;
  align-items: center !important;
  flex-wrap: wrap !important;
}

.feature-media-row {
  display: flex !important;
  flex-wrap: wrap !important;
}

.feature-media-col {
  margin-bottom: 18px;
  display: flex !important;
}

.feature-media.media {
  background: var(--bg-surface) !important;
  border: 1px solid var(--border-color) !important;
  border-radius: var(--radius-md) !important;
  padding: 18px 20px !important;
  box-shadow: var(--shadow-sm) !important;
  transition: all 0.25s ease !important;
  width: 100% !important;
  display: flex !important;
  align-items: flex-start !important;
  text-align: left !important;
  min-height: 120px !important;
}

.feature-media.media:hover {
  transform: translateY(-3px) !important;
  box-shadow: 0 10px 20px -5px rgba(2, 132, 199, 0.18) !important;
  border-color: var(--primary-color) !important;
}

.feature-media .media-left {
  padding-right: 14px !important;
  padding-left: 0 !important;
  display: flex !important;
  align-items: center;
}

.feature-icon-badge {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform 0.2s ease;
}

.feature-media:hover .feature-icon-badge { transform: scale(1.08); }

.badge-blue { background: #e0f2fe; border: 1px solid #bae6fd; }
.badge-purple { background: #f3e8ff; border: 1px solid #ddd6fe; }
.badge-green { background: #dcfce7; border: 1px solid #bbf7d0; }
.badge-red { background: #fee2e2; border: 1px solid #fecaca; }

[data-theme="dark"] .badge-blue { background: rgba(2, 132, 199, 0.2); border-color: rgba(56, 189, 248, 0.35); }
[data-theme="dark"] .badge-purple { background: rgba(139, 92, 246, 0.2); border-color: rgba(167, 139, 250, 0.35); }
[data-theme="dark"] .badge-green { background: rgba(16, 185, 129, 0.2); border-color: rgba(52, 211, 153, 0.35); }
[data-theme="dark"] .badge-red { background: rgba(239, 68, 68, 0.2); border-color: rgba(248, 113, 113, 0.35); }

.feature-media .media-body {
  flex: 1;
  text-align: left !important;
}

.feature-media .media-heading {
  font-weight: 700 !important;
  font-size: 16px !important;
  color: var(--text-heading) !important;
  margin-top: 0;
  margin-bottom: 5px;
  min-height: 22px;
  transition: color 0.3s ease;
}

.feature-media .media-body p {
  font-size: 13.5px !important;
  font-weight: 500 !important;
  color: var(--text-body) !important;
  line-height: 1.6 !important;
  margin: 0;
  transition: color 0.3s ease;
}

.double-screen-right, .double-screen-left {
  position: relative;
  text-align: center;
  max-width: 270px;
  width: 100%;
  margin: 0 auto;
  min-height: 350px;
  height: 350px;
  display: block;
}

.double-screen-right .screen.top, .double-screen-left .screen.top {
  position: absolute;
  top: 0;
  z-index: 2;
  width: 185px !important;
  max-width: 185px !important;
  height: auto !important;
  border-radius: 16px;
  box-shadow: 0 14px 30px rgba(15, 23, 42, 0.2);
  opacity: 0.92 !important;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.double-screen-right .screen.bottom, .double-screen-left .screen.bottom {
  position: absolute;
  top: 26px;
  z-index: 1;
  width: 185px !important;
  max-width: 185px !important;
  height: auto !important;
  border-radius: 16px;
  box-shadow: 0 10px 22px rgba(15, 23, 42, 0.15);
  opacity: 1 !important;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.double-screen-right .screen.top { left: 0; }
.double-screen-right .screen.bottom { right: 0; }

.double-screen-left .screen.top { right: 0; }
.double-screen-left .screen.bottom { left: 0; }

.double-screen-right:hover .screen.top,
.double-screen-left:hover .screen.top {
  opacity: 0.96 !important;
  transform: translateY(-3px);
}

.double-screen-right:hover .screen.bottom,
.double-screen-left:hover .screen.bottom {
  transform: translateY(3px);
}

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

.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 14px;
  font-size: 14.5px !important;
  font-weight: 600 !important;
  color: var(--text-heading) !important;
  line-height: 1.6;
  transition: color 0.3s ease;
}

.feature-list-ico {
  flex-shrink: 0;
  margin-top: 3px;
  stroke: var(--primary-color);
}

.pricing-section {
  padding: 135px 0 !important;
  background: linear-gradient(180deg, var(--bg-body) 0%, rgba(2, 132, 199, 0.05) 100%) !important;
  border-bottom: 1px solid var(--border-color);
  transition: background 0.3s ease, border-color 0.3s ease;
}

.pricing-cards-row {
  display: flex !important;
  flex-wrap: wrap !important;
  align-items: stretch !important;
}

.pricing-table-col {
  display: flex !important;
  margin-bottom: 24px;
}

.pricing-table {
  background: var(--bg-surface) !important;
  border: 1.5px solid var(--border-color) !important;
  border-radius: var(--radius-lg) !important;
  padding: 32px 24px !important;
  text-align: center !important;
  box-shadow: var(--shadow-sm) !important;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
  display: flex !important;
  flex-direction: column !important;
  justify-content: space-between !important;
  width: 100% !important;
  position: relative !important;
  min-height: 480px !important;
}

.pricing-table:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 30px -5px rgba(2, 132, 199, 0.2) !important;
  border-color: var(--primary-color) !important;
}

.pricing-popular {
  border: 2px solid var(--primary-color) !important;
  box-shadow: 0 12px 30px -5px rgba(2, 132, 199, 0.2), 0 8px 10px -6px rgba(2, 132, 199, 0.1) !important;
  background: linear-gradient(180deg, var(--primary-light) 0%, var(--bg-surface) 25%) !important;
}

[data-theme="dark"] .pricing-popular {
  border-color: #38bdf8 !important;
  box-shadow: 0 12px 32px -5px rgba(56, 189, 248, 0.3) !important;
  background: linear-gradient(180deg, rgba(56, 189, 248, 0.12) 0%, var(--bg-surface) 35%) !important;
}

.pricing-popular:hover {
  transform: translateY(-8px) !important;
  box-shadow: 0 20px 35px -5px rgba(2, 132, 199, 0.35) !important;
}

.popular-ribbon {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--bg-surface);
  color: var(--primary-dark);
  border: 1.5px solid var(--primary-color);
  padding: 3px 14px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  box-shadow: 0 4px 10px rgba(2, 132, 199, 0.15);
}

[data-theme="dark"] .popular-ribbon {
  color: #38bdf8;
  border-color: #38bdf8;
}

.pricing-table-header-title {
  font-weight: 700 !important;
  font-size: 20px !important;
  color: var(--text-heading) !important;
  margin-top: 6px;
  margin-bottom: 12px;
  transition: color 0.3s ease;
}

.pricing-svg-wrap {
  width: 74px;
  height: 74px;
  margin: 0 auto 14px auto;
  border-radius: 50%;
  background: var(--bg-surface-subtle);
  border: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.25s ease;
}

.popular-svg-wrap {
  background: var(--primary-light);
  border-color: var(--primary-color);
  box-shadow: 0 6px 16px rgba(2, 132, 199, 0.15);
}

.pricing-table:hover .pricing-svg-wrap { transform: scale(1.08); }

[data-theme="dark"] .pricing-svg-wrap rect[fill="#e0f2fe"],
[data-theme="dark"] .pricing-svg-wrap rect[fill="#dbeafe"],
[data-theme="dark"] .pricing-svg-wrap circle[fill="#e0f2fe"],
[data-theme="dark"] .pricing-svg-wrap circle[fill="#dbeafe"] {
  fill: #1e293b !important;
}

.pricing-table-content {
  flex-grow: 1;
  margin-bottom: 18px;
}

.pricing-table-detail-item {
  color: var(--text-muted) !important;
  font-size: 13px !important;
  font-weight: 600 !important;
}

.pricing-table-price {
  font-size: 36px !important;
  font-weight: 800 !important;
  color: var(--primary-color) !important;
  line-height: 1.2;
  margin: 10px 0 14px 0;
}

.pricing-table-price small {
  font-size: 15px !important;
  font-weight: 600 !important;
  color: var(--text-muted) !important;
  margin-right: 4px;
}

.pricing-spec-list {
  list-style: none;
  padding: 0;
  margin: 14px 0 0 0;
  text-align: left;
}

.pricing-spec-list li {
  font-size: 13.5px !important;
  font-weight: 500 !important;
  color: var(--text-heading) !important;
  padding: 6px 0;
  border-bottom: 1px dashed var(--border-subtle);
  display: flex;
  align-items: center;
  gap: 8px;
  transition: color 0.3s ease;
}

.pricing-spec-list li:last-child { border-bottom: none; }
.pricing-spec-list li svg { flex-shrink: 0; stroke: var(--primary-color); }

.btn-pricing {
  background: var(--toggle-btn-bg) !important;
  color: var(--primary-dark) !important;
  border: 1px solid var(--toggle-btn-border) !important;
  border-radius: var(--radius-md) !important;
  font-weight: 700 !important;
  font-size: 14.5px !important;
  padding: 10px 20px;
  width: 100%;
  display: block;
  transition: all 0.25s ease;
}

[data-theme="dark"] .btn-pricing {
  color: #38bdf8 !important;
}

.btn-pricing:hover {
  background: var(--primary-light) !important;
  border-color: var(--primary-color) !important;
  color: var(--primary-color) !important;
  transform: translateY(-2px);
}

.btn-pricing-popular {
  background: linear-gradient(135deg, #0284c7 0%, #0369a1 100%) !important;
  color: #ffffff !important;
  border: none !important;
  box-shadow: 0 6px 18px rgba(2, 132, 199, 0.35) !important;
}

.btn-pricing-popular:hover {
  background: linear-gradient(135deg, #0369a1 0%, #075985 100%) !important;
  color: #ffffff !important;
  box-shadow: 0 10px 24px rgba(2, 132, 199, 0.45) !important;
  transform: translateY(-2px);
}

.faq-section {
  padding: 130px 0 !important;
  background: var(--bg-surface) !important;
  border-bottom: 1px solid var(--border-color);
  transition: background 0.3s ease, border-color 0.3s ease;
}

.faq-grid-row {
  display: flex !important;
  flex-wrap: wrap !important;
  align-items: stretch !important;
}

.faq-box-col {
  display: flex !important;
  margin-bottom: 20px !important;
}

.faq-box {
  background: var(--bg-surface-subtle) !important;
  border: 1px solid var(--border-color) !important;
  border-radius: var(--radius-md) !important;
  padding: 22px 24px !important;
  width: 100% !important;
  display: flex !important;
  flex-direction: column !important;
  justify-content: flex-start !important;
  min-height: 135px !important;
  height: 100% !important;
  box-shadow: var(--shadow-sm) !important;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1) !important;
}

.faq-box:hover {
  background: var(--bg-surface) !important;
  border-color: var(--primary-color) !important;
  box-shadow: 0 10px 25px -5px rgba(2, 132, 199, 0.15) !important;
  transform: translateY(-3px);
}

.faq-box-header {
  display: flex !important;
  align-items: center !important;
  gap: 12px !important;
  margin-bottom: 8px !important;
  min-height: 32px !important;
}

.faq-box-header .q {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 30px;
  height: 30px;
  background: linear-gradient(135deg, #0284c7 0%, #0369a1 100%) !important;
  color: #ffffff !important;
  border-radius: 8px;
  font-weight: 800;
  font-size: 13.5px;
  box-shadow: 0 3px 8px rgba(2, 132, 199, 0.25);
  flex-shrink: 0;
}

.faq-title {
  font-size: 16px !important;
  font-weight: 700 !important;
  color: var(--text-heading) !important;
  margin: 0 !important;
  line-height: 1.4;
  transition: color 0.3s ease;
}

.faq-box-body {
  flex-grow: 1;
  display: flex;
  align-items: flex-start;
}

.faq-box-body p {
  color: var(--text-body) !important;
  font-size: 13.5px !important;
  font-weight: 500 !important;
  line-height: 1.6 !important;
  margin: 0 !important;
  min-height: 40px !important;
  transition: color 0.3s ease;
}

.contact-section {
  padding: 125px 0 135px 0 !important;
  background: var(--bg-body) !important;
  border-top: 1px solid var(--border-color);
  transition: background 0.3s ease, border-color 0.3s ease;
}

.contact-title-row {
  padding-top: 0 !important;
  margin-top: 0 !important;
  margin-bottom: 35px !important;
}

.contact-title-row .section-title {
  margin-top: 0 !important;
  margin-bottom: 12px !important;
  font-size: 28px !important;
}

.contact-about-bullets {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 10px;
  margin-bottom: 0 !important;
}

.contact-about-bullets span {
  font-size: 15px !important;
  font-weight: 500 !important;
  color: var(--text-muted) !important;
  line-height: 1.6;
  transition: color 0.3s ease;
}

.contact-content-row {
  margin-top: 80px !important;
  padding-bottom: 0 !important;
  display: flex;
  align-items: stretch;
  flex-wrap: wrap;
}

.contact-info-col .text-lead {
  font-size: 14px !important;
  line-height: 1.6 !important;
  color: var(--text-muted) !important;
  margin-bottom: 14px !important;
}

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

.contact-info .media {
  background: var(--bg-surface);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 12px 16px !important;
  margin-bottom: 12px !important;
  box-shadow: var(--shadow-sm);
  transition: all 0.2s ease;
  display: flex !important;
  align-items: center !important;
}

.contact-info .media-left {
  padding-right: 12px !important;
  padding-left: 0 !important;
}

.contact-icon-badge {
  width: 40px !important;
  height: 40px !important;
  border-radius: 10px;
  background: var(--primary-light);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-icon-badge svg {
  stroke: var(--primary-color);
}

.contact-info .media:hover {
  transform: translateX(3px);
  border-color: var(--primary-color);
  box-shadow: var(--shadow-md);
}

.contact-info .media-heading {
  font-weight: 700 !important;
  font-size: 14.5px !important;
  color: var(--text-heading) !important;
  margin-bottom: 1px !important;
  margin-top: 0 !important;
  transition: color 0.3s ease;
}

.contact-info .media-body p {
  color: var(--text-body) !important;
  font-size: 13px !important;
  font-weight: 500 !important;
  margin: 0 !important;
  transition: color 0.3s ease;
}

.panel-theme-1 {
  border-radius: var(--radius-md) !important;
  overflow: hidden;
  box-shadow: var(--shadow-sm) !important;
  border: 1px solid var(--border-color) !important;
  background: var(--bg-surface);
  height: 100%;
  transition: background 0.3s ease, border-color 0.3s ease;
}

.panel-theme-1 .panel-heading {
  padding: 12px 16px;
  background: var(--bg-surface) !important;
  color: var(--text-heading) !important;
  font-weight: 700 !important;
  font-size: 14.5px !important;
  border-bottom: 1px solid var(--border-subtle);
  transition: background 0.3s ease, color 0.3s ease;
}

.panel-theme-1 .panel-body {
  padding: 12px;
}

.panel-theme-1 img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  object-fit: cover;
}

.site-footer {
  background: linear-gradient(180deg, #090d16 0%, #030509 100%) !important;
  color: #94a3b8;
  padding: 70px 0 45px 0 !important;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

[data-theme="dark"] .site-footer {
  background: linear-gradient(180deg, #060910 0%, #020306 100%) !important;
  border-top-color: rgba(255, 255, 255, 0.05);
}

.footer-centered-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 700px;
  margin: 0 auto;
}

.site-footer-brand {
  font-size: 22px !important;
  font-weight: 800 !important;
  color: #ffffff !important;
  letter-spacing: -0.3px;
  margin-bottom: 2px;
}

.site-footer-brand span {
  font-size: 13px !important;
  font-weight: 600 !important;
  color: #38bdf8 !important;
  display: block;
  margin-top: 3px;
}

.site-footer-designer {
  color: #94a3b8 !important;
  font-size: 13px !important;
  font-weight: 500 !important;
  margin-top: 4px;
  margin-bottom: 18px;
}

.site-footer-social-list {
  display: flex;
  justify-content: center;
  gap: 14px;
  margin: 0 0 20px 0;
  padding: 0;
  list-style: none;
}

.img-so {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 7px;
  object-fit: contain;
  transition: all 0.25s ease;
}

.img-so:hover {
  transform: translateY(-3px) scale(1.1);
  background: rgba(56, 189, 248, 0.2);
  border-color: #38bdf8;
  box-shadow: 0 4px 15px rgba(56, 189, 248, 0.35);
}

.footer-support-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 25px;
  padding: 7px 20px;
  font-size: 13.5px !important;
  margin-bottom: 22px;
}

.footer-support-pill span {
  color: #cbd5e1 !important;
}

.footer-support-pill a {
  color: #38bdf8 !important;
  font-weight: 700 !important;
  transition: color 0.2s ease;
}

.footer-support-pill a:hover {
  color: #7dd3fc !important;
  text-decoration: underline;
}

.footer-divider-line {
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.12), transparent);
  margin-bottom: 16px;
}

.site-footer-copyright {
  color: #64748b;
  font-size: 12.5px !important;
  font-weight: 500;
}

@media (max-width: 991px) {
  .section-title { font-size: 26px !important; }
  .text-lead { font-size: 14.5px !important; }
  .feature-1-row, .feature-2-row { gap: 24px; }
}

@media (max-width: 767px) {
  .container {
    padding-right: 16px !important;
    padding-left: 16px !important;
    width: 100% !important;
    max-width: 100% !important;
  }
  .row {
    margin-right: -8px !important;
    margin-left: -8px !important;
  }
  .col-xs-12, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8,
  .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7,
  .col-lg-4 {
    width: 100% !important;
    float: none !important;
    padding-right: 8px !important;
    padding-left: 8px !important;
    margin-left: 0 !important;
  }
  .home-hero {
    padding: 105px 0 60px 0 !important;
    min-height: auto;
  }
  .hero-title {
    font-size: 28px !important;
    margin-bottom: 12px !important;
  }
  .hero-description {
    font-size: 15px !important;
    margin-bottom: 24px !important;
    line-height: 1.65;
  }
  .hero-logo {
    width: 105px !important;
    max-width: 105px !important;
  }
  .btn-hero {
    padding: 12px 28px !important;
    font-size: 15px !important;
    width: 100%;
    max-width: 240px;
  }
  .service-section,
  .feature1-section,
  .feature2-section,
  .pricing-section,
  .faq-section,
  .contact-section {
    padding: 60px 0 !important;
  }
  .title-row {
    margin-bottom: 22px !important;
  }
  .section-title {
    font-size: 24px !important;
  }
  .feature-1-row,
  .feature-2-row {
    flex-direction: column !important;
    align-items: stretch !important;
  }
  .feature-1-right-col,
  .feature-2-left-col {
    margin-top: 25px !important;
    width: 100% !important;
    display: flex;
    justify-content: center;
  }
  .double-screen-right,
  .double-screen-left {
    height: 280px;
    max-width: 240px;
    min-height: 280px;
    margin: 10px auto 0 auto;
  }
  .double-screen-right .screen.top,
  .double-screen-left .screen.top,
  .double-screen-right .screen.bottom,
  .double-screen-left .screen.bottom {
    width: 150px !important;
    max-width: 150px !important;
  }
  .pricing-table {
    min-height: auto !important;
    padding: 26px 18px !important;
    margin-bottom: 16px;
  }
  .faq-box {
    min-height: auto !important;
    padding: 18px 18px !important;
  }
  .faq-box-body p {
    min-height: auto !important;
  }
  .contact-content-row {
    margin-top: 36px !important;
    flex-direction: column;
    gap: 20px;
  }
  .contact-left-col,
  .contact-info-col {
    width: 100% !important;
  }
  .site-footer {
    padding: 40px 0 25px 0 !important;
  }
  .footer-support-pill {
    padding: 7px 14px;
    font-size: 12.5px !important;
    flex-wrap: wrap;
    justify-content: center;
    text-align: center;
  }
}

@media (max-width: 420px) {
  .hero-title { font-size: 24px !important; }
  .section-title { font-size: 21px !important; }
  .double-screen-right, .double-screen-left {
    height: 230px;
    max-width: 200px;
    min-height: 230px;
  }
  .double-screen-right .screen.top,
  .double-screen-left .screen.top,
  .double-screen-right .screen.bottom,
  .double-screen-left .screen.bottom {
    width: 125px !important;
    max-width: 125px !important;
  }
  .feature-media.media {
    padding: 14px 12px !important;
  }
  .feature-icon-badge {
    width: 36px;
    height: 36px;
  }
}

.fade-in-up {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.fade-in-up.visible {
  opacity: 1;
  transform: translateY(0);
}
