/* GateAI - Main Stylesheet */
:root {
  /* New Vibrant Color Palette */
  --primary: #007bff; /* A brighter blue */
  --primary-dark: #0056b3;
  --primary-light: #66b3ff;
  --secondary: #8E44AD; /* A vibrant purple */
  --secondary-light: #BB8FCE;
  --accent: #F1C40F; /* A bright yellow */
  --dark: #2c3e50; /* A softer, modern dark */
  --light: #ecf0f1; /* A light, clean grey */
  --white: #ffffff;
  --light-gray: #f2f5f7;
  --medium-gray: #bdc3c7;
  --dark-gray: #34495e;
  
  /* Typography */
  --heading-font: 'Montserrat', sans-serif;
  --body-font: 'Open Sans', sans-serif;
}

/* Base Styles */
body {
  font-family: var(--body-font);
  color: var(--dark);
  line-height: 1.6;
  background-color: var(--white);
}

/* Layout helpers (base.html) */
.site-main {
  width: 100%;
}

/* Default centered container inside main */
.site-container {
  width: 100%;
}

/* Allow full-width sections inside the default .container wrapper:
   Use: <section class="full-bleed ..."><div class="container">...</div></section> */
.full-bleed {
  position: relative;
  left: 50%;
  right: 50%;
  width: 100vw;
  margin-left: -50vw;
  margin-right: -50vw;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--heading-font);
  font-weight: 700;
  margin-bottom: 1rem;
  line-height: 1.3;
}

p {
  margin-bottom: 1.5rem;
}

/* Bootstrap Overrides */
.bg-primary { 
  background: linear-gradient(135deg, var(--primary), var(--primary-dark)) !important;
}

.bg-dark {
  background: linear-gradient(to right, #1a1a2e, #16213e) !important;
}

.text-primary {
  color: var(--primary) !important;
}

.btn {
  border-radius: 0.375rem;
  padding: 0.625rem 1.25rem;
  font-weight: 600;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-size: 0.875rem;
}

.btn-lg {
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  border: none;
  box-shadow: 0 4px 6px rgba(0, 86, 179, 0.2);
}

.btn-primary:hover, .btn-primary:focus {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  transform: translateY(-2px);
  box-shadow: 0 7px 14px rgba(0, 86, 179, 0.3);
}

.btn-outline-primary {
  color: var(--primary);
  border-color: var(--primary);
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.btn-outline-primary:hover, .btn-outline-primary:focus {
  color: var(--white);
  background-color: var(--primary);
  border-color: var(--primary);
  transform: translateY(-2px);
}

.btn-light {
  background-color: var(--white);
  border-color: var(--light);
  color: var(--primary);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.btn-light:hover, .btn-light:focus {
  background-color: var(--light);
  transform: translateY(-2px);
  box-shadow: 0 7px 14px rgba(0, 0, 0, 0.15);
  color: var(--primary-dark);
}

.btn-outline-light {
  color: var(--white);
  border-color: var(--white);
  position: relative;
  z-index: 1;
}

.btn-outline-light:hover, .btn-outline-light:focus {
  color: var(--primary);
  background-color: var(--white);
  border-color: var(--white);
  transform: translateY(-2px);
}

/* Header Styling (glass / new design match) */
.header {
  position: relative;
  background: rgba(10, 14, 28, 0.55);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.header::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 18% 25%, rgba(255,255,255,0.10) 0%, rgba(255,255,255,0) 45%),
    radial-gradient(circle at 85% 10%, rgba(241,196,15,0.14) 0%, rgba(241,196,15,0) 42%),
    radial-gradient(circle at 85% 85%, rgba(142,68,173,0.16) 0%, rgba(142,68,173,0) 48%);
  pointer-events: none;
  opacity: 0.9;
}

.header .navbar {
  position: relative;
  z-index: 1;
}

/* Header: two-row layout (desktop) */
.header .header-top {
  padding: 0.45rem 0;
}

.header .header-bottom {
  width: 100%;
}

@media (min-width: 992px) {
  .header .header-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.10);
    padding: 0.5rem 0;
  }
}

.navbar-brand {
  font-family: var(--heading-font);
  font-weight: 800;
  font-size: 1.4rem;
  letter-spacing: 0.02em;
}

.navbar-dark .navbar-nav .nav-link {
  color: rgba(255, 255, 255, 0.82);
  font-weight: 700;
  padding: 0.6rem 0.9rem;
  transition: all 0.25s ease;
  position: relative;
}

