:root {
  --brand: #FF6A00;
  --ink: #0F172A;
  --bg: #ffffff;
  --surface: #F8FAFC;
  --border: #E5E7EB;
  --muted: #64748B;
  --teal: #00CDB7;
  --radius: 12px;
  --radius-lg: 16px;
  --shadow-s: 0 1px 2px rgba(0, 0, 0, .06);
  --shadow-m: 0 6px 20px rgba(0, 0, 0, .08);
  --brands-gap: 32px;
  --brands-viewport: 260px;

  --z-nav: 1000;
  --z-overlay: 1100;
  --z-modal: 1200;
  --z-toast: 1300;
}

.skeleton {
  background-color: #f1f5f9;
  background-image: linear-gradient(90deg, #f1f5f9 0px, #e2e8f0 50%, #f1f5f9 100%);
  background-size: 200% 100%;
  animation: skeleton-shine 1.5s infinite linear;
  position: relative;
  overflow: hidden;
}

@keyframes skeleton-shine {
  0% {
    background-position: 200% 0;
  }

  100% {
    background-position: -200% 0;
  }
}

.skeleton img {
  opacity: 0;
  transition: opacity 0.3s ease-in;
}

.skeleton img.loaded {
  opacity: 1;
}

.reveal {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.8s cubic-bezier(0.5, 0, 0, 1), transform 0.8s cubic-bezier(0.5, 0, 0, 1);
}

.js-loading .reveal {
  opacity: 0;
  transform: translateY(30px);
}

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

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

html,
body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: Inter, Manrope, system-ui, -apple-system, Segoe UI, Roboto;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

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

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

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 24px;
}

.narrow {
  max-width: 800px;
}

h1,
h2,
h3 {
  margin: 0 0 8px 0;
}

p {
  margin: 0 0 10px 0;
}

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

.link {
  color: #2563EB;
}

.btn-primary {
  display: inline-block;
  padding: 10px 14px;
  border-radius: 10px;
  background: var(--brand);
  color: #fff;
  transition: transform 0.2s, box-shadow 0.2s;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(255, 106, 0, 0.3);
}

.btn-ghost {
  display: inline-block;
  padding: 10px 14px;
  border-radius: 10px;
  border: 1px solid var(--border);
  background: #fff;
}

.btn-outline {
  display: inline-block;
  padding: 8px 12px;
  border-radius: 8px;
  border: 1px solid var(--border);
  background: #fff;
}

.flash {
  position: fixed;
  left: 50%;
  transform: translateX(-50%);
  bottom: 24px;
  z-index: var(--z-toast);
  padding: 12px 16px;
  border-radius: 10px;
  box-shadow: var(--shadow-m);
  background: #e7f9ee;
  color: #0a5;
}

.flash--err {
  background: #fde8e8;
  color: #a00;
}

.alert {
  padding: 10px 12px;
  border-radius: 10px;
  font-size: 0.9rem;
  margin-bottom: 12px;
}

.alert--success {
  background: #ecfdf3;
  border: 1px solid #bbf7d0;
  color: #166534;
}

.alert--error {
  background: #fef2f2;
  border: 1px solid #fecaca;
  color: #b91c1c;
}

.badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 600;
}

.product-badge--offer {
  background: var(--brand, #0099a8);
  color: #fff;
  box-shadow: 0 4px 8px rgba(0, 153, 168, 0.3);
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: var(--z-nav);
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: saturate(1.1) blur(10px);
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.08);
  height: 80px;
  display: flex;
  align-items: center;
  transition: all 0.3s ease;
}

body {
  padding-top: 80px;
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  gap: 20px;
}

.logo {
  display: inline-block;
  line-height: 0;
  z-index: 10;
  position: relative;
  overflow: hidden;
  border-radius: 4px;
}

.logo img {
  height: 42px;
  width: auto;
  object-fit: contain;
  display: block;
  transition: transform 0.4s ease;
}

.logo::after {
  content: "";
  position: absolute;
  top: 0;
  left: -150%;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.8) 50%, rgba(255, 255, 255, 0) 100%);
  transform: skewX(-25deg);
  pointer-events: none;
}

.logo:hover img {
  transform: scale(1.02);
}

.logo:hover::after {
  animation: logoShine 0.75s;
}

@keyframes logoShine {
  100% {
    left: 150%;
  }
}

.nav {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 24px;
}

.nav__links a {
  position: relative;
  padding: 8px 0;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.3s ease;
}

.nav__links a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: 0;
  left: 0;
  background-color: var(--brand);
  transition: width 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.nav__links a:hover {
  color: var(--ink);
}

.nav__links a:hover::after {
  width: 100%;
}

.nav__links a.active {
  color: var(--ink);
}

.nav__links a.active::after {
  width: 100%;
}

