@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800&family=Sora:wght@600;700;800&display=swap");

:root {
  --bg: #f5f8fb;
  --surface: rgba(255, 255, 255, 0.82);
  --surface-strong: #ffffff;
  --text: #0f1728;
  --muted: #61708a;
  --dark: #0d1524;
  --accent: #0e8eaa;
  --accent-strong: #0a7288;
  --border: rgba(15, 23, 40, 0.08);
  --shadow: 0 28px 70px rgba(12, 24, 44, 0.12);
  --shadow-soft: 0 18px 44px rgba(12, 24, 44, 0.08);
  --container: min(1120px, calc(100vw - 32px));
  --font-body: "Manrope", "Segoe UI", sans-serif;
  --font-heading: "Sora", "Segoe UI", sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  color-scheme: light;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(14, 142, 170, 0.14), transparent 34%),
    radial-gradient(circle at right 15%, rgba(13, 21, 36, 0.08), transparent 28%),
    linear-gradient(180deg, #fbfdff 0%, #f5f8fb 38%, #eef4f8 100%);
  line-height: 1.6;
  overflow-x: hidden;
}

body::before,
body::after {
  content: "";
  position: fixed;
  z-index: -1;
  border-radius: 999px;
  filter: blur(10px);
  opacity: 0.45;
}

body::before {
  top: -140px;
  right: -100px;
  width: 340px;
  height: 340px;
  background: radial-gradient(circle, rgba(14, 142, 170, 0.18), transparent 68%);
}

body::after {
  bottom: 10%;
  left: -140px;
  width: 360px;
  height: 360px;
  background: radial-gradient(circle, rgba(16, 31, 54, 0.12), transparent 70%);
}

body.nav-open,
body.booking-open {
  overflow: hidden;
}

.skip-link {
  position: fixed;
  top: 16px;
  left: 16px;
  z-index: 200;
  padding: 12px 16px;
  border-radius: 999px;
  background: #ffffff;
  color: var(--text);
  font-weight: 800;
  border: 1px solid rgba(15, 23, 40, 0.1);
  box-shadow: var(--shadow-soft);
  transform: translateY(-160%);
  transition: transform 0.25s ease;
}

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

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

a,
button {
  -webkit-tap-highlight-color: transparent;
}

:focus-visible {
  outline: 3px solid rgba(14, 142, 170, 0.28);
  outline-offset: 4px;
}

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

button,
input,
textarea,
select {
  font: inherit;
  color: inherit;
}

[id] {
  scroll-margin-top: 110px;
}

.container {
  width: var(--container);
  margin-inline: auto;
}

.section {
  position: relative;
  padding: 96px 0;
}

.hero {
  padding-top: 42px;
  padding-bottom: 28px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  padding: 16px 0;
}

.site-header::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(245, 248, 251, 0.72);
  border-bottom: 1px solid transparent;
  backdrop-filter: blur(16px);
  transition: background 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
  z-index: -1;
}

