:root {
  --bg: #f4faf9;
  --bg-strong: #0f2d3a;
  --surface: #ffffff;
  --surface-muted: #e6f2ef;
  --text: #12303d;
  --text-soft: #4d6570;
  --primary: #009688;
  --primary-deep: #007d71;
  --secondary: #28c2c1;
  --accent: #8adfce;
  --border: #c7dfd9;
  --shadow: 0 18px 42px rgba(11, 40, 51, 0.12);
  --glass-bg: rgba(255, 255, 255, 0.5);
  --glass-border: rgba(255, 255, 255, 0.58);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  color: var(--text);
  background-color: #071e27;
  background-image:
    radial-gradient(circle at 8% 10%, rgba(45, 210, 188, 0.25) 0%, rgba(45, 210, 188, 0) 42%),
    radial-gradient(circle at 88% 14%, rgba(138, 223, 206, 0.18) 0%, rgba(138, 223, 206, 0) 46%),
    radial-gradient(circle at 70% 84%, rgba(27, 127, 145, 0.28) 0%, rgba(27, 127, 145, 0) 48%),
    linear-gradient(160deg, #082533 0%, #0f2d3a 36%, #103744 60%, #0a2834 100%);
  background-attachment: fixed;
  line-height: 1.55;
  position: relative;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
  opacity: 0.32;
  background:
    repeating-linear-gradient(
      120deg,
      rgba(214, 249, 242, 0.16) 0px,
      rgba(214, 249, 242, 0.16) 1px,
      transparent 1px,
      transparent 22px
    );
}

body::after {
  content: "";
  position: fixed;
  width: 38vw;
  height: 38vw;
  max-width: 540px;
  max-height: 540px;
  left: -120px;
  bottom: -160px;
  border-radius: 50%;
  z-index: -1;
  pointer-events: none;
  background: radial-gradient(circle at 30% 30%, rgba(138, 223, 206, 0.36) 0%, rgba(138, 223, 206, 0) 70%);
  filter: blur(6px);
}

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

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

.container {
  width: min(1120px, 92vw);
  margin: 0 auto;
}

.section {
  padding: 80px 0;
}

.section > .container {
  padding: 34px;
  border-radius: 28px;
  background: rgba(244, 255, 253, 0.22);
  border: 1px solid rgba(255, 255, 255, 0.35);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.glass {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 14px 34px rgba(8, 35, 43, 0.1);
}

.section-title {
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(1.8rem, 3.2vw, 2.6rem);
  line-height: 1.1;
  margin: 0 0 14px;
  color: #f0fffb;
  text-shadow: 0 2px 14px rgba(3, 26, 36, 0.32);
}

.section-subtitle {
  margin: 0 0 28px;
  color: #d4efea;
  max-width: 640px;
}

.badge {
  display: inline-flex;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(8, 45, 58, 0.72);
  border: 1px solid rgba(138, 223, 206, 0.62);
  color: #e6fffa;
  font-weight: 700;
  letter-spacing: 0.01em;
  margin-bottom: 16px;
  box-shadow: 0 8px 18px rgba(3, 20, 28, 0.25);
}

.hero-glass .badge {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.46);
  color: #ffffff;
}

.header {
  position: sticky;
  top: 0;
  z-index: 30;
  backdrop-filter: blur(14px);
  background: rgba(244, 250, 249, 0.84);
  border-bottom: 1px solid rgba(199, 223, 217, 0.8);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 78px;
  gap: 20px;
}

.brand {
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  line-height: 1.2;
}

.brand small {
  display: block;
  font-family: "Manrope", sans-serif;
  color: var(--text-soft);
  font-size: 0.8rem;
  font-weight: 600;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.nav-links a {
  padding: 9px 14px;
  border-radius: 999px;
  font-weight: 700;
  color: var(--text-soft);
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--primary-deep);
  background: rgba(0, 150, 136, 0.12);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 22px;
  border-radius: 10px;
  font-weight: 800;
  border: 1px solid transparent;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

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

.btn-primary {
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  color: #fff;
  box-shadow: 0 10px 24px rgba(0, 125, 113, 0.26);
}

.btn-ghost {
  border-color: var(--border);
  color: var(--text);
  background: #fff;
}

.hero {
  padding: 74px 0 82px;
}

.page-hero {
  margin: 26px auto 0;
  width: min(1220px, 96vw);
}

.hero-media {
  min-height: 70vh;
  border-radius: 28px;
  overflow: hidden;
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.45);
  box-shadow: var(--shadow);
}

.hero-media-bg {
  position: absolute;
  inset: 0;
}

.hero-media-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(105deg, rgba(12, 41, 55, 0.78) 0%, rgba(9, 47, 68, 0.52) 44%, rgba(0, 150, 136, 0.45) 100%),
    radial-gradient(circle at 80% 20%, rgba(138, 223, 206, 0.2) 0%, rgba(138, 223, 206, 0) 56%);
}