.btn-cta-nav {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: var(--ink);
  color: #fff;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 600;
  transition: all 0.2s ease;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.btn-cta-nav:hover {
  background: var(--brand);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(255, 106, 0, 0.25);
}

.btn-cta-nav svg {
  stroke: currentColor;
}

.nav-toggle {
  display: none;
  background: transparent;
  border: 0;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: calc(var(--z-overlay) + 10);
  padding: 0;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  position: absolute;
  transition: .3s ease;
}

.nav-toggle span:nth-child(1) {
  top: 14px;
}

.nav-toggle span:nth-child(2) {
  top: 21px;
}

.nav-toggle span:nth-child(3) {
  top: 28px;
}

.nav-close {
  display: none;
  position: absolute;
  top: 20px;
  right: 20px;
  background: #f1f5f9;
  border: 0;
  color: var(--text-main);
  width: 40px;
  height: 40px;
  border-radius: 8px;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s;
}

.nav-close:hover {
  background: #e2e8f0;
  color: var(--brand);
}

@media(max-width: 1024px) {
  .site-header {
    height: 64px;
  }

  body {
    padding-top: 64px;
  }

  .logo img {
    height: 32px;
  }

  .nav-toggle {
    display: flex !important;
    margin-left: auto;
  }

  .nav {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: min(85vw, 300px);
    background: #fff;
    flex-direction: column;
    align-items: flex-start;
    padding: 80px 24px 24px;
    gap: 0;
    box-shadow: -10px 0 40px rgba(0, 0, 0, 0.15);
    transform: translateX(100%);
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: var(--z-modal);
    overflow-y: auto;
  }

  .nav.open {
    transform: translateX(0);
  }

  .nav-close {
    display: flex;
  }

  .nav__links {
    flex-direction: column;
    width: 100%;
    align-items: flex-start;
    gap: 0;
  }

  .nav__links a {
    width: 100%;
    padding: 16px 0;
    font-size: 1.1rem;
    border-bottom: 1px solid var(--border);
    color: var(--ink);
  }

  .nav__links a::after {
    display: none;
  }

  .nav__links a.active {
    color: var(--brand);
    font-weight: 700;
  }

  .btn-cta-nav {
    width: 100%;
    justify-content: center;
    padding: 14px;
    margin-top: 24px;
  }
}

.hero {
  position: relative;
  background-color: #f8fafc;
  overflow: hidden;
}

.hero__inner {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  min-height: clamp(480px, 65vh, 800px);
  position: relative;
  z-index: 2;
  width: 100%;
  padding-bottom: 120px;
}

.hero__content {
  max-width: 720px;
}

.hero__content .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 18px;
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.4);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  border-radius: 100px;
  color: var(--ink);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 28px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hero__content .eyebrow:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.09);
}

.eyebrow__dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--brand);
  box-shadow: 0 0 0 2px rgba(255, 106, 0, 0.2);
}

.hero__title {
  font-size: clamp(2.5rem, 5.5vw, 4.5rem);
  line-height: 1.05;
  margin: 0 0 20px 0;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--ink);
}

.hero__content p {
  color: #334155;
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  font-weight: 500;
  line-height: 1.6;
  margin-bottom: 32px;
  max-width: 580px;
}

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

.hero__note {
  margin-top: 32px;
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 500;
}

.hero--cover {
  position: relative;
  isolation: isolate;
  padding: 0 !important;
  min-height: clamp(480px, 65vh, 800px);
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero--cover .container {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: clamp(36px, 8vw, 120px) 24px;
  min-height: clamp(480px, 65vh, 800px);
  display: flex;
  align-items: center;
}

.hero--cover::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: var(--hero-bg);
  background-size: cover;
  background-position: center;
  z-index: 0;
  transform: scale(1);
  animation: heroBreathe 40s alternate infinite ease-in-out;
  will-change: transform;
}

@keyframes heroBreathe {
  0% {
    transform: scale(1);
  }

  100% {
    transform: scale(1.15);
  }
}

.hero--cover::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top,
      rgba(255, 255, 255, 1) 0%,
      rgba(255, 255, 255, 0.98) 15%,
      rgba(255, 255, 255, 0.85) 30%,
      rgba(255, 255, 255, 0.4) 60%,
      rgba(255, 255, 255, 0) 100%);
  z-index: 1;
  pointer-events: none;
}

.home-catalog {
  position: relative;
  z-index: 10;
  margin-top: -100px;
  padding-top: 0;
  margin-bottom: 40px;
}

.home-catalog .section-head {
  display: none;
}

.home-catalog .card {
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
  border: none;
}

@media (max-width: 768px) {
  .home-catalog {
    margin-top: -60px;
  }
}

.brands {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: #fff;
}

.brands__viewport {
  width: 100%;
  margin-inline: auto;
  overflow: hidden;
  position: relative;
  mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent);
}

.brands__track {
  display: flex;
  align-items: center;
  gap: var(--brands-gap);
  width: max-content;
  padding: 0 24px;
  animation: marquee 40s linear infinite;
}

.brands__track:hover {
  animation-play-state: paused;
}

