/* ==========================================================================
   HeloFarma - Landing Page Institucional
   Paleta institucional clara: fundo #E3F1F4, primária #1A8E80, secundária #1C9CAC
   ========================================================================== */

:root {
  font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  color: #16383A;
  background: #E3F1F4;
  font-synthesis: none;

  --surface: #E3F1F4;
  --soft: #E3F1F4;
  --panel: rgba(128, 188, 198, 0.18);
  --card: #FFFFFF;
  --text: #16383A;
  --muted: #4F696B;
  --accent: #1A8E80;
  --secondary: #1C9CAC;
  --support: #80BCC6;
  --border: rgba(128, 188, 198, 0.35);
  --button: #1A8E80;
  --button-text: #FFFFFF;
  --radius: 18px;
  color-scheme: light;
}

/* --------------------------------------------------------------------------
   Reset e Estilos Globais
   -------------------------------------------------------------------------- */
* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  color: var(--text);
  background: var(--surface);
  font-size: 14px;
  line-height: 1.8;
  -webkit-font-smoothing: antialiased;
}

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

button, input {
  font: inherit;
}

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

button {
  cursor: pointer;
}

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

h1, h2, h3, p, figure {
  margin: 0;
}

h1, h2, h3 {
  font-weight: 600;
}

h1, h2 {
  letter-spacing: -1.8px;
  line-height: 1.2;
}

h2 {
  font-size: 40px;
}

h2 span {
  color: var(--accent);
}

h3 {
  font-size: 17px;
  line-height: 1.5;
}

p {
  color: var(--muted);
}

i.ph, i.ph-fill {
  font-size: 24px;
  line-height: 1;
  flex-shrink: 0;
}

a:focus-visible,
button:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 5px;
}

section[id] {
  scroll-margin-top: 100px;
}

.container {
  max-width: 1240px;
  margin-inline: auto;
  padding-inline: 32px;
}

.section {
  padding-block: 100px;
}

.eyebrow {
  font-size: 11px;
  letter-spacing: 1.65px;
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 23px;
  display: flex;
  align-items: center;
  gap: 9px;
  text-transform: uppercase;
}

.eyebrow i.ph {
  font-size: 18px;
}

/* --------------------------------------------------------------------------
   Botões
   -------------------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 52px;
  border-radius: 8px;
  padding: 15px 22px;
  font-size: 13px;
  line-height: 1.5;
  font-weight: 500;
  border: 1px solid transparent;
  white-space: nowrap;
  transition: background-color 250ms ease-out, transform 250ms ease-out, border-color 250ms ease-out;
}

.btn .ph, .btn .ph-fill {
  font-size: 21px;
}

.btn-primary {
  background: var(--button);
  color: var(--button-text);
}

.btn-primary:hover {
  background: var(--secondary);
  transform: translateY(-2px);
}

.btn-outline {
  border-color: var(--accent);
  color: var(--accent);
  background: transparent;
}

.btn-outline:hover {
  background: var(--support);
  color: #FFFFFF;
  transform: translateY(-2px);
}

/* Acessibilidade: Skip Link */
.skip-link {
  position: fixed;
  top: -80px;
  left: 16px;
  background: var(--surface);
  padding: 15px;
  z-index: 100;
  border-radius: 8px;
  border: 1px solid var(--accent);
  transition: top 0.2s ease;
}

.skip-link:focus {
  top: 8px;
}

/* --------------------------------------------------------------------------
   Cabeçalho (Header Sticky)
   -------------------------------------------------------------------------- */
.header-sentinel {
  position: absolute;
  top: 0;
  left: 0;
  width: 1px;
  height: 1px;
  pointer-events: none;
}

.site-header {
  height: 92px;
  background: var(--surface);
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid var(--border);
  transition: background-color 300ms ease-out, box-shadow 300ms ease-out;
}

