/* Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  color: #00d9ff;
  line-height: 1.6;
  background-color: #ffffff;
}

.container {
  max-width: 1350px;
  margin: 0 auto;
  padding: 0 2rem;
}
  
/* Global toaster feedback */
.toaster-container {
  position: fixed;
  top: 1.2rem;
  right: 1.2rem;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  z-index: 4000;
  pointer-events: none;
  width: min(92vw, 420px);
}

.toaster {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.75rem 0.95rem;
  border-radius: 12px;
  border: 1px solid rgba(0, 217, 255, 0.38);
  background: rgba(2, 10, 28, 0.92);
  color: #d9f8ff;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.28);
  opacity: 0;
  transform: translate3d(0, -10px, 0);
  transition: opacity 0.24s ease, transform 0.24s ease;
  pointer-events: auto;
}

.toaster.toaster--visible {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.toaster--success {
  border-color: rgba(34, 197, 94, 0.45);
}

.toaster-icon {
  width: 18px !important;
  height: 18px !important;
  min-width: 18px;
  min-height: 18px;
  max-width: 18px;
  max-height: 18px;
  display: block;
  flex-shrink: 0;
}

.toaster-message {
  color: #e8f7ff;
  font-size: 0.92rem;
  line-height: 1.35;
  font-weight: 500;
}

@media (max-width: 640px) {
  .toaster-container {
    top: 0.85rem;
    right: 0.85rem;
    left: 0.85rem;
    width: auto;
  }
}

/* Home scroll reveal (one-time per page load) */
.js-home-reveal {
  transition: opacity 0.68s cubic-bezier(0.22, 0.61, 0.36, 1), transform 0.78s cubic-bezier(0.22, 0.61, 0.36, 1);
  transition-delay: var(--reveal-delay, 0ms);
}

.js-home-reveal.is-pending-reveal {
  opacity: 0;
  transform: translate3d(0, 64px, 0);
  will-change: opacity, transform;
}

.js-home-reveal.is-pending-reveal.reveal-left {
  transform: translate3d(-84px, 0, 0);
}

.js-home-reveal.is-pending-reveal.reveal-right {
  transform: translate3d(84px, 0, 0);
}

.js-home-reveal.is-pending-reveal.reveal-up {
  transform: translate3d(0, 64px, 0);
}

.js-home-reveal.is-revealed {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

/* Smoother card reveal pace for Services and Blog on homepage */
.services-section .service-card.js-home-reveal,
.blog-section .blog-card.js-home-reveal {
  transition: opacity 1s cubic-bezier(0.22, 0.61, 0.36, 1), transform 1.12s cubic-bezier(0.22, 0.61, 0.36, 1);
}

@media (prefers-reduced-motion: reduce) {
  .js-home-reveal,
  .js-home-reveal.is-pending-reveal,
  .js-home-reveal.is-revealed {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
    transition-delay: 0ms !important;
  }
}

/* Navigation – fixed height so logo never affects header bar */
header {
  background: #ffffff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  position: sticky;
  top: 0;
  z-index: 1000;
}
.navbar {
  max-width: 1350px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 2rem;
  height: 5rem;
  min-height: 5rem;
  max-height: 5rem;
  box-sizing: border-box;
}

.navbar-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  height: 100%;
  max-height: 5rem;
}

/* Brand logo: own class; fixed px so it always applies */
.brand-logo {
  height: 40px;
  max-height: 40px;
  width: auto;
  display: block;
  object-fit: contain;
  flex-shrink: 0;
}

header .navbar .navbar-brand img.brand-logo {
  height: 40px !important;
  max-height: 40px !important;
  width: auto !important;
}

.navbar-logo {
  font-size: 1.5rem;
  font-weight: 600;
  color: #00d9ff;
  text-decoration: none;
  flex-shrink: 0;
}

.navbar-logo .brand-main,
.navbar-logo .brand-accent {
  display: inline-block;
}

.navbar-logo .brand-accent {
  color: #00e8ff;
}


header .navbar .navbar-brand .navbar-logo {
  font-size: 1.5rem;
  line-height: 40px;
}

.navbar-links {
  display: flex;
  align-items: center;
  list-style: none;
  gap: 2rem;
}

.navbar-links li {
  position: relative;
}

.navbar-links a {
  text-decoration: none;
  color: #00d9ff;
  font-weight: 500;
  font-size: 0.95rem;
  transition: color 0.2s ease;
}

.navbar-links a:hover {
  color: #2f73f2;
}

.dropdown-arrow {
  font-size: 0.7rem;
  margin-left: 0.25rem;
}

.navbar-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.navbar-hamburger {
  display: none;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  border: 1px solid rgba(15, 33, 79, 0.2);
  background: #ffffff;
  padding: 0;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  transition: background 0.2s ease, border-color 0.2s ease;
}

.navbar-hamburger span {
  display: block;
  width: 18px;
  height: 2px;
  background: #0f214f;
  border-radius: 999px;
}

.navbar-hamburger:hover {
  background: #f1f5f9;
  border-color: #2f73f2;
}

.dark-mode-toggle {
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  transition: transform 0.2s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #0F214F;
}

.dark-mode-toggle .theme-icon {
  display: block;
}

.dark-mode-toggle .theme-icon-moon {
  stroke: #0F214F;
}

.dark-mode-toggle .theme-icon-sun {
  stroke: #fff;
}

.dark-mode-toggle:hover {
  transform: scale(1.1);
}

html.dark-mode .dark-mode-toggle .theme-icon-moon {
  display: none;
}

html.dark-mode .dark-mode-toggle .theme-icon-sun {
  display: block !important;
  stroke: #ffffff;
}

.mobile-nav-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(2, 12, 36, 0.45);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.22s ease, visibility 0.22s ease;
  z-index: 1150;
}

.mobile-nav-drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: min(86vw, 360px);
  height: 100dvh;
  background: #ffffff;
  box-shadow: -16px 0 34px rgba(15, 33, 79, 0.25);
  border-left: 1px solid rgba(15, 33, 79, 0.12);
  transform: translateX(100%);
  visibility: hidden;
  pointer-events: none;
  transition: transform 0.24s ease;
  z-index: 1160;
  padding: 0.95rem 1rem 1.15rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.mobile-nav-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}

.mobile-drawer-theme-toggle {
  border: 1px solid rgba(15, 33, 79, 0.2);
  border-radius: 10px;
  width: 40px;
  height: 40px;
}

.mobile-nav-close {
  border: 1px solid rgba(15, 33, 79, 0.2);
  background: #ffffff;
  color: #0f214f;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease, border-color 0.2s ease;
}

.mobile-nav-close:hover {
  background: #f1f5f9;
  border-color: #2f73f2;
}

.mobile-nav-links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.mobile-nav-links a {
  display: block;
  text-decoration: none;
  color: #00d9ff;
  font-weight: 600;
  font-size: 1rem;
  padding: 0.72rem 0.75rem;
  border-radius: 9px;
  transition: background 0.2s ease, color 0.2s ease;
}

.mobile-nav-links a:hover {
  background: #edf3ff;
  color: #2f73f2;
}

.mobile-nav-backdrop.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.mobile-nav-drawer.is-open {
  transform: translateX(0);
  visibility: visible;
  pointer-events: auto;
}

body.mobile-nav-open {
  overflow: hidden;
}

@media (min-width: 1025px) {
  .mobile-nav-backdrop,
  .mobile-nav-drawer {
    display: none !important;
  }
}

.btn-signin {
  padding: 0.5rem 1.25rem;
  background: #5eb3f6;
  color: #ffffff;
  text-decoration: none;
  border-radius: 6px;
  font-weight: 500;
  font-size: 0.9rem;
  transition: background 0.2s ease;
}