@keyframes marquee {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

.brand-lnk {
  position: relative;
  overflow: visible;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  background: transparent;
  border: none;
  box-shadow: none;
  cursor: pointer;
  flex: 0 0 auto;
  transition: transform .2s ease, opacity 0.2s ease;
  opacity: 0.7;
}

.brand-lnk:hover {
  transform: translateY(-1px);
  opacity: 1;
}

.brand-img {
  max-height: 80px;
  max-width: 120px;
  height: auto !important;
  width: auto !important;
  object-fit: contain;
  display: block;
  filter: none;
}

.section-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 12px 0 8px 0;
}

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

.card {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  background: #fff;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-s);
  transition: box-shadow 0.3s ease;
  cursor: pointer;
}

.card:hover {
  box-shadow: var(--shadow-m);
}

.card .thumb {
  aspect-ratio: 4/3;
  background: #fafafa;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
}

.card .thumb img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 8px;
  mix-blend-mode: multiply;
  transition: transform 0.4s ease;
}

.card:hover .thumb img {
  transform: scale(1.08);
}

.card .body { 
  padding: 12px; 
  display: flex;            
  flex-direction: column;
  gap: 8px;
  flex-grow: 1;
}

.card__actions {
  margin-top: auto !important;
}

.card .body h3 {
  margin: 0;
}

.meta {
  color: var(--muted);
  font-size: 13px;
}

.posts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.post {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  background: #fff;
  display: block;
}

.post-thumb {
  aspect-ratio: 16/9;
  background: #f2f2f2;
  background-size: cover;
  background-position: center;
}

.post-body {
  padding: 12px;
}

.footer {
  position: relative;
  background: #0f172a;
  background: linear-gradient(180deg, #0f172a 0%, #020617 100%);
  color: #94a3b8;
  margin-top: 80px;
  overflow: hidden;
  font-size: 0.95rem;
}

.footer__shine {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(255, 106, 0, 0.5) 50%, transparent 100%);
  opacity: 0.7;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 48px;
  padding-top: 64px;
  padding-bottom: 48px;
}

.footer__logo img {
  display: block;
  max-width: 160px;
  height: auto;
  margin-bottom: 24px;
  filter: brightness(0) invert(1);
  opacity: 0.9;
}

.info-item {
  display: flex;
  gap: 12px;
  margin-bottom: 16px;
  line-height: 1.5;
  color: #cbd5e1;
}

.info-item .icon {
  color: var(--brand);
  flex-shrink: 0;
  margin-top: 2px;
}

.footer__heading {
  font-size: 0.9rem;
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin: 0 0 20px 0;
  opacity: 0.9;
}

.footer__nav {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer__nav a {
  color: #94a3b8;
  text-decoration: none;
  transition: all 0.2s ease;
  display: inline-flex;
}

.footer__nav a:hover {
  color: var(--brand);
  transform: translateX(4px);
}

.link-highlight {
  color: #fff !important;
  font-weight: 600;
}

.footer__socials {
  display: flex;
  gap: 10px;
  margin-top: 24px;
}

.social-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  transition: all 0.2s ease;
}

.social-btn:hover {
  background: var(--brand);
  border-color: var(--brand);
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(255, 106, 0, 0.3);
}

.social-btn.whatsapp:hover {
  background: #25D366;
  border-color: #25D366;
  box-shadow: 0 5px 15px rgba(37, 211, 102, 0.3);
}

.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  background: rgba(0, 0, 0, 0.2);
  padding: 24px 0;
  font-size: 0.85rem;
}

.footer__bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer__legal {
  display: flex;
  gap: 12px;
  align-items: center;
}

.footer__legal a {
  color: #64748b;
  transition: color 0.2s;
}

.footer__legal a:hover {
  color: #fff;
}

.et-credit strong {
  color: #fff;
}

@media (max-width: 1024px) {
  .footer__grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .footer__bottom-inner {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: #fff;
  border-top: 1px solid #e2e8f0;
  box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.08);
  padding: 24px;
  z-index: 9999;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 32px;

  transform: translateY(100%);
  opacity: 0;
  visibility: hidden;
  transition: all 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.cookie-banner.is-visible {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
}

.cookie-banner__text {
  flex: 1;
  max-width: 800px;
  min-width: 280px;
}

.cookie-banner__title {
  font-size: 1rem;
  font-weight: 800;
  color: var(--ink);
  margin-bottom: 8px;
}

.cookie-banner__body {
  font-size: 0.9rem;
  color: var(--text-main);
  line-height: 1.5;
  margin: 0;
}

.cookie-banner__link {
  color: var(--brand);
  text-decoration: none;
  font-weight: 600;
  margin-left: 4px;
  transition: color 0.2s;
}

.cookie-banner__link:hover {
  color: var(--ink);
  text-decoration: underline;
}

.cookie-banner__actions {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
}

.cookie-banner__btn {
  padding: 10px 20px;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s;
  white-space: nowrap;
}

.cookie-banner__btn--ghost {
  background: transparent;
  border: 2px solid #e2e8f0;
  color: var(--ink);
}

.cookie-banner__btn--ghost:hover {
  border-color: var(--ink);
  background: #f8fafc;
}

.cookie-banner__btn--primary {
  background: var(--ink);
  border: 2px solid var(--ink);
  color: #fff;
}

.cookie-banner__btn--primary:hover {
  background: var(--brand);
  border-color: var(--brand);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(255, 106, 0, 0.2);
}

@media (max-width: 768px) {
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    padding: 20px;
  }

  .cookie-banner__actions {
    width: 100%;
  }

  .cookie-banner__btn {
    flex: 1;
    text-align: center;
  }
}

