﻿:root {
  --bg: #0a162b;
  --bg-soft: #132340;
  --surface: rgba(19, 34, 59, 0.72);
  --surface-strong: #182a48;
  --text: #dde8f7;
  --text-strong: #f8fafc;
  --text-soft: #a8bdd8;
  --brand: #0ea5e9;
  --brand-strong: #0284c7;
  --accent: #06b6d4;
  --line: rgba(160, 182, 211, 0.28);
  --ok: #22c55e;
  --danger: #f97316;
  --shadow-lg: 0 16px 36px rgba(5, 13, 30, 0.28);
  --shadow-sm: 0 8px 20px rgba(5, 13, 30, 0.18);
  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 30px;
  --radius-xl: 42px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 12% -8%, rgba(56, 189, 248, 0.18), transparent 38%),
    radial-gradient(circle at 82% 0%, rgba(125, 211, 252, 0.14), transparent 38%),
    linear-gradient(160deg, #0d1b32 0%, #132542 52%, #102038 100%);
  min-height: 100vh;
  line-height: 1.5;
}

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

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

.container {
  width: min(var(--container), calc(100% - 2.4rem));
  margin-inline: auto;
}

.site-bg {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
  overflow: hidden;
}

.site-bg::before,
.site-bg::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  filter: blur(45px);
}

.site-bg::before {
  width: 26rem;
  height: 26rem;
  top: 8%;
  left: -10rem;
  background: rgba(56, 189, 248, 0.09);
  animation: driftA 26s ease-in-out infinite;
}

.site-bg::after {
  width: 24rem;
  height: 24rem;
  right: -8rem;
  bottom: -6rem;
  background: rgba(125, 211, 252, 0.08);
  animation: driftB 30s ease-in-out infinite;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 60;
  transition: transform 0.35s ease, background-color 0.35s ease, box-shadow 0.35s ease, padding 0.35s ease;
  padding: 1.2rem 0;
}

.site-header::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(10, 19, 37, 0.12);
  opacity: 0;
  transition: opacity 0.35s ease;
}

.site-header.is-scrolled {
  padding: 0.75rem 0;
  box-shadow: var(--shadow-sm);
}

.site-header.is-scrolled::before {
  opacity: 1;
}

.site-header.is-hidden {
  transform: translateY(-102%);
}

.nav-shell {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.72rem 0.9rem;
  border: 1px solid transparent;
  border-radius: 999px;
  transition: border-color 0.35s ease, background-color 0.35s ease, backdrop-filter 0.35s ease;
}

