﻿:root {
  --oz-bg: #fbf8f2;
  --oz-surface: #ffffff;
  --oz-soft: #f1f4f5;
  --oz-navy: #071d33;
  --oz-ink: #12263a;
  --oz-muted: #64727f;
  --oz-line: rgba(7, 29, 51, 0.12);
  --oz-accent: #0aa6a6;
  --oz-accent-dark: #087b7d;
  --oz-gold: #b9924a;
  --oz-radius: 22px;
  --oz-radius-sm: 14px;
  --oz-shadow: 0 30px 90px rgba(7, 29, 51, 0.13);
  --oz-soft-shadow: 0 18px 52px rgba(7, 29, 51, 0.075);
}

* {
  box-sizing: border-box;
}

html {
  scroll-padding-top: 92px;
}

body {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--oz-ink);
  background:
    radial-gradient(circle at 88% 6%, rgba(10, 166, 166, 0.08), transparent 34rem),
    linear-gradient(180deg, rgba(255, 255, 255, 0.5), transparent 22rem),
    var(--oz-bg);
  text-rendering: optimizeLegibility;
}

html[lang="hi"] body {
  font-family: "Noto Sans Devanagari", "Inter", system-ui, sans-serif;
}

html[lang="ar"] body {
  font-family: "Noto Sans Arabic", "Inter", system-ui, sans-serif;
}

html[lang="zh"] body {
  font-family: "Noto Sans SC", "Inter", system-ui, sans-serif;
}

html[lang="ko"] body {
  font-family: "Noto Sans KR", "Inter", system-ui, sans-serif;
}

html[dir="rtl"] {
  text-align: right;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
}

a:focus-visible,
button:focus-visible,
.btn:focus-visible,
.form-control:focus-visible,
.form-select:focus-visible {
  outline: 3px solid rgba(10, 166, 166, 0.35);
  outline-offset: 3px;
}

p {
  color: var(--oz-muted);
  line-height: 1.78;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Sora", "Inter", sans-serif;
  color: var(--oz-navy);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.05;
}

h1 {
  font-size: clamp(2.72rem, 10vw, 6.05rem);
  letter-spacing: -0.055em;
}

h2 {
  font-size: clamp(2rem, 5.6vw, 3.85rem);
  letter-spacing: -0.045em;
}

h3 {
  font-size: 1.18rem;
}

html[lang="hi"] body h1,
html[lang="hi"] body h2,
html[lang="hi"] body h3,
html[lang="hi"] body h4,
html[lang="hi"] body h5,
html[lang="hi"] body h6 {
  font-family: "Noto Sans Devanagari", "Inter", system-ui, sans-serif;
}

html[lang="ar"] body h1,
html[lang="ar"] body h2,
html[lang="ar"] body h3,
html[lang="ar"] body h4,
html[lang="ar"] body h5,
html[lang="ar"] body h6 {
  font-family: "Noto Sans Arabic", "Inter", system-ui, sans-serif;
}

html[lang="zh"] body h1,
html[lang="zh"] body h2,
html[lang="zh"] body h3,
html[lang="zh"] body h4,
html[lang="zh"] body h5,
html[lang="zh"] body h6 {
  font-family: "Noto Sans SC", "Inter", system-ui, sans-serif;
}

html[lang="ko"] body h1,
html[lang="ko"] body h2,
html[lang="ko"] body h3,
html[lang="ko"] body h4,
html[lang="ko"] body h5,
html[lang="ko"] body h6 {
  font-family: "Noto Sans KR", "Inter", system-ui, sans-serif;
}

.section-pad {
  padding: 5.25rem 0;
}

.container-narrow {
  max-width: 860px;
}

.bg-soft {
  position: relative;
  background:
    linear-gradient(180deg, rgba(7, 29, 51, 0.035), rgba(7, 29, 51, 0.015)),
    var(--oz-soft);
  border-block: 1px solid rgba(7, 29, 51, 0.055);
}

.text-white-70 {
  color: rgba(255, 255, 255, 0.72);
}