.sim-banner-overlay {
  position: fixed;
  inset: 0;
  z-index: var(--z-modal);
  display: grid;
  place-items: center;
  padding: 16px;
  background: rgba(2, 6, 23, var(--hmb-overlay, 0.6));
  backdrop-filter: blur(var(--hmb-blur, 8px));
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.sim-banner-overlay.is-visible {
  opacity: 1;
  visibility: visible;
}

.sim-banner {
  position: relative;
  width: min(850px, 100%);
  background: var(--hmb-bg, #0f172a);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
  transform: scale(0.94) translateY(20px);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  color: #fff;
}

.sim-banner-overlay.is-visible .sim-banner {
  transform: scale(1) translateY(0);
}

.sim-banner-content {
  display: grid;
  grid-template-columns: 1fr;
}

.sim-banner-content.has-image {
  grid-template-columns: 1.1fr 0.9fr;
}

.sim-banner-visual {
  position: relative;
  min-height: 380px;
  background: rgba(255, 255, 255, 0.05);
}

.sim-banner-visual img {
  width: 100%;
  height: 100%;
  display: block;
}

.sim-banner-text {
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  position: relative;
  z-index: 2;
}

.sim-banner-title {
  font-size: clamp(1.8rem, 4vw, 2.4rem);
  font-weight: 800;
  margin: 0 0 12px 0;
  line-height: 1.1;
  letter-spacing: -0.02em;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
}

.sim-banner-subtitle {
  font-size: 1.05rem;
  line-height: 1.5;
  margin: 0 0 28px 0;
  opacity: 0.95;
  font-weight: 400;
}

.btn-banner-cta {
  display: inline-block;
  padding: 12px 24px;
  background: #ffffff;
  color: #0f172a;
  font-weight: 700;
  border-radius: 10px;
  text-decoration: none;
  font-size: 1rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.2s, box-shadow 0.2s;
}

.btn-banner-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.25);
  background: #f8fafc;
}

.sim-banner-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #fff;
  cursor: pointer;
  z-index: 10;
  display: grid;
  place-items: center;
  transition: all 0.3s ease;
}

.sim-banner-close:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: rotate(90deg) scale(1.1);
}

@media (max-width: 768px) {
  .sim-banner-content.has-image {
    grid-template-columns: 1fr;
    grid-template-rows: 220px auto;
  }

  .sim-banner-visual {
    min-height: 220px;
  }

  .sim-banner-text {
    padding: 30px 20px;
    align-items: center;
    text-align: center;
  }

  .sim-banner-close {
    background: rgba(0, 0, 0, 0.4);
  }
}

@media(max-width:1024px) {
  .site-header {
    background: #fff;
    backdrop-filter: none;
  }

  .nav-toggle,
  #nav-toggle {
    display: inline-flex !important;
    position: absolute !important;
    right: 20px !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    margin: 0 !important;
  }

  .site-header .wrap {
    justify-content: space-between !important;
  }

  .nav {
    position: fixed;
    top: 12px;
    right: 12px;
    width: min(78vw, 290px);
    max-height: calc(100vh - 24px);
    overflow: auto;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 16px;
    box-shadow: -24px 16px 48px rgba(0, 0, 0, .18);
    padding: 56px 16px 16px;
    flex-direction: column;
    align-items: flex-start;
    z-index: calc(var(--z-overlay) + 20);
    transform: translateX(calc(100% + 16px));
    transition: transform .22s ease;
  }

  .nav.open {
    transform: translateX(0);
  }

  .nav.open .nav-close {
    display: inline-flex;
  }

  .hero__inner {
    align-items: flex-start !important;
    text-align: left !important;
    padding-bottom: 80px;
  }

  .hero__content {
    text-align: left !important;
    margin-left: 0 !important;
    margin-right: auto !important;
  }

  .hero__content p {
    text-align: left !important;
    margin-left: 0 !important;
  }

  .hero__actions {
    justify-content: flex-start !important;
  }

  .hero__note {
    text-align: left !important;
  }

  .hero__visual {
    justify-content: flex-start;
  }
}