.btn-signin:hover {
  background: #4a9ee5;
}

.btn-signup {
  padding: 0.5rem 1.25rem;
  background: #2f73f2;
  color: #ffffff;
  text-decoration: none;
  border-radius: 6px;
  font-weight: 500;
  font-size: 0.9rem;
  transition: background 0.2s ease;
}

.btn-signup:hover {
  background: #2563eb;
}

/* Hero Section */
.hero-section {
  padding: 5rem 0;
  background: #ffffff;
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.hero-text {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: #e6f7e6;
  color: #22c55e;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 500;
  width: fit-content;
}

.badge-icon {
  width: 20px;
  height: 20px;
  background: #22c55e;
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
}

.hero-text h1 {
  font-size: 3.5rem;
  font-weight: 700;
  color: #00d9ff;
  line-height: 1.2;
}

.hero-text p {
  font-size: 1.1rem;
  color: #547593;
  max-width: 500px;
}

.btn-primary {
  padding: 1rem 2rem;
  background: #2f73f2;
  color: #ffffff;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 600;
  font-size: 1rem;
  width: fit-content;
  transition: background 0.2s ease;
}

.btn-primary:hover {
  background: #2563eb;
}

.hero-help {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 1rem;
}

.help-avatars {
  display: flex;
  gap: -0.5rem;
}

.help-avatars img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 2px solid #ffffff;
  margin-left: -10px;
}

.help-avatars img:first-child {
  margin-left: 0;
}

.help-text {
  display: flex;
  flex-direction: column;
  font-size: 0.9rem;
}

.help-text strong {
  color: #00d9ff;
}

.help-text span {
  color: #547593;
}

.hero-image {
  position: relative;
}

.hero-image img {
  width: 100%;
  height: auto;
  border-radius: 16px;
}

/* Statistics Section */
.stats-section {
  padding: 4rem 0;
  background: #f8fafc;
}

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

.stat-item {
  text-align: center;
}

.stat-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.stat-number {
  font-size: 3.5rem;
  font-weight: 700;
  color: #00d9ff;
  margin-bottom: 0.5rem;
}

.stat-description {
  font-size: 1rem;
  color: #547593;
  line-height: 1.5;
}

/* Features Section */
.features-section {
  padding: 6rem 0;
  background: #ffffff;
}

.features-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.features-image img {
  width: 100%;
  height: auto;
  border-radius: 16px;
}

.features-text {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.features-text h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #00d9ff;
  line-height: 1.2;
}

.features-text p {
  font-size: 1rem;
  color: #547593;
  line-height: 1.7;
}

.progress-bars {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-top: 1rem;
}

.progress-item {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.progress-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.95rem;
  color: #00d9ff;
  font-weight: 500;
}

.progress-percent {
  color: #2f73f2;
  font-weight: 600;
}

.progress-bar {
  width: 100%;
  height: 8px;
  background: #e5e7eb;
  border-radius: 4px;
  overflow: hidden;
}

