:root {
  --ink: #132f38;
  --ink-soft: #315b66;
  --muted: #5d7780;
  --paper: #eef9fa;
  --surface: #ffffff;
  --sage: #dff2f4;
  --jade: #0b7182;
  --jade-dark: #064a59;
  --saffron: #b48643;
  --plum: #0f6070;
  --rose: #3e98a6;
  --line: rgba(6, 74, 89, 0.15);
  --line-strong: rgba(6, 74, 89, 0.28);
  --shadow: 0 24px 70px rgba(6, 74, 89, 0.14);
  --soft-shadow: 0 14px 36px rgba(6, 74, 89, 0.09);
  --radius: 8px;
  --max: 1180px;
  color: var(--ink);
  background: var(--paper);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  font-synthesis: none;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 14% 2%, rgba(95, 189, 199, 0.15), transparent 34vw),
    linear-gradient(180deg, #faffff 0%, #eef9fa 38%, #f9fefe 100%);
}

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

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

button {
  cursor: pointer;
}

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

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

.skip-link {
  position: fixed;
  left: 16px;
  top: 16px;
  z-index: 100;
  transform: translateY(-150%);
  border-radius: var(--radius);
  background: var(--ink);
  color: white;
  padding: 10px 14px;
}

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

.section {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
  padding: 96px 0;
}

.section-band {
  width: min(1340px, calc(100% - 28px));
  margin: 14px auto 0;
}

.site-header {
  position: sticky;
  top: 12px;
  z-index: 50;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 20px;
  width: min(1340px, calc(100% - 28px));
  margin: 0 auto;
  padding: 10px 12px;
  border: 1px solid rgba(255, 255, 255, 0.82);
  border-radius: var(--radius);
  background: rgba(247, 253, 253, 0.86);
  box-shadow: 0 10px 24px rgba(6, 74, 89, 0.09);
  backdrop-filter: blur(18px);
}

.site-header.is-elevated {
  border-color: rgba(6, 74, 89, 0.14);
  box-shadow: var(--soft-shadow);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}

.brand img {
  width: 46px;
  height: 46px;
  object-fit: contain;
}

.brand span {
  display: grid;
  gap: 1px;
}

.brand strong {
  color: var(--ink);
  font-size: 0.98rem;
  font-weight: 850;
  line-height: 1.05;
}

.brand small {
  color: var(--saffron);
  font-size: 0.78rem;
  font-weight: 800;
}

.site-nav {
  display: flex;
  justify-content: center;
  gap: 4px;
}

.site-nav a {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0 12px;
  border-radius: var(--radius);
  color: var(--ink-soft);
  font-size: 0.88rem;
  font-weight: 720;
  transition:
    background 180ms ease,
    color 180ms ease,
    transform 180ms ease;
}

.site-nav a:hover,
.site-nav a.is-active {
  background: rgba(11, 113, 130, 0.12);
  color: var(--jade-dark);
  transform: translateY(-1px);
}

.nav-toggle {
  display: none;
}

.header-cta,
.button,
.floating-whatsapp,
.testimonial-controls button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  border-radius: var(--radius);
  font-weight: 820;
  letter-spacing: 0;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease,
    background 180ms ease;
}

.header-cta,
.button-primary,
.floating-whatsapp {
  border: 1px solid rgba(6, 74, 89, 0.25);
  background: linear-gradient(135deg, var(--jade), var(--jade-dark));
  color: #ffffff;
  box-shadow: 0 14px 28px rgba(6, 74, 89, 0.24);
}

.header-cta {
  padding: 0 15px;
  white-space: nowrap;
  font-size: 0.9rem;
}

.button {
  padding: 0 18px;
}

.button-light {
  border: 1px solid rgba(11, 113, 130, 0.2);
  background: rgba(255, 255, 255, 0.88);
  color: var(--ink);
  box-shadow: var(--soft-shadow);
}

.button-text {
  border: 1px solid transparent;
  color: var(--jade-dark);
  min-height: 42px;
  padding-inline: 10px;
}

