:root {
  --blue-bright: #2898ec;
  --blue: #107acc;
  --blue-accessible: #0b6eb8;
  --turquoise: #0cbccc;
  --turquoise-accessible: #087b86;
  --blue-deep: #15297c;
  --navy: #1a2157;
  --white: #fff;
  --surface: #f6f8fc;
  --text-muted: #5d6678;
  --text: #17203b;
  --success: #069c68;
  --danger: #bd1e3c;
  --border: #dce5f1;
  --radius-sm: 10px;
  --radius: 18px;
  --radius-lg: 28px;
  --shadow-sm: 0 8px 24px rgba(21, 41, 124, .08);
  --shadow: 0 18px 50px rgba(21, 41, 124, .14);
  --container: 1180px;
  --header-height: 82px;
  --transition: 180ms ease;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 110px;
}

body {
  margin: 0;
  color: var(--text);
  background: var(--white);
  font-family: Inter, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}

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

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

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

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

:focus-visible {
  outline: 3px solid var(--turquoise);
  outline-offset: 3px;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  color: var(--navy);
  font-weight: 800;
  line-height: 1.15;
  text-wrap: balance;
}

h1 {
  font-size: clamp(2.4rem, 5vw, 4.5rem);
  letter-spacing: -.045em;
}

h2 {
  margin-bottom: .75rem;
  font-size: clamp(2rem, 3.8vw, 3.15rem);
  letter-spacing: -.035em;
}

h3 {
  font-size: 1.05rem;
}

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

.section {
  padding: 96px 0;
}

.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;
  z-index: 999;
  top: 10px;
  left: 10px;
  padding: 12px 18px;
  color: var(--white);
  background: var(--navy);
  border-radius: var(--radius-sm);
  transform: translateY(-150%);
}

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

.eyebrow {
  margin-bottom: .55rem;
  color: var(--blue-accessible);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.eyebrow--light {
  color: #69e4ed;
}

.section-heading {
  max-width: 760px;
  margin: 0 auto 44px;
  text-align: center;
}

.section-heading p:last-child {
  max-width: 650px;
  margin: 0 auto;
  color: var(--text-muted);
}

.section-heading--left {
  margin-left: 0;
  text-align: left;
}

.section-heading--left p:last-child {
  margin-left: 0;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 12px 22px;
  border: 2px solid var(--blue-accessible);
  border-radius: 10px;
  color: var(--white);
  background: linear-gradient(135deg, var(--blue-accessible), #0967ad);
  box-shadow: 0 8px 20px rgba(16, 122, 204, .22);
  font-weight: 800;
  line-height: 1.2;
  cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
}

.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(16, 122, 204, .3);
}

.button svg {
  width: 21px;
  height: 21px;
  fill: currentColor;
}

.button--small {
  min-height: 42px;
  padding: 9px 16px;
  font-size: .88rem;
}

.button--whatsapp {
  border-color: var(--turquoise-accessible);
  background: var(--turquoise-accessible);
}

.button--whatsapp-alt {
  border-color: var(--blue-deep);
  background: var(--blue-deep);
}

.button--outline-light {
  border-color: rgba(255, 255, 255, .8);
  color: var(--white);
  background: transparent;
  box-shadow: none;
}

.button--outline-dark {
  border-color: var(--blue-deep);
  color: var(--blue-deep);
  background: transparent;
  box-shadow: none;
}

.button--light {
  border-color: var(--white);
  color: var(--blue-deep);
  background: var(--white);
}

.button--secondary {
  border-color: var(--turquoise-accessible);
  background: var(--turquoise-accessible);
}

.topbar {
  position: relative;
  z-index: 20;
  color: var(--white);
  background: var(--navy);
  font-size: .78rem;
}

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

.topbar a,
.topbar p {
  display: flex;
  align-items: center;
  gap: 7px;
  margin: 0;
}

.topbar a {
  font-weight: 700;
}

.topbar a:hover {
  color: #70f1ea;
}

.topbar svg {
  width: 16px;
  height: 16px;
  flex: 0 0 auto;
  fill: var(--turquoise);
}

.topbar__phones {
  display: flex;
  align-items: center;
  gap: 7px;
}

.site-header {
  position: sticky;
  z-index: 15;
  top: 0;
  background: rgba(255, 255, 255, .97);
  border-bottom: 1px solid rgba(21, 41, 124, .08);
  box-shadow: 0 4px 18px rgba(21, 41, 124, .05);
  backdrop-filter: blur(12px);
}

.header__inner {
  display: flex;
  min-height: var(--header-height);
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--blue-deep);
  font-size: .92rem;
  font-weight: 650;
  line-height: 1.25;
}