.progress-fill {
  height: 100%;
  background: linear-gradient(90deg, #2f73f2, #5eb3f6);
  border-radius: 4px;
  transition: width 0.3s ease;
}

/* Services Section */
.services-section {
  padding: 6rem 0;
  background: #f8fafc;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #00d9ff;
  text-align: center;
  margin-bottom: 3rem;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.services-grid-desktop {
  display: grid;
}

.services-more-wrap {
  margin-top: 2rem;
  display: flex;
  justify-content: center;
}

.btn-services-more {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.78rem 1.6rem;
  border-radius: 10px;
  border: 1px solid #2f73f2;
  background: #2f73f2;
  color: #ffffff;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.btn-services-more:hover {
  background: #2563eb;
  border-color: #2563eb;
  transform: translateY(-1px);
}

.services-carousel,
.services-empty-mobile {
  display: none;
}

.services-carousel {
  position: relative;
  width: 100%;
}

.services-carousel-viewport {
  overflow: hidden;
}

.services-carousel-track {
  display: flex;
  transition: transform 0.32s ease;
}

.services-carousel-slide {
  flex: 0 0 100%;
  min-width: 0;
}

.services-carousel-slide .service-card {
  margin: 0;
}

.services-carousel-slide--more {
  display: flex;
}

.services-mobile-more-link {
  width: 100%;
  min-height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 0.25rem;
  background: #ffffff;
  border: 1px solid rgba(15, 33, 79, 0.1);
  border-radius: 12px;
  text-decoration: none;
  color: #00d9ff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  padding: 2rem 1rem;
}

.services-mobile-more-arrow {
  font-size: 2.25rem;
  font-weight: 700;
  line-height: 1;
  color: #2f73f2;
}

.services-mobile-more-text {
  font-size: 0.95rem;
  font-weight: 600;
  color: #2f73f2;
}

.services-carousel-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 1px solid rgba(15, 33, 79, 0.2);
  background: linear-gradient(180deg, #ffffff 0%, #edf3ff 100%);
  color: #0f214f;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 10px 22px rgba(15, 33, 79, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(6px);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease, color 0.22s ease, background 0.22s ease, opacity 0.2s ease;
  z-index: 3;
}

.services-carousel-nav::before {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: inherit;
  background: radial-gradient(circle, rgba(47, 115, 242, 0.24) 0%, rgba(47, 115, 242, 0) 72%);
  opacity: 0;
  transition: opacity 0.22s ease;
  pointer-events: none;
}

.services-carousel-nav-icon {
  width: 18px;
  height: 18px;
  display: block;
}

.services-carousel-nav:hover:not(:disabled) {
  transform: translateY(-50%) scale(1.06);
  border-color: #2f73f2;
  color: #2f73f2;
  background: linear-gradient(180deg, #ffffff 0%, #e7f0ff 100%);
  box-shadow: 0 14px 26px rgba(47, 115, 242, 0.24), inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.services-carousel-nav:hover:not(:disabled)::before {
  opacity: 0.8;
}

.services-carousel-nav:active:not(:disabled) {
  transform: translateY(-50%) scale(0.96);
}

.services-carousel-nav:disabled {
  opacity: 0.34;
  cursor: default;
  box-shadow: none;
}

.services-carousel-nav--prev {
  left: -14px;
}

.services-carousel-nav--next {
  right: -14px;
}

.service-card {
  background: #ffffff;
  border: 1px solid #d7e2ef;
  padding: 1.3rem 1.3rem 1.3rem;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.service-card:hover {
  transform: translateY(-4px);
  border-color: #c1d2ea;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.service-icon {
  margin-bottom: 1.5rem;
}

.service-icon img {
  width: 60px;
  height: 60px;
}

.service-cover-photo {
  width: 100%;
  height: 165px;
  margin-bottom: 1.35rem;
  border-radius: 12px;
  overflow: hidden;
  background: #eef3f8;
  border: 1px solid rgba(15, 33, 79, 0.1);
}

.service-cover-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.service-card h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: #00d9ff;
  margin-bottom: 1rem;
}

.service-description {
  font-size: 0.95rem;
  color: #547593;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.service-description p,
.service-description ul,
.service-description ol {
  margin: 0 0 0.7rem;
}

.service-description p:last-child,
.service-description ul:last-child,
.service-description ol:last-child {
  margin-bottom: 0;
}

.service-description ul,
.service-description ol {
  padding-left: 1.1rem;
}

.service-link {
  color: #2f73f2;
  text-decoration: none;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: color 0.2s ease;
}

.service-link:hover {
  color: #2563eb;
}

.service-link span {
  font-size: 1.2rem;
}

/* Portfolio Section */
.portfolio-section {
  padding: 6rem 0;
  background: #ffffff;
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-header h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #00d9ff;
  margin: 1rem 0;
}

.section-header p {
  font-size: 1.1rem;
  color: #547593;
  max-width: 600px;
  margin: 0 auto;
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.portfolio-item {
  background: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.portfolio-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.portfolio-item img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.portfolio-info {
  padding: 1.5rem;
}

.portfolio-info h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: #00d9ff;
  margin-bottom: 0.25rem;
}

.portfolio-info p {
  font-size: 0.9rem;
  color: #547593;
}

/* Client Success Stories */
.client-stories-section {
  padding: 6rem 0;
  background: #f8fafc;
}

.section-header--stories {
  margin-bottom: 2.5rem;
}

.reviews-carousel {
  --reviews-per-view: 3;
  --review-card-max-width: 360px;
  position: relative;
}

.reviews-carousel-viewport {
  overflow: hidden;
}

.reviews-carousel-track {
  display: flex;
  margin: 0 -0.7rem;
  will-change: transform;
}

.reviews-carousel-track.is-static {
  justify-content: center;
  transform: translateX(0) !important;
}

.review-story-card {
  flex: 0 0 calc(100% / var(--reviews-per-view));
  max-width: calc(100% / var(--reviews-per-view));
  padding: 0 0.9rem;
  display: flex;
  justify-content: center;
}

.review-story-card-inner {
  position: relative;
  width: 100%;
  max-width: min(var(--review-card-max-width), 100%);
  height: 100%;
  min-height: 360px;
  border-radius: 24px;
  border: 1px solid #d7e2ef;
  background: #ffffff;
  box-shadow: 0 8px 22px rgba(15, 33, 79, 0.09);
  padding: 2rem 1.7rem 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 1.5rem;
  overflow: hidden;
}

.review-story-card-inner::before {
  content: none;
}

.review-story-message {
  margin: 0;
  color: #475d75;
  font-size: 0.98rem;
  line-height: 1.75;
  text-align: justify;
  text-justify: inter-word;
  overflow-wrap: anywhere;
  word-break: break-word;
  white-space: pre-line;
}

.review-story-author {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.review-story-author strong {
  color: #00d9ff;
  font-size: 2rem;
  line-height: 1.15;
  font-weight: 700;
}

.review-story-author span {
  color: #547593;
  font-size: 1rem;
}

/* Blog Section */
.blog-section {
  padding: 6rem 0;
  background: #ffffff;
}

.blog-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 3rem;
}

.blog-header h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #00d9ff;
}

.view-more {
  color: #2f73f2;
  text-decoration: none;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: color 0.2s ease;
}

.view-more:hover {
  color: #2563eb;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.blog-grid--home.blog-grid--centered {
  grid-template-columns: repeat(auto-fit, minmax(320px, 380px));
  justify-content: center;
}

.blog-card {
  background: #ffffff;
  border: 1px solid #d7e2ef;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 14px rgba(15, 33, 79, 0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.blog-card:hover {
  transform: translateY(-4px);
  border-color: #c1d2ea;
  box-shadow: 0 8px 22px rgba(15, 33, 79, 0.14);
}

.blog-image-wrapper {
  position: relative;
  overflow: hidden;
}

.blog-cover-link {
  display: block;
  cursor: pointer;
}

.blog-cover-link img {
  transition: transform 0.25s ease, filter 0.25s ease;
}

.blog-cover-link:hover img {
  transform: scale(1.03);
  filter: brightness(1.03);
}

.blog-image-wrapper img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.blog-content {
  padding: 1.5rem;
}

.blog-content h3 {
  font-size: 1.1rem;
  font-weight: 600;
  color: #00d9ff;
  margin-bottom: 0.75rem;
  line-height: 1.4;
}

.blog-title-link {
  color: inherit;
  text-decoration: none;
  cursor: pointer;
  transition: color 0.2s ease;
}

.blog-title-link:hover {
  color: #2f73f2;
}

.blog-date {
  font-size: 0.85rem;
  color: #547593;
}

.blog-grid--page {
  margin-top: 0.5rem;
}

.blog-excerpt {
  margin-top: 0.65rem;
  font-size: 0.92rem;
  color: #547593;
  line-height: 1.65;
}

.blog-page-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.25rem;
}

.blog-page-head h2 {
  margin: 0;
}

.btn-publish-blog {
  border: 1px solid #2f73f2;
  background: #2f73f2;
  color: #ffffff;
  border-radius: 8px;
  font-size: 0.92rem;
  font-weight: 600;
  padding: 0.7rem 1rem;
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease;
}

.btn-publish-blog:hover {
  background: #2563eb;
  border-color: #2563eb;
}

.blog-publish-panel {
  display: none;
  margin-bottom: 1.5rem;
  padding: 1rem;
  border: 1px solid rgba(15, 33, 79, 0.1);
  border-radius: 12px;
  background: #ffffff;
}

.blog-publish-panel.is-open {
  display: block;
}

.blog-publish-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.blog-publish-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.blog-publish-group--full {
  grid-column: 1 / -1;
}

.blog-publish-group label {
  font-weight: 600;
  color: #00d9ff;
}

.blog-publish-group input,
.blog-publish-group textarea {
  width: 100%;
  padding: 0.75rem 0.9rem;
  border: 1px solid rgba(15, 33, 79, 0.2);
  border-radius: 8px;
  font-size: 0.95rem;
  font-family: inherit;
  background: #fff;
  color: #0f214f;
}

.blog-publish-group input:focus,
.blog-publish-group textarea:focus {
  outline: none;
  border-color: #2f73f2;
  box-shadow: 0 0 0 3px rgba(47, 115, 242, 0.12);
}

.blog-publish-note {
  margin: 0;
  color: #64748b;
  font-size: 0.82rem;
}

.blog-publish-actions {
  margin-top: 0.75rem;
}

.blog-alert {
  margin-bottom: 1rem;
  border: 1px solid;
  border-radius: 8px;
  padding: 0.7rem 0.85rem;
  font-size: 0.9rem;
}

.blog-alert--success {
  background: #ecfdf3;
  border-color: #86efac;
  color: #166534;
}

.blog-alert--error {
  background: #fef2f2;
  border-color: #fecaca;
  color: #b91c1c;
}

.blog-details-section {
  padding-top: 0.5rem;
  padding-bottom: 3rem;
}

.blog-details-card {
  background: #ffffff;
  border: 1px solid rgba(15, 33, 79, 0.08);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
}

.blog-details-cover {
  width: 100%;
  height: auto;
  max-height: 460px;
  object-fit: cover;
  display: block;
}

.blog-details-content {
  padding: 1.5rem;
}

.blog-details-meta {
  margin-bottom: 1rem;
  font-size: 0.9rem;
  color: #547593;
}

.blog-details-body {
  color: #9db3cf;
  font-size: 1rem;
  line-height: 1.8;
}

.blog-details-body p,
.blog-details-body ul,
.blog-details-body ol,
.blog-details-body li,
.blog-details-body blockquote,
.blog-details-body h2,
.blog-details-body h3,
.blog-details-body h4 {
  color: inherit;
}

.rich-content p,
.rich-content ul,
.rich-content ol,
.rich-content blockquote,
.rich-content h2,
.rich-content h3,
.rich-content h4 {
  margin: 0 0 0.85rem;
}

.rich-content p:last-child,
.rich-content ul:last-child,
.rich-content ol:last-child,
.rich-content blockquote:last-child,
.rich-content h2:last-child,
.rich-content h3:last-child,
.rich-content h4:last-child {
  margin-bottom: 0;
}

.rich-content ul,
.rich-content ol {
  padding-left: 1.2rem;
}

.rich-content a {
  color: #0074dd;
  text-decoration: underline;
}

.rich-content blockquote {
  border-left: 3px solid rgba(15, 33, 79, 0.2);
  padding-left: 0.85rem;
}

.blog-details-back-wrap {
  margin-top: 1.25rem;
}

/* Contact Section */
.contact-section {
  padding: 6rem 0;
  background: #081738;
  color: #ffffff;
}

.contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.contact-info h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 2rem;
  line-height: 1.2;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 3rem;
}

.contact-details p {
  font-size: 1rem;
  color: #cbd5e1;
}

.contact-link {
  color: inherit;
  text-decoration: none;
  cursor: pointer;
  transition: color 0.2s ease, opacity 0.2s ease;
}

.contact-link:hover {
  color: #5eb3f6;
  opacity: 1;
}

html.dark-mode .contact-link:hover {
  color: #00c1ff;
}

.contact-details strong {
  color: #ffffff;
  margin-right: 0.5rem;
}

.trusted-by {
  margin-top: 2rem;
}

.trusted-by p {
  font-size: 0.9rem;
  color: #94a3b8;
  margin-bottom: 1rem;
}

.trusted-logos {
  display: flex;
  gap: 1.5rem;
  align-items: center;
  flex-wrap: wrap;
}

.trusted-logos img {
  height: 30px;
  opacity: 0.8;
  transition: opacity 0.2s ease;
}

.trusted-logos img:hover {
  opacity: 1;
}

.contact-form-wrapper {
  width: 100%;
}

.contact-form-card {
  background: #ffffff;
  padding: 2.5rem;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.contact-form-card h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: #00d9ff;
  margin-bottom: 1.5rem;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.contact-form input,
.contact-form textarea {
  padding: 0.875rem 1rem;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  font-size: 0.95rem;
  font-family: inherit;
  transition: border-color 0.2s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: #2f73f2;
}

.contact-form textarea {
  resize: vertical;
}

.review-form label {
  display: block;
  margin-bottom: 0.35rem;
  font-weight: 500;
  color: #00d9ff;
}

.review-form input,
.review-form textarea,
.review-form select {
  width: 100%;
  padding: 0.875rem 1rem;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  font-size: 0.95rem;
  font-family: inherit;
  transition: border-color 0.2s ease;
}

.review-form input:focus,
.review-form textarea:focus,
.review-form select:focus {
  outline: none;
  border-color: #2f73f2;
}

.review-form .form-row-phone {
  grid-template-columns: 1fr 1fr;
}

.review-form .form-group--other {
  margin-top: 0.75rem;
}

.review-form .form-group--other label {
  margin-bottom: 0.35rem;
}

/* Review page: center hero and heading, spacing above footer */
.page-review .hero--center,
.page-review .hero--center h1,
.page-review .hero--center p {
  text-align: center;
}

.page-review .section-heading--center,
.page-review .section--review > h2 {
  text-align: center;
}

.page-review .section--review {
  padding-bottom: 4rem;
}

.page-review .review-form {
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.page-review .review-alert {
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 1.5rem;
}

.page-review .form-submit-wrap {
  margin-top: 0.5rem;
  margin-bottom: 2rem;
}

.review-form .required {
  color: #dc2626;
}

/* Inner page hero/section (about, contact, review-us) */
.hero {
  padding: 2.5rem 0 1.5rem;
}

.hero--services-center {
  text-align: center;
}

.hero--services-center p {
  max-width: 900px;
  margin: 0.6rem auto 0;
}

.section {
  padding: 1.5rem 0;
}

.section--contact-info-center {
  text-align: center;
}

.section--contact-info-center p {
  max-width: 900px;
  margin: 0.6rem auto 0;
}

.contact-info-list {
  list-style: none;
  margin-top: 1rem;
  padding: 0;
}

.section--contact-form-center .container > h2 {
  text-align: center;
}

.legal-page-section {
  padding: 0.5rem 0 4rem;
  background: #f8fafc;
}

.legal-page-wrap {
  max-width: 980px;
  margin: 0 auto;
}

.legal-page-card {
  background: #ffffff;
  border: 1px solid rgba(15, 33, 79, 0.12);
  border-radius: 14px;
  box-shadow: 0 8px 24px rgba(15, 33, 79, 0.08);
  padding: 1.6rem 1.5rem;
}

.legal-page-card h2 {
  margin: 0 0 0.75rem;
  color: #00d9ff;
  font-size: 1.45rem;
}

.legal-page-body {
  color: #547593;
  font-size: 0.98rem;
  line-height: 1.78;
  text-align: justify;
}

.page-review .hero--center {
  padding-top: 2rem;
}

/* Responsive: Review Us page */
@media (max-width: 768px) {
  .page-review .review-form {
    max-width: 100%;
  }

  .page-review .review-form .form-row-phone {
    grid-template-columns: 1fr;
  }

  .page-review .section--review {
    padding-bottom: 3rem;
  }
}

@media (max-width: 480px) {
  .page-review .hero--center h1 {
    font-size: 1.75rem;
  }

  .page-review .section--review > h2 {
    font-size: 1.35rem;
  }

  .container--review {
    padding-left: 1rem;
    padding-right: 1rem;
  }
}

.review-form .form-error {
  display: block;
  font-size: 0.85rem;
  color: #dc2626;
  margin-top: 0.25rem;
}

.checkbox-label {
  display: flex;
  align-items: start;
  gap: 0.75rem;
  font-size: 0.9rem;
  color: #547593;
  cursor: default;
}

.checkbox-label input[type="checkbox"] {
  margin-top: 0.25rem;
  cursor: pointer;
}

.checkbox-label span {
  cursor: default;
}

.checkbox-label .checkbox-link {
  color: #2f73f2;
  text-decoration: none;
  font-weight: 600;
  cursor: pointer;
  transition: color 0.2s ease;
}

.checkbox-label .checkbox-link:hover {
  color: #2563eb;
}

.btn-submit {
  padding: 1rem 2rem;
  background: #2f73f2;
  color: #ffffff;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.2s ease;
}

.btn-submit:hover {
  background: #2563eb;
}

/* Footer */
.footer {
  background: #0a1f3a;
  color: #ffffff;
  padding: 4rem 0 2rem;
}

.footer-content {
  max-width: 1350px;
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: 2fr 1fr 1.5fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.footer-logo .brand-logo {
  height: 40px !important;
  max-height: 40px !important;
  width: auto;
}

.footer-logo span {
  font-size: 1.5rem;
  font-weight: 600;
}

.footer-brand h3 {
  font-size: 1.75rem;
  font-weight: 700;
  color: #ffffff;
}

.btn-get-started {
  padding: 0.875rem 1.75rem;
  background: #2f73f2;
  color: #ffffff;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 600;
  width: fit-content;
  transition: background 0.2s ease;
}

.btn-get-started:hover {
  background: #2563eb;
}

.footer-support h4,
.footer-newsletter h4 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: #ffffff;
}

.footer-support p {
  font-size: 0.95rem;
  color: #cbd5e1;
  margin-bottom: 0.5rem;
}

.social-links {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}

.social-links a {
  transition: opacity 0.2s ease;
}

.social-links a:hover {
  opacity: 0.7;
}

.footer-newsletter p {
  font-size: 0.9rem;
  color: #cbd5e1;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.newsletter-form {
  display: flex;
  gap: 0.5rem;
}

.newsletter-form input {
  flex: 1;
  padding: 0.875rem 1rem;
  border: 1px solid #1e3a5f;
  border-radius: 8px;
  background: #0a1f3a;
  color: #ffffff;
  font-size: 0.95rem;
}

.newsletter-form input::placeholder {
  color: #94a3b8;
}

.newsletter-form input:focus {
  outline: none;
  border-color: #2f73f2;
}

.btn-subscribe {
  padding: 0.875rem 1.5rem;
  background: #2f73f2;
  color: #ffffff;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s ease;
}

.btn-subscribe:hover {
  background: #2563eb;
}

.footer-bottom {
  max-width: 1350px;
  margin: 0 auto;
  padding: 2rem;
  border-top: 1px solid #1e3a5f;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-bottom p {
  font-size: 0.9rem;
  color: #94a3b8;
}

.footer-nav {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.footer-nav a {
  color: #cbd5e1;
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.2s ease;
}

.footer-nav a:hover {
  color: #ffffff;
}

.btn-get-template {
  padding: 0.75rem 1.5rem;
  background: #2f73f2;
  color: #ffffff;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.9rem;
  transition: background 0.2s ease;
}

.btn-get-template:hover {
  background: #2563eb;
}

/* Responsive Design */
@media (min-width: 1550px) {
  .container,
  .navbar,
  .footer-content,
  .footer-bottom {
    max-width: 1920px;
  }
}

@media (max-width: 1024px) {
  body.page-home-future .future-home-shell > #home-core {
    min-height: auto;
  }

  body.page-home-future #home-core.hero-section {
    padding: 1rem 0 1.4rem !important;
  }

  body.page-home-future #home-core .hero-text h1 {
    font-size: clamp(1.95rem, 8.8vw, 4rem) !important;
  }

  body.page-home-future #home-core .hero-content {
    grid-template-columns: 1fr;
  }

  body.page-home-future #home-core .hero-image {
    width: 100%;
    justify-self: stretch;
  }

  body.page-home-future #home-core .hero-image img {
    aspect-ratio: auto;
    height: auto;
    max-height: none;
    object-fit: cover;
  }
}