.site-header.scrolled::before {
  background: rgba(245, 248, 251, 0.92);
  border-color: var(--border);
  box-shadow: 0 10px 24px rgba(12, 24, 44, 0.06);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.brand {
  display: inline-flex;
  align-items: center;
  min-width: 0;
  line-height: 1;
  flex-shrink: 0;
  margin-right: auto;
}

.brand-text {
  display: grid;
  gap: 5px;
}

.brand-text strong,
.brand-text small {
  display: block;
}

.brand-text strong {
  font-family: var(--font-heading);
  font-size: clamp(1.35rem, 2vw, 1.7rem);
  letter-spacing: -0.05em;
  color: var(--dark);
}

.brand-text strong span {
  color: #16954f;
}

.brand-text small {
  color: var(--muted);
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.header-actions {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.language-switch {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 5px;
  border: 1px solid rgba(15, 23, 40, 0.08);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: var(--shadow-soft);
}

.language-option {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 40px;
  padding: 0 12px;
  border-radius: 14px;
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: background 0.25s ease, color 0.25s ease, transform 0.25s ease;
}

.language-option:hover,
.language-option:focus-visible {
  background: rgba(14, 142, 170, 0.08);
  color: var(--text);
}

.language-option.is-current {
  background: linear-gradient(135deg, var(--dark), var(--accent));
  color: #ffffff;
  box-shadow: 0 14px 30px rgba(13, 21, 36, 0.16);
}

.language-option.is-current:hover,
.language-option.is-current:focus-visible {
  background: linear-gradient(135deg, var(--dark), var(--accent));
  color: #ffffff;
  transform: none;
}

.language-flag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  line-height: 1;
}

.nav-toggle {
  width: 52px;
  height: 52px;
  border: 1px solid var(--border);
  border-radius: 18px;
  appearance: none;
  background: rgba(255, 255, 255, 0.82);
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  cursor: pointer;
  box-shadow: var(--shadow-soft);
}

.nav-toggle span {
  width: 20px;
  height: 2px;
  border-radius: 999px;
  background: var(--text);
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.nav-toggle.is-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

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

.nav-toggle.is-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.site-nav {
  position: absolute;
  top: calc(100% + 10px);
  left: 16px;
  right: 16px;
  padding: 22px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(15, 23, 40, 0.09);
  box-shadow: var(--shadow);
  display: grid;
  gap: 16px;
  opacity: 0;
  transform: translateY(-12px);
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.site-nav[aria-hidden="true"] {
  visibility: hidden;
}

.site-nav.is-open {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.site-nav a {
  color: var(--muted);
  font-weight: 700;
  transition: color 0.25s ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--text);
}

.site-nav a.is-current {
  color: var(--text);
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 18px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--dark), #17345a 58%, var(--accent));
  color: #ffffff !important;
  box-shadow: 0 16px 34px rgba(13, 21, 36, 0.16);
}

.hero-grid,
.page-hero-grid,
.about-grid,
.results-grid,
.contact-grid,
.social-shell {
  display: grid;
  gap: 32px;
  align-items: center;
}

.hero-copy h1,
.page-hero-copy h1,
.section-intro h2,
.why-copy h2,
.cta-panel h2,
.contact-copy h2 {
  font-family: var(--font-heading);
  letter-spacing: -0.04em;
}

.hero-copy h1 {
  margin: 18px 0;
  max-width: 12ch;
  font-size: clamp(2.9rem, 7vw, 5.5rem);
  line-height: 1.03;
}

.hero-copy h1 span {
  background: linear-gradient(135deg, #0a7288, #0fa2b8);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.lead {
  margin: 0;
  max-width: 60ch;
  color: var(--muted);
  font-size: clamp(1rem, 2vw, 1.15rem);
}

.page-hero {
  padding-top: 42px;
  padding-bottom: 24px;
}

.page-hero-copy h1 {
  margin: 18px 0 16px;
  max-width: 12ch;
  font-size: clamp(2.5rem, 6vw, 4.8rem);
  line-height: 1.05;
}

.page-hero-copy p {
  margin: 0;
  max-width: 58ch;
  color: var(--muted);
  font-size: 1.04rem;
}

.page-hero-card {
  padding: 28px;
  border-radius: 32px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.page-hero-card strong {
  display: block;
  margin-bottom: 10px;
  font-family: var(--font-heading);
  font-size: 1.2rem;
  letter-spacing: -0.03em;
}

.page-hero-card p {
  margin: 0 0 18px;
  color: var(--muted);
}

.page-hero-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 12px;
}

.page-hero-list li {
  padding: 14px 16px;
  border-radius: 18px;
  background: rgba(245, 248, 251, 0.88);
  border: 1px solid rgba(15, 23, 40, 0.08);
  font-weight: 700;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid rgba(14, 142, 170, 0.16);
  background: rgba(14, 142, 170, 0.09);
  color: var(--accent-strong);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.eyebrow-dark {
  background: rgba(255, 255, 255, 0.09);
  border-color: rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.82);
}

.hero-actions,
.cta-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.hero-actions {
  margin: 32px 0 22px;
}

.services-cta {
  justify-content: center;
  margin-top: 32px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 54px;
  padding: 0 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 800;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, border-color 0.25s ease;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-2px);
}

.btn-primary {
  background: linear-gradient(135deg, var(--dark), #17345a 55%, var(--accent));
  color: #ffffff;
  box-shadow: 0 18px 40px rgba(13, 21, 36, 0.18);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.84);
  border-color: rgba(15, 23, 40, 0.08);
  color: var(--text);
  box-shadow: 0 12px 30px rgba(12, 24, 44, 0.08);
}

.btn-light {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.16);
  color: #ffffff;
  box-shadow: none;
}

.hero-points {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-points li {
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid rgba(15, 23, 40, 0.08);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 8px 22px rgba(12, 24, 44, 0.05);
  font-weight: 700;
  font-size: 0.94rem;
}

.hero-visual {
  position: relative;
}

.hero-visual::before {
  content: "";
  position: absolute;
  inset: 8% 10% auto auto;
  width: 78%;
  height: 78%;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(14, 142, 170, 0.22), transparent 70%);
  filter: blur(12px);
}

.glass-card,
.portrait-card,
.service-card,
.trust-card,
.target-card,
.pillar-card,
.testimonial-card,
.contact-panel,
.cta-panel,
.social-tile,
.mini-card {
  border: 1px solid var(--border);
  box-shadow: var(--shadow-soft);
}

.glass-card {
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(14px);
}

.photo-card {
  padding: 18px;
  border-radius: 32px;
  position: relative;
  z-index: 1;
}

.photo-placeholder {
  position: relative;
  overflow: hidden;
  min-height: 360px;
  border-radius: 26px;
  padding: 24px;
  display: grid;
  align-items: end;
}

.photo-primary {
  background: linear-gradient(135deg, #dce7f2 0%, #ffffff 46%, #dff5f2 100%);
}

.photo-placeholder.has-media {
  padding: 0;
  background: #d8e3ee;
}

.photo-secondary {
  min-height: 320px;
  background: linear-gradient(135deg, #eef3f8 0%, #ffffff 48%, #e2f7f3 100%);
}

.photo-placeholder::before {
  content: "";
  position: absolute;
  top: 12%;
  right: 10%;
  width: 170px;
  height: 170px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(14, 142, 170, 0.18), transparent 68%);
}

.photo-placeholder::after {
  content: "";
  position: absolute;
  right: -8%;
  bottom: -8%;
  width: 220px;
  height: 220px;
  border-radius: 42px;
  border: 1px dashed rgba(15, 23, 40, 0.14);
  transform: rotate(22deg);
}

.photo-placeholder span {
  position: relative;
  z-index: 1;
  max-width: 250px;
  padding: 12px 14px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(15, 23, 40, 0.08);
  font-weight: 700;
}

.hero-media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.photo-placeholder.has-media::before {
  inset: auto auto 12% 8%;
  width: 180px;
  height: 180px;
  background: radial-gradient(circle, rgba(14, 142, 170, 0.24), transparent 70%);
  z-index: 1;
}

.photo-placeholder.has-media::after {
  inset: auto 16px 16px auto;
  width: 42%;
  height: 42%;
  border-radius: 26px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: linear-gradient(180deg, transparent, rgba(8, 14, 24, 0.22));
  transform: none;
  z-index: 1;
}

.photo-badge {
  position: absolute;
  left: 20px;
  bottom: 20px;
  z-index: 2;
  max-width: none;
  backdrop-filter: blur(12px);
}

.photo-panel {
  padding: 20px 8px 4px;
}

.photo-panel p {
  margin: 0;
  color: var(--accent-strong);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.photo-panel strong {
  display: block;
  margin: 8px 0;
  font-size: 1.25rem;
}

.photo-panel span {
  display: block;
  color: var(--muted);
  max-width: 38ch;
}

.visual-support-grid {
  display: grid;
  gap: 16px;
  margin: -68px 18px 0;
  position: relative;
  z-index: 2;
}

.mini-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.94);
}

.mini-icon {
  width: 54px;
  height: 54px;
  flex-shrink: 0;
  display: grid;
  place-items: center;
  border-radius: 18px;
  background: linear-gradient(135deg, var(--dark), var(--accent));
  color: #ffffff;
}

.mini-card p {
  margin: 0 0 4px;
  color: var(--muted);
  font-size: 0.88rem;
}

.mini-card strong {
  display: block;
  font-size: 1rem;
}

.quote-card {
  padding: 24px;
  border-radius: 26px;
  background: linear-gradient(135deg, #0d1524 0%, #17345a 60%, #0e8eaa 120%);
  color: #ffffff;
  box-shadow: 0 22px 50px rgba(10, 24, 45, 0.24);
}

.quote-card p {
  margin: 0 0 16px;
  font-size: 1rem;
  line-height: 1.7;
}

.quote-card span {
  display: block;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.trust-strip {
  display: grid;
  gap: 18px;
  margin-top: 38px;
}

.trust-card {
  padding: 26px;
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.82);
}

.trust-card strong {
  display: block;
  margin-bottom: 8px;
  font-size: 1.05rem;
  font-family: var(--font-heading);
  letter-spacing: -0.02em;
}

.trust-card p,
.section-intro p,
.why-copy p,
.target-card p,
.pillar-card p,
.testimonial-card span,
.contact-copy p,
.contact-note,
.footer-brand p {
  color: var(--muted);
}

.section-intro {
  max-width: 720px;
}

.section-intro.centered {
  margin-inline: auto;
  margin-bottom: 42px;
  text-align: center;
}

.section-intro h2,
.why-copy h2,
.contact-copy h2,
.cta-panel h2 {
  margin: 18px 0 16px;
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1.08;
}

.section-intro p,
.contact-copy p,
.why-copy p {
  margin: 0 0 14px;
}

.about-aside {
  display: grid;
  gap: 18px;
}

.portrait-card {
  padding: 16px;
  border-radius: 32px;
  background: rgba(255, 255, 255, 0.88);
}

.about-values {
  padding: 24px;
  border-radius: 30px;
}

.value-row {
  display: grid;
  gap: 8px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(15, 23, 40, 0.08);
}

.value-row:first-child {
  padding-top: 0;
}

.value-row:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.value-row strong {
  font-family: var(--font-heading);
  font-size: 1rem;
}

.value-row span {
  color: var(--muted);
}

.services-grid,
.benefit-grid,
.target-grid,
.results-pillars,
.testimonials,
.process-grid,
.contact-list,
.social-grid {
  display: grid;
  gap: 18px;
}

.service-card {
  padding: 28px;
  border-radius: 28px;
  background: var(--surface-strong);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover,
.service-card:focus-within {
  transform: translateY(-6px);
  box-shadow: 0 24px 58px rgba(12, 24, 44, 0.12);
}

.service-icon {
  width: 64px;
  height: 64px;
  margin-bottom: 22px;
  display: grid;
  place-items: center;
  border-radius: 20px;
  background: linear-gradient(135deg, var(--dark), var(--accent));
  color: #ffffff;
}

.service-card h3,
.target-card h3 {
  margin: 0 0 10px;
  font-family: var(--font-heading);
  font-size: 1.14rem;
  letter-spacing: -0.02em;
}

.service-card p,
.target-card p,
.pillar-card p,
.testimonial-card p,
.social-caption {
  margin: 0;
  color: var(--muted);
}

.why-shell {
  display: grid;
  gap: 28px;
  padding: 36px;
  border-radius: 38px;
  background: linear-gradient(135deg, #0d1524 0%, #16314f 58%, #0d7f9d 125%);
  color: #ffffff;
  box-shadow: 0 30px 72px rgba(10, 24, 45, 0.2);
}

.process-card {
  padding: 24px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-soft);
}

.process-card span {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--dark), var(--accent));
  color: #ffffff;
  font-weight: 800;
  margin-bottom: 16px;
}

.process-card h3 {
  margin: 0 0 10px;
  font-family: var(--font-heading);
  font-size: 1.08rem;
  letter-spacing: -0.02em;
}

.process-card p {
  margin: 0;
  color: var(--muted);
}

.why-copy p {
  max-width: 56ch;
  color: rgba(255, 255, 255, 0.8);
}

.benefit-card {
  padding: 20px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.benefit-card span {
  width: 38px;
  height: 38px;
  display: inline-grid;
  place-items: center;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.82rem;
  font-weight: 800;
}

.benefit-card strong {
  display: block;
  margin: 14px 0 8px;
  font-size: 1rem;
}

.benefit-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
}

.target-card {
  padding: 24px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.8);
}

.target-tag,
.contact-label,
.sample-badge,
.footer-title {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.target-tag,
.contact-label,
.sample-badge {
  color: var(--accent-strong);
}

.results-copy > p {
  margin: 0 0 14px;
  color: var(--muted);
}

.pillar-card {
  padding: 22px;
  border-radius: 24px;
  background: #ffffff;
}

.pillar-card strong {
  display: block;
  margin-bottom: 8px;
  font-family: var(--font-heading);
}

.testimonial-card {
  padding: 26px;
  border-radius: 30px;
  background: linear-gradient(180deg, #ffffff 0%, #f5fbfd 100%);
}

.sample-badge {
  margin-bottom: 14px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(14, 142, 170, 0.1);
}

.testimonial-card p {
  margin: 0 0 14px;
  color: var(--text);
  font-size: 1rem;
  line-height: 1.75;
}

.social-shell {
  align-items: start;
}

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

.social-tile {
  position: relative;
  overflow: hidden;
  min-height: 180px;
  padding: 22px;
  border-radius: 28px;
  background: linear-gradient(135deg, #eaf2f8 0%, #ffffff 44%, #ddf8f2 100%);
  display: flex;
  align-items: flex-end;
}

.social-tile::before,
.social-tile::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  opacity: 0.6;
}

.social-tile::before {
  top: -24px;
  right: -24px;
  width: 120px;
  height: 120px;
  background: radial-gradient(circle, rgba(14, 142, 170, 0.16), transparent 70%);
}

.social-tile::after {
  bottom: 20px;
  left: 24px;
  width: 70px;
  height: 1px;
  background: rgba(15, 23, 40, 0.12);
  box-shadow: 0 12px 0 rgba(15, 23, 40, 0.12), 0 24px 0 rgba(15, 23, 40, 0.12);
}

.social-tile span {
  position: relative;
  z-index: 1;
  font-family: var(--font-heading);
  font-size: 1.05rem;
  letter-spacing: -0.02em;
}

.cta-panel {
  display: grid;
  gap: 24px;
  align-items: center;
  padding: 38px;
  border-radius: 38px;
  background: linear-gradient(135deg, #ffffff 0%, #eef8fb 52%, #def8f2 100%);
}

.cta-panel p {
  margin: 0;
  max-width: 56ch;
  color: var(--muted);
}

.contact-panel {
  padding: 28px;
  border-radius: 34px;
  background: rgba(255, 255, 255, 0.92);
}

.contact-methods-grid {
  display: grid;
  gap: 18px;
}

.contact-method-card {
  display: grid;
  gap: 16px;
  padding: 28px;
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-soft);
}

.contact-method-card h3 {
  margin: 0;
  font-family: var(--font-heading);
  font-size: 1.22rem;
  letter-spacing: -0.03em;
}

.contact-method-card p {
  margin: 0;
  color: var(--muted);
}

.contact-method-card.is-pending {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(239, 245, 249, 0.96));
}

.contact-method-tag {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(14, 142, 170, 0.1);
  color: var(--accent-strong);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.contact-method-meta {
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 700;
}

.contact-method-placeholder {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 18px;
  border-radius: 999px;
  border: 1px dashed rgba(15, 23, 40, 0.14);
  background: rgba(245, 248, 251, 0.88);
  color: var(--text);
  font-weight: 800;
}

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

.contact-item {
  padding: 18px 20px;
  border-radius: 24px;
  border: 1px solid rgba(15, 23, 40, 0.08);
  background: rgba(245, 248, 251, 0.82);
}

.contact-item-full {
  grid-column: 1 / -1;
}

.contact-label {
  margin-bottom: 8px;
}

.contact-item strong,
.contact-item a {
  display: block;
  font-weight: 800;
  color: var(--text);
  word-break: break-word;
}

.contact-item a:hover,
.contact-item a:focus-visible {
  color: var(--accent-strong);
}

.contact-item small {
  display: block;
  margin-top: 6px;
  color: var(--muted);
}

.contact-actions {
  margin-top: 22px;
}

.contact-note {
  margin-top: 22px;
  padding: 18px 20px;
  border-radius: 22px;
  background: rgba(14, 142, 170, 0.08);
}

.site-footer {
  padding: 34px 0 36px;
  background: #0d1524;
  color: rgba(255, 255, 255, 0.78);
}

.footer-grid {
  display: grid;
  gap: 24px;
}

.footer-brand-link {
  display: inline-flex;
  margin-bottom: 14px;
}

.footer-brand-name {
  font-family: var(--font-heading);
  font-size: clamp(1.45rem, 3vw, 2rem);
  font-weight: 800;
  letter-spacing: -0.05em;
  color: #ffffff;
}

.footer-brand-name span {
  color: #53b949;
}

.footer-brand p {
  margin: 0 0 8px;
  color: rgba(255, 255, 255, 0.72);
}

.footer-title {
  margin-bottom: 16px;
  color: rgba(255, 255, 255, 0.68);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 20px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.86);
  font-weight: 700;
  transition: color 0.25s ease;
}

.footer-links a:hover,
.footer-links a:focus-visible {
  color: #ffffff;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-bottom p {
  margin: 0;
}

.floating-contact {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 80;
  min-height: 54px;
  padding: 0 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--dark), var(--accent));
  color: #ffffff;
  font-weight: 800;
  box-shadow: 0 20px 42px rgba(13, 21, 36, 0.22);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.floating-contact:hover,
.floating-contact:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 24px 50px rgba(13, 21, 36, 0.26);
}