.site-header.is-scrolled {
  background: var(--surface);
  box-shadow: 0 4px 18px rgba(22, 56, 58, 0.07);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  line-height: 1;
  flex-shrink: 0;
  color: var(--accent);
}

.brand .brand-logo {
  display: block;
  width: 225px;
  height: auto;
  object-fit: contain;
}

.header-inner nav {
  display: flex;
  align-items: center;
  gap: 27px;
  font-size: 12px;
}

.header-inner nav a {
  position: relative;
  padding: 12px 0;
  font-weight: 500;
  color: var(--text);
  transition: color 250ms ease-out;
}

.header-inner nav a.active {
  color: var(--accent);
  font-weight: 600;
}

.header-inner nav a:hover {
  color: var(--secondary);
}

.header-inner nav a.active:after {
  content: '';
  height: 2px;
  background: var(--accent);
  position: absolute;
  bottom: 3px;
  left: 0;
  right: 0;
}

.header-cta {
  min-height: 44px;
  padding: 12px 19px;
  font-size: 12px;
}

.menu-toggle {
  display: none;
  border: 0;
  background: transparent;
  color: var(--text);
  padding: 10px;
  font-size: 24px;
}

/* --------------------------------------------------------------------------
   Hero Section
   -------------------------------------------------------------------------- */
.hero {
  background: var(--soft);
  padding: 65px 0 56px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.03fr 1fr;
  gap: 54px;
  align-items: center;
}

.hero-copy {
  padding-bottom: 20px;
}

.hero h1 {
  font-size: 54px;
  font-weight: 600;
  line-height: 1.16;
  max-width: 540px;
  letter-spacing: -2.5px;
}

.hero h1 span {
  color: var(--accent);
}

.hero-description {
  font-size: 14px;
  line-height: 1.9;
  max-width: 445px;
  margin: 24px 0 30px;
}

.hero-visual {
  position: relative;
  min-width: 0;
}

.hero-visual img {
  width: 100%;
  height: 456px;
  border-radius: 90px 18px 18px 18px;
  object-position: 45% center;
  background: var(--panel);
}

.hero-visual figcaption {
  font-size: 9px;
  color: var(--muted);
  margin-top: 7px;
  text-align: right;
}

/* --------------------------------------------------------------------------
   Faixa de Destaques (Service Strip)
   -------------------------------------------------------------------------- */
.service-strip {
  border-bottom: 1px solid var(--border);
  padding: 24px 0;
}

.service-grid {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

.service-grid > span {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 12px;
  font-weight: 500;
}

.service-grid i {
  color: var(--accent);
}

/* --------------------------------------------------------------------------
   Sobre Nós (História e Aniversário)
   -------------------------------------------------------------------------- */
.about {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 105px;
  align-items: center;
}

.anniversary {
  position: relative;
  text-align: center;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 24px 36px;
  background: var(--card);
  transition: transform 300ms cubic-bezier(0.22, 1, 0.36, 1), box-shadow 300ms ease-out;
}

.anniversary-number {
  font-size: 150px;
  letter-spacing: -12px;
  font-weight: 600;
  line-height: 1.1;
  color: var(--accent);
  display: block;
}

.anniversary-number > span {
  font-size: 26px;
  letter-spacing: -0.7px;
  display: block;
  margin-top: -3px;
}

.anniversary p {
  font-size: 12px;
  margin-top: 20px;
}

.since {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  margin-top: 26px;
  font-size: 10px;
  letter-spacing: 1px;
  color: var(--muted);
}

.since > span {
  width: 90px;
  height: 1px;
  background: var(--border);
}

.about-copy h2 {
  margin-bottom: 25px;
  max-width: 480px;
}

.about-copy > p:not(.eyebrow) {
  margin-bottom: 17px;
  line-height: 1.9;
}

.signature {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 17px;
  margin-top: 22px;
  border-top: 1px solid var(--border);
}

.signature > .ph {
  font-size: 32px;
  color: var(--accent);
}

.signature strong {
  font-size: 12px;
  font-weight: 500;
  display: block;
}

.signature span {
  font-size: 11px;
  color: var(--muted);
}

/* --------------------------------------------------------------------------
   Produtos / Categorias
   -------------------------------------------------------------------------- */
.products {
  background: var(--soft);
}

.section-heading {
  margin-bottom: 45px;
}

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

.product {
  padding: 28px 24px 32px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--card);
  box-shadow: 0 5px 22px rgba(22, 56, 58, 0.035);
  transition: transform 300ms cubic-bezier(0.22, 1, 0.36, 1), box-shadow 300ms ease-out;
}