/* =========================================================
   Homepage spacing + stats cleanup (content-height sections)
   ========================================================= */
body.page-home-future .future-home-shell > section {
  min-height: auto !important;
  display: block !important;
}

body.page-home-future .stats-section {
  padding: 2.6rem 0 2.4rem !important;
}

body.page-home-future .stats-grid {
  align-items: start;
  gap: clamp(1.2rem, 2.4vw, 2.6rem);
}

body.page-home-future .stats-section .stat-item {
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
  backdrop-filter: none !important;
  border-radius: 0 !important;
  padding: 0 !important;
}

body.page-home-future .stats-section .stat-number {
  color: #00d9ff !important;
}

body.page-home-future .stats-section .stat-description {
  color: #9db3cf !important;
}

@media (max-width: 1024px) {
  body.page-home-future .stats-section {
    padding: 2.2rem 0 2rem !important;
  }
}




/* =========================================================
   Future Theme Baseline Restore (page-future)
   ========================================================= */
body.page-future {
  background: #02050d;
  color: #dfe8f7;
}

body.page-future .mv-scene {
  position: fixed;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
}

body.page-future .mv-scene-canvas,
body.page-future .mv-scene-grid,
body.page-future .mv-scene-vignette,
body.page-future .mv-scene-noise {
  position: absolute;
  inset: 0;
}