.site-header.is-scrolled .nav-shell {
  border-color: var(--line);
  background: rgba(21, 35, 61, 0.74);
  backdrop-filter: blur(10px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-family: "Sora", "Segoe UI", sans-serif;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.brand img {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  padding: 0;
  border-radius: 10px;
  background: transparent;
  border: none;
  box-shadow: none;
}

.brand span {
  color: var(--text-strong);
  font-size: 1.02rem;
}

.menu-toggle {
  display: none;
  border: 1px solid var(--line);
  background: rgba(21, 35, 61, 0.65);
  color: var(--text-strong);
  border-radius: 14px;
  width: 2.8rem;
  height: 2.8rem;
  padding: 0;
  cursor: pointer;
  font-weight: 700;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s ease, background-color 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.menu-toggle:hover {
  transform: translateY(-1px);
}

.menu-toggle:focus-visible {
  outline: 2px solid rgba(14, 165, 233, 0.65);
  outline-offset: 2px;
}

.menu-toggle__icon {
  display: inline-flex;
  flex-direction: column;
  gap: 0.27rem;
  width: 1.1rem;
  pointer-events: none;
}

.menu-toggle__line {
  width: 100%;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transform-origin: center;
  transition: transform 0.26s ease, opacity 0.2s ease;
}

.menu-toggle.is-open .menu-toggle__line:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.menu-toggle.is-open .menu-toggle__line:nth-child(2) {
  opacity: 0;
}

.menu-toggle.is-open .menu-toggle__line:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.menu {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 0.35rem;
  align-items: center;
}

.menu a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.52rem 0.72rem;
  border-radius: 999px;
  font-size: 0.88rem;
  color: var(--text-soft);
  border: 1px solid transparent;
  transition: color 0.25s ease, background-color 0.25s ease, border-color 0.25s ease;
}

.menu a:hover,
.menu a.active {
  color: var(--text-strong);
  border-color: rgba(6, 182, 212, 0.4);
  background: rgba(14, 165, 233, 0.12);
}

.button,
button,
input[type="submit"] {
  font: inherit;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  border-radius: 999px;
  padding: 0.8rem 1.3rem;
  border: 1px solid transparent;
  cursor: pointer;
  font-weight: 700;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.25s ease, border-color 0.25s ease, color 0.25s ease;
}

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

.button-primary {
  background: linear-gradient(140deg, var(--brand), var(--accent));
  color: #e2f8ff;
  box-shadow: 0 14px 24px rgba(14, 165, 233, 0.26);
}

.button-primary:hover {
  box-shadow: 0 18px 28px rgba(14, 165, 233, 0.38);
}

.button-outline {
  border-color: rgba(148, 163, 184, 0.3);
  color: var(--text-strong);
  background: rgba(21, 35, 61, 0.36);
}

.button-outline:hover {
  border-color: rgba(14, 165, 233, 0.55);
  background: rgba(56, 189, 248, 0.09);
}

.button-soft {
  background: rgba(15, 23, 42, 0.55);
  color: var(--text-strong);
  border-color: rgba(148, 163, 184, 0.25);
}

main {
  padding-top: 110px;
}

.hero {
  padding: 2rem 0 4.5rem;
}

.hero-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(0, 1fr);
  gap: 2rem;
  align-items: center;
}

.hero-content h1 {
  margin: 0;
  font-family: "Sora", "Segoe UI", sans-serif;
  font-size: clamp(2rem, 5vw, 3.8rem);
  line-height: 1.08;
  color: var(--text-strong);
  letter-spacing: -0.02em;
}

.hero-content p {
  margin: 1.15rem 0 0;
  font-size: clamp(1rem, 2.15vw, 1.2rem);
  color: #b6c7df;
  max-width: 62ch;
}

.badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-bottom: 1.2rem;
}

.badge {
  display: inline-flex;
  align-items: center;
  padding: 0.38rem 0.7rem;
  border-radius: 999px;
  border: 1px solid rgba(125, 211, 252, 0.32);
  background: rgba(14, 165, 233, 0.13);
  color: #d8f4ff;
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 0.01em;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.6rem;
}

.metrics {
  margin-top: 2rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.65rem;
}

.metric {
  padding: 0.8rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--line);
  background: rgba(15, 23, 42, 0.5);
}

.metric strong {
  display: block;
  color: var(--text-strong);
  font-size: 1.2rem;
  font-family: "Sora", "Segoe UI", sans-serif;
}

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

.hero-media {
  position: relative;
  isolation: isolate;
  min-height: 510px;
}

.hero-media::before,
.hero-media::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  z-index: -1;
  filter: blur(14px);
}

.hero-media::before {
  width: 10.5rem;
  height: 10.5rem;
  top: 0;
  left: 0;
  background: rgba(56, 189, 248, 0.2);
}

.hero-media::after {
  width: 9.4rem;
  height: 9.4rem;
  right: 4%;
  bottom: 0;
  background: rgba(125, 211, 252, 0.16);
}

.hero-photo {
  position: relative;
  height: 420px;
  border-radius: var(--radius-xl);
  overflow: hidden;
  clip-path: polygon(9% 0, 100% 0, 100% 83%, 91% 100%, 0 100%, 0 16%);
  border: 1px solid rgba(125, 211, 252, 0.35);
  box-shadow: var(--shadow-lg);
}

.hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.03);
}

.hero-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(120deg, rgba(7, 15, 30, 0.58) 20%, rgba(9, 17, 33, 0.12) 58%),
    linear-gradient(180deg, rgba(6, 13, 27, 0.02), rgba(7, 15, 30, 0.38));
}