.booking-modal {
  position: fixed;
  inset: 0;
  z-index: 240;
  display: grid;
  place-items: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.24s ease;
}

.booking-modal.is-open {
  opacity: 1;
  pointer-events: auto;
}

.booking-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(8, 14, 24, 0.62);
  backdrop-filter: blur(10px);
}

.booking-modal__dialog {
  position: relative;
  width: min(1180px, calc(100vw - 32px));
  height: min(820px, calc(100vh - 40px));
  display: grid;
  grid-template-rows: auto 1fr auto;
  gap: 18px;
  padding: 24px;
  border-radius: 34px;
  border: 1px solid rgba(15, 23, 40, 0.08);
  background: rgba(255, 255, 255, 0.97);
  box-shadow: 0 34px 90px rgba(8, 18, 34, 0.24);
  transform: translateY(18px) scale(0.985);
  transition: transform 0.24s ease;
  overflow: hidden;
}

.booking-modal.is-open .booking-modal__dialog {
  transform: translateY(0) scale(1);
}

.booking-modal__close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(15, 23, 40, 0.08);
  border-radius: 16px;
  background: rgba(245, 248, 251, 0.94);
  color: var(--text);
  cursor: pointer;
  font-weight: 800;
  box-shadow: var(--shadow-soft);
}