body.page-future .mv-scene-canvas {
  width: 100%;
  height: 100%;
  opacity: 0.88;
  mix-blend-mode: screen;
}

body.page-future .mv-scene-grid {
  background-image:
    linear-gradient(rgba(0, 232, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 232, 255, 0.04) 1px, transparent 1px);
  background-size: 84px 84px;
  opacity: 0.12;
}

body.page-future .mv-scene-vignette {
  background:
    radial-gradient(ellipse at center, rgba(1, 2, 7, 0) 28%, rgba(1, 2, 7, 0.42) 74%, rgba(1, 2, 7, 0.78) 100%),
    linear-gradient(180deg, rgba(1, 2, 7, 0.01), rgba(1, 2, 7, 0.36));
}

body.page-future .mv-scene-noise {
  background-image: radial-gradient(rgba(0, 232, 255, 0.2) 0.8px, transparent 0.8px);
  background-size: 3px 3px;
  opacity: 0.06;
  mix-blend-mode: screen;
}

body.page-future header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.92), rgba(0, 0, 0, 0.42));
  border-bottom: 1px solid rgba(0, 232, 255, 0.16);
  backdrop-filter: blur(10px);
}

body.page-future main,
body.page-future footer {
  position: relative;
  z-index: 5;
}

body.page-future .navbar-links a,
body.page-future .mobile-nav-links a {
  color: rgba(235, 242, 255, 0.62);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.67rem;
}

body.page-future .navbar-links a.active,
body.page-future .navbar-links a:hover,
body.page-future .mobile-nav-links a.active,
body.page-future .mobile-nav-links a:hover {
  color: #00d9ff;
}

body.page-home-future .future-home-shell {
  position: relative;
  isolation: isolate;
}

body.page-home-future .future-grid-overlay {
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(rgba(151, 173, 214, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(151, 173, 214, 0.06) 1px, transparent 1px);
  background-size: 44px 44px;
  opacity: 0.1;
  pointer-events: none;
  z-index: 0;
}

body.page-home-future .future-glow,
body.page-home-future .future-hud-frame,
body.page-home-future .future-hud-tag {
  display: none;
}

body.page-home-future .hero-section,
body.page-home-future .stats-section,
body.page-home-future .features-section,
body.page-home-future .services-section,
body.page-home-future .client-stories-section,
body.page-home-future .blog-section,
body.page-home-future .contact-section {
  position: relative;
  z-index: 2;
  background: transparent;
  border-top: 1px solid rgba(123, 147, 189, 0.16);
}

body.page-home-future #home-core .hero-text h1,
body.page-home-future .features-text h2,
body.page-home-future .section-title,
body.page-home-future .blog-header h2,
body.page-home-future .section-header h2,
body.page-home-future .contact-info h2 {
  color: #dde3ed;
}

body.page-home-future .future-gradient-word {
  background: linear-gradient(180deg, #f8fcff 18%, #00f2ff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

body.page-home-future #home-core .hero-text p,
body.page-home-future .features-text p,
body.page-home-future .service-description,
body.page-home-future .service-description p,
body.page-home-future .blog-date,
body.page-home-future .blog-excerpt,
body.page-home-future .review-story-message,
body.page-home-future .stat-description,
body.page-home-future .contact-details p,
body.page-home-future .checkbox-label,
body.page-home-future .help-text span {
  color: #9db3cf;
}

body.page-home-future .service-card,
body.page-home-future .blog-card,
body.page-home-future .review-story-card-inner,
body.page-home-future .contact-form-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(151, 173, 214, 0.2);
  box-shadow: 0 14px 34px rgba(1, 6, 18, 0.52);
  backdrop-filter: blur(16px);
}

body.page-home-future .btn-primary,
body.page-home-future .btn-services-more,
body.page-home-future .btn-submit,
body.page-home-future .btn-subscribe,
body.page-home-future .btn-get-started,
body.page-home-future .btn-get-template {
  border-radius: 999px;
  background: rgba(0, 217, 255, 0.16);
  border: 1px solid rgba(0, 217, 255, 0.44);
  color: #ffffff;
}

body.page-home-future .btn-primary:hover,
body.page-home-future .btn-services-more:hover,
body.page-home-future .btn-submit:hover,
body.page-home-future .btn-subscribe:hover,
body.page-home-future .btn-get-started:hover,
body.page-home-future .btn-get-template:hover {
  background: rgba(0, 217, 255, 0.24);
  border-color: rgba(0, 217, 255, 0.72);
}

@media (max-width: 1024px) {
  body.page-future .mv-scene-grid {
    background-size: 58px 58px;
    opacity: 0.08;
  }

  body.page-home-future .future-grid-overlay {
    opacity: 0.08;
  }
}

@media (max-width: 768px) {
  body.page-future .mv-scene-noise {
    opacity: 0.035;
  }
}

/* Hero square photo fit (desktop) */
body.page-home-future .future-home-shell > #home-core {
  min-height: auto;
  display: block;
}

body.page-home-future #home-core.hero-section {
  padding: 1.45rem 0 1.8rem !important;
}