.navbar-dark .navbar-nav .nav-link:hover,
.navbar-dark .navbar-nav .nav-link.active {
  color: var(--white);
}

.navbar-dark .navbar-nav .nav-link::after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  bottom: 0.15rem;
  left: 0.9rem;
  background-color: var(--primary-light);
  transition: all 0.25s ease;
  border-radius: 999px;
  opacity: 0.95;
}

.navbar-dark .navbar-nav .nav-link:hover::after,
.navbar-dark .navbar-nav .nav-link.active::after {
  width: calc(100% - 1.8rem);
}

.navbar-dark .navbar-toggler {
  border-color: rgba(255, 255, 255, 0.25);
}

.navbar-dark .navbar-toggler:focus {
  box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.22);
}

/* Offcanvas (mobile) */
.header .offcanvas.text-bg-dark {
  background: rgba(10, 14, 28, 0.86) !important;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-left: 1px solid rgba(255, 255, 255, 0.10);
}

.header .offcanvas .offcanvas-header {
  border-bottom: 1px solid rgba(255, 255, 255, 0.10);
}

.header .offcanvas .offcanvas-title {
  font-family: var(--heading-font);
  letter-spacing: 0.02em;
}

.header .navbar-cta .btn {
  box-shadow: 0 10px 22px rgba(0, 86, 179, 0.25);
}

.header .nav-phone {
  opacity: 0.92;
  padding: 0.35rem 0.1rem;
}

.header .nav-phone:hover {
  opacity: 1;
  color: var(--white);
}

/* Mobile/tablet layout inside offcanvas */
@media (max-width: 991.98px) {
  .header .offcanvas-body {
    padding-top: 0.75rem;
  }

  .header .navbar-nav {
    text-align: center;
    margin-bottom: 0.75rem;
  }

  .header .navbar-nav .nav-link {
    padding: 0.85rem 0.75rem;
    border-radius: 0.75rem;
  }

  .header .navbar-nav .nav-link:hover,
  .header .navbar-nav .nav-link.active {
    background: rgba(255, 255, 255, 0.08);
  }

  .header .navbar-cta .btn {
    width: 100%;
  }

  .header .nav-phone {
    justify-content: center;
  }
}

/* Desktop: offcanvas behaves like normal navbar area */
@media (min-width: 992px) {
  .header .offcanvas.offcanvas-lg {
    background: transparent !important;
    border-left: 0;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }

  .header .offcanvas.offcanvas-lg .offcanvas-header {
    display: none;
  }

  .header .offcanvas.offcanvas-lg .offcanvas-body {
    padding: 0;
  }
}

/* Hero Section */
.hero {
  background-image: linear-gradient(135deg, rgba(0, 56, 179, 0.85), rgba(0, 29, 110, 0.95)), url('/static/images/hero-bg.jpg');
  background-size: cover;
  background-position: center;
  padding: 6rem 0;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -50%;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0) 70%);
}

.hero h1 {
  font-size: 2.75rem;
  margin-bottom: 1.5rem;
  line-height: 1.2;
  position: relative;
}

.hero .lead {
  font-size: 1.15rem;
  margin-bottom: 2rem;
}

/* Cards & Sections */
.card {
  border: none;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  border-radius: 0.5rem;
  overflow: hidden;
  height: 100%;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.card-title {
  font-weight: 700;
  font-size: 1.25rem;
  margin-bottom: 1rem;
  color: var(--primary);
}

.card-body {
  padding: 2rem;
}

.section-title {
  position: relative;
  padding-bottom: 1.5rem;
  margin-bottom: 3rem;
  text-align: center;
}

.section-title:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 3px;
  background: var(--primary);
}

/* How It Works Process Circles */
.process-step {
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: var(--white);
  font-size: 1.5rem;
  font-weight: 700;
  border-radius: 50%;
  box-shadow: 0 5px 15px rgba(0, 86, 179, 0.3);
  position: relative;
}

.process-step::before {
  content: "";
  position: absolute;
  top: -5px;
  left: -5px;
  right: -5px;
  bottom: -5px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary-light), var(--primary));
  opacity: 0.5;
  z-index: -1;
}

/* Quiz and Consultation Forms */
#quiz-container, #consultation-container {
  background: var(--white);
  border-radius: 0.5rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  padding: 2rem;
}