@media(max-width:768px) {
  .cards {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .hero__title {
    font-size: 30px;
  }

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

  .sim-banner-content {
    grid-template-columns: 1fr;
  }

  .sim-banner-image {
    min-height: 200px;
  }
}

.et-modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 99999;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.et-modal-overlay.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.et-card {
  position: relative;
  width: 320px;
  background: #111;
  border-radius: 16px;
  padding: 3px;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.7);
  overflow: hidden;
  opacity: 0;
  transform: scale(0.9);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.et-modal-overlay.is-open .et-card {
  opacity: 1;
  transform: scale(1);
}

@keyframes rotate-border {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

.et-glow {
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: conic-gradient(transparent, transparent, transparent, #00f260, #0575e6);
  animation: rotate-border 4s linear infinite;
}

.et-content {
  position: relative;
  background: #1a1a1a;
  border-radius: 14px;
  padding: 30px 25px;
  z-index: 2;
  height: 100%;
  color: white;
  font-family: 'Inter', system-ui, sans-serif;
}

.et-close {
  position: absolute;
  top: 15px;
  right: 15px;
  background: none;
  border: none;
  padding: 0;
  color: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  font-size: 24px;
  line-height: 1;
  transition: color 0.2s;
}

.et-close:hover {
  color: #fff;
}

.et-header {
  text-align: center;
  margin-bottom: 20px;
}

.et-logo {
  width: 80px;
  height: auto;
  margin: 0 auto 10px auto;
  display: block;
  filter: drop-shadow(0 0 10px rgba(0, 242, 96, 0.3));
}

.et-label {
  color: rgba(255, 255, 255, 0.6);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-top: 8px;
}

.et-text {
  color: rgba(255, 255, 255, 0.85);
  font-size: 14px;
  text-align: center;
  line-height: 1.6;
  margin-bottom: 25px;
}

.et-links-grid {
  display: grid;
  gap: 10px;
}

.et-link {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.03);
  color: white;
  text-decoration: none;
  transition: all 0.2s ease;
  border: 1px solid rgba(255, 255, 255, 0.05);
  font-size: 13px;
  font-weight: 500;
}

.et-link:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.2);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  color: #fff;
}

.et-footer {
  margin-top: 25px;
  font-size: 10px;
  color: rgba(255, 255, 255, 0.25);
  text-align: center;
}

.page--about {
  padding-top: 60px;
  padding-bottom: 100px;
}

.page__intro {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 80px auto;
}

.page__intro h1 {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 800;
  color: var(--ink);
  letter-spacing: -0.03em;
  margin-bottom: 24px;
}

.page__intro .lead {
  font-size: 1.25rem;
  line-height: 1.6;
  color: var(--text-muted);
  font-weight: 400;
}

.about-cards {
  display: flex;
  flex-direction: column;
  gap: 120px;
}

.about-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-card:nth-child(even) .about-card__content {
  order: 2;
}

.about-card:nth-child(even) .about-card__media {
  order: 1;
}

.about-card__content h2 {
  font-size: 2rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 24px;
  position: relative;
  display: inline-block;
}

.about-card__content h2::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 60px;
  height: 4px;
  background: var(--brand);
  border-radius: 2px;
}

.about-card__content h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--ink);
  margin: 32px 0 12px 0;
}

.about-card__content p {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--text-main);
  margin-bottom: 16px;
}

.about-card__media {
  position: relative;
}

.about-card__media img {
  width: 100%;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
  transition: transform 0.4s ease;
  display: block;
}

.about-card__media:hover img {
  transform: scale(1.02);
}

.about-card__media::before {
  content: '';
  position: absolute;
  top: 20px;
  right: -20px;
  width: 100%;
  height: 100%;
  border: 2px solid var(--border);
  border-radius: 20px;
  z-index: -1;
  transition: transform 0.4s ease;
}

.about-card:nth-child(even) .about-card__media::before {
  right: auto;
  left: -20px;
}

.about-card__media:hover::before {
  transform: translate(10px, 10px);
}

.about-card:nth-child(even) .about-card__media:hover::before {
  transform: translate(-10px, 10px);
}

.page__list {
  list-style: none;
  padding: 0;
  margin-top: 24px;
  display: grid;
  gap: 20px;
}

.page__list li {
  position: relative;
  padding-left: 28px;
  font-size: 1rem;
  color: var(--text-main);
  line-height: 1.5;
}

.page__list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 8px;
  height: 8px;
  background-color: var(--brand);
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(255, 106, 0, 0.15);
}

.page__list li strong {
  color: var(--ink);
  font-weight: 700;
}

@media (max-width: 900px) {
  .page__intro h1 {
    font-size: 2.2rem;
  }

  .about-cards {
    gap: 60px;
  }

  .about-card {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .about-card:nth-child(even) .about-card__content {
    order: unset;
  }

  .about-card:nth-child(even) .about-card__media {
    order: unset;
  }

  .about-card__media::before {
    display: none;
  }

  .about-card__content h2 {
    font-size: 1.75rem;
  }
}

.page--about,
.page--services {
  padding-top: 60px;
  padding-bottom: 100px;
}

.page__list {
  list-style: none;
  padding: 0;
  margin: 24px 0;
  display: grid;
  gap: 16px;
}

.page__list li {
  position: relative;
  padding-left: 28px;
  font-size: 1rem;
  color: var(--text-main);
  line-height: 1.5;
}

.page__list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 8px;
  height: 8px;
  background-color: var(--brand);
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(255, 106, 0, 0.15);
}