.floating-card {
  position: absolute;
  left: -7%;
  bottom: 7%;
  padding: 1rem 1.1rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--line);
  background: rgba(19, 33, 56, 0.83);
  backdrop-filter: blur(8px);
  box-shadow: var(--shadow-sm);
  max-width: 240px;
  animation: float 8s ease-in-out infinite;
}

.floating-card strong {
  display: block;
  color: var(--text-strong);
  font-family: "Sora", "Segoe UI", sans-serif;
  font-size: 1rem;
}

.floating-card p {
  margin: 0.4rem 0 0;
  color: var(--text-soft);
  font-size: 0.84rem;
}

.section {
  padding: 3rem 0;
}

.section-heading {
  margin-bottom: 1.4rem;
}

.section-heading h2 {
  margin: 0;
  color: var(--text-strong);
  font-family: "Sora", "Segoe UI", sans-serif;
  font-size: clamp(1.5rem, 2.4vw, 2.15rem);
  letter-spacing: -0.015em;
}

.section-heading p {
  margin: 0.65rem 0 0;
  color: var(--text-soft);
  max-width: 72ch;
}

.grid {
  display: grid;
  gap: 1rem;
}

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

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

.section-packages-home .package-overview-stack {
  display: grid;
  gap: 1.25rem;
}

.section-packages-home .package-overview-callout {
  border-radius: var(--radius-md);
  padding: clamp(1.2rem, 2.8vw, 1.8rem);
}

.card {
  position: relative;
  padding: 1.2rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--line);
  background: linear-gradient(155deg, rgba(25, 40, 67, 0.74), rgba(18, 31, 54, 0.68));
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}

.card::before {
  content: "";
  position: absolute;
  top: -45%;
  right: -25%;
  width: 12rem;
  height: 12rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(14, 165, 233, 0.2), transparent 70%);
  transition: transform 0.4s ease;
}

.card:hover::before {
  transform: scale(1.13);
}

.card h3 {
  margin: 0;
  color: var(--text-strong);
  font-family: "Sora", "Segoe UI", sans-serif;
  font-size: 1.1rem;
}

.card p {
  margin: 0.6rem 0 0;
  color: var(--text-soft);
  font-size: 0.96rem;
}

.card ul {
  margin: 0.8rem 0 0;
  padding-left: 1.05rem;
  color: #bbd0ec;
}

.card ul li + li {
  margin-top: 0.45rem;
}

.highlight {
  margin-top: 1.2rem;
  padding: 1.2rem;
  border-radius: var(--radius-md);
  border: 1px solid rgba(125, 211, 252, 0.32);
  background: linear-gradient(145deg, rgba(56, 189, 248, 0.13), rgba(15, 43, 78, 0.08));
}

.highlight strong {
  display: block;
  color: var(--text-strong);
  font-family: "Sora", "Segoe UI", sans-serif;
  font-size: 1.03rem;
}

.highlight p {
  margin: 0.55rem 0 0;
  color: #b6d4f0;
}

.project-card {
  display: flex;
  flex-direction: column;
  min-height: 220px;
}

.project-card .tag {
  align-self: flex-start;
  margin-top: auto;
  display: inline-flex;
  padding: 0.25rem 0.58rem;
  border-radius: 999px;
  font-size: 0.75rem;
  border: 1px solid rgba(14, 165, 233, 0.34);
  background: rgba(14, 165, 233, 0.12);
  color: #cceeff;
}

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

.price-card {
  position: relative;
  overflow: hidden;
}

.price-card::after {
  content: "";
  position: absolute;
  inset: auto -35% -35% auto;
  width: 10rem;
  height: 10rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(14, 165, 233, 0.2), transparent 70%);
  pointer-events: none;
}

.price {
  margin-top: 0.85rem;
  font-family: "Sora", "Segoe UI", sans-serif;
  font-size: 1.35rem;
  color: var(--text-strong);
}

.price span {
  color: var(--text-soft);
  font-size: 0.85rem;
  font-weight: 500;
}

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