/* In the new home layout these containers are already wrapped in styled cards,
   so remove duplicated "card" visuals to avoid a double-shadow/double-padding look. */
.quiz-container #quiz-container,
.consultation-form-card #consultation-container {
  background: transparent;
  padding: 0;
  box-shadow: none;
  border-radius: 0;
}

/* Consultation form refinements */
.consultation-form .invalid-feedback {
  display: block;
}

.consultation-form .form-text {
  color: rgba(44, 62, 80, 0.72);
}

.form-control {
  border-radius: 0.375rem;
  padding: 0.75rem 1rem;
  border: 1px solid var(--medium-gray);
  transition: all 0.3s ease;
}

.form-control:focus {
  box-shadow: 0 0 0 3px rgba(0, 86, 179, 0.25);
  border-color: var(--primary);
}

.form-label {
  font-weight: 600;
  margin-bottom: 0.5rem;
}

/* Reviews Section */
.review-card {
  position: relative;
  padding: 2rem;
  background: var(--white);
  border-radius: 0.5rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  margin-bottom: 2rem;
}

.review-card::before {
  content: '"';
  position: absolute;
  top: 1rem;
  left: 1.5rem;
  font-size: 4rem;
  line-height: 1;
  color: var(--primary-light);
  opacity: 0.2;
  font-family: Georgia, serif;
}

.blockquote-footer {
  font-weight: 600;
  color: var(--primary);
}

/* Partner Logos */
.partner-logo {
  height: 100px;
  background-color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.5rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.partner-logo:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

/* Footer Styling */
footer {
  background: linear-gradient(to right, #1a1a2e, #16213e);
  color: var(--white);
  padding: 3rem 0;
}

footer h5 {
  color: var(--white);
  font-weight: 700;
  margin-bottom: 1.5rem;
}

footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

footer ul li {
  margin-bottom: 0.75rem;
}

footer a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: all 0.3s ease;
}

footer a:hover {
  color: var(--white);
  text-decoration: none;
}

.footer-contact {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
}

.footer-contact i {
  margin-right: 1rem;
  color: var(--primary-light);
}

/* Media Queries for Responsive Design */
@media (max-width: 992px) {
  .hero h1 {
    font-size: 2.25rem;
  }
  
  .navbar-brand {
    font-size: 1.25rem;
  }
}

@media (max-width: 768px) {
  .hero {
    padding: 4rem 0;
  }
  
  .hero h1 {
    font-size: 1.75rem;
  }
  
  .card-body {
    padding: 1.5rem;
  }
  
  .process-step {
    width: 60px;
    height: 60px;
    font-size: 1.25rem;
  }
}

@media (max-width: 576px) {
  .btn {
    display: block;
    width: 100%;
    margin-bottom: 0.5rem;
  }
  
  .hero h1 {
    font-size: 1.5rem;
  }
  
  .hero .lead {
    font-size: 1rem;
  }
}

/* Hero Section Badge Items */
.experience-badges {
  margin-top: 2rem;
}

.badge-item {
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 0.5rem;
  padding: 0.75rem;
  text-align: center;
  transition: all 0.3s ease;
}

.badge-item:hover {
  background-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-3px);
}

.badge-number {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
}

.badge-text {
  font-size: 0.85rem;
  opacity: 0.9;
}

/* Hero Image */
.hero-image-container {
  position: relative;
}

.hero-image {
  position: relative;
  width: 100%;
  height: 350px;
  background-color: rgba(0, 0, 0, 0.2);
  overflow: hidden;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
  border: 4px solid rgba(255, 255, 255, 0.1);
}

.placeholder-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(0, 86, 179, 0.4), rgba(0, 29, 110, 0.7));
  color: white;
  text-align: center;
  padding: 2rem;
}

/* Solution Cards */
.solution-card {
  border: none;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  border-radius: 0.5rem;
  overflow: hidden;
}

.solution-icon {
  margin-bottom: 1.5rem;
}

.icon-circle {
  width: 70px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: var(--light);
  margin-bottom: 1rem;
}

.icon-circle i {
  font-size: 1.75rem;
  color: var(--primary);
}

.bg-primary-light {
  background-color: rgba(0, 86, 179, 0.1);
}

.solution-features {
  list-style: none;
  padding-left: 0;
  margin-bottom: 2rem;
}

.solution-features li {
  position: relative;
  padding-left: 1.75rem;
  margin-bottom: 0.75rem;
  line-height: 1.4;
}

