@import url("https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&family=Sora:wght@400;500;600;700;800&display=swap");
:root {
  --primary: #ff7a00;
  --primary-rgb: 255,122,0;
  --primary-dark: #d16200;
  --primary-soft: rgba(255,122,0,0.14);
  --dark: #0b0e13;
  --dark-2: #13171f;
  --dark-3: #1c222d;
  --light: #f4f5f7;
  --light-2: #e9eaee;
  --white: #ffffff;
  --heading-color: #0b0e13;
  --text-color: #49525e;
  --border-color: #e1e4e9;
  --muted-contrast: #919aa5; 
  --success: #18a058;
  --danger: #e5484d;
  --warning: #f5a524;
  --info: #3b82f6;
  --shadow-sm: 0 8px 20px rgba(11,14,19,0.06);
  --shadow-md: 0 18px 45px rgba(11,14,19,0.08);
  --shadow-lg: 0 32px 80px rgba(11,14,19,0.12);
  --radius-sm: 8px;
  --radius: 14px;
  --radius-lg: 24px;
  --radius-pill: 50rem;
  --font-sans: "Inter",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,sans-serif;
  --font-display: "Sora","Inter",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,sans-serif;
  --transition-base: all 0.25s ease;
  --transition-slow: all 0.45s ease;
  --space-3xl: clamp(68px,9vw,128px);
  --space-2xl: clamp(54px,7vw,92px);
  --space-xl: clamp(44px,6vw,78px);
  --space-lg: clamp(34px,5vw,58px);
  --space-md: 32px;
  --space-sm: 18px;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: var(--font-sans);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text-color);
  background-color: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