.page-hero {
  padding: 4.75rem 0;
  background: var(--oz-bg);
}

.content-page h2 {
  margin-top: 2rem;
  font-size: 1.35rem;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin-bottom: 1.1rem;
  color: var(--oz-accent-dark);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 26px;
  height: 1px;
  background: var(--oz-accent);
}

.lead-text {
  max-width: 700px;
  font-size: clamp(1.03rem, 2vw, 1.15rem);
}

.btn {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  border-radius: 999px;
  padding-right: 1.2rem;
  padding-left: 1.2rem;
  font-weight: 850;
  transition: transform 0.22s ease, box-shadow 0.22s ease, background-color 0.22s ease, border-color 0.22s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  --bs-btn-bg: var(--oz-navy);
  --bs-btn-border-color: var(--oz-navy);
  --bs-btn-hover-bg: var(--oz-accent-dark);
  --bs-btn-hover-border-color: var(--oz-accent-dark);
  box-shadow: 0 18px 40px rgba(7, 29, 51, 0.2);
}

.btn-outline-primary {
  --bs-btn-color: var(--oz-navy);
  --bs-btn-border-color: rgba(7, 29, 51, 0.18);
  --bs-btn-hover-bg: var(--oz-navy);
  --bs-btn-hover-border-color: var(--oz-navy);
}

.btn-light {
  --bs-btn-bg: #fff;
  --bs-btn-border-color: #fff;
  --bs-btn-color: var(--oz-navy);
}

.site-header {
  background: rgba(251, 248, 242, 0.82);
  border-bottom: 1px solid rgba(7, 29, 51, 0.075);
  backdrop-filter: blur(22px);
}

.navbar {
  min-height: 76px;
}

.brand-mark {
  display: inline-flex;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  flex: 0 0 44px;
  border-radius: 15px;
  background: linear-gradient(145deg, var(--oz-navy), #0d3559);
  color: #fff;
  font-family: "Sora", sans-serif;
  font-weight: 800;
}

.brand-text {
  display: grid;
  line-height: 1.05;
}

.brand-text strong {
  color: var(--oz-navy);
  font-family: "Sora", sans-serif;
  font-size: 0.98rem;
  letter-spacing: -0.03em;
}

.brand-text small {
  color: var(--oz-muted);
  font-size: 0.74rem;
  font-weight: 700;
}

.nav-link {
  color: var(--oz-ink);
  font-size: 0.94rem;
  font-weight: 750;
  border-radius: 999px;
  padding-inline: 0.85rem !important;
}

.nav-link.active,
.nav-link:hover {
  background: rgba(10, 166, 166, 0.08);
  color: var(--oz-accent-dark);
}

.navbar-toggler {
  display: inline-flex;
  width: 46px;
  height: 46px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--oz-line);
  border-radius: 999px;
  color: var(--oz-navy);
}

.language-switcher {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.35rem;
  margin-top: 0.85rem;
  color: var(--oz-muted);
  font-size: 0.76rem;
  font-weight: 850;
}

.lang-link {
  color: var(--oz-muted);
  text-decoration: none;
}

.lang-link.active,
.lang-link:hover {
  color: var(--oz-accent-dark);
}

.hero {
  position: relative;
  padding: 5.25rem 0 4.25rem;
  overflow: hidden;
}

.hero-copy {
  max-width: 760px;
}

.hero-title {
  max-width: 820px;
  margin-bottom: 1.35rem;
}

.hero-text {
  max-width: 650px;
  font-size: clamp(1.06rem, 2vw, 1.18rem);
}

.trust-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin: 1.75rem 0 0;
  padding: 0;
  list-style: none;
}