.product-icon {
  height: 65px;
  display: flex;
  align-items: flex-start;
  color: var(--accent);
}

.product-icon > .ph {
  font-size: 37px;
}

.product h3 {
  min-height: 52px;
  margin-bottom: 16px;
  font-size: 16px;
}

.product p {
  font-size: 12px;
  line-height: 1.9;
}

/* --------------------------------------------------------------------------
   Diferenciais
   -------------------------------------------------------------------------- */
.differences {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: start;
}

.differences h2 {
  padding-top: 20px;
}

.difference-list article {
  display: flex;
  align-items: start;
  gap: 23px;
  padding: 24px 0;
  border-bottom: 1px solid var(--border);
}

.difference-list article:first-child {
  padding-top: 16px;
}

.difference-list article:last-child {
  border: 0;
  padding-bottom: 0;
}

.difference-list .ph {
  font-size: 30px;
  color: var(--accent);
  padding-top: 3px;
}

.difference-list h3 {
  font-size: 16px;
  margin-bottom: 7px;
}

.difference-list p {
  font-size: 12px;
}

/* --------------------------------------------------------------------------
   Painel de Contato
   -------------------------------------------------------------------------- */
.contact-panel {
  padding: 43px 38px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  gap: 23px;
  box-shadow: 0 5px 22px rgba(22, 56, 58, 0.035);
}

.contact-panel > .contact-icon {
  font-size: 50px;
  color: var(--accent);
}

.contact-panel h2 {
  font-size: 25px;
  letter-spacing: -0.8px;
  margin-bottom: 10px;
}

.contact-panel p {
  font-size: 12px;
  max-width: 500px;
}

.contact-panel > .btn {
  margin-left: auto;
}

/* --------------------------------------------------------------------------
   Nossas Unidades
   -------------------------------------------------------------------------- */
.units .section-heading h2 {
  max-width: 760px;
}

.units-subtitle {
  margin-top: 20px;
  font-size: 14px;
}

.units-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 26px;
}

.unit-card {
  min-width: 0;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 5px 22px rgba(22, 56, 58, 0.035);
  display: flex;
  flex-direction: column;
}

.unit-info {
  padding: 30px;
  flex: 1;
}

.unit-info h3 {
  font-size: 24px;
  letter-spacing: -0.6px;
  color: var(--accent);
  margin-bottom: 22px;
}

.location-detail {
  display: flex;
  gap: 15px;
  margin-bottom: 19px;
  font-size: 13px;
  align-items: flex-start;
}

.location-detail > .ph {
  font-size: 21px;
  color: var(--accent);
  margin-top: 3px;
}

.location-detail p > span {
  display: block;
}

.location-detail a {
  font-weight: 500;
  color: var(--secondary);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.location-detail a:hover {
  color: var(--accent);
}

.unit-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 25px;
}

.unit-actions .btn {
  flex: 1;
  padding-inline: 16px;
}

.unit-card .map-panel {
  border: 0;
  border-top: 1px solid var(--border);
  border-radius: 0;
  height: 420px;
  width: 100%;
  overflow: hidden;
  background: var(--card);
}

.unit-card .map-panel iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 0;
  border: 0;
}

