@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&family=Space+Grotesk:wght@400;500;600;700&display=swap');
:root {
  --bg-base: #07111F;
  --bg-surface: #0B1A2C;
  --bg-card: #10273D;
  --bg-soft: #15334A;
  --accent: #FF7A1A;
  --accent-hover: #E96309;
  --accent-soft: rgba(255, 122, 26, 0.14);
  --gold: #F4B860;
  --heading-color: #FFFFFF;
  --body-color: #C9D6E0;
  --border-soft: rgba(255, 255, 255, 0.08);
  --font-heading: 'Space Grotesk', sans-serif;
  --font-body: 'Inter', sans-serif;
  --shadow-lg: 0 24px 60px rgba(0, 0, 0, 0.35);
  --shadow-sm: 0 10px 28px rgba(0, 0, 0, 0.18);
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: var(--font-body);
  background-color: var(--bg-base);
  color: var(--body-color);
  line-height: 1.7;
  overflow-x: hidden;
}
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--heading-color);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
}
a {
  color: var(--accent);
  text-decoration: none;
  transition: color .3s ease;
}
a:hover {
  color: var(--accent-hover);
}
p {
  margin-bottom: 1.1rem;
}
img {
  max-width: 100%;
  height: auto;
}
section {
  position: relative;
}
.btn {
  border-radius: 8px;
  font-weight: 600;
  padding: 12px 30px;
  transition: all .3s ease;
  letter-spacing: 0.01em;
  text-transform: none;
}
.btn-accent {
  background: linear-gradient(120deg, var(--accent), var(--gold));
  color: #141414;
  border: none;
  box-shadow: 0 12px 30px rgba(255, 122, 26, 0.25);
}
.btn-accent:hover {
  background: linear-gradient(120deg, var(--accent-hover), var(--accent));
  color: #ffffff;
  box-shadow: 0 14px 34px rgba(255, 122, 26, 0.35);
}
.btn-outline-accent {
  border: 1px solid var(--accent);
  color: var(--accent);
  background: transparent;
}
.btn-outline-accent:hover {
  background: var(--accent);
  color: #141414;
}
.btn-white {
  background: #ffffff;
  color: #0B1A2C;
  border: 1px solid #ffffff;
}
.btn-white:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: #141414;
}
.text-gold {
  color: var(--gold) !important;
}
.text-accent {
  color: var(--accent) !important;
}
.bg-surface {
  background-color: var(--bg-surface) !important;
}
.bg-base {
  background-color: var(--bg-base) !important;
}
.bg-card {
  background-color: var(--bg-card) !important;
}
.sticky-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1080;
  background: rgba(7, 17, 31, 0.65);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border-soft);
  transition: background .4s ease, box-shadow .4s ease;
}
.sticky-header.scrolled {
  background: rgba(5, 12, 22, 0.92);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
}
.site-nav .nav-link {
  color: var(--body-color);
  font-weight: 500;
  padding: 8px 14px;
  position: relative;
}
.site-nav .nav-link:hover,
.site-nav .nav-link.active {
  color: #ffffff;
}
.site-nav .nav-link.active::after {
  content: "";
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--accent), var(--gold));
  border-radius: 2px;
}
.icon-smd {
  color: var(--accent);
  font-size: 1.1rem;
  margin-right: 8px;
}
.site-header-top {
  background: rgba(255, 255, 255, 0.04);
  border-bottom: 1px solid var(--border-soft);
  font-size: 0.95rem;
}
.site-header-top a {
  color: var(--body-color);
}
.site-header-top a:hover {
  color: var(--gold);
}
.hero-section {
  min-height: 92vh;
  display: flex;
  align-items: center;
  color: #ffffff;
  padding-top: 160px;
  padding-bottom: 60px;
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
}
.hero-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(5, 12, 22, 0.35) 20%, rgba(5, 12, 22, 0.75) 80%);
  pointer-events: none;
}
.hero-section .hero-content {
  position: relative;
  z-index: 2;
}
.hero-section h1 {
  font-size: clamp(2.6rem, 5vw, 4.5rem);
  font-weight: 800;
  line-height: 1.1;
}
.hero-section .lead {
  font-size: 1.25rem;
  max-width: 680px;
  color: #E2E8F0;
}
.badge-accent-soft {
  display: inline-block;
  background: var(--accent-soft);
  color: var(--gold);
  border: 1px solid rgba(255, 122, 26, 0.3);
  border-radius: 30px;
  padding: 6px 18px;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.carousel-arrow-custom {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 12px;
  z-index: 5;
}
.carousel-arrow-custom button {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  font-size: 1.1rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all .3s ease;
}
.carousel-arrow-custom button:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: #141414;
}
.scroll-indicator {
  position: absolute;
  bottom: 40px;
  right: 28px;
  z-index: 5;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: pulse-down 2s infinite;
}
.scroll-indicator i {
  color: #ffffff;
  font-size: 1.2rem;
}
@keyframes pulse-down {
  0% { transform: translateY(0); opacity: 1; }
  50% { transform: translateY(10px); opacity: 0.6; }
  100% { transform: translateY(0); opacity: 1; }
}
.section-spacer {
  padding: 100px 0;
}
.section-spacer-sm {
  padding: 60px 0;
}
.section-header .heading-label {
  display: block;
  color: var(--accent);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.85rem;
  margin-bottom: 12px;
}
.section-header h2 {
  font-size: clamp(2rem, 3.4vw, 3.2rem);
}
.section-header p {
  font-size: 1.1rem;
  color: #B0C0CD;
}
.icon-circle {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--accent-soft);
  border: 1px solid rgba(255, 122, 26, 0.2);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  color: var(--accent);
  margin-bottom: 16px;
}
.icon-square {
  width: 60px;
  height: 60px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--gold);
  transition: all .3s ease;
}
.card-premium {
  background: var(--bg-card);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 18px;
  padding: 28px;
  transition: all .4s ease;
  height: 100%;
}
.card-premium:hover {
  border-color: rgba(255, 122, 26, 0.35);
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.card-premium .feature-text {
  color: #D7E0E7;
}
.card-soft-light {
  background: rgba(255, 255, 255, 0.04);
  border-radius: 14px;
  padding: 24px;
  border: 1px solid var(--border-soft);
}
.stat-count {
  background: rgba(255, 255, 255, 0.03);
  border-radius: 16px;
  padding: 32px 18px;
  text-align: center;
  border-bottom: 2px solid var(--accent);
}
.counter-value {
  font-family: var(--font-heading);
  color: var(--heading-color);
  font-weight: 700;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1;
  display: block;
  margin-bottom: 8px;
}
.counter-value::after {
  content: "+";
  color: var(--accent);
  margin-left: 2px;
}
.counter-label {
  font-size: 0.95rem;
}
.img-card {
  position: relative;
  overflow: hidden;
  border-radius: 18px;
}
.img-card img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  transition: transform .6s ease;
}
.img-card:hover img {
  transform: scale(1.05) rotate(1deg);
}
.img-card-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 28px 20px;
  background: linear-gradient(to top, rgba(7, 17, 31, 0.86), transparent);
  color: #ffffff;
}
.img-card-overlay h5 {
  color: #ffffff;
  font-weight: 600;
  margin-bottom: 4px;
}
.img-card-overlay span {
  color: var(--gold);
  font-size: 0.9rem;
}
.work-process-step {
  position: relative;
  padding-left: 45px;
  margin-bottom: 26px;
}
.work-process-step::before {
  content: "";
  position: absolute;
  left: 18px;
  top: 8px;
  width: 1px;
  height: calc(100% - 20px);
  background: rgba(255, 122, 26, 0.25);
}
.work-process-step .step-index {
  position: absolute;
  left: 0;
  top: 0;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--accent);
  color: #141414;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  box-shadow: 0 0 0 4px rgba(255, 122, 26, 0.14);
}
.work-process-step h5 {
  margin-bottom: 4px;
}
.testimonial-item {
  background: var(--bg-card);
  border-radius: 20px;
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  position: relative;
}
.testimonial-item .quote-mark {
  position: absolute;
  top: 24px;
  right: 30px;
  color: rgba(255, 122, 26, 0.2);
  font-size: 3rem;
  line-height: 1;
}
.testimonial-item blockquote {
  font-size: 1.15rem;
  line-height: 1.75;
  color: #E2E8F0;
  margin-bottom: 20px;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
}
.testimonial-author img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
}
.testimonial-author .author-name {
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 0;
}
.testimonial-author .author-position {
  font-size: 0.9rem;
  color: var(--gold);
}
.clients-row .client-item {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 14px;
  padding: 22px 28px;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-size: 1rem;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 14px;
}
.clients-row .client-item i {
  color: var(--accent);
  font-size: 1.4rem;
}
.cta-panel {
  border-radius: 24px;
  padding: 60px 40px;
  background: linear-gradient(120deg, #10273D, #07111F);
  border: 1px solid rgba(255, 122, 26, 0.4);
  overflow: hidden;
  position: relative;
}
.cta-panel::before {
  content: "";
  position: absolute;
  top: -80%;
  right: -30%;
  width: 480px;
  height: 480px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 122, 26, 0.14), transparent 70%);
  pointer-events: none;
}
.cta-panel h3 {
  font-weight: 800;
  margin-bottom: 14px;
}
.accordion {
  --bs-accordion-border-color: rgba(255,255,255,0.08);
  --bs-accordion-btn-color: #ffffff;
  --bs-accordion-body-color: #C9D6E0;
  --bs-accordion-active-color: #ffffff;
  --bs-accordion-active-bg: rgba(255,122,26,0.08);
}
.accordion-item {
  background-color: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  margin-bottom: 12px;
  border-radius: 12px !important;
  overflow: hidden;
  box-shadow: none;
}
.accordion-button {
  background-color: transparent;
  box-shadow: none;
  font-weight: 600;
  font-family: var(--font-body);
}
.accordion-button:not(.collapsed) {
  background: transparent;
  box-shadow: none;
}
.accordion-button:focus {
  box-shadow: none;
  border-color: rgba(255, 122, 26, 0.5);
}
.form-control,
.form-select {
  background-color: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #ffffff;
  border-radius: 10px;
  padding: 14px 16px;
  transition: border-color .3s ease, background-color .3s ease;
}
.form-control:focus,
.form-select:focus {
  background-color: rgba(255, 255, 255, 0.06);
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(255, 122, 26, 0.12);
  color: #ffffff;
}
.form-control::placeholder {
  color: rgba(200, 215, 224, 0.55);
}
.form-control::placeholder {
  color: rgba(200, 215, 224, 0.55);
}
.form-control option {
  background-color: var(--bg-card);
  color: #ffffff;
}
.form-control {
  color-scheme: dark;
}
label {
  color: #E2E8F0;
  font-weight: 500;
  font-size: 0.95rem;
}
.required-symbol {
  color: var(--accent);
}
.form-note {
  font-size: 0.85rem;
  color: rgba(200, 215, 224, 0.7);
}
.map-wrap {
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow-lg);
}
.map-wrap iframe {
  width: 100%;
  min-height: 450px;
  display: block;
  border: none;
}
.contact-info-item {
  background: var(--bg-card);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 14px;
  padding: 20px 24px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 16px;
  transition: all .3s ease;
}
.contact-info-item:hover {
  border-color: rgba(255, 122, 26, 0.3);
  transform: translateX(4px);
}
.contact-info-item .ci-icon {
  flex: 0 0 48px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--accent-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  font-size: 1.2rem;
}
.contact-info-item h6 {
  margin-bottom: 4px;
  font-size: 1rem;
}
.contact-info-item p {
  margin-bottom: 0;
}
.pricing-table {
  background: var(--bg-card);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  overflow: hidden;
}
.pricing-table table {
  margin-bottom: 0;
}
.pricing-table th,
.pricing-table td {
  padding: 18px 20px;
  vertical-align: middle;
  color: #D7E0E7;
  border-color: rgba(255, 255, 255, 0.06);
}
.pricing-table thead th,
.pricing-table th {
  background: rgba(255, 122, 26, 0.08);
  color: #ffffff;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  border-top: none;
}
.pricing-table .price-highlight {
  color: var(--gold);
  font-weight: 700;
}
.lead {
  color: var(--body-color);
}
.page-head {
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
  padding: 160px 0 70px;
  color: #ffffff;
}
.page-head h1 {
  font-size: clamp(2.2rem, 4vw, 3.8rem);
}
.page-head .breadcrumb {
  --bs-breadcrumb-divider-color: rgba(255,255,255,0.5);
  margin-bottom: 0;
}
.page-head .breadcrumb a {
  color: rgba(255, 255, 255, 0.8);
}
.page-head .breadcrumb a:hover {
  color: var(--gold);
}
.page-head .breadcrumb .active {
  color: var(--accent);
}
.team-card {
  background: var(--bg-card);
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.07);
  transition: transform .4s ease;
}
.team-card:hover {
  transform: translateY(-8px);
}
.team-card img {
  width: 100%;
  height: 260px;
  object-fit: cover;
}
.team-card .team-info {
  padding: 20px;
}
.team-card .team-info h5 {
  margin-bottom: 2px;
}
.team-card .team-role {
  color: var(--accent);
  display: block;
  font-size: 0.92rem;
}
.team-card .team-desc {
  font-size: 0.9rem;
  margin-bottom: 0;
  margin-top: 8px;
}
.partner-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 12px;
  border: 1px solid var(--border-soft);
  padding: 26px 30px;
  color: rgba(255, 255, 255, 0.65);
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 0.85rem;
  transition: all .3s ease;
}
.partner-strip i {
  color: var(--gold);
  font-size: 1.5rem;
}
.partner-strip:hover {
  background: rgba(255, 255, 255, 0.06);
  color: #ffffff;
}
.coverage-card {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  padding: 30px 24px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: transform .3s ease;
}
.coverage-card:hover {
  transform: translateY(-4px);
}
.coverage-card i {
  color: var(--accent);
  font-size: 2rem;
  margin-bottom: 10px;
}
.coverage-card .coverage-percent {
  font-family: var(--font-heading);
  font-weight: 700;
}
.social-menu a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid var(--border-soft);
  color: var(--body-color);
  font-size: 1.1rem;
  margin-right: 10px;
  transition: all .3s ease;
}
.social-menu a:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: #141414;
}
.site-footer {
  background: #050D17;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 70px 0 30px;
}
.footer-title {
  color: #ffffff;
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 20px;
  font-weight: 600;
}
.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-links li {
  margin-bottom: 10px;
}
.footer-links a {
  color: var(--body-color);
  transition: all .3s ease;
}
.footer-links a:hover {
  color: var(--accent);
  padding-left: 4px;
}
.footer-contact-item {
  display: flex;
  gap: 12px;
  color: var(--body-color);
  margin-bottom: 14px;
}
.footer-contact-item i {
  color: var(--accent);
  font-size: 1.2rem;
  margin-top: 2px;
  flex: 0 0 24px;
}
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  margin-top: 36px;
  padding-top: 22px;
  text-align: center;
  font-size: 0.9rem;
}
.blog-card {
  background: var(--bg-card);
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: transform .4s ease, border-color .4s ease;
  height: 100%;
}
.blog-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 122, 26, 0.5);
}
.blog-card img {
  height: 220px;
  object-fit: cover;
  width: 100%;
}
.blog-card-body {
  padding: 24px;
}
.blog-meta {
  display: flex;
  gap: 14px;
  font-size: 0.85rem;
  color: rgba(200, 215, 224, 0.75);
}
.blog-meta i {
  color: var(--accent);
  margin-right: 5px;
}
.blog-card .blog-title {
  font-size: 1.2rem;
  margin-bottom: 10px;
  display: block;
  color: #ffffff;
  line-height: 1.45;
}
.blog-card .blog-title:hover {
  color: var(--accent);
}
.blog-read-more {
  color: var(--accent);
  font-weight: 600;
  font-size: 0.92rem;
}
.avatar-chip {
  display: inline-flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.06);
  padding: 12px 20px;
  border-radius: 40px;
  gap: 12px;
  font-weight: 500;
  color: #ffffff;
}
.avatar-chip i {
  color: var(--gold);
  width: 30px;
  height: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 184, 71, 0.18);
}
.legal-content {
  background: var(--bg-surface);
  border-radius: 20px;
  padding: 40px 36px;
  border: 1px solid var(--border-soft);
}
.legal-content h2 {
  font-size: 1.7rem;
  margin-top: 28px;
}
.legal-content h3 {
  font-size: 1.27rem;
  margin-top: 22px;
}
.legal-content ul {
  margin-bottom: 16px;
  padding-left: 22px;
}
.legal-content li {
  margin-bottom: 6px;
}
.legal-content p {
  line-height: 1.7;
}
.sidebar-box {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-soft);
  border-radius: 16px;
  padding: 20px;
  margin-bottom: 24px;
}
.sidebar-box .sbox-title {
  color: #ffffff;
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.legal-menu {
  list-style: none;
  padding: 0;
  margin: 0;
}
.legal-menu a {
  display: block;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  color: var(--body-color);
}
.legal-menu a:hover,
.legal-menu a.active {
  color: var(--accent);
  padding-left: 6px;
}
.gdpr-note {
  position: fixed;
  bottom: 20px;
  left: 20px;
  right: 20px;
  z-index: 2000;
  background: #101E30;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 24px 55px rgba(0, 0, 0, 0.5);
  border-radius: 16px;
  padding: 20px 24px;
  color: #E2E8F0;
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  visibility: hidden;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .4s ease, transform .4s ease, visibility .4s ease;
}
.gdpr-note.gdpr-show {
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
}
.gdpr-note p {
  margin-bottom: 0;
  flex: 1 1 220px;
  font-size: 0.94rem;
  line-height: 1.6;
}
.gdpr-note a {
  color: var(--gold);
  text-decoration: underline;
}
.gdpr-note .gdrp-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  flex-shrink: 0;
}
.gdpr-note .btn {
  padding: 10px 22px;
  border-radius: 30px;
  font-size: 0.89rem;
}
.btn-gdpr-accept {
  background: var(--accent);
  border: 1px solid var(--accent);
  color: #141414;
}
.btn-gdpr-accept:hover {
  background: var(--accent-hover);
  border-color: var(--accent-hover);
  color: #ffffff;
}
.btn-gdpr-decline {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: var(--body-color);
}
.btn-gdpr-decline:hover {
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
}
.page-notify-toast {
  position: fixed;
  top: 100px;
  right: 20px;
  z-index: 2005;
  background: linear-gradient(120deg, #10273D, #0B1A2C);
  border-left: 4px solid var(--accent);
  color: #ffffff;
  border-radius: 14px;
  padding: 16px 18px;
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 0.92rem;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.4);
  opacity: 0;
  visibility: hidden;
  transform: translateX(30px);
  transition: opacity .45s ease, transform .45s ease, visibility .45s ease;
  max-width: 340px;
}
.page-notify-toast.notify-show {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}
.page-notify-toast i {
  font-size: 1.4rem;
  color: var(--gold);
}
.page-notify-toast.error i {
  color: #f87171;
}
.page-notify-toast p {
  margin-bottom: 0;
  padding-top: 2px;
}
.progress-trackbar {
  display: flex;
  gap: 12px;
  background: rgba(255, 255, 255, 0.04);
  padding: 22px;
  border-radius: 16px;
  align-items: center;
  flex-wrap: wrap;
}
.progress-trackbar .pt-item {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 1;
  min-width: 130px;
  color: #ffffff;
}
.progress-trackbar .pt-icon {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--accent-soft);
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}
.quick-contact-strip {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 18px 24px;
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid var(--border-soft);
  border-radius: 50px;
}
.quick-contact-strip .qci {
  display: flex;
  gap: 10px;
  align-items: center;
}
.quick-contact-strip .qci i {
  color: var(--accent);
  font-size: 1.3rem;
}
.quick-contact-strip .qci p {
  margin-bottom: 0;
  font-size: 0.9rem;
  line-height: 1.3;
}
.quick-contact-strip .qci strong {
  color: #ffffff;
}
.back-top-btn {
  position: fixed;
  bottom: 30px;
  right: 25px;
  width: 44px;
  height: 44px;
  border: none;
  border-radius: 50%;
  background: var(--accent);
  color: #141414;
  font-size: 1rem;
  cursor: pointer;
  transition: opacity .3s ease, transform .3s ease;
  z-index: 1500;
  opacity: 0;
  visibility: hidden;
  box-shadow: 0 10px 25px rgba(255, 122, 26, 0.3);
}
.back-top-btn.show {
  opacity: 1;
  visibility: visible;
}
.back-top-btn:hover {
  background: var(--gold);
  transform: translateY(-4px);
}
.glide-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.glide-list li {
  position: relative;
  padding: 10px 0 10px 32px;
  color: var(--body-color);
}
.glide-list li::before {
  content: "\f00c";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  left: 0;
  top: 10px;
  color: var(--accent);
}
.media-obj {
  display: flex;
  gap: 20px;
  align-items: center;
}
.media-obj .mo-img {
  flex: 0 0 90px;
  margin-right: 0;
}
.media-obj .mo-img img {
  border-radius: 20px;
  width: 90px;
  height: 90px;
  object-fit: cover;
}
.media-obj h6 {
  margin-bottom: 4px;
}
.object-fit-cover {
  object-fit: cover;
}
.bg-pattern-grid {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='40' height='40'%3E%3Cpath d='M40 0H0v40' fill='none' stroke='rgba(255,255,255,0.03)' stroke-width='1'/%3E%3C/svg%3E");
}
.sidebar-sticky {
  position: sticky;
  top: 120px;
}
@media (max-width: 768px) {
  .section-spacer {
    padding: 60px 0;
  }
  .section-spacer-sm {
    padding: 40px 0;
  }
  .hero-section {
    padding-top: 140px;
    padding-bottom: 32px;
    min-height: auto;
  }
  .carousel-arrow-custom {
    display: none;
  }
  .site-header-top .col-md-6 {
    text-align: center;
  }
  .partner-strip {
    flex-direction: column;
    padding: 20px;
    gap: 12px;
  }
  .cta-panel {
    padding: 32px 24px;
  }
  .page-head {
    padding-top: 160px;
  }
  .testimonial-author {
    flex-wrap: wrap;
  }
  .form-control,
  .form-select {
    font-size: 0.95rem;
  }
  .legal-content {
    padding: 26px 20px;
  }
}
@media (min-width: 992px) {
  .hero-section .carousel-inner,
  .hero-section .carousel-item {
    min-height: 92vh;
  }
  .hero-section .carousel-item {
    background-size: cover;
    background-position: center;
  }
}
/* ===== QA accessibility overrides (appended) ===== */
/* Accent buttons: ensure white text on an accessible darker orange */
a[style*="background:#e34a21"],
button[style*="background:#e34a21"] {
  background: #c2410c !important;
  border-color: #c2410c !important;
}
.btn-accent {
  background: #c2410c !important;
  color: #ffffff !important;
  border: none !important;
  box-shadow: none !important;
}
.btn-accent:hover,
.btn-accent:focus,
.btn-accent:active {
  background: #a8380c !important;
  color: #ffffff !important;
}
/* Secondary grey text: darken for AA contrast on light surfaces */
[style*="color:#6c7a91"] {
  color: #5a6678 !important;
}
/* Badges: use dark readable text on bright backgrounds */
[style*="background:#16b98a"] {
  color: #00251a !important;
}
[style*="background:#f0a030"] {
  color: #4a3000 !important;
}

