:root {
  --blue: #0a49a8;
  --blue-dark: #07377f;
  --blue-soft: #eaf2ff;
  --red: #d6505d;
  --red-dark: #b93d49;
  --navy: #081d35;
  --ink: #14253a;
  --muted: #607086;
  --line: #dfe6ef;
  --surface: #f5f8fc;
  --white: #ffffff;
  --shadow-sm: 0 10px 30px rgba(8, 29, 53, 0.08);
  --shadow-lg: 0 30px 70px rgba(8, 29, 53, 0.16);
  --radius: 24px;
}

* { 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.62;
  -webkit-font-smoothing: antialiased;
}

body.menu-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button, input, select, textarea { font: inherit; }
section[id], article[id] { scroll-margin-top: 120px; }

.container {
  width: min(1180px, calc(100% - 48px));
  margin-inline: auto;
}

.section { padding: 104px 0; }

.skip-link {
  position: fixed;
  z-index: 100;
  top: 12px;
  left: 12px;
  transform: translateY(-150%);
  padding: 10px 16px;
  border-radius: 10px;
  color: var(--white);
  background: var(--navy);
}

.skip-link:focus { transform: translateY(0); }

.topbar {
  color: rgba(255, 255, 255, 0.84);
  background: var(--navy);
  font-size: 0.82rem;
}

.topbar-inner {
  min-height: 38px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.topbar-inner div { display: flex; align-items: center; gap: 12px; }
.topbar a:hover { color: var(--white); }

.site-header {
  position: sticky;
  z-index: 50;
  top: 0;
  border-bottom: 1px solid rgba(223, 230, 239, 0.8);
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(16px);
  transition: box-shadow 180ms ease;
}

.site-header.scrolled { box-shadow: 0 10px 35px rgba(8, 29, 53, 0.08); }

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

.brand {
  width: 145px;
  height: auto;
  display: flex;
  align-items: center;
  flex: 0 0 auto;
}

.brand img { width: 100%; height: auto; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
  color: #33445a;
  font-size: 0.92rem;
  font-weight: 750;
}

.nav-links a:not(.btn) { position: relative; }
.nav-links a:not(.btn)::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -6px;
  height: 2px;
  background: var(--red);
  transition: right 180ms ease;
}

.nav-links a:not(.btn):hover::after { right: 0; }

.nav-dropdown { position: relative; }
.nav-dropdown-toggle {
  padding: 8px 0;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  border: 0;
  color: inherit;
  background: transparent;
  font-weight: inherit;
  cursor: pointer;
}
.nav-dropdown-toggle > span { color: var(--red); font-size: 1rem; line-height: 1; transition: transform 160ms ease; }
.nav-dropdown.open .nav-dropdown-toggle > span { transform: rotate(180deg); }
.nav-dropdown-menu {
  position: absolute;
  z-index: 70;
  top: calc(100% + 14px);
  left: -18px;
  width: 275px;
  padding: 8px;
  display: grid;
  gap: 2px;
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-8px);
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--white);
  box-shadow: var(--shadow-lg);
  transition: opacity 160ms ease, transform 160ms ease, visibility 160ms ease;
}
.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu,
.nav-dropdown.open .nav-dropdown-menu { visibility: visible; opacity: 1; pointer-events: auto; transform: translateY(0); }
.nav-links .nav-dropdown-menu a {
  padding: 11px 12px;
  display: flex;
  align-items: center;
  gap: 10px;
  border-radius: 11px;
  color: #33445a;
  font-size: 0.85rem;
}
.nav-links .nav-dropdown-menu a:hover { color: var(--blue); background: var(--surface); }
.nav-links .nav-dropdown-menu a::after { display: none; }
.nav-dropdown-menu a > span { color: var(--red); font-size: 0.7rem; font-weight: 900; }

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 10px;
  border: 0;
  border-radius: 12px;
  background: var(--surface);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  margin: 5px 0;
  border-radius: 999px;
  background: var(--navy);
  transition: transform 180ms ease, opacity 180ms ease;
}

.menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.btn {
  min-height: 52px;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  font-weight: 800;
  letter-spacing: -0.015em;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.btn:hover { transform: translateY(-2px); }
.btn-primary { color: var(--white); background: var(--red); box-shadow: 0 13px 28px rgba(214, 80, 93, 0.24); }
.btn-primary:hover { background: var(--red-dark); box-shadow: 0 16px 34px rgba(214, 80, 93, 0.3); }
.btn-secondary { border-color: #cfd9e6; color: var(--navy); background: rgba(255, 255, 255, 0.8); }
.btn-secondary:hover { border-color: var(--blue); background: var(--white); }
.btn-small { min-height: 44px; padding-inline: 18px; font-size: 0.88rem; }
.btn-icon { font-size: 1.1rem; }

.eyebrow {
  margin: 0 0 15px;
  color: var(--blue);
  font-size: 0.77rem;
  font-weight: 850;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

h1, h2, h3 {
  margin: 0;
  color: var(--navy);
  line-height: 1.08;
  letter-spacing: -0.045em;
}

h1 { font-size: clamp(3rem, 5.7vw, 5.3rem); }
h2 { font-size: clamp(2.2rem, 4vw, 3.7rem); }
h3 { font-size: 1.35rem; }

.hero {
  position: relative;
  min-height: 720px;
  display: grid;
  align-items: center;
  overflow: hidden;
  background:
    radial-gradient(circle at 0% 0%, rgba(10, 73, 168, 0.12), transparent 34%),
    linear-gradient(130deg, #ffffff 0%, #f7faff 66%, #edf4ff 100%);
}

.hero-shape {
  position: absolute;
  right: -14vw;
  top: 5%;
  width: 44vw;
  height: 44vw;
  border: 1px solid rgba(10, 73, 168, 0.13);
  border-radius: 50%;
  box-shadow: 0 0 0 70px rgba(10, 73, 168, 0.025), 0 0 0 140px rgba(10, 73, 168, 0.02);
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(48px, 7vw, 92px);
  align-items: center;
}

.hero-content { max-width: 680px; }
.hero h1 { max-width: 720px; }

.hero-copy {
  max-width: 660px;
  margin: 26px 0 32px;
  color: var(--muted);
  font-size: clamp(1.06rem, 1.5vw, 1.22rem);
}

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

.hero-points {
  margin: 30px 0 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 12px 22px;
  list-style: none;
  color: #40536b;
  font-size: 0.91rem;
  font-weight: 700;
}

.hero-points li { position: relative; padding-left: 20px; }
.hero-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.58em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--blue);
}

.hero-visual {
  position: relative;
  min-height: 530px;
}

.hero-visual::before {
  content: "";
  position: absolute;
  inset: 26px -24px -26px 24px;
  border-radius: 32px;
  background: var(--blue);
  opacity: 0.1;
}

.hero-visual > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border-radius: 32px 32px 96px 32px;
  object-fit: cover;
  box-shadow: var(--shadow-lg);
}

.visual-card {
  position: absolute;
  z-index: 2;
  min-width: 170px;
  padding: 16px 18px;
  border: 1px solid rgba(223, 230, 239, 0.9);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(14px);
}

.visual-card strong, .visual-card span { display: block; }
.visual-card strong { color: var(--navy); }
.visual-card span { color: var(--muted); font-size: 0.84rem; }
.visual-card-top { top: 32px; left: -42px; }
.visual-card-bottom { right: -28px; bottom: 34px; display: flex; align-items: center; gap: 10px; }
.visual-card-bottom strong { font-size: 0.9rem; }
.status-dot { width: 10px; height: 10px; border-radius: 50%; background: #21a56c; box-shadow: 0 0 0 5px rgba(33, 165, 108, 0.13); }

.service-nav { position: relative; z-index: 4; margin-top: -1px; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: var(--white); }
.service-nav-grid { display: grid; grid-template-columns: repeat(5, 1fr); }
.service-nav a { min-height: 92px; padding: 20px; display: flex; align-items: center; justify-content: center; gap: 10px; border-left: 1px solid var(--line); color: var(--navy); font-size: 0.94rem; font-weight: 800; text-align: center; transition: color 160ms ease, background 160ms ease; }
.service-nav a:last-child { border-right: 1px solid var(--line); }
.service-nav a:hover { color: var(--blue); background: var(--surface); }
.service-nav span { color: var(--red); font-size: 0.72rem; }

.intro-section { background: var(--white); }
.intro-grid { display: grid; grid-template-columns: 0.95fr 1.05fr; gap: clamp(44px, 8vw, 110px); align-items: start; }
.intro-copy p { margin: 0; color: var(--muted); font-size: 1.08rem; }
.intro-copy p + p { margin-top: 18px; }

.services-section { background: var(--surface); }

.section-heading {
  margin-bottom: 48px;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 60px;
  align-items: end;
}

.section-heading > p { margin: 0 0 4px; color: var(--muted); font-size: 1.05rem; }

.services-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 18px;
}

.service-card {
  grid-column: span 2;
  min-height: 410px;
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 34px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 7px 22px rgba(8, 29, 53, 0.04);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

a.service-card:hover { transform: translateY(-4px); border-color: rgba(10,73,168,0.34); box-shadow: var(--shadow-sm); }
a.service-card:focus-visible { outline: 3px solid rgba(10,73,168,0.35); outline-offset: 4px; }

.service-card:nth-child(4), .service-card:nth-child(5) { grid-column: span 3; }
.service-card-featured { border-top: 4px solid var(--blue); }
.service-card-dark { color: rgba(255,255,255,0.76); background: var(--navy); border-color: var(--navy); }
.service-card-dark h3 { color: var(--white); }

.service-number {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  color: var(--blue);
  background: var(--blue-soft);
  font-size: 0.8rem;
  font-weight: 900;
}

.service-card-dark .service-number { color: var(--white); background: rgba(255,255,255,0.1); }
.service-label { margin: 0 0 8px !important; color: var(--red) !important; font-size: 0.71rem !important; font-weight: 850; letter-spacing: 0.12em; text-transform: uppercase; }
.service-card h3 { margin-bottom: 14px; font-size: 1.6rem; }
.service-card p { margin: 0 0 18px; color: var(--muted); }
.service-card-dark p { color: rgba(255,255,255,0.7); }
.service-card ul { margin: 0; padding: 0; display: grid; gap: 8px; list-style: none; }
.service-card li { position: relative; padding-left: 20px; color: #43556b; font-size: 0.92rem; }
.service-card-dark li { color: rgba(255,255,255,0.78); }
.service-card li::before { content: ""; position: absolute; left: 0; top: 0.63em; width: 7px; height: 7px; border-radius: 50%; background: var(--red); }
.service-card .card-link { margin-top: 22px; color: var(--blue); font-size: 0.9rem; }
.service-card-dark .card-link { color: var(--white); }

.photo-story { background: var(--white); }
.photo-story-grid { min-height: 620px; display: grid; grid-template-columns: 1.35fr 0.65fr; gap: 18px; }
.photo-large, .photo-small-stack > div { position: relative; overflow: hidden; border-radius: 28px; }
.photo-large img, .photo-small-stack img { width: 100%; height: 100%; object-fit: cover; transition: transform 500ms ease; }
.photo-large:hover img, .photo-small-stack > div:hover img { transform: scale(1.025); }
.photo-small-stack { display: grid; grid-template-rows: 1fr 1fr; gap: 18px; }
.photo-small-stack > div { min-height: 0; }
.photo-small-stack span, .photo-caption { position: absolute; left: 18px; right: 18px; bottom: 18px; padding: 12px 14px; border: 1px solid rgba(255,255,255,0.25); border-radius: 14px; color: var(--white); background: rgba(8,29,53,0.75); backdrop-filter: blur(10px); font-size: 0.86rem; font-weight: 750; }
.photo-caption { left: 24px; right: auto; bottom: 24px; min-width: 220px; }
.photo-caption strong, .photo-caption span { position: static; display: block; padding: 0; border: 0; background: transparent; backdrop-filter: none; }
.photo-caption strong { font-size: 1.05rem; }
.photo-caption span { color: rgba(255,255,255,0.72); font-weight: 500; }

.audience-section { overflow: hidden; color: rgba(255,255,255,0.76); background: var(--navy); }
.audience-layout { display: grid; grid-template-columns: 0.82fr 1.18fr; gap: 70px; align-items: center; }
.audience-intro { max-width: 440px; }
.audience-intro h2 { color: var(--white); }
.audience-intro > p:not(.eyebrow) { color: rgba(255,255,255,0.65); font-size: 1.04rem; }
.text-link { margin-top: 18px; display: inline-flex; align-items: center; gap: 8px; color: var(--white); font-weight: 800; }
.text-link span { color: var(--red); }
.audience-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.audience-card { min-height: 230px; padding: 25px; border: 1px solid rgba(255,255,255,0.11); border-radius: 22px; background: rgba(255,255,255,0.055); }
.audience-card.featured { background: rgba(10,73,168,0.28); border-color: rgba(120,170,241,0.26); }
.audience-card > span { display: block; margin-bottom: 44px; color: var(--red); font-size: 0.75rem; font-weight: 900; }
.audience-card h3 { color: var(--white); }
.audience-card p { margin: 12px 0 0; color: rgba(255,255,255,0.64); font-size: 0.92rem; }

.specialist-section { background: var(--white); }
.specialist-heading { margin-bottom: 40px; }
.specialist-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.specialist-card { overflow: hidden; border: 1px solid var(--line); border-radius: 22px; background: var(--white); box-shadow: var(--shadow-sm); }
.specialist-card img { width: 100%; height: 220px; object-fit: cover; }
.specialist-card:nth-child(2) img { object-position: left center; }
.specialist-card:nth-child(4) img { object-position: center 80%; }
.specialist-card div { padding: 22px; }
.specialist-card h3 { font-size: 1.18rem; }
.specialist-card p { margin: 10px 0 0; color: var(--muted); font-size: 0.9rem; }
.specialist-note { margin-top: 24px; padding: 20px 24px; display: flex; align-items: center; flex-wrap: wrap; gap: 10px 16px; border-radius: 18px; background: var(--surface); color: var(--muted); font-size: 0.9rem; }
.specialist-note strong { color: var(--navy); }
.specialist-note span { position: relative; padding-left: 14px; }
.specialist-note span::before { content: ""; position: absolute; left: 0; top: 0.67em; width: 5px; height: 5px; border-radius: 50%; background: var(--red); }

.process-section { background: var(--surface); }
.process-grid { margin: 0; padding: 0; display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; list-style: none; counter-reset: steps; }
.process-grid li { min-height: 250px; padding: 26px; border: 1px solid var(--line); border-radius: 22px; background: var(--white); }
.process-grid span { width: 42px; height: 42px; margin-bottom: 42px; display: grid; place-items: center; border-radius: 50%; color: var(--white); background: var(--blue); font-size: 0.75rem; font-weight: 900; }
.process-grid h3 { font-size: 1.2rem; }
.process-grid p { margin: 10px 0 0; color: var(--muted); font-size: 0.92rem; }

.contact-section { background: linear-gradient(180deg, var(--surface), var(--white)); }
.contact-card { padding: 56px; display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 64px; border-radius: 34px; color: rgba(255,255,255,0.75); background: var(--navy); box-shadow: var(--shadow-lg); }
.contact-copy h2 { color: var(--white); }
.contact-copy > p:not(.eyebrow) { margin: 20px 0 0; color: rgba(255,255,255,0.68); font-size: 1.02rem; }
.contact-details { margin-top: 30px; display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
.contact-details > * { min-height: 100px; padding: 16px; border: 1px solid rgba(255,255,255,0.1); border-radius: 16px; background: rgba(255,255,255,0.055); }
.contact-details span, .contact-details strong { display: block; }
.contact-details span { color: rgba(255,255,255,0.5); font-size: 0.75rem; font-weight: 750; text-transform: uppercase; letter-spacing: 0.08em; }
.contact-details strong { margin-top: 7px; color: var(--white); font-size: 0.93rem; line-height: 1.45; }
.contact-details a:hover { border-color: rgba(255,255,255,0.25); }
.certification-line { margin-top: 16px; display: flex; flex-wrap: wrap; gap: 8px; }
.certification-line span { padding: 7px 10px; border-radius: 999px; color: rgba(255,255,255,0.7); background: rgba(255,255,255,0.07); font-size: 0.74rem; font-weight: 700; }

.contact-form { padding: 28px; display: grid; gap: 15px; border-radius: 24px; color: var(--ink); background: var(--white); }
.form-row { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
.contact-form label { display: grid; gap: 6px; color: var(--navy); font-size: 0.84rem; font-weight: 800; }
.contact-form input, .contact-form select, .contact-form textarea { width: 100%; border: 1px solid #d9e1eb; border-radius: 12px; padding: 12px 13px; color: var(--ink); background: var(--white); outline: none; transition: border 150ms ease, box-shadow 150ms ease; }
.contact-form textarea { resize: vertical; min-height: 118px; }
.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus { border-color: var(--blue); box-shadow: 0 0 0 4px rgba(10,73,168,0.1); }
.contact-form .btn { width: 100%; border: 0; }
.contact-form .btn:disabled { cursor: wait; opacity: 0.72; }
.form-note { margin: -2px 0 0; color: var(--muted); font-size: 0.76rem; text-align: center; }
.hp-field { display: none !important; }
.contact-form .privacy-check { display: flex; grid-template-columns: none; align-items: flex-start; gap: 10px; color: var(--muted); font-size: 0.77rem; font-weight: 550; line-height: 1.5; }
.contact-form .privacy-check input { width: 18px; height: 18px; margin: 1px 0 0; flex: 0 0 auto; accent-color: var(--blue); box-shadow: none; }
.contact-form .privacy-check a { color: var(--blue); font-weight: 800; text-decoration: underline; text-underline-offset: 2px; }

.site-footer { padding: 68px 0 26px; color: rgba(255,255,255,0.62); background: #061427; }
.footer-grid { display: grid; grid-template-columns: 1.4fr repeat(3, 1fr); gap: 42px; }
.footer-brand { width: 140px; height: auto; overflow: visible; border-radius: 3px; }
.footer-about p { max-width: 330px; margin: 16px 0 0; }
.site-footer h3 { margin-bottom: 16px; color: var(--white); font-size: 0.95rem; letter-spacing: -0.01em; }
.site-footer a, .site-footer span { display: block; margin: 8px 0; font-size: 0.88rem; }
.site-footer a:hover { color: var(--white); }
.footer-bottom { margin-top: 42px; padding-top: 22px; display: flex; justify-content: space-between; gap: 20px; border-top: 1px solid rgba(255,255,255,0.09); }
.footer-bottom span, .footer-bottom span span { display: inline; margin: 0; }
.footer-legal { display: flex; align-items: center; justify-content: flex-end; flex-wrap: wrap; gap: 8px 18px; }
.footer-legal a, .footer-legal span { display: inline; margin: 0; }
.footer-legal a { color: rgba(255,255,255,0.78); text-decoration: underline; text-underline-offset: 3px; }
.subpage-main { min-height: 66vh; padding: 78px 0 96px; background: linear-gradient(180deg, var(--surface), var(--white)); }
.subpage-card { max-width: 860px; margin: 0 auto; padding: clamp(28px, 5vw, 60px); border: 1px solid var(--line); border-radius: 28px; background: var(--white); box-shadow: var(--shadow-sm); }
.subpage-card h1 { margin-top: 8px; font-size: clamp(2.2rem, 6vw, 4.6rem); }
.subpage-card h2 { margin-top: 38px; font-size: clamp(1.35rem, 3vw, 2rem); }
.subpage-card p, .subpage-card li { color: var(--muted); }
.subpage-card ul { padding-left: 20px; }
.subpage-card a:not(.btn) { color: var(--blue); font-weight: 750; text-decoration: underline; text-underline-offset: 3px; }
.subpage-actions { margin-top: 30px; display: flex; flex-wrap: wrap; gap: 12px; }
.success-mark { width: 62px; height: 62px; display: grid; place-items: center; border-radius: 50%; color: var(--white); background: var(--blue); font-size: 1.7rem; font-weight: 900; }
.legal-meta { margin-top: -4px; font-size: 0.82rem; }

.service-page-main { overflow: hidden; }
.service-page-hero {
  position: relative;
  padding: 86px 0 92px;
  background:
    radial-gradient(circle at 0% 0%, rgba(10, 73, 168, 0.11), transparent 34%),
    linear-gradient(130deg, #ffffff 0%, #f7faff 66%, #edf4ff 100%);
}
.service-page-hero-grid { display: grid; grid-template-columns: 1fr 0.9fr; gap: clamp(46px, 7vw, 90px); align-items: center; }
.service-breadcrumb { margin: 0 0 22px; color: var(--muted); font-size: 0.84rem; font-weight: 700; }
.service-breadcrumb a { color: var(--blue); }
.service-page-hero h1 { max-width: 760px; font-size: clamp(2.8rem, 5.4vw, 5rem); }
.service-page-lead { max-width: 680px; margin: 25px 0 30px; color: var(--muted); font-size: clamp(1.03rem, 1.5vw, 1.2rem); }
.service-page-points { margin: 28px 0 0; padding: 0; display: flex; flex-wrap: wrap; gap: 10px; list-style: none; }
.service-page-points li { padding: 8px 12px; border: 1px solid var(--line); border-radius: 999px; color: #40536b; background: rgba(255,255,255,0.8); font-size: 0.82rem; font-weight: 750; }
.service-page-media { position: relative; min-height: 500px; }
.service-page-media::before { content: ""; position: absolute; inset: 24px -22px -24px 22px; border-radius: 30px; background: rgba(10,73,168,0.1); }
.service-page-media > img { position: absolute; inset: 0; width: 100%; height: 100%; border-radius: 30px 30px 84px 30px; object-fit: cover; box-shadow: var(--shadow-lg); }
.service-page-media .visual-card { left: -28px; top: 30px; }
.service-page-graphic { min-height: 500px; padding: 48px; display: flex; flex-direction: column; justify-content: space-between; border-radius: 30px 30px 84px 30px; color: rgba(255,255,255,0.75); background: var(--navy); box-shadow: var(--shadow-lg); }
.service-page-graphic strong { color: var(--white); font-size: clamp(5rem, 11vw, 9rem); line-height: 0.9; letter-spacing: -0.08em; }
.service-page-graphic p { max-width: 390px; margin: 0; font-size: 1.05rem; }
.service-page-graphic ul { margin: 22px 0 0; padding: 0; display: flex; flex-wrap: wrap; gap: 8px; list-style: none; }
.service-page-graphic li { padding: 8px 11px; border: 1px solid rgba(255,255,255,0.14); border-radius: 999px; background: rgba(255,255,255,0.06); font-size: 0.78rem; font-weight: 700; }
.service-intro-grid { display: grid; grid-template-columns: 0.8fr 1.2fr; gap: clamp(40px, 8vw, 100px); align-items: start; }
.service-intro-grid > div:last-child { color: var(--muted); font-size: 1.06rem; }
.service-intro-grid > div:last-child p { margin-top: 0; }
.service-offer-section { background: var(--surface); }
.service-offer-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.service-offer-card { min-height: 250px; padding: 25px; border: 1px solid var(--line); border-radius: 22px; background: var(--white); box-shadow: 0 7px 22px rgba(8,29,53,0.04); }
.service-offer-card span { width: 38px; height: 38px; margin-bottom: 40px; display: grid; place-items: center; border-radius: 12px; color: var(--blue); background: var(--blue-soft); font-size: 0.72rem; font-weight: 900; }
.service-offer-card h3 { font-size: 1.18rem; }
.service-offer-card p { margin: 11px 0 0; color: var(--muted); font-size: 0.9rem; }
.service-value-section { color: rgba(255,255,255,0.7); background: var(--navy); }
.service-value-section h2 { color: var(--white); }
.service-value-grid { margin-top: 38px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.service-value-card { padding: 25px; border: 1px solid rgba(255,255,255,0.11); border-radius: 20px; background: rgba(255,255,255,0.055); }
.service-value-card strong { display: block; margin-bottom: 9px; color: var(--white); font-size: 1.06rem; }
.service-value-card p { margin: 0; }
.service-related-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.service-related-card { min-height: 170px; padding: 22px; display: flex; flex-direction: column; justify-content: space-between; border: 1px solid var(--line); border-radius: 20px; background: var(--white); transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease; }
.service-related-card:hover { transform: translateY(-3px); border-color: rgba(10,73,168,0.36); box-shadow: var(--shadow-sm); }
.service-related-card span { color: var(--red); font-size: 0.72rem; font-weight: 900; }
.service-related-card strong { color: var(--navy); font-size: 1.08rem; }
.service-cta { padding: 72px 0; background: var(--surface); }
.service-cta-card { padding: clamp(30px, 5vw, 58px); display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 40px; align-items: center; border-radius: 30px; color: rgba(255,255,255,0.68); background: var(--blue); box-shadow: var(--shadow-lg); }
.service-cta-card h2 { color: var(--white); font-size: clamp(2rem, 4vw, 3.4rem); }
.service-cta-card p { max-width: 650px; margin: 16px 0 0; }
.service-cta-actions { display: flex; justify-content: flex-end; flex-wrap: wrap; gap: 10px; }
.service-cta .btn-primary { color: var(--navy); background: var(--white); box-shadow: none; }
.service-cta .btn-primary:hover { background: #f2f6fb; }
.service-cta .btn-secondary { border-color: rgba(255,255,255,0.26); color: var(--white); background: rgba(255,255,255,0.08); }
.mobile-call { display: none; }

.whatsapp-float {
  position: fixed;
  z-index: 46;
  right: 24px;
  bottom: 24px;
  min-height: 54px;
  padding: 0 20px 0 15px;
  display: flex;
  align-items: center;
  gap: 10px;
  border: 2px solid rgba(255,255,255,0.82);
  border-radius: 999px;
  color: var(--white);
  background: #1fae56;
  box-shadow: 0 14px 34px rgba(8,29,53,0.28);
  font-size: 0.9rem;
  font-weight: 850;
  line-height: 1;
  transition: transform 180ms ease, background 180ms ease, box-shadow 180ms ease;
}
.whatsapp-float svg { width: 27px; height: 27px; flex: 0 0 27px; fill: currentColor; }
.whatsapp-float:hover { transform: translateY(-3px); color: var(--white); background: #188d47; box-shadow: 0 18px 40px rgba(8,29,53,0.34); }
.whatsapp-float:focus-visible { outline: 3px solid var(--navy); outline-offset: 3px; }

@media (max-width: 1080px) {
  .nav-links { gap: 16px; font-size: 0.86rem; }
  .specialist-grid { grid-template-columns: repeat(2, 1fr); }
  .audience-layout { gap: 44px; }
  .contact-card { padding: 44px; gap: 40px; }
  .service-page-hero-grid { gap: 44px; }
  .service-related-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
  .section { padding: 82px 0; }
  .topbar { display: none; }
  .menu-toggle { display: block; }
  .nav-links {
    position: absolute;
    top: 78px;
    left: 24px;
    right: 24px;
    max-height: calc(100vh - 100px);
    padding: 15px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    overflow: auto;
    border: 1px solid var(--line);
    border-radius: 20px;
    background: var(--white);
    box-shadow: var(--shadow-lg);
  }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 12px 10px; }
  .nav-links a:not(.btn)::after { display: none; }
  .nav-links .btn { margin-top: 8px; }
  .nav-dropdown-toggle { width: 100%; padding: 12px 10px; justify-content: space-between; border-radius: 11px; }
  .nav-dropdown-toggle:hover, .nav-dropdown.open .nav-dropdown-toggle { color: var(--blue); background: var(--surface); }
  .nav-dropdown-menu { position: static; width: auto; margin: 2px 0 8px; padding: 5px; display: none; visibility: visible; opacity: 1; pointer-events: auto; transform: none; border: 0; border-radius: 13px; background: var(--surface); box-shadow: none; }
  .nav-dropdown:hover .nav-dropdown-menu, .nav-dropdown:focus-within .nav-dropdown-menu { display: none; }
  .nav-dropdown.open .nav-dropdown-menu { display: grid; }
  .nav-links .nav-dropdown-menu a { padding: 10px 12px; }
  .hero { min-height: auto; }
  .hero-grid, .intro-grid, .audience-layout, .contact-card { grid-template-columns: 1fr; }
  .hero-grid { gap: 52px; }
  .hero-content { max-width: 760px; }
  .hero-visual { min-height: 500px; }
  .service-nav-grid { grid-template-columns: repeat(3, 1fr); }
  .service-nav a { min-height: 72px; border-bottom: 1px solid var(--line); }
  .service-nav a:nth-child(4) { border-left: 1px solid var(--line); }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .service-card, .service-card:nth-child(4), .service-card:nth-child(5) { grid-column: auto; }
  .service-card:last-child { grid-column: span 2; }
  .photo-story-grid { min-height: 520px; grid-template-columns: 1.1fr 0.9fr; }
  .section-heading { grid-template-columns: 1fr; gap: 22px; }
  .audience-intro { max-width: 680px; }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-details { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .service-page-hero-grid, .service-intro-grid, .service-cta-card { grid-template-columns: 1fr; }
  .service-page-media, .service-page-graphic { min-height: 440px; }
  .service-offer-grid { grid-template-columns: repeat(2, 1fr); }
  .service-value-grid { grid-template-columns: 1fr; }
  .service-cta-actions { justify-content: flex-start; }
}

@media (max-width: 640px) {
  .container { width: min(100% - 28px, 1180px); }
  .section { padding: 68px 0; }
  .navbar { min-height: 72px; }
  .brand { width: 128px; height: auto; }
  .footer-brand { width: 132px; }
  .nav-links { top: 72px; left: 14px; right: 14px; }
  h1 { font-size: clamp(2.65rem, 13vw, 3.65rem); }
  h2 { font-size: clamp(2rem, 10vw, 2.75rem); }
  .hero { padding-top: 72px; }
  .hero-copy { margin-top: 20px; }
  .hero-actions .btn { width: 100%; }
  .hero-points { display: grid; }
  .hero-visual { min-height: 370px; margin-inline: 8px; }
  .hero-visual > img { border-radius: 24px 24px 64px 24px; }
  .visual-card { min-width: 150px; padding: 13px 15px; }
  .visual-card-top { top: 20px; left: -8px; }
  .visual-card-bottom { right: -8px; bottom: 22px; }
  .service-nav-grid { grid-template-columns: repeat(2, 1fr); }
  .service-nav a { padding: 14px 8px; font-size: 0.82rem; }
  .service-nav a:last-child { grid-column: span 2; }
  .services-grid, .audience-grid, .specialist-grid, .process-grid, .form-row { grid-template-columns: 1fr; }
  .service-card, .service-card:last-child { grid-column: auto; min-height: 365px; }
  .photo-story-grid { min-height: auto; grid-template-columns: 1fr; }
  .photo-large { height: 390px; }
  .photo-small-stack { grid-template-columns: repeat(2, 1fr); grid-template-rows: none; }
  .photo-small-stack > div { height: 230px; }
  .photo-small-stack span { left: 10px; right: 10px; bottom: 10px; padding: 10px; font-size: 0.74rem; }
  .photo-caption { left: 16px; bottom: 16px; }
  .audience-card { min-height: 210px; }
  .specialist-card img { height: 230px; }
  .specialist-note { align-items: flex-start; flex-direction: column; }
  .process-grid li { min-height: 230px; }
  .contact-card { width: min(100% - 16px, 1180px); padding: 26px 18px; border-radius: 24px; }
  .contact-details { grid-template-columns: 1fr; }
  .contact-form { padding: 20px 16px; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { padding-bottom: 54px; flex-direction: column; }
  .footer-legal { justify-content: flex-start; }
  .service-page-hero { padding: 58px 0 68px; }
  .service-page-media, .service-page-graphic { min-height: 360px; }
  .service-page-media .visual-card { left: -8px; }
  .service-page-graphic { padding: 28px; }
  .service-offer-grid, .service-related-grid { grid-template-columns: 1fr; }
  .service-offer-card { min-height: 220px; }
  .service-cta-actions .btn { width: 100%; }
  .mobile-call { position: fixed; z-index: 45; left: 14px; right: 14px; bottom: 12px; min-height: 48px; display: flex; align-items: center; justify-content: center; border-radius: 999px; color: var(--white); background: var(--red); box-shadow: 0 12px 30px rgba(8,29,53,0.3); font-weight: 850; }
  .whatsapp-float { right: 16px; bottom: 76px; width: 54px; min-height: 54px; padding: 0; justify-content: center; }
  .whatsapp-float-label { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { scroll-behavior: auto !important; transition-duration: 0.01ms !important; animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; }
}