.btn-outline {
  display: inline-block;
  margin-top: 16px;
  padding: 12px 28px;
  border: 2px solid var(--border);
  border-radius: 8px;
  color: var(--ink);
  font-weight: 700;
  text-decoration: none;
  transition: all 0.2s ease;
}

.btn-outline:hover {
  border-color: var(--brand);
  color: var(--brand);
  background: transparent;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

@media (max-width: 900px) {
  .page__intro h1 {
    font-size: 2.2rem;
  }

  .about-cards {
    gap: 60px;
  }

  .about-card {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .about-card:nth-child(even) .about-card__content {
    order: unset;
  }

  .about-card:nth-child(even) .about-card__media {
    order: unset;
  }

  .about-card__media::before {
    display: none;
  }

  .about-card__content h2 {
    font-size: 1.75rem;
  }
}

.page--blog {
  padding-top: 60px;
  padding-bottom: 80px;
  background-color: #f8fafc;
}

.blog-search {
  max-width: 600px;
  margin: 40px auto 60px;
}

.blog-search__form {
  position: relative;
  box-shadow: 0 10px 30px -5px rgba(0, 0, 0, 0.1);
  border-radius: 50px;
  background: #fff;
  transition: transform 0.2s, box-shadow 0.2s;
  padding: 6px;
}

.blog-search__form:focus-within {
  transform: translateY(-2px);
  box-shadow: 0 15px 35px -5px rgba(0, 0, 0, 0.12);
}

.blog-search__input-group {
  display: flex;
  align-items: center;
  width: 100%;
}

.blog-search__input {
  flex: 1;
  border: none;
  padding: 12px 24px;
  font-size: 1rem;
  background: transparent;
  border-radius: 50px;
  outline: none;
  color: var(--ink);
}

.blog-search__button {
  background: var(--ink);
  color: #fff;
  border: none;
  padding: 12px 24px;
  border-radius: 40px;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: background 0.2s;
  flex-shrink: 0;
}

.blog-search__button:hover {
  background: var(--brand);
}

.blog-search__results {
  text-align: center;
  margin-top: 16px;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 40px;
}

.blog-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}

.blog-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px -5px rgba(0, 0, 0, 0.1);
}

.blog-card__media {
  height: 220px;
  overflow: hidden;
  position: relative;
  display: block;
}

.blog-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.blog-card:hover .blog-card__media img {
  transform: scale(1.05);
}

.blog-card__content {
  padding: 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.blog-card__meta {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
  color: var(--text-muted);
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 0.5px;
  margin-bottom: 12px;
}

.blog-card__dot {
  color: var(--brand);
  font-weight: bold;
}

.blog-card__title {
  font-size: 1.25rem;
  font-weight: 800;
  margin: 0 0 12px;
  line-height: 1.3;
}

.blog-card__title a {
  color: var(--ink);
  text-decoration: none;
  transition: color 0.2s;
}

.blog-card__title a:hover {
  color: var(--brand);
}

.blog-card__excerpt {
  font-size: 0.95rem;
  color: var(--text-main);
  line-height: 1.6;
  margin-bottom: 24px;
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  opacity: 0.8;
}

.blog-card__link {
  font-weight: 700;
  color: var(--brand);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.9rem;
}

.blog-card__link:hover .blog-card__arrow {
  transform: translateX(4px);
}

.blog-card__arrow {
  transition: transform 0.2s;
}

.page--blog-post {
  padding-top: 40px;
  padding-bottom: 100px;
  background: #fff;
}

.blog-post-layout {
  max-width: 800px;
  margin: 0 auto;
}

.blog-post-card__media {
  border-radius: 20px;
  overflow: hidden;
  margin-bottom: 40px;
  box-shadow: 0 10px 40px -10px rgba(0, 0, 0, 0.15);
}

.blog-post-card__media img {
  width: 100%;
  height: auto;
  display: block;
}

.blog-post__breadcrumb {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 24px;
}

.blog-post__breadcrumb a {
  color: var(--text-muted);
  text-decoration: none;
}

.blog-post__breadcrumb a:hover {
  color: var(--brand);
}

.blog-post__back-link {
  display: inline-flex;
  align-items: center;
  font-weight: 700;
  color: var(--ink);
  text-decoration: none;
  transition: color 0.2s;
  margin-bottom: 20px;
}

.blog-post__back-link:hover {
  color: var(--brand);
}

.blog-post__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 24px;
  border-bottom: 1px solid var(--border);
  padding-bottom: 24px;
}

.blog-post__category {
  background: #fff3ea;
  color: var(--brand);
  padding: 4px 12px;
  border-radius: 20px;
  font-weight: 700;
  font-size: 0.8rem;
  text-transform: uppercase;
}

.blog-post__title {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 800;
  line-height: 1.15;
  color: var(--ink);
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}