/* ===== QA accessibility overrides (homepage pass 2) ===== */
/* Hide auto-generated cookie banners; the static visible one is added in HTML */
#generator-cookie-consent,
.gdpr-note {
  display: none !important;
}
/* Light sections that currently render on the dark body with dark text */
section#diensten,
section.section.pb-0 {
  background: #ffffff !important;
}
/* Process step headings are forced white by the global h1-h6 rule; make them dark on light cards */
.process-box h5 {
  color: #0c1d3a !important;
}
/* Darken orange text used on light surfaces for AA contrast */
#page-root [style*="color:#e34a21"]:not(i) {
  color: #b13c0a !important;
}
/* Keep decorative kicker underline accents consistent */
#page-root .kicker > span {
  background: #b13c0a !important;
}
/* Orange section bar: darken background so white text passes AA */
section[style*="background:#e34a21"] {
  background: #c2410c !important;
}
/* Orange stat box: darken background so white text passes AA */
.stat-item[style*="background:#e34a21"] {
  background: #c2410c !important;
}
/* Avatar initials on colored backgrounds */
#page-root .testimonial-card .avatar {
  background: #c2410c !important;
}
/* Testimonial stars readable on white cards */
#page-root .testimonial-card .text-warning {
  color: #b45309 !important;
}