.header-cta:hover,
.button:hover,
.floating-whatsapp:hover,
.testimonial-controls button:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 40px rgba(6, 74, 89, 0.18);
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(420px, 0.82fr);
  align-items: center;
  gap: clamp(28px, 5vw, 74px);
  min-height: calc(100svh - 92px);
  padding: clamp(44px, 7vw, 90px);
  overflow: hidden;
  border: 1px solid rgba(6, 74, 89, 0.13);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(228, 246, 248, 0.94)),
    var(--surface);
  box-shadow: var(--shadow);
}

.hero::before {
  display: none;
}

.eyebrow {
  margin: 0 0 13px;
  color: var(--saffron);
  font-size: 0.78rem;
  font-weight: 880;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

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

h1,
h2,
h3 {
  color: var(--ink);
  line-height: 1.04;
  letter-spacing: 0;
}

h1 {
  max-width: 560px;
  margin-bottom: 20px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.38rem, 2.95vw, 2.82rem);
  font-weight: 700;
}

h2 {
  max-width: 790px;
  margin-bottom: 16px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 4.2vw, 4.15rem);
  font-weight: 700;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.04rem;
}

.hero-lede,
.section-heading p,
.split-copy > p,
.contact-copy > p {
  color: var(--ink-soft);
  font-size: clamp(1.02rem, 1.5vw, 1.15rem);
  line-height: 1.72;
}

.support-line,
.promise {
  color: var(--muted);
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin: 30px 0 18px;
}

.portrait-wrap {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(6, 74, 89, 0.14);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.portrait-wrap img {
  width: 100%;
  aspect-ratio: 0.86;
  object-fit: cover;
  object-position: center top;
  transform: scale(1.01);
  transition: transform 700ms ease;
}

.portrait-wrap:hover img {
  transform: scale(1.04);
}

.hero-proof {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 12px;
}

@media (min-width: 1021px) {
  .hero-visual {
    grid-column: 1;
    grid-row: 1;
  }

  .hero-copy {
    grid-column: 2;
    grid-row: 1;
  }
}

.hero-proof span,
.trust-item,
.feature-card,
.choice-card,
.service-card,
.problem-panel,
.product-card,
.testimonial-card,
.faq-item,
.consult-form,
.contact-details,
blockquote {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.86);
  box-shadow: var(--soft-shadow);
}

.hero-proof span {
  padding: 14px;
  color: var(--muted);
  font-size: 0.88rem;
}

.hero-proof strong {
  display: block;
  color: var(--plum);
  font-size: 1.1rem;
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  padding-top: 54px;
  padding-bottom: 54px;
}

.trust-item {
  position: relative;
  display: grid;
  justify-items: center;
  text-align: center;
  padding: 22px;
}

.trust-icon {
  display: inline-grid;
  place-items: center;
  width: 48px;
  height: 48px;
  margin: 0 auto 16px;
  border: 1px solid rgba(11, 113, 130, 0.24);
  border-radius: 50%;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.94), rgba(220, 242, 245, 0.92));
  color: var(--jade);
  font-style: normal;
  font-weight: 900;
  box-shadow: 0 12px 28px rgba(6, 74, 89, 0.1);
}