h1,h2,h3,h4,h5,h6,.h1,.h2,.h3,.h4,.h5,.h6 {
  font-family: var(--font-display);
  color: var(--heading-color);
  font-weight: 700;
  line-height: 1.22;
  letter-spacing: -0.018em;
}
p {
  color: var(--text-color);
}
a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition-base);
}
figure,img {
  max-width: 100%;
  height: auto;
}
section {
  position: relative;
}
main section {
  overflow: hidden;
}
.text-center {
  text-align: center;
}
.text-primary {
  color: var(--primary)!important;
}
.text-white {
  color: var(--white)!important;
}
.bg-dark {
  background-color: var(--dark)!important;
}
.bg-soft {
  background-color: var(--primary-soft)!important;
}
.section-pad {
  padding-top: var(--space-2xl);
  padding-bottom: var(--space-2xl);
}
.section-pad-sm {
  padding-top: var(--space-xl);
  padding-bottom: var(--space-xl);
}
.container, .container-fluid {
  position: relative;
  z-index: 2;
}
.overflow-none {
  overflow: hidden;
}
.row-gap-y {
  row-gap: 28px;
}
.vertical-center {
  display: flex;
  align-items: center;
}
.heading-section {
  margin-bottom: clamp(28px,4vw,42px);
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--primary);
  background: var(--primary-soft);
  padding: 8px 16px;
  border-radius: 50px;
  margin-bottom: 16px;
}
.eyebrow::before {
  content: "";
  display: inline-block;
  width: 22px;
  height: 2px;
  background: var(--primary);
  border-radius: 2px;
}
.section-title {
  font-size: clamp(1.8rem,4vw,2.9rem);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 14px;
}
.section-lead {
  max-width: 680px;
  font-size: 1.06rem;
  line-height: 1.7;
  color: var(--text-color);
}
.section-lead.br-muted {
  color: #aeb7c2;
}
.divider-yes {
  width: 58px;
  height: 4px;
  background: linear-gradient(90deg,var(--primary),rgba(255,122,0,0.3));
  border-radius: 4px;
  margin-top: 20px;
  margin-bottom: 18px;
}
.divider-yes.center {
  margin-left: auto;
  margin-right: auto;
}
.btn {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  border-radius: var(--radius-pill);
  padding: 13px 30px;
  line-height: 1.4;
  transition: transform 0.22s ease,box-shadow 0.25s ease,background-color 0.25s ease,border-color 0.25s ease,color 0.25s ease;
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.btn:active {
  transform: scale(0.97);
}
.btn-primary {
  background: var(--primary);
  border: 1px solid var(--primary);
  color: var(--white)!important;
}
.btn-primary:hover {
  background: var(--primary-dark);
  border-color: var(--primary-dark);
  color: var(--white)!important;
  transform: translateY(-4px);
  box-shadow: 0 14px 28px rgba(255,122,0,0.24);
}
.btn-outline-light {
  background: transparent;
  border: 1px solid rgba(255,255,255,0.55);
  color: var(--white)!important;
}
.btn-outline-light:hover {
  background: rgba(255,255,255,0.15);
  border-color: var(--white);
  color: var(--white)!important;
  transform: translateY(-4px);
}
.btn-outline-dark {
  background: transparent;
  border: 1px solid var(--heading-color);
  color: var(--heading-color)!important;
}
.btn-outline-dark:hover {
  background: var(--heading-color);
  color: var(--white)!important;
  transform: translateY(-4px);
}
.btn-white {
  background: var(--white);
  border: 1px solid var(--white);
  color: var(--heading-color)!important;
}
.btn-white:hover {
  background: rgba(255,255,255,0.88);
  border-color: rgba(255,255,255,0.88);
  transform: translateY(-4px);
  box-shadow: 0 12px 26px rgba(0,0,0,0.2);
}
.btn-light {
  background: var(--light-2);
  color: var(--heading-color)!important;
  border: 1px solid transparent;
}
.btn-light:hover {
  background: var(--light);
  color: var(--heading-color)!important;
  transform: translateY(-3px);
}
.icon-circle {
  flex: 0 0 auto;
  width: 56px;
  height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  color: var(--primary);
  background: var(--primary-soft);
  border-radius: var(--radius);
  transition: var(--transition-slow);
}
.icon-circle.lg {
  width: 70px;
  height: 70px;
  font-size: 1.7rem;
}
.card-service {
  background: var(--white);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform 0.5s ease,box-shadow 0.5s ease,border-color 0.5s ease;
  height: 100%;
}
.card-service:hover {
  transform: translateY(-12px);
  box-shadow: var(--shadow-md);
  border-color: rgba(255,122,0,0.6);
}
.card-service .card-body {
  padding: 28px 26px;
}
.card-service .card-title {
  font-size: 1.35rem;
  margin-bottom: 10px;
}
.card-service .card-desc {
  margin-bottom: 14px;
}
.card-image {
  overflow: hidden;
  position: relative;
}
.card-image img {
  width: 100%;
  height: 230px;
  object-fit: cover;
  transition: transform 0.8s ease;
}
.card-service:hover .card-image img {
  transform: scale(1.08);
}
.price-tag {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.5rem;
  color: var(--primary);
}
.pricing-table {
  background: var(--white);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 100%;
  transition: var(--transition-base);
}
.pricing-table:hover {
  box-shadow: var(--shadow-md);
  border-color: transparent;
}
.pricing-table .pricing-body {
  padding: 34px 30px;
}
.pricing-table .price-name {
  font-size: 1.15rem;
  font-weight: 700;
  font-family: var(--font-display);
  color: var(--heading-color);
}
.pricing-table .price-value {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--heading-color);
  margin: 12px 0;
}
.pricing-table .price-value small {
  font-size: 1rem;
  font-weight: 600;
  color: #7b8490;
}
.pricing-table .feature-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.pricing-table .feature-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 7px 0;
  font-size: 0.95rem;
}
.pricing-table .feature-list li i {
  color: var(--primary);
  font-size: 0.85rem;
  flex: 0 0 auto;
}
.features-checklist {
  list-style: none;
  padding: 0;
  margin: 0;
}
.features-checklist li {
  display: flex;
  gap: 14px;
  padding: 8px 0;
  font-size: 1rem;
  color: var(--text-color);
}
.features-checklist li i {
  color: var(--primary);
  font-size: 1.1rem;
  margin-top: 3px;
}
.form-label {
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--heading-color);
  margin-bottom: 8px;
}
.form-control {
  border: 1px solid #cdd5df;
  padding: 13px 16px;
  border-radius: 10px;
  font-size: 0.95rem;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  background-color: var(--white);
}
.form-control:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(255,122,0,0.15);
}
textarea.form-control {
  min-height: 130px;
}
.form-text-field {
  margin-bottom: 18px;
}
.cookie-consent {
  position: fixed;
  bottom: 18px;
  left: 50%;
  transform: translateX(-50%) translateY(120%);
  z-index: 9999;
  width: calc(100% - 28px);
  max-width: 700px;
  background: var(--dark-2);
  border-radius: var(--radius);
  box-shadow: 0 26px 60px rgba(0,0,0,0.35);
  padding: 22px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  border: 1px solid rgba(255,255,255,0.08);
  transition: transform 0.6s cubic-bezier(0.16,1,0.3,1);
}
.cookie-consent.show {
  transform: translateX(-50%) translateY(0);
}
.cookie-consent .cookie-description {
  flex: 1;
  min-width: 240px;
}
.cookie-consent .cookie-description h6 {
  color: var(--white);
  font-weight: 600;
  font-size: 1.05rem;
  margin-bottom: 4px;
}
.cookie-consent .cookie-description p {
  color: #b4bdc8;
  font-size: 0.88rem;
  line-height: 1.5;
  margin-bottom: 0;
}
.cookie-consent .cookie-btns {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.btn-cookie {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.84rem;
  border-radius: 40px;
  padding: 9px 18px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: var(--transition-base);
}
.btn-cookie-accept {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}
.btn-cookie-accept:hover {
  background: var(--primary-dark);
  border-color: var(--primary-dark);
}
.btn-cookie-decline {
  background: transparent;
  color: #c6ced6;
  border-color: rgba(255,255,255,0.25);
}
.btn-cookie-decline:hover {
  background: rgba(255,255,255,0.08);
  color: var(--white);
}
.btn-cookie a {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.toast-notification {
  position: fixed;
  top: 18px;
  right: 18px;
  z-index: 10000;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  max-width: 380px;
  background: var(--heading-color);
  border-radius: var(--radius);
  box-shadow: 0 24px 50px rgba(11,14,19,0.4);
  padding: 14px 18px;
  transform: translateX(120%);
  transition: transform 0.5s cubic-bezier(0.16,1,0.3,1);
}
.toast-notification.show {
  transform: translateX(0);
}
.toast-notification .toast-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 0.8rem;
  flex: 0 0 auto;
  margin-top: 3px;
}
.toast-notification.success .toast-icon {
  background: var(--success);
}
.toast-notification.error .toast-icon {
  background: var(--danger);
}
.toast-notification .toast-msg {
  color: var(--white);
  font-size: 0.92rem;
  line-height: 1.45;
  margin: 0;
  word-break: break-word;
}
.btn-back-to-top {
  position: fixed;
  right: 18px;
  bottom: 20px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--heading-color);
  color: var(--white);
  border: none;
  box-shadow: 0 10px 28px rgba(11,14,19,0.24);
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  cursor: pointer;
  z-index: 9000;
  transition: all 0.35s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.btn-back-to-top.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.btn-back-to-top:hover {
  background: var(--primary);
  color: var(--white);
}
.navbar {
  padding-top: 14px;
  padding-bottom: 14px;
  transition: all 0.4s ease;
  z-index: 999;
}
.navbar .navbar-brand {
  font-family: var(--font-display);
  font-weight: 800;
  display: inline-flex;
  align-items: center;
}
.navbar .nav-link {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 9px 14px!important;
  transition: color 0.25s ease;
}
.navbar .nav-link:hover,.navbar .nav-link.active {
  color: var(--primary)!important;
}
.navbar-cta {
  display: flex;
  align-items: center;
  gap: 4px;
}
.hero-section {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
}
.hero-section .carousel-item {
  min-height: 90vh;
  background-size: cover;
  background-position: center;
  position: relative;
}
.hero-section .carousel-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg,rgba(8,11,16,0.88) 0%,rgba(8,11,16,0.55) 55%,rgba(8,11,16,0.2) 100%);
  z-index: 1;
}
.hero-inner {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  z-index: 5;
  padding: 120px 0 90px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: rgba(255,122,0,0.18);
  border: 1px solid rgba(255,122,0,0.4);
  color: #ffb571;
  border-radius: 50px;
  padding: 6px 15px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  margin-bottom: 24px;
}
.hero-title {
  font-size: clamp(2.5rem,6vw,4.6rem);
  color: var(--white);
  font-weight: 800;
  line-height: 1.06;
}
.hero-subtitle {
  color: #d4dae2;
  font-size: 1.12rem;
  max-width: 590px;
  margin: 20px 0 30px;
  line-height: 1.68;
}
.btn-line {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--white);
  font-size: 0.92rem;
  letter-spacing: 0.02em;
  text-decoration: none;
  transition: gap 0.3s ease;
}
.btn-line:hover {
  color: #ffb571;
  gap: 14px;
}
.btn-line i {
  color: var(--primary);
}
.hero-stat-card {
  display: flex;
  align-items: center;
  gap: 14px;
  background: rgba(13,17,23,0.65);
  backdrop-filter: blur(16px);
  border-radius: var(--radius-lg);
  padding: 25px;
}
.carousel-indicators {
  position: absolute;
  right: 4%;
  left: auto;
  bottom: 70px;
  margin: 0;
  width: auto;
  flex-direction: column;
  gap: 6px;
  z-index: 8;
}
.carousel-indicators [data-bs-target] {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255,255,255,0.45);
  border: 0;
  margin: 0;
  opacity: 1;
  transition: all 0.3s ease;
}
.carousel-indicators .active {
  background: var(--primary);
  width: 30px;
  border-radius: 10px;
}
.stat-card-glass {
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: var(--radius);
  padding: 22px;
}
.stat-number {
  font-size: 2rem;
  font-weight: 700;
  color: var(--white);
  font-family: var(--font-display);
}
.stat-label {
  font-size: 0.87rem;
  color: #cfd5dc;
}
.marquee-safe {
  background: var(--dark);
  color: #aab2bd;
}
.bg-midnight {
  background-color: var(--dark);
}
.bg-midnight .section-title {
  color: var(--white);
}
.bg-midnight p {
  color: #b9c2cd;
}
.feature-item {
  border: 1px solid #232a36;
  border-radius: var(--radius-lg);
  padding: 30px 26px;
  background: var(--dark-2);
  height: 100%;
  transition: all 0.45s cubic-bezier(0.21,0.65,0.36,1);
}
.feature-item:hover {
  border-color: rgba(255,122,0,0.35);
  transform: translateY(-8px);
  box-shadow: 0 20px 46px rgba(0,0,0,0.3);
}
.feature-item .feature-icon {
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  background: rgba(255,122,0,0.12);
  font-size: 1.5rem;
  color: var(--primary);
  margin-bottom: 20px;
}
.feature-item h3,.feature-item h4 {
  font-size: 1.2rem;
  color: var(--white);
  margin-bottom: 9px;
}
.feature-item p {
  color: #a3adbb;
  font-size: 0.95rem;
  margin-bottom: 0;
}
.process-card {
  text-align: center;
  padding: 34px 22px;
  position: relative;
  background: var(--light);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  height: 100%;
}
.process-card:hover {
  border-color: rgba(255,122,0,0.5);
}
.process-step {
  position: relative;
  width: 50px;
  height: 50px;
  margin: 0 auto 18px;
  background: var(--primary-soft);
  color: var(--primary);
  font-weight: 700;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
}
.process-step::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 100%;
  width: calc(100% + 14px);
  height: 2px;
  background: linear-gradient(90deg,rgba(255,122,0,0.7),rgba(255,122,0,0.1));
  transform: translateY(-50%);
  display: block;
}
@media (max-width: 768px) {
  .process-step::after {
    display: none;
  }
}
.process-card:last-of-type .process-step::after {
  display: none;
}
.accordion {
  --bs-accordion-border-color: var(--border-color);
  --bs-accordion-border-width: 1px;
  --bs-accordion-border-radius: var(--radius);
  --bs-accordion-inner-border-radius: var(--radius);
  background: transparent;
}
.accordion-item {
  border: 1px solid var(--border-color)!important;
  border-radius: var(--radius)!important;
  background: var(--white);
  margin-bottom: 10px;
  overflow: hidden;
}
.accordion-button {
  background-color: transparent;
  color: var(--heading-color);
  font-weight: 600;
  font-family: var(--font-display);
  font-size: 1rem;
  padding: 18px 22px;
}
.accordion-button:not(.collapsed) {
  color: var(--primary);
  background: rgba(255,122,0,0.04);
  box-shadow: none;
}
.accordion-button:focus {
  box-shadow: 0 0 0 3px rgba(255,122,0,0.1);
}
.accordion-body {
  color: var(--text-color);
  padding: 4px 22px 22px;
  line-height: 1.7;
}
.map-laptop {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 2px solid rgba(255,255,255,0.32);
  z-index: 5;
  box-shadow: 0 28px 80px rgba(0,0,0,0.26);
}
.map-laptop iframe {
  width: 100%;
  height: 470px;
  border: 0;
  display: block;
  filter: grayscale(0.2) contrast(1.05);
}
.img-hero {
  filter: grayscale(0.18);
}
.review-card {
  background: var(--white);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 30px;
  height: 100%;
  transition: all 0.35s ease;
}
.review-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-md);
  border-color: rgba(255,122,0,0.3);
}
.review-stars {
  color: var(--warning);
  font-size: 0.95rem;
}
.review-text {
  font-size: 1rem;
  line-height: 1.7;
  color: #4b5563;
  margin: 16px 0 20px;
}
.reviewer-info {
  display: flex;
  align-items: center;
  gap: 12px;
}
.reviewer-info img {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  object-fit: cover;
}
.reviewer-info .fw-semibold {
  font-family: var(--font-display);
  font-size: 0.9rem;
  color: var(--heading-color);
}
.reviewer-info .text-ms {
  font-size: 0.82rem;
  color: #6d7681;
}
.brand-col-item {
  text-align: center;
  padding: 15px;
  opacity: 0.82;
  filter: grayscale(100%);
  transition: all 0.35s ease;
  font-weight: 700;
  font-family: var(--font-display);
  color: #8b95a1;
  font-size: 1.1rem;
}
.brand-col-item:hover {
  opacity: 1;
  filter: grayscale(0);
  color: var(--primary);
}
.contact-connector {
  background: var(--light);
  border-radius: var(--radius);
  padding: 22px 18px;
  text-align: center;
  transition: all 0.3s ease;
}
.contact-connector:hover {
  background: var(--white);
  box-shadow: var(--shadow-sm);
}
.contact-loop-icon {
  width: 48px;
  height: 48px;
  border-radius: 11px;
  background: var(--primary-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--primary);
  margin: 0 auto 12px;
}
.footer-cta-card {
  background: linear-gradient(135deg,var(--primary) 0%,#ff9a3d 100%);
  border-radius: var(--radius-lg);
  color: var(--white);
  padding: 46px 40px;
  overflow: hidden;
}
.footer-cta-card .btn {
  box-shadow: 0 8px 24px rgba(0,0,0,0.14);
}
footer {
  background: var(--dark);
}
.footer-title {
  font-family: var(--font-display);
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 16px;
}
.footer-link {
  color: #9faab9;
  font-size: 0.94rem;
  display: block;
  padding: 4px 0;
  transition: color 0.25s ease;
}
.footer-link:hover {
  color: var(--primary);
}
.footer-bottom-border {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 21px;
  margin-top: 20px;
}
.footer-info-row {
  color: #9aa4b3;
}
.footer-info-row strong {
  color: var(--white);
}
.hero-quote-card {
  background: var(--dark-2);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius-lg);
  padding: 30px;
}
.clients-logo-row {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
  align-items: center;
}
.brand-tag {
  color: #aaafb9;
  font-size: 1.2rem;
  font-weight: 600;
  font-family: var(--font-display);
}
.team-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
}
.btn-back-to-top i {
  pointer-events: none;
}
.card-lessons {
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--white);
  transition: var(--transition-slow);
}
.card-lessons:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-md);
}
.card-lessons .card-img {
  overflow: hidden;
}
.card-lessons img {
  height: 240px;
  width: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}