body.page-home-future #home-core .hero-content {
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 2.25rem;
  align-items: center;
}

body.page-home-future #home-core .hero-image {
  width: min(100%, 600px);
  aspect-ratio: 1 / 1;
  justify-self: end;
}

body.page-home-future #home-core .hero-image img {
  width: 100%;
  height: 100%;
  max-height: none;
  object-fit: cover;
  object-position: center;
  display: block;
}


/* =========================================================
   Emergency Visual Restore (after unintended cascade changes)
   ========================================================= */
html,
body {
  overflow-x: hidden;
}

body.page-future .fx-ui-hud,
body.page-future .fx-scroll-indicator,
body.page-future .future-hud-frame,
body.page-future .future-hud-tag {
  display: none !important;
}

body.page-future header {
  margin-top: 0 !important;
}

body.page-future main,
body.page-future .future-home-shell {
  overflow-x: clip;
}

body.page-future .navbar-logo,
body.page-future .navbar-logo .brand-main {
  color: #e5eefc !important;
}

body.page-future .navbar-logo .brand-accent {
  color: #00d9ff !important;
}

body.page-home-future .badge {
  background: rgba(0, 217, 255, 0.08) !important;
  border: 1px solid rgba(0, 217, 255, 0.26) !important;
}

body.page-home-future .badge-icon {
  background: #00d9ff !important;
  color: #031025 !important;
}

body.page-home-future .badge span:last-child {
  color: #9fdcff !important;
}

body.page-future .hero,
body.page-future .section,
body.page-future .legal-page-section,
body.page-future .about-timeline-page {
  background: transparent !important;
}

body.page-future:not(.page-home-future) .service-card,
body.page-future:not(.page-home-future) .blog-card,
body.page-future:not(.page-home-future) .timeline-card,
body.page-future:not(.page-home-future) .legal-page-card {
  background: rgba(255, 255, 255, 0.03) !important;
  border: 1px solid rgba(151, 173, 214, 0.22) !important;
  box-shadow: 0 14px 34px rgba(1, 6, 18, 0.5) !important;
  backdrop-filter: blur(14px);
}

body.page-home-future .service-card h3,
body.page-home-future .service-link,
body.page-future:not(.page-home-future) .service-card h3,
body.page-future:not(.page-home-future) .blog-content h3 {
  color: #e7f1ff !important;
}

body.page-home-future .service-link,
body.page-future:not(.page-home-future) .service-link,
body.page-future:not(.page-home-future) .blog-title-link,
body.page-future:not(.page-home-future) .view-more {
  color: #00d9ff !important;
}

body.page-future:not(.page-home-future) .service-description,
body.page-future:not(.page-home-future) .legal-page-body,
body.page-future:not(.page-home-future) .timeline-card-body {
  color: #9db3cf !important;
}

body.page-future .about-timeline::before {
  background: linear-gradient(180deg, rgba(167, 188, 221, 0.42), rgba(167, 188, 221, 0.12)) !important;
}

body.page-future .timeline-dot {
  background: #00c1ff !important;
  border-color: #102247 !important;
  box-shadow: 0 0 0 3px rgba(0, 193, 255, 0.32) !important;
}

body.page-future .timeline-year {
  color: #fff !important;
  font-weight: 700;
}

body.page-future .contact-page-form {
  max-width: 720px;
  margin: 0 auto;
  padding: 1.15rem 1rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

body.page-future .contact-page-field {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

body.page-future .contact-page-label {
  color: #dfe8f7;
  font-weight: 600;
}

body.page-future .contact-page-input {
  width: 100%;
  padding: 0.82rem 0.95rem;
  border-radius: 9px;
  background: rgba(2, 8, 22, 0.9) !important;
  border: 1px solid rgba(151, 173, 214, 0.38) !important;
  color: #ebf3ff !important;
}

body.page-future .contact-page-input::placeholder {
  color: #9fb3cf !important;
}

body.page-future .contact-page-input:focus {
  border-color: rgba(0, 217, 255, 0.7) !important;
  box-shadow: 0 0 0 3px rgba(0, 217, 255, 0.15) !important;
  outline: none;
}

body.page-future .contact-page-submit {
  width: fit-content;
}

/* =========================================================
   Brand + Footer visual restore (requested)
   ========================================================= */
body.page-future .navbar-logo,
body.page-future .footer-logo {
  font-family: 'Space Grotesk', 'Segoe UI', sans-serif !important;
}

body.page-future .navbar-logo {
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-weight: 700;
}

body.page-future .footer-logo {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-weight: 700;
}

body.page-future .navbar-logo .brand-main,
body.page-future .footer-logo .brand-main {
  color: #e6eefc !important;
}

body.page-future .navbar-logo .brand-accent,
body.page-future .footer-logo .brand-accent {
  color: #00d9ff !important;
}

body.page-future .footer {
  background: rgba(1, 3, 9, 0.96) !important;
  border-top: 1px solid rgba(0, 232, 255, 0.16) !important;
}

body.page-future .footer-bottom {
  border-top-color: rgba(0, 232, 255, 0.14) !important;
}

/* Header lock (frontend only) */
body.page-future header {
  position: fixed !important;
  top: 0 !important;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 1400 !important;
}

body.page-future main {
  padding-top: 5rem !important;
}

/* Footer button parity with homepage footer */
body.page-future .footer .btn-get-started,
body.page-future .footer .btn-subscribe,
body.page-future .footer .btn-get-template {
  border-radius: 999px !important;
  background: rgba(0, 217, 255, 0.16) !important;
  border: 1px solid rgba(0, 217, 255, 0.44) !important;
  color: #ffffff !important;
}

body.page-future .footer .btn-get-started:hover,
body.page-future .footer .btn-subscribe:hover,
body.page-future .footer .btn-get-template:hover {
  background: rgba(0, 217, 255, 0.24) !important;
  border-color: rgba(0, 217, 255, 0.72) !important;
}

/* Services page background parity with future theme */
body.page-future:not(.page-home-future) .services-section {
  background: transparent !important;
}

/* Unified card hover polish: services + blogs (home/page) */
body.page-future .service-card,
body.page-future .blog-card {
  position: relative;
  transition:
    transform 0.34s cubic-bezier(0.22, 0.61, 0.36, 1),
    border-color 0.34s cubic-bezier(0.22, 0.61, 0.36, 1),
    box-shadow 0.34s cubic-bezier(0.22, 0.61, 0.36, 1),
    background-color 0.34s cubic-bezier(0.22, 0.61, 0.36, 1);
}

body.page-future .service-card::after,
body.page-future .blog-card::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  background:
    linear-gradient(145deg, rgba(0, 217, 255, 0.14), rgba(0, 217, 255, 0) 42%),
    radial-gradient(circle at 88% 12%, rgba(0, 217, 255, 0.2), rgba(0, 217, 255, 0) 42%);
  opacity: 0;
  transition: opacity 0.34s ease;
}

body.page-future .service-card:hover,
body.page-future .service-card:focus-within,
body.page-future .blog-card:hover,
body.page-future .blog-card:focus-within {
  transform: translateY(-8px);
  border-color: rgba(0, 217, 255, 0.5) !important;
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.36), 0 0 0 1px rgba(0, 217, 255, 0.18) inset !important;
}