.trust-icon svg {
  width: 25px;
  height: 25px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.trust-item strong {
  display: block;
  margin-bottom: 8px;
  color: var(--jade-dark);
  font-size: clamp(1.32rem, 2vw, 1.72rem);
}

.trust-item span,
.feature-card p,
.choice-card p,
.service-card p,
.product-card p,
.testimonial-card p,
.faq-answer,
.contact-details,
.site-footer {
  color: var(--muted);
  line-height: 1.65;
}

.section-heading {
  max-width: 820px;
  margin-bottom: 34px;
}

.framework-grid,
.choice-grid,
.service-grid,
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.feature-card,
.choice-card,
.service-card,
.testimonial-card {
  padding: 24px;
}

.feature-card span {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 20px;
  border-radius: var(--radius);
  background: rgba(11, 113, 130, 0.12);
  color: var(--jade);
  font-weight: 900;
}

.split-section,
.contact-section {
  display: grid;
  grid-template-columns: minmax(320px, 0.78fr) minmax(0, 1fr);
  align-items: center;
  gap: clamp(28px, 6vw, 72px);
}

.split-media {
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  background: #ffffff;
}

.split-media img {
  width: 100%;
  height: min(680px, 76vh);
  object-fit: cover;
  object-position: center top;
}

.identity-list,
.pill-list,
.product-tags,
.faq-country-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.identity-list {
  margin: 28px 0;
}

.identity-list span,
.pill-list span,
.product-tags span,
.faq-country-grid span {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  border: 1px solid rgba(11, 113, 130, 0.2);
  border-radius: var(--radius);
  background: rgba(11, 113, 130, 0.08);
  color: var(--jade-dark);
  padding: 8px 11px;
  font-size: 0.9rem;
  font-weight: 750;
}

.education-panel {
  margin: 26px 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(230, 247, 248, 0.76);
  box-shadow: var(--soft-shadow);
  padding: 22px;
}

.education-panel p {
  color: var(--muted);
  line-height: 1.68;
}

.awards-section {
  width: 100%;
  max-width: none;
  padding-left: max(20px, calc((100vw - var(--max)) / 2));
  padding-right: max(20px, calc((100vw - var(--max)) / 2));
  background: rgba(250, 254, 254, 0.96);
}

.awards-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.award-placeholder {
  display: grid;
  place-items: center;
  min-height: 230px;
  border: 1px dashed rgba(11, 113, 130, 0.34);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(228, 247, 248, 0.9), rgba(255, 255, 255, 0.94));
  color: var(--muted);
  box-shadow: var(--soft-shadow);
  font-weight: 820;
}

blockquote {
  margin: 0;
  padding: 24px;
  border-left: 4px solid var(--saffron);
}

blockquote p {
  margin-bottom: 7px;
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.45rem;
}

blockquote cite {
  color: var(--muted);
  font-style: normal;
}

.choose-section,
.products-section,
.faq-section {
  width: 100%;
  max-width: none;
  padding-left: max(20px, calc((100vw - var(--max)) / 2));
  padding-right: max(20px, calc((100vw - var(--max)) / 2));
  background:
    linear-gradient(180deg, rgba(230, 247, 248, 0.78), rgba(250, 254, 254, 0.94));
}

.choice-card {
  position: relative;
  overflow: hidden;
}

.choice-card:nth-child(3n + 1) {
  background: linear-gradient(145deg, rgba(225, 246, 248, 0.95), rgba(255, 255, 255, 0.9));
}

.choice-card:nth-child(3n + 2) {
  background: linear-gradient(145deg, rgba(235, 250, 248, 0.96), rgba(255, 255, 255, 0.9));
}

.choice-card:nth-child(3n) {
  background: linear-gradient(145deg, rgba(218, 239, 245, 0.94), rgba(255, 255, 255, 0.9));
}

.choice-card::after {
  position: absolute;
  inset: auto 0 0;
  height: 3px;
  content: "";
  background: linear-gradient(90deg, var(--jade-dark), var(--rose), var(--saffron));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 220ms ease;
}

.choice-card:hover::after {
  transform: scaleX(1);
}

.service-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 22px;
}

.service-tabs button,
.testimonial-controls button {
  min-height: 40px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.72);
  padding: 0 14px;
  color: var(--ink-soft);
  font-weight: 780;
}

.service-tabs button.active {
  border-color: rgba(6, 74, 89, 0.3);
  background: var(--jade);
  color: white;
}

.service-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 210px;
  overflow: hidden;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.service-card:nth-child(4n + 1) {
  background: linear-gradient(145deg, rgba(232, 250, 251, 0.98), rgba(255, 255, 255, 0.92));
}

.service-card:nth-child(4n + 2) {
  background: linear-gradient(145deg, rgba(221, 243, 247, 0.98), rgba(255, 255, 255, 0.9));
}

.service-card:nth-child(4n + 3) {
  background: linear-gradient(145deg, rgba(240, 252, 250, 0.98), rgba(255, 255, 255, 0.92));
}

.service-card:nth-child(4n) {
  background: linear-gradient(145deg, rgba(226, 240, 249, 0.96), rgba(255, 255, 255, 0.91));
}

.service-card:hover,
.product-card:hover,
.testimonial-card:hover {
  transform: translateY(-4px);
  border-color: var(--line-strong);
  box-shadow: 0 22px 48px rgba(28, 45, 38, 0.12);
}