.trust-badges li {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.65rem 0.95rem;
  border: 1px solid var(--oz-line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 10px 28px rgba(7, 29, 51, 0.045);
  color: var(--oz-ink);
  font-size: 0.86rem;
  font-weight: 800;
}

.hero-visual,
.media-frame {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(7, 29, 51, 0.07);
  border-radius: 30px;
  background: var(--oz-surface);
  box-shadow: var(--oz-shadow);
}

.hero-visual img,
.media-frame img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.image-card,
.service-thumb,
.selector-visual,
.sketch-visual {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(10, 166, 166, 0.12), rgba(7, 29, 51, 0.08)),
    repeating-linear-gradient(135deg, rgba(7, 29, 51, 0.05) 0 1px, transparent 1px 12px),
    #eef3f2;
  background-position: center;
  background-size: cover;
}

.image-fallback::after {
  content: attr(data-label);
  position: absolute;
  right: 0.8rem;
  bottom: 0.8rem;
  max-width: calc(100% - 1.6rem);
  padding: 0.45rem 0.65rem;
  border: 1px solid rgba(7, 29, 51, 0.08);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.86);
  color: var(--oz-navy);
  font-size: 0.72rem;
  font-weight: 800;
  line-height: 1.2;
  backdrop-filter: blur(10px);
}

.has-image::after {
  display: none;
}

.image-card img,
.service-thumb img,
.selector-visual img,
.sketch-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.image-card {
  min-height: 360px;
  border-radius: 30px;
}

.hero-visual .image-card {
  aspect-ratio: 4 / 3;
  min-height: 0;
}

.hero-sketch {
  position: absolute;
  top: 1rem;
  left: 1rem;
  width: min(36%, 160px);
  aspect-ratio: 1;
  border: 1px solid rgba(7, 29, 51, 0.08);
  border-radius: 24px;
  opacity: 0.92;
  box-shadow: 0 16px 36px rgba(7, 29, 51, 0.1);
}

.service-thumb {
  width: 100%;
  aspect-ratio: 16 / 9;
  margin-bottom: 1.1rem;
  border-radius: 18px;
}

.selector-visual {
  width: 100%;
  min-height: 190px;
  margin-bottom: 1.3rem;
  border-radius: 18px;
}

.sketch-visual {
  width: 74px;
  height: 74px;
  flex: 0 0 74px;
  border: 1px solid rgba(7, 29, 51, 0.08);
  border-radius: 22px;
  background-color: rgba(255, 255, 255, 0.65);
  box-shadow: 0 14px 34px rgba(7, 29, 51, 0.08);
}

.sketch-visual img {
  padding: 0.75rem;
  object-fit: contain;
}

.floating-note {
  position: absolute;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 1.05rem;
  border: 1px solid rgba(7, 29, 51, 0.08);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 14px 38px rgba(7, 29, 51, 0.13);
  backdrop-filter: blur(14px);
  font-weight: 850;
}

.floating-note i {
  color: var(--oz-accent-dark);
}

.section-head {
  display: grid;
  gap: 0.85rem;
  max-width: 800px;
  margin-bottom: 2.65rem;
}

.section-head.center {
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.section-head.center .eyebrow {
  justify-content: center;
}

.section-head.center .eyebrow::before {
  display: none;
}

.service-mini,
.service-card,
.project-card,
.trust-item,
.selector-panel,
.quote-panel,
.info-panel,
.contact-panel {
  border: 1px solid rgba(7, 29, 51, 0.09);
  border-radius: var(--oz-radius);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0.74));
  box-shadow: var(--oz-soft-shadow);
  transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
}

.service-mini:hover,
.service-card:hover,
.project-card:hover,
.trust-item:hover,
.info-panel:hover {
  transform: translateY(-5px);
  border-color: rgba(10, 166, 166, 0.3);
  box-shadow: var(--oz-shadow);
}

.service-mini,
.service-card,
.trust-item,
.info-panel,
.contact-panel {
  padding: 1.55rem;
}

.service-mini,
.service-card {
  min-height: 100%;
}

.service-mini p,
.service-card p,
.trust-item p,
.info-panel p {
  margin-bottom: 0;
}

.icon-pill {
  display: inline-flex;
  width: 50px;
  height: 50px;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  border: 1px solid rgba(10, 166, 166, 0.18);
  border-radius: 17px;
  background: rgba(10, 166, 166, 0.1);
  color: var(--oz-accent-dark);
}