.solution-features li::before {
  content: "→";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--primary);
  font-weight: 700;
}

/* Process Cards */
.process-card {
  background-color: var(--white);
  border-radius: 0.5rem;
  padding: 2rem;
  height: 100%;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.process-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.process-title {
  margin: 1.5rem 0 1rem;
  font-weight: 700;
  color: var(--primary);
}

.process-icon {
  margin-top: 1.5rem;
  color: var(--primary-light);
  font-size: 2rem;
  opacity: 0.5;
}

/* Reviews Enhanced */
.review-card {
  transition: all 0.3s ease;
}

.review-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.review-stars {
  color: #ffc107;
  margin-bottom: 1rem;
}

.review-text {
  font-style: italic;
  margin-bottom: 1.5rem;
}

.review-author {
  display: flex;
  align-items: center;
  margin-top: 1.5rem;
}

.avatar {
  width: 50px;
  height: 50px;
  overflow: hidden;
  border-radius: 50%;
  margin-right: 1rem;
}

.avatar-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-weight: 700;
  font-size: 1.25rem;
  text-transform: uppercase;
}

.author-name {
  font-weight: 600;
  color: var(--primary);
}

.author-position {
  color: var(--secondary);
}

/* Partner Logo Enhancements */
.partner-logo {
  display: flex;
  flex-direction: column;
  padding: 1rem;
}

.partner-name {
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--dark);
}

.partner-location {
  font-size: 0.8rem;
  color: var(--secondary);
  display: block;
  text-align: center;
}

/* Quiz Section */
.quiz-container {
  border-radius: 0.75rem;
  overflow: hidden;
}

.quiz-features {
  margin-top: 2rem;
}

.quiz-feature {
  margin-bottom: 1rem;
  font-weight: 500;
}

/* Consultation Section */
.consultation-section {
  background: linear-gradient(135deg, #1a1a2e, #16213e);
  position: relative;
}

.consultation-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: radial-gradient(circle, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 20px 20px;
  opacity: 0.2;
  pointer-events: none;
}

.contact-item {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
  font-size: 1.1rem;
}

.contact-item i {
  color: var(--primary-light);
  font-size: 1.25rem;
  margin-right: 1rem;
}

.consultation-form-card {
  border-radius: 0.75rem;
  overflow: hidden;
}

/* =========================
   Home (new design)
   ========================= */

.page-home {
  position: relative;
}

/* Hero */
.hero.hero--new {
  padding: 5.5rem 0;
  border-radius: 0;
}

.hero.hero--new::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 20%, rgba(255,255,255,0.10) 0%, rgba(255,255,255,0) 45%),
    radial-gradient(circle at 80% 10%, rgba(241,196,15,0.12) 0%, rgba(241,196,15,0) 40%),
    radial-gradient(circle at 80% 80%, rgba(142,68,173,0.15) 0%, rgba(142,68,173,0) 45%);
  pointer-events: none;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.14);
  backdrop-filter: blur(6px);
  font-weight: 600;
  font-size: 0.9rem;
}

.hero-stats .stat-pill {
  background-color: rgba(255, 255, 255, 0.10);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 0.75rem;
  padding: 0.75rem;
  text-align: center;
  transition: all 0.25s ease;
}

.hero-stats .stat-pill:hover {
  background-color: rgba(255,255,255,0.16);
  transform: translateY(-2px);
}

.stat-value {
  font-size: 1.35rem;
  font-weight: 800;
  line-height: 1.1;
}

.stat-label {
  font-size: 0.85rem;
  opacity: 0.9;
}

.benefit-chip {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.7rem 0.85rem;
  border-radius: 0.75rem;
  background: rgba(255,255,255,0.10);
  border: 1px solid rgba(255,255,255,0.10);
  font-weight: 600;
}

.hero-media {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(0,0,0,0.35);
  backdrop-filter: blur(8px);
}

.hero-media-header {
  padding: 0.9rem 1rem;
  background: rgba(0,0,0,0.18);
  border-bottom: 1px solid rgba(255,255,255,0.12);
}

.hero-media-title {
  font-weight: 700;
}

.hero-media-status {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 0.75rem;
  opacity: 0.9;
}

.hero-media-status .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #2ecc71;
  box-shadow: 0 0 0 4px rgba(46, 204, 113, 0.18);
}

.hero-media-body {
  padding: 1.25rem;
}