.blog-post__excerpt {
  font-size: 1.25rem;
  line-height: 1.6;
  color: var(--text-main);
  font-weight: 500;
  margin-bottom: 40px;
  border-left: 4px solid var(--brand);
  padding-left: 20px;
}

.blog-post__content {
  font-size: 1.15rem;
  line-height: 1.8;
  color: #334155;
}

.blog-post__content h2 {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--ink);
  margin: 48px 0 20px;
}

.blog-post__content h3 {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--ink);
  margin: 32px 0 16px;
}

.blog-post__content p {
  margin-bottom: 24px;
}

.blog-post__content ul,
.blog-post__content ol {
  margin-bottom: 24px;
  padding-left: 24px;
}

.blog-post__content li {
  margin-bottom: 12px;
  padding-left: 8px;
}

.blog-post__content blockquote {
  background: #f8fafc;
  border-left: 4px solid var(--ink);
  padding: 24px;
  margin: 32px 0;
  font-style: italic;
  color: var(--text-main);
  border-radius: 0 8px 8px 0;
}

.blog-post__disclaimer {
  margin-top: 60px;
  padding: 20px;
  background: #fdf2f8;
  border: 1px solid #fbcfe8;
  border-radius: 12px;
  font-size: 0.9rem;
  color: #be185d;
  line-height: 1.5;
}

.blog-post__navigation {
  margin-top: 40px;
  padding-top: 40px;
  border-top: 1px solid var(--border);
}

@media (max-width: 768px) {
  .blog-search__input-group {
    flex-direction: column;
    width: 100%;
  }

  .blog-search__form {
    padding: 12px;
    border-radius: 24px;
  }

  .blog-search__button {
    width: 100%;
    justify-content: center;
    margin-top: 12px;
  }

  .blog-search__input {
    padding: 12px 0;
    text-align: center;
    width: 100%;
  }

  .blog-search__clear {
    margin-top: 12px;
    display: inline-block;
  }

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

  .blog-post__title {
    font-size: 2rem;
  }

  .blog-post-layout {
    padding: 0 16px;
  }
}

.page--contact {
  padding-top: 60px;
  padding-bottom: 100px;
  background-color: #fff;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 60px;
  align-items: start;
}

.contact-form h2 {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--ink);
  margin-bottom: 32px;
}

.form-grid {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 32px;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-field label {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--ink);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.form-field input,
.form-field textarea {
  width: 100%;
  padding: 16px;
  background-color: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  font-family: inherit;
  font-size: 1rem;
  color: var(--ink);
  transition: all 0.2s ease;
}

.form-field input:focus,
.form-field textarea:focus {
  outline: none;
  background-color: #fff;
  border-color: var(--brand);
  box-shadow: 0 0 0 4px rgba(255, 106, 0, 0.1);
}

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

.contact-main button[type="submit"] {
  background-color: var(--ink);
  color: #fff;
  border: none;
}

.contact-main button[type="submit"]:hover {
  background-color: var(--brand);
  transform: translateY(-2px);
}

.contact-info-box {
  background: #f8fafc;
  padding: 40px;
  border-radius: 24px;
  position: sticky;
  top: 100px;
  border: 1px solid rgba(0, 0, 0, 0.03);
}

.contact-info-box h2 {
  font-size: 1.4rem;
  margin-bottom: 32px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  color: var(--ink);
}

.contact-item {
  display: flex;
  gap: 16px;
  margin-bottom: 24px;
}

.contact-item .icon {
  font-size: 1.2rem;
  margin-top: 2px;
}

.contact-item h3 {
  font-size: 0.85rem;
  color: var(--text-muted);
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 0.5px;
  margin: 0 0 4px 0;
}

.contact-item p {
  font-size: 1rem;
  font-weight: 500;
  color: var(--ink);
  line-height: 1.5;
  margin: 0;
}

.contact-item a {
  color: var(--ink);
  text-decoration: none;
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
  transition: all 0.2s;
}

.contact-item a:hover {
  color: var(--brand);
  border-color: var(--brand);
}

.contact-map-wrapper {
  margin-top: 32px;
  border-radius: 16px;
  overflow: hidden;
  height: 220px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  border: 4px solid #fff;
}

@media (max-width: 900px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .contact-info-box {
    position: static;
    padding: 24px;
  }
}

.et-calc-page {
  padding-top: 60px;
  padding-bottom: 100px;
  background-color: #f1f5f9;
}

.et-calc-grid {
  display: grid;
  gap: 30px;
  max-width: 1100px;
  margin: 0 auto;
  align-items: start;
}

@media (min-width: 900px) {
  .et-calc-grid:has(.et-calc-results-box) {
    grid-template-columns: 1.2fr 0.8fr;
  }
}

.et-calc-grid {
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
}

.et-calc-card {
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 10px 40px -10px rgba(0, 0, 0, 0.06);
  border: 1px solid #fff;
  transition: transform 0.3s ease;
  overflow: hidden;
}

.et-calc-hero-img {
  position: relative;
  width: 100%;
  height: 220px;
  background: #e2e8f0;
}

.et-calc-hero-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.3s ease;
}