body.page-future .service-card:hover::after,
body.page-future .service-card:focus-within::after,
body.page-future .blog-card:hover::after,
body.page-future .blog-card:focus-within::after {
  opacity: 1;
}

body.page-future .service-card .service-cover-photo img,
body.page-future .service-card .service-icon img,
body.page-future .blog-card .blog-cover-link img {
  transition: transform 0.44s cubic-bezier(0.22, 0.61, 0.36, 1), filter 0.44s ease;
}

body.page-future .service-card:hover .service-cover-photo img,
body.page-future .service-card:focus-within .service-cover-photo img,
body.page-future .service-card:hover .service-icon img,
body.page-future .service-card:focus-within .service-icon img,
body.page-future .blog-card:hover .blog-cover-link img,
body.page-future .blog-card:focus-within .blog-cover-link img {
  transform: scale(1.045);
  filter: saturate(1.08) brightness(1.04);
}

body.page-future .service-card h3,
body.page-future .blog-card .blog-title-link,
body.page-future .service-card .service-link {
  transition: color 0.28s ease, text-shadow 0.28s ease;
}

body.page-future .service-card:hover h3,
body.page-future .service-card:focus-within h3,
body.page-future .blog-card:hover .blog-title-link,
body.page-future .blog-card:focus-within .blog-title-link {
  color: #e9fbff !important;
  text-shadow: 0 0 16px rgba(0, 217, 255, 0.26);
}

body.page-future .service-card:hover .service-link,
body.page-future .service-card:focus-within .service-link,
body.page-future .blog-card:hover .blog-title-link,
body.page-future .blog-card:focus-within .blog-title-link {
  color: #57ecff !important;
}

@media (hover: none), (prefers-reduced-motion: reduce) {
  body.page-future .service-card,
  body.page-future .blog-card {
    transition-duration: 0s !important;
    transform: none !important;
  }

  body.page-future .service-card::after,
  body.page-future .blog-card::after {
    display: none;
  }

  body.page-future .service-card .service-cover-photo img,
  body.page-future .service-card .service-icon img,
  body.page-future .blog-card .blog-cover-link img {
    transition-duration: 0s !important;
    transform: none !important;
    filter: none !important;
  }
}

/* Blog text + details card parity */
body.page-future:not(.page-home-future) .blog-content h3,
body.page-future:not(.page-home-future) .blog-title-link,
body.page-future:not(.page-home-future) .blog-date,
body.page-future:not(.page-home-future) .blog-excerpt,
body.page-future .blog-details-meta,
body.page-future .blog-details-body {
  color: #9db3cf !important;
}

body.page-future .blog-details-card {
  background: rgba(255, 255, 255, 0.03) !important;
  border: 1px solid rgba(151, 173, 214, 0.22) !important;
  box-shadow: 0 14px 34px rgba(1, 6, 18, 0.5) !important;
  backdrop-filter: blur(14px);
}
/* Blog publish form styling parity with contact form (frontend) */
body.page-future .blog-publish-panel {
  background: transparent !important;
  border: 1px solid rgba(151, 173, 214, 0.22) !important;
  border-radius: 12px;
  backdrop-filter: blur(8px);
}

body.page-future .blog-publish-group label {
  color: #dfe8f7 !important;
  font-weight: 600;
}

body.page-future .blog-publish-group input,
body.page-future .blog-publish-group textarea {
  background: rgba(2, 8, 22, 0.9) !important;
  border: 1px solid rgba(151, 173, 214, 0.38) !important;
  color: #ebf3ff !important;
  border-radius: 9px;
}

body.page-future .blog-publish-group input::placeholder,
body.page-future .blog-publish-group textarea::placeholder {
  color: #9fb3cf !important;
}

body.page-future .blog-publish-group input:focus,
body.page-future .blog-publish-group textarea:focus {
  border-color: rgba(0, 217, 255, 0.7) !important;
  box-shadow: 0 0 0 3px rgba(0, 217, 255, 0.15) !important;
}

body.page-future .blog-publish-note {
  color: #9fb3cf !important;
}

body.page-future .blog-publish-group input[type='file'] {
  padding: 0.72rem 0.85rem;
}

body.page-future .blog-publish-group input[type='file']::file-selector-button {
  margin-right: 0.7rem;
  border: 1px solid rgba(151, 173, 214, 0.4);
  background: rgba(10, 24, 51, 0.9);
  color: #e6f1ff;
  border-radius: 8px;
  padding: 0.42rem 0.75rem;
  cursor: pointer;
}

body.page-future .blog-publish-group input[type='file']::file-selector-button:hover {
  border-color: rgba(0, 217, 255, 0.6);
  background: rgba(13, 33, 66, 0.95);
}

body.page-future .blog-publish-panel .rich-editor {
  background: rgba(2, 8, 22, 0.9) !important;
  border: 1px solid rgba(151, 173, 214, 0.38) !important;
  border-radius: 9px;
}

body.page-future .blog-publish-panel .rich-editor-toolbar {
  background: rgba(8, 18, 40, 0.95) !important;
  border-bottom: 1px solid rgba(151, 173, 214, 0.25) !important;
}

body.page-future .blog-publish-panel .rich-editor-btn,
body.page-future .blog-publish-panel .rich-editor-select {
  background: rgba(10, 24, 51, 0.92) !important;
  color: #e6f1ff !important;
  border-color: rgba(151, 173, 214, 0.34) !important;
}

body.page-future .blog-publish-panel .rich-editor-btn:hover,
body.page-future .blog-publish-panel .rich-editor-select:hover {
  border-color: rgba(0, 217, 255, 0.58) !important;
}

body.page-future .blog-publish-panel .rich-editor-select:focus,
body.page-future .blog-publish-panel .rich-editor-btn.is-active {
  border-color: rgba(0, 217, 255, 0.72) !important;
  box-shadow: 0 0 0 3px rgba(0, 217, 255, 0.15) !important;
  color: #9ff4ff !important;
}

body.page-future .blog-publish-panel .rich-editor-area {
  color: #ebf3ff !important;
}

body.page-future .blog-publish-panel .rich-editor-area[contenteditable='true']:empty::before {
  color: #9fb3cf !important;
}

/* Review form styling parity with blog publish/contact-style fields */
body.page-future .page-review .review-form {
  background: transparent !important;
  border: 1px solid rgba(151, 173, 214, 0.22) !important;
  border-radius: 12px;
  padding: 1.15rem 1rem;
  backdrop-filter: blur(8px);
}

body.page-future .page-review .review-form label {
  color: #dfe8f7 !important;
  font-weight: 600;
}

body.page-future .page-review .review-form input,
body.page-future .page-review .review-form textarea,
body.page-future .page-review .review-form select {
  background: rgba(2, 8, 22, 0.9) !important;
  border: 1px solid rgba(151, 173, 214, 0.38) !important;
  color: #ebf3ff !important;
  border-radius: 9px;
}

body.page-future .page-review .review-form input::placeholder,
body.page-future .page-review .review-form textarea::placeholder {
  color: #9fb3cf !important;
}