.booking-modal__header {
  padding-right: 72px;
}

.booking-modal__eyebrow {
  display: inline-flex;
  align-items: center;
  margin: 0 0 10px;
  padding: 9px 13px;
  border-radius: 999px;
  background: rgba(14, 142, 170, 0.1);
  color: var(--accent-strong);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.booking-modal__header h2 {
  margin: 0 0 10px;
  font-family: var(--font-heading);
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  letter-spacing: -0.03em;
}

.booking-modal__header p,
.booking-modal__hint {
  margin: 0;
  color: var(--muted);
}

.booking-modal__body {
  min-height: 0;
  border-radius: 26px;
  overflow: hidden;
  border: 1px solid rgba(15, 23, 40, 0.08);
  background: #edf4f8;
}

.booking-modal__frame {
  width: 100%;
  height: 100%;
  border: 0;
  background: #ffffff;
}

.booking-modal__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.75s ease, transform 0.75s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (min-width: 720px) {
  .trust-strip {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

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

  .contact-method-card-wide {
    grid-column: 1 / -1;
  }

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

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

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

  .cta-panel {
    grid-template-columns: 1.2fr auto;
  }

  .footer-grid {
    grid-template-columns: 1fr auto;
    align-items: start;
  }
}

@media (min-width: 960px) {
  .nav-toggle {
    display: none;
  }

  .site-nav {
    position: static;
    padding: 0;
    border: 0;
    background: transparent;
    box-shadow: none;
    display: flex;
    align-items: center;
    gap: 26px;
    margin-left: 0;
    opacity: 1;
    transform: none;
    pointer-events: auto;
  }

  .hero-grid {
    grid-template-columns: 1.04fr 0.96fr;
  }

  .page-hero-grid {
    grid-template-columns: 1fr 0.9fr;
  }

  .about-grid {
    grid-template-columns: 1.02fr 0.98fr;
  }

  .results-grid {
    grid-template-columns: 0.96fr 1.04fr;
    align-items: start;
  }

  .contact-grid,
  .social-shell {
    grid-template-columns: 0.78fr 1.22fr;
  }

  .why-shell {
    grid-template-columns: 0.88fr 1.12fr;
    align-items: start;
  }

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

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

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

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

  .visual-support-grid {
    grid-template-columns: 0.88fr 1.12fr;
    margin-inline: 28px;
  }
}

@media (max-width: 959px) {
  .section {
    padding: 82px 0;
  }

  .hero-copy h1 {
    max-width: none;
  }

  .page-hero-copy h1 {
    max-width: none;
  }

  .booking-modal {
    padding: 16px;
  }

  .booking-modal__dialog {
    width: min(100%, calc(100vw - 20px));
    height: min(780px, calc(100vh - 24px));
  }
}

@media (max-width: 719px) {
  .section {
    padding: 76px 0;
  }

  .hero {
    padding-top: 26px;
  }

  .site-header {
    padding: 12px 0;
  }

  .brand-text strong {
    font-size: 1.32rem;
  }

  .brand-text small {
    font-size: 0.72rem;
  }

  .header-actions {
    gap: 10px;
  }

  .language-switch {
    padding: 4px;
  }

  .language-option {
    min-height: 38px;
    padding: 0 10px;
    gap: 6px;
    font-size: 0.74rem;
  }

  .contact-list,
  .contact-methods-grid,
  .benefit-grid,
  .results-pillars,
  .testimonials {
    grid-template-columns: 1fr;
  }

  .contact-item-full {
    grid-column: auto;
  }

  .btn,
  .nav-cta {
    width: 100%;
  }

  .hero-actions,
  .cta-actions,
  .contact-actions {
    flex-direction: column;
  }

  .floating-contact {
    right: 12px;
    bottom: 12px;
    min-height: 50px;
    padding: 0 16px;
    font-size: 0.92rem;
  }

  .booking-modal__dialog {
    height: min(760px, calc(100vh - 16px));
    padding: 18px;
    border-radius: 26px;
  }

  .booking-modal__close {
    top: 16px;
    right: 16px;
  }

  .booking-modal__header {
    padding-right: 58px;
  }

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

  .skip-link {
    top: 12px;
    left: 12px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
