:root {
  --teal: #0099a5;
  --teal-dark: #007b87;
  --teal-light: #dff5f7;
  --brand-bg: #037f81;
  --navy: #08264d;
  --navy-deep: #06324c;
  --ink: #122b4f;
  --muted: #5e6e84;
  --line: #dce7ec;
  --surface: #f4f9fb;
  --white: #ffffff;
  --gold: #ffb000;
  --shadow: 0 16px 45px rgba(8, 38, 77, .12);
  --shadow-soft: 0 10px 30px rgba(8, 38, 77, .08);
  --radius: 18px;
  --container: 1440px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: "Segoe UI", Roboto, Arial, sans-serif;
  line-height: 1.55;
  overflow-x: hidden;
}
body.menu-open { overflow: hidden; }
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
svg { width: 1.35em; height: 1.35em; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.svg-sprite { position: absolute; width: 0; height: 0; overflow: hidden; }
.skip-link { position: fixed; left: 12px; top: -50px; z-index: 2000; padding: 10px 14px; background: var(--navy); color: white; border-radius: 8px; }
.skip-link:focus { top: 12px; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255,255,255,.97);
  border-bottom: 1px solid transparent;
  transition: box-shadow .25s ease, border-color .25s ease;
}
.site-header.scrolled { box-shadow: 0 8px 26px rgba(8, 38, 77, .10); border-bottom-color: var(--line); }
.header-inner { min-height: 104px; max-width: var(--container); margin: 0 auto; padding: 0 28px 0 0; display: grid; grid-template-columns: 380px minmax(0,1fr) auto; align-items: center; gap: 34px; }
.brand { align-self: stretch; display: flex; align-items: center; justify-content: center; padding: 16px 38px; overflow: hidden; background: var(--brand-bg); border-radius: 0; }
.brand img { width: 304px; max-width: 100%; height: auto; object-fit: contain; }
.main-nav { min-width: 0; display: flex; justify-content: center; align-items: stretch; gap: clamp(14px, 1.55vw, 28px); padding: 0 30px; }
.nav-link { position: relative; display: flex; align-items: center; padding: 0; color: var(--navy); font-weight: 600; font-size: 14px; white-space: nowrap; }
.nav-link::after { content: ""; position: absolute; left: 50%; right: 50%; bottom: 25px; height: 2px; background: var(--teal); transition: left .2s ease, right .2s ease; }
.nav-link:hover::after, .nav-link.active::after { left: 0; right: 0; }
.header-phone { display: flex; align-items: center; gap: 10px; padding: 0 28px 0 12px; color: var(--navy); }
.header-phone > svg { width: 25px; height: 25px; }
.header-phone span { display: flex; flex-direction: column; }
.header-phone strong { font-size: 17px; letter-spacing: .2px; }
.header-phone small { font-size: 11px; color: var(--muted); }
.menu-toggle { display: none; width: 44px; height: 44px; border: 0; border-radius: 10px; background: var(--surface); cursor: pointer; padding: 10px; }
.menu-toggle span { display: block; height: 2px; margin: 5px 0; background: var(--navy); transition: transform .2s ease, opacity .2s ease; }
.menu-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle.active span:nth-child(2) { opacity: 0; }
.menu-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.hero { max-width: var(--container); margin: 0 auto; min-height: 620px; display: grid; grid-template-columns: 44% 56%; background: linear-gradient(90deg,#fff 0%,#fff 42%,#f6fbfc 42%,#f6fbfc 100%); overflow: hidden; }
.hero-copy { display: flex; flex-direction: column; justify-content: center; padding: 64px 38px 58px 58px; }
.eyebrow { align-self: flex-start; display: inline-flex; align-items: center; gap: 7px; margin-bottom: 18px; padding: 7px 12px; background: var(--teal-light); color: var(--teal-dark); border-radius: 999px; font-size: 12px; font-weight: 800; text-transform: uppercase; letter-spacing: .04em; }
.hero h1 { margin: 0; color: var(--navy); font-size: clamp(48px, 5vw, 78px); line-height: 1.02; letter-spacing: -.045em; }
.hero h1 span { color: var(--teal); }
.hero-lead { max-width: 620px; margin: 22px 0 16px; font-size: 20px; color: var(--ink); }
.check-list, .mini-check-list { list-style: none; padding: 0; margin: 0; }
.check-list { display: grid; gap: 10px; margin: 8px 0 24px; }
.check-list li { display: flex; align-items: center; gap: 11px; font-size: 17px; }
.check-list li span { flex: 0 0 22px; display: grid; place-items: center; width: 22px; height: 22px; border-radius: 50%; background: var(--teal); color: #fff; }
.check-list svg { width: 14px; height: 14px; stroke-width: 2.8; }
.hero-actions { display: flex; flex-direction: column; align-items: flex-start; gap: 14px; }
.button { display: inline-flex; align-items: center; justify-content: center; gap: 10px; min-height: 52px; padding: 0 24px; border: 2px solid transparent; border-radius: 8px; font-weight: 800; text-transform: uppercase; letter-spacing: .01em; transition: transform .2s ease, background .2s ease, box-shadow .2s ease; }
.button:hover { transform: translateY(-2px); box-shadow: 0 10px 24px rgba(0,153,165,.22); }
.button-primary { background: var(--teal); color: #fff; }
.button-primary:hover { background: var(--teal-dark); }
.button-outline { border-color: var(--teal); color: var(--teal-dark); background: #fff; min-width: 420px; }
.button-outline:hover { background: var(--teal); color: #fff; }
.button-bright { min-width: 230px; background: #03b8c4; color: #fff; }
.phone-inline { display: inline-flex; align-items: center; gap: 7px; margin-left: 24px; color: var(--navy); }
.phone-inline svg { color: var(--teal); }
.phone-inline strong { color: var(--teal-dark); }
.hero-media { position: relative; min-height: 620px; overflow: hidden; }
.hero-media::before { content: ""; position: absolute; inset: 0; z-index: 1; background: linear-gradient(90deg,rgba(255,255,255,.55),transparent 23%); pointer-events: none; }
.hero-media img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.rating-card { position: absolute; right: 42px; bottom: 48px; z-index: 2; min-width: 260px; padding: 18px 22px; border-radius: 10px; background: rgba(255,255,255,.94); box-shadow: var(--shadow); backdrop-filter: blur(8px); }
.rating-card > div { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.rating-card strong { font-size: 25px; }
.stars { color: var(--gold); letter-spacing: 2px; white-space: nowrap; }
.rating-card p { margin: 10px 0 0; font-size: 14px; }

.benefits { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: linear-gradient(180deg,#fff,#f7fbfc); }
.benefits-grid { max-width: var(--container); margin: 0 auto; display: grid; grid-template-columns: repeat(5,1fr); padding: 28px 34px; }
.benefit { position: relative; text-align: center; padding: 0 24px; }
.benefit:not(:last-child)::after { content: ""; position: absolute; right: 0; top: 20px; bottom: 20px; width: 1px; background: var(--line); }
.benefit-icon { width: 62px; height: 62px; margin: 0 auto 10px; display: grid; place-items: center; border-radius: 50%; color: var(--teal); background: #fff; box-shadow: 0 8px 22px rgba(8,38,77,.08); }
.benefit-icon svg { width: 34px; height: 34px; }
.benefit h2 { margin: 0; font-size: 17px; line-height: 1.2; color: var(--navy); }
.benefit p { margin: 10px auto 0; max-width: 210px; color: var(--muted); font-size: 13px; line-height: 1.45; }

.section { padding: 70px 32px; }
.section-heading { text-align: center; margin-bottom: 34px; }
.section-heading h2 { margin: 0; font-size: clamp(32px,4vw,52px); line-height: 1.1; color: var(--navy); letter-spacing: -.03em; }
.section-heading p { margin: 8px 0 0; color: var(--ink); font-size: 18px; }
.section-heading p::after { content: ""; display: block; width: 60px; height: 2px; margin: 12px auto 0; background: var(--teal); }
.process { position: relative; overflow: hidden; background: radial-gradient(circle at 50% 10%,#fff 0,#f4fbfd 58%,#fff 100%); }
.process::before, .process::after { content: ""; position: absolute; width: 330px; height: 330px; border: 1px solid rgba(0,153,165,.10); border-radius: 50%; }
.process::before { left: -210px; top: 150px; box-shadow: 0 0 0 35px rgba(0,153,165,.025),0 0 0 70px rgba(0,153,165,.018); }
.process::after { right: -220px; bottom: 120px; box-shadow: 0 0 0 35px rgba(0,153,165,.025),0 0 0 70px rgba(0,153,165,.018); }
.process-grid { position: relative; z-index: 1; max-width: 1350px; margin: 0 auto; display: grid; grid-template-columns: repeat(5,1fr); gap: 28px; align-items: stretch; }
.process-grid::before { content: ""; position: absolute; left: 8%; right: 8%; top: 70px; height: 2px; background: linear-gradient(90deg,transparent,var(--teal) 8%,var(--teal) 92%,transparent); opacity: .65; }
.process-card { position: relative; min-height: 295px; padding: 80px 24px 26px; border: 1px solid #dfeaec; border-radius: 18px; background: rgba(255,255,255,.94); box-shadow: var(--shadow-soft); text-align: center; transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease; }
.process-card:hover { transform: translateY(-8px); box-shadow: var(--shadow); border-color: rgba(0,153,165,.5); }
.step-number { position: absolute; left: 50%; top: -20px; z-index: 3; display: grid; place-items: center; width: 42px; height: 42px; transform: translateX(-50%); border-radius: 50%; background: var(--teal-dark); color: #fff; font-size: 20px; font-weight: 800; box-shadow: 0 7px 18px rgba(0,123,135,.30); }
.process-icon { position: absolute; top: 25px; left: 50%; z-index: 2; display: grid; place-items: center; width: 92px; height: 92px; transform: translateX(-50%); border: 10px solid #f3f8fa; border-radius: 50%; color: var(--teal); background: #fff; box-shadow: 0 8px 24px rgba(8,38,77,.13); }
.process-icon svg { width: 43px; height: 43px; }
.process-card h3 { margin: 42px 0 12px; color: var(--navy); font-size: 18px; line-height: 1.22; }
.process-card p { margin: 0; color: var(--muted); font-size: 14px; }
.process-card-featured { border: 2px solid var(--teal); transform: translateY(-10px); }
.process-card-featured:hover { transform: translateY(-18px); }
.process-card-featured .process-icon { color: #fff; background: var(--teal-dark); }
.key-label { display: inline-block; margin-top: 35px; margin-bottom: -31px; padding: 4px 10px; border-radius: 999px; color: var(--teal-dark); background: var(--teal-light); font-size: 10px; font-weight: 800; text-transform: uppercase; }
.process-card-featured h3 { margin-top: 38px; }
.centered-action { display: flex; justify-content: center; margin-top: 38px; }

.testimonials { padding-top: 0; }
.testimonials .section-heading h2 { font-size: 30px; }
.testimonial-grid { max-width: 1350px; margin: 0 auto; display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.testimonial-card { display: grid; grid-template-columns: 100px 1fr; gap: 20px; align-items: center; min-height: 170px; padding: 22px; border: 1px solid var(--line); border-radius: 12px; background: #fff; box-shadow: 0 8px 24px rgba(8,38,77,.05); }
.testimonial-card img { width: 100px; height: 100px; object-fit: cover; border-radius: 50%; }
.testimonial-card blockquote { margin: 0; font-size: 14px; color: var(--ink); }
.testimonial-meta { display: flex; align-items: center; justify-content: space-between; gap: 10px; margin-top: 18px; font-size: 13px; }
.testimonial-meta strong { color: var(--navy); }
.testimonial-meta .stars { font-size: 14px; }
.text-link { width: fit-content; margin: 18px auto 0; display: flex; align-items: center; gap: 9px; color: var(--teal-dark); font-weight: 700; font-size: 14px; }
.text-link svg { width: 18px; height: 18px; transition: transform .2s ease; }
.text-link:hover svg { transform: translateX(4px); }
.text-link-left { margin-left: 0; }

.information { padding-top: 20px; }
.info-grid { max-width: 1350px; margin: 0 auto; display: grid; grid-template-columns: 1.12fr 1fr 1fr; gap: 22px; }
.symptoms-card, .faq-card, .blog-card { min-height: 370px; border-radius: 14px; background: linear-gradient(135deg,#f7fbfc,#eaf4f7); overflow: hidden; }
.symptoms-card { display: grid; grid-template-columns: 55% 45%; }
.symptoms-copy { padding: 28px 8px 24px 28px; }
.symptoms-card h2, .faq-card h2, .blog-card h2 { margin: 0 0 18px; color: var(--navy); font-size: 23px; line-height: 1.15; }
.mini-check-list { display: grid; gap: 12px; }
.mini-check-list li { display: flex; gap: 8px; font-size: 14px; line-height: 1.35; }
.mini-check-list svg { flex: 0 0 18px; width: 18px; height: 18px; padding: 2px; border-radius: 50%; color: #fff; background: var(--teal); stroke-width: 2.8; }
.symptoms-media { position: relative; min-height: 370px; }
.symptoms-media > img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 30%; }
.symptoms-cta { position: absolute; left: -30px; right: 0; bottom: 0; padding: 16px 18px; background: linear-gradient(135deg,var(--teal-dark),var(--teal)); color: #fff; text-align: center; }
.symptoms-cta span { display: block; font-size: 13px; }
.symptoms-cta a { display: inline-flex; margin-top: 10px; padding: 8px 13px; border-radius: 7px; background: #fff; color: var(--teal-dark); font-weight: 800; font-size: 12px; text-transform: uppercase; }
.faq-card, .blog-card { padding: 28px; }
.faq-list { border-top: 1px solid #cedde2; }
.faq-item { border-bottom: 1px solid #cedde2; }
.faq-item button { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 14px; padding: 10px 0; border: 0; background: transparent; color: var(--ink); cursor: pointer; text-align: left; }
.faq-item button svg { width: 16px; height: 16px; transition: transform .2s ease; }
.faq-item.open button svg { transform: rotate(180deg); }
.faq-answer { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .25s ease; }
.faq-answer > p { min-height: 0; overflow: hidden; margin: 0; color: var(--muted); font-size: 13px; }
.faq-item.open .faq-answer { grid-template-rows: 1fr; }
.faq-item.open .faq-answer > p { padding: 0 0 12px; }
.blog-card { display: flex; flex-direction: column; }
.blog-item { display: grid; grid-template-columns: 78px 1fr; gap: 13px; align-items: center; padding: 9px 0; border-bottom: 1px solid #d7e4e8; font-size: 14px; line-height: 1.3; transition: color .2s ease; }
.blog-item:hover { color: var(--teal-dark); }
.blog-item img { width: 78px; height: 55px; object-fit: cover; border-radius: 8px; filter: saturate(.75); }
.blog-card .text-link { margin-top: auto; }

.cta-strip { max-width: 1350px; margin: 0 auto; padding: 24px 34px; display: grid; grid-template-columns: auto 1fr auto auto; align-items: center; gap: 28px; color: #fff; background: var(--brand-bg); border-radius: 14px 14px 0 0; }
.cta-icon { display: grid; place-items: center; width: 62px; height: 62px; border: 2px solid rgba(255,255,255,.7); border-radius: 12px; }
.cta-icon svg { width: 34px; height: 34px; }
.cta-copy h2 { margin: 0; font-size: 24px; }
.cta-copy p { margin: 4px 0 0; color: rgba(255,255,255,.85); }
.cta-phone { display: flex; flex-direction: column; line-height: 1.1; }
.cta-phone span { font-size: 13px; }
.cta-phone a { margin-top: 4px; font-size: 23px; font-weight: 800; }

.site-footer { color: #fff; background: var(--brand-bg); }
.footer-grid { max-width: 1350px; margin: 0 auto; padding: 42px 34px 36px; display: grid; grid-template-columns: 1.25fr repeat(3,1fr) 1.2fr; gap: 42px; }
.footer-brand img { width: 290px; max-width: 100%; height: auto; object-fit: contain; border-radius: 8px; }
.footer-brand p { margin: 18px 0; font-size: 16px; }
.social-links { display: flex; gap: 10px; }
.social-links a { display: grid; place-items: center; width: 34px; height: 34px; border: 1px solid rgba(255,255,255,.35); border-radius: 50%; transition: background .2s ease; }
.social-links a:hover { background: var(--teal); }
.social-links svg { width: 17px; height: 17px; }
.footer-grid h2 { margin: 3px 0 14px; font-size: 14px; }
.footer-grid > div:not(.footer-brand) { display: flex; flex-direction: column; align-items: flex-start; }
.footer-grid a { margin: 4px 0; color: rgba(255,255,255,.88); font-size: 13px; }
.footer-grid a:hover { color: #fff; text-decoration: underline; }
.footer-contact p, .footer-contact a { display: flex; align-items: flex-start; gap: 8px; margin: 4px 0; }
.footer-contact svg { flex: 0 0 16px; width: 16px; height: 16px; margin-top: 2px; }
.footer-bottom { max-width: 1350px; margin: 0 auto; padding: 18px 34px 24px; border-top: 1px solid rgba(255,255,255,.18); display: flex; align-items: center; justify-content: space-between; gap: 22px; color: rgba(255,255,255,.75); font-size: 12px; }
.footer-bottom div { display: flex; gap: 22px; }


/* Página de contacto */
.contact-hero {
  position: relative;
  overflow: hidden;
  color: #fff;
  background:
    radial-gradient(circle at 82% 20%, rgba(255,255,255,.16), transparent 32%),
    linear-gradient(120deg, var(--navy-deep), var(--brand-bg));
}
.contact-hero::after {
  content: "";
  position: absolute;
  right: -110px;
  bottom: -170px;
  width: 430px;
  height: 430px;
  border: 1px solid rgba(255,255,255,.13);
  border-radius: 50%;
  box-shadow: 0 0 0 55px rgba(255,255,255,.035), 0 0 0 110px rgba(255,255,255,.025);
}
.contact-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  padding: 86px 34px 92px;
}
.contact-hero .eyebrow { margin-bottom: 20px; background: rgba(255,255,255,.12); color: #fff; }
.contact-hero h1 { max-width: 850px; margin: 0; font-size: clamp(42px, 5.2vw, 72px); line-height: 1.04; letter-spacing: -.04em; }
.contact-hero p { max-width: 700px; margin: 22px 0 0; color: rgba(255,255,255,.88); font-size: 20px; }

.contact-summary {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: -44px auto 0;
  padding: 0 34px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.contact-summary-card {
  min-height: 170px;
  padding: 27px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fff;
  box-shadow: var(--shadow-soft);
}
.contact-summary-icon {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  margin-bottom: 16px;
  border-radius: 12px;
  color: var(--teal-dark);
  background: var(--teal-light);
}
.contact-summary-icon svg { width: 25px; height: 25px; }
.contact-summary-card h2 { margin: 0 0 7px; color: var(--navy); font-size: 18px; }
.contact-summary-card p, .contact-summary-card a { margin: 0; color: var(--muted); font-size: 15px; }
.contact-summary-card a:hover { color: var(--teal-dark); }
.contact-summary-card strong { color: var(--navy); }
.contact-rating { display: flex; align-items: center; gap: 9px; margin-top: 8px; }
.contact-rating strong { font-size: 22px; }
.contact-rating .stars { font-size: 15px; }

.contact-main {
  max-width: 1200px;
  margin: 0 auto;
  padding: 72px 34px 80px;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(380px, .95fr);
  gap: 42px;
  align-items: start;
}
.contact-panel {
  padding: 36px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: #fff;
  box-shadow: var(--shadow-soft);
}
.contact-panel h2 { margin: 0; color: var(--navy); font-size: 31px; letter-spacing: -.025em; }
.contact-panel > p { margin: 10px 0 28px; color: var(--muted); }
.contact-form { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-field { display: flex; flex-direction: column; gap: 7px; }
.form-field-full { grid-column: 1 / -1; }
.form-field label { color: var(--navy); font-size: 14px; font-weight: 700; }
.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  border: 1px solid #cddce2;
  border-radius: 9px;
  background: #fbfdfe;
  color: var(--ink);
  padding: 12px 14px;
  outline: none;
  transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}
.form-field textarea { min-height: 135px; resize: vertical; }
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: var(--teal);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(0,153,165,.12);
}
.form-consent { grid-column: 1 / -1; display: flex; align-items: flex-start; gap: 10px; color: var(--muted); font-size: 13px; }
.form-consent input { flex: 0 0 auto; margin-top: 3px; accent-color: var(--teal-dark); }
.contact-form .button { grid-column: 1 / -1; width: 100%; border: 0; cursor: pointer; }
.form-note { grid-column: 1 / -1; margin: -4px 0 0; color: var(--muted); font-size: 12px; }
.form-feedback { grid-column: 1 / -1; min-height: 23px; margin: 0; color: var(--teal-dark); font-weight: 700; }

.contact-side { display: grid; gap: 22px; }
.contact-details {
  padding: 34px;
  border-radius: 20px;
  color: #fff;
  background: var(--brand-bg);
}
.contact-details h2 { margin: 0 0 23px; font-size: 28px; }
.contact-detail-row { display: grid; grid-template-columns: 42px 1fr; gap: 13px; padding: 17px 0; border-top: 1px solid rgba(255,255,255,.18); }
.contact-detail-row:first-of-type { border-top: 0; padding-top: 0; }
.contact-detail-row > svg { width: 25px; height: 25px; margin-top: 2px; }
.contact-detail-row strong { display: block; margin-bottom: 3px; }
.contact-detail-row p, .contact-detail-row a { margin: 0; color: rgba(255,255,255,.9); }
.contact-detail-row a:hover { color: #fff; text-decoration: underline; }
.contact-actions { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 24px; }
.contact-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 48px;
  padding: 0 14px;
  border: 1px solid rgba(255,255,255,.55);
  border-radius: 8px;
  color: #fff;
  font-weight: 700;
  transition: background .2s ease, color .2s ease;
}
.contact-action:hover { color: var(--brand-bg); background: #fff; text-decoration: none; }
.contact-action svg { width: 19px; height: 19px; }
.contact-map-card { overflow: hidden; border: 1px solid var(--line); border-radius: 20px; background: #fff; box-shadow: var(--shadow-soft); }
.contact-map-card iframe { display: block; width: 100%; height: 330px; border: 0; }
.contact-map-footer { display: flex; align-items: center; justify-content: space-between; gap: 18px; padding: 19px 22px; }
.contact-map-footer p { margin: 0; color: var(--muted); font-size: 13px; }
.contact-map-footer a { color: var(--teal-dark); font-weight: 800; white-space: nowrap; }

.contact-page .site-footer { margin-top: 0; }

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

@media (max-width: 1220px) {
  .header-inner { grid-template-columns: 280px 1fr; }
  .brand { padding: 0 20px; }
  .brand img { width: 240px; }
  .header-phone { display: none; }
  .main-nav { justify-content: flex-end; gap: 18px; padding: 0 26px; }
  .hero { grid-template-columns: 48% 52%; }
  .hero-copy { padding-left: 38px; }
  .hero h1 { font-size: 55px; }
  .process-grid { gap: 14px; }
  .process-card { padding-left: 16px; padding-right: 16px; }
  .footer-grid { grid-template-columns: 1.2fr repeat(2,1fr); }
  .footer-grid > div:nth-child(4), .footer-grid > div:nth-child(5) { margin-top: 12px; }
}

@media (max-width: 1024px) {
  .header-inner { min-height: 78px; grid-template-columns: 260px 1fr; padding-right: 16px; }
  .brand { justify-content: flex-start; padding: 0 18px; }
  .brand img { width: 220px; }
  .main-nav { position: fixed; inset: 82px 0 0 auto; width: min(380px,88vw); display: flex; flex-direction: column; align-items: stretch; justify-content: flex-start; gap: 0; padding: 24px; background: #fff; box-shadow: -14px 18px 35px rgba(8,38,77,.15); transform: translateX(110%); transition: transform .25s ease; }
  .main-nav.open { transform: translateX(0); }
  .nav-link { padding: 15px 8px; border-bottom: 1px solid var(--line); font-size: 16px; }
  .nav-link::after { display: none; }
  .menu-toggle { display: block; justify-self: end; }
  .hero { min-height: auto; grid-template-columns: 1fr; }
  .hero-copy { padding: 54px 36px 42px; }
  .hero-media { min-height: 510px; }
  .benefits-grid { grid-template-columns: repeat(3,1fr); gap: 28px 0; }
  .benefit:nth-child(3)::after { display: none; }
  .process-grid { grid-template-columns: repeat(2,1fr); gap: 42px 24px; }
  .process-grid::before { display: none; }
  .process-card-featured { transform: none; }
  .process-card-featured:hover { transform: translateY(-8px); }
  .process-card:last-child { grid-column: 1 / -1; max-width: 420px; width: 100%; justify-self: center; }
  .testimonial-grid { grid-template-columns: 1fr; }
  .info-grid { grid-template-columns: 1fr 1fr; }
  .symptoms-card { grid-column: 1 / -1; }
  .cta-strip { grid-template-columns: auto 1fr auto; border-radius: 0; }
  .cta-phone { grid-column: 2 / 4; flex-direction: row; align-items: baseline; gap: 8px; }
  .footer-grid { grid-template-columns: repeat(3,1fr); }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 720px) {
  .header-inner { grid-template-columns: 225px 1fr; padding: 0 12px 0 0; }
  .brand { padding: 0 14px; }
  .brand img { width: 198px; }
  .hero-copy { padding: 42px 22px 34px; }
  .eyebrow { font-size: 10px; }
  .hero h1 { font-size: 43px; }
  .hero-lead { font-size: 17px; }
  .check-list li { font-size: 15px; }
  .button-primary { width: 100%; }
  .phone-inline { margin-left: 0; }
  .hero-media { min-height: 420px; }
  .rating-card { right: 18px; bottom: 18px; min-width: 235px; }
  .benefits-grid { grid-template-columns: 1fr; padding: 30px 22px; }
  .benefit { padding: 22px 0; }
  .benefit:not(:last-child)::after { left: 20%; right: 20%; top: auto; bottom: 0; width: auto; height: 1px; }
  .section { padding: 54px 18px; }
  .section-heading h2 { font-size: 36px; }
  .process-grid { grid-template-columns: 1fr; gap: 42px; }
  .process-card:last-child { grid-column: auto; max-width: none; }
  .button-outline { min-width: 0; width: 100%; }
  .testimonial-card { grid-template-columns: 78px 1fr; padding: 18px; }
  .testimonial-card img { width: 78px; height: 78px; }
  .testimonial-meta { align-items: flex-start; flex-direction: column; }
  .info-grid { grid-template-columns: 1fr; }
  .symptoms-card { grid-column: auto; grid-template-columns: 1fr; }
  .symptoms-copy { padding: 26px; }
  .symptoms-media { min-height: 340px; }
  .symptoms-cta { left: 0; }
  .cta-strip { grid-template-columns: auto 1fr; padding: 24px 20px; }
  .cta-icon { width: 52px; height: 52px; }
  .cta-copy h2 { font-size: 20px; }
  .cta-strip .button { grid-column: 1 / -1; width: 100%; }
  .cta-phone { grid-column: 1 / -1; justify-content: center; }
  .footer-grid { grid-template-columns: 1fr 1fr; padding: 36px 22px; gap: 30px 24px; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-contact { grid-column: 1 / -1; }
  .footer-bottom { padding: 20px 22px; flex-direction: column; align-items: flex-start; }
  .footer-bottom div { flex-wrap: wrap; gap: 12px 18px; }
}

@media (max-width: 460px) {
  .header-inner { grid-template-columns: 190px 1fr; }
  .brand img { width: 168px; }
  .hero h1 { font-size: 38px; }
  .hero-media { min-height: 360px; }
  .rating-card { left: 18px; right: 18px; min-width: 0; }
  .rating-card strong { font-size: 22px; }
  .testimonial-card { grid-template-columns: 1fr; text-align: center; }
  .testimonial-card img { margin: 0 auto; }
  .testimonial-meta { align-items: center; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-brand, .footer-contact { grid-column: auto; }
}


@media (max-width: 1024px) {
  .contact-summary { grid-template-columns: 1fr 1fr; }
  .contact-summary-card:last-child { grid-column: 1 / -1; }
  .contact-main { grid-template-columns: 1fr; }
  .contact-side { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 720px) {
  .contact-hero-inner { padding: 62px 22px 78px; }
  .contact-hero p { font-size: 17px; }
  .contact-summary { grid-template-columns: 1fr; margin-top: -35px; padding: 0 18px; }
  .contact-summary-card:last-child { grid-column: auto; }
  .contact-main { padding: 52px 18px 60px; }
  .contact-panel { padding: 25px 20px; }
  .contact-form { grid-template-columns: 1fr; }
  .form-field-full, .form-consent, .contact-form .button, .form-note, .form-feedback { grid-column: auto; }
  .contact-side { grid-template-columns: 1fr; }
  .contact-details { padding: 27px 22px; }
  .contact-actions { grid-template-columns: 1fr; }
  .contact-map-footer { align-items: flex-start; flex-direction: column; }
}

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


/* SERVICES PAGE */
.services-page main { background: #fff; }
.services-hero {
  max-width: var(--container);
  min-height: 560px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 51% 49%;
  overflow: hidden;
  background: linear-gradient(115deg, #fff 0%, #f8fcfd 100%);
}
.services-hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 72px 58px;
}
.services-hero h1 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(46px, 5vw, 72px);
  line-height: 1.02;
  letter-spacing: -.045em;
}
.services-hero-copy > p {
  max-width: 680px;
  margin: 24px 0 28px;
  color: var(--muted);
  font-size: 19px;
}
.services-hero-actions { display: flex; flex-direction: column; align-items: flex-start; gap: 14px; }
.services-trust { display: flex; flex-wrap: wrap; gap: 12px 22px; margin-top: 30px; color: var(--navy); font-size: 14px; font-weight: 700; }
.services-trust span { display: inline-flex; align-items: center; gap: 7px; }
.services-trust svg { width: 17px; height: 17px; color: var(--teal-dark); stroke-width: 2.5; }
.services-hero-media { position: relative; min-height: 560px; overflow: hidden; }
.services-hero-media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(255,255,255,.38), transparent 24%); pointer-events: none; }
.services-hero-media img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.services-floating-card {
  position: absolute;
  right: 30px;
  bottom: 30px;
  z-index: 2;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  align-items: center;
  max-width: 330px;
  padding: 17px 20px;
  border-radius: 13px;
  background: rgba(255,255,255,.95);
  box-shadow: var(--shadow);
  backdrop-filter: blur(8px);
}
.services-floating-icon { display: grid; place-items: center; width: 48px; height: 48px; border-radius: 50%; color: #fff; background: var(--teal); }
.services-floating-icon svg { width: 26px; height: 26px; }
.services-floating-card strong { display: block; color: var(--navy); font-size: 15px; }
.services-floating-card span { display: block; margin-top: 2px; color: var(--muted); font-size: 12px; }

.services-overview { background: linear-gradient(180deg, #f5fafc 0%, #fff 100%); }
.services-card-grid { max-width: 1260px; margin: 0 auto; display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.service-card {
  min-height: 265px;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fff;
  box-shadow: var(--shadow-soft);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.service-card:hover { transform: translateY(-7px); border-color: rgba(0,153,165,.45); box-shadow: var(--shadow); }
.service-card-icon { display: grid; place-items: center; width: 58px; height: 58px; margin-bottom: 20px; border-radius: 15px; color: var(--teal-dark); background: var(--teal-light); }
.service-card-icon svg { width: 31px; height: 31px; }
.service-card h3 { margin: 0 0 10px; color: var(--navy); font-size: 20px; }
.service-card p { margin: 0 0 20px; color: var(--muted); font-size: 14px; }
.service-card > span { display: inline-flex; align-items: center; gap: 7px; color: var(--teal-dark); font-size: 13px; font-weight: 800; }
.service-card > span svg { width: 16px; height: 16px; transition: transform .2s ease; }
.service-card:hover > span svg { transform: translateX(4px); }

.service-detail {
  max-width: 1260px;
  margin: 0 auto;
  padding: 84px 34px;
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(0, 1.05fr);
  gap: 66px;
  align-items: center;
}
.service-detail-reverse .service-detail-media { order: 2; }
.service-detail-reverse .service-detail-copy { order: 1; }
.service-detail-media { min-height: 480px; overflow: hidden; border-radius: 24px; box-shadow: var(--shadow); }
.service-detail-media img { width: 100%; height: 100%; min-height: 480px; object-fit: cover; object-position: center; }
.service-detail-copy h2 { margin: 8px 0 18px; color: var(--navy); font-size: clamp(34px, 4vw, 50px); line-height: 1.08; letter-spacing: -.035em; }
.service-detail-copy > p { margin: 0 0 24px; color: var(--muted); font-size: 17px; }
.service-kicker { color: var(--teal-dark); font-size: 13px; font-weight: 900; text-transform: uppercase; letter-spacing: .08em; }
.service-bullets { list-style: none; padding: 0; margin: 0 0 30px; display: grid; gap: 15px; }
.service-bullets li { display: grid; grid-template-columns: 28px 1fr; gap: 10px; color: var(--muted); }
.service-bullets li > svg { width: 22px; height: 22px; padding: 4px; border-radius: 50%; color: #fff; background: var(--teal); stroke-width: 2.6; }
.service-bullets strong { color: var(--navy); }
.service-feature-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 15px; margin: 28px 0 30px; }
.service-feature-grid > div { padding: 18px; border: 1px solid var(--line); border-radius: 13px; background: #fbfdfe; }
.service-feature-grid svg { width: 26px; height: 26px; margin-bottom: 10px; color: var(--teal-dark); }
.service-feature-grid strong, .service-feature-grid span { display: block; }
.service-feature-grid strong { margin-bottom: 4px; color: var(--navy); font-size: 14px; }
.service-feature-grid span { color: var(--muted); font-size: 12px; }
.service-button-small { min-width: 0; }

.hearing-test-section { color: #fff; background: var(--brand-bg); }
.hearing-test-inner { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1.2fr .8fr; gap: 70px; align-items: center; }
.hearing-test-copy h2 { margin: 8px 0 16px; font-size: clamp(35px, 4vw, 50px); line-height: 1.08; letter-spacing: -.035em; }
.hearing-test-copy > p { max-width: 660px; margin: 0 0 22px; color: rgba(255,255,255,.86); }
.hearing-test-section .service-kicker { color: #bff8fb; }
.hearing-test-list { display: grid; gap: 11px; margin-bottom: 28px; }
.hearing-test-list li { display: flex; gap: 10px; color: rgba(255,255,255,.94); }
.hearing-test-list svg { flex: 0 0 20px; width: 20px; height: 20px; color: #bff8fb; stroke-width: 2.6; }
.hearing-test-visual { padding: 42px; border: 1px solid rgba(255,255,255,.22); border-radius: 22px; background: rgba(255,255,255,.09); text-align: center; }
.hearing-test-circle { display: grid; place-items: center; width: 112px; height: 112px; margin: 0 auto 24px; border: 12px solid rgba(255,255,255,.14); border-radius: 50%; color: var(--brand-bg); background: #fff; }
.hearing-test-circle svg { width: 58px; height: 58px; }
.hearing-test-visual strong { display: block; font-size: 20px; line-height: 1.35; }
.hearing-test-visual span { display: block; margin-top: 12px; color: rgba(255,255,255,.78); font-size: 14px; }

.included-section { background: #f4f9fb; }
.included-grid { max-width: 1240px; margin: 0 auto; display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.included-card { position: relative; min-height: 255px; padding: 28px; overflow: hidden; border-radius: 17px; background: #fff; box-shadow: var(--shadow-soft); }
.included-card > span { position: absolute; right: 16px; top: 8px; color: rgba(0,123,135,.10); font-size: 66px; font-weight: 900; line-height: 1; }
.included-card > svg { width: 34px; height: 34px; margin-bottom: 34px; color: var(--teal-dark); }
.included-card h3 { margin: 0 0 10px; color: var(--navy); font-size: 19px; }
.included-card p { margin: 0; color: var(--muted); font-size: 14px; }

.services-closing { background: #fff; }
.services-closing-inner { max-width: 1200px; margin: 0 auto; padding: 46px 50px; display: grid; grid-template-columns: 1fr auto; gap: 40px; align-items: center; border: 1px solid var(--line); border-radius: 22px; background: linear-gradient(120deg, #fff, #eef9fa); box-shadow: var(--shadow-soft); }
.services-closing h2 { margin: 10px 0 8px; color: var(--navy); font-size: 37px; }
.services-closing p { max-width: 680px; margin: 0; color: var(--muted); }
.services-closing-actions { display: flex; flex-direction: column; gap: 12px; align-items: stretch; }
.services-whatsapp { display: inline-flex; align-items: center; justify-content: center; gap: 8px; color: var(--teal-dark); font-weight: 800; }
.services-whatsapp svg { width: 20px; height: 20px; }

@media (max-width: 1050px) {
  .services-hero { grid-template-columns: 1fr; }
  .services-hero-copy { padding: 58px 36px 44px; }
  .services-hero-media { min-height: 500px; }
  .services-card-grid { grid-template-columns: repeat(2, 1fr); }
  .service-detail, .hearing-test-inner { grid-template-columns: 1fr; gap: 38px; }
  .service-detail-reverse .service-detail-media, .service-detail-reverse .service-detail-copy { order: initial; }
  .service-detail-media, .service-detail-media img { min-height: 420px; }
  .included-grid { grid-template-columns: repeat(2, 1fr); }
  .hearing-test-visual { max-width: 600px; width: 100%; margin: 0 auto; }
}

@media (max-width: 720px) {
  .services-hero-copy { padding: 46px 22px 38px; }
  .services-hero h1 { font-size: 43px; }
  .services-hero-copy > p { font-size: 17px; }
  .services-hero-actions .button { width: 100%; }
  .services-trust { flex-direction: column; gap: 10px; }
  .services-hero-media { min-height: 390px; }
  .services-floating-card { left: 18px; right: 18px; bottom: 18px; max-width: none; }
  .services-card-grid, .included-grid { grid-template-columns: 1fr; }
  .service-detail { padding: 58px 20px; gap: 30px; }
  .service-detail-media, .service-detail-media img { min-height: 330px; }
  .service-feature-grid { grid-template-columns: 1fr; }
  .hearing-test-inner { gap: 30px; }
  .hearing-test-visual { padding: 30px 22px; }
  .services-closing-inner { grid-template-columns: 1fr; padding: 34px 24px; }
  .services-closing h2 { font-size: 31px; }
}

/* ===== V8 ABOUT & HEARING AIDS ===== */
.care-list { display: grid; gap: 14px; margin: 5px 0 22px; }
.care-list > div { display: grid; grid-template-columns: 38px 1fr; gap: 11px; align-items: center; padding: 11px 0; border-bottom: 1px solid var(--line); }
.care-list > div:last-child { border-bottom: 0; }
.care-list svg { width: 24px; height: 24px; color: var(--teal-dark); }
.care-list span { color: var(--muted); font-size: 13px; }
.care-list strong { color: var(--navy); }

.about-hero { max-width: var(--container); margin: 0 auto; display: grid; grid-template-columns: 52% 48%; min-height: 590px; background: linear-gradient(120deg,#fff 0%,#f0fafb 100%); overflow: hidden; }
.about-hero-copy { display: flex; flex-direction: column; justify-content: center; padding: 70px 56px; }
.about-hero h1 { margin: 0; color: var(--navy); font-size: clamp(48px,5.4vw,76px); line-height: 1.02; letter-spacing: -.045em; }
.about-hero-copy > p { max-width: 680px; margin: 24px 0 29px; color: var(--muted); font-size: 19px; }
.about-hero-actions { display: flex; flex-direction: column; align-items: flex-start; gap: 14px; }
.about-hero-media { position: relative; min-height: 590px; overflow: hidden; }
.about-hero-media::after { content:""; position:absolute; inset:0; background:linear-gradient(90deg,rgba(255,255,255,.28),transparent 24%); pointer-events:none; }
.about-hero-media img { width:100%; height:100%; object-fit:cover; object-position:center; }
.about-rating-card { position:absolute; right:28px; bottom:28px; z-index:2; display:grid; grid-template-columns:auto auto; gap:3px 11px; align-items:center; padding:17px 20px; border-radius:14px; background:rgba(255,255,255,.95); box-shadow:var(--shadow); }
.about-rating-card strong { color:var(--navy); font-size:25px; }
.about-rating-card small { grid-column:1/-1; color:var(--muted); }
.about-intro { background:#fff; }
.about-intro-grid { max-width:1200px; margin:0 auto; display:grid; grid-template-columns:1.2fr .8fr; gap:66px; align-items:center; }
.about-intro-copy h2 { margin:8px 0 20px; color:var(--navy); font-size:clamp(36px,4vw,52px); line-height:1.08; letter-spacing:-.035em; }
.about-intro-copy p { color:var(--muted); font-size:17px; }
.about-quote { padding:42px; border-radius:22px; color:#fff; background:var(--brand-bg); box-shadow:var(--shadow); }
.about-quote > svg { width:48px; height:48px; margin-bottom:28px; color:#bff8fb; }
.about-quote blockquote { margin:0 0 22px; font-size:24px; line-height:1.4; font-weight:700; }
.about-quote span { color:rgba(255,255,255,.72); font-size:13px; text-transform:uppercase; letter-spacing:.08em; }
.about-values { background:linear-gradient(180deg,#f4fafb,#fff); }
.about-values-grid { max-width:1240px; margin:0 auto; display:grid; grid-template-columns:repeat(4,1fr); gap:20px; }
.about-value-card { min-height:260px; padding:30px; border:1px solid var(--line); border-radius:18px; background:#fff; box-shadow:var(--shadow-soft); }
.about-value-card > div { display:grid; place-items:center; width:58px; height:58px; margin-bottom:25px; border-radius:16px; color:var(--teal-dark); background:var(--teal-light); }
.about-value-card svg { width:31px; height:31px; }
.about-value-card h3 { margin:0 0 10px; color:var(--navy); font-size:21px; }
.about-value-card p { margin:0; color:var(--muted); font-size:14px; }
.about-method { max-width:1260px; margin:0 auto; display:grid; grid-template-columns:.95fr 1.05fr; gap:66px; align-items:center; }
.about-method-media { min-height:500px; overflow:hidden; border-radius:24px; box-shadow:var(--shadow); }
.about-method-media img { width:100%; height:100%; min-height:500px; object-fit:cover; }
.about-method-copy h2 { margin:8px 0 20px; color:var(--navy); font-size:clamp(36px,4vw,52px); line-height:1.08; letter-spacing:-.035em; }
.about-numbers { max-width:1200px; margin:0 auto; display:grid; grid-template-columns:repeat(4,1fr); gap:1px; padding-top:30px; padding-bottom:70px; }
.about-number { padding:34px 25px; text-align:center; border-right:1px solid var(--line); }
.about-number:last-child { border-right:0; }
.about-number strong { display:block; color:var(--teal-dark); font-size:42px; line-height:1; }
.about-number span { display:block; margin-top:10px; color:var(--muted); font-size:14px; }

.hearing-aids-hero { max-width:var(--container); margin:0 auto; display:grid; grid-template-columns:54% 46%; min-height:590px; background:linear-gradient(135deg,#fff 0%,#f0fafb 100%); overflow:hidden; }
.hearing-aids-copy { display:flex; flex-direction:column; justify-content:center; padding:70px 58px; }
.hearing-aids-copy h1 { margin:0; color:var(--navy); font-size:clamp(49px,5.5vw,78px); line-height:1.01; letter-spacing:-.045em; }
.hearing-aids-copy > p { max-width:650px; margin:24px 0 28px; color:var(--muted); font-size:19px; }
.hearing-aids-visual { position:relative; display:grid; place-items:center; min-height:590px; overflow:hidden; background:radial-gradient(circle at center,#dff5f7 0,#effafb 46%,#fff 72%); }
.aid-device { position:relative; z-index:3; display:grid; place-items:center; width:210px; height:210px; border:22px solid rgba(255,255,255,.92); border-radius:50%; color:#fff; background:var(--brand-bg); box-shadow:0 28px 70px rgba(0,123,135,.25); }
.aid-device svg { width:112px; height:112px; }
.aid-orbit { position:absolute; border:1px solid rgba(0,123,135,.18); border-radius:50%; }
.aid-orbit-one { width:360px; height:360px; }
.aid-orbit-two { width:500px; height:500px; }
.aid-feature { position:absolute; z-index:4; display:flex; align-items:center; gap:11px; padding:15px 18px; border-radius:13px; color:var(--navy); background:#fff; box-shadow:var(--shadow-soft); font-weight:800; font-size:13px; }
.aid-feature svg { width:25px; height:25px; color:var(--teal-dark); }
.aid-feature-top { top:105px; right:45px; }
.aid-feature-bottom { bottom:100px; left:38px; }
.hearing-aids-intro { background:#fff; }
.hearing-aids-intro-grid { max-width:1240px; margin:0 auto; display:grid; grid-template-columns:repeat(4,1fr); gap:20px; }
.hearing-aids-point { position:relative; min-height:230px; padding:31px 27px; overflow:hidden; border:1px solid var(--line); border-radius:17px; background:#fff; box-shadow:var(--shadow-soft); }
.hearing-aids-point > span { position:absolute; right:15px; top:4px; color:rgba(0,123,135,.09); font-size:68px; font-weight:900; line-height:1; }
.hearing-aids-point h3 { position:relative; margin:36px 0 10px; color:var(--navy); font-size:20px; }
.hearing-aids-point p { position:relative; margin:0; color:var(--muted); font-size:14px; }
.hearing-formats { background:linear-gradient(180deg,#f4fafb,#fff); }
.hearing-format-grid { max-width:1200px; margin:0 auto; display:grid; grid-template-columns:repeat(3,1fr); gap:24px; align-items:stretch; }
.hearing-format-card { padding:34px; border:1px solid var(--line); border-radius:21px; background:#fff; box-shadow:var(--shadow-soft); }
.hearing-format-card.featured { transform:translateY(-12px); border:2px solid var(--teal); }
.hearing-format-icon { display:grid; place-items:center; width:72px; height:72px; margin-bottom:25px; border-radius:50%; color:var(--teal-dark); background:var(--teal-light); }
.hearing-format-icon svg { width:39px; height:39px; }
.hearing-format-card h3 { margin:0 0 12px; color:var(--navy); font-size:22px; }
.hearing-format-card p { min-height:88px; margin:0 0 20px; color:var(--muted); font-size:14px; }
.hearing-format-card > span { display:block; padding-top:17px; border-top:1px solid var(--line); color:var(--teal-dark); font-size:13px; font-weight:800; }
.technology-section { max-width:1250px; margin:0 auto; display:grid; grid-template-columns:1.2fr .8fr; gap:60px; align-items:center; }
.technology-copy h2 { margin:8px 0 18px; color:var(--navy); font-size:clamp(36px,4vw,52px); line-height:1.08; letter-spacing:-.035em; }
.technology-copy > p { color:var(--muted); font-size:17px; }
.technology-grid { display:grid; grid-template-columns:1fr 1fr; gap:15px; margin-top:28px; }
.technology-grid > div { padding:19px; border:1px solid var(--line); border-radius:14px; background:#fbfdfe; }
.technology-grid svg { width:28px; height:28px; margin-bottom:10px; color:var(--teal-dark); }
.technology-grid strong,.technology-grid span { display:block; }
.technology-grid strong { margin-bottom:4px; color:var(--navy); font-size:14px; }
.technology-grid span { color:var(--muted); font-size:12px; }
.technology-panel { padding:45px; border-radius:22px; color:#fff; background:var(--brand-bg); box-shadow:var(--shadow); }
.technology-panel-icon { display:grid; place-items:center; width:76px; height:76px; margin-bottom:25px; border-radius:50%; color:var(--brand-bg); background:#fff; }
.technology-panel-icon svg { width:42px; height:42px; }
.technology-panel h3 { margin:0 0 14px; font-size:26px; line-height:1.25; }
.technology-panel p { margin:0; color:rgba(255,255,255,.82); }
.adaptation-section { background:#f4f9fb; }
.adaptation-steps { max-width:1100px; margin:0 auto; display:grid; grid-template-columns:1fr 1fr; gap:20px; }
.adaptation-step { display:grid; grid-template-columns:62px 1fr; gap:18px; align-items:flex-start; padding:27px; border-radius:17px; background:#fff; box-shadow:var(--shadow-soft); }
.adaptation-step > span { display:grid; place-items:center; width:52px; height:52px; border-radius:50%; color:#fff; background:var(--teal-dark); font-size:20px; font-weight:900; }
.adaptation-step h3 { margin:2px 0 7px; color:var(--navy); font-size:19px; }
.adaptation-step p { margin:0; color:var(--muted); font-size:14px; }
.hearing-followup { max-width:1260px; margin:0 auto; display:grid; grid-template-columns:.95fr 1.05fr; gap:66px; align-items:center; }
.hearing-followup-media { min-height:500px; overflow:hidden; border-radius:24px; box-shadow:var(--shadow); }
.hearing-followup-media img { width:100%; height:100%; min-height:500px; object-fit:cover; }
.hearing-followup-copy h2 { margin:8px 0 18px; color:var(--navy); font-size:clamp(36px,4vw,52px); line-height:1.08; letter-spacing:-.035em; }
.hearing-followup-copy > p { color:var(--muted); font-size:17px; }

@media (max-width:1050px) {
  .about-hero,.hearing-aids-hero { grid-template-columns:1fr; }
  .about-hero-copy,.hearing-aids-copy { padding:58px 36px 44px; }
  .about-hero-media,.hearing-aids-visual { min-height:500px; }
  .about-intro-grid,.about-method,.technology-section,.hearing-followup { grid-template-columns:1fr; gap:40px; }
  .about-values-grid,.about-numbers,.hearing-aids-intro-grid { grid-template-columns:repeat(2,1fr); }
  .about-number:nth-child(2) { border-right:0; }
  .hearing-format-grid { grid-template-columns:1fr; max-width:680px; }
  .hearing-format-card.featured { transform:none; }
}
@media (max-width:720px) {
  .about-hero-copy,.hearing-aids-copy { padding:46px 22px 38px; }
  .about-hero h1,.hearing-aids-copy h1 { font-size:43px; }
  .about-hero-copy > p,.hearing-aids-copy > p { font-size:17px; }
  .about-hero-actions .button,.hearing-aids-copy .button { width:100%; }
  .about-hero-media,.hearing-aids-visual { min-height:400px; }
  .about-intro-grid { gap:30px; }
  .about-quote,.technology-panel { padding:30px 24px; }
  .about-quote blockquote { font-size:20px; }
  .about-values-grid,.about-numbers,.hearing-aids-intro-grid,.technology-grid,.adaptation-steps { grid-template-columns:1fr; }
  .about-number { border-right:0; border-bottom:1px solid var(--line); }
  .about-number:last-child { border-bottom:0; }
  .about-method,.hearing-followup { padding-left:20px; padding-right:20px; }
  .about-method-media,.about-method-media img,.hearing-followup-media,.hearing-followup-media img { min-height:340px; }
  .aid-device { width:160px; height:160px; border-width:17px; }
  .aid-device svg { width:82px; height:82px; }
  .aid-orbit-one { width:280px; height:280px; }
  .aid-orbit-two { width:380px; height:380px; }
  .aid-feature { font-size:11px; padding:12px 13px; }
  .aid-feature-top { top:42px; right:15px; }
  .aid-feature-bottom { bottom:42px; left:15px; }
  .hearing-format-card p { min-height:0; }
  .adaptation-step { grid-template-columns:50px 1fr; padding:22px; }
  .adaptation-step > span { width:44px; height:44px; }
}
