:root {
  --ink: #0b0b0b;
  --ink-soft: #4e595c;
  --green: #03a1b9;
  --green-2: #067e90;
  --lime: #fcc618;
  --lime-soft: #fff1ae;
  --cream: #ffffff;
  --white: #ffffff;
  --line: #d8e4e6;
  --shadow: 0 24px 70px rgba(3, 91, 105, 0.16);
  --radius: 24px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}
button, input { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
a { color: inherit; }
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.skip-link {
  position: fixed;
  left: 18px;
  top: -70px;
  z-index: 100;
  padding: 12px 18px;
  border-radius: 12px;
  color: var(--white);
  background: var(--ink);
  transition: top .2s ease;
}
.skip-link:focus { top: 18px; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(23, 53, 45, .08);
  background: rgba(251, 250, 244, .93);
  backdrop-filter: blur(18px);
}
.nav-wrap {
  display: flex;
  width: min(1180px, calc(100% - 40px));
  min-height: 78px;
  margin: 0 auto;
  align-items: center;
  justify-content: space-between;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}
.brand-logo { display: block; width: 218px; height: auto; }
.main-nav { display: flex; align-items: center; gap: 31px; }
.main-nav a {
  position: relative;
  padding: 8px 0;
  font-size: 14px;
  font-weight: 750;
  text-decoration: none;
}
.main-nav a::after {
  position: absolute;
  right: 0;
  bottom: 2px;
  left: 0;
  height: 2px;
  background: var(--lime);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .2s ease;
}
.main-nav a:hover::after, .main-nav a:focus-visible::after { transform: scaleX(1); transform-origin: left; }
.menu-button { display: none; }

.hero {
  position: relative;
  display: grid;
  min-height: min(790px, calc(100svh - 78px));
  overflow: hidden;
  align-items: center;
  background: #ede8de;
}
.hero-image, .hero-shade { position: absolute; inset: 0; width: 100%; height: 100%; }
.hero-image { object-fit: cover; object-position: center; }
.hero-shade { background: linear-gradient(90deg, rgba(4, 55, 64, .96) 0%, rgba(3, 126, 144, .88) 37%, rgba(3, 161, 185, .18) 68%, rgba(3, 161, 185, 0) 84%); }
.hero-content {
  position: relative;
  z-index: 2;
  width: min(1180px, calc(100% - 40px));
  margin: -42px auto 0;
  color: var(--white);
}
.hero-content > * { max-width: 660px; }
.eyebrow {
  margin: 0 0 14px;
  color: var(--green-2);
  font-size: 13px;
  font-weight: 850;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.eyebrow.light { color: var(--lime); }
.hero h1, .section h2, .closing h2, .query-dialog h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  letter-spacing: -.045em;
  line-height: 1.04;
}
.hero h1 { max-width: 735px; font-size: clamp(3.1rem, 6.1vw, 6.2rem); }
.hero-content > p:not(.eyebrow) { max-width: 580px; margin: 27px 0 0; color: rgba(255,255,255,.85); font-size: 18px; line-height: 1.65; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 34px; }
.button {
  display: inline-flex;
  min-height: 50px;
  padding: 0 23px;
  border: 1px solid transparent;
  border-radius: 999px;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-weight: 800;
  text-decoration: none;
  transition: transform .18s ease, background-color .18s ease, border-color .18s ease;
}
.button:hover { transform: translateY(-2px); }
.button:focus-visible, button:focus-visible, a:focus-visible, input:focus-visible { outline: 3px solid #9db0ff; outline-offset: 3px; }
.button-primary { color: var(--ink); background: var(--lime); }
.button-primary:hover { background: #e3ee62; }
.button-ghost { border-color: rgba(255,255,255,.5); color: var(--white); background: rgba(255,255,255,.08); }
.button-ghost:hover { background: rgba(255,255,255,.16); }
.button-dark { color: var(--white); background: var(--ink); }
.button-outline { border-color: var(--line); color: var(--ink); background: transparent; }
.button:disabled { cursor: not-allowed; opacity: .45; transform: none; }
.hero-proof {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 3;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 21px 0 23px;
  border-top: 1px solid rgba(255,255,255,.25);
  color: rgba(255,255,255,.74);
  font-size: 13px;
  letter-spacing: .01em;
}
.hero-proof span { padding: 0 24px; border-right: 1px solid rgba(255,255,255,.2); }
.hero-proof span:first-child { padding-left: 0; }
.hero-proof span:last-child { border-right: 0; }
.hero-proof strong { display: block; color: var(--white); font-size: 15px; }

.section { width: min(1180px, calc(100% - 40px)); margin: 0 auto; padding: 120px 0; }
.section-heading { max-width: 760px; margin-bottom: 56px; }
.section h2, .closing h2 { font-size: clamp(2.45rem, 5.4vw, 5.1rem); }
.story-grid { display: grid; grid-template-columns: .88fr 1.12fr; gap: 86px; align-items: start; }
.story-copy { padding-top: 4px; }
.story-copy p { margin: 0 0 20px; color: var(--ink-soft); font-size: 17px; }
.story-copy .lead { color: var(--ink); font-size: 22px; line-height: 1.55; }
.principles { border-top: 1px solid var(--line); }
.principles article {
  display: grid;
  grid-template-columns: 54px 140px 1fr;
  gap: 18px;
  padding: 26px 0;
  border-bottom: 1px solid var(--line);
  align-items: baseline;
}
.principles span { color: #8d9d97; font-family: Georgia, serif; font-size: 14px; }
.principles h3 { margin: 0; font-size: 17px; }
.principles p { margin: 0; color: var(--ink-soft); }

.courses { width: 100%; padding-right: max(20px, calc((100% - 1180px) / 2)); padding-left: max(20px, calc((100% - 1180px) / 2)); background: #eefbfc; }
.course-heading { display: flex; max-width: none; align-items: end; justify-content: space-between; gap: 40px; }
.course-heading > div { max-width: 730px; }
.course-heading > p { max-width: 345px; margin: 0 0 7px; color: var(--ink-soft); }
.course-toolbar { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 32px; }
.filter {
  padding: 10px 17px;
  border: 1px solid #cbd5ce;
  border-radius: 999px;
  color: var(--ink);
  background: transparent;
  cursor: pointer;
  font-size: 14px;
  font-weight: 750;
}
.filter:hover, .filter.active { border-color: var(--ink); color: var(--white); background: var(--ink); }
.course-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.course-card {
  position: relative;
  display: flex;
  min-height: 340px;
  padding: 27px;
  border: 1px solid #cfe5e8;
  border-radius: 22px;
  flex-direction: column;
  background: rgba(255,255,255,.66);
  transition: transform .2s ease, box-shadow .2s ease, background-color .2s ease;
}
.course-card:hover { transform: translateY(-4px); box-shadow: 0 18px 45px rgba(3,126,144,.12); }
.course-card.selected { border-color: var(--green); background: var(--white); box-shadow: inset 0 0 0 1px var(--green); }
.course-number { color: #84968f; font-family: Georgia, serif; font-size: 14px; }
.course-tag { align-self: flex-start; margin-top: 26px; padding: 5px 9px; border-radius: 8px; color: var(--green); background: var(--lime-soft); font-size: 11px; font-weight: 850; letter-spacing: .09em; text-transform: uppercase; }
.course-card h3 { margin: 17px 0 9px; font-family: Georgia, serif; font-size: 26px; font-weight: 500; line-height: 1.13; }
.course-card p { margin: 0; color: var(--ink-soft); font-size: 14px; }
.select-course {
  display: inline-flex;
  margin-top: auto;
  padding: 22px 0 0;
  border: 0;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  background: transparent;
  cursor: pointer;
  font-weight: 800;
}
.select-icon { display: grid; width: 25px; height: 25px; border: 1.5px solid #8da098; border-radius: 50%; place-items: center; transition: background-color .2s ease; }
.selected .select-icon { border-color: var(--ink); color: var(--white); background: var(--ink); }
.selection-panel {
  display: grid;
  grid-template-columns: minmax(240px, .9fr) 1.5fr auto;
  gap: 28px;
  margin-top: 24px;
  padding: 25px 27px;
  border-radius: 22px;
  align-items: center;
  color: var(--ink);
  background: var(--green);
}
.selection-label { margin: 0 0 2px; color: var(--ink); font-size: 12px; font-weight: 850; letter-spacing: .14em; text-transform: uppercase; }
.selection-panel h3 { margin: 0; font-size: 20px; }
.selection-panel p:last-child { margin: 4px 0 0; color: rgba(11,11,11,.7); font-size: 13px; }
.selection-list { display: flex; flex-wrap: wrap; gap: 6px; }
.selection-chip { padding: 6px 10px; border: 1px solid rgba(11,11,11,.18); border-radius: 999px; color: var(--ink); background: rgba(255,255,255,.25); font-size: 12px; }
.selection-panel .button-dark { color: var(--ink); background: var(--lime); }

.consulting { position: relative; z-index: 0; display: grid; grid-template-columns: .85fr 1.15fr; gap: 100px; color: var(--white); }
.consulting::before { position: absolute; top: 0; left: 50%; z-index: -1; width: 100vw; height: 760px; margin-top: -120px; background: #0b0b0b; content: ""; transform: translateX(-50%); }
.consulting-intro { position: sticky; top: 120px; align-self: start; }
.consulting h2 { font-size: clamp(2.7rem, 4.8vw, 4.6rem); }
.consulting-intro > p:not(.eyebrow) { max-width: 480px; margin: 26px 0; color: rgba(255,255,255,.75); }
.text-link { padding: 8px 0; border: 0; border-bottom: 1px solid var(--lime); color: var(--white); background: transparent; cursor: pointer; font-weight: 800; }
.text-link span { display: inline-block; margin-left: 8px; color: var(--lime); transition: transform .2s ease; }
.text-link:hover span { transform: translateX(5px); }
.service-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
.service-grid article { min-height: 225px; padding: 26px; border: 1px solid rgba(3,161,185,.45); border-radius: 19px; background: rgba(3,161,185,.08); }
.service-grid article > span { color: var(--lime); }
.service-grid h3 { margin: 43px 0 8px; font-family: Georgia, serif; font-size: 22px; font-weight: 500; }
.service-grid p { margin: 0; color: rgba(255,255,255,.66); font-size: 14px; }

.testimonials { padding-top: 165px; }
.testimonials-heading { display: flex; max-width: none; align-items: end; justify-content: space-between; gap: 50px; }
.testimonials-heading > div { max-width: 770px; }
.testimonials-heading > p { max-width: 365px; margin: 0 0 8px; color: var(--ink-soft); }
.testimonial-quotes { display: grid; grid-template-columns: 1.15fr .85fr; gap: 16px; }
.testimonial-stack { display: grid; gap: 16px; }
.testimonial-card { position: relative; display: flex; min-height: 250px; margin: 0; padding: 34px; border: 1px solid #cfe5e8; border-radius: var(--radius); flex-direction: column; justify-content: space-between; background: #f2fbfc; }
.testimonial-card p { position: relative; margin: 0 0 27px; font-family: Georgia, serif; font-size: clamp(1.35rem, 2.1vw, 2rem); line-height: 1.35; }
.testimonial-card footer { color: var(--ink-soft); font-size: 12px; font-style: normal; font-weight: 850; letter-spacing: .09em; text-transform: uppercase; }
.featured-quote { min-height: 516px; padding: 55px; color: var(--white); background: var(--green-2); }
.featured-quote p { padding-top: 52px; font-size: clamp(1.75rem, 3vw, 2.8rem); line-height: 1.28; }
.featured-quote footer { color: rgba(255,255,255,.72); }
.yellow-card { border-color: #edc322; background: #fff0a9; }
.quote-mark { position: absolute; top: 27px; left: 42px; color: var(--lime); font-family: Georgia, serif; font-size: 88px; line-height: 1; }
.testimonial-gallery-heading { display: flex; margin: 72px 0 25px; align-items: end; justify-content: space-between; gap: 30px; }
.testimonial-gallery-heading h3 { margin: 0; font-family: Georgia, serif; font-size: clamp(2rem, 3.8vw, 3.4rem); font-weight: 500; letter-spacing: -.035em; line-height: 1.08; }
.testimonial-gallery-heading > p { margin: 0 0 6px; color: var(--ink-soft); }
.testimonial-gallery { display: grid; grid-auto-columns: minmax(245px, 27%); grid-auto-flow: column; gap: 13px; padding: 2px 2px 19px; overflow-x: auto; overscroll-behavior-inline: contain; scroll-snap-type: inline mandatory; scrollbar-color: var(--green) #dfecee; }
.testimonial-gallery button { position: relative; padding: 0; border: 0; border-radius: 20px; overflow: hidden; background: var(--white); box-shadow: 0 10px 30px rgba(3,91,105,.1); cursor: zoom-in; scroll-snap-align: start; }
.testimonial-gallery button::after { position: absolute; right: 14px; bottom: 14px; display: grid; width: 38px; height: 38px; border-radius: 50%; place-items: center; color: var(--ink); background: var(--lime); box-shadow: 0 5px 18px rgba(0,0,0,.18); content: "+"; font-size: 24px; font-weight: 500; }
.testimonial-gallery img { display: block; width: 100%; aspect-ratio: 4 / 5; object-fit: cover; transition: transform .25s ease; }
.testimonial-gallery button:hover img { transform: scale(1.025); }

.closing { padding: 100px 20px 110px; text-align: center; color: var(--white); background: var(--green-2); }
.closing h2 { max-width: 900px; margin: 0 auto 33px; }
.site-footer { display: flex; min-height: 150px; padding: 35px max(20px, calc((100% - 1180px) / 2)); align-items: center; gap: 28px; background: #ffffff; color: var(--ink-soft); }
.site-footer p { margin: 0 auto 0 0; }
.site-footer > a:last-child { color: var(--green-2); font-weight: 800; text-decoration-thickness: 1px; text-underline-offset: 4px; }
.footer-logo { width: 200px; }

.query-dialog { width: min(620px, calc(100% - 28px)); padding: 0; border: 0; border-radius: 26px; color: var(--ink); background: transparent; box-shadow: var(--shadow); }
.query-dialog::backdrop { background: rgba(10, 30, 24, .7); backdrop-filter: blur(5px); }
.dialog-card { position: relative; padding: 38px; border-radius: 26px; background: var(--cream); }
.dialog-close { position: absolute; top: 18px; right: 18px; display: grid; width: 38px; height: 38px; border: 1px solid var(--line); border-radius: 50%; place-items: center; color: var(--ink); background: var(--white); cursor: pointer; font-size: 24px; line-height: 1; }
.query-dialog h2 { padding-right: 34px; font-size: 40px; }
.dialog-card > p:not(.eyebrow, .dialog-note) { color: var(--ink-soft); }
.dialog-summary { display: flex; flex-wrap: wrap; gap: 7px; margin: 23px 0; }
.dialog-summary span { padding: 7px 11px; border-radius: 999px; color: var(--green); background: #e6ebdf; font-size: 13px; font-weight: 750; }
.dialog-card label { display: block; margin-bottom: 7px; font-weight: 800; }
.dialog-card label span { color: var(--ink-soft); font-weight: 500; }
.dialog-card input { width: 100%; height: 52px; padding: 0 15px; border: 1px solid var(--line); border-radius: 13px; color: var(--ink); background: var(--white); }
.dialog-actions { display: flex; gap: 9px; margin-top: 20px; }
.dialog-actions .button { flex: 1; }
.dialog-note { margin: 16px 0 0; color: #73847e; font-size: 12px; }
.testimonial-dialog { width: min(680px, calc(100% - 24px)); max-height: calc(100svh - 24px); padding: 0; border: 0; border-radius: 22px; overflow: hidden; background: var(--white); box-shadow: var(--shadow); }
.testimonial-dialog::backdrop { background: rgba(0,0,0,.77); backdrop-filter: blur(5px); }
.testimonial-dialog img { display: block; width: 100%; height: auto; max-height: calc(100svh - 24px); object-fit: contain; }
.testimonial-dialog .dialog-close { z-index: 2; }
.toast { position: fixed; right: 22px; bottom: 22px; z-index: 90; padding: 12px 17px; border-radius: 12px; color: var(--white); background: var(--ink); box-shadow: var(--shadow); opacity: 0; pointer-events: none; transform: translateY(15px); transition: opacity .2s ease, transform .2s ease; }
.toast.show { opacity: 1; transform: translateY(0); }

.contact { display: grid; grid-template-columns: .9fr 1.1fr; gap: 85px; padding: 85px; border-radius: 34px; color: var(--white); background: var(--green-2); }
.contact-copy h2 { margin-bottom: 23px; font-size: clamp(2.5rem, 4.8vw, 4.65rem); }
.contact-copy > p:not(.eyebrow) { max-width: 520px; margin: 0 0 27px; color: rgba(255,255,255,.78); font-size: 17px; }
.contact-copy .button { margin-right: 13px; }
.contact-number { display: inline-block; margin-top: 18px; color: var(--white); font-size: 14px; font-weight: 800; text-underline-offset: 4px; }
.social-cards { display: grid; gap: 12px; align-content: center; }
.social-card { display: grid; min-height: 112px; padding: 22px; border: 1px solid rgba(255,255,255,.22); border-radius: 20px; grid-template-columns: 54px 1fr auto; gap: 17px; align-items: center; color: var(--white); background: rgba(255,255,255,.08); text-decoration: none; transition: transform .18s ease, background-color .18s ease; }
a.social-card:hover { transform: translateX(4px); background: rgba(255,255,255,.14); }
.social-icon { display: grid; width: 52px; height: 52px; border-radius: 16px; place-items: center; color: var(--ink); background: var(--lime); font-size: 16px; font-weight: 900; letter-spacing: -.03em; }
.facebook .social-icon { color: var(--white); background: #1877f2; font-family: Arial, sans-serif; font-size: 30px; }
.instagram .social-icon { color: var(--white); background: linear-gradient(145deg, #6944c5, #d62976 52%, #feda75); }
.domain-card .social-icon { font-size: 12px; letter-spacing: -.06em; }
.social-card strong, .social-card small { display: block; }
.social-card strong { font-size: 18px; }
.social-card small { margin-top: 3px; color: rgba(255,255,255,.7); font-size: 13px; }
.social-arrow { color: var(--lime); font-size: 24px; }
.domain-status { padding: 5px 9px; border: 1px solid rgba(255,255,255,.25); border-radius: 999px; color: rgba(255,255,255,.76); font-size: 11px; font-weight: 800; text-transform: uppercase; }
.whatsapp-float { position: fixed; right: 22px; bottom: 22px; z-index: 70; display: inline-flex; min-height: 56px; padding: 0 19px 0 14px; border-radius: 999px; align-items: center; gap: 9px; color: var(--white); background: #25d366; box-shadow: 0 12px 34px rgba(0,0,0,.23); text-decoration: none; font-weight: 850; transition: transform .18s ease, box-shadow .18s ease; }
.whatsapp-float:hover { transform: translateY(-3px); box-shadow: 0 16px 40px rgba(0,0,0,.28); }
.whatsapp-float svg { width: 30px; height: 30px; }
.footer-links { display: flex; gap: 20px; }
.footer-links a { color: var(--green-2); font-weight: 800; text-underline-offset: 4px; }

@media (max-width: 900px) {
  .hero { min-height: 760px; align-items: start; }
  .hero-content { margin-top: 0; padding-top: 95px; }
  .hero h1 { font-size: clamp(3.05rem, 10vw, 5rem); }
  .hero-image { object-position: 57% center; }
  .hero-shade { background: linear-gradient(90deg, rgba(4,55,64,.96), rgba(3,126,144,.79) 62%, rgba(3,161,185,.22)); }
  .story-grid, .consulting { grid-template-columns: 1fr; gap: 55px; }
  .course-heading, .testimonials-heading { display: block; }
  .course-heading > p, .testimonials-heading > p { max-width: 650px; margin-top: 20px; }
  .course-grid { grid-template-columns: repeat(2, 1fr); }
  .selection-panel { grid-template-columns: 1fr auto; }
  .selection-list { grid-column: 1 / -1; grid-row: 2; }
  .consulting::before { height: 1170px; }
  .consulting-intro { position: static; }
  .testimonials { padding-top: 130px; }
  .testimonial-quotes { grid-template-columns: 1fr; }
  .featured-quote { min-height: 430px; }
  .testimonial-gallery { grid-auto-columns: minmax(245px, 42%); }
  .contact { grid-template-columns: 1fr; gap: 48px; padding: 58px; }
}

@media (max-width: 720px) {
  .nav-wrap { width: min(100% - 28px, 1180px); min-height: 68px; }
  .brand-logo { width: 176px; }
  .menu-button { display: grid; width: 43px; height: 43px; padding: 11px; border: 1px solid var(--line); border-radius: 50%; place-content: center; gap: 4px; background: var(--white); }
  .menu-button > span:not(.sr-only) { display: block; width: 18px; height: 2px; background: var(--ink); }
  .main-nav { position: absolute; top: 68px; right: 14px; left: 14px; display: none; padding: 12px; border: 1px solid var(--line); border-radius: 18px; flex-direction: column; align-items: stretch; gap: 0; background: var(--white); box-shadow: var(--shadow); }
  .main-nav.open { display: flex; }
  .main-nav a { padding: 12px 14px; }
  .main-nav a::after { display: none; }
  .hero { min-height: 745px; }
  .hero-content { width: calc(100% - 32px); padding-top: 72px; }
  .hero h1 { font-size: clamp(2.75rem, 13vw, 4.05rem); }
  .hero-content > p:not(.eyebrow) { margin-top: 20px; font-size: 16px; }
  .hero-actions { margin-top: 27px; }
  .hero-actions .button { width: 100%; }
  .hero-proof { display: none; }
  .hero-image { object-position: 61% center; }
  .hero-shade { background: linear-gradient(90deg, rgba(4,55,64,.97), rgba(3,126,144,.84) 77%, rgba(3,161,185,.5)); }
  .section { width: calc(100% - 32px); padding: 86px 0; }
  .section-heading { margin-bottom: 39px; }
  .section h2, .closing h2 { font-size: clamp(2.35rem, 11vw, 3.5rem); }
  .story-grid { gap: 35px; }
  .principles article { grid-template-columns: 35px 1fr; gap: 8px 12px; }
  .principles p { grid-column: 2; }
  .courses { width: 100%; padding-right: 16px; padding-left: 16px; }
  .course-toolbar { flex-wrap: nowrap; margin-right: -16px; padding-right: 16px; overflow-x: auto; scrollbar-width: none; }
  .course-toolbar::-webkit-scrollbar { display: none; }
  .filter { flex: 0 0 auto; }
  .course-grid { grid-template-columns: 1fr; }
  .course-card { min-height: 310px; }
  .selection-panel { position: sticky; bottom: 10px; z-index: 35; grid-template-columns: 1fr; gap: 13px; padding: 18px; box-shadow: 0 15px 50px rgba(23,53,45,.25); }
  .selection-list { display: none; }
  .selection-panel .button { width: 100%; }
  .consulting { width: 100%; padding-right: 16px; padding-left: 16px; }
  .consulting::before { height: 1630px; margin-top: -86px; }
  .service-grid { grid-template-columns: 1fr; }
  .service-grid article { min-height: 190px; }
  .service-grid h3 { margin-top: 34px; }
  .testimonials { padding-top: 115px; }
  .testimonial-card, .featured-quote { min-height: auto; padding: 30px 25px; }
  .featured-quote p { padding-top: 58px; }
  .quote-mark { left: 20px; }
  .testimonial-gallery-heading { display: block; margin-top: 58px; }
  .testimonial-gallery-heading > p { margin-top: 12px; }
  .testimonial-gallery { grid-auto-columns: minmax(250px, 82%); margin-right: -16px; padding-right: 16px; }
  .contact { width: calc(100% - 24px); padding: 45px 22px; border-radius: 26px; }
  .contact-copy .button { width: 100%; margin-right: 0; }
  .social-card { grid-template-columns: 46px 1fr auto; gap: 12px; padding: 16px; }
  .social-icon { width: 46px; height: 46px; border-radius: 14px; }
  .social-card small { font-size: 12px; line-height: 1.45; }
  .domain-status { display: none; }
  .selection-panel { bottom: 82px; }
  .whatsapp-float { right: 14px; bottom: 15px; width: 58px; height: 58px; min-height: 58px; padding: 0; justify-content: center; }
  .whatsapp-float span { display: none; }
  .closing { padding: 80px 16px 90px; }
  .site-footer { padding: 35px 20px; flex-direction: column; align-items: flex-start; gap: 14px; }
  .site-footer p { margin: 0; }
  .footer-links { flex-wrap: wrap; gap: 12px 18px; }
  .dialog-card { padding: 31px 21px 23px; }
  .query-dialog h2 { font-size: 34px; }
  .dialog-actions { flex-direction: column; }
}

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