.brand img {
  width: 58px;
  height: 58px;
  object-fit: contain;
  border-radius: 12px;
}

.brand strong {
  font-size: 1rem;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: clamp(14px, 2.2vw, 28px);
}

.main-nav > a:not(.button) {
  position: relative;
  padding: 28px 0 26px;
  color: var(--navy);
  font-size: .83rem;
  font-weight: 800;
  text-transform: uppercase;
}

.main-nav > a:not(.button)::after {
  position: absolute;
  right: 0;
  bottom: 18px;
  left: 0;
  height: 3px;
  background: var(--blue);
  border-radius: 3px;
  content: "";
  transform: scaleX(0);
  transition: transform var(--transition);
}

.main-nav > a:hover::after,
.main-nav > a.is-active::after {
  transform: scaleX(1);
}

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

.menu-toggle span:not(.sr-only) {
  display: block;
  width: 24px;
  height: 3px;
  margin: 4px auto;
  background: var(--blue-deep);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}

.hero {
  position: relative;
  min-height: 590px;
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 85% 15%, rgba(12, 188, 204, .58), transparent 32%),
    linear-gradient(120deg, #0b1b5a 0%, var(--blue-deep) 48%, var(--blue) 100%);
}

.hero::before {
  position: absolute;
  width: 540px;
  height: 540px;
  top: -270px;
  right: 12%;
  border: 1px solid rgba(255, 255, 255, .15);
  border-radius: 50%;
  content: "";
}

.hero__grid {
  display: grid;
  min-height: 590px;
  align-items: center;
  grid-template-columns: .9fr 1.1fr;
}

.hero__content {
  position: relative;
  z-index: 2;
  padding: 72px 0 76px;
}

.hero h1 {
  max-width: 680px;
  margin-bottom: 24px;
  color: var(--white);
}

.hero h1 span {
  color: #30d6dd;
}

.hero__lead {
  max-width: 650px;
  margin-bottom: 30px;
  color: rgba(255, 255, 255, .9);
  font-size: 1.12rem;
}

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

.hero__support {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, .9);
  font-weight: 650;
}

.hero__support svg {
  width: 24px;
  height: 24px;
  fill: var(--turquoise);
}

.hero__visual {
  position: relative;
  width: calc(100% + 80px);
  align-self: stretch;
}

.hero__visual::after {
  position: absolute;
  inset: 0 auto 0 0;
  width: 18%;
  background: linear-gradient(90deg, var(--blue-deep), transparent);
  content: "";
}

.hero__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.trust-strip {
  position: relative;
  z-index: 3;
  padding: 26px 0;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
}

.trust-card {
  display: grid;
  min-width: 0;
  grid-template-columns: 42px 1fr;
  gap: 12px;
  padding: 8px 20px;
  border-right: 1px solid var(--border);
}

.trust-card:first-child {
  padding-left: 0;
}

.trust-card:last-child {
  padding-right: 0;
  border-right: 0;
}

.trust-card > svg {
  width: 38px;
  height: 38px;
  fill: var(--blue);
}

.trust-card:nth-child(5) > svg {
  fill: var(--turquoise);
}

.trust-card h3 {
  margin-bottom: 5px;
  color: var(--blue-deep);
  font-size: .88rem;
}

.trust-card p {
  margin: 0;
  color: var(--text-muted);
  font-size: .72rem;
  line-height: 1.45;
}

