* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}

html,
body {
  min-height: 100%;
}

body {
  background: #020b1d;
  color: #ffffff;
}

/* =========================
   WATERMERK
========================= */
body::after {
  content: "Nexora Hosting • Opgericht in 2026";
  position: fixed;
  right: 18px;
  bottom: 14px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.10);
  pointer-events: none;
  z-index: 5;
}

/* =========================
   HERO / SUBPAGE OVERLAY
========================= */
.overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 20%, rgba(37, 99, 235, 0.28), transparent 22%),
    radial-gradient(circle at 50% 85%, rgba(59, 130, 246, 0.14), transparent 20%);
  pointer-events: none;
}

/* =========================
   HOMEPAGE HERO
========================= */
.hero {
  position: relative;
  min-height: 100vh;
  background:
    linear-gradient(90deg, rgba(2, 8, 23, 0.88) 0%, rgba(2, 8, 23, 0.58) 40%, rgba(2, 8, 23, 0.55) 100%),
    linear-gradient(180deg, rgba(2, 8, 23, 0.20) 0%, rgba(2, 8, 23, 0.05) 50%, rgba(2, 8, 23, 0.75) 100%),
    url("../images/background.jpg") center center / cover no-repeat;
  overflow: hidden;
}

/* =========================
   GENERIC SUBPAGE HERO
========================= */
.subpage-hero {
  position: relative;
  min-height: 100vh;
  background:
    linear-gradient(90deg, rgba(2, 8, 23, 0.88) 0%, rgba(2, 8, 23, 0.58) 40%, rgba(2, 8, 23, 0.55) 100%),
    linear-gradient(180deg, rgba(2, 8, 23, 0.20) 0%, rgba(2, 8, 23, 0.05) 50%, rgba(2, 8, 23, 0.75) 100%),
    url("../images/background.jpg") center center / cover no-repeat;
}

/* =========================
   PAGE SPECIFIC HEROES
========================= */
.services-hero {
  min-height: 380px;
  background:
    linear-gradient(90deg, rgba(2, 8, 23, 0.88) 0%, rgba(2, 8, 23, 0.50) 42%, rgba(2, 8, 23, 0.42) 100%),
    linear-gradient(180deg, rgba(2, 8, 23, 0.08) 0%, rgba(2, 8, 23, 0.10) 45%, rgba(2, 8, 23, 0.88) 100%),
    url("../images/background.jpg") center 22% / cover no-repeat;
}

.pricing-hero {
  min-height: 430px;
  background:
    linear-gradient(90deg, rgba(2, 8, 23, 0.88) 0%, rgba(2, 8, 23, 0.52) 42%, rgba(2, 8, 23, 0.44) 100%),
    linear-gradient(180deg, rgba(2, 8, 23, 0.08) 0%, rgba(2, 8, 23, 0.10) 45%, rgba(2, 8, 23, 0.88) 100%),
    url("../images/background.jpg") center 24% / cover no-repeat;
}

.about-hero,
.contact-hero {
  min-height: 520px;
  background:
    linear-gradient(90deg, rgba(2, 8, 23, 0.88) 0%, rgba(2, 8, 23, 0.52) 42%, rgba(2, 8, 23, 0.44) 100%),
    linear-gradient(180deg, rgba(2, 8, 23, 0.08) 0%, rgba(2, 8, 23, 0.10) 45%, rgba(2, 8, 23, 0.88) 100%),
    url("../images/background.jpg") center 24% / cover no-repeat;
}

.offerte-hero {
  min-height: 430px;
  background:
    linear-gradient(90deg, rgba(2, 8, 23, 0.88) 0%, rgba(2, 8, 23, 0.52) 42%, rgba(2, 8, 23, 0.44) 100%),
    linear-gradient(180deg, rgba(2, 8, 23, 0.08) 0%, rgba(2, 8, 23, 0.10) 45%, rgba(2, 8, 23, 0.88) 100%),
    url("../images/background.jpg") center 24% / cover no-repeat;
}