.service-card small {
  margin-top: auto;
  color: var(--saffron);
  font-weight: 830;
  text-transform: uppercase;
  font-size: 0.72rem;
}

.service-card-cta {
  position: absolute;
  right: 14px;
  top: 14px;
  transform: translate(12px, -12px);
  opacity: 0;
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  border-radius: var(--radius);
  background: var(--jade);
  color: white;
  padding: 0 12px;
  font-size: 0.8rem;
  font-weight: 850;
  box-shadow: 0 12px 24px rgba(6, 74, 89, 0.22);
  transition:
    opacity 180ms ease,
    transform 180ms ease;
}

.service-card:hover .service-card-cta,
.service-card:focus-within .service-card-cta {
  opacity: 1;
  transform: translate(0, 0);
}

.problem-panel {
  margin-top: 28px;
  padding: 24px;
}

.product-gallery {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px;
}

.product-card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: var(--soft-shadow);
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.product-card.is-selected {
  border-color: rgba(11, 113, 130, 0.46);
  box-shadow: 0 20px 48px rgba(6, 74, 89, 0.16);
}

.product-card img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: contain;
  background: #ffffff;
  padding: 10px;
}

.product-card-media {
  overflow: hidden;
  aspect-ratio: 1;
  background: #ffffff;
}

.card-slide-track {
  display: flex;
  width: 200%;
  height: 100%;
  animation: cardSlide 6s ease-in-out infinite;
}

.card-slide-track img {
  width: 50%;
  height: 100%;
  aspect-ratio: auto;
  flex: 0 0 50%;
  object-fit: contain;
  padding: 10px;
}

.product-card > div:not(.product-card-media) {
  padding: 18px;
}

.product-card h3 {
  min-height: 2.15em;
}

.product-order {
  position: absolute;
  right: 12px;
  top: 12px;
  transform: translateY(-8px);
  opacity: 0;
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  border-radius: var(--radius);
  background: var(--jade);
  color: white;
  padding: 0 11px;
  font-size: 0.78rem;
  font-weight: 850;
  box-shadow: 0 12px 24px rgba(6, 74, 89, 0.24);
  transition:
    opacity 180ms ease,
    transform 180ms ease;
}

.product-card:hover .product-order,
.product-card:focus-within .product-order {
  opacity: 1;
  transform: translateY(0);
}

.product-detail {
  display: grid;
  grid-template-columns: minmax(260px, 0.75fr) minmax(0, 1.25fr);
  gap: 24px;
  margin-top: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: var(--soft-shadow);
  padding: 24px;
}

.product-detail-copy h3 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.55rem, 3vw, 2.45rem);
}

.product-badge {
  display: inline-flex;
  width: fit-content;
  min-height: 34px;
  align-items: center;
  margin-bottom: 14px;
  border: 1px solid rgba(11, 113, 130, 0.26);
  border-radius: var(--radius);
  background: rgba(11, 113, 130, 0.1);
  color: var(--jade-dark);
  padding: 7px 10px;
  font-size: 0.78rem;
  font-weight: 880;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.product-detail-copy ul {
  margin: 0 0 22px;
  padding-left: 20px;
  color: var(--muted);
  line-height: 1.65;
}

.product-carousel {
  position: relative;
  align-self: start;
  display: grid;
  gap: 14px;
}

.product-carousel > img {
  width: 100%;
  aspect-ratio: 1.35;
  object-fit: contain;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #ffffff;
  box-shadow: var(--soft-shadow);
  padding: 10px;
}

.product-carousel-btn {
  position: absolute;
  top: calc(50% - 34px);
  z-index: 2;
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.86);
  color: var(--jade-dark);
  box-shadow: var(--soft-shadow);
  font-size: 1.6rem;
  line-height: 1;
}

.product-carousel-prev {
  left: 12px;
}

.product-carousel-next {
  right: 12px;
}

.product-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
}

.product-dots button {
  width: 10px;
  height: 10px;
  border: 0;
  border-radius: 50%;
  background: rgba(6, 74, 89, 0.24);
  padding: 0;
}

.product-dots button.active {
  background: var(--jade-dark);
}

.zodiac-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  max-height: 430px;
  overflow: auto;
  padding-right: 4px;
}