.service-mini a,
.service-card a {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin-top: 1rem;
  color: var(--oz-navy);
  font-weight: 850;
  text-decoration: none;
}

.selector-panel {
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.selector-card-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

.selector-service-card {
  overflow: hidden;
  border: 1px solid rgba(7, 29, 51, 0.09);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 12px 34px rgba(7, 29, 51, 0.055);
  transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
}

.selector-service-card:hover {
  transform: translateY(-5px);
  border-color: rgba(10, 166, 166, 0.28);
  box-shadow: var(--oz-soft-shadow);
}

.selector-service-image {
  width: calc(100% - 1rem);
  aspect-ratio: 16 / 10;
  margin: 0.5rem 0.5rem 0;
  border-radius: 17px;
  object-fit: cover;
}

.selector-service-content {
  display: grid;
  gap: 0.65rem;
  padding: 1.1rem;
}

.selector-service-content h3 {
  margin: 0;
  font-size: 1.02rem;
  letter-spacing: -0.025em;
}

.selector-service-content p {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.55;
}

.selector-service-icon {
  display: inline-flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(10, 166, 166, 0.18);
  border-radius: 15px;
  background: rgba(10, 166, 166, 0.09);
  color: var(--oz-accent-dark);
  font-size: 1.05rem;
}

.selector-service-arrow {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  gap: 0.35rem;
  color: var(--oz-navy);
  font-size: 0.9rem;
  font-weight: 850;
  text-decoration: none;
}

.selector-service-arrow:hover {
  color: var(--oz-accent-dark);
}

.premium-addon-section {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.44), rgba(10, 166, 166, 0.055)),
    var(--oz-bg);
}

.green-tech-chip {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  padding: 0.45rem 0.75rem;
  border: 1px solid rgba(10, 166, 166, 0.2);
  border-radius: 999px;
  background: rgba(10, 166, 166, 0.08);
  color: var(--oz-accent-dark);
  font-size: 0.78rem;
  font-weight: 850;
}

.smart-addon-card,
.energy-estimator,
.before-after-smart,
.smart-badge {
  border: 1px solid rgba(7, 29, 51, 0.09);
  border-radius: var(--oz-radius);
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 16px 42px rgba(7, 29, 51, 0.06);
}

.smart-addon-card {
  display: grid;
  gap: 0.85rem;
  padding: 1.35rem;
  transition: transform 0.24s ease, border-color 0.24s ease, box-shadow 0.24s ease;
}

.smart-addon-card:hover {
  transform: translateY(-5px);
  border-color: rgba(10, 166, 166, 0.28);
  box-shadow: var(--oz-soft-shadow);
}

.smart-addon-card h3 {
  margin: 0;
}

.smart-addon-card p {
  margin: 0;
  font-size: 0.94rem;
  line-height: 1.6;
}

.smart-control-widget {
  padding: 1.45rem;
}

.energy-estimator h3 {
  margin-bottom: 0.85rem;
}

.estimator-result {
  display: grid;
  gap: 0.35rem;
  padding: 1rem;
  border: 1px solid rgba(10, 166, 166, 0.18);
  border-radius: 18px;
  background: rgba(10, 166, 166, 0.08);
}

.estimator-result span {
  color: var(--oz-navy);
  font-family: "Sora", sans-serif;
  font-size: 1.05rem;
  font-weight: 800;
}

.estimator-result p {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.55;
}

.before-after-smart {
  display: grid;
  gap: 1rem;
  padding: 1.45rem;
}

.before-after-smart > div {
  padding: 1.05rem;
  border: 1px solid rgba(7, 29, 51, 0.08);
  border-radius: 18px;
  background: rgba(251, 248, 242, 0.7);
}

.before-after-smart ul {
  display: grid;
  gap: 0.7rem;
  padding: 0;
  margin: 0;
  list-style: none;
}