.products-section {
  padding-bottom: 76px;
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.category-card {
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.category-card:hover {
  border-color: rgba(16, 122, 204, .35);
  box-shadow: var(--shadow);
  transform: translateY(-5px);
}

.category-card img {
  width: 100%;
  height: auto;
  aspect-ratio: 14 / 9;
  padding: 6px;
  background: #f9fbff;
  object-fit: cover;
  object-position: center;
}

.category-card > div {
  display: flex;
  min-height: 76px;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 16px 18px;
}

.category-card h3 {
  margin: 0;
  font-size: 1rem;
}

.category-card a {
  flex: 0 0 auto;
  color: #0b6eb8;
  font-size: .78rem;
  font-weight: 800;
}

.catalog-section {
  background:
    linear-gradient(180deg, rgba(40, 152, 236, .04), transparent 35%),
    var(--surface);
}

.catalog-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 16px;
}

.filter-button {
  min-height: 42px;
  padding: 8px 16px;
  border: 1px solid var(--border);
  border-radius: 999px;
  color: var(--blue-deep);
  background: var(--white);
  font-weight: 750;
  cursor: pointer;
  transition: color var(--transition), background var(--transition), border-color var(--transition);
}

.filter-button:hover,
.filter-button.is-active {
  border-color: var(--blue-accessible);
  color: var(--white);
  background: var(--blue-accessible);
}

.catalog-status {
  min-height: 26px;
  margin-bottom: 14px;
  color: var(--text-muted);
  font-size: .88rem;
}

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

.catalog-empty {
  padding: 28px;
  margin: 0;
  color: var(--text-muted);
  text-align: center;
  background: var(--white);
  border: 1px dashed var(--border);
  border-radius: var(--radius);
  grid-column: 1 / -1;
}

.product-card {
  display: flex;
  overflow: hidden;
  min-width: 0;
  flex-direction: column;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 15px;
  box-shadow: 0 5px 18px rgba(21, 41, 124, .06);
}

.product-card[hidden] {
  display: none;
}

.product-card__image {
  position: relative;
  padding: 12px;
  background: #fff;
  border-bottom: 1px solid #edf1f7;
}

.product-card img {
  width: 100%;
  height: auto;
  aspect-ratio: 1 / .83;
  object-fit: contain;
}

.product-card__body {
  display: flex;
  flex: 1;
  flex-direction: column;
  align-items: flex-start;
  padding: 15px;
}

.product-card__category {
  margin-bottom: 5px;
  color: var(--blue-accessible);
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .07em;
  text-transform: uppercase;
}

.product-card h3 {
  margin-bottom: 14px;
  font-size: .95rem;
}

.product-card__quote {
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  gap: 7px;
  margin-top: auto;
  color: var(--blue-deep);
  font-size: .8rem;
  font-weight: 800;
}

.product-card__quote svg {
  width: 17px;
  height: 17px;
  fill: var(--turquoise);
}

.catalog-more {
  display: flex;
  margin: 30px auto 0;
}

.audience-section {
  padding: 80px 0;
  background:
    radial-gradient(circle at 50% 0, rgba(12, 188, 204, .12), transparent 50%),
    #f4fbff;
}

.audience-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 14px;
}

.audience-grid article {
  min-width: 0;
  padding: 24px 10px 18px;
  text-align: center;
  background: var(--white);
  border: 1px solid rgba(16, 122, 204, .12);
  border-radius: 14px;
  box-shadow: var(--shadow-sm);
}

.audience-grid svg {
  width: 40px;
  height: 40px;
  margin-bottom: 12px;
  fill: var(--blue-deep);
}

.audience-grid h3 {
  margin: 0;
  font-size: .82rem;
}

.personalization-section {
  color: var(--white);
  background:
    radial-gradient(circle at 80% 15%, rgba(12, 188, 204, .35), transparent 30%),
    linear-gradient(130deg, var(--navy), var(--blue-deep) 60%, var(--blue));
}

.personalization-grid {
  display: grid;
  align-items: center;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
}

.personalization-gallery {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 14px;
}

.personalization-gallery img {
  width: 100%;
  height: 210px;
  object-fit: cover;
  border: 6px solid var(--white);
  border-radius: 18px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, .22);
}

.personalization-gallery .gallery-main {
  height: 100%;
  grid-row: span 2;
}