.check-list li {
  position: relative;
  padding-left: 1.15rem;
  color: #bbd0ec;
  font-size: 0.93rem;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.5rem;
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--brand), var(--accent));
}

.kicker {
  margin: 0;
  color: #b8cce7;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 700;
}

.faq-list {
  display: grid;
  gap: 0.7rem;
}

.faq-list details {
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 0.8rem 0.9rem;
  background: rgba(24, 39, 66, 0.62);
}

.faq-list summary {
  position: relative;
  list-style: none;
  padding-right: 1.6rem;
  cursor: pointer;
  color: var(--text-strong);
  font-weight: 700;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::marker {
  content: "";
}

.faq-list summary::after {
  content: "";
  position: absolute;
  right: 0.15rem;
  top: 50%;
  width: 0.52rem;
  height: 0.52rem;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: translateY(-58%) rotate(45deg);
  transition: transform 0.2s ease;
}

.faq-list details[open] summary::after {
  transform: translateY(-40%) rotate(-135deg);
}

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

.callout {
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  padding: clamp(1.25rem, 3vw, 2rem);
  background: linear-gradient(145deg, rgba(25, 41, 68, 0.82), rgba(18, 31, 54, 0.74));
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 1rem;
  align-items: center;
}

.callout h3 {
  margin: 0;
  font-family: "Sora", "Segoe UI", sans-serif;
  color: var(--text-strong);
  font-size: clamp(1.2rem, 2.5vw, 1.7rem);
}

.callout p {
  margin: 0.4rem 0 0;
  color: var(--text-soft);
}

.page-hero {
  padding: 2rem 0 2.8rem;
}

.page-hero-shell {
  padding: clamp(1.35rem, 3.5vw, 2.5rem);
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  background:
    linear-gradient(155deg, rgba(25, 41, 68, 0.84), rgba(18, 31, 54, 0.76)),
    radial-gradient(circle at 80% 20%, rgba(56, 189, 248, 0.16), transparent 48%);
}

.breadcrumb {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: #a7bfdc;
  font-size: 0.86rem;
  margin-bottom: 0.75rem;
}

.page-hero h1 {
  margin: 0;
  font-family: "Sora", "Segoe UI", sans-serif;
  color: var(--text-strong);
  font-size: clamp(1.75rem, 4.8vw, 3rem);
}

.page-hero p {
  margin: 0.8rem 0 0;
  color: var(--text-soft);
  max-width: 70ch;
}

.timeline {
  display: grid;
  gap: 0.9rem;
}

.timeline-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.8rem;
  align-items: start;
  padding: 0.95rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--line);
  background: rgba(24, 39, 66, 0.62);
}

.timeline-dot {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  margin-top: 0.42rem;
  background: linear-gradient(135deg, var(--brand), var(--accent));
  box-shadow: 0 0 0 6px rgba(14, 165, 233, 0.13);
}

.timeline-item h3 {
  margin: 0;
  color: var(--text-strong);
  font-family: "Sora", "Segoe UI", sans-serif;
  font-size: 1rem;
}

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

.form-wrap {
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  padding: clamp(1.1rem, 3vw, 2rem);
  background: linear-gradient(160deg, rgba(25, 41, 68, 0.82), rgba(18, 31, 54, 0.74));
  box-shadow: var(--shadow-sm);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.85rem;
}

.form-group {
  display: grid;
  gap: 0.35rem;
}

.form-group.full {
  grid-column: 1 / -1;
}

label {
  font-size: 0.9rem;
  color: #b4c7df;
}