.before-after-smart li {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  color: var(--oz-ink);
  font-weight: 750;
}

.before-after-smart i,
.smart-badge i {
  color: var(--oz-accent-dark);
}

.smart-badge {
  display: grid;
  gap: 1rem;
  padding: 1.35rem;
}

.smart-badge h2 {
  margin-bottom: 0.6rem;
  font-size: clamp(1.35rem, 3vw, 2rem);
  letter-spacing: -0.035em;
}

.smart-badge p {
  margin: 0;
}

.timeline {
  position: relative;
  display: grid;
  gap: 1.1rem;
}

.timeline-item {
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr);
  gap: 1rem;
  align-items: start;
}

.timeline-step {
  display: inline-flex;
  width: 54px;
  height: 54px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: linear-gradient(145deg, var(--oz-navy), #0d3559);
  color: #fff;
  font-family: "Sora", sans-serif;
  font-weight: 800;
}

.timeline-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 0.85rem;
  padding: 0.15rem 0 1.3rem;
  border-bottom: 1px solid var(--oz-line);
}

.project-card {
  overflow: hidden;
}

.project-card img {
  width: 100%;
  aspect-ratio: 16 / 10.5;
  object-fit: cover;
}

.project-card .image-card {
  min-height: 0;
  aspect-ratio: 16 / 10.5;
  border-radius: 0;
  box-shadow: none;
}

.project-body {
  padding: 1.35rem;
}

.quote-panel {
  padding: 1.75rem;
  border-radius: 28px;
  background:
    linear-gradient(145deg, #071d33, #0b2c4a 76%, #093c4a);
  box-shadow: var(--oz-shadow);
}

.quote-panel h2,
.quote-panel p {
  color: #fff;
}

.quote-actions {
  display: grid;
  gap: 0.8rem;
}

.breadcrumb {
  --bs-breadcrumb-divider-color: #a4aeb6;
  margin-bottom: 2rem;
  font-size: 0.92rem;
  font-weight: 750;
}

.breadcrumb a {
  color: var(--oz-accent-dark);
  text-decoration: none;
}

.form-control,
.form-select {
  min-height: 54px;
  border-color: rgba(7, 29, 51, 0.11);
  border-radius: 16px;
  background-color: rgba(255, 255, 255, 0.9);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.75);
}

.form-control:focus,
.form-select:focus {
  border-color: rgba(10, 166, 166, 0.45);
  box-shadow: 0 0 0 0.25rem rgba(10, 166, 166, 0.12);
}

.form-label {
  color: var(--oz-navy);
  font-weight: 800;
}

.form-note {
  font-size: 0.88rem;
}

.contact-list {
  display: grid;
  gap: 0.9rem;
  padding: 0;
  margin: 1.25rem 0 0;
  list-style: none;
}

.contact-list li {
  display: flex;
  gap: 0.7rem;
  align-items: flex-start;
  color: var(--oz-muted);
}

.contact-list i {
  color: var(--oz-accent-dark);
}

.contact-list a,
.form-note a {
  color: var(--oz-accent-dark);
  font-weight: 800;
  text-decoration: none;
}

.contact-list a:hover,
.form-note a:hover {
  color: var(--oz-navy);
}

html[dir="rtl"] .navbar-nav,
html[dir="rtl"] .trust-badges,
html[dir="rtl"] .contact-list li,
html[dir="rtl"] .before-after-smart li,
html[dir="rtl"] .footer-brand,
html[dir="rtl"] .mobile-cta a,
html[dir="rtl"] .btn,
html[dir="rtl"] .selector-service-arrow {
  flex-direction: row-reverse;
}

html[dir="rtl"] .section-head.center {
  text-align: center;
}

html[dir="rtl"] .eyebrow::before {
  order: 2;
}

html[dir="rtl"] .hero-sketch {
  right: 1rem;
  left: auto;
}

html[dir="rtl"] .floating-note {
  flex-direction: row-reverse;
}