/* --------------------------------------------------------------------------
   Rodapé
   -------------------------------------------------------------------------- */
.footer {
  background: var(--accent);
  color: var(--card);
  padding-top: 55px;
  --muted: #FFFFFF;
  --border: rgba(128, 188, 198, 0.45);
}

.footer .brand {
  color: var(--card);
  background: transparent;
  padding: 0;
  max-width: 100%;
  margin-bottom: 23px;
}

.footer .brand .brand-logo {
  width: 220px;
  max-width: 100%;
}

.footer a:not(.brand),
.footer .privacy-link {
  color: var(--surface);
}

.footer a:hover,
.footer .privacy-link:hover {
  color: var(--card);
  text-decoration: underline;
  text-underline-offset: 4px;
}

.footer a:focus-visible,
.footer button:focus-visible {
  outline-color: var(--card);
}

.footer .brand small,
.footer i.ph {
  color: var(--surface);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 0.9fr;
  gap: 65px;
  padding-bottom: 42px;
}

.footer p,
.footer a:not(.brand) {
  font-size: 11px;
  line-height: 1.9;
}

.footer h3 {
  font-size: 12px;
  margin-bottom: 17px;
  font-weight: 600;
}

.footer-grid > div > p {
  margin-bottom: 10px;
}

.footer-grid > div > a:not(.brand) {
  display: block;
}

.footer .branch-legal {
  font-size: 10px;
  opacity: 0.85;
}

.footer .google-link {
  margin-top: 14px;
  max-width: 220px;
}

.footer .google-link i,
.footer-grid > div > a i {
  font-size: 14px;
  vertical-align: middle;
}

.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 23px 0;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  color: var(--muted);
  font-size: 10px;
}

.footer-links {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  align-items: center;
}

.footer-bottom .footer-links a {
  font-size: 10px;
  padding-block: 6px;
}

.privacy-link {
  border: 0;
  background: transparent;
  padding: 0;
  color: var(--muted);
  font-size: 10px;
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* --------------------------------------------------------------------------
   Página de Política de Privacidade
   -------------------------------------------------------------------------- */
.policy-container {
  max-width: 980px;
  padding: 65px 30px 85px;
  margin: 0 auto;
}

.policy-intro {
  margin-bottom: 38px;
}

.policy-intro h1 {
  font-size: 44px;
  color: var(--accent);
  margin-bottom: 24px;
}

.policy-intro p {
  font-size: 15px;
  line-height: 1.9;
}

.policy-document {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 44px 48px;
  box-shadow: 0 5px 22px rgba(22, 56, 58, 0.035);
}

.policy-section + .policy-section {
  margin-top: 36px;
  padding-top: 30px;
  border-top: 1px solid var(--border);
}

.policy-section h2 {
  font-size: 22px;
  line-height: 1.4;
  letter-spacing: -0.5px;
  color: var(--text);
  margin-bottom: 16px;
}

.policy-section p,
.policy-section li {
  font-size: 14px;
  line-height: 1.9;
  color: var(--muted);
}

.policy-section p + p {
  margin-top: 14px;
}

.policy-section ul {
  margin: 14px 0;
  padding-left: 24px;
}

.policy-section li + li {
  margin-top: 5px;
}

.policy-section strong {
  color: var(--text);
  font-weight: 600;
}

.privacy-contact {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px;
  margin-top: 23px;
}

.privacy-contact > a:not(.btn) {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 4px;
  padding-block: 12px;
}

.policy-updated {
  font-size: 12px;
  border-top: 1px solid var(--border);
  padding-top: 25px;
  margin-top: 35px;
}

/* --------------------------------------------------------------------------
   Animações e Efeitos Hover
   -------------------------------------------------------------------------- */
@media (hover: hover) and (prefers-reduced-motion: no-preference) {
  .product:hover,
  .anniversary:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 26px rgba(22, 56, 58, 0.08);
  }
}