.thankyou-hero {
  position: relative;
  min-height: 100vh;
  background:
    linear-gradient(90deg, rgba(2, 8, 23, 0.88) 0%, rgba(2, 8, 23, 0.58) 40%, rgba(2, 8, 23, 0.55) 100%),
    linear-gradient(180deg, rgba(2, 8, 23, 0.20) 0%, rgba(2, 8, 23, 0.05) 50%, rgba(2, 8, 23, 0.75) 100%),
    url("../images/background.jpg") center center / cover no-repeat;
}

/* =========================
   NAVBAR
========================= */
.navbar {
  position: relative;
  z-index: 2;
  max-width: 1380px;
  margin: 0 auto;
  padding: 20px 28px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.logo-wrap {
  display: flex;
  align-items: center;
}

.logo-wrap a {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.logo {
  height: 115px;
  width: auto;
  object-fit: contain;
  display: block;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 38px;
  align-items: center;
}

.nav-links li {
  list-style: none;
}

.nav-links a {
  color: rgba(255, 255, 255, 0.95);
  text-decoration: none;
  font-size: 16px;
  transition: color 0.25s ease;
  position: relative;
  display: inline-block;
  padding-bottom: 6px;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -6px;
  width: 0;
  height: 2px;
  background: #2ea0ff;
  border-radius: 10px;
  transition: width 0.3s ease, left 0.3s ease, opacity 0.3s ease;
  opacity: 0;
}

.nav-links a:hover,
.nav-links a.active {
  color: #ffffff;
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
  left: 0;
  opacity: 1;
}

.btn-offer {
  text-decoration: none;
  color: #ffffff;
  background: linear-gradient(180deg, #56acff 0%, #2f73e6 100%);
  border: 1px solid rgba(122, 185, 255, 0.9);
  padding: 16px 24px;
  border-radius: 14px;
  font-size: 15px;
  font-weight: 600;
  box-shadow: 0 10px 30px rgba(32, 109, 255, 0.28);
  transition: 0.2s ease;
  white-space: nowrap;
}

.btn-offer:hover {
  transform: translateY(-2px);
  filter: brightness(1.05);
}

/* =========================
   SEARCH BOX
========================= */
.search-box {
  position: relative;
  width: 240px;
  flex-shrink: 0;
}

.search-box input {
  width: 100%;
  background: rgba(8, 27, 61, 0.55);
  border: 1px solid rgba(88, 151, 255, 0.22);
  border-radius: 12px;
  padding: 12px 14px;
  color: #ffffff;
  font-size: 14px;
  outline: none;
}

.search-box input::placeholder {
  color: rgba(230, 238, 255, 0.6);
}

.search-box input:focus {
  border-color: rgba(88, 151, 255, 0.45);
  box-shadow: 0 0 0 3px rgba(46, 160, 255, 0.10);
}

.search-results {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  width: 100%;
  background: rgba(7, 22, 47, 0.96);
  border: 1px solid rgba(88, 151, 255, 0.18);
  border-radius: 14px;
  overflow: hidden;
  display: none;
  z-index: 999;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.28);
}

.search-result-item {
  display: block;
  padding: 12px 14px;
  color: #ffffff;
  text-decoration: none;
  font-size: 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.search-result-item:last-child {
  border-bottom: none;
}

.search-result-item:hover {
  background: rgba(46, 160, 255, 0.12);
}

/* =========================
   LANGUAGE SWITCHER
========================= */
.language-switcher {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.language-switcher select {
  background: rgba(8, 27, 61, 0.85);
  border: 1px solid rgba(88, 151, 255, 0.22);
  border-radius: 12px;
  padding: 12px 14px;
  color: #ffffff;
  font-size: 14px;
  outline: none;
  cursor: pointer;
  min-width: 140px;
}

.language-switcher select option {
  background: #0d1f3a;
  color: #ffffff;
}

.language-switcher select:focus {
  border-color: rgba(88, 151, 255, 0.45);
  box-shadow: 0 0 0 3px rgba(46, 160, 255, 0.10);
}

/* =========================
   HERO CONTENT
========================= */
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1320px;
  margin: 0 auto;
  padding: 120px 28px 0;
}

.tag {
  display: inline-block;
  border: 1px solid rgba(56, 189, 248, 0.45);
  color: #4db3ff;
  padding: 12px 16px;
  border-radius: 14px;
  font-size: 14px;
  letter-spacing: 1px;
  margin-bottom: 28px;
  background: rgba(7, 20, 47, 0.35);
  backdrop-filter: blur(4px);
}

.hero-content h1 {
  font-size: 76px;
  line-height: 1.08;
  font-weight: 700;
  max-width: 780px;
  margin-bottom: 24px;
}

.hero-content h1 span {
  color: #ffffff;
}

.hero-content p {
  max-width: 700px;
  font-size: 22px;
  line-height: 1.6;
  color: rgba(230, 238, 255, 0.9);
  margin-bottom: 34px;
}

.hero-buttons {
  display: flex;
  gap: 18px;
  align-items: center;
}

.btn-primary,
.btn-secondary {
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 240px;
  padding: 18px 28px;
  border-radius: 16px;
  font-size: 17px;
  font-weight: 600;
  transition: 0.2s ease;
}

.btn-primary {
  color: #ffffff;
  background: linear-gradient(180deg, #56acff 0%, #2f73e6 100%);
  border: 1px solid rgba(122, 185, 255, 0.9);
  box-shadow: 0 12px 30px rgba(32, 109, 255, 0.28);
}

.btn-secondary {
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(4px);
}

.btn-primary:hover,
.btn-secondary:hover {
  transform: translateY(-2px);
  filter: brightness(1.05);
}

/* =========================
   HERO BOTTOM FEATURES
========================= */
.hero-bottom {
  position: relative;
  z-index: 2;
  max-width: 1320px;
  margin: 120px auto 0;
  padding: 0 28px 38px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.feature {
  display: flex;
  align-items: center;
  gap: 14px;
  color: rgba(238, 244, 255, 0.95);
  font-size: 17px;
}

.feature span {
  font-size: 28px;
  color: #53a8ff;
}

/* =========================
   GENERIC PAGE CONTENT
========================= */
.subpage-content {
  max-width: 1320px;
  margin: 0 auto;
  padding: 95px 28px 55px;
  color: #ffffff;
}

.subpage-content h1 {
  font-size: 58px;
  line-height: 1.08;
  margin-bottom: 18px;
}

.subpage-content p {
  font-size: 20px;
  max-width: 860px;
  line-height: 1.75;
  color: rgba(230, 238, 255, 0.9);
}

.section-container {
  max-width: 1320px;
  margin: 0 auto;
}

.section-heading {
  margin-bottom: 42px;
}

.centered-heading {
  text-align: center;
}

.centered-heading h2 {
  font-size: 56px;
  line-height: 1.15;
  margin-bottom: 16px;
}

.centered-heading p {
  max-width: 860px;
  margin: 0 auto;
  font-size: 21px;
  line-height: 1.75;
  color: rgba(230, 238, 255, 0.88);
}

.mini-label {
  display: inline-block;
  color: #2ea0ff;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 18px;
  text-transform: uppercase;
}

.center-label {
  margin-bottom: 12px;
}

/* =========================
   SECTION BACKGROUNDS
========================= */
.services-section,
.why-section,
.process-section,
.cta-section,
.iso-section,
.about-mission-section,
.about-values-section,
.about-stats-section,
.contact-form-section,
.contact-faq-section,
.offerte-section,
.pricing-section {
  position: relative;
  padding: 90px 28px;
}

.services-section,
.pricing-section {
  background:
    radial-gradient(circle at top center, rgba(46, 160, 255, 0.08), transparent 30%),
    linear-gradient(180deg, #050f22 0%, #07162f 100%);
}

.why-section,
.about-values-section,
.contact-faq-section {
  background:
    radial-gradient(circle at top center, rgba(46, 160, 255, 0.07), transparent 28%),
    linear-gradient(180deg, #081a33 0%, #071327 100%);
}

.process-section,
.iso-section,
.about-mission-section,
.contact-form-section,
.offerte-section {
  background:
    radial-gradient(circle at top center, rgba(46, 160, 255, 0.06), transparent 28%),
    linear-gradient(180deg, #071327 0%, #061220 100%);
}

.cta-section,
.about-stats-section {
  background: linear-gradient(180deg, #06121f 0%, #071327 100%);
}

/* =========================
   TRUST CHECKS
========================= */
.trust-checks {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 28px;
}

.trust-item {
  background: rgba(8, 27, 61, 0.45);
  border: 1px solid rgba(88, 151, 255, 0.16);
  border-radius: 14px;
  padding: 16px 18px;
  color: #ffffff;
  font-size: 15px;
  line-height: 1.5;
}

/* =========================
   COMMON CARD GRIDS
========================= */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.why-grid,
.about-values-grid,
.pricing-benefits-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.service-card,
.why-card,
.about-value-card,
.pricing-benefit-card {
  background: linear-gradient(180deg, rgba(17, 43, 93, 0.38) 0%, rgba(7, 22, 47, 0.74) 100%);
  border: 1px solid rgba(88, 151, 255, 0.14);
  border-radius: 18px;
  padding: 28px 24px;
  transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}

.service-card:hover,
.why-card:hover,
.about-value-card:hover,
.pricing-benefit-card:hover {
  transform: translateY(-4px);
  border-color: rgba(88, 151, 255, 0.30);
  box-shadow: 0 14px 35px rgba(0, 0, 0, 0.28);
}

.service-icon,
.why-icon,
.about-value-icon,
.pricing-benefit-icon {
  font-size: 42px;
  line-height: 1;
  margin-bottom: 18px;
  color: #4ea2ff;
}

.service-card h3,
.why-card h3,
.about-value-card h3,
.pricing-benefit-card h3 {
  font-size: 24px;
  margin-bottom: 12px;
}

.service-card p,
.why-card p,
.about-value-card p,
.pricing-benefit-card p {
  font-size: 17px;
  line-height: 1.7;
  color: rgba(230, 238, 255, 0.84);
}

/* =========================
   ABOUT MISSION
========================= */
.about-mission-grid {
  display: grid;
  grid-template-columns: 1.05fr 1.15fr;
  gap: 34px;
  align-items: center;
}

.about-mission-copy h2 {
  font-size: 56px;
  line-height: 1.15;
  margin-bottom: 22px;
  max-width: 650px;
}

.about-mission-copy h2 span {
  color: #3f97ff;
}

.about-mission-copy p {
  font-size: 20px;
  line-height: 1.85;
  color: rgba(230, 238, 255, 0.88);
  max-width: 700px;
}

.about-mission-visual {
  position: relative;
  min-height: 420px;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(88, 151, 255, 0.18);
  background: linear-gradient(180deg, rgba(7, 18, 40, 0.18) 0%, rgba(7, 18, 40, 0.38) 100%);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.25);
}

.about-visual-image {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(4, 11, 29, 0.20) 0%, rgba(4, 11, 29, 0.35) 100%),
    url("../images/server-room.jpg") center center / cover no-repeat;
}

.about-visual-badge,
.contact-visual-badge,
.offerte-badge {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 22px;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 18px;
  border-radius: 16px;
  background: rgba(8, 27, 61, 0.78);
  border: 1px solid rgba(88, 151, 255, 0.18);
  backdrop-filter: blur(6px);
}

.about-visual-icon,
.contact-visual-icon,
.offerte-badge-icon {
  font-size: 26px;
  color: #4ea2ff;
}

.about-visual-badge strong,
.contact-visual-badge strong,
.offerte-badge strong {
  display: block;
  font-size: 18px;
  margin-bottom: 3px;
}

.about-visual-badge span,
.contact-visual-badge span,
.offerte-badge span {
  display: block;
  font-size: 14px;
  color: rgba(230, 238, 255, 0.82);
}

/* =========================
   CONTACT
========================= */
.contact-info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 34px;
}

.contact-info-card {
  background: rgba(8, 27, 61, 0.55);
  border: 1px solid rgba(88, 151, 255, 0.18);
  border-radius: 20px;
  padding: 26px 24px;
  text-align: center;
  backdrop-filter: blur(6px);
  box-shadow: 0 14px 35px rgba(0, 0, 0, 0.18);
}

.contact-info-icon {
  font-size: 34px;
  margin-bottom: 16px;
  color: #4ea2ff;
}

.contact-info-card h3 {
  font-size: 24px;
  margin-bottom: 10px;
}

.contact-info-card p {
  font-size: 18px;
  line-height: 1.6;
}

.contact-info-card span {
  display: block;
  margin-top: 8px;
  font-size: 15px;
  color: rgba(230, 238, 255, 0.8);
}

.contact-grid,
.offerte-grid {
  display: grid;
  grid-template-columns: 1fr 0.95fr;
  gap: 36px;
  align-items: stretch;
}

.contact-form-wrap h2,
.offerte-form-card h2 {
  font-size: 46px;
  line-height: 1.15;
  margin-bottom: 14px;
}

.contact-form-wrap p,
.offerte-form-card p {
  font-size: 18px;
  line-height: 1.75;
  color: rgba(230, 238, 255, 0.88);
  margin-bottom: 24px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group {
  margin-bottom: 16px;
}

.form-group input,
.form-group textarea,
.form-group select,
.offerte-form input,
.offerte-form textarea,
.offerte-form select {
  width: 100%;
  background: rgba(8, 27, 61, 0.85);
  border: 1px solid rgba(88, 151, 255, 0.18);
  border-radius: 14px;
  padding: 16px 18px;
  color: #ffffff;
  font-size: 16px;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-group input::placeholder,
.form-group textarea::placeholder,
.offerte-form input::placeholder,
.offerte-form textarea::placeholder {
  color: rgba(230, 238, 255, 0.6);
}

.form-group select,
.offerte-form select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
}

.form-group select option,
.offerte-form select option {
  background: #0d1f3a;
  color: #ffffff;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus,
.offerte-form input:focus,
.offerte-form textarea:focus,
.offerte-form select:focus {
  border-color: rgba(88, 151, 255, 0.45);
  box-shadow: 0 0 0 3px rgba(46, 160, 255, 0.10);
}

.form-group textarea,
.offerte-form textarea {
  min-height: 160px;
  resize: vertical;
}

.checkbox-line {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin: 10px 0 22px;
  font-size: 14px;
  line-height: 1.6;
  color: rgba(230, 238, 255, 0.86);
}

.checkbox-line input {
  width: auto;
  margin-top: 3px;
}

.contact-submit,
.offerte-submit {
  border: none;
  cursor: pointer;
}

.offerte-submit {
  width: 100%;
}

.contact-visual,
.offerte-visual-card {
  position: relative;
  min-height: 640px;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(88, 151, 255, 0.18);
  background: linear-gradient(180deg, rgba(7, 18, 40, 0.18) 0%, rgba(7, 18, 40, 0.38) 100%);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.25);
}

.contact-visual-image,
.offerte-visual-image {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(4, 11, 29, 0.20) 0%, rgba(4, 11, 29, 0.35) 100%),
    url("../images/contact-side.jpg") center center / cover no-repeat;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  background: rgba(8, 27, 61, 0.45);
  border: 1px solid rgba(88, 151, 255, 0.16);
  border-radius: 18px;
  overflow: hidden;
}

.faq-question {
  width: 100%;
  background: transparent;
  border: none;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 24px;
  font-size: 22px;
  text-align: left;
  cursor: pointer;
}

.faq-toggle {
  flex-shrink: 0;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(46, 160, 255, 0.12);
  border: 1px solid rgba(88, 151, 255, 0.18);
  font-size: 24px;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.28s ease;
}

.faq-answer p {
  padding: 0 24px 22px;
  font-size: 18px;
  line-height: 1.8;
  color: rgba(230, 238, 255, 0.86);
}

.faq-item.active .faq-answer {
  max-height: 240px;
}

/* =========================
   PRICING
========================= */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.pricing-card {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(17, 43, 93, 0.40) 0%, rgba(7, 22, 47, 0.78) 100%);
  border: 1px solid rgba(88, 151, 255, 0.14);
  transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}

.pricing-card:hover {
  transform: translateY(-4px);
  border-color: rgba(88, 151, 255, 0.30);
  box-shadow: 0 16px 38px rgba(0, 0, 0, 0.28);
}

.featured-card {
  border-color: rgba(88, 151, 255, 0.34);
  box-shadow: 0 18px 40px rgba(14, 44, 110, 0.26);
}

.pricing-badge {
  position: absolute;
  top: 18px;
  right: 18px;
  z-index: 2;
  border-radius: 8px;
  overflow: hidden;
}

.pricing-badge span {
  display: block;
  background: #f5c94c;
  color: #1d2a44;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  padding: 10px 12px 8px;
}

.pricing-badge small {
  display: block;
  background: #1f4e99;
  color: #ffffff;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  padding: 7px 12px;
}

.pricing-icon {
  font-size: 44px;
  line-height: 1;
  padding: 22px 18px 6px;
  color: #4ea2ff;
}

.pricing-card-top {
  padding: 6px 18px 14px;
  min-height: 145px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.pricing-card-top h3 {
  font-size: 30px;
  line-height: 1.15;
  margin-bottom: 14px;
}

.pricing-card-top p {
  font-size: 17px;
  line-height: 1.65;
  color: rgba(230, 238, 255, 0.85);
}

.pricing-card-body {
  padding: 16px 18px;
}

.price-row {
  display: flex;
  align-items: flex-end;
  gap: 8px;
  min-height: 72px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.price {
  font-size: 52px;
  line-height: 1;
  font-weight: 700;
}

.price-label {
  font-size: 16px;
  color: rgba(230, 238, 255, 0.82);
  padding-bottom: 5px;
}

.special-price-row {
  align-items: center;
}

.price-request {
  font-size: 34px;
  line-height: 1.2;
  font-weight: 700;
}

.price-features {
  list-style: none;
  padding: 14px 0;
}

.price-features li {
  position: relative;
  padding: 8px 0 8px 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  font-size: 15px;
  line-height: 1.55;
  color: rgba(230, 238, 255, 0.87);
}

.price-features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 8px;
  color: #4ea2ff;
  font-weight: 700;
}

.price-features li:last-child {
  border-bottom: none;
}

.btn-price {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 48px;
  text-decoration: none;
  color: #ffffff;
  background: linear-gradient(180deg, #56acff 0%, #2f73e6 100%);
  border: 1px solid rgba(122, 185, 255, 0.9);
  border-radius: 14px;
  font-size: 15px;
  font-weight: 600;
  transition: 0.2s ease;
}

.btn-price:hover {
  transform: translateY(-2px);
  filter: brightness(1.05);
}

/* =========================
   THANK YOU
========================= */
.thankyou-content {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: calc(100vh - 120px);
}

.thankyou-box {
  max-width: 760px;
  width: 100%;
  text-align: center;
  padding: 50px 40px;
  border-radius: 28px;
  background: rgba(8, 27, 61, 0.55);
  border: 1px solid rgba(88, 151, 255, 0.18);
  backdrop-filter: blur(8px);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.24);
}

.thankyou-icon {
  width: 82px;
  height: 82px;
  margin: 0 auto 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(180deg, #56acff 0%, #2f73e6 100%);
  border: 1px solid rgba(122, 185, 255, 0.9);
  color: #ffffff;
  font-size: 38px;
  font-weight: 700;
}

.thankyou-box h1 {
  font-size: 54px;
  line-height: 1.1;
  margin-bottom: 18px;
}

.thankyou-box p {
  font-size: 20px;
  line-height: 1.8;
  color: rgba(230, 238, 255, 0.88);
  max-width: 620px;
  margin: 0 auto 30px;
}

.thankyou-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* =========================
   CHATBOT
========================= */
.chatbot-toggle {
  position: fixed;
  right: 24px;
  bottom: 24px;
  width: 64px;
  height: 64px;
  border: none;
  border-radius: 50%;
  background: linear-gradient(180deg, #56acff 0%, #2f73e6 100%);
  color: #ffffff;
  font-size: 28px;
  cursor: pointer;
  box-shadow: 0 18px 35px rgba(32, 109, 255, 0.35);
  z-index: 9998;
  transition: transform 0.2s ease, filter 0.2s ease;
}

.chatbot-toggle:hover {
  transform: translateY(-2px);
  filter: brightness(1.05);
}

.chatbot-window {
  position: fixed;
  right: 24px;
  bottom: 100px;
  width: 380px;
  max-width: calc(100vw - 30px);
  height: 560px;
  background: linear-gradient(180deg, rgba(9, 24, 52, 0.98) 0%, rgba(6, 18, 39, 0.98) 100%);
  border: 1px solid rgba(88, 151, 255, 0.20);
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.34);
  z-index: 9999;
  display: none;
  flex-direction: column;
}

.chatbot-window.active {
  display: flex;
}

.chatbot-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px;
  background: linear-gradient(180deg, rgba(18, 52, 116, 0.92) 0%, rgba(10, 31, 75, 0.92) 100%);
  border-bottom: 1px solid rgba(88, 151, 255, 0.16);
}

.chatbot-header-left {
  display: flex;
  align-items: center;
  gap: 12px;
}

.chatbot-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.10);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}

.chatbot-title {
  font-size: 16px;
  font-weight: 700;
}

.chatbot-subtitle {
  font-size: 12px;
  color: rgba(230, 238, 255, 0.75);
  margin-top: 2px;
}

.chatbot-close {
  background: transparent;
  border: none;
  color: #ffffff;
  font-size: 24px;
  cursor: pointer;
}

.chatbot-body {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.chatbot-messages {
  flex: 1;
  padding: 18px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.chatbot-message {
  display: flex;
}

.chatbot-message.bot {
  justify-content: flex-start;
}

.chatbot-message.user {
  justify-content: flex-end;
}

.chatbot-bubble {
  max-width: 82%;
  padding: 12px 14px;
  border-radius: 16px;
  font-size: 14px;
  line-height: 1.6;
}

.chatbot-message.bot .chatbot-bubble {
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  border: 1px solid rgba(88, 151, 255, 0.12);
}

.chatbot-message.user .chatbot-bubble {
  background: linear-gradient(180deg, #56acff 0%, #2f73e6 100%);
  color: #ffffff;
}

.chatbot-bubble a {
  color: #7dc0ff;
  text-decoration: underline;
}

.chatbot-quick {
  padding: 0 18px 14px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.chatbot-quick-btn {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(88, 151, 255, 0.14);
  color: #ffffff;
  border-radius: 999px;
  padding: 10px 12px;
  font-size: 13px;
  cursor: pointer;
  transition: 0.2s ease;
}

.chatbot-quick-btn:hover {
  background: rgba(46, 160, 255, 0.12);
}

.chatbot-input-row {
  display: flex;
  gap: 10px;
  padding: 16px 18px 18px;
  border-top: 1px solid rgba(88, 151, 255, 0.12);
}

.chatbot-input-row input {
  flex: 1;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(88, 151, 255, 0.18);
  border-radius: 12px;
  padding: 14px;
  color: #ffffff;
  font-size: 14px;
  outline: none;
}

.chatbot-input-row input::placeholder {
  color: rgba(230, 238, 255, 0.60);
}

.chatbot-input-row input:focus {
  border-color: rgba(88, 151, 255, 0.45);
  box-shadow: 0 0 0 3px rgba(46, 160, 255, 0.10);
}

.chatbot-send {
  min-width: 54px;
  border: none;
  border-radius: 12px;
  background: linear-gradient(180deg, #56acff 0%, #2f73e6 100%);
  color: #ffffff;
  font-size: 18px;
  cursor: pointer;
}

/* =========================
   FOOTER
========================= */
.site-footer {
  background: #06121f;
  border-top: 1px solid rgba(88, 151, 255, 0.14);
  padding: 28px 20px;
  text-align: center;
}

.footer-container p {
  margin-bottom: 10px;
  color: rgba(230, 238, 255, 0.78);
  font-size: 14px;
  line-height: 1.7;
}

.footer-links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 12px;
}

.footer-links a {
  color: #ffffff;
  text-decoration: none;
  font-size: 14px;
}

.footer-links a:hover {
  color: #2ea0ff;
}

/* =========================
   RTL SUPPORT
========================= */
html[dir="rtl"] body {
  direction: rtl;
}

html[dir="rtl"] .navbar,
html[dir="rtl"] .hero-content,
html[dir="rtl"] .subpage-content,
html[dir="rtl"] .footer-container,
html[dir="rtl"] .chatbot-body,
html[dir="rtl"] .chatbot-header,
html[dir="rtl"] .contact-form-wrap,
html[dir="rtl"] .offerte-form-card,
html[dir="rtl"] .about-mission-copy {
  direction: rtl;
}

html[dir="rtl"] .hero-buttons,
html[dir="rtl"] .footer-links,
html[dir="rtl"] .nav-links {
  flex-direction: row-reverse;
}

html[dir="rtl"] .chatbot-message.bot {
  justify-content: flex-end;
}

html[dir="rtl"] .chatbot-message.user {
  justify-content: flex-start;
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 1200px) {
  .navbar {
    justify-content: center;
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .why-grid,
  .about-values-grid,
  .pricing-benefits-grid,
  .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .contact-grid,
  .offerte-grid,
  .about-mission-grid {
    grid-template-columns: 1fr;
  }

  .contact-info-grid {
    grid-template-columns: 1fr;
  }

  .contact-visual,
  .offerte-visual-card {
    min-height: 420px;
  }
}

@media (max-width: 768px) {
  body::after {
    right: 10px;
    bottom: 10px;
    font-size: 10px;
  }

  .navbar {
    padding: 18px 20px 0;
    gap: 14px;
  }

  .logo {
    height: 90px;
  }

  .nav-links {
    width: 100%;
    gap: 18px;
    flex-wrap: wrap;
    justify-content: center;
    order: 3;
  }

  .search-box {
    width: 100%;
    order: 4;
  }

  .language-switcher {
    width: 100%;
    order: 5;
  }

  .language-switcher select {
    width: 100%;
  }

  .btn-offer {
    width: 100%;
    text-align: center;
    justify-content: center;
    order: 6;
  }

  .hero-content {
    padding: 80px 20px 0;
  }

  .hero-content h1 {
    font-size: 42px;
  }

  .hero-content p {
    font-size: 18px;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: stretch;
  }

  .btn-primary,
  .btn-secondary {
    min-width: 100%;
  }

  .hero-bottom {
    margin-top: 70px;
    padding: 0 20px 30px;
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .subpage-content {
    padding: 80px 20px 40px;
  }

  .subpage-content h1 {
    font-size: 42px;
  }

  .subpage-content p {
    font-size: 18px;
  }

  .trust-checks,
  .services-grid,
  .why-grid,
  .about-values-grid,
  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .services-section,
  .why-section,
  .process-section,
  .cta-section,
  .iso-section,
  .about-mission-section,
  .about-values-section,
  .about-stats-section,
  .contact-form-section,
  .contact-faq-section,
  .offerte-section,
  .pricing-section {
    padding: 70px 20px;
  }

  .centered-heading h2 {
    font-size: 38px;
  }

  .centered-heading p {
    font-size: 17px;
  }

  .about-mission-copy h2,
  .contact-form-wrap h2,
  .offerte-form-card h2 {
    font-size: 34px;
  }

  .about-mission-copy p,
  .contact-form-wrap p,
  .offerte-form-card p {
    font-size: 17px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .contact-visual,
  .offerte-visual-card,
  .about-mission-visual {
    min-height: 320px;
  }

  .faq-question {
    font-size: 18px;
    padding: 18px;
  }

  .faq-answer p {
    padding: 0 18px 18px;
    font-size: 16px;
  }

  .thankyou-box {
    padding: 34px 22px;
  }

  .thankyou-box h1 {
    font-size: 38px;
  }

  .thankyou-box p {
    font-size: 17px;
  }

  .thankyou-buttons {
    flex-direction: column;
  }

  .chatbot-window {
    right: 12px;
    left: 12px;
    bottom: 88px;
    width: auto;
    height: 70vh;
  }

  .chatbot-toggle {
    right: 16px;
    bottom: 16px;
    width: 58px;
    height: 58px;
    font-size: 24px;
  }

  .footer-links {
    flex-direction: column;
    gap: 10px;
  }
}