@font-face {
  font-family: "ChairoSans-Regular";
  src:
    local("ChairoSans-Regular"),
    local("Chairo Sans Regular"),
    local("ChairoSans");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

:root {
  --font-main: "ChairoSans-Regular", "Cairo", sans-serif;
  --bg: #eef7fc;
  --bg-soft: #e5f2fa;
  --paper: #ffffff;
  --paper-soft: #f5fbff;
  --text: #0f2d48;
  --muted: #54728d;
  --line: rgba(96, 147, 182, 0.3);
  --dark: #123b5b;
  --dark-2: #1a5379;
  --accent: #44b3dc;
  --accent-strong: #2197c7;
  --accent-soft: #8cdff3;
  --radius-xl: 28px;
  --radius-lg: 22px;
  --radius-md: 16px;
  --shadow-soft: 0 14px 34px rgba(21, 72, 108, 0.14);
  --shadow-card: 0 22px 44px rgba(14, 56, 86, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  font-family: var(--font-main);
  background:
    radial-gradient(circle at 8% 5%, rgba(157, 220, 244, 0.22), transparent 36%),
    radial-gradient(circle at 85% 0%, rgba(142, 216, 244, 0.2), transparent 32%),
    linear-gradient(180deg, #f4fbff 0%, #edf7fd 38%, #f5fbff 100%);
}

.plain-page {
  display: flex;
  flex-direction: column;
  min-height: 100svh;
}

.plain-page .page-main {
  flex: 1;
}

a {
  color: inherit;
  text-decoration: none;
}

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

.section-wrap,
.hero-shell {
  width: min(1120px, calc(100% - 2rem));
  margin-inline: auto;
}

.section {
  padding: 4.8rem 0;
}

.simple-header {
  padding: 1rem 0 0.5rem;
}

.simple-header .section-wrap {
  position: relative;
}

.page-main {
  padding-bottom: 0.5rem;
}

.page-intro {
  max-width: 56ch;
  margin: 0 0 1.65rem;
}

.plain-page .section {
  padding: 0.35rem 0 2.6rem;
}

.contact-page-section,
.offer-page-section {
  padding-top: 0;
}

.contact-page-section .page-intro {
  margin-bottom: 0.25rem;
}

.offer-page-section .page-intro {
  margin-bottom: 0.45rem;
}

.contact-page-section .page-intro h1 {
  margin-top: 0.45rem;
}

.contact-page-section .page-intro p {
  margin-top: 0.55rem;
}

.page-intro h1 {
  margin: 0.72rem 0 0;
  font-size: clamp(1.72rem, 6.3vw, 2.9rem);
  line-height: 1.14;
  letter-spacing: -0.02em;
  color: #143f60;
  text-wrap: balance;
}

.page-intro p {
  margin: 0.95rem 0 0;
  color: var(--muted);
  line-height: 1.6;
  font-size: clamp(1rem, 3.7vw, 1.18rem);
}

.section-light {
  background: transparent;
}

.section-dark {
  background:
    radial-gradient(circle at 14% 10%, rgba(131, 217, 245, 0.26), transparent 34%),
    radial-gradient(circle at 88% 18%, rgba(117, 204, 238, 0.2), transparent 33%),
    linear-gradient(140deg, #133f60, #19557d 58%, #0f3552);
  color: #edf8ff;
}

.hero {
  position: relative;
  min-height: 93svh;
  padding: 1rem 0 2.35rem;
  color: #edf8ff;
  overflow: clip;
}


.hero-image,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 34%;
  filter: brightness(0.58) saturate(0.95) contrast(1.03);
}

.hero-overlay {
  background:
    linear-gradient(180deg, rgba(8, 31, 48, 0.5) 0%, rgba(11, 40, 63, 0.8) 64%, rgba(11, 39, 60, 0.9) 100%),
    radial-gradient(circle at 84% 15%, rgba(142, 221, 245, 0.2), transparent 30%),
    radial-gradient(circle at 24% 82%, rgba(68, 166, 212, 0.2), transparent 38%);
}

.hero-shell {
  position: relative;
  min-height: calc(93svh - 2rem);
  display: flex;
  flex-direction: column;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
  min-height: 56px;
  padding: 0.64rem 0.9rem;
  border-radius: 22px;
  border: 1px solid rgba(184, 223, 247, 0.18);
  background: linear-gradient(135deg, rgba(28, 53, 76, 0.84), rgba(34, 67, 96, 0.62));
  backdrop-filter: blur(12px);
  box-shadow: 0 16px 30px rgba(7, 18, 32, 0.32);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  color: #dcf2ff;
  font-family: var(--font-main);
  font-weight: 600;
  letter-spacing: 0.02em;
}

.brand img {
  width: auto;
  height: 36px;
  object-fit: contain;
  filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.3));
}

.brand span {
  display: none;
  font-size: 0.96rem;
}

.desktop-links {
  display: none;
  align-items: center;
  gap: 0.18rem;
  margin-inline: auto;
}

.desktop-link {
  padding: 0.48rem 0.96rem;
  border-radius: 999px;
  color: rgba(230, 245, 255, 0.8);
  font-size: 0.92rem;
  font-weight: 600;
  transition: background-color 0.22s ease, color 0.22s ease;
}

.desktop-link:hover {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.12);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.social-link,
.menu-toggle {
  width: 36px;
  height: 36px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  border: 1px solid transparent;
  color: rgba(230, 245, 255, 0.78);
  background: transparent;
  transition: background-color 0.22s ease, color 0.22s ease;
}

.social-link:hover,
.menu-toggle:hover {
  background: rgba(255, 255, 255, 0.12);
  color: #ffffff;
}

.social-link svg,
.menu-toggle svg,
.nav-call svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.nav-call {
  display: none;
  align-items: center;
  gap: 0.35rem;
  padding: 0.5rem 0.86rem;
  border-radius: 999px;
  background: linear-gradient(135deg, #2fa8d3, #5ac5e7);
  color: #ffffff;
  font-size: 0.9rem;
  font-weight: 700;
  box-shadow: 0 8px 18px rgba(55, 161, 205, 0.28);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.nav-call:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 22px rgba(55, 161, 205, 0.34);
}

.nav-call svg {
  width: 14px;
  height: 14px;
}

.menu-toggle {
  cursor: pointer;
  border: 1px solid rgba(155, 207, 237, 0.26);
  background: rgba(14, 35, 57, 0.4);
}

.menu-toggle .icon-close {
  display: none;
}

.menu-toggle.is-open .icon-menu {
  display: none;
}

.menu-toggle.is-open .icon-close {
  display: block;
}

.mobile-menu {
  margin-top: 0.65rem;
  padding: 1rem;
  border-radius: 18px;
  border: 1px solid rgba(145, 206, 242, 0.34);
  background: linear-gradient(160deg, rgba(13, 49, 75, 0.96), rgba(11, 40, 65, 0.94));
  box-shadow: 0 18px 34px rgba(7, 23, 39, 0.4);
}

.mobile-menu[hidden] {
  display: none;
}

.mobile-menu a {
  display: block;
  padding: 0.84rem 0.5rem;
  color: #dbf1ff;
  font-weight: 600;
  border-bottom: 1px solid rgba(139, 196, 231, 0.18);
}

.mobile-menu a:last-child {
  border-bottom: none;
}

.mobile-menu .menu-cta {
  margin-top: 0.62rem;
  border-radius: 12px;
  text-align: center;
  color: #effdff !important;
  background: linear-gradient(90deg, #2eaad4, #5ac8eb);
  font-weight: 700;
  border-bottom: none !important;
  min-height: 48px;
  display: flex !important;
  align-items: center;
  justify-content: center;
}

.hero-content {
  max-width: 760px;
  margin-top: auto;
  padding-top: 3.4rem;
  padding-bottom: 0.2rem;
}


.tagline {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin: 0;
  padding: 0;
  border: none;
  background: transparent;
  color: #dbf1ff;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.01em;
  text-shadow: 0 2px 9px rgba(7, 20, 36, 0.46);
}

.tagline-icon {
  width: 40px;
  height: 40px;
  object-fit: contain;
  filter: drop-shadow(0 5px 12px rgba(7, 25, 42, 0.42));
}

.hero-title {
  margin: 0.82rem 0 0;
  max-width: 22ch;
  font-family: var(--font-main);
  font-size: clamp(1.72rem, 6.4vw, 3.1rem);
  line-height: 1.13;
  letter-spacing: -0.02em;
  text-wrap: balance;
}

.hero-lead {
  margin: 1rem 0 0;
  max-width: 52ch;
  font-family: var(--font-main);
  font-size: clamp(1rem, 3.2vw, 1.15rem);
  line-height: 1.65;
  color: #d7ebfb;
  text-shadow: 0 2px 8px rgba(7, 19, 34, 0.36);
}

.hero-buttons {
  margin-top: 1.6rem;
  display: grid;
  gap: 0.7rem;
  max-width: 480px;
}

.btn {
  position: relative;
  overflow: hidden;
  min-height: 50px;
  border: 1px solid transparent;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.35rem 1.3rem;
  font-size: 0.96rem;
  font-weight: 700;
  isolation: isolate;
  transition:
    transform 0.24s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.24s ease,
    background-color 0.24s ease,
    border-color 0.24s ease,
    color 0.24s ease;
}

.btn::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: 0;
  background: linear-gradient(120deg, transparent 20%, rgba(255, 255, 255, 0.42), transparent 72%);
  transform: translateX(-120%);
  transition: transform 0.66s ease, opacity 0.3s ease;
}

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

.btn:hover::before {
  opacity: 1;
  transform: translateX(125%);
}

.btn:active {
  transform: translateY(0);
}

.btn-primary {
  color: #f5fdff;
  background: linear-gradient(134deg, #37afd9, #67d2ef);
  box-shadow: 0 10px 24px rgba(57, 168, 212, 0.31);
}

.btn-primary:hover {
  box-shadow: 0 14px 28px rgba(57, 168, 212, 0.37);
}

.btn-outline {
  color: #eef9ff;
  border-color: rgba(189, 226, 246, 0.5);
  background: rgba(15, 45, 67, 0.36);
}

.btn-outline:hover {
  border-color: rgba(216, 241, 255, 0.8);
  background: rgba(23, 58, 85, 0.5);
}

.section-divider {
  position: relative;
  z-index: 10;
  margin-top: -0.55rem;
  margin-bottom: -0.2rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.65rem 0;
}

.divider-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, rgba(80, 167, 211, 0), rgba(80, 167, 211, 0.55), rgba(80, 167, 211, 0));
}

.divider-core {
  width: 42px;
  height: 42px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  color: #3eaad1;
  background: linear-gradient(180deg, #f7fcff, #eaf6fd);
  border: 1px solid rgba(80, 167, 211, 0.35);
  box-shadow: 0 10px 20px rgba(46, 125, 167, 0.16);
  font-weight: 800;
}

.kicker {
  margin: 0;
  font-size: 0.86rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  color: #369fc7;
  text-transform: uppercase;
}

h2 {
  margin: 0.72rem 0 0;
  font-family: var(--font-main);
  font-size: clamp(1.75rem, 6.4vw, 2.8rem);
  line-height: 1.14;
  letter-spacing: -0.02em;
  text-wrap: balance;
}

.lead {
  margin: 1rem 0 0;
  font-size: clamp(1.01rem, 3.85vw, 1.3rem);
  line-height: 1.57;
  color: var(--muted);
}

.services-section {
  position: relative;
}

.services-section .section-wrap {
  text-align: center;
}

.services-kicker {
  color: #2d95bc;
}

.services-title {
  margin-top: 0.86rem;
  max-width: 18ch;
  margin-inline: auto;
}

.services-lead {
  max-width: 54ch;
  margin-inline: auto;
}

.service-stack {
  margin-top: 2rem;
  display: grid;
  gap: 1.4rem;
  text-align: left;
}

.service-feature {
  display: grid;
  gap: 0;
  border-radius: var(--radius-xl);
  border: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(245, 251, 255, 0.92)),
    linear-gradient(145deg, rgba(108, 188, 225, 0.08), rgba(122, 217, 239, 0.03));
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}

.service-media {
  margin: 0;
}

.service-media img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.service-body {
  padding: 1.25rem 1.2rem 1.3rem;
}

.service-tag {
  margin: 0 0 0.56rem;
  color: #328bb0;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-weight: 800;
  font-size: 0.74rem;
}

.service-head {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.service-icon {
  width: 50px;
  height: 50px;
  border-radius: 14px;
  display: inline-grid;
  place-items: center;
  background: linear-gradient(180deg, #ebf6fd, #dbeffc);
  color: #2f8db6;
}

.service-icon svg {
  width: 25px;
  height: 25px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.service-body h3 {
  margin: 0;
  font-size: clamp(1.28rem, 4.4vw, 1.78rem);
  letter-spacing: -0.01em;
}

.service-description {
  margin: 0.9rem 0 0;
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.56;
}

.service-points {
  margin: 1rem 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.56rem;
}

.service-points li {
  position: relative;
  padding-left: 1.38rem;
  color: #28445f;
  font-size: 0.99rem;
  line-height: 1.45;
}

.service-points li::before {
  content: "";
  position: absolute;
  top: 0.5rem;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: linear-gradient(180deg, #40aed8, #2b8cb4);
}

.service-link {
  margin-top: 1.25rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  min-height: 40px;
  padding: 0.38rem 0.92rem;
  border-radius: 11px;
  border: 1px solid rgba(81, 161, 203, 0.36);
  color: #237ea7;
  font-size: 0.94rem;
  font-weight: 800;
  transition: background-color 0.22s ease, color 0.22s ease, border-color 0.22s ease;
}

.service-link::after {
  content: "→";
  transition: transform 0.22s ease;
}

.service-link:hover {
  color: #ffffff;
  border-color: #2a90ba;
  background: linear-gradient(120deg, #2e9fca, #4bc0e5);
}

.service-link:hover::after {
  transform: translateX(2px);
}

.projects-section .section-wrap {
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.64);
  border: 1px solid rgba(152, 192, 217, 0.22);
  padding: 2rem 1rem;
  box-shadow: 0 12px 28px rgba(36, 94, 129, 0.08);
}

.compare-grid {
  margin-top: 2rem;
  display: grid;
  gap: 1.2rem;
}

.compare-card {
  border-radius: var(--radius-lg);
  border: 1px solid rgba(130, 148, 167, 0.44);
  background: var(--paper);
  box-shadow: var(--shadow-soft);
  padding: 0.8rem;
}

.compare-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.8rem;
}

.compare-photo {
  margin: 0;
  position: relative;
}

.compare-photo img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 14px;
  border: 1px solid rgba(144, 153, 166, 0.5);
  cursor: zoom-in;
  transition: transform 0.28s ease;
}

.compare-photo:hover img {
  transform: scale(1.012);
}

.label {
  position: absolute;
  top: 0.8rem;
  left: 0.8rem;
  padding: 0.31rem 0.72rem;
  border-radius: 10px;
  border: 1px solid rgba(206, 214, 225, 0.66);
  background: rgba(119, 130, 145, 0.58);
  color: #ffffff;
  font-weight: 800;
  text-transform: uppercase;
  font-size: 1rem;
  letter-spacing: 0.05em;
  text-shadow: 0 1px 2px rgba(9, 20, 34, 0.44);
}

.projects-subtitle {
  margin: 2.1rem 0 0;
  font-size: clamp(1.35rem, 4vw, 1.9rem);
  font-weight: 700;
  color: #1a3856;
}

.gallery-grid {
  margin-top: 1.45rem;
  display: grid;
  gap: 0.8rem;
  grid-template-columns: 1fr 1fr;
}

.gallery-grid img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  border-radius: 14px;
  border: 1px solid rgba(136, 171, 197, 0.46);
  box-shadow: 0 10px 24px rgba(19, 61, 92, 0.12);
}

.contact-cta-section {
  position: relative;
}

.contact-cta-inner {
  text-align: center;
}

.contact-cta-kicker {
  color: #b7dbf3;
}

.lead-dark {
  margin-top: 0.9rem;
  color: #d5ebfb;
  line-height: 1.58;
  font-size: 1.03rem;
}

.contact-cta-buttons {
  margin-top: 1.35rem;
  display: grid;
  gap: 0.7rem;
  max-width: 390px;
  margin-inline: auto;
}

.contact-page-section .section-wrap {
  border-radius: var(--radius-xl);
  border: 1px solid rgba(157, 199, 224, 0.32);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: var(--shadow-soft);
  padding: 0.32rem 0.9rem 1rem;
}

.contact-page-lower .section-wrap {
  margin-top: 0.8rem;
}

.contact-card-grid {
  display: grid;
  gap: 0.9rem;
}

.contact-page-card {
  border-radius: var(--radius-lg);
  border: 1px solid rgba(132, 179, 209, 0.4);
  background: linear-gradient(180deg, #ffffff, #f1f9ff);
  box-shadow: 0 12px 25px rgba(20, 70, 104, 0.11);
  padding: 1.2rem 1rem;
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.contact-page-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 30px rgba(20, 70, 104, 0.15);
  border-color: rgba(72, 157, 199, 0.52);
}

.contact-page-icon {
  width: 50px;
  height: 50px;
  border-radius: 14px;
  display: inline-grid;
  place-items: center;
  background: linear-gradient(180deg, #e9f5fd, #d9edf9);
  color: #2a88b2;
}

.contact-page-icon svg {
  width: 24px;
  height: 24px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.contact-card-label {
  margin: 0.9rem 0 0.3rem;
  color: #3f6f90;
  font-weight: 700;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.07em;
}

.contact-card-value {
  margin: 0;
  color: #133a58;
  font-size: clamp(1.08rem, 4.2vw, 1.34rem);
  font-weight: 700;
}

.contact-page-cta {
  margin-top: 1.4rem;
  padding-top: 1.2rem;
  border-top: 1px solid rgba(148, 189, 214, 0.45);
  display: grid;
  gap: 0.75rem;
  justify-items: start;
}

.contact-page-cta p {
  margin: 0;
  color: #3e6785;
}

.offer-page-section .contact-grid {
  border-radius: 0;
  border: none;
  background: transparent;
  box-shadow: none;
  padding: 0.34rem 0.62rem 0.72rem;
  margin-top: -0.4rem;
  width: 100%;
  max-width: 720px;
  margin-inline: auto;
  grid-template-columns: 1fr;
}

.contact-grid {
  display: grid;
  gap: 1.4rem;
}

.offer-page-section .contact-grid {
  gap: 0.72rem;
}

.contact-copy h2 {
  margin-top: 0;
}

.contact-lines {
  margin-top: 1rem;
  display: grid;
  gap: 0.56rem;
}

.contact-lines a,
.contact-lines p {
  margin: 0;
  color: #dff1fd;
  line-height: 1.45;
}

.offer-form-title {
  margin: 0 0 0.28rem;
  font-size: clamp(1.72rem, 6.2vw, 2.75rem);
  line-height: 1.08;
  letter-spacing: -0.015em;
  color: #133a58;
}

.offer-page-section .contact-form {
  padding: 0.56rem;
  gap: 0.4rem;
  border: none;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.offer-page-section .contact-form label {
  gap: 0.18rem;
  font-size: 0.84rem;
}

.offer-page-section .contact-form input,
.offer-page-section .contact-form select,
.offer-page-section .contact-form textarea {
  padding: 0.48rem 0.62rem;
  border-radius: 9px;
  font-size: 0.86rem;
}

.offer-page-section .contact-form textarea {
  min-height: 84px;
}

.offer-page-section .contact-form .btn {
  min-height: 38px;
  font-size: 0.84rem;
  border-radius: 11px;
}

.contact-form {
  display: grid;
  gap: 0.72rem;
  padding: 1.12rem;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(183, 224, 247, 0.4);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(245, 251, 255, 0.94));
  box-shadow: var(--shadow-card);
}

.contact-form label {
  display: grid;
  gap: 0.44rem;
  color: #1d4c71;
  font-weight: 700;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  font: inherit;
  color: #163955;
  background: #eff7fc;
  border: 1px solid rgba(129, 174, 202, 0.42);
  border-radius: 12px;
  padding: 0.82rem 0.92rem;
  outline: none;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #7491ab;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: rgba(78, 165, 205, 0.84);
  box-shadow: 0 0 0 3px rgba(79, 173, 215, 0.18);
}

.contact-form .btn-primary {
  margin-top: 0.28rem;
}

.footer {
  padding: 2rem 0 2.35rem;
  border-top: 1px solid rgba(158, 208, 236, 0.24);
}

.footer-inner {
  display: grid;
  gap: 1rem;
  justify-items: center;
}

.footer-brand {
  color: #eef8ff;
}

.footer-brand span {
  display: inline;
}

.footer-contact {
  display: grid;
  gap: 0.34rem;
  justify-items: center;
}

.footer-contact a {
  color: #e1f1fd;
  font-size: 1.02rem;
}

.footer-contact a:hover {
  color: #ffffff;
}

/* Hero accent + trust badges */
.hero-title-accent {
  color: #5ac8eb;
}

.hero-trust {
  margin-top: 1.5rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.55rem 1rem;
}

.hero-trust-item {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  color: rgba(220, 242, 255, 0.78);
  font-size: 0.86rem;
  font-weight: 600;
}

.hero-trust-item svg {
  width: 15px;
  height: 15px;
  stroke: #5ac8eb;
  fill: none;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
}

/* Reviews section */
.reviews-section {
  padding-top: 0;
}

.reviews-wrap {
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.64);
  border: 1px solid rgba(152, 192, 217, 0.22);
  padding: 2rem 1rem;
  box-shadow: 0 12px 28px rgba(36, 94, 129, 0.08);
  text-align: center;
}

.reviews-kicker {
  color: #2d95bc;
}

.reviews-title {
  margin-top: 0.86rem;
}

.reviews-lead {
  max-width: 46ch;
  margin-inline: auto;
}

.reviews-grid {
  margin-top: 2rem;
  display: grid;
  gap: 1.2rem;
  text-align: left;
}

.review-card {
  position: relative;
  display: block;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(130, 148, 167, 0.3);
  background: var(--paper);
  box-shadow: var(--shadow-soft);
  padding: 1.4rem 1.2rem 1.2rem;
  transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
  color: inherit;
}

.review-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-card);
  border-color: rgba(72, 157, 199, 0.42);
}

.review-stars {
  color: #f5a623;
  font-size: 1.25rem;
  letter-spacing: 0.06em;
  line-height: 1;
}

.review-quote {
  position: absolute;
  top: 1.1rem;
  right: 1.2rem;
  width: 28px;
  height: 22px;
  fill: rgba(180, 215, 235, 0.5);
}

.review-text {
  margin: 0.9rem 0 1.1rem;
  color: #1e3f5c;
  font-size: 1rem;
  line-height: 1.6;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding-top: 0.9rem;
  border-top: 1px solid rgba(148, 189, 214, 0.3);
}

.review-avatar {
  width: 38px;
  height: 38px;
  border-radius: 999px;
  background: linear-gradient(180deg, #d4edf8, #bfe0f3);
  color: #2a7fac;
  font-weight: 700;
  font-size: 1rem;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.review-name {
  display: block;
  font-size: 0.95rem;
  color: #133a58;
}

.review-source {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  margin-top: 0.18rem;
  color: #2a7fac;
  font-size: 0.82rem;
  font-weight: 600;
}

.review-source svg {
  width: 13px;
  height: 13px;
  stroke: none;
  fill: #1877f2;
}

.reviews-facebook-link {
  margin-top: 1.8rem;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: #1877f2;
  font-weight: 700;
  font-size: 0.97rem;
  transition: opacity 0.2s ease;
}

.reviews-facebook-link:hover {
  opacity: 0.75;
}

.reviews-facebook-link svg {
  width: 16px;
  height: 16px;
  stroke: none;
  fill: #1877f2;
}

@media (min-width: 640px) {
  .reviews-grid {
    grid-template-columns: 1fr 1fr;
  }
  .reviews-wrap {
    padding: 2.35rem 1.6rem;
  }
}

.image-lightbox {
  position: fixed;
  inset: 0;
  z-index: 1200;
  background: rgba(3, 12, 22, 0.88);
  display: grid;
  place-items: center;
  padding: 1.2rem;
}

.image-lightbox[hidden] {
  display: none;
}

.image-lightbox-inner {
  position: relative;
  width: min(1000px, 100%);
}

.lightbox-image {
  width: 100%;
  max-height: min(86svh, 960px);
  object-fit: contain;
  border-radius: 14px;
  border: 1px solid rgba(149, 210, 244, 0.25);
  box-shadow: 0 24px 55px rgba(4, 14, 28, 0.55);
}

.lightbox-close {
  position: absolute;
  top: 0.65rem;
  right: 0.65rem;
  width: 38px;
  height: 38px;
  border-radius: 999px;
  border: 1px solid rgba(198, 228, 246, 0.45);
  background: rgba(6, 18, 30, 0.72);
  color: #ffffff;
  font-size: 1.1rem;
  cursor: pointer;
}

body.lightbox-open {
  overflow: hidden;
}

.reveal {
  opacity: 0;
  transform: translateY(26px) scale(0.985);
  transition:
    opacity 0.7s ease,
    transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, transform;
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

@media (min-width: 640px) {
  .section-wrap,
  .hero-shell {
    width: min(1120px, calc(100% - 2.8rem));
  }

  .simple-header {
    padding-top: 1.15rem;
  }

  .nav-call {
    display: inline-flex;
  }
}

@media (min-width: 760px) {
  .section-wrap,
  .hero-shell {
    width: min(1120px, calc(100% - 4rem));
  }

  .site-nav {
    min-height: 64px;
    padding: 0.74rem 1rem;
  }

  .hero-content {
    max-width: 820px;
    padding-top: 4.2rem;
    padding-bottom: 0.9rem;
  }

  .hero-title {
    max-width: 26ch;
    font-size: clamp(2rem, 5vw, 3.4rem);
  }

  .hero-lead {
    max-width: 58ch;
    font-size: clamp(1.04rem, 2vw, 1.18rem);
  }

  .hero-buttons {
    display: flex;
    max-width: 560px;
  }

  .hero-trust {
    grid-template-columns: repeat(4, auto);
    justify-content: start;
    gap: 0.5rem 1.4rem;
  }

  .services-title {
    max-width: none;
  }

  .service-feature {
    grid-template-columns: 1.05fr 1fr;
  }

  .service-feature-reverse .service-media {
    order: 2;
  }

  .service-feature-reverse .service-body {
    order: 1;
  }

  .service-body {
    padding: 1.5rem 1.45rem 1.6rem;
  }

  .projects-section .section-wrap {
    padding: 2.35rem 1.6rem;
  }

  .contact-cta-buttons {
    max-width: none;
    grid-auto-flow: column;
    justify-content: center;
  }

  .page-intro {
    margin-bottom: 2rem;
  }

  .plain-page .section {
    padding: 0.5rem 0 2.8rem;
  }

  .contact-page-section .page-intro {
    margin-bottom: 0.35rem;
  }

  .offer-page-section .page-intro {
    margin-bottom: 0.55rem;
  }

  .contact-page-section .section-wrap {
    padding: 0.42rem 1.2rem 1.25rem;
  }

  .contact-page-lower .section-wrap {
    margin-top: 3.5rem;
  }

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

  .offer-page-section .contact-grid {
    padding: 0.42rem 0.8rem 0.86rem;
    margin-top: -0.3rem;
    grid-template-columns: 1fr;
    gap: 0.4rem;
  }

  .compare-row {
    grid-template-columns: 1fr 1fr;
  }

  .gallery-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
  }

  .gallery-grid img {
    aspect-ratio: 4 / 5;
  }

  .contact-grid {
    grid-template-columns: 0.95fr 1.05fr;
    align-items: start;
  }

  .footer-inner {
    justify-items: start;
    text-align: left;
  }

  .footer-contact {
    justify-items: start;
  }
}

@media (min-width: 960px) {
  .desktop-links {
    display: flex;
  }

  .menu-toggle {
    display: none;
  }

  .mobile-menu {
    display: none !important;
  }

  .brand span {
    display: inline;
  }

  .section {
    padding: 5.3rem 0;
  }

  .contact-grid {
    gap: 2rem;
  }

}

@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .btn,
  .btn::before,
  .service-link,
  .service-link::after {
    transition: none;
  }
}
