:root {
  --ink: #102a2a;
  --ink-soft: #516463;
  --teal: #0c6d68;
  --teal-dark: #074d4a;
  --mint: #dceae4;
  --cream: #f5f3ec;
  --white: #fff;
  --line: #d9e0db;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: #fbfcf9;
  font-family: "DM Sans", sans-serif;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
svg { display: block; }
.container { width: min(1180px, calc(100% - 48px)); margin-inline: auto; }

.site-header {
  position: absolute;
  z-index: 20;
  top: 0;
  width: 100%;
  border-bottom: 1px solid rgba(16, 42, 42, .1);
}
.nav-wrap { height: 92px; display: flex; align-items: center; justify-content: space-between; }
.brand { display: flex; align-items: center; gap: 11px; }
.brand img { max-height: 63px; width: auto; display: block; }
.brand > span:last-child { display: grid; }
.brand strong { font: 700 17px/1.1 "Manrope", sans-serif; letter-spacing: -.02em; }
.brand small { margin-top: 4px; color: #758582; font-size: 8px; text-transform: uppercase; letter-spacing: .25em; }
nav { display: flex; gap: 36px; margin-left: auto; margin-right: 38px; }
nav a { position: relative; font-size: 13px; font-weight: 600; color: #3c5351; }
nav a::after { content: ""; position: absolute; left: 0; bottom: -9px; width: 0; height: 1px; background: var(--teal); transition: .25s; }
nav a:hover::after { width: 100%; }
.social-links { display: flex; align-items: center; gap: 7px; }
.social-links a {
  width: 34px; height: 34px; display: grid; place-items: center; border: 1px solid rgba(12, 109, 104, .18);
  border-radius: 50%; color: var(--teal); background: rgba(255,255,255,.4); transition: color .2s, background .2s, border-color .2s, transform .2s;
}
.social-links a:hover { color: white; background: var(--teal); border-color: var(--teal); transform: translateY(-2px); }
.social-links svg { width: 16px; height: 16px; fill: none; stroke: currentColor; stroke-width: 1.55; stroke-linecap: round; stroke-linejoin: round; }
.social-links .social-dot { fill: currentColor; stroke: none; }
.header-social { margin-right: 12px; }
.language-switcher { position: relative; margin-right: 12px; }
.language-trigger {
  min-width: 76px; height: 42px; padding: 0 11px; display: flex; align-items: center; justify-content: center; gap: 7px;
  border: 1px solid rgba(12, 109, 104, .2); border-radius: 6px; color: var(--ink); background: rgba(255,255,255,.52);
  font: 700 11px "Manrope", sans-serif; cursor: pointer; transition: border-color .2s, background .2s;
}
.language-trigger:hover, .language-switcher.is-open .language-trigger { border-color: var(--teal); background: rgba(255,255,255,.85); }
.language-trigger svg { width: 16px; fill: none; stroke: var(--teal); stroke-width: 1.5; }
.language-chevron {
  width: 7px; height: 7px; margin-top: -4px; border-right: 1.5px solid #81908d; border-bottom: 1.5px solid #81908d;
  transform: rotate(45deg); transition: transform .2s;
}
.language-switcher.is-open .language-chevron { margin-top: 4px; transform: rotate(225deg); }
.language-menu {
  position: absolute; z-index: 50; top: calc(100% + 9px); right: 0; width: 158px; padding: 7px;
  visibility: hidden; opacity: 0; transform: translateY(-7px); border: 1px solid rgba(12, 109, 104, .12);
  border-radius: 9px; background: rgba(255,255,255,.97); box-shadow: 0 18px 45px rgba(20, 68, 63, .15);
  backdrop-filter: blur(14px); transition: opacity .2s, transform .2s, visibility .2s;
}
.language-switcher.is-open .language-menu { visibility: visible; opacity: 1; transform: translateY(0); }
.language-menu button {
  width: 100%; padding: 10px 9px; display: flex; align-items: center; gap: 10px; border: 0; border-radius: 6px;
  color: #3c5351; background: transparent; font: 600 12px "DM Sans", sans-serif; text-align: left; cursor: pointer;
}
.language-menu button:hover, .language-menu button.is-active { color: var(--teal); background: #edf5f1; }
.language-menu button span { min-width: 25px; color: #8a9996; font: 700 9px "Manrope", sans-serif; letter-spacing: .08em; }
.header-cta {
  display: flex; align-items: center; gap: 9px; padding: 12px 18px;
  color: #fff; background: var(--teal); border-radius: 6px; font-size: 13px; font-weight: 700;
  box-shadow: 0 8px 24px rgba(12, 109, 104, .16);
}
.header-cta svg { width: 17px; fill: currentColor; }

.hero {
  position: relative; min-height: 760px; overflow: hidden;
  background: linear-gradient(108deg, #f7f6f0 0%, #edf2ed 58%, #e0ebe5 100%);
}
.hero::before {
  content: ""; position: absolute; inset: 0;
  background-image: linear-gradient(rgba(12, 109, 104, .035) 1px, transparent 1px), linear-gradient(90deg, rgba(12, 109, 104, .035) 1px, transparent 1px);
  background-size: 52px 52px; mask-image: linear-gradient(90deg, #000, transparent 75%);
}
.hero-glow { position: absolute; width: 500px; height: 500px; right: 6%; top: 120px; border-radius: 50%; background: rgba(104, 164, 142, .18); filter: blur(60px); }
.hero-grid { position: relative; z-index: 2; min-height: 760px; display: grid; grid-template-columns: 1.02fr .98fr; align-items: end; gap: 72px; padding-top: 138px; }
.hero-copy { align-self: center; padding-bottom: 34px; }
.availability { display: flex; align-items: center; gap: 9px; margin-bottom: 25px; color: var(--teal); font-size: 11px; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; }
.availability span { width: 7px; height: 7px; border-radius: 50%; background: #36a46f; box-shadow: 0 0 0 5px rgba(54, 164, 111, .12); }
h1, h2 { margin: 0; font-family: "Manrope", sans-serif; letter-spacing: -.055em; }
h1 { max-width: 670px; font-size: clamp(52px, 5.4vw, 78px); line-height: 1.01; font-weight: 600; }
h1 em, h2 em { color: var(--teal); font-style: normal; }
.hero-title-gradient {
  padding-bottom: .09em;
  color: var(--ink);
  line-height: 1.08;
  overflow: visible;
}
@supports ((background-clip: text) or (-webkit-background-clip: text)) {
  .hero-title-gradient {
    background-image: linear-gradient(
      90deg,
      #102a2a 0%,
      #0c6d68 28%,
      #75b4ad 50%,
      #0c6d68 72%,
      #102a2a 100%
    );
    background-size: 300% 100%;
    background-position: 0% 50%;
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    -webkit-text-fill-color: transparent;
    animation: hero-gradient-shift 8s cubic-bezier(.45, 0, .55, 1) infinite alternate;
  }
}
@keyframes hero-gradient-shift {
  from { background-position: 0% 50%; }
  to { background-position: 100% 50%; }
}
.hero-copy > p { max-width: 590px; margin: 26px 0 30px; color: var(--ink-soft); font-size: 17px; line-height: 1.8; }
.hero-intro { margin: 16px 0 6px !important; }
.hero-copy > .hero-intro + p { margin-top: 0; }
.hero-actions { display: flex; align-items: center; gap: 30px; }
.btn { min-height: 54px; padding: 0 23px; display: inline-flex; align-items: center; justify-content: center; gap: 16px; border-radius: 6px; font-size: 13px; font-weight: 700; transition: transform .2s, box-shadow .2s; }
.btn:hover { transform: translateY(-2px); }
.btn-primary { color: #fff; background: var(--teal); box-shadow: 0 12px 28px rgba(12, 109, 104, .2); }
.btn-primary svg { width: 17px; fill: none; stroke: currentColor; stroke-width: 1.6; }
.text-link { display: flex; align-items: center; gap: 11px; font-size: 14px; font-weight: 700; }
.text-link small { display: block; margin-bottom: 3px; color: #81908d; font-size: 10px; font-weight: 500; text-transform: uppercase; letter-spacing: .08em; }
.phone-icon { width: 40px; height: 40px; display: grid; place-items: center; border: 1px solid #cbd7d1; border-radius: 50%; color: var(--teal); }
.phone-icon svg { width: 17px; height: 17px; fill: none; stroke: currentColor; stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; }
.hero-proof { display: flex; align-items: center; margin-top: 38px; color: var(--ink); }
.hero-proof > div:not(.avatars):not(.proof-line) { display: grid; }
.hero-proof strong { font: 700 14px "Manrope", sans-serif; }
.hero-proof small { margin-top: 3px; color: #81908d; font-size: 10px; }
.avatars { display: flex; margin-right: 12px; }
.avatars span { width: 31px; height: 31px; margin-left: -7px; border: 2px solid #f3f4ef; border-radius: 50%; background: center/cover no-repeat; }
.avatars span:first-child { margin: 0; background-image: url("/uploads/5.jpg"); }
.avatars span:nth-child(2) { background-image: url("/uploads/6.jpg"); }
.avatars span:nth-child(3) { background-image: url("/uploads/7.jpg"); }
.proof-line { width: 1px; height: 33px; margin: 0 18px; background: #ccd6d1; }
.hero-visual { position: relative; align-self: end; height: 620px; }
.image-frame {
  position: absolute; inset: 0 14px 0 35px; overflow: hidden; border-radius: 230px 230px 0 0;
  background: #d5e2db; box-shadow: 0 35px 80px rgba(20, 68, 63, .14);
}
.image-frame::after { content: ""; position: absolute; inset: 0; box-shadow: inset 0 0 0 1px rgba(255,255,255,.45); border-radius: inherit; }
.image-frame img { width: 100%; height: 100%; object-fit: cover; object-position: 48% 22%; }
.profile-card, .result-card {
  position: absolute; z-index: 3; display: flex; align-items: center; gap: 11px;
  border: 1px solid rgba(255,255,255,.7); background: rgba(255,255,255,.88); backdrop-filter: blur(14px);
  border-radius: 10px; box-shadow: 0 16px 35px rgba(20, 68, 63, .12);
}
.profile-card { left: 0; bottom: 30px; padding: 15px 19px; }
.profile-card span:last-child, .result-card span:last-child { display: grid; }
.profile-card strong, .result-card strong { font: 700 12px "Manrope", sans-serif; }
.profile-card small, .result-card small { margin-top: 3px; color: #758582; font-size: 9px; }
.check { width: 30px; height: 30px; display: grid; place-items: center; color: white; background: var(--teal); border-radius: 50%; }
.check svg { width: 17px; height: 17px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.result-card { right: -10px; top: 180px; padding: 12px 16px; }
.result-icon { width: 34px; height: 34px; display: grid; place-items: center; color: var(--teal); background: #e3efea; border-radius: 7px; }
.result-icon svg { width: 20px; fill: none; stroke: currentColor; stroke-width: 1.5; }

.trust-strip { background: var(--ink); color: #fff; }
.trust-grid { min-height: 112px; display: grid; grid-template-columns: repeat(4, 1fr); }
.trust-grid > div { display: flex; align-items: center; gap: 16px; border-right: 1px solid rgba(255,255,255,.1); }
.trust-grid > div:not(:first-child) { padding-left: 30px; }
.trust-grid > div:last-child { border: 0; }
.trust-icon { font: 500 11px "Manrope"; color: #69aaa4; letter-spacing: .1em; }
.trust-grid p { display: grid; margin: 0; }
.trust-grid strong { font: 600 13px "Manrope"; }
.trust-grid small { margin-top: 5px; color: #8fa3a0; font-size: 10px; }

.section { padding: 125px 0; }
.kicker { display: inline-flex; align-items: center; gap: 11px; margin-bottom: 20px; color: var(--teal); font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: .2em; }
.kicker::before { content: ""; width: 28px; height: 1px; background: currentColor; }
.section-head { display: grid; grid-template-columns: 1.45fr .55fr; align-items: end; gap: 80px; margin-bottom: 55px; }
.section-head h2, .process h2, .about h2 { font-size: clamp(38px, 4vw, 54px); line-height: 1.12; font-weight: 600; }
.section-head > p, .results-head > p { margin: 0 0 5px; color: #687976; font-size: 14px; line-height: 1.8; }
.service-grid { display: grid; grid-template-columns: repeat(3, 1fr); border: 1px solid var(--line); }
.service-card { position: relative; min-height: 380px; padding: 30px 30px 26px; display: flex; flex-direction: column; background: #fff; border-right: 1px solid var(--line); transition: transform .25s, box-shadow .25s; }
.service-card:last-child { border: 0; }
.service-card:hover { z-index: 2; transform: translateY(-7px); box-shadow: 0 24px 60px rgba(20, 68, 63, .1); }
.service-no { align-self: flex-end; color: #9aa8a4; font: 500 10px "Manrope"; letter-spacing: .1em; }
.service-symbol { width: 68px; height: 68px; margin: 26px 0 34px; display: grid; place-items: center; color: var(--teal); border-radius: 50%; background: #eef4f0; }
.service-symbol svg { width: 34px; fill: none; stroke: currentColor; stroke-width: 1.3; }
.service-card .tag { color: var(--teal); font-size: 9px; font-weight: 700; text-transform: uppercase; letter-spacing: .14em; }
.service-card h3 { margin: 10px 0 12px; font: 650 22px "Manrope"; letter-spacing: -.03em; }
.service-card p { margin: 0; color: #70807d; font-size: 13px; line-height: 1.7; }
.service-card > a { position: absolute; right: 25px; bottom: 25px; width: 36px; height: 36px; display: grid; place-items: center; color: var(--teal); border: 1px solid var(--line); border-radius: 50%; }
.service-card > a::before { content: ""; width: 9px; height: 9px; border-top: 1.5px solid currentColor; border-right: 1.5px solid currentColor; }
.service-card.featured { background: var(--teal); color: white; }
.service-card.featured .service-no, .service-card.featured .tag { color: #a8d4ce; }
.service-card.featured .service-symbol { color: white; background: rgba(255,255,255,.12); }
.service-card.featured p { color: #c0dbd6; }
.service-card.featured > a { color: white; border-color: rgba(255,255,255,.25); }

.process { overflow: hidden; color: white; background: var(--ink); }
.process-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: 120px; align-items: center; }
.kicker.light { color: #83b9b2; }
.process-copy > p { max-width: 440px; margin: 25px 0 30px; color: #a8b8b5; font-size: 14px; line-height: 1.8; }
.btn-light { color: var(--ink); background: white; }
.steps { position: relative; margin: 0; padding: 0; list-style: none; }
.steps::before { content: ""; position: absolute; left: 20px; top: 20px; bottom: 20px; width: 1px; background: rgba(255,255,255,.14); }
.steps li { position: relative; display: grid; grid-template-columns: 42px 1fr; gap: 25px; padding: 25px 0; border-bottom: 1px solid rgba(255,255,255,.1); }
.steps li:last-child { border: 0; }
.steps li > span { z-index: 1; width: 42px; height: 42px; display: grid; place-items: center; color: #9bc4be; background: var(--ink); border: 1px solid rgba(255,255,255,.2); border-radius: 50%; font: 500 10px "Manrope"; }
.steps strong { font: 600 17px "Manrope"; }
.steps p { margin: 7px 0 0; color: #91a5a1; font-size: 13px; line-height: 1.6; }

.results { background: var(--cream); }
.results-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.results-grid figure { position: relative; height: 430px; margin: 0; overflow: hidden; background: #ddd; }
.results-grid img { width: 100%; height: 100%; object-fit: cover; }
.results-grid figure:nth-child(2) img { object-position: center 43%; }
.results-grid figcaption { position: absolute; left: 14px; right: 14px; bottom: 14px; display: flex; justify-content: space-between; padding: 10px 14px; color: white; background: rgba(7, 46, 44, .7); backdrop-filter: blur(8px); font-size: 9px; font-weight: 700; text-transform: uppercase; letter-spacing: .15em; }
.disclaimer { margin: 17px 0 0; color: #87928f; font-size: 10px; text-align: right; }

.about { background: #fff; }
.about-grid { display: grid; grid-template-columns: .88fr 1.12fr; gap: 100px; align-items: center; }
.about-photo { position: relative; height: 610px; overflow: hidden; background: #e5e5e5; }
.about-photo img { width: 100%; height: 100%; object-fit: cover; object-position: center 32%; }
.photo-label { position: absolute; left: 0; bottom: 0; padding: 15px 23px; color: #fff; background: var(--teal); font-size: 10px; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; }
.about-copy .large { margin: 30px 0 18px; padding-left: 22px; border-left: 2px solid var(--teal); color: var(--ink); font: 500 18px/1.65 "Manrope"; }
.about-copy > p:not(.large) { color: #687976; font-size: 14px; line-height: 1.85; }
.signature { display: grid; margin-top: 30px; }
.signature strong { font: 700 18px "Manrope"; }
.signature span { margin-top: 5px; color: var(--teal); font-size: 10px; text-transform: uppercase; letter-spacing: .12em; }

.faq { position: relative; overflow: hidden; background: #f3f6f1; }
.faq::before {
  content: ""; position: absolute; width: 430px; height: 430px; top: -250px; right: -180px;
  border: 80px solid rgba(12, 109, 104, .045); border-radius: 50%;
}
.faq-head { position: relative; max-width: 720px; margin: 0 auto 52px; text-align: center; }
.faq-head .kicker { justify-content: center; }
.faq-head h2 { font-size: clamp(38px, 4vw, 54px); line-height: 1.12; font-weight: 600; }
.faq-head h2 em { color: var(--teal); font-style: normal; }
.faq-head p { max-width: 610px; margin: 20px auto 0; color: #687976; font-size: 14px; line-height: 1.8; }
.faq-grid { position: relative; display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; align-items: start; }
.faq-column { display: grid; gap: 14px; }
.faq details {
  overflow: hidden; border: 1px solid #d8e2dc; border-radius: 10px; background: rgba(255,255,255,.9);
  box-shadow: 0 8px 24px rgba(20, 68, 63, .035); transition: border-color .2s, box-shadow .2s;
}
.faq details[open] { border-color: rgba(12, 109, 104, .38); box-shadow: 0 16px 35px rgba(20, 68, 63, .07); }
.faq summary {
  position: relative; min-height: 78px; padding: 23px 64px 23px 25px; display: flex; align-items: center;
  cursor: pointer; list-style: none; color: var(--ink); font: 650 16px/1.45 "Manrope", sans-serif;
  transition: color .25s, background-color .25s;
}
.faq summary:hover { color: var(--teal); background: rgba(229, 240, 235, .38); }
.faq details[open] summary { color: var(--teal); }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+"; position: absolute; right: 22px; top: 50%; width: 30px; height: 30px;
  display: grid; place-items: center; transform: translateY(-50%); border-radius: 50%;
  color: var(--teal); background: #e5f0eb; font: 400 21px/1 "DM Sans", sans-serif; transition: transform .2s, color .2s, background .2s;
}
.faq details[open] summary::after { transform: translateY(-50%) rotate(135deg); color: white; background: var(--teal); }
.faq-answer { padding: 0 25px 25px; border-top: 1px solid #edf1ee; }
.faq-answer p { margin: 19px 0 18px; color: #687976; font-size: 13px; line-height: 1.75; }
.faq-wa {
  display: inline-flex; align-items: center; gap: 12px; padding: 10px 15px; border-radius: 5px;
  color: white; background: var(--teal); font-size: 11px; font-weight: 700; transition: transform .2s, box-shadow .2s;
}
.faq-wa:hover { transform: translateY(-2px); box-shadow: 0 9px 20px rgba(12, 109, 104, .18); }
.arrow-icon { position: relative; width: 15px; height: 10px; display: inline-block; flex: 0 0 15px; }
.arrow-icon::before { content: ""; position: absolute; top: 4px; left: 0; width: 13px; border-top: 1.5px solid currentColor; }
.arrow-icon::after { content: ""; position: absolute; top: 1px; right: 0; width: 6px; height: 6px; border-top: 1.5px solid currentColor; border-right: 1.5px solid currentColor; transform: rotate(45deg); }

.cta-section { padding: 0 0 100px; background: white; }
.cta-panel { position: relative; min-height: 330px; padding: 70px; display: grid; grid-template-columns: 1.25fr .75fr; align-items: center; gap: 60px; overflow: hidden; color: white; background: var(--teal); }
.cta-panel h2 { font-size: clamp(36px, 4vw, 53px); line-height: 1.12; font-weight: 600; }
.cta-side { position: relative; z-index: 2; }
.cta-side p { margin: 0 0 22px; color: #c1ded9; font-size: 14px; line-height: 1.75; }
.cta-shape { position: absolute; width: 340px; height: 340px; right: -130px; top: -130px; border: 70px solid rgba(255,255,255,.05); border-radius: 50%; }

footer { position: relative; padding: 40px 0 24px; overflow: hidden; color: #a3b3b0; background: #0a2222; }
footer::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(circle at 82% 18%, rgba(117, 180, 173, .08), transparent 28%);
}
.footer-decor-ring {
  position: absolute; pointer-events: none; border: 1px solid rgba(117, 180, 173, .11); border-radius: 50%;
}
.footer-decor-ring::after {
  content: ""; position: absolute; inset: 24%; border: 1px solid rgba(117, 180, 173, .08); border-radius: inherit;
}
.footer-decor-ring-one { width: 340px; height: 340px; top: -205px; right: 10%; }
.footer-decor-ring-two { width: 210px; height: 210px; bottom: -135px; left: 7%; }
.footer-decor-icon {
  position: absolute; width: 245px; right: 1.5%; top: 85px; pointer-events: none;
  fill: none; stroke: #75b4ad; stroke-width: 1.25; stroke-linecap: round; opacity: .075;
  transform: rotate(8deg);
}
.footer-content, .footer-map-wrap { position: relative; z-index: 1; }
.footer-content { display: grid; grid-template-columns: 0.6fr 1.4fr; gap: 48px; margin-bottom: 26px; align-items: start; }
.footer-brand-block { }
.footer-brand .brand-mark { color: #75b4ad; border-color: rgba(255,255,255,.15); }
.footer-brand strong { color: white; }
.footer-social { margin-top: 18px; }
.footer-social a { width: 38px; height: 38px; color: #9bc4be; border-color: rgba(255,255,255,.13); background: rgba(255,255,255,.035); }
.footer-social a:hover { color: white; background: var(--teal); border-color: var(--teal); }
.footer-social svg { width: 17px; height: 17px; }
.footer-copy { margin: 16px 0 0; font-size: 12px; line-height: 1.7; color: #8fa3a0; }
.cookie-settings-link {
  margin-top: 12px; padding: 0; border: 0; border-bottom: 1px solid rgba(155,196,190,.35);
  color: #9bc4be; background: transparent; font: 600 11px "DM Sans", sans-serif; cursor: pointer;
}
.cookie-settings-link:hover { color: white; border-color: white; }
.footer-details { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 28px; }
.footer-info h3 { margin: 0 0 10px; color: white; font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: .16em; }
.footer-info a, .footer-info p { display: block; margin: 0 0 8px; color: #e9f1ef; font-size: 15px; line-height: 1.7; }
.footer-seo a { font-size: 13px; margin: 0 0 6px; }
.footer-map-wrap { margin-top: 8px; }
.footer-map-container { display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 30px; align-items: start; }
.footer-map-content { position: relative; grid-column: 1; min-height: 280px; }
.footer-map-content iframe { display: none; width: 100%; min-height: 280px; border: 0; border-radius: 16px; box-shadow: 0 12px 35px rgba(0,0,0,.2); }
.footer-map-content iframe.is-loaded { display: block; }
.map-consent-placeholder {
  min-height: 280px; padding: 32px; display: flex; flex-direction: column; align-items: center; justify-content: center;
  border: 1px solid rgba(155,196,190,.18); border-radius: 16px; text-align: center;
  background: linear-gradient(145deg, rgba(255,255,255,.055), rgba(117,180,173,.06));
}
.map-consent-placeholder[hidden] { display: none; }
.map-consent-placeholder svg { width: 35px; margin-bottom: 13px; fill: none; stroke: #75b4ad; stroke-width: 1.4; }
.map-consent-placeholder strong { color: white; font: 650 15px "Manrope", sans-serif; }
.map-consent-placeholder p { max-width: 330px; margin: 8px 0 16px; color: #8fa3a0; font-size: 12px; line-height: 1.6; }
.map-consent-button {
  min-height: 38px; padding: 0 15px; border: 1px solid rgba(155,196,190,.35); border-radius: 5px;
  color: #d8e8e5; background: rgba(255,255,255,.05); font-size: 11px; font-weight: 700; cursor: pointer;
}
.map-consent-button:hover { color: white; border-color: #75b4ad; background: rgba(117,180,173,.12); }
.footer-address-box { grid-column: 2; padding: 24px; background: #f5f3ec; border-radius: 16px; height: fit-content; }
.footer-address-box h3 { margin: 0 0 12px; color: var(--ink); font-size: 14px; font-weight: 700; text-transform: uppercase; letter-spacing: .12em; }
.footer-address-box p { margin: 0 0 10px; color: #687976; font-size: 14px; line-height: 1.6; }
.footer-address-box p:last-of-type { margin-bottom: 16px; }
.address-note { color: #81908d; font-size: 12px; }
.footer-button-group { display: flex; gap: 12px; margin-top: 16px; }
.btn-directions, .btn-appointment { display: inline-flex; align-items: center; justify-content: center; min-height: 44px; padding: 0 16px; border-radius: 6px; font-size: 13px; font-weight: 700; transition: transform .2s, box-shadow .2s; flex: 1; }
.btn-directions { background: var(--teal); color: white; box-shadow: 0 8px 20px rgba(12, 109, 104, .2); }
.btn-directions:hover { transform: translateY(-2px); box-shadow: 0 12px 28px rgba(12, 109, 104, .28); }
.btn-appointment { background: white; color: var(--teal); border: 2px solid var(--teal); box-shadow: 0 8px 20px rgba(12, 109, 104, .1); }
.btn-appointment:hover { transform: translateY(-2px); box-shadow: 0 12px 28px rgba(12, 109, 104, .2); }
.btn-directions svg { width: 18px; height: 18px; fill: currentColor; }
.floating-wa {
  position: fixed; z-index: 30; right: 22px; bottom: 22px; width: 58px; height: 58px;
  display: grid; place-items: center; padding: 12px; color: white; background: linear-gradient(135deg, #25d366, #20b958);
  border-radius: 50%; overflow: hidden; box-shadow: 0 14px 32px rgba(37, 211, 102, .28); transition: transform .2s, box-shadow .2s;
}
.floating-wa:hover { transform: translateY(-2px); box-shadow: 0 16px 36px rgba(37, 211, 102, .34); }
.floating-wa svg { width: 100%; height: 100%; fill: currentColor; }

.cookie-banner {
  position: fixed; z-index: 90; right: 24px; bottom: 24px; width: min(960px, calc(100% - 48px)); padding: 22px;
  display: grid; grid-template-columns: minmax(0, 1fr) auto; align-items: center; gap: 28px;
  visibility: hidden; opacity: 0; transform: translateY(22px); border: 1px solid rgba(12,109,104,.16);
  border-radius: 14px; background: rgba(255,255,255,.97); box-shadow: 0 24px 70px rgba(7,46,44,.2);
  backdrop-filter: blur(18px); transition: opacity .3s, transform .3s, visibility .3s;
}
.cookie-banner.is-visible { visibility: visible; opacity: 1; transform: translateY(0); }
.cookie-banner-copy { min-width: 0; }
.cookie-kicker { display: block; margin-bottom: 6px; color: var(--teal); font-size: 9px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; }
.cookie-banner h2 { margin: 0 0 5px; font: 700 20px "Manrope", sans-serif; letter-spacing: -.03em; }
.cookie-banner p { max-width: 590px; margin: 0; color: #687976; font-size: 12px; line-height: 1.65; }
.cookie-banner-actions { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; min-width: 330px; }
.cookie-action, .cookie-preferences {
  min-height: 43px; padding: 0 16px; border-radius: 6px; font-size: 11px; font-weight: 700; cursor: pointer;
}
.cookie-accept, .cookie-save { border: 1px solid var(--teal); color: white; background: var(--teal); }
.cookie-reject, .cookie-dialog-reject { border: 1px solid var(--ink); color: white; background: var(--ink); }
.cookie-preferences { grid-column: 1 / -1; border: 1px solid #ccd9d3; color: var(--ink); background: white; }
.cookie-action:hover, .cookie-preferences:hover { transform: translateY(-1px); box-shadow: 0 7px 16px rgba(20,68,63,.1); }

.cookie-modal {
  position: fixed; z-index: 100; inset: 0; padding: 24px; display: grid; place-items: center;
  visibility: hidden; opacity: 0; transition: opacity .25s, visibility .25s;
}
.cookie-modal.is-open { visibility: visible; opacity: 1; }
.cookie-modal-backdrop { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; background: rgba(4,25,25,.66); cursor: default; }
.cookie-dialog {
  position: relative; z-index: 1; width: min(680px, 100%); max-height: min(780px, calc(100vh - 48px)); padding: 32px;
  overflow-y: auto; border-radius: 15px; background: white; box-shadow: 0 28px 90px rgba(0,0,0,.25);
  transform: translateY(16px) scale(.985); transition: transform .3s cubic-bezier(.22,1,.36,1);
}
.cookie-modal.is-open .cookie-dialog { transform: translateY(0) scale(1); }
.cookie-close {
  position: absolute; top: 18px; right: 18px; width: 36px; height: 36px; border: 1px solid #dce5e0;
  border-radius: 50%; background: #f6f8f5; cursor: pointer;
}
.cookie-close span::before, .cookie-close span::after {
  content: ""; position: absolute; top: 17px; left: 10px; width: 15px; border-top: 1.5px solid var(--ink);
}
.cookie-close span::before { transform: rotate(45deg); }
.cookie-close span::after { transform: rotate(-45deg); }
.cookie-dialog > h2 { margin: 0; padding-right: 42px; font: 700 28px/1.2 "Manrope", sans-serif; letter-spacing: -.04em; }
.cookie-dialog-intro { margin: 12px 0 24px; color: #687976; font-size: 13px; line-height: 1.7; }
.cookie-notice { margin-bottom: 12px; padding: 18px; border-radius: 9px; background: #f1f5f1; }
.cookie-notice h3, .cookie-category h3 { margin: 0 0 7px; font: 700 15px "Manrope", sans-serif; }
.cookie-notice p, .cookie-category p { margin: 0; color: #687976; font-size: 12px; line-height: 1.7; }
.cookie-category {
  margin-top: 10px; padding: 19px; display: grid; grid-template-columns: 1fr auto; align-items: start; gap: 20px;
  border: 1px solid #dce5e0; border-radius: 9px;
}
.cookie-category-label { display: block; margin-bottom: 5px; color: var(--teal); font-size: 9px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.cookie-toggle { position: relative; display: inline-flex; cursor: pointer; }
.cookie-toggle input { position: absolute; opacity: 0; pointer-events: none; }
.cookie-toggle > span { position: relative; width: 45px; height: 25px; border-radius: 20px; background: #c9d4cf; transition: background .2s; }
.cookie-toggle > span::after {
  content: ""; position: absolute; top: 3px; left: 3px; width: 19px; height: 19px; border-radius: 50%;
  background: white; box-shadow: 0 2px 6px rgba(0,0,0,.15); transition: transform .2s;
}
.cookie-toggle input:checked + span { background: var(--teal); }
.cookie-toggle input:checked + span::after { transform: translateX(20px); }
.cookie-toggle-disabled { opacity: .58; cursor: not-allowed; }
.cookie-no-tracking { margin: 14px 0 0; color: #7c8c89; font-size: 11px; line-height: 1.6; }
.cookie-dialog-actions { margin-top: 22px; display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.cookie-modal-open { overflow: hidden; }

@media (max-width: 980px) {
  nav { display: none; }
  .header-social { margin-left: auto; }
  .language-switcher { margin-left: 0; }
  .hero-grid { grid-template-columns: 1fr .82fr; gap: 20px; }
  .hero-visual { height: 550px; }
  .result-card { display: none; }
  .section-head { grid-template-columns: 1fr; gap: 20px; }
  .section-head > p { max-width: 600px; }
  .process-grid { gap: 60px; }
  .about-grid { gap: 55px; }
  .faq-grid { gap: 14px; }
  .trust-grid { grid-template-columns: repeat(2, 1fr); padding: 15px 0; }
  .trust-grid > div { min-height: 72px; }
  .trust-grid > div:nth-child(2) { border-right: 0; }
  .trust-grid > div:nth-child(3) { padding-left: 0; }
}

@media (max-width: 720px) {
  .container { width: min(100% - 32px, 1180px); }
  .site-header { position: absolute; }
  .nav-wrap { height: 76px; }
  .header-cta { padding: 10px 13px; }
  .header-cta svg { width: 16px; }
  .header-social { position: absolute; top: 84px; right: 16px; margin: 0; }
  .header-social a { width: 31px; height: 31px; background: rgba(255,255,255,.72); backdrop-filter: blur(8px); }
  .language-switcher { margin-left: auto; }
  .hero { min-height: auto; }
  .hero-grid { min-height: auto; grid-template-columns: 1fr; padding-top: 125px; gap: 40px; }
  .hero-copy { padding-bottom: 0; }
  h1 { font-size: 47px; }
  .hero-copy > p { margin: 21px 0 25px; font-size: 15px; line-height: 1.7; }
  .hero-actions { align-items: stretch; flex-direction: column; gap: 18px; }
  .btn { width: 100%; }
  .text-link {
    width: auto;
    min-height: 40px;
    justify-content: flex-start;
    margin-left: 4px;
    padding: 0;
    border: 0;
    background: transparent;
  }
  .text-link .phone-icon {
    flex: 0 0 40px;
    color: white;
    background: var(--teal);
    border-color: var(--teal);
  }
  .hero-proof { margin-top: 28px; }
  .hero-proof { width: 100%; }
  .hero-proof .avatars { display: flex; flex: 0 0 auto; margin-right: 9px; }
  .hero-proof .avatars span { width: 27px; height: 27px; }
  .hero-proof > div:not(.avatars):not(.proof-line) { min-width: 0; flex: 1; }
  .hero-proof small { line-height: 1.4; }
  .hero-visual { height: 470px; }
  .image-frame { inset: 0 10px; border-radius: 190px 190px 0 0; }
  .profile-card { left: 0; bottom: 18px; }
  .trust-grid { grid-template-columns: 1fr 1fr; }
  .trust-grid > div, .trust-grid > div:not(:first-child) { padding: 12px 8px; border-right: 0; }
  .trust-grid > div:nth-child(odd) { border-right: 1px solid rgba(255,255,255,.1); }
  .section { padding: 82px 0; }
  .section-head { margin-bottom: 35px; }
  .section-head h2, .process h2, .about h2 { font-size: 38px; }
  .service-grid { grid-template-columns: 1fr; }
  .service-card { min-height: 330px; border-right: 0; border-bottom: 1px solid var(--line); }
  .process-grid { grid-template-columns: 1fr; gap: 45px; }
  .results-grid { grid-template-columns: 1fr; }
  .results-grid figure { height: 420px; }
  .results-grid figure:not(:first-child) { display: none; }
  .about-grid { grid-template-columns: 1fr; gap: 45px; }
  .about-photo { height: 490px; }
  .faq-head { margin-bottom: 35px; text-align: left; }
  .faq-head .kicker { justify-content: flex-start; }
  .faq-grid { grid-template-columns: 1fr; }
  .faq-column { gap: 12px; }
  .faq summary { min-height: 70px; padding: 19px 58px 19px 19px; font-size: 15px; }
  .faq summary::after { right: 18px; }
  .faq-answer { padding: 0 19px 21px; }
  .faq-answer p { font-size: 13px; }
  .cta-section { padding-bottom: 0; }
  .cta-panel { width: 100%; min-height: 500px; padding: 60px 24px; grid-template-columns: 1fr; gap: 25px; }
  .cta-panel h2 { font-size: 39px; }
  .footer-content { flex-direction: column; gap: 24px; }
  .footer-decor-ring-one { right: -150px; }
  .footer-decor-ring-two { left: -120px; }
  .footer-decor-icon { width: 190px; right: -65px; top: 155px; opacity: .055; }
  .footer-details { grid-template-columns: 1fr; gap: 20px; }
  .footer-map-container { grid-template-columns: 1fr; }
  .footer-map-content { grid-column: 1; }
  .footer-address-box { grid-column: 1; }
  .footer-map-content iframe { min-height: 220px; }
  .footer-map-content, .map-consent-placeholder { min-height: 220px; }
  .footer-button-group { flex-direction: column; }
  .btn-directions, .btn-appointment { flex: none; width: 100%; }
  .cookie-banner {
    right: 12px; bottom: 12px; width: calc(100% - 24px); padding: 18px; grid-template-columns: 1fr; gap: 16px;
  }
  .cookie-banner-actions { min-width: 0; }
  .cookie-action, .cookie-preferences { padding: 0 10px; }
  .cookie-modal { padding: 10px; }
  .cookie-dialog { max-height: calc(100vh - 20px); padding: 25px 18px 20px; border-radius: 12px; }
  .cookie-dialog > h2 { padding-right: 44px; font-size: 23px; }
  .cookie-close { top: 14px; right: 14px; }
  .cookie-category { padding: 16px; gap: 12px; }
  .cookie-dialog-actions { grid-template-columns: 1fr; }
}

@media (max-width: 390px) {
  .brand strong { font-size: 15px; }
  .brand-mark { width: 38px; height: 38px; }
  .header-cta { font-size: 0; width: 40px; height: 40px; padding: 0; justify-content: center; }
  .language-switcher { margin-right: 8px; }
  .language-trigger { min-width: 58px; height: 40px; padding: 0 8px; gap: 5px; }
  .language-trigger svg { width: 14px; }
  .language-chevron { display: none; }
  h1 { font-size: 42px; }
  .hero-proof small { max-width: 85px; }
  .hero-proof .avatars { display: flex; }
}

html[dir="rtl"] body { direction: rtl; }
html[dir="rtl"] body, html[dir="rtl"] button { font-family: "Noto Sans Arabic", "DM Sans", sans-serif; }
html[dir="rtl"] h1, html[dir="rtl"] h2, html[dir="rtl"] h3,
html[dir="rtl"] .faq summary, html[dir="rtl"] .signature strong { font-family: "Noto Sans Arabic", "Manrope", sans-serif; letter-spacing: 0; }
html[dir="rtl"] .kicker, html[dir="rtl"] .tag, html[dir="rtl"] .footer-info h3,
html[dir="rtl"] .text-link small, html[dir="rtl"] .photo-label,
html[dir="rtl"] .signature span, html[dir="rtl"] .results-grid figcaption {
  letter-spacing: 0; text-transform: none;
}
html[dir="rtl"] nav { margin-right: auto; margin-left: 38px; }
html[dir="rtl"] .header-social { margin-right: 0; margin-left: 12px; }
html[dir="rtl"] .language-switcher { margin-right: 0; margin-left: 12px; }
html[dir="rtl"] .language-menu { right: auto; left: 0; }
html[dir="rtl"] .language-menu button { text-align: right; }
html[dir="rtl"] .btn svg, html[dir="rtl"] .arrow-icon { transform: scaleX(-1); }
html[dir="rtl"] .text-link, html[dir="rtl"] a[href^="tel:"], html[dir="rtl"] a[href^="mailto:"] { direction: ltr; }
html[dir="rtl"] .hero-proof .stat-number, html[dir="rtl"] .steps li > span,
html[dir="rtl"] .service-no, html[dir="rtl"] .trust-icon { direction: ltr; unicode-bidi: isolate; }
html[dir="rtl"] .hero-proof { justify-content: flex-start; }
html[dir="rtl"] .avatars { margin-right: 0; margin-left: 12px; }
html[dir="rtl"] .avatars span { margin-right: -7px; margin-left: 0; }
html[dir="rtl"] .avatars span:first-child { margin-right: 0; }
html[dir="rtl"] .trust-grid > div { padding-right: 34px; padding-left: 0; border-right: 0; border-left: 1px solid rgba(255,255,255,.1); }
html[dir="rtl"] .trust-grid > div:first-child { padding-right: 0; }
html[dir="rtl"] .trust-grid > div:last-child { border-left: 0; }
html[dir="rtl"] .service-card { border-right: 0; border-left: 1px solid var(--line); }
html[dir="rtl"] .service-card:last-child { border-left: 0; }
html[dir="rtl"] .service-card > a { right: auto; left: 25px; }
html[dir="rtl"] .service-card > a::before { transform: scaleX(-1); }
html[dir="rtl"] .steps::before { left: auto; right: 20px; }
html[dir="rtl"] .about-copy .large { padding-right: 22px; padding-left: 0; border-right: 2px solid var(--teal); border-left: 0; }
html[dir="rtl"] .photo-label { right: 0; left: auto; }
html[dir="rtl"] .disclaimer { text-align: left; }
html[dir="rtl"] .cookie-kicker, html[dir="rtl"] .cookie-category-label { letter-spacing: 0; text-transform: none; }
html[dir="rtl"] .cookie-close { right: auto; left: 18px; }
html[dir="rtl"] .cookie-dialog > h2 { padding-right: 0; padding-left: 42px; }
html[dir="rtl"] .cookie-toggle input:checked + span::after { transform: translateX(-20px); }
html[dir="rtl"] .cookie-toggle > span::after { left: auto; right: 3px; }
html[dir="rtl"] .faq summary { padding-right: 25px; padding-left: 64px; }
html[dir="rtl"] .faq summary::after { right: auto; left: 22px; }
@media (max-width: 720px) {
  html[dir="rtl"] .header-social { right: auto; left: 16px; margin: 0; }
  html[dir="rtl"] .language-switcher { margin-right: auto; margin-left: 8px; }
  html[dir="rtl"] .text-link { margin-right: 4px; margin-left: 0; }
  html[dir="rtl"] .trust-grid > div,
  html[dir="rtl"] .trust-grid > div:not(:first-child) { padding: 12px 8px; border-left: 0; }
  html[dir="rtl"] .trust-grid > div:nth-child(odd) { border-right: 0; border-left: 1px solid rgba(255,255,255,.1); }
  html[dir="rtl"] .service-card { border-left: 0; }
  html[dir="rtl"] .cookie-close { left: 14px; }
  html[dir="rtl"] .cookie-dialog > h2 { padding-left: 44px; }
  html[dir="rtl"] .faq summary { padding-right: 19px; padding-left: 58px; }
  html[dir="rtl"] .faq summary::after { left: 18px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition: none !important; }
  .hero-title-gradient { animation: none; background-position: 50% 50%; }
}