.zodiac-grid figure {
  margin: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: rgba(255, 255, 255, 0.84);
}

.zodiac-grid img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: contain;
  background: #ffffff;
  padding: 8px;
}

.zodiac-grid figcaption {
  padding: 8px;
  color: var(--ink-soft);
  font-size: 0.78rem;
  font-weight: 820;
  text-align: center;
}

.zodiac-grid a {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  margin: 0 8px 8px;
  border-radius: var(--radius);
  background: var(--jade);
  color: white;
  font-size: 0.78rem;
  font-weight: 850;
}

.product-tags {
  margin: 24px 0 0;
}

.center-cta {
  display: flex;
  justify-content: center;
  margin-top: 28px;
}

.testimonials-section {
  width: 100%;
  max-width: none;
  padding-left: max(20px, calc((100vw - var(--max)) / 2));
  padding-right: max(20px, calc((100vw - var(--max)) / 2));
  background: linear-gradient(180deg, rgba(237, 248, 249, 0.96), rgba(250, 254, 254, 0.96));
}

.testimonial-feature {
  position: relative;
  display: grid;
  grid-template-columns: 300px minmax(0, 1fr);
  gap: 24px;
  align-items: center;
  min-height: 330px;
  border-radius: var(--radius);
  padding: clamp(24px, 4vw, 42px);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: var(--shadow);
}

.review-summary {
  display: grid;
  align-content: center;
  gap: 12px;
  min-height: 260px;
}

.review-summary img {
  width: 84px;
  height: 84px;
  object-fit: contain;
}

.review-summary h3 {
  max-width: 260px;
  font-size: clamp(1.25rem, 2.3vw, 1.75rem);
  line-height: 1.18;
}

.review-summary p {
  color: var(--ink-soft);
  line-height: 1.55;
}

.review-stars {
  color: #f3b300;
  font-size: 1.22rem;
  letter-spacing: 0.05em;
  line-height: 1;
}

.review-carousel {
  position: relative;
  min-width: 0;
}

.review-card-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.review-card,
.testimonial-card {
  min-height: 255px;
  border: 1px solid rgba(6, 74, 89, 0.1);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--soft-shadow);
  padding: 24px;
}

.review-card-head {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.review-card-head strong {
  display: block;
  color: var(--ink);
  font-size: 1rem;
}

.review-card-head small {
  display: block;
  margin-top: 3px;
  color: var(--muted);
}

.review-avatar {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--rose), var(--jade-dark));
  color: #ffffff;
  font-size: 1.25rem;
  font-weight: 900;
}

.review-google {
  color: #4285f4;
  font-size: 1.45rem;
  font-weight: 900;
}

.review-card p,
.testimonial-card p {
  display: -webkit-box;
  margin-top: 18px;
  overflow: hidden;
  color: var(--ink-soft);
  font-size: 1rem;
  line-height: 1.55;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 5;
}

.testimonial-arrow {
  position: absolute;
  top: 50%;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(6, 74, 89, 0.12);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.95);
  color: var(--jade-dark);
  box-shadow: var(--soft-shadow);
  font-size: 2.2rem;
  line-height: 1;
  transform: translateY(-50%);
}

.testimonial-arrow-prev {
  left: -22px;
}

.testimonial-arrow-next {
  right: -22px;
}

.testimonial-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  display: none;
  margin-top: 22px;
  gap: 16px;
}

.testimonial-grid.is-open {
  display: grid;
}

.testimonial-expand {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  width: fit-content;
  margin-top: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.76);
  color: var(--jade-dark);
  padding: 0 16px;
  font-weight: 850;
}

.faq-list {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 12px;
  max-width: 920px;
}

.faq-item {
  overflow: hidden;
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  min-height: 62px;
  border: 0;
  background: transparent;
  padding: 18px 20px;
  color: var(--ink);
  text-align: left;
  font-weight: 820;
}

.faq-question span {
  flex: 0 0 auto;
  width: 26px;
  height: 26px;
  border-radius: var(--radius);
  background: rgba(11, 113, 130, 0.12);
  color: var(--jade);
  display: grid;
  place-items: center;
  margin-left: 16px;
}

.faq-answer {
  display: none;
  padding: 0 20px 20px;
}

.faq-item.is-open .faq-answer {
  display: block;
}