input,
textarea,
select {
  width: 100%;
  border-radius: 12px;
  border: 1px solid rgba(148, 163, 184, 0.25);
  background: rgba(18, 31, 54, 0.72);
  color: var(--text-strong);
  padding: 0.72rem 0.82rem;
  font: inherit;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

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

input:focus,
textarea:focus,
select:focus {
  outline: none;
  border-color: rgba(14, 165, 233, 0.7);
  box-shadow: 0 0 0 4px rgba(14, 165, 233, 0.17);
}

.form-note {
  margin-top: 0.8rem;
  color: var(--text-soft);
  font-size: 0.84rem;
}

.status-box {
  margin-top: 0.9rem;
  border-radius: 12px;
  padding: 0.68rem 0.82rem;
  font-size: 0.87rem;
  display: none;
}

.status-box.ok {
  display: block;
  color: #dafbe4;
  border: 1px solid rgba(34, 197, 94, 0.42);
  background: rgba(34, 197, 94, 0.16);
}

.status-box.error {
  display: block;
  color: #fee8d8;
  border: 1px solid rgba(249, 115, 22, 0.44);
  background: rgba(249, 115, 22, 0.15);
}

.contact-card {
  border-radius: var(--radius-md);
  border: 1px solid var(--line);
  background: rgba(24, 39, 66, 0.62);
  padding: 1rem;
}

.contact-card strong {
  display: block;
  color: var(--text-strong);
  font-family: "Sora", "Segoe UI", sans-serif;
}

.contact-card p,
.contact-card a,
.contact-card .contact-placeholder {
  margin: 0.42rem 0 0;
  color: var(--text-soft);
  font-size: 0.93rem;
}

.contact-placeholder {
  display: block;
  margin: 0.42rem 0 0;
  font-size: 0.93rem;
  font-weight: 600;
  letter-spacing: 0.01em;
}

.site-footer {
  margin-top: 4rem;
  border-top: 1px solid var(--line);
  background: rgba(12, 23, 42, 0.58);
}

.footer-shell {
  padding: 2rem 0 1.2rem;
}

.footer-top {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.footer-column {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.38rem;
}

.footer-column .brand {
  margin-bottom: 0.2rem;
}

.footer-column h4 {
  margin: 0;
  color: var(--text-strong);
  font-size: 0.95rem;
  font-family: "Sora", "Segoe UI", sans-serif;
}

.footer-column p,
.footer-column a,
.footer-column .contact-placeholder {
  display: block;
  margin: 0;
  color: var(--text-soft);
  font-size: 0.9rem;
}

.footer-column a:hover {
  color: #d3e8ff;
}

.footer-bottom {
  margin-top: 1.2rem;
  padding-top: 0.8rem;
  border-top: 1px solid rgba(148, 163, 184, 0.16);
  display: flex;
  justify-content: space-between;
  gap: 0.8rem;
  flex-wrap: wrap;
  font-size: 0.82rem;
  color: #90a8c6;
}

.reveal {
  opacity: 0;
  transform: translateY(16px) scale(0.995);
  transition: opacity 0.45s ease, transform 0.45s ease;
}

.reveal.show {
  opacity: 1;
  transform: translateY(0) scale(1);
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-4px);
  }
}

@keyframes driftA {
  0%,
  100% {
    transform: translate(0, 0);
  }
  50% {
    transform: translate(12px, -6px);
  }
}

@keyframes driftB {
  0%,
  100% {
    transform: translate(0, 0);
  }
  50% {
    transform: translate(-10px, -8px);
  }
}

@media (max-width: 980px) {
  .hero-layout,
  .grid-3,
  .grid-2,
  .price-grid,
  .footer-top,
  .callout,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .hero-media {
    min-height: auto;
    display: grid;
    gap: 0.85rem;
  }

  .hero-photo {
    height: 360px;
  }

  .floating-card {
    position: static;
    left: auto;
    right: auto;
    bottom: auto;
    max-width: none;
    animation: none;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .menu-panel {
    position: absolute;
    top: calc(100% + 0.55rem);
    right: 0;
    left: 0;
    border-radius: 18px;
    border: 1px solid var(--line);
    background: rgba(19, 33, 56, 0.94);
    padding: 0.7rem;
    backdrop-filter: blur(10px);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-10px) scale(0.98);
    transform-origin: top center;
    max-height: 0;
    overflow: hidden;
    transition: opacity 0.24s ease, transform 0.24s ease, max-height 0.3s ease, visibility 0s linear 0.24s;
  }

  .menu-panel.open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0) scale(1);
    max-height: 80vh;
    transition: opacity 0.24s ease, transform 0.24s ease, max-height 0.3s ease;
  }

  .menu {
    flex-direction: column;
    align-items: stretch;
  }

  .menu a {
    justify-content: flex-start;
    border-radius: 12px;
  }
}