body.page-future .page-review .review-form input:focus,
body.page-future .page-review .review-form textarea:focus,
body.page-future .page-review .review-form select:focus {
  border-color: rgba(0, 217, 255, 0.7) !important;
  box-shadow: 0 0 0 3px rgba(0, 217, 255, 0.15) !important;
  outline: none;
}

body.page-future .page-review .review-form select option {
  background: #07162f;
  color: #e6f1ff;
}

body.page-future .page-review .review-form .form-error {
  color: #fca5a5;
}






/* =========================================================
   Responsive restore (home + shared mobile nav/footer behavior)
   ========================================================= */
@media (max-width: 1024px) {
  .navbar {
    padding: 0 1rem;
  }

  .navbar-links {
    display: none;
  }

  .navbar-actions .dark-mode-toggle {
    display: none;
  }

  .navbar-hamburger {
    display: inline-flex;
  }

  .hero-content,
  .features-content,
  .contact-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .stats-grid,
  .services-grid,
  .portfolio-grid,
  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .reviews-carousel {
    --reviews-per-view: 2;
    --review-card-max-width: 420px;
  }

  .review-story-card-inner {
    min-height: 335px;
  }

  .review-story-author strong {
    font-size: 1.7rem;
  }

  body.page-home-future #home-core .hero-image {
    width: 100% !important;
    aspect-ratio: auto !important;
    justify-self: stretch;
  }

  body.page-home-future #home-core .hero-image img {
    height: auto !important;
    aspect-ratio: auto !important;
    max-height: none;
    object-fit: cover;
  }
}

@media (max-width: 768px) {
  .container {
    padding: 0 1rem;
  }
  
.navbar {
    height: 4.5rem;
    min-height: 4.5rem;
    max-height: 4.5rem;
  }

  .navbar-logo {
    font-size: 1.3rem;
  }

  .hero-text h1 {
    font-size: 2.5rem;
  }

  .stats-grid,
  .services-grid,
  .portfolio-grid,
  .blog-grid {
    grid-template-columns: 1fr;
  }

  .services-grid-desktop,
  .services-more-wrap-desktop {
    display: none;
  }

  .services-carousel {
    display: block;
    max-width: 420px;
    margin: 0 auto;
    padding: 0 2.25rem;
  }

  .services-carousel-nav--prev {
    left: 0;
  }

  .services-carousel-nav--next {
    right: 0;
  }

  .services-empty-mobile {
    display: block;
    max-width: 420px;
    margin: 0 auto;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .blog-page-head {
    flex-direction: column;
    align-items: flex-start;
  }

  .blog-publish-grid {
    grid-template-columns: 1fr;
  }

  .blog-grid--home.blog-grid--centered {
    grid-template-columns: 1fr;
    justify-content: stretch;
  }

  /* Home mobile: show only the latest (first) blog card */
  .blog-grid--home > .blog-card:nth-child(n + 2) {
    display: none;
  }

  .blog-details-content {
    padding: 1.1rem;
  }

  .reviews-carousel {
    --reviews-per-view: 1;
    --review-card-max-width: none;
  }

  .review-story-card-inner {
    min-height: 300px;
    padding: 1.85rem 1.3rem 1.35rem;
    border-radius: 18px;
  }

  .review-story-card-inner::before {
    content: none;
  }

  .review-story-author strong {
    font-size: 1.45rem;
  }

  .review-story-author span {
    font-size: 0.95rem;
  }
}

/* =========================================================
   Mobile polish fix: hero order/shape + futuristic menu + services controls
   ========================================================= */
@media (max-width: 1024px) {
  body.page-future .navbar-hamburger {
    background: rgba(3, 9, 22, 0.9) !important;
    border: 1px solid rgba(157, 179, 207, 0.38) !important;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04), 0 8px 18px rgba(0, 0, 0, 0.35) !important;
    backdrop-filter: blur(10px);
  }

  body.page-future .navbar-hamburger span {
    background: #f4f7ff !important;
  }

  body.page-future .navbar-hamburger:hover {
    background: rgba(6, 15, 34, 0.95) !important;
    border-color: rgba(0, 217, 255, 0.58) !important;
  }

  body.page-future .mobile-nav-backdrop {
    background: rgba(1, 5, 14, 0.66) !important;
  }

  body.page-future .mobile-nav-drawer {
    background: rgba(2, 8, 20, 0.96) !important;
    border-left: 1px solid rgba(0, 217, 255, 0.2) !important;
    box-shadow: -16px 0 36px rgba(0, 0, 0, 0.5) !important;
  }

  body.page-future .mobile-nav-close {
    background: rgba(7, 18, 40, 0.95) !important;
    border: 1px solid rgba(157, 179, 207, 0.34) !important;
    color: #e8f2ff !important;
  }

  body.page-future .mobile-nav-close:hover {
    background: rgba(10, 25, 52, 0.98) !important;
    border-color: rgba(0, 217, 255, 0.58) !important;
    color: #9ff4ff !important;
  }

  body.page-future .mobile-nav-links a {
    color: #9db3cf !important;
    font-size: 1rem !important;
    letter-spacing: 0.08em !important;
    text-transform: uppercase !important;
    transition: color 0.24s ease, background 0.24s ease !important;
  }

  body.page-future .mobile-nav-links a:hover,
  body.page-future .mobile-nav-links a.active {
    color: #00d9ff !important;
    background: rgba(0, 217, 255, 0.08) !important;
  }
}

@media (max-width: 768px) {
  body.page-home-future #home-core .hero-content {
    grid-template-columns: 1fr !important;
    gap: 1.2rem !important;
    align-items: start;
  }

  body.page-home-future #home-core .hero-text {
    order: 1;
  }

  body.page-home-future #home-core .hero-image {
    order: 2;
    width: 100% !important;
    max-width: none !important;
    aspect-ratio: auto !important;
    justify-self: stretch;
    margin-top: 0.15rem;
  }

  body.page-home-future #home-core .hero-image img {
    width: 100%;
    height: auto !important;
    aspect-ratio: auto !important;
    object-fit: cover;
    border-radius: 16px;
    border: 1px solid rgba(151, 173, 214, 0.24);
    box-shadow: 0 14px 28px rgba(2, 8, 22, 0.45);
    display: block;
  }

  body.page-home-future .services-mobile-more-link {
    background: rgba(255, 255, 255, 0.03) !important;
    border: 1px solid rgba(151, 173, 214, 0.22) !important;
    box-shadow: 0 14px 34px rgba(1, 6, 18, 0.5) !important;
    backdrop-filter: blur(14px);
    color: #9db3cf !important;
  }

  body.page-home-future .services-mobile-more-arrow {
    width: 54px;
    height: 54px;
    border-radius: 999px;
    border: 1px solid rgba(0, 217, 255, 0.46);
    background: rgba(0, 217, 255, 0.12);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #b9f4ff;
    margin-bottom: 0.15rem;
  }

  body.page-home-future .services-mobile-more-arrow svg {
    width: 24px;
    height: 24px;
    display: block;
  }

  body.page-home-future .services-mobile-more-text {
    color: #9fdcff;
    letter-spacing: 0.01em;
  }

  body.page-home-future .services-carousel-nav {
    background: rgba(5, 13, 30, 0.62) !important;
    border: 1px solid rgba(151, 173, 214, 0.34) !important;
    color: #e7f1ff !important;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.35) !important;
    backdrop-filter: blur(10px);
  }

  body.page-home-future .services-carousel-nav:hover:not(:disabled) {
    background: rgba(7, 18, 40, 0.78) !important;
    border-color: rgba(0, 217, 255, 0.58) !important;
    color: #9ff4ff !important;
  }
}
