/* Concept 02: Calm Fresh */
:root {
  --bg: #f4f8f7;
  --bg-2: #eaf2f0;
  --ink: #1c2b33;
  --muted: #687983;
  --surface: rgba(255, 255, 255, 0.78);
  --surface-strong: #ffffff;
  --line: rgba(28, 43, 51, 0.11);
  --blue: #416d85;
  --blue-dark: #254757;
  --sage: #8ab7a1;
  --sage-soft: #dceae5;
  --apricot: #e7ad86;
  --shadow: 0 22px 62px rgba(36, 66, 82, 0.12);
  --radius-xl: 36px;
  --radius-lg: 26px;
  --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Manrope', sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at 10% 0%, rgba(138, 183, 161, .24), transparent 26%),
    radial-gradient(circle at 96% 8%, rgba(65, 109, 133, .14), transparent 25%),
    linear-gradient(180deg, #f7fbfa 0%, var(--bg) 42%, #eef5f3 100%);
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; }
button { cursor: pointer; }
.container { width: min(calc(100% - 32px), var(--container)); margin: 0 auto; }
.section { padding: 104px 0; position: relative; }
h1, h2, h3 {
  margin: 0;
  font-family: 'Onest', sans-serif;
  letter-spacing: -0.045em;
}
h1 {
  max-width: 890px;
  font-size: clamp(2.5rem, 5.4vw, 5rem);
  line-height: .98;
}
h2 {
  max-width: 760px;
  font-size: clamp(2rem, 3.5vw, 3.55rem);
  line-height: 1.04;
}
h3 { font-size: clamp(1.18rem, 1.6vw, 1.5rem); line-height: 1.2; }
p { margin: 0; color: var(--muted); font-size: 1.02rem; line-height: 1.7; }
.eyebrow {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  gap: 9px;
  margin-bottom: 18px;
  padding: 9px 13px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.66);
  color: var(--blue-dark);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.eyebrow::before {
  content: "";
  width: 18px;
  height: 2px;
  border-radius: 99px;
  background: var(--sage);
}
.header {
  position: sticky;
  top: 0;
  z-index: 60;
  padding: 15px 0;
  background: rgba(244, 248, 247, .75);
  border-bottom: 1px solid rgba(28,43,51,.08);
  backdrop-filter: blur(18px);
}
.header__inner { display: flex; align-items: center; justify-content: space-between; gap: 18px; }
.logo { display: inline-flex; align-items: center; gap: 12px; flex-shrink: 0; }
.logo__mark {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 17px;
  background: linear-gradient(145deg, var(--blue-dark), var(--sage));
  color: #fff;
  font-weight: 900;
  box-shadow: 0 14px 30px rgba(37,71,87,.20);
}
.logo span:not(.logo__mark) { display: grid; line-height: 1.1; }
.logo strong { font-weight: 900; }
.logo small { color: var(--muted); font-size: .76rem; }
.nav { display: flex; align-items: center; gap: 22px; color: var(--muted); font-size: .94rem; font-weight: 800; }
.nav a:hover { color: var(--ink); }
.phone {
  white-space: nowrap;
  padding: 13px 17px;
  border-radius: 16px;
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: 0 10px 30px rgba(36,66,82,.08);
  font-weight: 900;
}
.burger {
  display: none;
  width: 44px;
  height: 44px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--surface);
}
.burger span { width: 18px; height: 2px; background: var(--ink); }
.hero { min-height: calc(100vh - 78px); display: flex; align-items: center; padding-top: 52px; }
.hero-panel {
  position: relative;
  overflow: hidden;
  min-height: 600px;
  border-radius: 44px;
  background: var(--surface-strong);
  border: 1px solid rgba(255,255,255,.9);
  box-shadow: var(--shadow);
}
.hero-panel__bg { position: absolute; inset: 0; }
.hero-panel__bg img { width: 100%; height: 100%; object-fit: cover; }
.hero-panel__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(247,251,250,.96) 0%, rgba(247,251,250,.86) 44%, rgba(247,251,250,.30) 100%),
    linear-gradient(180deg, rgba(37,71,87,.04), rgba(37,71,87,.18));
}
.hero-panel__content {
  position: relative;
  z-index: 1;
  width: min(760px, 100%);
  padding: clamp(28px, 6vw, 72px);
}
.hero-panel__content p { max-width: 650px; margin-top: 22px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 30px; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 15px 22px;
  border: 0;
  border-radius: 18px;
  font-weight: 900;
  transition: transform .24s ease, box-shadow .24s ease, background .24s ease;
}
.btn:hover { transform: translateY(-3px); }
.btn--primary {
  color: #fff;
  background: linear-gradient(135deg, var(--blue-dark), var(--blue));
  box-shadow: 0 16px 34px rgba(37,71,87,.22);
}
.btn--light {
  color: var(--ink);
  background: rgba(255,255,255,.76);
  border: 1px solid var(--line);
}
.quick-nav {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: -48px;
  position: relative;
  z-index: 2;
  padding: 0 clamp(14px, 3vw, 38px);
}
.quick-nav a {
  padding: 22px;
  border-radius: 24px;
  background: rgba(255,255,255,.84);
  border: 1px solid rgba(255,255,255,.88);
  box-shadow: 0 16px 42px rgba(36,66,82,.11);
  backdrop-filter: blur(14px);
  transition: transform .24s ease, box-shadow .24s ease;
}
.quick-nav a:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.quick-nav strong { display: block; margin-bottom: 8px; }
.quick-nav span { color: var(--muted); line-height: 1.5; }
.bento {
  display: grid;
  grid-template-columns: 1.15fr .55fr .55fr;
  grid-auto-rows: minmax(180px, auto);
  gap: 18px;
}
.bento > article {
  border-radius: 30px;
  background: var(--surface);
  border: 1px solid rgba(255,255,255,.86);
  box-shadow: 0 14px 42px rgba(36,66,82,.09);
  overflow: hidden;
}
.bento__main { grid-row: span 2; padding: 34px; display: flex; flex-direction: column; justify-content: center; }
.bento__main p { margin-top: 20px; max-width: 620px; }
.bento__stat { padding: 26px; display: flex; flex-direction: column; justify-content: space-between; background: #ffffff; }
.bento__stat--green { background: var(--sage-soft); }
.bento__stat strong {
  display: block;
  font-family: 'Onest', sans-serif;
  font-size: clamp(2rem, 3.2vw, 3.2rem);
  letter-spacing: -.05em;
}
.bento__stat span { color: var(--muted); line-height: 1.55; }
.bento__image { grid-column: 2 / 4; min-height: 260px; }
.bento__image img { width: 100%; height: 100%; object-fit: cover; }
.bento__note { grid-column: 2 / 4; padding: 28px; background: #fdfaf4 !important; }
.bento__note h3 { margin-bottom: 12px; }
.split-head {
  display: grid;
  grid-template-columns: .65fr 1fr .75fr;
  gap: 24px;
  align-items: end;
  margin-bottom: 42px;
}
.split-head .eyebrow { margin-bottom: 0; align-self: start; }
.case-lanes { display: grid; gap: 16px; }
.lane-card {
  display: grid;
  grid-template-columns: 90px 260px 1fr;
  gap: 22px;
  align-items: center;
  padding: 16px;
  border-radius: 30px;
  background: rgba(255,255,255,.78);
  border: 1px solid rgba(255,255,255,.88);
  box-shadow: 0 14px 42px rgba(36,66,82,.09);
  transition: transform .24s ease, box-shadow .24s ease;
}
.lane-card:hover { transform: translateX(6px); box-shadow: var(--shadow); }
.lane-card__index {
  width: 66px;
  height: 66px;
  display: grid;
  place-items: center;
  border-radius: 22px;
  background: var(--sage-soft);
  color: var(--blue-dark);
  font-weight: 900;
}
.lane-card__image { overflow: hidden; border-radius: 22px; }
.lane-card__image img { width: 100%; height: 190px; object-fit: cover; transition: transform .45s ease; }
.lane-card:hover img { transform: scale(1.06); }
.lane-card__content { padding-right: 20px; }
.lane-card__content span {
  display: inline-block;
  margin-bottom: 10px;
  color: var(--blue);
  font-size: .8rem;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.lane-card__content h3 { margin-bottom: 10px; }
.process-shell {
  display: grid;
  grid-template-columns: .72fr 1.28fr;
  gap: 38px;
  align-items: start;
}
.process-aside {
  position: sticky;
  top: 112px;
  padding: 30px;
  border-radius: 30px;
  background: var(--surface);
  border: 1px solid rgba(255,255,255,.86);
  box-shadow: 0 14px 42px rgba(36,66,82,.09);
}
.process-aside p { margin-top: 18px; }
.route {
  position: relative;
  display: grid;
  gap: 16px;
}
.route::before {
  content: "";
  position: absolute;
  top: 34px;
  bottom: 34px;
  left: 34px;
  width: 2px;
  background: linear-gradient(var(--sage), rgba(65,109,133,.18));
}
.route article {
  position: relative;
  display: grid;
  grid-template-columns: 68px 1fr;
  gap: 18px;
  padding: 24px;
  border-radius: 28px;
  background: rgba(255,255,255,.78);
  border: 1px solid rgba(255,255,255,.86);
  box-shadow: 0 14px 42px rgba(36,66,82,.08);
}
.route span {
  position: relative;
  z-index: 2;
  width: 68px;
  height: 68px;
  display: grid;
  place-items: center;
  border-radius: 22px;
  color: #fff;
  background: linear-gradient(145deg, var(--blue-dark), var(--sage));
  font-weight: 900;
}
.route h3 { margin-bottom: 8px; }
.service-matrix {
  display: grid;
  gap: 14px;
  padding: 12px;
  border-radius: 34px;
  background: rgba(255,255,255,.50);
  border: 1px solid rgba(255,255,255,.84);
  box-shadow: var(--shadow);
}
.matrix-row {
  display: grid;
  grid-template-columns: .9fr 1.1fr auto;
  gap: 24px;
  align-items: center;
  padding: 26px;
  border-radius: 26px;
  background: rgba(255,255,255,.76);
  border: 1px solid var(--line);
}
.matrix-row--accent { background: linear-gradient(135deg, #ffffff, var(--sage-soft)); }
.matrix-row span {
  display: inline-block;
  margin-bottom: 10px;
  color: var(--sage);
  font-weight: 900;
}
.matrix-row strong {
  white-space: nowrap;
  color: var(--blue-dark);
  font-size: 1.2rem;
}
.faq-grid {
  display: grid;
  grid-template-columns: .76fr 1.24fr;
  gap: 42px;
}
.faq-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
.faq-item {
  border-radius: 24px;
  background: rgba(255,255,255,.78);
  border: 1px solid rgba(255,255,255,.86);
  box-shadow: 0 14px 38px rgba(36,66,82,.08);
  overflow: hidden;
}
.faq-question {
  width: 100%;
  min-height: 90px;
  padding: 22px;
  border: 0;
  background: transparent;
  text-align: left;
  color: var(--ink);
  font-weight: 900;
  display: flex;
  justify-content: space-between;
  gap: 18px;
}
.faq-question span {
  position: relative;
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
}
.faq-question span::before,
.faq-question span::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 18px;
  height: 2px;
  background: var(--blue);
  transform: translate(-50%,-50%);
}
.faq-question span::after { transform: translate(-50%,-50%) rotate(90deg); transition: .2s; }
.faq-item.is-open .faq-question span::after { opacity: 0; }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 22px;
  transition: max-height .3s ease, padding .3s ease;
}
.faq-item.is-open .faq-answer { max-height: 210px; padding: 0 22px 22px; }
.contact-layout {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 20px;
  padding: 22px;
  border-radius: 38px;
  background: linear-gradient(135deg, rgba(138,183,161,.20), rgba(65,109,133,.10));
  border: 1px solid rgba(255,255,255,.88);
  box-shadow: var(--shadow);
}
.contact-panel {
  padding: 34px;
  border-radius: 30px;
  background: rgba(255,255,255,.58);
  border: 1px solid rgba(255,255,255,.76);
}
.contact-panel p { margin-top: 18px; }
.contact-panel ul {
  display: grid;
  gap: 12px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
  font-weight: 900;
}
.contact-panel li:last-child { color: var(--muted); font-weight: 700; }
.form {
  display: grid;
  gap: 14px;
  padding: 28px;
  border-radius: 30px;
  background: rgba(255,255,255,.82);
  border: 1px solid rgba(255,255,255,.92);
}
.form label { display: grid; gap: 8px; font-weight: 900; }
.form input, .form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255,255,255,.88);
  padding: 15px 16px;
  outline: none;
  color: var(--ink);
}
.form input:focus, .form textarea:focus {
  border-color: rgba(65,109,133,.36);
  box-shadow: 0 0 0 4px rgba(65,109,133,.09);
}
.form textarea { min-height: 130px; resize: vertical; }
.form .btn { width: 100%; }
.form small { color: var(--muted); line-height: 1.5; }
.form-message { min-height: 22px; font-weight: 900; }
.form-message.is-success { color: #25745d; }
.form-message.is-error { color: #bb5146; }
.footer { padding: 34px 0 42px; }
.footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}
.footer__links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px 18px;
  color: var(--muted);
  font-size: .92rem;
}
.footer__links a { color: var(--blue-dark); font-weight: 900; }
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s ease, transform .7s ease; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

@media (max-width: 1080px) {
  .nav { display: none; }
  .nav.is-open {
    order: 10;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
    padding: 18px;
    border-radius: 24px;
    background: rgba(255,255,255,.92);
    border: 1px solid var(--line);
  }
  .burger { display: inline-flex; margin-left: auto; }
  .header__inner { flex-wrap: wrap; }
  .phone { display: none; }
  .split-head, .process-shell, .faq-grid, .contact-layout { grid-template-columns: 1fr; }
  .process-aside { position: static; }
  .quick-nav { grid-template-columns: 1fr; margin-top: 16px; padding: 0; }
  .bento { grid-template-columns: 1fr 1fr; }
  .bento__main, .bento__image, .bento__note { grid-column: 1 / -1; }
  .lane-card { grid-template-columns: 72px 220px 1fr; }
  .matrix-row { grid-template-columns: 1fr; }
}
@media (max-width: 760px) {
  .section { padding: 78px 0; }
  .hero { min-height: auto; padding-top: 34px; }
  .hero-panel { min-height: auto; border-radius: 30px; }
  .hero-panel__bg::after { background: rgba(247,251,250,.90); }
  .hero-panel__content { padding: 28px; }
  .hero-actions { flex-direction: column; }
  .btn { width: 100%; }
  .bento, .faq-list { grid-template-columns: 1fr; }
  .lane-card { grid-template-columns: 1fr; }
  .lane-card__index { width: 54px; height: 54px; }
  .lane-card__image img { height: 240px; }
  .route::before { display: none; }
  .route article { grid-template-columns: 1fr; }
  .contact-layout, .contact-panel, .form { padding: 22px; border-radius: 26px; }
  .footer__inner { flex-direction: column; align-items: flex-start; }
  .footer__links { justify-content: flex-start; }
}
@media (max-width: 520px) {
  .container { width: min(calc(100% - 22px), var(--container)); }
  h1 { font-size: clamp(2.2rem, 12vw, 3.1rem); }
  .logo span:not(.logo__mark) { display: none; }
}