@media (max-width: 620px) {
  .container {
    width: min(var(--container), calc(100% - 1.4rem));
  }

  .hero {
    padding: 1.1rem 0 2.8rem;
  }

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

  .hero-photo {
    height: 320px;
  }

  .footer-bottom {
    flex-direction: column;
  }
}

/* Calm + friendly redesign layer */
:root {
  --bg: #f7f4ee;
  --bg-soft: #efe8db;
  --surface: rgba(255, 255, 255, 0.88);
  --surface-strong: #ffffff;
  --text: #334155;
  --text-strong: #1f2937;
  --text-soft: #5f6f82;
  --brand: #2b8a6d;
  --brand-strong: #226f58;
  --accent: #4d97a6;
  --line: rgba(76, 92, 117, 0.2);
  --ok: #1f9a5f;
  --danger: #cf6a3a;
  --shadow-lg: 0 18px 34px rgba(49, 67, 97, 0.12);
  --shadow-sm: 0 8px 20px rgba(49, 67, 97, 0.08);
}

body {
  color: var(--text);
  background:
    radial-gradient(circle at 8% -10%, rgba(77, 151, 166, 0.19), transparent 42%),
    radial-gradient(circle at 92% -14%, rgba(43, 138, 109, 0.13), transparent 38%),
    linear-gradient(180deg, #fbfaf7 0%, #f5f1e8 52%, #efe8db 100%);
}

.site-bg::before {
  background: rgba(120, 175, 145, 0.15);
  filter: blur(52px);
}

.site-bg::after {
  background: rgba(77, 151, 166, 0.12);
  filter: blur(52px);
}

.site-header::before {
  background: rgba(250, 247, 241, 0.78);
}

.site-header.is-scrolled {
  box-shadow: 0 8px 22px rgba(49, 67, 97, 0.09);
}

.nav-shell {
  border-color: rgba(76, 92, 117, 0.15);
}

.site-header.is-scrolled .nav-shell {
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.84);
  backdrop-filter: blur(10px);
}

.brand span {
  color: var(--text-strong);
}

.menu-toggle {
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.92);
  color: var(--text-strong);
}

.menu a {
  color: #55657b;
}

.menu a:hover,
.menu a.active {
  color: var(--text-strong);
  border-color: rgba(77, 151, 166, 0.34);
  background: rgba(77, 151, 166, 0.11);
}

.button-primary {
  background: linear-gradient(140deg, var(--brand), var(--accent));
  color: #f8fffd;
  box-shadow: 0 12px 22px rgba(43, 138, 109, 0.22);
}

.button-primary:hover {
  box-shadow: 0 16px 24px rgba(43, 138, 109, 0.27);
}

.button-outline {
  border-color: var(--line);
  color: var(--text-strong);
  background: rgba(255, 255, 255, 0.62);
}

.button-outline:hover {
  border-color: rgba(43, 138, 109, 0.5);
  background: rgba(43, 138, 109, 0.08);
}

.button-soft {
  background: rgba(255, 255, 255, 0.72);
  color: var(--text-strong);
  border-color: var(--line);
}

.hero-content p {
  color: var(--text-soft);
}

.badge {
  border-color: rgba(77, 151, 166, 0.36);
  background: rgba(77, 151, 166, 0.12);
  color: #2c6672;
}

.metric {
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.78);
}

.metric span {
  color: var(--text-soft);
}

.hero-media::before,
.hero-media::after {
  filter: blur(12px);
}

.hero-media::before {
  background: rgba(77, 151, 166, 0.12);
}

.hero-media::after {
  background: rgba(120, 175, 145, 0.14);
}

.hero-photo {
  clip-path: none;
  border-radius: 28px;
  border: 1px solid rgba(76, 92, 117, 0.2);
}

.hero-photo img {
  transform: scale(1.01);
}