.plate-preview {
  background: rgba(255,255,255,0.10);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 0.9rem;
  padding: 1rem;
}

.plate-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 0.6rem;
}

.plate-number {
  font-family: var(--heading-font);
  font-weight: 800;
  letter-spacing: 0.04em;
  font-size: 1.15rem;
}

.plate-result {
  font-weight: 700;
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(255,255,255,0.08);
  white-space: nowrap;
}

.plate-result.success {
  border-color: rgba(46, 204, 113, 0.45);
  background: rgba(46, 204, 113, 0.12);
}

.plate-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  opacity: 0.9;
  font-size: 0.9rem;
}

.hero-media-features {
  margin-top: 1rem;
  display: grid;
  gap: 0.6rem;
}

.feature-line {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 0.75rem;
  border-radius: 0.75rem;
  background: rgba(0,0,0,0.12);
  border: 1px solid rgba(255,255,255,0.10);
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.75rem;
}

.trust-item {
  text-align: center;
  padding: 0.75rem 0.5rem;
  border-radius: 0.75rem;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  font-weight: 800;
  letter-spacing: 0.02em;
}

/* Sections */
.section--muted {
  background: var(--light-gray);
}

.section--plain {
  background: var(--white);
}

.section-head h2 {
  letter-spacing: -0.02em;
}

/* Value cards */
.value-card {
  background: var(--white);
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: 1rem;
  padding: 1.25rem;
  box-shadow: 0 10px 30px rgba(0,0,0,0.06);
  transition: all 0.25s ease;
}

.value-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 45px rgba(0,0,0,0.10);
}

.value-icon {
  width: 54px;
  height: 54px;
  border-radius: 0.9rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.9rem;
  color: var(--primary);
  background: rgba(0, 86, 179, 0.10);
  border: 1px solid rgba(0, 86, 179, 0.12);
  font-size: 1.35rem;
}

.value-title {
  margin-bottom: 0.5rem;
  color: var(--dark);
  font-weight: 800;
}

.value-text {
  color: rgba(44,62,80,0.85);
}

/* Solution cards tweak */
.solution-card--new .card-title {
  color: var(--dark);
}

.solution-card--new .btn.btn-primary {
  box-shadow: 0 8px 18px rgba(0, 86, 179, 0.25);
}

/* CTA band */
.cta-band {
  border-radius: 1rem;
  padding: 1.25rem 1.25rem;
  background: linear-gradient(135deg, rgba(0,123,255,0.10), rgba(142,68,173,0.08));
  border: 1px solid rgba(0,0,0,0.06);
}

.cta-title {
  font-family: var(--heading-font);
  font-weight: 900;
  font-size: 1.25rem;
  margin-bottom: 0.15rem;
}

.cta-text {
  color: rgba(44,62,80,0.78);
}

/* Process cards tweak */
.process-card--new {
  border: 1px solid rgba(0,0,0,0.05);
}

/* Projects */
.project-card .card-img-top {
  width: 100%;
  height: 210px;
  object-fit: cover;
}

.project-card .card-body {
  padding: 1.5rem;
}

/* Reviews */
.review-card--new {
  border: 1px solid rgba(0,0,0,0.06);
  box-shadow: 0 10px 30px rgba(0,0,0,0.06);
}

/* Partner logos */
.partner-logo--new {
  height: 100%;
  min-height: 110px;
}

/* Mini FAQ */
.mini-faq-item {
  border-radius: 0.9rem;
  padding: 0.9rem 1rem;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  margin-bottom: 0.75rem;
}

.mini-faq-q {
  font-weight: 800;
  margin-bottom: 0.25rem;
}

.mini-faq-a {
  opacity: 0.9;
}

/* Utilities */
@media (min-width: 992px) {
  .w-lg-auto {
    width: auto !important;
  }
}

/* Enhanced Responsive Styles */
@media (max-width: 576px) {
  .hero-image {
    height: 250px;
    margin-top: 2rem;
  }
  
  .process-step {
    width: 60px;
    height: 60px;
    font-size: 1.25rem;
  }
  
  .badge-item {
    margin-bottom: 1rem;
  }
  
  .solution-icon .icon-circle {
    width: 60px;
    height: 60px;
  }
  
  .solution-icon .icon-circle i {
    font-size: 1.5rem;
  }
  
  .review-card {
    padding: 1.5rem;
  }
  
  .review-author {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .avatar {
    margin-bottom: 1rem;
  }
}