@media (prefers-reduced-motion: no-preference) {
  html {
    scroll-behavior: smooth;
  }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    transition: none !important;
    scroll-behavior: auto !important;
    animation: none !important;
  }
  .btn:hover,
  .product:hover,
  .anniversary:hover {
    transform: none;
  }
}

/* --------------------------------------------------------------------------
   Responsividade - Media Queries
   -------------------------------------------------------------------------- */
@media (min-width: 1400px) {
  .container {
    max-width: 1300px;
  }
  .hero {
    padding-block: 72px;
  }
  .hero-visual img {
    height: 470px;
  }
  .hero h1 {
    font-size: 58px;
  }
}

@media (max-width: 1199px) {
  .header-inner {
    gap: 18px;
  }
  .header-inner nav {
    gap: 19px;
  }
  .brand .brand-logo {
    width: 195px;
  }
  .hero-grid {
    gap: 35px;
  }
  .hero h1 {
    font-size: 46px;
  }
  .hero-visual img {
    height: 420px;
  }
  .about {
    gap: 65px;
  }
  .product {
    padding: 24px 20px;
  }
  .contact-panel {
    flex-wrap: wrap;
  }
  .contact-panel > .btn {
    margin-left: 73px;
  }
  .contact-panel > div {
    flex: 1;
  }
  .contact-panel h2 {
    font-size: 25px;
  }
}

@media (max-width: 1023px) {
  .container {
    max-width: 960px;
  }
  .site-header {
    height: 80px;
  }
  .header-inner nav {
    display: none;
    position: absolute;
    top: 79px;
    left: 0;
    right: 0;
    background: var(--surface);
    padding: 20px 32px;
    box-shadow: 0 12px 20px rgba(22, 56, 58, 0.08);
    border-bottom: 1px solid var(--border);
  }
  .header-inner nav.is-open {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
  }
  .header-inner nav a.active:after {
    display: none;
  }
  .header-cta {
    margin-left: auto;
  }
  .menu-toggle {
    display: block;
  }
  .hero h1 {
    font-size: 42px;
  }
  .hero-visual img {
    height: 430px;
  }
  .hero-grid {
    gap: 30px;
  }
  .hero-description {
    font-size: 13px;
  }
  .service-grid > span {
    font-size: 10px;
    gap: 8px;
  }
  .about {
    gap: 50px;
  }
  .product-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .product h3 {
    min-height: 0;
  }
  .product {
    padding: 28px;
  }
  .differences {
    gap: 40px;
  }
  h2 {
    font-size: 34px;
  }
  .footer-grid {
    gap: 35px;
  }
}