.hero-photo::after {
  background:
    linear-gradient(115deg, rgba(251, 246, 236, 0.1) 0%, rgba(246, 241, 231, 0.15) 40%),
    linear-gradient(180deg, rgba(27, 37, 52, 0.04), rgba(27, 37, 52, 0.18));
}

.floating-card {
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.93);
}

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

.section-heading p,
.card p,
.faq-list p,
.timeline-item p,
.form-note,
.callout p,
.page-hero p,
.contact-card p,
.contact-card a,
.contact-card .contact-placeholder,
.footer-column p,
.footer-column a,
.footer-column .contact-placeholder {
  color: var(--text-soft);
}

.card {
  border-color: var(--line);
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.93), rgba(252, 250, 246, 0.88));
}

.card::before {
  background: radial-gradient(circle, rgba(77, 151, 166, 0.14), transparent 70%);
}

.card ul,
.check-list li {
  color: #55657b;
}

.highlight {
  border-color: rgba(77, 151, 166, 0.35);
  background: linear-gradient(145deg, rgba(77, 151, 166, 0.12), rgba(255, 255, 255, 0.9));
}

.highlight p {
  color: #4f6279;
}

.project-card .tag {
  border-color: rgba(77, 151, 166, 0.35);
  background: rgba(77, 151, 166, 0.12);
  color: #2c6672;
}

.price-card::after {
  background: radial-gradient(circle, rgba(77, 151, 166, 0.18), transparent 70%);
}

.price span {
  color: #66788f;
}

.check-list li::before {
  background: linear-gradient(135deg, var(--brand), var(--accent));
}

.kicker {
  color: #73859b;
}

.faq-list details {
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.86);
}

.callout {
  border-color: var(--line);
  background: linear-gradient(150deg, rgba(255, 255, 255, 0.94), rgba(250, 246, 238, 0.9));
}

.page-hero-shell {
  border-color: var(--line);
  background:
    linear-gradient(155deg, rgba(255, 255, 255, 0.92), rgba(250, 246, 238, 0.86)),
    radial-gradient(circle at 80% 20%, rgba(77, 151, 166, 0.13), transparent 50%);
}

.breadcrumb {
  color: #71849b;
}

.timeline-item {
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.84);
}

.timeline-dot {
  box-shadow: 0 0 0 6px rgba(77, 151, 166, 0.14);
}

.form-wrap {
  border-color: var(--line);
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.93), rgba(250, 246, 238, 0.88));
}

label {
  color: #516377;
}

input,
textarea,
select {
  border-color: rgba(76, 92, 117, 0.26);
  background: rgba(255, 255, 255, 0.9);
  color: var(--text-strong);
}

input:focus,
textarea:focus,
select:focus {
  border-color: rgba(43, 138, 109, 0.66);
  box-shadow: 0 0 0 4px rgba(43, 138, 109, 0.15);
}

.status-box.ok {
  color: #124c30;
  border-color: rgba(31, 154, 95, 0.42);
  background: rgba(31, 154, 95, 0.15);
}

.status-box.error {
  color: #6a3116;
  border-color: rgba(207, 106, 58, 0.44);
  background: rgba(207, 106, 58, 0.15);
}

.contact-card {
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.84);
}

.site-footer {
  border-top: 1px solid var(--line);
  background: rgba(244, 239, 229, 0.86);
}

.footer-column a:hover {
  color: var(--brand-strong);
}

.footer-bottom {
  border-top: 1px solid rgba(76, 92, 117, 0.15);
  color: #7b8ca1;
}

.reveal {
  transform: translateY(12px) scale(0.998);
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-3px);
  }
}

@keyframes driftA {
  0%,
  100% {
    transform: translate(0, 0);
  }
  50% {
    transform: translate(8px, -4px);
  }
}

@keyframes driftB {
  0%,
  100% {
    transform: translate(0, 0);
  }
  50% {
    transform: translate(-6px, -5px);
  }
}

@media (max-width: 980px) {
  .menu-panel {
    border-color: rgba(76, 92, 117, 0.22);
    background: rgba(255, 255, 255, 0.95);
  }
}