.hero-media-bg img,
.hero-media-bg video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  min-height: 70vh;
  position: relative;
  z-index: 2;
  display: grid;
  align-items: center;
}

.hero-glass {
  width: min(760px, 94%);
  margin: 50px 0;
  border-radius: 24px;
  color: #fff;
  padding: 28px;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.hero-glass h1 {
  margin: 0 0 12px;
  font-family: "Space Grotesk", sans-serif;
  line-height: 1;
  font-size: clamp(2rem, 5vw, 4rem);
}

.hero-glass p {
  margin: 0 0 24px;
  max-width: 62ch;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  align-items: center;
}

.hero h1 {
  margin: 0 0 14px;
  font-family: "Space Grotesk", sans-serif;
  line-height: 1;
  font-size: clamp(2.2rem, 6vw, 4.3rem);
}

.hero p {
  margin: 0 0 30px;
  color: var(--text-soft);
  max-width: 600px;
  font-size: 1.08rem;
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.hero-stats {
  margin-top: 28px;
  display: grid;
  grid-template-columns: repeat(3, minmax(110px, 1fr));
  gap: 12px;
}

.stat {
  background: rgba(255, 255, 255, 0.68);
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.62);
  backdrop-filter: blur(10px);
  padding: 14px;
}

.stat strong {
  display: block;
  font-size: 1.35rem;
  font-family: "Space Grotesk", sans-serif;
}

.stat span {
  color: var(--text-soft);
  font-size: 0.9rem;
}

.hero-panel {
  background: linear-gradient(165deg, #12303d 0%, #174a57 55%, #009688 100%);
  border-radius: 26px;
  color: #fff;
  padding: 30px;
  min-height: 400px;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.hero-panel::before,
.hero-panel::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  background: radial-gradient(circle at center, rgba(138, 223, 206, 0.7) 0%, rgba(138, 223, 206, 0) 74%);
}

.hero-panel::before {
  width: 260px;
  height: 260px;
  right: -80px;
  top: -90px;
}

.hero-panel::after {
  width: 280px;
  height: 280px;
  left: -100px;
  bottom: -120px;
}

.panel-content {
  position: relative;
  z-index: 2;
}

.panel-kicker {
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.74rem;
  opacity: 0.85;
}

.panel-title {
  font-family: "Space Grotesk", sans-serif;
  margin: 10px 0 14px;
  font-size: 1.95rem;
  line-height: 1.1;
}

.panel-list {
  padding: 0;
  margin: 0;
  list-style: none;
  display: grid;
  gap: 9px;
}

.panel-list li {
  padding-left: 20px;
  position: relative;
}

.panel-list li::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  position: absolute;
  left: 0;
  top: 0.5em;
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.info-card {
  background: rgba(255, 255, 255, 0.58);
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 16px;
  backdrop-filter: blur(12px);
  padding: 18px;
}

.info-card h3 {
  margin: 0 0 6px;
  font-size: 0.88rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-soft);
}

.info-card p {
  margin: 0;
  font-weight: 700;
}

.info-card h3,
.info-card p,
.card h3,
.card p,
.process-step h3,
.process-step p,
.faq-item h4,
.faq-item p,
.form-card .section-title,
.side-card .section-title,
.contact-card .section-title {
  color: var(--text);
  text-shadow: none;
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.card {
  background: rgba(255, 255, 255, 0.6);
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  overflow: hidden;
  backdrop-filter: blur(12px);
  box-shadow: 0 14px 28px rgba(10, 35, 41, 0.08);
}

.card-body {
  padding: 18px;
}

.card h3 {
  margin: 0 0 8px;
  font-family: "Space Grotesk", sans-serif;
}

.card p {
  margin: 0;
  color: var(--text-soft);
}

.image-frame {
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.before-after {
  background: rgba(255, 255, 255, 0.56);
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 18px;
  backdrop-filter: blur(10px);
  overflow: hidden;
}

.before-after .labels {
  display: grid;
  grid-template-columns: 1fr 1fr;
  text-align: center;
  background: var(--surface-muted);
  font-weight: 800;
  font-size: 0.9rem;
}

.before-after .labels span {
  padding: 10px;
}

.before-after .shots {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.before-after img {
  height: 100%;
  object-fit: cover;
}

.process {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.process-featured {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.process-step {
  background: rgba(255, 255, 255, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 18px;
  backdrop-filter: blur(10px);
  padding: 18px;
  box-shadow: 0 10px 22px rgba(8, 39, 48, 0.12);
}

.step-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}

.step-icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #0d7f88 0%, #1cc2ac 100%);
  color: #fff;
  box-shadow: 0 10px 16px rgba(10, 109, 108, 0.28);
}

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

.process-step h3 {
  margin: 0;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.08rem;
}

.process-step strong {
  color: var(--primary-deep);
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.2rem;
}

.process-step p {
  margin: 8px 0 0;
  color: var(--text-soft);
}

.form-wrap {
  display: grid;
  grid-template-columns: 1fr 0.95fr;
  gap: 22px;
}

.form-card,
.side-card {
  background: rgba(255, 255, 255, 0.62);
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 18px;
  backdrop-filter: blur(12px);
  padding: 22px;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.field {
  display: grid;
  gap: 6px;
}

.field.full {
  grid-column: 1 / -1;
}

label {
  font-size: 0.92rem;
  font-weight: 700;
}

input,
select,
textarea {
  font: inherit;
  padding: 11px 12px;
  border-radius: 10px;
  border: 1px solid #b8d8d0;
  background: #f9fdfc;
  color: var(--text);
}

textarea {
  min-height: 120px;
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  outline: 2px solid rgba(0, 150, 136, 0.3);
  border-color: var(--primary);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}

.contact-card {
  background: rgba(255, 255, 255, 0.62);
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 18px;
  backdrop-filter: blur(12px);
  padding: 22px;
}

.contact-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 14px;
}

.contact-list strong {
  display: block;
  font-size: 0.88rem;
  color: var(--text-soft);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 2px;
}

.map {
  border-radius: 16px;
  border: 0;
  width: 100%;
  min-height: 360px;
}

.faq {
  display: grid;
  gap: 12px;
}

.faq-item {
  background: rgba(255, 255, 255, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 14px;
  backdrop-filter: blur(10px);
  padding: 16px;
}

.faq-item h4 {
  margin: 0 0 8px;
}

.faq-item p {
  margin: 0;
  color: var(--text-soft);
}

.footer {
  background: #0c2a35;
  color: #d7eaee;
  padding: 34px 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 20px;
  align-items: end;
}

.footer-links {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.footer-links a {
  color: #d7eaee;
  opacity: 0.9;
}

.footer small {
  color: #9bc0c8;
}

@media (max-width: 980px) {
  .hero-grid,
  .split,
  .form-wrap,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero-panel {
    min-height: 320px;
  }

  .info-grid,
  .cards,
  .process,
  .process-featured {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .form-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 680px) {
  .section {
    padding: 62px 0;
  }

  .section > .container {
    padding: 24px;
    border-radius: 20px;
  }

  .nav {
    flex-direction: column;
    justify-content: center;
    padding: 14px 0;
  }

  .hero {
    padding-top: 44px;
  }

  .hero-media,
  .hero-overlay {
    min-height: 540px;
  }

  .hero-glass {
    padding: 20px;
    margin: 32px 0;
  }

  .hero-stats,
  .info-grid,
  .cards,
  .process,
  .process-featured {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }
}