.card-lessons:hover img {
  transform: scale(1.1);
}
.card-lessons .content {
  padding: 25px;
}
.card-lessons .date-badge {
  background: var(--primary-soft);
  color: var(--primary);
  font-size: 0.74rem;
  font-weight: 600;
  padding: 5px 13px;
  border-radius: 50px;
  letter-spacing: 0.5px;
}
.value-stat-num {
  font-size: 2.6rem;
  background: linear-gradient(135deg,var(--primary) 0%,#ff9d3e 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-family: var(--font-display);
  font-weight: 800;
}
.value-stat-name {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--heading-color);
}
.card-vision {
  background: rgba(255,122,0,0.08);
  border-left: 3px solid var(--primary);
  border-radius: var(--radius);
  padding: 20px 24px;
}
.card-vision p {
  margin: 0;
}
.social-btn-box {
  width: 32px;
  height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  color: var(--white)!important;
  font-size: 0.8rem;
  transition: var(--transition-base);
}
.social-btn-box:hover {
  background: var(--primary);
  transform: translateY(-3px);
}
.terms-list {
  list-style: none;
  padding: 0;
  margin: 0;
  columns: 2;
  column-gap: 26px;
}
@media (max-width: 576px) {
  .terms-list {
    columns: 1;
  }
  .terms-list li {
    padding: 6px 0!important;
  }
}
.terms-list li {
  padding: 5px 0;
  color: var(--text-color);
  display: flex;
  align-items: center;
  gap: 8px;
}
.terms-list li i {
  color: var(--primary);
}
.dark-card {
  background: var(--dark-2);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius-lg);
  padding: 32px;
}
.dark-card h3,.dark-card h4 {
  color: var(--white);
}
.dark-card p {
  color: #a6b0bc;
}
@media (max-width: 991px) {
  .navbar-brand {
    order: 0;
  }
  .navbar-collapse {
    background: var(--dark-2);
    border-radius: 0 0 var(--radius-lg) var(--radius-lg);
    padding: 14px 20px 20px;
    margin-top: 8px;
  }
  .navbar .nav-link {
    color: var(--white)!important;
    font-size: 0.85rem;
    padding: 6px 4px!important;
  }
  .hero-inner {
    padding: 120px 0 80px;
  }
  .hero-title {
    font-size: clamp(2rem,8vw,2.8rem);
  }
  .cookie-consent {
    flex-direction: column;
    align-items: flex-start;
  }
  .btn-back-to-top {
    right: 14px;
    bottom: 14px;
  }
}
@media (max-width: 768px) {
  .hero-section, .hero-section .carousel-item {
    min-height: 80vh;
  }
  .hero-section .carousel-item::after {
    background: linear-gradient(180deg,rgba(8,11,16,0.65) 0%,rgba(8,11,16,0.92) 100%);
  }
  .section-title {
    font-size: 1.75rem;
  }
  .pricing-table .price-value {
    font-size: 1.9rem;
  }
  .icon-circle.lg {
    width: 56px;height: 56px;font-size:1.4rem;
  }
  .footer-cta-card {
    padding: 34px 22px;
  }
  .hero-stat-card {
    padding: 17px;
  }
}
@media (max-width: 576px) {
  .reviewer-info img {
    width: 38px;height: 38px;
  }
}
#preloader-styled {
  display: none;
}
.fw-bold {
  color: var(--heading-color);
}
.lh-sm {
  line-height: 1.1!important;
}
.fancy-underline {
  background-image: linear-gradient(120deg, rgba(255,122,0,0.28) 0%, rgba(255,122,0,0.28) 100%);
  background-repeat: no-repeat;
  background-position: 0 88%;
  background-size: 100% 0.46em;
  padding: 0 0.1em 0.06em;
}
.gradient-text {
  background-image: linear-gradient(90deg,var(--primary),#ffa550);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.fade-in-start {
  opacity: 0;
  transition: opacity 0.5s ease,transform 0.5s ease;
}
.fade-in-start.aos-animate {
  opacity: 1;
}
img { 
  background-color: transparent; 
}
/* ===== Accessibility / contrast overrides ===== */
/* Dark sections previously had no dark background, making white text unreadable. */
.section-dark { background: #0b0e13 !important; }
.about-hero { background-color: #0b0e13 !important; }

/* Give eyebrow labels a solid dark pill + white text so they meet WCAG contrast
   on light, dark and image-based backgrounds alike. */
.eyebrow {
  background: #161d2b !important;
  color: #ffffff !important;
}
.eyebrow::before { background: #ffb571 !important; }

/* Services dropdown toggle rendered as a button needs nav-link styling. */
.navbar .dropdown > button.nav-link {
  background: transparent;
  border: 0;
  box-shadow: none;
  color: inherit;
}
@media (max-width: 991px) {
  .navbar .dropdown > button.nav-link { color: #ffffff !important; }
}

/* ===== Home page QA fixes ===== */
:root{--accent:#ff7a00;--accent-2:#ff7a00;}

/* Give the accent / nav buttons a solid orange background with white text */
.btn-accent,.btn-nav{background:#ff7a00;border:1px solid #ff7a00;color:#ffffff!important;}
.btn-accent:hover,.btn-accent:focus,.btn-nav:hover,.btn-nav:focus{background:#c75d00;border-color:#c75d00;color:#ffffff!important;}

/* Stats rendered on the dark section must be light for contrast */
.stat-big{color:#ffffff!important;}

/* Open accordion header must be readable on light background */
.accordion-button:not(.collapsed){color:#0b0e13!important;}
.accordion-button:not(.collapsed)::after{filter:none;}

/* Always-visible static cookie consent bar */
.site-cookie-bar{position:fixed;left:16px;right:16px;bottom:16px;z-index:2147483000;display:flex;align-items:center;justify-content:space-between;gap:18px;max-width:1120px;margin:auto;padding:16px 20px;border-radius:12px;background:#171717;color:#fff;box-shadow:0 10px 35px rgba(0,0,0,.4);font:15px/1.5 Inter,Arial,sans-serif;}
.site-cookie-bar .site-cookie-text{flex:1;color:#e6e9ee;}
.site-cookie-bar a{color:#ffb571;text-decoration:underline;text-underline-offset:2px;}
.site-cookie-bar .site-cookie-actions{display:flex;gap:10px;flex-shrink:0;}
.site-cookie-bar .btn-cookie-decline{background:transparent;color:#fff;}
.site-cookie-bar .btn-cookie-accept{background:#ff7a00;color:#fff;border-color:#ff7a00;}
@media(max-width:640px){.site-cookie-bar{flex-direction:column;align-items:stretch;}.site-cookie-bar .site-cookie-actions{width:100%;}.site-cookie-bar .site-cookie-actions button{flex:1;}}

/* Contacts page: give image/photo hero a solid dark fallback so white text always
   keeps adequate contrast even before the background image has loaded. */
.hero {
  background-color: #0b0e13;
}

/* Dark informational band used on the contacts page (white text on navy). */
.bg-blue-dark {
  background-color: #12263f;
  color: #ffffff;
}
.bg-blue-dark h1, .bg-blue-dark h2, .bg-blue-dark h3,
.bg-blue-dark h4, .bg-blue-dark h5, .bg-blue-dark h6 {
  color: #ffffff;
}

/* Thank-you page QA fixes */
/* Make step numbers readable on light card backgrounds (bootstrap .text-warning is too light) */
.step-number.text-warning { color: #0b0e13 !important; }
