:root {
  --brand-blue: #0078AA;
  --brand-blue-dark: #005f89;
  --brand-pink: #E92F80;
  --brand-navy: #080B45;
  --brand-white: #FFFFFF;
  --brand-light: #F7F9FC;
  --text-dark: #171A2B;
  --text-muted: #667085;
  --line: #E8ECF3;
  --success: #0B7A53;
  --danger: #B42318;
  --shadow-sm: 0 10px 30px rgba(8, 11, 69, .08);
  --shadow-lg: 0 24px 70px rgba(8, 11, 69, .14);
  --radius-sm: 16px;
  --radius-md: 22px;
  --radius-lg: 30px;
  --container: 1220px;
  --header-height: 82px;
  --transition: 260ms cubic-bezier(.2,.7,.2,1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: calc(var(--header-height) + 24px); }
body {
  margin: 0;
  font-family: "Manrope", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text-dark);
  background: var(--brand-white);
  line-height: 1.65;
  overflow-x: hidden;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}
body.menu-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; }
button { cursor: pointer; }
address { font-style: normal; }
svg { width: 1.25em; height: 1.25em; fill: none; stroke: currentColor; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }

::selection { background: rgba(233,47,128,.16); color: var(--brand-navy); }

.container { width: min(calc(100% - 40px), var(--container)); margin-inline: auto; }
.section { padding: 110px 0; }
.section-kicker,
.eyebrow,
.cta-label {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 16px;
  font-size: .82rem;
  line-height: 1;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .11em;
  color: var(--brand-blue);
}
.section h2,
.hero h1,
.cta-shell h2,
.location-card h2 {
  margin: 0;
  color: var(--brand-navy);
  letter-spacing: -.045em;
  line-height: 1.08;
}
.section h2,
.location-card h2 { font-size: clamp(2rem, 4vw, 3.55rem); }
.section-lead { font-size: 1.12rem; color: #3A4057; }
.centered { max-width: 760px; margin: 0 auto 52px; text-align: center; }
.centered p { margin: 18px auto 0; max-width: 650px; color: var(--text-muted); }

.skip-link {
  position: fixed;
  left: 16px;
  top: 12px;
  z-index: 9999;
  padding: 10px 14px;
  background: var(--brand-navy);
  color: #fff;
  border-radius: 10px;
  transform: translateY(-180%);
  transition: var(--transition);
}
.skip-link:focus { transform: translateY(0); }

:focus-visible { outline: 3px solid rgba(0,120,170,.38); outline-offset: 3px; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 800;
  font-size: .95rem;
  transition: transform var(--transition), background var(--transition), border-color var(--transition), box-shadow var(--transition), color var(--transition);
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--brand-blue), #028abd 72%);
  box-shadow: 0 12px 26px rgba(0,120,170,.23);
}
.btn-primary:hover { box-shadow: 0 16px 32px rgba(0,120,170,.3); }
.btn-secondary { background: #fff; border-color: #DCE3EE; color: var(--brand-navy); }
.btn-secondary:hover { border-color: rgba(0,120,170,.42); box-shadow: var(--shadow-sm); }
.btn-white { background: #fff; color: var(--brand-navy); }
.btn-ghost-white { border-color: rgba(255,255,255,.55); color: #fff; background: rgba(255,255,255,.08); }
.btn-ghost-white:hover { background: rgba(255,255,255,.15); }
.btn-full { width: 100%; }

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--header-height);
  transition: background var(--transition), box-shadow var(--transition), backdrop-filter var(--transition);
}
.site-header.scrolled {
  background: rgba(255,255,255,.9);
  box-shadow: 0 8px 28px rgba(8,11,69,.07);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}
.navbar { height: 100%; display: flex; align-items: center; justify-content: space-between; gap: 30px; }
.brand { display: inline-flex; align-items: center; min-width: 160px; }
.brand img { width: auto; max-height: 52px; object-fit: contain; }
.brand-fallback {
  display: none;
  align-items: center;
  gap: 6px;
  color: var(--brand-blue);
  font-size: 1.25rem;
  font-weight: 800;
}
.brand-fallback strong { color: var(--brand-pink); }

/* Tekstowy branding w navbarze */
.brand-header {
  min-width: max-content;
}
.brand-identity {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.brand-monogram {
  display: inline-flex;
  align-items: baseline;
  font-size: 2.1rem;
  font-weight: 800;
  line-height: .9;
  letter-spacing: -0.12em;
}
.brand-f { color: var(--brand-blue); }
.brand-l { color: var(--brand-pink); }
.brand-copy {
  display: flex;
  flex-direction: column;
  line-height: 1.08;
}
.brand-copy strong {
  color: var(--brand-navy);
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: -.025em;
}
.brand-copy small {
  margin-top: 4px;
  color: #7C8098;
  font-size: .62rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .13em;
}
.brand-header:hover .brand-monogram {
  transform: translateY(-1px);
}
.brand-header .brand-monogram {
  transition: transform var(--transition);
}
.nav-panel { display: flex; align-items: center; gap: 26px; }
.nav-links { display: flex; align-items: center; gap: 25px; list-style: none; margin: 0; padding: 0; }
.nav-link { position: relative; padding: 10px 0; font-weight: 700; font-size: .88rem; color: #30354D; }
.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: 3px;
  height: 2px;
  border-radius: 4px;
  background: linear-gradient(90deg, var(--brand-blue), var(--brand-pink));
  transition: right var(--transition);
}
.nav-link:hover::after,
.nav-link.active::after { right: 0; }
.nav-link.active { color: var(--brand-blue); }
.nav-cta { min-height: 44px; padding-inline: 18px; }
.menu-toggle { display: none; width: 46px; height: 46px; border: 0; background: transparent; padding: 10px; }
.menu-toggle span { display: block; height: 2px; margin: 5px 0; background: var(--brand-navy); transition: transform var(--transition), opacity var(--transition); }
.menu-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle.open span:nth-child(2) { opacity: 0; }
.menu-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.hero {
  position: relative;
  min-height: 760px;
  padding: calc(var(--header-height) + 70px) 0 80px;
  background:
    radial-gradient(circle at 80% 12%, rgba(0,120,170,.1), transparent 32%),
    linear-gradient(180deg, #FFFFFF 0%, #FAFCFF 100%);
  overflow: hidden;
}
.hero-grid { display: grid; grid-template-columns: 1.02fr .98fr; align-items: center; gap: 68px; min-height: 590px; }
.eyebrow { color: var(--brand-blue); margin-bottom: 20px; }
.eyebrow-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--brand-pink); box-shadow: 0 0 0 5px rgba(233,47,128,.11); }
.hero h1 { max-width: 720px; font-size: clamp(3rem, 6vw, 5.55rem); font-weight: 800; }
.hero h1 span { color: var(--brand-blue); position: relative; }
.hero h1 span::after {
  content: "";
  position: absolute;
  left: 5%;
  right: 0;
  bottom: -8px;
  height: 8px;
  opacity: .35;
  border-radius: 50%;
  background: var(--brand-pink);
  transform: rotate(-1.4deg);
}
.hero-lead { max-width: 660px; margin: 28px 0 0; color: #495066; font-size: clamp(1.04rem, 1.6vw, 1.23rem); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 34px; }
.trust-list { display: flex; flex-wrap: wrap; gap: 18px 25px; margin: 31px 0 0; padding: 0; list-style: none; color: #41475C; font-size: .9rem; }
.trust-list li { display: inline-flex; align-items: center; gap: 8px; }
.trust-list svg { color: var(--brand-blue); }
.trust-icon { color: #FFB000; font-size: 1.1rem; }

.hero-visual { position: relative; min-height: 550px; display: grid; place-items: center; }
.hero-blob {
  position: absolute;
  width: min(520px, 88%);
  aspect-ratio: 1;
  border-radius: 44% 56% 62% 38% / 49% 45% 55% 51%;
  background: linear-gradient(140deg, rgba(0,120,170,.98), rgba(233,47,128,.9));
  transform: rotate(7deg);
}
.photo-card {
  position: relative;
  z-index: 2;
  width: min(410px, 80%);
  aspect-ratio: .82;
  border-radius: 34px;
  background: #EFF4F9;
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  border: 7px solid rgba(255,255,255,.86);
}
.photo-card img { width: 100%; height: 100%; object-fit: cover; }
.photo-card.photo-placeholder { background: linear-gradient(160deg,#F1F7FB,#FCEEF5); }
.photo-placeholder-content,
.about-placeholder-content { display: none; position: absolute; inset: 0; place-items: center; align-content: center; gap: 6px; color: #6B7187; text-align: center; }
.photo-placeholder .photo-placeholder-content,
.about-placeholder .about-placeholder-content { display: grid; }
.photo-placeholder-content span,
.about-placeholder-content span { font-weight: 800; color: var(--brand-navy); }
.photo-placeholder-content small,
.about-placeholder-content small { font-size: .8rem; }
.photo-note {
  position: absolute;
  right: 22px;
  bottom: 22px;
  left: auto;
  z-index: 3;
  display: flex;
  align-items: center;
  width: auto;
  max-width: calc(100% - 44px);
  padding: 14px 20px 14px 24px;
  background: rgba(255,255,255,.93);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255,255,255,.85);
  border-radius: 16px;
  box-shadow: 0 14px 35px rgba(8,11,69,.12);
  overflow: hidden;
}

.photo-note::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 5px;
  background: linear-gradient(180deg, var(--brand-blue), var(--brand-pink));
}

/* Ukrywamy starą literę "A" bez potrzeby zmiany HTML */
.photo-note-icon {
  display: none !important;
}

.photo-note > div {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.photo-note strong {
  display: block;
  color: var(--brand-navy);
  font-size: 1rem;
  font-weight: 800;
  line-height: 1.25;
  letter-spacing: -.02em;
}

.photo-note > div > span {
  display: block;
  color: var(--text-muted);
  font-size: .78rem;
  font-weight: 600;
  line-height: 1.35;
}

.floating-card {
  position: absolute;
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 15px;
  background: rgba(255,255,255,.92);
  border: 1px solid rgba(255,255,255,.85);
  box-shadow: 0 14px 34px rgba(8,11,69,.12);
  backdrop-filter: blur(8px);
  border-radius: 18px;
}
.floating-card strong,.floating-card small { display: block; }
.floating-card strong { font-size: .84rem; color: var(--brand-navy); }
.floating-card small { font-size: .7rem; color: var(--text-muted); }
.floating-icon { display:grid; place-items:center; width:32px; aspect-ratio:1; border-radius:50%; background:rgba(0,120,170,.12); color:var(--brand-blue); font-weight:900; }
.floating-icon.star { background: rgba(255,176,0,.15); color: #E49B00; }
.floating-card-top { top: 15%; right: -3%; }
.floating-card-bottom { bottom: 11%; left: -1%; }
.hero-decoration { position: absolute; border-radius: 50%; border: 1px solid rgba(0,120,170,.15); }
.hero-decoration-a { width: 180px; height: 180px; top: 18%; left: -90px; }
.hero-decoration-b { width: 80px; height: 80px; bottom: 8%; right: 4%; border-color: rgba(233,47,128,.18); }

.proof-bar { border-top: 1px solid #EDF1F6; border-bottom: 1px solid #EDF1F6; background: #fff; }
.proof-grid { display: grid; grid-template-columns: repeat(4,1fr); }
.proof-item { padding: 23px 26px; display: grid; gap: 2px; border-right: 1px solid #EDF1F6; }
.proof-item:last-child { border-right: 0; }
.proof-item strong { color: var(--brand-navy); font-size: .98rem; }
.proof-item span { color: var(--text-muted); font-size: .78rem; }

.about-grid { display: grid; grid-template-columns: .88fr 1.12fr; align-items: center; gap: 90px; }
.about-visual { position: relative; min-height: 560px; }
.about-frame { position:absolute; inset:0 40px 0 0; overflow:hidden; border-radius: 34px; background: linear-gradient(150deg,#EEF8FC,#FDEFF5); box-shadow: var(--shadow-sm); }
.about-frame img { width:100%; height:100%; object-fit:cover; }
.about-accent { position:absolute; width:145px; height:145px; right:-5px; bottom:-25px; border-radius:50%; background:linear-gradient(135deg,var(--brand-pink),var(--brand-blue)); opacity:.16; }
.about-copy p { color: #596075; }
.about-copy .section-lead { color: #373E53; }
.about-values { margin-top: 36px; border-top: 1px solid var(--line); }
.about-values div { display:grid; grid-template-columns:48px 1fr; gap:13px; align-items:center; min-height:62px; border-bottom: 1px solid var(--line); }
.about-values span { color:var(--brand-pink); font-weight:800; font-size:.78rem; }
.about-values strong { color: var(--brand-navy); }

.offer { background: var(--brand-light); }
.offer-grid { display:grid; grid-template-columns:repeat(2,1fr); gap:22px; }
.offer-card { position:relative; padding:34px; background:#fff; border:1px solid #E5EAF1; border-radius:26px; overflow:hidden; transition:transform var(--transition), box-shadow var(--transition), border-color var(--transition); }
.offer-card:hover { transform:translateY(-6px); box-shadow:var(--shadow-sm); border-color:rgba(0,120,170,.22); }
.offer-card::after { content:""; position:absolute; width:100px; height:100px; right:-45px; bottom:-45px; border-radius:50%; background:radial-gradient(circle,rgba(233,47,128,.12),transparent 70%); }
.offer-icon { display:grid; place-items:center; width:52px; height:52px; border-radius:16px; background:rgba(0,120,170,.09); color:var(--brand-blue); }
.offer-icon svg { width:25px; height:25px; }
.card-number { position:absolute; top:30px; right:30px; color:#C9D1DE; font-size:.76rem; font-weight:800; letter-spacing:.12em; }
.offer-card h3 { margin:24px 0 10px; color:var(--brand-navy); font-size:1.25rem; line-height:1.35; }
.offer-card p { margin:0 0 20px; color:var(--text-muted); }
.text-link { display:inline-flex; gap:8px; align-items:center; font-weight:800; color:var(--brand-blue); font-size:.9rem; }
.text-link span { transition:transform var(--transition); }
.text-link:hover span { transform:translateX(4px); }



/* =========================================================
   CENNIK
   ========================================================= */
.pricing {
  position: relative;
  background:
    radial-gradient(circle at 15% 20%, rgba(0,120,170,.06), transparent 30%),
    radial-gradient(circle at 85% 85%, rgba(233,47,128,.055), transparent 28%),
    #fff;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  align-items: stretch;
}

.pricing-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 420px;
  padding: 34px;
  overflow: hidden;
  border: 1px solid #E5EAF1;
  border-radius: 28px;
  background: #fff;
  box-shadow: 0 14px 40px rgba(8,11,69,.055);
  transition:
    transform var(--transition),
    box-shadow var(--transition),
    border-color var(--transition);
}

.pricing-card:hover {
  transform: translateY(-6px);
  border-color: rgba(0,120,170,.24);
  box-shadow: 0 22px 55px rgba(8,11,69,.1);
}

.pricing-card-featured {
  border-color: rgba(0,120,170,.28);
  background:
    linear-gradient(#fff,#fff) padding-box,
    linear-gradient(135deg,var(--brand-blue),var(--brand-pink)) border-box;
  border: 1px solid transparent;
  box-shadow: 0 22px 55px rgba(0,120,170,.12);
}

.pricing-card-featured::before {
  content: "";
  position: absolute;
  width: 180px;
  height: 180px;
  right: -90px;
  top: -90px;
  border-radius: 50%;
  background: linear-gradient(135deg,rgba(0,120,170,.12),rgba(233,47,128,.11));
}

.pricing-badge {
  position: absolute;
  top: 22px;
  right: 22px;
  z-index: 2;
  padding: 7px 11px;
  border-radius: 999px;
  color: var(--brand-blue);
  background: rgba(0,120,170,.09);
  font-size: .68rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.pricing-icon {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  margin-bottom: 28px;
  border-radius: 17px;
  color: var(--brand-blue);
  background: linear-gradient(135deg,rgba(0,120,170,.1),rgba(233,47,128,.08));
}

.pricing-icon svg {
  width: 27px;
  height: 27px;
}

.pricing-label {
  color: var(--brand-navy);
  font-size: 1.08rem;
  font-weight: 800;
}

.pricing-value {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin: 12px 0 18px;
}

.pricing-value strong {
  color: var(--brand-navy);
  font-size: clamp(2.4rem,4vw,3.5rem);
  line-height: 1;
  letter-spacing: -.055em;
}

.pricing-value span {
  color: var(--text-muted);
  font-size: .82rem;
  font-weight: 700;
}

.pricing-card p {
  margin: 0 0 26px;
  color: var(--text-muted);
}

.pricing-btn {
  width: 100%;
  margin-top: auto;
}

.pricing-note {
  margin: 24px auto 0;
  color: var(--text-muted);
  font-size: .82rem;
  text-align: center;
}

@media (max-width: 980px) {
  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 680px;
    margin-inline: auto;
  }

  .pricing-card {
    min-height: auto;
  }
}

@media (max-width: 720px) {
  .pricing-card {
    padding: 28px;
    border-radius: 24px;
  }

  .pricing-value strong {
    font-size: 2.7rem;
  }
}

.why { background:#fff; }
.why-header { display:grid; grid-template-columns:1.15fr .85fr; gap:70px; align-items:end; margin-bottom:55px; }
.why-header p { margin:0; color:var(--text-muted); }
.why-grid { display:grid; grid-template-columns:repeat(3,1fr); border-top:1px solid var(--line); border-left:1px solid var(--line); }
.why-item { position:relative; min-height:260px; padding:34px; border-right:1px solid var(--line); border-bottom:1px solid var(--line); background:#fff; }
.why-item svg { width:32px; height:32px; color:var(--brand-blue); }
.why-index { position:absolute; right:26px; top:24px; color:#C7CFDC; font-size:.75rem; font-weight:800; }
.why-item h3 { margin:48px 0 8px; color:var(--brand-navy); font-size:1.12rem; }
.why-item p { margin:0; color:var(--text-muted); font-size:.92rem; }

.achievements { background: linear-gradient(180deg,#F7F9FC 0%,#FFF 100%); }
.achievements-shell { display:grid; grid-template-columns:.82fr 1.18fr; gap:80px; padding:56px; border-radius:34px; background:#fff; border:1px solid #E6EAF2; box-shadow:0 24px 60px rgba(8,11,69,.06); }
.achievement-intro p { color:var(--text-muted); }
.achievement-list { display:grid; gap:16px; align-content:center; }
.achievement-card { display:flex; gap:18px; align-items:center; padding:22px 24px; border:1px solid #E9EDF4; border-radius:20px; background:linear-gradient(135deg,#fff,#FAFBFD); }
.trophy { display:grid; place-items:center; flex:0 0 52px; height:52px; border-radius:16px; color:var(--brand-pink); font-weight:900; background:linear-gradient(135deg,rgba(233,47,128,.12),rgba(0,120,170,.1)); }
.achievement-card span { display:block; font-size:.72rem; text-transform:uppercase; letter-spacing:.1em; color:var(--brand-blue); font-weight:800; }
.achievement-card h3 { margin:4px 0 0; font-size:1rem; color:var(--brand-navy); }

.reviews { background:#fff; }
.reviews-top { display:flex; align-items:flex-end; justify-content:space-between; gap:40px; margin-bottom:42px; }
.google-rating { min-width:180px; text-align:right; }
.stars,.review-stars { color:#FFB000; letter-spacing:.08em; }
.google-rating strong,.google-rating span { display:block; }
.google-rating strong { color:var(--brand-navy); font-size:1.2rem; }
.google-rating span { color:var(--text-muted); font-size:.8rem; }
.reviews-viewport { overflow:hidden; }
.reviews-track { display:flex; gap:18px; transition:transform 500ms cubic-bezier(.2,.7,.2,1); will-change:transform; }
.review-card { flex:0 0 calc((100% - 36px)/3); min-height:280px; display:flex; flex-direction:column; padding:28px; border:1px solid #E5EAF1; border-radius:24px; background:#fff; }
.review-stars { font-size:.95rem; }
.review-card blockquote { margin:22px 0 30px; color:#343A50; font-size:1rem; line-height:1.8; flex:1; }
.review-card footer { display:flex; gap:12px; align-items:center; }
.avatar { display:grid; place-items:center; width:40px; height:40px; border-radius:50%; background:var(--brand-light); color:var(--brand-blue); font-weight:800; }
.review-card footer strong,.review-card footer small { display:block; }
.review-card footer strong { font-size:.9rem; color:var(--brand-navy); }
.review-card footer small { color:var(--text-muted); font-size:.75rem; }
.carousel-controls { display:flex; align-items:center; justify-content:space-between; gap:25px; margin-top:28px; }
.carousel-dots { display:flex; gap:7px; flex-wrap:wrap; }
.carousel-dot { width:8px; height:8px; padding:0; border:0; border-radius:50%; background:#D7DEE9; transition:width var(--transition),background var(--transition); }
.carousel-dot.active { width:28px; border-radius:999px; background:var(--brand-blue); }
.carousel-buttons { display:flex; gap:10px; }
.carousel-btn { width:46px; height:46px; border:1px solid #DEE4ED; border-radius:50%; background:#fff; color:var(--brand-navy); font-size:1.2rem; transition:var(--transition); }
.carousel-btn:hover { border-color:var(--brand-blue); color:var(--brand-blue); }
.reviews-google-link { margin-top:34px; text-align:center; }

.cta-section { padding-top: 70px; }
.cta-shell { position:relative; overflow:hidden; display:flex; justify-content:space-between; gap:50px; align-items:center; padding:58px 62px; border-radius:32px; color:#fff; background:linear-gradient(125deg,#006E9E 0%,#0078AA 45%,#E92F80 100%); box-shadow:0 26px 60px rgba(0,120,170,.2); }
.cta-label { color:rgba(255,255,255,.8); }
.cta-shell h2 { max-width:760px; color:#fff; font-size:clamp(2rem,4vw,3.35rem); }
.cta-shell p { margin:18px 0 0; color:rgba(255,255,255,.82); }
.cta-actions { display:flex; flex:0 0 auto; gap:10px; flex-wrap:wrap; }
.cta-shape { position:absolute; width:260px; height:260px; border:1px solid rgba(255,255,255,.2); border-radius:50%; right:-90px; top:-110px; }

.contact { background:var(--brand-light); }
.contact-grid { display:grid; grid-template-columns:1fr .92fr; gap:72px; align-items:start; }
.contact-info > p { color:var(--text-muted); max-width:600px; }
.contact-details { display:grid; gap:18px; margin:36px 0; }
.contact-detail { display:flex; gap:14px; align-items:flex-start; }
.contact-detail-icon { display:grid; place-items:center; flex:0 0 44px; height:44px; border-radius:14px; color:var(--brand-blue); background:#fff; border:1px solid #E5EAF1; }
.contact-detail-icon svg { width:21px; height:21px; }
.contact-detail div > span { display:block; color:var(--text-muted); font-size:.74rem; text-transform:uppercase; letter-spacing:.08em; font-weight:800; }
.contact-detail a,.contact-detail address { color:var(--brand-navy); font-weight:700; }
.quick-contact-grid { display:grid; grid-template-columns:repeat(2,1fr); gap:10px; }
.quick-contact { display:flex; align-items:center; justify-content:space-between; min-height:54px; padding:14px 16px; border:1px solid #E0E6EF; border-radius:14px; background:#fff; font-weight:800; color:var(--brand-navy); transition:var(--transition); }
.quick-contact:hover { transform:translateY(-2px); border-color:rgba(0,120,170,.35); }
.quick-contact span { color:var(--brand-pink); }
.contact-form-card { padding:34px; background:#fff; border:1px solid #E5EAF1; border-radius:28px; box-shadow:var(--shadow-sm); }
.form-heading span { color:var(--brand-blue); font-size:.78rem; font-weight:800; text-transform:uppercase; letter-spacing:.09em; }
.form-heading h3 { margin:4px 0 26px; color:var(--brand-navy); font-size:1.55rem; }
.form-group { margin-bottom:18px; }
.form-group label { display:block; margin-bottom:7px; color:#363B50; font-size:.84rem; font-weight:800; }
.form-group input,.form-group textarea { width:100%; border:1px solid #DCE3EC; border-radius:13px; background:#fff; padding:13px 14px; color:var(--text-dark); outline:none; transition:border-color var(--transition),box-shadow var(--transition); }
.form-group input { min-height:48px; }
.form-group textarea { resize:vertical; min-height:130px; }
.form-group input:focus,.form-group textarea:focus { border-color:var(--brand-blue); box-shadow:0 0 0 4px rgba(0,120,170,.08); }
.is-invalid { border-color:var(--danger) !important; }
.field-error { display:block; min-height:17px; margin-top:5px; color:var(--danger); font-size:.72rem; }
.form-check { display:flex; align-items:flex-start; gap:10px; margin:6px 0 2px; }
.form-check input { width:18px; height:18px; margin-top:2px; accent-color:var(--brand-blue); }
.form-check label { font-size:.8rem; color:#545B70; }
.form-check a { color:var(--brand-blue); text-decoration:underline; }
.field-error-checkbox { margin:0 0 14px 28px; }
.form-status { display:none; margin-top:14px; padding:12px 14px; border-radius:12px; font-size:.82rem; }
.form-status.success { display:block; color:#065F46; background:#ECFDF3; border:1px solid #ABEFC6; }
.form-status.error { display:block; color:#912018; background:#FEF3F2; border:1px solid #FECDCA; }

.location { padding:0 0 110px; background:var(--brand-light); }
.location-card { display:grid; grid-template-columns:.85fr 1.15fr; overflow:hidden; min-height:370px; border-radius:30px; background:#fff; border:1px solid #E5EAF1; }
.location-copy { padding:50px; align-self:center; }
.location-copy p { color:var(--text-muted); }
.location-copy p strong { color:var(--brand-navy); }
.location-visual { position:relative; min-height:370px; overflow:hidden; background:#EAF5FA; }
.map-grid { position:absolute; inset:-20%; background-image:linear-gradient(rgba(0,120,170,.1) 1px,transparent 1px),linear-gradient(90deg,rgba(0,120,170,.1) 1px,transparent 1px); background-size:45px 45px; transform:rotate(9deg) scale(1.25); }
.map-grid::after { content:""; position:absolute; inset:20%; border:10px solid rgba(255,255,255,.85); border-radius:45% 55% 40% 60%; transform:rotate(-15deg); }
.map-pin { position:absolute; left:50%; top:44%; width:56px; height:56px; transform:translate(-50%,-50%) rotate(45deg); background:linear-gradient(135deg,var(--brand-blue),var(--brand-pink)); border-radius:50% 50% 50% 0; box-shadow:0 12px 25px rgba(8,11,69,.2); }
.map-pin span { position:absolute; width:16px; height:16px; left:20px; top:20px; border-radius:50%; background:#fff; }
.map-label { position:absolute; left:50%; top:62%; transform:translateX(-50%); min-width:145px; padding:11px 14px; text-align:center; border-radius:13px; background:#fff; box-shadow:var(--shadow-sm); color:var(--brand-navy); font-weight:800; }
.map-label small { color:var(--text-muted); font-weight:600; }

.site-footer { padding:70px 0 0; background:var(--brand-navy); color:#fff; }
.footer-grid { display:grid; grid-template-columns:1.5fr .7fr .8fr; gap:60px; padding-bottom:55px; }
.brand-footer .brand-fallback { color:#fff; }
.footer-brand p { color:rgba(255,255,255,.68); }
.footer-meta { font-size:.8rem; }
.footer-col h2 { margin:0 0 15px; font-size:.78rem; text-transform:uppercase; letter-spacing:.1em; color:#fff; }
.footer-col ul { list-style:none; margin:0; padding:0; display:grid; gap:9px; }
.footer-col a { color:rgba(255,255,255,.7); font-size:.88rem; }
.footer-col a:hover { color:#fff; }
.footer-bottom { display:flex; justify-content:space-between; gap:25px; padding:22px 0 28px; border-top:1px solid rgba(255,255,255,.1); color:rgba(255,255,255,.55); font-size:.77rem; }
.footer-bottom p { margin:0; }
.footer-bottom a { color:rgba(255,255,255,.75); }

.scroll-top { position:fixed; right:22px; bottom:24px; z-index:850; width:46px; height:46px; border:0; border-radius:50%; color:#fff; background:var(--brand-navy); box-shadow:0 8px 24px rgba(8,11,69,.2); opacity:0; visibility:hidden; transform:translateY(10px); transition:var(--transition); }
.scroll-top.visible { opacity:1; visibility:visible; transform:translateY(0); }
.mobile-contact-bar { display:none; }

.reveal { opacity:0; transform:translateY(18px); transition:opacity 650ms ease,transform 650ms ease; }
.reveal.in-view { opacity:1; transform:none; }

@media (max-width: 1120px) {
  .nav-links { gap:17px; }
  .nav-panel { gap:18px; }
  .nav-link { font-size:.82rem; }
  .hero-grid { gap:30px; }
  .floating-card-top { right:-1%; }
  .floating-card-bottom { left:0; }
  .about-grid { gap:55px; }
  .contact-grid { gap:45px; }
}

@media (max-width: 980px) {
  :root { --header-height: 74px; }
  .section { padding:88px 0; }
  .menu-toggle { display:block; position:relative; z-index:1002; }
  .nav-panel {
    position:fixed;
    inset:0 0 auto 0;
    min-height:100dvh;
    padding:105px 24px 36px;
    flex-direction:column;
    align-items:stretch;
    background:rgba(255,255,255,.98);
    backdrop-filter:blur(18px);
    transform:translateY(-104%);
    transition:transform 400ms cubic-bezier(.2,.7,.2,1);
    z-index:1001;
  }
  .nav-panel.open { transform:translateY(0); }
  .nav-links { flex-direction:column; align-items:stretch; gap:4px; }
  .nav-link { display:block; padding:14px 4px; font-size:1.05rem; border-bottom:1px solid #EDF1F5; }
  .nav-link::after { display:none; }
  .nav-cta { margin-top:16px; }
  .hero { min-height:auto; padding-top:calc(var(--header-height) + 55px); }
  .hero-grid { grid-template-columns:1fr; gap:52px; }
  .hero-copy { max-width:760px; }
  .hero-visual { min-height:520px; }
  .photo-card { width:min(390px,72%); }
  .proof-grid { grid-template-columns:repeat(2,1fr); }
  .proof-item:nth-child(2) { border-right:0; }
  .proof-item:nth-child(-n+2) { border-bottom:1px solid #EDF1F6; }
  .about-grid { grid-template-columns:1fr; }
  .about-visual { min-height:520px; max-width:620px; width:100%; }
  .why-header { grid-template-columns:1fr; gap:18px; }
  .why-grid { grid-template-columns:repeat(2,1fr); }
  .achievements-shell { grid-template-columns:1fr; gap:35px; padding:40px; }
  .review-card { flex-basis:calc((100% - 18px)/2); }
  .cta-shell { flex-direction:column; align-items:flex-start; padding:48px; }
  .contact-grid { grid-template-columns:1fr; }
  .location-card { grid-template-columns:1fr; }
  .location-visual { min-height:320px; }
}

@media (max-width: 720px) {
  .container { width:min(calc(100% - 28px),var(--container)); }
  .section { padding:72px 0; }
  .brand { min-width:140px; }
  .brand img { max-height:45px; }
  .brand-header { min-width:0; }
  .brand-header .brand-identity { gap:9px; }
  .brand-header .brand-monogram { font-size:1.8rem; }
  .brand-header .brand-copy strong { font-size:.9rem; }
  .brand-header .brand-copy small { font-size:.54rem; letter-spacing:.1em; }
  .hero { padding-bottom:64px; }
  .hero h1 { font-size:clamp(2.55rem,13vw,4.2rem); }
  .hero-lead { font-size:1rem; }
  .hero-actions { display:grid; grid-template-columns:1fr; }
  .hero-actions .btn { width:100%; }
  .trust-list { display:grid; gap:12px; }
  .hero-visual { min-height:470px; }
  .photo-card { width:min(350px,82%); }
  .photo-note {
    right: 14px;
    bottom: 14px;
    padding: 11px 15px 11px 19px;
    border-radius: 13px;
  }
  .photo-note strong { font-size: .9rem; }
  .photo-note > div > span { font-size: .7rem; }
  .floating-card-top { top:12%; right:0; }
  .floating-card-bottom { left:0; bottom:9%; }
  .proof-grid { grid-template-columns:1fr 1fr; }
  .proof-item { padding:18px 16px; }
  .about-visual { min-height:440px; }
  .about-frame { right:18px; }
  .offer-grid { grid-template-columns:1fr; }
  .offer-card { padding:28px; }
  .why-grid { grid-template-columns:1fr; }
  .why-item { min-height:auto; }
  .achievements-shell { padding:28px; border-radius:26px; }
  .reviews-top { flex-direction:column; align-items:flex-start; }
  .google-rating { text-align:left; }
  .review-card { flex-basis:100%; }
  .carousel-controls { align-items:flex-end; }
  .cta-section { padding-top:50px; }
  .cta-shell { padding:38px 28px; border-radius:26px; gap:30px; }
  .cta-actions { width:100%; display:grid; grid-template-columns:1fr; }
  .contact-form-card { padding:26px; }
  .quick-contact-grid { grid-template-columns:1fr; }
  .location { padding-bottom:86px; }
  .location-copy { padding:34px 28px; }
  .footer-grid { grid-template-columns:1fr; gap:34px; }
  .footer-bottom { flex-direction:column; }
  .mobile-contact-bar {
    position:fixed;
    left:10px;
    right:10px;
    bottom:10px;
    z-index:900;
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:1px;
    padding:5px;
    border:1px solid rgba(8,11,69,.08);
    border-radius:17px;
    background:rgba(255,255,255,.95);
    backdrop-filter:blur(14px);
    box-shadow:0 12px 35px rgba(8,11,69,.18);
  }
  .mobile-contact-bar a { display:flex; align-items:center; justify-content:center; gap:8px; min-height:48px; border-radius:12px; font-weight:800; font-size:.88rem; color:var(--brand-navy); }
  .mobile-contact-bar a:first-child { background:var(--brand-blue); color:#fff; }
  .mobile-contact-bar svg { width:18px; height:18px; }
  .scroll-top { bottom:78px; right:16px; }
  .site-footer { padding-bottom:70px; }
}

@media (max-width: 430px) {
  .brand-header .brand-identity { gap:7px; }
  .brand-header .brand-monogram { font-size:1.62rem; }
  .brand-header .brand-copy strong { font-size:.82rem; }
  .brand-header .brand-copy small { font-size:.49rem; letter-spacing:.08em; }
  .hero h1 { font-size:2.68rem; }
  .hero-visual { min-height:410px; }
  .photo-card { width:82%; border-width:5px; border-radius:28px; }
  .floating-card { padding:10px 12px; }
  .floating-card strong { font-size:.76rem; }
  .floating-card small { font-size:.64rem; }
  .proof-grid { grid-template-columns:1fr; }
  .proof-item { border-right:0; border-bottom:1px solid #EDF1F6; }
  .proof-item:last-child { border-bottom:0; }
  .about-visual { min-height:390px; }
  .about-values div { grid-template-columns:40px 1fr; }
  .offer-card,.contact-form-card { border-radius:22px; }
  .achievement-card { align-items:flex-start; }
  .carousel-controls { gap:10px; }
  .carousel-buttons { margin-left:auto; }
}

@media (max-width: 340px) {
  .container { width:min(calc(100% - 20px),var(--container)); }
  .hero h1 { font-size:2.35rem; }
  .floating-card-top { top:6%; }
  .floating-card-bottom { bottom:3%; }
  .cta-shell { padding:32px 22px; }
  .contact-form-card { padding:22px; }
}

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

/* =========================================================
   MAPA OPENSTREETMAP / LEAFLET
   ========================================================= */
.leaflet-map {
  width: 100%;
  height: 100%;
  min-height: 370px;
  background: #EAF5FA;
  z-index: 1;
}

.location-visual .leaflet-container {
  font-family: "Manrope", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.fl-map-marker {
  background: transparent;
  border: 0;
}

.fl-map-marker-pin {
  position: relative;
  display: block;
  width: 38px;
  height: 38px;
  background: #E53935;
  border: 4px solid #FFFFFF;
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
  box-shadow: 0 10px 24px rgba(185, 28, 28, .32);
}

.fl-map-marker-center {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 10px;
  height: 10px;
  background: #FFFFFF;
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.leaflet-popup-content-wrapper {
  border-radius: 14px;
  box-shadow: 0 14px 35px rgba(8, 11, 69, .16);
}

.leaflet-popup-content {
  margin: 14px 16px;
  color: var(--text-dark);
  line-height: 1.5;
}

.leaflet-popup-content strong {
  color: var(--brand-navy);
}

@media (max-width: 720px) {
  .leaflet-map {
    min-height: 320px;
  }
}

.site-footer ::selection {
  background: rgba(233, 47, 128, .72);
  color: #FFFFFF;
}

.site-footer ::-moz-selection {
  background: rgba(233, 47, 128, .72);
  color: #FFFFFF;
}

.form-honeypot {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}