.contact-coverage {
  display: grid;
  min-height: 220px;
  place-items: center;
  margin-top: 1.5rem;
  padding: 1rem;
  border: 1px dashed rgba(7, 29, 51, 0.16);
  border-radius: 20px;
  background: rgba(10, 166, 166, 0.08);
  color: var(--oz-navy);
  font-weight: 850;
  text-align: center;
}

.site-footer {
  padding: 4rem 0 6.5rem;
  background:
    radial-gradient(circle at 15% 0%, rgba(10, 166, 166, 0.18), transparent 24rem),
    #06182a;
  color: #fff;
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  color: #fff;
  max-width: 360px;
  font-weight: 900;
  text-decoration: none;
}

.footer-brand .brand-mark {
  background: #fff;
  color: var(--oz-navy);
}

.footer-title {
  color: #fff;
  font-size: 0.9rem;
}

.footer-list {
  padding: 0;
  margin: 0;
  list-style: none;
}

.footer-list li {
  margin-top: 0.65rem;
}

.footer-list a,
.footer-list span {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.92rem;
  text-decoration: none;
}

.footer-list a:hover {
  color: #fff;
}

.footer-bottom {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.64);
  font-size: 0.88rem;
}

.mobile-cta {
  position: fixed;
  right: 0.8rem;
  bottom: 0.8rem;
  left: 0.8rem;
  z-index: 1040;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.45rem;
  padding: 0.6rem;
  border: 1px solid rgba(7, 29, 51, 0.1);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 18px 48px rgba(7, 29, 51, 0.18);
  backdrop-filter: blur(16px);
}

.mobile-cta a {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  border-radius: 17px;
  background: var(--oz-soft);
  color: var(--oz-navy);
  font-size: 0.82rem;
  font-weight: 850;
  text-decoration: none;
}

.mobile-cta a:last-child {
  background: var(--oz-navy);
  color: #fff;
}

[data-animate] {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

[data-animate].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  [data-animate] {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .btn,
  .service-mini,
  .service-card,
  .project-card,
  .trust-item,
  .info-panel {
    transition: none;
  }
}

@media (min-width: 768px) {
  .section-pad {
    padding: 7.25rem 0;
  }

  .hero {
    padding: 7.25rem 0 5.75rem;
  }

  .selector-card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .quote-panel {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 2rem;
    padding: 2.75rem;
  }

  .quote-actions {
    grid-template-columns: repeat(2, auto);
  }

  .before-after-smart {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
  }
}

@media (min-width: 992px) {
  .navbar .container {
    position: relative;
  }

  .navbar-collapse {
    padding: 0.35rem;
    border: 1px solid rgba(7, 29, 51, 0.07);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.52);
    box-shadow: 0 10px 34px rgba(7, 29, 51, 0.055);
  }

  .language-switcher {
    margin-top: 0;
    margin-inline-start: 1rem;
    padding-inline-start: 1rem;
    border-inline-start: 1px solid rgba(7, 29, 51, 0.12);
  }

  .site-footer {
    padding-bottom: 2.2rem;
  }

  .selector-card-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .smart-badge {
    grid-template-columns: auto minmax(0, 1fr) auto;
    align-items: center;
  }

  .mobile-cta {
    display: none;
  }
}

@media (max-width: 420px) {
  .brand-text strong {
    font-size: 0.84rem;
  }

  .brand-text small {
    font-size: 0.68rem;
  }

  .section-pad {
    padding: 4.35rem 0;
  }
}

@media (max-width: 991.98px) {
  .navbar-collapse {
    margin-top: 0.9rem;
    padding: 0.85rem;
    border: 1px solid rgba(7, 29, 51, 0.08);
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.94);
    box-shadow: 0 20px 54px rgba(7, 29, 51, 0.12);
  }

  .navbar-nav {
    gap: 0.2rem;
  }

  .nav-link {
    padding: 0.8rem 0.9rem !important;
  }

  .hero {
    padding-top: 4.35rem;
  }

  .trust-badges li {
    width: 100%;
    justify-content: flex-start;
  }
}