.faq-country-grid {
  margin-top: 16px;
}

.contact-section {
  display: block;
  width: 100%;
  max-width: none;
  padding-left: max(20px, calc((100vw - var(--max)) / 2));
  padding-right: max(20px, calc((100vw - var(--max)) / 2));
  background: #ffffff;
}

.contact-hero {
  display: grid;
  place-items: center;
  min-height: 190px;
  margin: -40px calc(max(20px, calc((100vw - var(--max)) / 2)) * -1) 58px;
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #ffffff;
}

.contact-hero h2 {
  margin: 0;
  color: var(--jade-dark);
  text-align: center;
  text-shadow: none;
}

.contact-top-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  width: min(860px, 100%);
  margin: 0 auto 54px;
  padding: 10px;
  background: rgba(230, 247, 248, 0.55);
}

.contact-top-card {
  display: grid;
  gap: 10px;
  place-items: center;
  min-height: 130px;
  border: 2px solid rgba(11, 113, 130, 0.32);
  background: rgba(255, 255, 255, 0.88);
  text-align: center;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.contact-top-card:hover {
  transform: translateY(-3px);
  border-color: var(--jade);
  box-shadow: var(--soft-shadow);
}

.contact-top-card span,
.form-intro h2,
.contact-sidebar h2,
.connect-copy h2 {
  color: var(--jade-dark);
  font-family: Georgia, "Times New Roman", serif;
}

.contact-top-card span {
  font-size: clamp(1.35rem, 2.4vw, 2rem);
  font-weight: 700;
}

.contact-top-card strong {
  color: var(--ink-soft);
  font-size: 0.98rem;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(290px, 0.42fr) minmax(0, 0.78fr);
  gap: clamp(32px, 5vw, 70px);
  align-items: start;
}

.contact-sidebar {
  display: grid;
  gap: 16px;
  border: 0;
  border-radius: 0;
  background: rgba(224, 243, 245, 0.82);
  box-shadow: var(--soft-shadow);
  padding: clamp(26px, 4vw, 44px);
}

.contact-sidebar h2 {
  margin-bottom: 10px;
  font-size: clamp(1.6rem, 3vw, 2.15rem);
}

.contact-sidebar p {
  margin: 0;
  color: var(--muted);
  line-height: 1.72;
}

.contact-sidebar strong {
  color: var(--ink-soft);
}

.contact-sidebar a {
  color: var(--jade-dark);
  font-weight: 800;
  white-space: nowrap;
}

.contact-social,
.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.contact-social {
  margin-top: 16px;
}

.contact-social a,
.social-links a {
  display: inline-grid;
  place-items: center;
  width: 54px;
  height: 54px;
  margin: 0;
  border: 0;
  border-radius: 50%;
  background: #ffffff;
  color: var(--jade-dark);
  box-shadow: var(--soft-shadow);
  transition:
    transform 180ms ease,
    background 180ms ease,
    color 180ms ease;
}

.contact-social a:hover,
.social-links a:hover {
  transform: translateY(-3px);
  background: var(--jade);
  color: #ffffff;
}

.contact-social svg,
.social-links svg {
  width: 25px;
  height: 25px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.contact-social a[aria-label="Facebook"] svg,
.social-links a[aria-label*="Facebook"] svg {
  fill: currentColor;
  stroke: none;
}

.consult-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px 18px;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  padding: 0;
  background: transparent;
}

.form-intro {
  margin-bottom: 6px;
}

.form-intro h2 {
  margin-bottom: 12px;
  font-size: clamp(2rem, 4vw, 3.5rem);
}

.form-intro p:last-child {
  color: var(--muted);
  line-height: 1.7;
}

.consult-form label {
  display: grid;
  gap: 8px;
  color: var(--ink-soft);
  font-size: 0.9rem;
  font-weight: 780;
}

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

.consult-form input,
.consult-form select,
.consult-form textarea {
  width: 100%;
  min-height: 46px;
  border: 2px solid rgba(11, 113, 130, 0.36);
  border-radius: 4px;
  background: #ffffff;
  padding: 11px 12px;
  outline: none;
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease;
}

.consult-form textarea {
  resize: vertical;
}

.consult-form input:focus,
.consult-form select:focus,
.consult-form textarea:focus {
  border-color: rgba(11, 113, 130, 0.5);
  background: #ffffff;
  box-shadow: 0 0 0 4px rgba(11, 113, 130, 0.12);
}

.connect-strip {
  display: grid;
  grid-template-columns: 320px minmax(0, 1fr) auto;
  align-items: center;
  gap: clamp(28px, 5vw, 72px);
  width: 100%;
  margin: 0;
  padding: 72px max(20px, calc((100vw - var(--max)) / 2));
  background:
    linear-gradient(135deg, rgba(225, 242, 244, 0.84), rgba(248, 253, 253, 0.96));
}

.positive-energy-cta {
  background:
    linear-gradient(135deg, rgba(232, 247, 248, 0.96), rgba(255, 255, 255, 0.96));
}

.contact-connect {
  background:
    linear-gradient(135deg, rgba(226, 242, 244, 0.98), rgba(241, 250, 250, 0.96));
}

.connect-photo {
  width: min(100%, 320px);
  transform: rotate(-7deg);
}

.connect-photo img {
  width: 100%;
  height: auto;
  object-fit: contain;
  object-position: center;
  background: #ffffff;
  border: 10px solid #ffffff;
  border-radius: var(--radius);
  box-shadow: 0 22px 46px rgba(6, 74, 89, 0.18);
}

.connect-copy h2 {
  max-width: 760px;
  margin-bottom: 20px;
  font-size: clamp(2rem, 4vw, 4rem);
}

.connect-copy p {
  max-width: 760px;
  color: var(--muted);
  font-size: clamp(1.05rem, 1.6vw, 1.24rem);
  line-height: 1.65;
}

.connect-subtitle {
  color: var(--saffron) !important;
  font-weight: 850;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.faq-expand {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  margin-top: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.9);
  color: var(--jade-dark);
  padding: 0 18px;
  font-weight: 850;
  box-shadow: var(--soft-shadow);
  transition:
    transform 180ms ease,
    box-shadow 180ms ease;
}

.faq-expand:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 40px rgba(6, 74, 89, 0.12);
}