@media (max-width: 767px) {
  .container {
    padding-inline: 24px;
  }
  .section {
    padding-block: 65px;
  }
  .site-header {
    height: 76px;
  }
  .brand .brand-logo {
    width: 180px;
  }
  .header-cta {
    display: none;
  }
  .header-inner nav {
    top: 75px;
  }
  .hero {
    padding: 42px 0 26px;
  }
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .hero-copy {
    padding: 0;
  }
  .eyebrow {
    font-size: 9px;
    letter-spacing: 1.35px;
    margin-bottom: 20px;
  }
  .hero h1 {
    font-size: 43px;
    letter-spacing: -2px;
    max-width: 540px;
  }
  .hero-description {
    font-size: 13px;
    max-width: 500px;
    margin: 23px 0 27px;
  }
  .hero-visual img {
    height: 330px;
    border-top-left-radius: 60px;
    object-position: center;
  }
  .hero-visual figcaption {
    font-size: 8px;
  }
  .service-strip {
    padding: 21px 0;
  }
  .service-grid {
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 16px 25px;
  }
  .service-grid > span {
    font-size: 10px;
  }
  .service-grid > span:last-child {
    width: 100%;
  }
  .service-grid i.ph {
    font-size: 19px;
  }
  .about {
    grid-template-columns: 1fr;
    gap: 35px;
  }
  .anniversary {
    order: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    padding: 28px 20px;
  }
  .anniversary-number {
    font-size: 110px;
    letter-spacing: -8px;
    grid-row: span 2;
  }
  .anniversary-number > span {
    font-size: 23px;
    letter-spacing: 0;
  }
  .anniversary p {
    font-size: 11px;
    margin-top: 10px;
  }
  .since {
    margin-top: 0;
    font-size: 9px;
    gap: 9px;
  }
  .since > span {
    width: 35px;
  }
  .about-copy > p:not(.eyebrow) {
    font-size: 13px;
  }
  h2 {
    font-size: 33px;
    letter-spacing: -1.2px;
  }
  .section-heading {
    margin-bottom: 30px;
  }
  .product-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .product {
    padding: 22px 18px;
  }
  .product h3 {
    font-size: 14px;
    min-height: 0;
    margin-bottom: 10px;
  }
  .product p {
    font-size: 11px;
  }
  .product-icon {
    height: 56px;
  }
  .product-icon > .ph {
    font-size: 31px;
  }
  .differences {
    grid-template-columns: 1fr;
    gap: 26px;
  }
  .differences h2 {
    padding-top: 0;
  }
  .difference-list article {
    gap: 20px;
  }
  .contact-panel {
    padding: 28px;
    display: block;
  }
  .contact-panel > .contact-icon {
    font-size: 39px;
    display: block;
    margin-bottom: 18px;
  }
  .contact-panel h2 {
    font-size: 26px;
  }
  .contact-panel > .btn {
    margin: 23px 0 0;
    width: 100%;
    padding-inline: 10px;
    font-size: 12px;
  }
  .units-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .unit-info {
    padding: 24px;
  }
  .unit-info h3 {
    font-size: 22px;
  }
  .unit-card .map-panel {
    height: 320px;
  }
  .unit-actions {
    gap: 10px;
  }
  .unit-actions .btn {
    padding-inline: 13px;
    font-size: 12px;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }
  .footer-grid > div:first-child {
    grid-column: 1 / -1;
  }
  .footer .brand {
    margin-bottom: 18px;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 12px;
    align-items: flex-start;
  }
  .footer .google-link {
    max-width: 160px;
  }
  .policy-container {
    padding: 42px 20px 55px;
  }
  .policy-intro h1 {
    font-size: 34px;
  }
  .policy-intro p {
    font-size: 14px;
  }
  .policy-document {
    padding: 28px 23px;
  }
  .policy-section h2 {
    font-size: 20px;
  }
  .policy-section p,
  .policy-section li {
    font-size: 13px;
  }
  .privacy-page .brand .brand-logo {
    width: 155px;
  }
  .privacy-back {
    font-size: 11px;
    padding: 10px 12px;
    min-height: 44px;
    gap: 6px;
  }
  .privacy-back .ph {
    font-size: 17px;
  }
  .privacy-page .header-inner {
    gap: 12px;
  }
  .footer-links {
    gap: 8px 20px;
  }
  .privacy-contact .btn {
    white-space: normal;
    text-align: center;
  }
  .privacy-contact {
    gap: 8px;
  }
}

@media (max-width: 374px) {
  .container {
    padding-inline: 18px;
  }
  .hero h1 {
    font-size: 37px;
  }
  .product-grid {
    grid-template-columns: 1fr;
  }
  .product h3 {
    min-height: 0;
  }
  .service-grid > span {
    width: 100%;
  }
  .unit-actions {
    flex-direction: column;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .btn {
    font-size: 12px;
    padding-inline: 15px;
  }
  .anniversary-number {
    font-size: 90px;
  }
  .privacy-page .brand .brand-logo {
    width: 128px;
  }
  .privacy-page .header-inner {
    padding-inline: 16px;
  }
  .policy-document {
    padding: 24px 20px;
  }
}
