:root {
  --navy: #062b4f;
  --navy-deep: #031f3a;
  --gold: #f2ad00;
  --green: #16a83e;
  --paper: #f8fafc;
  --ink: #082642;
  --muted: #46586b;
  --line: #e6ebf0;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  min-width: 320px;
  color: var(--ink);
  background: var(--paper);
  font-family: Roboto, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}

.brand {
  background: linear-gradient(110deg, var(--navy-deep), var(--navy));
  color: #fff;
  border-bottom: 1px solid rgba(255,255,255,.08);
}

.brand__content {
  width: min(100% - 32px, 680px);
  min-height: 116px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 18px;
}

.brand__logo {
  display: block;
  width: 82px;
  height: 82px;
  flex: 0 0 82px;
}

.brand__text {
  min-width: 0;
  display: grid;
  gap: 8px;
}

.brand__text strong {
  color: #fff;
  font: 800 clamp(22px, 5vw, 32px)/1 Montserrat, sans-serif;
  white-space: nowrap;
}

.brand__text span {
  color: var(--gold);
  font: 500 clamp(15px, 3.4vw, 21px)/1.15 Montserrat, sans-serif;
  letter-spacing: 1.7px;
  white-space: nowrap;
}

.page {
  width: min(100% - 28px, 680px);
  margin: auto;
  padding: 34px 0 max(30px, env(safe-area-inset-bottom));
}

.intro { text-align: center; }
.intro h1 {
  margin: 0;
  color: #071f3a;
  font: 800 clamp(31px, 8vw, 49px)/1.08 Montserrat, sans-serif;
  letter-spacing: -.8px;
}

.intro__accent {
  width: 104px;
  height: 5px;
  margin: 22px auto 23px;
  border-radius: 10px;
  background: var(--gold);
}

.intro p {
  margin: 0;
  color: #293d50;
  font-size: clamp(16px, 4.4vw, 20px);
  line-height: 1.45;
}

.intro .intro__direct {
  margin-top: 7px;
  color: var(--ink);
  font-weight: 500;
}

.services {
  display: grid;
  gap: 13px;
  margin-top: 27px;
}

.service {
  min-height: 88px;
  display: grid;
  grid-template-columns: 74px minmax(0, 1fr) 46px;
  align-items: center;
  gap: 12px;
  padding: 14px 20px;
  color: var(--ink);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 15px;
  box-shadow: 0 6px 18px rgba(7, 31, 58, .10);
  text-decoration: none;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
  -webkit-tap-highlight-color: transparent;
}

.service:hover,
.service:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(242, 173, 0, .7);
  box-shadow: 0 9px 24px rgba(7, 31, 58, .15);
  outline: none;
}

.service:active { transform: scale(.99); }

.service__icon {
  min-width: 56px;
  color: var(--gold);
  font: 700 29px/1 Montserrat, sans-serif;
  text-align: center;
}

.service__name {
  font: 700 clamp(18px, 5vw, 25px)/1.2 Montserrat, sans-serif;
}

.whatsapp {
  width: 46px;
  height: 46px;
  display: block;
}

.notice {
  margin: 18px 0 0;
  padding: 12px 14px;
  color: #7a4100;
  background: #fff4d6;
  border: 1px solid #f0c36b;
  border-radius: 10px;
  text-align: center;
}

@media (max-width: 480px) {
  .brand__content { min-height: 98px; }
  .brand__logo { width: 68px; height: 68px; flex-basis: 68px; }
  .brand__content { gap: 13px; }
  .brand__text strong { font-size: clamp(19px, 5.5vw, 25px); }
  .brand__text span { font-size: clamp(12px, 3.4vw, 16px); letter-spacing: 1.2px; }
  .page { width: min(100% - 20px, 680px); padding-top: 27px; }
  .service {
    min-height: 78px;
    grid-template-columns: 52px minmax(0, 1fr) 39px;
    gap: 8px;
    padding: 12px 13px;
    border-radius: 13px;
  }
  .service__icon { min-width: 44px; font-size: 24px; }
  .whatsapp { width: 40px; height: 40px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; transition: none !important; }
}