.site-footer {
  display: grid;
  grid-template-columns: 1.35fr 0.7fr 0.95fr;
  gap: 32px;
  padding: 52px max(20px, calc((100vw - var(--max)) / 2));
  background: #092d35;
  color: rgba(255, 255, 255, 0.72);
}

.site-footer img {
  width: 64px;
  height: 64px;
  margin-bottom: 14px;
}

.site-footer h2 {
  margin-bottom: 14px;
  color: white;
  font-family: inherit;
  font-size: 1rem;
}

.site-footer a {
  display: block;
  width: fit-content;
  margin-bottom: 8px;
  color: rgba(255, 255, 255, 0.78);
}

.site-footer a:hover {
  color: white;
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 18px;
}

.social-links a {
  display: inline-grid;
  place-items: center;
  width: 54px;
  height: 54px;
  margin: 0;
  border: 0;
  border-radius: 50%;
  padding: 0;
  background: #ffffff;
  color: var(--jade-dark);
  box-shadow: var(--soft-shadow);
}

.social-links span {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
}

.floating-whatsapp {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 60;
  min-height: 50px;
  padding: 0 18px;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 650ms ease,
    transform 650ms ease;
  transition-delay: var(--delay, 0ms);
}

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

@keyframes calmFloat {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-6px);
  }
}

@keyframes cardSlide {
  0%,
  42% {
    transform: translateX(0);
  }

  55%,
  92% {
    transform: translateX(-50%);
  }

  100% {
    transform: translateX(0);
  }
}

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

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

  .hero::before,
  .card-slide-track {
    animation: none;
  }
}

@media (min-width: 1021px) and (max-width: 1180px) {
  .hero {
    grid-template-columns: minmax(0, 1fr) minmax(340px, 0.78fr);
    gap: 32px;
    padding: 52px;
  }

  h1 {
    font-size: clamp(1.35rem, 2.2vw, 1.66rem);
  }

  .site-nav a {
    padding-inline: 8px;
    font-size: 0.82rem;
  }

  .header-cta {
    padding-inline: 12px;
    font-size: 0.84rem;
  }
}

