:root {
  --navy: #263b63;
  --navy-deep: #172847;
  --turquoise: #29c7c3;
  --turquoise-deep: #18aaa7;
  --ink: #172033;
  --muted: #687386;
  --line: #dfe6eb;
  --soft: #f4f8f9;
  --white: #ffffff;
  --shadow: 0 24px 70px rgba(26, 47, 78, .14);
  --radius-lg: 30px;
  --radius-md: 22px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, a { -webkit-tap-highlight-color: transparent; }
button { font: inherit; }
.wrap { width: min(1160px, calc(100% - 40px)); margin: 0 auto; }
.section { padding: 92px 0; }

.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255,255,255,.96);
  border-bottom: 1px solid rgba(223,230,235,.9);
  box-shadow: 0 8px 30px rgba(31, 54, 84, .04);
}
.nav { min-height: 86px; display: flex; align-items: center; justify-content: space-between; gap: 28px; }
.brand { width: 158px; overflow: hidden; border-radius: 12px; background: #fff; }
.brand img { width: 100%; height: 56px; object-fit: cover; object-position: center; }
.menu { display: flex; align-items: center; gap: 6px; }
.menu a { padding: 11px 14px; border-radius: 999px; color: #47536a; font-size: .94rem; font-weight: 750; }
.menu a:hover, .menu a:focus-visible { background: #edf5f6; color: var(--navy); outline: none; }
.menu .menu-call { color: #fff; background: var(--navy); padding-inline: 20px; }
.menu .menu-call:hover, .menu .menu-call:focus-visible { background: var(--navy-deep); color: #fff; }
.menu-button { display: none; width: 46px; height: 46px; border: 0; border-radius: 14px; background: #eef4f6; cursor: pointer; align-items: center; justify-content: center; flex-direction: column; gap: 5px; }
.menu-button span { width: 22px; height: 2px; border-radius: 4px; background: var(--navy); transition: transform .2s ease, opacity .2s ease; }

.hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 83% 16%, rgba(41,199,195,.16), transparent 28%),
    linear-gradient(135deg, #fbfdfd 0%, #f1f7f8 48%, #ffffff 100%);
}
.hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, #dbe5e9, transparent);
}
.hero-grid { min-height: 670px; display: grid; grid-template-columns: 1.05fr .95fr; align-items: center; gap: 70px; padding: 76px 0; position: relative; z-index: 2; }
.hero-copy { max-width: 650px; }
.kicker { margin: 0 0 13px; color: var(--turquoise-deep); font-size: .78rem; font-weight: 900; letter-spacing: .13em; text-transform: uppercase; }
.hero h1, .section h2 { margin: 0; color: var(--navy-deep); letter-spacing: -.035em; line-height: 1.08; }
.hero h1 { max-width: 650px; font-size: clamp(2.75rem, 5.5vw, 5.3rem); }
.name { margin: 20px 0 0; color: var(--navy); font-size: 1.23rem; font-weight: 850; }
.intro { margin: 12px 0 0; max-width: 560px; color: var(--muted); font-size: 1.03rem; }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 30px; }
.button { min-height: 50px; display: inline-flex; align-items: center; justify-content: center; padding: 12px 22px; border-radius: 15px; font-weight: 850; transition: transform .2s ease, box-shadow .2s ease, background .2s ease; }
.button:hover { transform: translateY(-2px); }
.primary { color: #fff; background: linear-gradient(135deg, var(--navy), var(--navy-deep)); box-shadow: 0 12px 28px rgba(23,40,71,.18); }
.secondary { color: var(--navy); background: #fff; border: 1px solid var(--line); box-shadow: 0 10px 24px rgba(31,56,91,.06); }
.hero-info { margin-top: 34px; display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; max-width: 560px; }
.info-card { display: flex; align-items: center; gap: 12px; padding: 15px 17px; border: 1px solid #dfe9eb; border-radius: 17px; background: rgba(255,255,255,.72); }
.info-card strong, .info-card span { display: block; }
.info-card strong { color: var(--navy-deep); font-size: .84rem; }
.info-card div span { color: var(--muted); font-size: .91rem; }
.info-dot { width: 11px; height: 11px; flex: 0 0 11px; border-radius: 50%; background: var(--turquoise); box-shadow: 0 0 0 6px rgba(41,199,195,.12); }
.hero-logo { display: flex; justify-content: center; }
.logo-panel { width: min(100%, 510px); padding: 18px; border: 1px solid rgba(255,255,255,.8); border-radius: 34px; background: rgba(255,255,255,.72); box-shadow: var(--shadow); }
.logo-panel > img { width: 100%; aspect-ratio: 1 / 1; object-fit: cover; border-radius: 24px; background: #f3f3f3; }
.logo-panel-text { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 16px 8px 2px; }
.logo-panel-text span { color: #5c687a; font-size: .88rem; }
.logo-panel-text a { color: var(--navy); font-weight: 900; }
.hero-shape { position: absolute; border-radius: 50%; pointer-events: none; }
.hero-shape-a { width: 360px; height: 360px; right: -150px; top: 90px; border: 46px solid rgba(41,199,195,.08); }
.hero-shape-b { width: 220px; height: 220px; left: -120px; bottom: 25px; background: rgba(38,59,99,.035); }

.services { background: #fff; }
.section-title { max-width: 720px; margin-bottom: 38px; }
.section-title h2 { font-size: clamp(2.2rem, 4vw, 3.55rem); }
.services-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; }
.service-card { position: relative; overflow: hidden; min-height: 235px; padding: 28px; border: 1px solid var(--line); border-radius: var(--radius-md); background: linear-gradient(145deg, #fff, #fbfcfd); box-shadow: 0 13px 36px rgba(31,56,91,.07); transition: transform .2s ease, box-shadow .2s ease; }
.service-card:hover { transform: translateY(-5px); box-shadow: 0 18px 44px rgba(31,56,91,.11); }
.service-card::after { content: ""; position: absolute; width: 150px; height: 150px; right: -75px; bottom: -78px; border: 24px solid rgba(41,199,195,.09); border-radius: 50%; }
.service-number { position: absolute; right: 23px; top: 22px; color: #a8b4c0; font-size: .77rem; font-weight: 900; letter-spacing: .11em; }
.service-mark { width: 47px; height: 47px; display: grid; place-items: center; border-radius: 15px; color: #fff; background: var(--turquoise); font-weight: 900; box-shadow: 0 9px 24px rgba(41,199,195,.25); }
.service-card h3 { max-width: 270px; margin: 36px 0 0; color: var(--navy-deep); font-size: 1.28rem; line-height: 1.26; }
.service-card.featured { grid-column: span 2; background: linear-gradient(135deg, #eef9f9 0%, #f9fbfd 75%); }

.attention { background: var(--soft); }
.attention-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 22px; }
.attention-card { min-height: 100%; padding: 44px; border-radius: var(--radius-lg); }
.attention-card h2 { font-size: clamp(2rem, 3.3vw, 3rem); }
.dark-card { position: relative; overflow: hidden; color: #fff; background: linear-gradient(145deg, var(--navy-deep), #244875); }
.dark-card::after { content: ""; position: absolute; width: 230px; height: 230px; right: -105px; bottom: -110px; border: 38px solid rgba(41,199,195,.14); border-radius: 50%; }
.dark-card h2 { color: #fff; max-width: 500px; }
.dark-card p:not(.kicker) { max-width: 500px; margin: 22px 0 0; color: #d9e2ec; }
.light-kicker { color: #7be2df; }
.schedule-card { background: #fff; border: 1px solid var(--line); box-shadow: 0 14px 44px rgba(31,56,91,.08); }
.schedule-heading { display: flex; align-items: center; gap: 18px; }
.clock-badge { width: 74px; height: 74px; flex: 0 0 74px; display: grid; place-items: center; border-radius: 22px; color: var(--turquoise-deep); background: rgba(41,199,195,.12); font-size: 1.27rem; font-weight: 950; }
.schedule-heading h2 { font-size: clamp(1.8rem, 2.7vw, 2.45rem); }
.schedule-card > p { margin: 24px 0 18px; color: var(--muted); }
.notice { display: grid; gap: 2px; padding: 16px 18px; border-radius: 15px; border: 1px solid #dbe9e8; background: #f4f9f9; }
.notice strong { color: var(--navy); }
.notice span { color: var(--muted); font-size: .93rem; }
.inline-link { display: inline-flex; align-items: center; gap: 8px; margin-top: 22px; color: var(--navy); font-weight: 850; }

.location { padding-top: 76px; padding-bottom: 76px; background: #fff; }
.location-card { display: grid; grid-template-columns: auto 1fr auto; gap: 25px; align-items: center; padding: 38px 42px; border-radius: var(--radius-lg); border: 1px solid #dce8e9; background: linear-gradient(135deg, #edf8f8, #f8fafc); }
.location-card h2 { font-size: clamp(2rem, 3.6vw, 3rem); }
.pin { width: 72px; height: 72px; display: grid; place-items: center; border-radius: 22px; background: var(--turquoise); box-shadow: 0 12px 30px rgba(41,199,195,.24); }
.pin span { position: relative; width: 24px; height: 30px; border: 5px solid #fff; border-radius: 50% 50% 50% 0; transform: rotate(-45deg); }
.pin span::after { content: ""; position: absolute; width: 6px; height: 6px; left: 4px; top: 7px; border-radius: 50%; background: #fff; }
.white-button { background: #fff; color: var(--navy); box-shadow: 0 8px 24px rgba(31,56,91,.08); }

.contact { padding-top: 0; background: #fff; }
.contact-card { display: flex; align-items: center; justify-content: space-between; gap: 30px; padding: 48px 54px; border-radius: 32px; color: #fff; background: linear-gradient(125deg, #172847, #2b4f80); box-shadow: 0 20px 56px rgba(23,40,71,.14); }
.contact-card h2 { color: #fff; font-size: clamp(2.2rem, 4vw, 3.4rem); }
.contact-card p:not(.kicker) { margin: 12px 0 0; color: #d7e1ec; }
.phone-card { min-width: 280px; padding: 22px 26px; border-radius: 20px; background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.16); }
.phone-card span, .phone-card strong { display: block; }
.phone-card span { color: #cbd8e5; font-size: .77rem; font-weight: 850; letter-spacing: .12em; text-transform: uppercase; }
.phone-card strong { margin-top: 4px; font-size: 1.52rem; }

.footer { border-top: 1px solid var(--line); background: #fbfcfd; }
.footer-grid { min-height: 132px; display: flex; align-items: center; gap: 22px; }
.footer-logo { width: 128px; height: 56px; border-radius: 9px; object-fit: cover; }
.footer-copy { display: flex; flex-direction: column; color: var(--muted); font-size: .87rem; }
.footer-copy strong { color: var(--navy-deep); }
.footer-copy a { color: var(--navy); font-weight: 850; }
.to-top { margin-left: auto; width: 44px; height: 44px; display: grid; place-items: center; border-radius: 14px; color: var(--navy); background: #edf3f5; font-weight: 900; }
.mobile-call { display: none; }

@media (max-width: 920px) {
  .wrap { width: min(100% - 28px, 760px); }
  .section { padding: 72px 0; }
  .nav { min-height: 74px; }
  .brand { width: 138px; }
  .brand img { height: 50px; }
  .menu-button { display: flex; }
  .menu { position: absolute; top: calc(100% + 8px); left: 14px; right: 14px; display: none; flex-direction: column; align-items: stretch; padding: 12px; border: 1px solid var(--line); border-radius: 20px; background: #fff; box-shadow: 0 22px 54px rgba(31,56,91,.16); }
  .menu.open { display: flex; }
  .menu a { padding: 13px 14px; }
  .menu .menu-call { text-align: center; }
  .menu-button.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .menu-button.active span:nth-child(2) { opacity: 0; }
  .menu-button.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .hero-grid { min-height: auto; grid-template-columns: 1fr; gap: 44px; padding: 62px 0 70px; }
  .hero-copy { text-align: center; margin: 0 auto; }
  .intro { margin-inline: auto; }
  .hero-actions { justify-content: center; }
  .hero-info { margin-inline: auto; text-align: left; }
  .hero-logo { max-width: 560px; width: 100%; margin: 0 auto; }
  .services-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .service-card.featured { grid-column: auto; }
  .attention-grid { grid-template-columns: 1fr; }
  .location-card { grid-template-columns: auto 1fr; }
  .location-card .button { grid-column: 1 / -1; width: 100%; }
  .contact-card { flex-direction: column; align-items: stretch; }
  .phone-card { min-width: 0; }
}

@media (max-width: 620px) {
  body { padding-bottom: 74px; }
  .wrap { width: min(100% - 22px, 560px); }
  .section { padding: 58px 0; }
  .nav { min-height: 68px; }
  .brand { width: 122px; }
  .brand img { height: 46px; }
  .hero-grid { padding: 48px 0 58px; gap: 32px; }
  .hero h1 { font-size: clamp(2.35rem, 12vw, 3.45rem); }
  .hero-actions { flex-direction: column; }
  .hero-actions .button { width: 100%; }
  .hero-info { grid-template-columns: 1fr; }
  .logo-panel { padding: 13px; border-radius: 25px; }
  .logo-panel > img { border-radius: 18px; }
  .logo-panel-text { align-items: flex-start; flex-direction: column; gap: 4px; }
  .services-grid { grid-template-columns: 1fr; }
  .service-card { min-height: 190px; padding: 24px; }
  .service-card h3 { margin-top: 28px; }
  .attention-card { padding: 30px 24px; }
  .schedule-heading { align-items: flex-start; }
  .clock-badge { width: 64px; height: 64px; flex-basis: 64px; border-radius: 18px; }
  .location-card { grid-template-columns: 1fr; text-align: center; padding: 30px 22px; }
  .pin { margin: 0 auto; }
  .location-card .button { grid-column: auto; }
  .contact-card { padding: 34px 24px; border-radius: 25px; }
  .footer-grid { min-height: 168px; flex-wrap: wrap; padding: 26px 0; }
  .footer-logo { width: 108px; height: 50px; }
  .mobile-call { position: fixed; z-index: 1200; left: 12px; right: 12px; bottom: 10px; min-height: 56px; display: flex; align-items: center; justify-content: center; gap: 9px; border-radius: 16px; color: #fff; background: linear-gradient(135deg, var(--turquoise-deep), var(--turquoise)); box-shadow: 0 14px 36px rgba(24,170,167,.32); }
}

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