.personalization-content h2,
.personalization-content h3 {
  color: var(--white);
}

.personalization-content > p:not(.eyebrow) {
  color: rgba(255, 255, 255, .82);
}

.technique-list {
  display: grid;
  margin: 28px 0 30px;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.technique-list article {
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 11px;
}

.technique-list span {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  color: var(--navy);
  background: var(--turquoise);
  border-radius: 50%;
  font-size: .72rem;
  font-weight: 900;
}

.technique-list h3 {
  margin-bottom: 4px;
  font-size: .95rem;
}

.technique-list p {
  margin: 0;
  color: rgba(255, 255, 255, .72);
  font-size: .8rem;
}

.process-section {
  padding-bottom: 110px;
}

.process-list {
  position: relative;
  display: grid;
  margin: 0;
  padding: 0;
  grid-template-columns: repeat(4, 1fr);
  list-style: none;
}

.process-list::before {
  position: absolute;
  top: 49px;
  right: 12.5%;
  left: 12.5%;
  height: 2px;
  background: linear-gradient(90deg, var(--blue), var(--turquoise));
  content: "";
}

.process-list li {
  position: relative;
  padding: 0 26px;
  text-align: center;
}

.process-list > li > svg {
  position: relative;
  z-index: 2;
  display: block;
  width: 78px;
  height: 78px;
  padding: 20px;
  margin: 10px auto 22px;
  fill: var(--blue-deep);
  background: var(--white);
  border: 2px solid var(--blue);
  border-radius: 50%;
  box-shadow: 0 0 0 8px var(--white);
}

.process-number {
  position: absolute;
  z-index: 3;
  top: 0;
  left: calc(50% - 50px);
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  color: var(--white);
  background: var(--turquoise-accessible);
  border-radius: 50%;
  font-weight: 900;
}

.process-list h3 {
  margin-bottom: 8px;
}

.process-list p {
  margin: 0;
  color: var(--text-muted);
  font-size: .86rem;
}

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

.about-grid {
  display: grid;
  align-items: center;
  grid-template-columns: .95fr 1.05fr;
  gap: 70px;
}

.about-content > p:not(.eyebrow) {
  color: var(--text-muted);
}

.check-list {
  display: grid;
  gap: 9px;
  padding: 0;
  margin: 26px 0 30px;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 30px;
  font-weight: 650;
}

.check-list li::before {
  position: absolute;
  top: 3px;
  left: 0;
  display: grid;
  width: 21px;
  height: 21px;
  place-items: center;
  color: var(--white);
  background: var(--turquoise);
  border-radius: 50%;
  content: "✓";
  font-size: .72rem;
  font-weight: 900;
}

.about-visual {
  position: relative;
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 16px;
}

.about-visual img {
  width: 100%;
  height: 390px;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.about-visual img:last-child {
  height: 290px;
  align-self: end;
  margin-bottom: -34px;
}

.about-badge {
  position: absolute;
  z-index: 2;
  top: -34px;
  left: -34px;
  display: grid;
  width: 130px;
  height: 130px;
  place-items: center;
  padding: 18px;
  color: var(--white);
  text-align: center;
  background: linear-gradient(145deg, var(--turquoise-accessible), var(--blue-accessible));
  border: 7px solid var(--white);
  border-radius: 50%;
  box-shadow: var(--shadow);
}

.about-badge strong {
  font-size: 2.2rem;
  line-height: 1;
}

.about-badge span {
  font-size: .68rem;
  font-weight: 750;
  line-height: 1.2;
}

.faq-grid {
  display: grid;
  align-items: start;
  grid-template-columns: .75fr 1.25fr;
  gap: 70px;
}

.faq-intro {
  position: sticky;
  top: 120px;
}

.faq-intro > p:not(.eyebrow) {
  color: var(--text-muted);
}

.text-link {
  color: var(--blue-accessible);
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.accordion {
  display: grid;
  gap: 12px;
}

.accordion details {
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 13px;
  box-shadow: 0 5px 18px rgba(21, 41, 124, .05);
}

.accordion summary {
  position: relative;
  padding: 19px 56px 19px 20px;
  color: var(--blue-deep);
  font-weight: 800;
  cursor: pointer;
  list-style: none;
}

.accordion summary::-webkit-details-marker {
  display: none;
}

.accordion summary::after {
  position: absolute;
  top: 50%;
  right: 20px;
  color: var(--blue);
  content: "+";
  font-size: 1.6rem;
  font-weight: 400;
  transform: translateY(-50%);
}

.accordion details[open] summary::after {
  content: "−";
}

.accordion details p {
  padding: 0 20px 20px;
  margin: 0;
  color: var(--text-muted);
}

.quote-section {
  padding: 96px 0;
  background:
    radial-gradient(circle at 15% 40%, rgba(12, 188, 204, .45), transparent 30%),
    linear-gradient(135deg, var(--navy) 0%, var(--blue-deep) 45%, var(--blue) 100%);
}

.quote-grid {
  display: grid;
  align-items: center;
  grid-template-columns: .75fr 1.25fr;
  gap: 60px;
}

.contact-panel {
  color: var(--white);
}

.contact-panel h2 {
  color: var(--white);
}

.contact-panel > p:not(.eyebrow) {
  color: rgba(255, 255, 255, .82);
}

.contact-list {
  display: grid;
  gap: 13px;
  margin: 30px 0;
}

.contact-list a,
.contact-list p {
  display: grid;
  align-items: center;
  margin: 0;
  grid-template-columns: 34px 1fr;
  gap: 12px;
}

.contact-list svg {
  width: 25px;
  height: 25px;
  fill: var(--turquoise);
}

.contact-list span {
  overflow-wrap: anywhere;
  font-weight: 750;
}

.contact-list small {
  display: block;
  color: rgba(255, 255, 255, .65);
  font-weight: 500;
}

.contact-panel > img {
  width: 100%;
  max-height: 230px;
  padding: 5px;
  object-fit: cover;
  border: 1px solid rgba(255, 255, 255, .32);
  border-radius: 18px;
}

.quote-card {
  padding: 38px;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: 0 24px 60px rgba(0, 0, 0, .2);
}

.quote-card__heading {
  display: flex;
  align-items: center;
  gap: 16px;
}

.quote-card__heading h2 {
  margin-bottom: 10px;
  font-size: clamp(1.65rem, 3vw, 2.35rem);
}

.quote-card__heading .eyebrow {
  margin-bottom: 4px;
}

.quote-card__icon {
  display: grid;
  width: 56px;
  height: 56px;
  flex: 0 0 auto;
  place-items: center;
  color: var(--white);
  background: var(--blue-accessible);
  border-radius: 15px;
}

.quote-card__icon svg {
  width: 28px;
  height: 28px;
  fill: currentColor;
}

.quote-card > p {
  color: var(--text-muted);
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-field {
  min-width: 0;
}

.form-field--full {
  grid-column: 1 / -1;
}

.form-field label,
.whatsapp-choice legend {
  display: block;
  margin-bottom: 6px;
  color: var(--navy);
  font-size: .82rem;
  font-weight: 750;
}

.form-field label span {
  color: var(--danger);
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  min-height: 48px;
  padding: 11px 13px;
  color: var(--text);
  background: #fbfcff;
  border: 1px solid #cfd9e7;
  border-radius: 8px;
  transition: border-color var(--transition), box-shadow var(--transition);
}

.form-field textarea {
  min-height: 118px;
  resize: vertical;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(40, 152, 236, .15);
  outline: 0;
}

.form-field [aria-invalid="true"] {
  border-color: var(--danger);
}

.field-error {
  display: block;
  min-height: 18px;
  margin-top: 3px;
  color: var(--danger);
  font-size: .72rem;
}

.consent {
  display: grid;
  align-items: start;
  margin-top: 18px;
  grid-template-columns: 20px 1fr;
  gap: 10px;
  color: var(--text-muted);
  font-size: .82rem;
  cursor: pointer;
}

.consent input {
  width: 18px;
  height: 18px;
  margin-top: 3px;
  accent-color: var(--blue);
}

.whatsapp-choice {
  padding: 0;
  margin: 18px 0 0;
  border: 0;
}

.quote-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.quote-submit {
  width: 100%;
  font-size: .88rem;
}

.privacy-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  margin: 15px 0 0;
  color: var(--text-muted);
  text-align: center;
  font-size: .72rem;
}

.privacy-note svg {
  width: 14px;
  height: 14px;
  fill: var(--text-muted);
}

.form-message {
  padding: 12px 15px;
  margin-bottom: 18px;
  color: #6b1125;
  background: #fff0f3;
  border: 1px solid #f2b7c3;
  border-radius: 8px;
  font-size: .86rem;
}

.site-footer {
  padding: 62px 0 0;
  color: rgba(255, 255, 255, .74);
  background: #0c174a;
}

.footer-grid {
  display: grid;
  padding-bottom: 44px;
  grid-template-columns: 1.35fr 1fr .8fr 1fr;
  gap: 48px;
}

.brand--footer {
  color: var(--white);
}

.footer-brand p,
.footer-grid p,
.footer-grid li {
  font-size: .82rem;
}

.footer-grid h2 {
  margin-bottom: 16px;
  color: var(--white);
  font-size: .92rem;
}

.footer-grid ul {
  display: grid;
  gap: 8px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.footer-grid a:hover {
  color: var(--turquoise);
}

.footer-bottom {
  padding: 18px 0;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, .1);
}

.footer-bottom p {
  margin: 0;
  font-size: .74rem;
}

.floating-whatsapp {
  position: fixed;
  z-index: 12;
  right: 22px;
  bottom: 22px;
}

.floating-whatsapp > button {
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  color: var(--white);
  background: var(--success);
  border: 0;
  border-radius: 50%;
  box-shadow: 0 12px 30px rgba(6, 156, 104, .35);
  cursor: pointer;
}

.floating-whatsapp > button svg {
  width: 31px;
  height: 31px;
  fill: currentColor;
}

.floating-options {
  position: absolute;
  right: 0;
  bottom: 70px;
  width: 220px;
  padding: 16px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 13px;
  box-shadow: var(--shadow);
}

.floating-options p {
  margin-bottom: 10px;
  color: var(--navy);
  font-size: .78rem;
  font-weight: 750;
}

.floating-options a {
  display: block;
  padding: 9px 11px;
  margin-top: 7px;
  color: var(--white);
  text-align: center;
  background: var(--success);
  border-radius: 7px;
  font-size: .82rem;
  font-weight: 800;
}

.svg-sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

.legal-page,
.confirmation-page {
  min-height: calc(100vh - var(--header-height));
  padding: 80px 0;
  background:
    radial-gradient(circle at 85% 5%, rgba(12, 188, 204, .12), transparent 30%),
    var(--surface);
}

.legal-card {
  max-width: 850px;
  padding: 48px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.legal-card h1 {
  font-size: clamp(2.3rem, 5vw, 3.8rem);
}

.legal-card h2 {
  margin-top: 32px;
  font-size: 1.45rem;
}

.legal-card p {
  color: var(--text-muted);
}

.confirmation-page {
  display: grid;
  place-items: center;
  padding-inline: 20px;
}

.confirmation-card {
  width: min(100%, 650px);
  padding: 50px;
  text-align: center;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.confirmation-card > img {
  margin: 0 auto 20px;
  border-radius: 18px;
}

.confirmation-card p:not(.eyebrow) {
  color: var(--text-muted);
}

.confirmation-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 28px;
}

.category-detail {
  padding-bottom: 90px;
  background:
    radial-gradient(circle at 90% 4%, rgba(12, 188, 204, .12), transparent 24%),
    var(--surface);
}

.category-nav {
  display: flex;
  align-items: center;
  gap: 24px;
  color: var(--navy);
  font-size: .84rem;
  font-weight: 800;
}

.category-nav > a:not(.button):hover {
  color: var(--blue-accessible);
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 24px 0;
  color: var(--text-muted);
  font-size: .82rem;
}

.breadcrumbs a {
  color: var(--blue-deep);
  font-weight: 750;
}

.category-detail__hero {
  display: grid;
  align-items: center;
  min-height: 510px;
  padding: 55px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  grid-template-columns: 1.08fr .92fr;
  gap: 55px;
}

.category-detail__hero h1 {
  margin-bottom: 20px;
  font-size: clamp(2.35rem, 5vw, 4.25rem);
}

.category-detail__lead {
  max-width: 650px;
  margin-bottom: 28px;
  color: var(--text-muted);
  font-size: 1.08rem;
}

.category-detail__hero > img {
  width: 100%;
  max-height: 410px;
  aspect-ratio: 6 / 5;
  padding: 18px;
  object-fit: contain;
  background: #f8faff;
  border-radius: var(--radius);
}

.category-products {
  padding: 90px 0 30px;
}

.category-guidance {
  display: grid;
  padding: 44px;
  margin-top: 70px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  grid-template-columns: 1fr 1fr;
  gap: 50px;
}

.category-guidance h2 {
  font-size: clamp(1.55rem, 3vw, 2.2rem);
}

.category-guidance p {
  color: var(--text-muted);
}

.category-footer {
  padding-top: 0;
}

@media (max-width: 1080px) {
  .topbar__location {
    display: none !important;
  }

  .main-nav {
    gap: 15px;
  }

  .main-nav > a:not(.button) {
    font-size: .75rem;
  }

  .hero__grid {
    grid-template-columns: 1fr 1fr;
  }

  .trust-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px 0;
  }

  .trust-card:nth-child(3) {
    border-right: 0;
  }

  .trust-card:nth-child(4) {
    padding-left: 0;
  }

  .category-grid,
  .catalog-grid {
    grid-template-columns: repeat(3, 1fr);
  }

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

  .quote-grid {
    grid-template-columns: .85fr 1.15fr;
    gap: 38px;
  }
}

@media (max-width: 860px) {
  :root {
    --header-height: 72px;
  }

  .topbar__coverage {
    display: none !important;
  }

  .topbar__inner {
    justify-content: center;
  }

  .brand img {
    width: 50px;
    height: 50px;
  }

  .brand {
    font-size: .8rem;
  }

  .brand strong {
    font-size: .86rem;
  }

  .menu-toggle {
    display: block;
  }

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

  .menu-toggle[aria-expanded="true"] span:nth-child(3) {
    opacity: 0;
  }

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

  .main-nav {
    position: fixed;
    z-index: 14;
    top: calc(38px + var(--header-height));
    right: 0;
    left: 0;
    display: flex;
    max-height: 0;
    overflow: hidden;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 0 20px;
    background: var(--white);
    box-shadow: var(--shadow);
    visibility: hidden;
    transition: max-height 250ms ease, padding 250ms ease, visibility 250ms;
  }

  .main-nav.is-open {
    max-height: calc(100vh - 110px);
    padding-top: 14px;
    padding-bottom: 24px;
    visibility: visible;
  }

  .main-nav > a:not(.button) {
    min-height: 48px;
    padding: 14px 4px;
    border-bottom: 1px solid var(--border);
  }

  .main-nav > a:not(.button)::after {
    display: none;
  }

  .main-nav .button {
    margin-top: 14px;
  }

  .hero {
    min-height: 0;
  }

  .hero__grid {
    width: 100%;
    min-height: 0;
    grid-template-columns: 1fr;
  }

  .hero__content {
    width: min(calc(100% - 40px), var(--container));
    padding: 70px 0 40px;
    margin: auto;
  }

  .hero__visual {
    width: 100%;
    height: 390px;
  }

  .hero__visual::after {
    inset: 0 0 auto;
    width: 100%;
    height: 25%;
    background: linear-gradient(180deg, var(--blue-deep), transparent);
  }

  .trust-grid {
    grid-template-columns: 1fr 1fr;
  }

  .trust-card,
  .trust-card:first-child,
  .trust-card:nth-child(4) {
    padding: 12px 18px;
  }

  .trust-card:nth-child(2n) {
    border-right: 0;
  }

  .trust-card:nth-child(3) {
    border-right: 1px solid var(--border);
  }

  .category-grid,
  .catalog-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .personalization-grid,
  .about-grid,
  .faq-grid,
  .quote-grid,
  .category-detail__hero {
    grid-template-columns: 1fr;
  }

  .category-detail__hero {
    padding: 40px;
  }

  .category-detail__hero > img {
    max-height: 360px;
  }

  .personalization-grid,
  .about-grid,
  .faq-grid {
    gap: 50px;
  }

  .personalization-gallery {
    order: 2;
  }

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

  .process-list {
    grid-template-columns: 1fr 1fr;
    gap: 45px 0;
  }

  .process-list::before {
    display: none;
  }

  .faq-intro {
    position: static;
  }

  .contact-panel > img {
    max-width: 600px;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 580px) {
  .container {
    width: min(calc(100% - 28px), var(--container));
  }

  .section {
    padding: 72px 0;
  }

  .topbar {
    font-size: .72rem;
  }

  .header__inner {
    gap: 10px;
  }

  .brand span {
    max-width: 205px;
  }

  .hero__content {
    width: min(calc(100% - 28px), var(--container));
    padding-top: 54px;
  }

  .hero h1 {
    font-size: clamp(2.35rem, 12vw, 3.4rem);
  }

  .hero__lead {
    font-size: 1rem;
  }

  .hero__actions {
    display: grid;
  }

  .hero__actions .button {
    width: 100%;
  }

  .hero__visual {
    height: 290px;
  }

  .trust-grid,
  .category-grid,
  .catalog-grid,
  .technique-list,
  .form-grid,
  .quote-actions,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .trust-card,
  .trust-card:first-child,
  .trust-card:nth-child(4) {
    padding: 14px 0;
    border-right: 0;
    border-bottom: 1px solid var(--border);
  }

  .trust-card:last-child {
    border-bottom: 0;
  }

  .category-grid {
    gap: 14px;
  }

  .category-card > div {
    min-height: 66px;
  }

  .catalog-grid {
    gap: 14px;
  }

  .catalog-filters {
    flex-wrap: nowrap;
    padding-bottom: 10px;
    overflow-x: auto;
    scrollbar-width: thin;
  }

  .filter-button {
    flex: 0 0 auto;
  }

  .audience-grid {
    grid-template-columns: 1fr 1fr;
  }

  .personalization-gallery {
    grid-template-columns: 1fr 1fr;
  }

  .personalization-gallery img {
    height: 160px;
  }

  .personalization-gallery .gallery-main {
    height: 280px;
    grid-column: 1 / -1;
    grid-row: auto;
  }

  .process-list {
    grid-template-columns: 1fr;
  }

  .process-list li {
    padding: 0 10px;
  }

  .about-visual {
    grid-template-columns: 1fr;
  }

  .about-visual img,
  .about-visual img:last-child {
    height: 270px;
    margin: 0;
  }

  .about-badge {
    top: -42px;
    left: -6px;
    width: 108px;
    height: 108px;
  }

  .quote-card {
    padding: 26px 18px;
    border-radius: 18px;
  }

  .category-nav {
    gap: 12px;
  }

  .category-nav > a:not(.button) {
    display: none;
  }

  .category-detail__hero,
  .category-guidance {
    padding: 28px 20px;
  }

  .category-guidance {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .legal-card,
  .confirmation-card {
    padding: 32px 20px;
  }

  .quote-card__heading {
    align-items: flex-start;
  }

  .quote-card__icon {
    width: 46px;
    height: 46px;
  }

  .form-field--full {
    grid-column: auto;
  }

  .floating-whatsapp {
    right: 14px;
    bottom: 14px;
  }
}

@media (max-width: 390px) {
  .brand span {
    max-width: 175px;
    font-size: .7rem;
  }

  .brand strong {
    font-size: .76rem;
  }

  .brand img {
    width: 45px;
    height: 45px;
  }

  .topbar__phones span {
    display: none;
  }

  .topbar__phones {
    gap: 14px;
  }

  .audience-grid {
    grid-template-columns: 1fr;
  }
}

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

@media print {
  .topbar,
  .site-header,
  .floating-whatsapp,
  .hero__actions,
  .catalog-filters,
  .catalog-more,
  .quote-section,
  .site-footer {
    display: none !important;
  }
}