@media (max-width: 1020px) {
  .site-header {
    grid-template-columns: auto auto 1fr;
  }

  .nav-toggle {
    display: inline-grid;
    place-items: center;
    justify-self: start;
    width: 44px;
    height: 44px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.76);
  }

  .nav-toggle span {
    display: block;
    width: 18px;
    height: 2px;
    margin: 2px 0;
    background: var(--ink);
  }

  .nav-toggle b {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
  }

  .site-nav {
    position: absolute;
    inset: calc(100% + 8px) 0 auto;
    display: none;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    padding: 10px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: rgba(252, 250, 245, 0.97);
    box-shadow: var(--soft-shadow);
  }

  .site-nav.is-open {
    display: grid;
  }

  .site-nav a {
    justify-content: center;
  }

  .header-cta {
    justify-self: end;
  }

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

  .hero-visual {
    max-width: 620px;
  }

  .trust-strip,
  .product-gallery,
  .awards-grid,
  .testimonial-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .testimonial-feature,
  .contact-layout,
  .connect-strip {
    grid-template-columns: 1fr;
  }

  .review-summary {
    min-height: auto;
  }

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

  .review-card-row .review-card:last-child {
    display: none;
  }

  .connect-photo {
    max-width: 360px;
  }

  .product-detail {
    grid-template-columns: 1fr;
  }

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

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

@media (max-width: 760px) {
  .section {
    width: min(100% - 28px, var(--max));
    padding: 68px 0;
  }

  .section-band {
    width: min(100% - 14px, 1340px);
  }

  .site-header {
    top: 6px;
    width: calc(100% - 14px);
    grid-template-columns: auto auto;
  }

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

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

  .header-cta {
    display: none;
  }

  .nav-toggle {
    justify-self: end;
  }

  .hero {
    min-height: auto;
    padding: 48px 22px 92px;
  }

  h1 {
    font-size: clamp(1.6rem, 8vw, 2.25rem);
    line-height: 1.02;
  }

  h2 {
    font-size: clamp(2rem, 10vw, 3.2rem);
  }

  .hero-lede,
  .section-heading p,
  .split-copy > p,
  .contact-copy > p {
    font-size: 1rem;
    line-height: 1.62;
  }

  .hero-actions,
  .center-cta {
    align-items: stretch;
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .hero-proof,
  .trust-strip,
  .framework-grid,
  .choice-grid,
  .service-grid,
  .product-gallery,
  .awards-grid,
  .product-detail,
  .contact-card-grid,
  .testimonial-grid,
  .faq-list,
  .consult-form,
  .split-section,
  .contact-section,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .testimonials-section,
  .contact-section {
    padding-left: 14px;
    padding-right: 14px;
  }

  .testimonial-feature {
    padding: 22px;
  }

  .review-card-row,
  .contact-top-cards {
    grid-template-columns: 1fr;
  }

  .review-card-row .review-card:last-child {
    display: grid;
  }

  .testimonial-arrow {
    top: auto;
    bottom: -24px;
    width: 42px;
    height: 42px;
    font-size: 1.8rem;
    transform: none;
  }

  .testimonial-arrow-prev {
    left: 16px;
  }

  .testimonial-arrow-next {
    right: 16px;
  }

  .contact-hero {
    min-height: 180px;
    margin-right: -14px;
    margin-left: -14px;
  }

  .contact-top-card {
    min-height: 110px;
  }

  .contact-sidebar {
    padding: 24px;
  }

  .connect-strip {
    padding: 54px 20px;
  }

  .connect-photo {
    transform: rotate(-3deg);
  }

  .product-carousel > img {
    aspect-ratio: 1;
  }

  .zodiac-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-height: 360px;
  }

  .split-media img {
    height: auto;
    max-height: 620px;
  }

  .choose-section,
  .products-section,
  .faq-section {
    padding-left: 14px;
    padding-right: 14px;
  }

  .testimonial-feature {
    min-height: auto;
  }

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

  .floating-whatsapp {
    left: auto;
    right: 14px;
    bottom: 12px;
    min-width: 96px;
    min-height: 40px;
    padding-inline: 12px;
    font-size: 0.82rem;
  }

  .site-footer {
    padding-bottom: 92px;
  }
}