.et-calc-content {
  padding: 32px;
}

.et-calc-title-hero {
  margin-bottom: 24px;
}

.et-calc-title-hero h2 {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--ink);
  margin: 0 0 4px 0;
}

.et-calc-title-hero p {
  font-size: 1rem;
  color: var(--text-muted);
  margin: 0;
}

.et-form-group {
  margin-bottom: 24px;
}

.et-form-group label {
  display: block;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 8px;
  text-transform: uppercase;
}

.et-calc-form select,
.et-calc-form input {
  width: 100%;
  padding: 14px 16px;
  border: 2px solid #f1f5f9;
  border-radius: 12px;
  font-size: 1rem;
  color: var(--ink);
  font-weight: 500;
  background-color: #fcfcfc;
  transition: all 0.2s;
}

.et-calc-form select:focus,
.et-calc-form input:focus {
  border-color: var(--brand);
  background: #fff;
  outline: none;
  box-shadow: 0 4px 12px rgba(255, 106, 0, 0.1);
}

.et-error-msg {
  color: #ef4444;
  font-size: 0.85rem;
  margin-top: 6px;
  display: block;
}

.et-btn-calc {
  width: 100%;
  padding: 16px;
  background: var(--ink);
  color: #fff;
  border: none;
  border-radius: 12px;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s;
}

.et-btn-calc:hover {
  background: var(--brand);
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.et-calc-note {
  margin-top: 24px;
  padding: 16px;
  background: #fff7ed;
  color: #9a3412;
  border-radius: 12px;
  font-size: 0.9rem;
  line-height: 1.5;
}

.et-calc-results-box {
  background: #1e293b;
  color: #fff;
  padding: 32px;
}

.et-results-header {
  text-align: center;
  margin-bottom: 32px;
}

.et-results-header h2 {
  font-size: 1.2rem;
  opacity: 0.7;
  font-weight: 600;
  margin-bottom: 12px;
}

.et-summary {
  background: rgba(255, 255, 255, 0.1);
  padding: 12px 20px;
  border-radius: 50px;
  display: inline-block;
}

.et-summary strong {
  color: var(--brand);
}

.et-results-list {
  list-style: none;
  padding: 0;
  margin: 0 0 32px 0;
}

.et-results-list li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.et-results-list li:last-child {
  border-bottom: none;
}

.et-mat-name {
  font-size: 1rem;
  color: #e2e8f0;
}

.et-mat-qty {
  font-size: 1.3rem;
  font-weight: 800;
  color: #fff;
}

.et-mat-qty small {
  font-size: 0.8rem;
  font-weight: 400;
  opacity: 0.6;
  margin-left: 4px;
}

.et-disclaimer {
  font-size: 0.8rem;
  text-align: center;
  opacity: 0.5;
  margin-bottom: 24px;
}

.et-btn-wapp {
  display: block;
  width: 100%;
  padding: 16px;
  background: #22c55e;
  color: #fff;
  text-align: center;
  border-radius: 12px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.2s;
}

.et-btn-wapp:hover {
  background: #16a34a;
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(34, 197, 94, 0.3);
}

.et-alert {
  padding: 12px;
  border-radius: 8px;
  margin-bottom: 20px;
  font-size: 0.9rem;
}

.et-alert--error {
  background: #fee2e2;
  color: #b91c1c;
}

@media (max-width: 900px) {
  .et-calc-grid {
    grid-template-columns: 1fr;
  }

  .et-calc-results-box {
    order: -1;
  }

  .et-calc-hero-img {
    height: 180px;
  }
}

.page--legal {
  padding-top: 60px;
  padding-bottom: 100px;
  background-color: #f1f5f9;
}

.legal-container {
  max-width: 800px;
  margin: 0 auto;
}

.legal-doc {
  background: #fff;
  padding: 60px;
  border-radius: 4px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  border: 1px solid #e2e8f0;
}

.legal-header {
  margin-bottom: 40px;
}

.legal-date {
  font-size: 0.85rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
  display: block;
  margin-bottom: 16px;
}

.legal-header hr {
  border: 0;
  height: 2px;
  background: var(--brand);
  width: 40px;
  margin: 0;
}

.legal-body {
  font-family: 'Inter', sans-serif;
  color: var(--text-main);
}

.legal-body h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--ink);
  margin: 40px 0 16px 0;
}

.legal-body h3:first-child {
  margin-top: 0;
}

.legal-body p {
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 24px;
  color: #475569;
  text-align: justify;
}

.legal-footer {
  margin-top: 60px;
  padding-top: 30px;
  border-top: 1px solid #f1f5f9;
  font-size: 0.9rem;
  color: var(--text-muted);
  text-align: center;
}

.legal-footer a {
  color: var(--brand);
  text-decoration: none;
  font-weight: 600;
}

@media (max-width: 768px) {
  .legal-doc {
    padding: 32px 24px;
  }

  .legal-body p {
    text-align: left;
    font-size: 0.95rem;
  }
}