:root {
  --yellow: #f2b705;
  --yellow-strong: #ffca1a;
  --black: #08090b;
  --ink: #15171b;
  --gray-900: #22252a;
  --gray-700: #4f545c;
  --gray-300: #d9dde2;
  --gray-100: #f3f4f6;
  --white: #ffffff;
  --radius: 8px;
  --shadow: 0 24px 70px rgba(0, 0, 0, .22);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, Arial, sans-serif;
  color: var(--ink);
  background: var(--white);
  letter-spacing: 0;
}

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

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

button {
  font: inherit;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  min-height: 108px;
  padding: 0;
  color: var(--white);
  background: rgba(8, 9, 11, .98);
  border-bottom: 1px solid rgba(242, 183, 5, .18);
  box-shadow: 0 18px 46px rgba(0, 0, 0, .22);
}

.ticker-bar {
  width: 100%;
  height: 32px;
  overflow: hidden;
  color: rgba(255, 255, 255, .9);
  background: #050607;
  border-bottom: 1px solid rgba(255, 255, 255, .08);
  white-space: nowrap;
}

.ticker-track {
  display: inline-flex;
  align-items: center;
  gap: 24px;
  min-width: max-content;
  height: 100%;
  animation: ticker-marquee 34s linear infinite;
  will-change: transform;
}

.ticker-track span {
  color: rgba(255, 255, 255, .82);
  font-size: 15px;
  font-weight: 900;
}

.ticker-track b {
  display: block;
  width: 7px;
  height: 7px;
  flex: 0 0 auto;
  background: var(--yellow);
  box-shadow: 0 0 18px rgba(242, 183, 5, .55);
}

.ticker-bar:hover .ticker-track {
  animation-play-state: paused;
}

.nav-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: min(100%, 1560px);
  min-height: 76px;
  margin: 0 auto;
  padding: 14px clamp(18px, 4vw, 48px);
  background: linear-gradient(180deg, rgba(255, 255, 255, .035), rgba(255, 255, 255, 0));
}

@keyframes ticker-marquee {
  from {
    transform: translateX(0);
  }

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-width: max-content;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 6px;
  color: var(--black);
  background: linear-gradient(135deg, var(--yellow), var(--yellow-strong));
  box-shadow: 0 0 0 1px rgba(255, 255, 255, .18), 0 14px 34px rgba(242, 183, 5, .18);
  font-weight: 900;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-size: 18px;
  letter-spacing: .02em;
}

.brand small {
  margin-top: 2px;
  color: rgba(255, 255, 255, .62);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  min-height: 44px;
  padding: 5px;
  border: 1px solid rgba(255, 255, 255, .11);
  border-radius: 999px;
  background: rgba(255, 255, 255, .055);
  font-size: 14px;
  color: rgba(255, 255, 255, .74);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .06);
}

.main-nav a,
.mega-trigger {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 15px;
  border: 0;
  border-radius: 999px;
  color: inherit;
  background: transparent;
  cursor: pointer;
  font-weight: 800;
  transition: color 180ms ease, background 180ms ease;
}

.main-nav a:hover,
.nav-mega:hover .mega-trigger,
.nav-mega.is-open .mega-trigger {
  color: var(--black);
  background: var(--yellow);
}

.nav-mega {
  position: relative;
}

.mega-trigger {
  gap: 7px;
  font-size: 14px;
}

.mega-trigger b {
  font-size: 13px;
  line-height: 1;
}

.mega-panel {
  position: absolute;
  top: calc(100% + 15px);
  left: 50%;
  z-index: 35;
  display: grid;
  grid-template-columns: 250px minmax(0, 1fr);
  gap: 18px;
  width: min(720px, calc(100vw - 36px));
  padding: 18px;
  border: 1px solid rgba(242, 183, 5, .24);
  border-radius: 12px;
  color: var(--white);
  background: rgba(8, 9, 11, .98);
  box-shadow: 0 24px 70px rgba(0, 0, 0, .4);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 10px);
  visibility: hidden;
  transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
}

.nav-mega:hover .mega-panel,
.nav-mega.is-open .mega-panel {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 0);
  visibility: visible;
}

.mega-intro {
  padding: 18px;
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(242, 183, 5, .18), rgba(255, 255, 255, .04));
}

.mega-intro strong {
  display: block;
  color: var(--yellow);
  font-size: 18px;
}

.mega-intro p {
  margin: 10px 0 0;
  color: rgba(255, 255, 255, .72);
  font-size: 14px;
  line-height: 1.55;
}

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

.mega-links a {
  display: block;
  min-height: 0;
  padding: 13px 14px;
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 8px;
  background: rgba(255, 255, 255, .045);
}

.mega-links a:hover {
  color: var(--white);
  border-color: rgba(242, 183, 5, .55);
  background: rgba(242, 183, 5, .12);
}

.mega-links span,
.mega-links small {
  display: block;
}

.mega-links span {
  color: var(--white);
  font-weight: 900;
}

.mega-links small {
  margin-top: 5px;
  color: rgba(255, 255, 255, .58);
  font-size: 12px;
  line-height: 1.45;
}

.header-actions {
  display: flex;
  gap: 6px;
  padding: 4px;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 999px;
  background: rgba(255, 255, 255, .05);
}

.menu-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  width: 46px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 6px;
  background: rgba(255, 255, 255, .06);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 3px 0;
  border-radius: 999px;
  background: var(--white);
  transition: transform 220ms ease, opacity 220ms ease, background 220ms ease;
}

.site-header.menu-open .menu-toggle {
  border-color: rgba(242, 183, 5, .5);
  background: rgba(242, 183, 5, .14);
}

.site-header.menu-open .menu-toggle span:first-child {
  transform: translateY(8px) rotate(45deg);
}

.site-header.menu-open .menu-toggle span:nth-child(2) {
  opacity: 0;
}

.site-header.menu-open .menu-toggle span:last-child {
  transform: translateY(-8px) rotate(-45deg);
  background: var(--yellow);
}

.lang-btn {
  width: 42px;
  height: 34px;
  border: 0;
  border-radius: 999px;
  color: rgba(255, 255, 255, .72);
  background: transparent;
  cursor: pointer;
  font-weight: 800;
}

.lang-btn.is-active {
  color: var(--black);
  background: var(--yellow);
}

.hero {
  position: relative;
  min-height: 92vh;
  color: var(--white);
  background: var(--black);
  overflow: hidden;
}

.slides,
.slide {
  position: absolute;
  inset: 0;
}

.slide {
  display: grid;
  align-items: end;
  padding: 160px clamp(20px, 6vw, 80px) 120px;
  opacity: 0;
  overflow: hidden;
  transform: scale(1.015);
  transition: opacity 900ms ease, transform 1200ms ease;
  background: var(--black);
}

.slide::before,
.slide::after {
  content: "";
  position: absolute;
  inset: 0;
}

.slide::before {
  inset: -5%;
  background-image: var(--bg);
  background-size: cover;
  background-position: center;
  filter: saturate(.86) brightness(.78);
  transform: scale(1.1) translateX(-2%);
  transition: transform 1400ms ease, filter 1000ms ease;
}

.slide::after {
  background:
    radial-gradient(circle at 22% 78%, rgba(242, 183, 5, .18), transparent 28%),
    linear-gradient(90deg, rgba(8, 9, 11, .94) 0%, rgba(8, 9, 11, .68) 38%, rgba(8, 9, 11, .18) 74%),
    linear-gradient(180deg, rgba(8, 9, 11, .12), rgba(8, 9, 11, .38));
}

.slide.is-active {
  opacity: 1;
  transform: scale(1);
}

.slide.is-active::before {
  filter: saturate(1) brightness(.9);
  transform: scale(1.02) translateX(0);
  animation: hero-kenburns 5600ms ease-in-out forwards;
}

.slide-copy {
  position: relative;
  z-index: 2;
  max-width: 760px;
  opacity: 0;
  transform: translateY(28px);
}

.slide.is-active .slide-copy {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 760ms ease 220ms, transform 760ms ease 220ms;
}

.slide.is-active .slide-copy span,
.slide.is-active .slide-copy h1,
.slide.is-active .slide-copy h2,
.slide.is-active .slide-copy p,
.slide.is-active .slide-copy .primary-btn {
  animation: hero-copy-in 820ms cubic-bezier(.18, .78, .2, 1) both;
}

.slide.is-active .slide-copy h1,
.slide.is-active .slide-copy h2 {
  animation-delay: 120ms;
}

.slide.is-active .slide-copy p {
  animation-delay: 230ms;
}

.slide.is-active .slide-copy .primary-btn {
  animation-delay: 340ms;
}

.slide-copy span,
.kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--yellow);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.slide-copy span::before,
.kicker::before {
  content: "";
  width: 38px;
  height: 2px;
  background: currentColor;
}

.slide-copy h1,
.slide-copy h2 {
  margin: 18px 0;
  max-width: 760px;
  font-size: clamp(44px, 7vw, 96px);
  line-height: .95;
  letter-spacing: 0;
}

.slide-copy p {
  max-width: 620px;
  margin: 0 0 30px;
  color: rgba(255, 255, 255, .82);
  font-size: clamp(17px, 2vw, 21px);
  line-height: 1.65;
}

.primary-btn,
.whatsapp-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 0 22px;
  border: 0;
  border-radius: 6px;
  color: var(--black);
  background: var(--yellow);
  font-weight: 900;
  box-shadow: 0 16px 34px rgba(242, 183, 5, .24);
  cursor: pointer;
}

.primary-btn:hover,
.whatsapp-btn:hover {
  background: var(--yellow-strong);
}

.slider-controls {
  position: absolute;
  right: clamp(18px, 5vw, 64px);
  bottom: 38px;
  z-index: 5;
  display: flex;
  align-items: center;
  gap: 14px;
}

.slider-arrow {
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255, 255, 255, .22);
  border-radius: 50%;
  color: var(--white);
  background: rgba(8, 9, 11, .42);
  cursor: pointer;
  font-size: 30px;
}

.slider-dots {
  display: flex;
  gap: 9px;
}

.slider-dots button {
  position: relative;
  overflow: hidden;
  width: 34px;
  height: 4px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, .32);
  cursor: pointer;
}

.slider-dots button.is-active {
  background: rgba(255, 255, 255, .22);
}

.slider-dots button.is-active::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: var(--yellow);
  transform-origin: left;
  animation: dot-progress 5600ms linear forwards;
}

@keyframes hero-kenburns {
  0% {
    transform: scale(1.1) translateX(-2%);
  }

  100% {
    transform: scale(1.02) translateX(1.2%);
  }
}

@keyframes hero-copy-in {
  from {
    opacity: 0;
    transform: translateY(24px);
    filter: blur(6px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
  }
}

@keyframes dot-progress {
  from {
    transform: scaleX(0);
  }

  to {
    transform: scaleX(1);
  }
}

.band {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--black);
}

.stats div {
  position: relative;
  overflow: hidden;
  padding: 34px clamp(18px, 4vw, 54px);
  background: var(--gray-900);
  color: var(--white);
  transform: translateY(18px);
  opacity: 0;
  transition: transform 700ms ease, opacity 700ms ease, background 350ms ease;
}

.stats div::after {
  content: "";
  position: absolute;
  inset: 0;
  transform: translateX(-120%);
  background: linear-gradient(110deg, transparent 20%, rgba(242, 183, 5, .18), transparent 70%);
}

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

.stats.is-visible div:nth-child(1) {
  transition-delay: 0ms;
}

.stats.is-visible div:nth-child(2) {
  transition-delay: 110ms;
}

.stats.is-visible div:nth-child(3) {
  transition-delay: 220ms;
}

.stats.is-visible div:nth-child(4) {
  transition-delay: 330ms;
}

.stats.is-visible div::after {
  animation: stat-shine 1200ms ease forwards;
}

.stats div:hover {
  background: #2a2e34;
}

.stats strong {
  display: block;
  color: var(--yellow);
  font-size: clamp(34px, 4vw, 54px);
  line-height: 1;
  text-shadow: 0 0 24px rgba(242, 183, 5, .14);
}

.stats span {
  display: block;
  margin-top: 10px;
  color: rgba(255, 255, 255, .72);
}

@keyframes stat-shine {
  to {
    transform: translateX(120%);
  }
}

.testimonials {
  overflow: hidden;
  padding: 78px 0 88px;
  color: var(--white);
  background:
    radial-gradient(circle at 20% 20%, rgba(242, 183, 5, .13), transparent 28%),
    linear-gradient(135deg, #08090b, #1d2025);
}

.testimonials .section-head {
  max-width: 920px;
  margin: 0 0 36px;
  padding: 0 clamp(20px, 6vw, 80px);
}

.testimonials .section-head h2 {
  color: var(--white);
}

.testimonial-marquee {
  overflow: hidden;
  width: 100%;
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.testimonial-track {
  display: flex;
  gap: 18px;
  width: max-content;
  animation: testimonial-right 48s linear infinite;
  will-change: transform;
}

.testimonial-marquee:hover .testimonial-track {
  animation-play-state: paused;
}

.testimonial-track article {
  width: clamp(300px, 28vw, 430px);
  min-height: 230px;
  padding: 26px;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .06);
  box-shadow: 0 18px 48px rgba(0, 0, 0, .18);
}

.testimonial-track article::before {
  content: "“";
  display: block;
  height: 32px;
  color: var(--yellow);
  font-size: 58px;
  font-weight: 900;
  line-height: .7;
}

.testimonial-track strong {
  display: block;
  margin-top: 12px;
  font-size: 20px;
}

.testimonial-track span {
  display: block;
  margin-top: 4px;
  color: var(--yellow);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.testimonial-track p {
  margin: 18px 0 0;
  color: rgba(255, 255, 255, .76);
  line-height: 1.72;
}

@keyframes testimonial-right {
  from {
    transform: translateX(-50%);
  }

  to {
    transform: translateX(0);
  }
}

.section {
  padding: 92px clamp(20px, 6vw, 80px);
}

.section-head {
  max-width: 850px;
  margin-bottom: 42px;
}

.section-head h2,
.split h2,
.contact-band h2 {
  margin: 14px 0 0;
  font-size: clamp(34px, 5vw, 64px);
  line-height: 1.02;
}

.section-head p,
.rich-copy p,
.legal p,
.contact-band p {
  color: var(--gray-700);
  font-size: 17px;
  line-height: 1.8;
}

.service-grid,
.blog-grid,
.legal-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.service-grid article,
.blog-card,
.legal-grid article {
  border: 1px solid var(--gray-300);
  border-radius: var(--radius);
  background: var(--white);
}

.service-grid article {
  min-height: 260px;
  padding: 28px;
}

.service-thumb {
  width: 100%;
  height: 96px;
  margin-bottom: 22px;
  border-radius: 6px;
  object-fit: cover;
  filter: saturate(.95) contrast(1.04);
}

.service-grid span {
  color: var(--yellow);
  font-weight: 900;
}

.service-grid h3,
.timeline h3,
.legal h3,
.blog-card h3 {
  margin: 18px 0 10px;
  font-size: 22px;
}

.service-grid p,
.timeline p,
.blog-card p {
  color: var(--gray-700);
  line-height: 1.72;
}

.legal-grid .read-more {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  margin-top: 10px;
  padding: 0 16px;
  border-radius: 6px;
  color: var(--black);
  background: var(--yellow);
  font-weight: 900;
}

.legal-grid .read-more:hover {
  background: var(--yellow-strong);
}

.dark {
  color: var(--white);
  background: var(--black);
}

.dark .section-head p,
.dark p {
  color: rgba(255, 255, 255, .72);
}

.timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(255, 255, 255, .12);
}

.timeline article {
  padding: 32px 26px;
  background: var(--gray-900);
}

.timeline b {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  color: var(--black);
  background: var(--yellow);
}

.split {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: clamp(28px, 6vw, 84px);
  align-items: start;
}

.rich-copy {
  padding-top: 8px;
}

.blog-card {
  overflow: hidden;
  box-shadow: 0 14px 38px rgba(0, 0, 0, .07);
}

.blog-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.blog-card div {
  padding: 22px;
}

.blog-card span {
  color: var(--yellow);
  font-weight: 900;
  font-size: 13px;
}

.blog-card .read-more {
  display: inline-flex;
  margin-top: 10px;
  padding: 0;
  color: var(--ink);
  background: transparent;
  font-weight: 900;
  border-bottom: 2px solid var(--yellow);
}

.blog-page {
  padding-top: 154px;
  background: var(--gray-100);
}

.blog-article {
  max-width: 1120px;
  margin: 0 auto;
  padding: 56px clamp(20px, 5vw, 70px) 92px;
  background: var(--white);
}

.blog-article-hero {
  width: 100%;
  aspect-ratio: 16 / 7;
  border-radius: var(--radius);
  object-fit: cover;
  box-shadow: 0 18px 50px rgba(0, 0, 0, .12);
}

.blog-article-meta {
  display: inline-flex;
  margin-top: 28px;
  color: var(--yellow);
  font-size: 14px;
  font-weight: 900;
  text-transform: uppercase;
}

.blog-article h1 {
  max-width: 880px;
  margin: 14px 0 18px;
  font-size: clamp(38px, 5vw, 68px);
  line-height: 1.04;
}

.blog-article-lead {
  max-width: 820px;
  margin: 0 0 34px;
  color: var(--gray-700);
  font-size: 21px;
  line-height: 1.7;
}

.blog-article-body {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 260px;
  gap: clamp(28px, 5vw, 60px);
  align-items: start;
}

.blog-article-body p {
  margin: 0 0 24px;
  color: var(--gray-700);
  font-size: 18px;
  line-height: 1.9;
}

.blog-side-card {
  position: sticky;
  top: 132px;
  padding: 18px;
  border: 1px solid var(--gray-300);
  border-radius: var(--radius);
  background: #fbfbfc;
}

.blog-side-card img {
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 6px;
  object-fit: cover;
}

.blog-side-card p {
  margin: 14px 0 0;
  color: var(--ink);
  font-size: 15px;
  font-weight: 800;
  line-height: 1.5;
}

.back-link {
  display: inline-flex;
  margin-bottom: 26px;
  color: var(--ink);
  border-bottom: 2px solid var(--yellow);
  font-weight: 900;
}

.legal-page {
  padding-top: 154px;
  background: var(--gray-100);
}

.legal-article {
  max-width: 1040px;
  margin: 0 auto;
  padding: 58px clamp(20px, 5vw, 76px) 96px;
  background: var(--white);
}

.legal-article-meta {
  display: inline-flex;
  color: var(--yellow);
  font-size: 14px;
  font-weight: 900;
  text-transform: uppercase;
}

.legal-article h1 {
  max-width: 850px;
  margin: 14px 0 18px;
  font-size: clamp(40px, 5vw, 70px);
  line-height: 1.02;
}

.legal-article-lead {
  max-width: 820px;
  margin: 0 0 34px;
  color: var(--gray-700);
  font-size: 21px;
  line-height: 1.72;
}

.legal-section-list {
  display: grid;
  gap: 16px;
}

.legal-section {
  padding: clamp(22px, 4vw, 34px);
  border: 1px solid var(--gray-300);
  border-left: 5px solid var(--yellow);
  border-radius: var(--radius);
  background: #fbfbfc;
}

.legal-section h2 {
  margin: 0 0 12px;
  font-size: clamp(22px, 3vw, 30px);
}

.legal-section p {
  margin: 0;
  color: var(--gray-700);
  font-size: 18px;
  line-height: 1.86;
}

.corporate-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 330px;
  gap: clamp(22px, 4vw, 42px);
  align-items: start;
}

.company-info-card {
  position: sticky;
  top: 136px;
  padding: 24px;
  border: 1px solid rgba(242, 183, 5, .35);
  border-radius: var(--radius);
  background: linear-gradient(180deg, #111317, #08090b);
  color: var(--white);
  box-shadow: 0 18px 44px rgba(0, 0, 0, .16);
}

.company-info-card h2 {
  margin: 0 0 18px;
  color: var(--yellow);
  font-size: 23px;
}

.company-info-card dl {
  margin: 0;
  padding: 14px 0;
  border-top: 1px solid rgba(255, 255, 255, .1);
}

.company-info-card dt {
  color: rgba(255, 255, 255, .55);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.company-info-card dd {
  margin: 5px 0 0;
  color: rgba(255, 255, 255, .88);
  font-size: 15px;
  font-weight: 800;
  line-height: 1.5;
}

.company-whatsapp {
  width: 100%;
  margin-top: 18px;
}

.faq {
  background: var(--gray-100);
}

.faq-list {
  max-width: 980px;
}

details {
  border-top: 1px solid var(--gray-300);
  background: transparent;
}

details:last-child {
  border-bottom: 1px solid var(--gray-300);
}

summary {
  cursor: pointer;
  padding: 24px 0;
  font-weight: 900;
  font-size: 20px;
}

details p {
  margin: -4px 0 24px;
  max-width: 760px;
  color: var(--gray-700);
  line-height: 1.8;
}

.legal-grid article {
  padding: 26px;
  background: #fbfbfc;
}

.contact-band {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 30px;
  align-items: center;
  margin: 0 clamp(20px, 6vw, 80px) 92px;
  padding: 48px;
  border-radius: var(--radius);
  color: var(--white);
  background: linear-gradient(135deg, var(--black), #30343a);
  box-shadow: var(--shadow);
}

.contact-band p {
  max-width: 720px;
  color: rgba(255, 255, 255, .74);
}

.whatsapp-btn {
  min-width: 280px;
  min-height: 58px;
  white-space: normal;
  text-align: center;
}

.site-footer {
  display: grid;
  grid-template-columns: 1.6fr repeat(3, 1fr);
  gap: 36px;
  padding: 64px clamp(20px, 6vw, 80px) 28px;
  color: var(--white);
  background: var(--black);
}

.site-footer h3 {
  margin: 0 0 16px;
  color: var(--yellow);
}

.site-footer a,
.site-footer span {
  display: block;
  margin: 11px 0;
  color: rgba(255, 255, 255, .72);
}

.footer-brand p {
  max-width: 470px;
  color: rgba(255, 255, 255, .72);
  line-height: 1.75;
}

.copyright {
  grid-column: 1 / -1;
  margin: 22px 0 0;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, .12);
  color: rgba(255, 255, 255, .58);
}

.cookie-banner {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 30;
  display: none;
  grid-template-columns: 36px minmax(0, 1fr) auto;
  align-items: start;
  gap: 14px;
  width: min(760px, calc(100vw - 44px));
  min-height: 0;
  padding: 14px;
  border: 1px solid rgba(242, 183, 5, .26);
  border-radius: 12px;
  color: var(--white);
  background:
    radial-gradient(circle at 8% 35%, rgba(242, 183, 5, .16), transparent 22%),
    radial-gradient(circle at 92% 45%, rgba(242, 183, 5, .12), transparent 24%),
    linear-gradient(90deg, rgba(22, 18, 7, .98), rgba(8, 9, 11, .99) 45%, rgba(8, 9, 11, .98));
  box-shadow: 0 18px 56px rgba(0, 0, 0, .42);
}

.cookie-banner.is-visible {
  display: grid;
}

.cookie-icon {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  flex: 0 0 auto;
  margin-top: 5px;
  border-radius: 8px;
  color: var(--black);
  background: var(--yellow);
  box-shadow: 0 0 24px rgba(242, 183, 5, .28);
  font-size: 20px;
  font-weight: 900;
  line-height: 1;
}

.cookie-content {
  min-width: 0;
  flex: 1 1 auto;
}

.cookie-content h2 {
  margin: 0;
  font-size: 22px;
  line-height: 1.05;
}

.cookie-banner p {
  margin: 0;
  color: rgba(255, 255, 255, .72);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.35;
}

.cookie-lead {
  margin-top: 4px;
}

.cookie-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin: 8px 0 6px;
}

.cookie-tabs span {
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  padding: 0 10px;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 999px;
  color: rgba(255, 255, 255, .72);
  background: rgba(255, 255, 255, .08);
  font-size: 12px;
  font-weight: 900;
}

.cookie-tabs span.is-active {
  border-color: var(--yellow);
  color: var(--black);
  background: var(--yellow);
}

.cookie-summary {
  display: none;
}

.cookie-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 4px;
}

.cookie-links a {
  color: var(--yellow);
  border-bottom: 1px solid rgba(242, 183, 5, .55);
  font-size: 12px;
  font-weight: 900;
}

.cookie-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  flex: 0 0 auto;
  padding-top: 36px;
}

.cookie-actions button {
  min-width: 92px;
  min-height: 40px;
  padding: 0 14px;
  border-radius: 8px;
  cursor: pointer;
  color: var(--white);
  font-size: 14px;
  font-weight: 900;
}

.cookie-reject {
  border: 2px solid rgba(255, 255, 255, .22);
  background: rgba(255, 255, 255, .06);
}

.cookie-accept {
  border: 2px solid var(--yellow);
  color: var(--black);
  background: var(--yellow);
  box-shadow: 0 12px 28px rgba(242, 183, 5, .2);
}

.cookie-reject:hover {
  border-color: rgba(255, 255, 255, .44);
  background: rgba(255, 255, 255, .12);
}

.cookie-accept:hover {
  background: var(--yellow-strong);
  border-color: var(--yellow-strong);
}

.floating-whatsapp {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 25;
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  color: var(--black);
  background: var(--yellow);
  font-size: 24px;
  font-weight: 900;
  box-shadow: 0 18px 42px rgba(0, 0, 0, .28);
}

body.cookies-open .floating-whatsapp {
  display: none;
}

.blog-modal {
  width: min(940px, calc(100vw - 28px));
  max-height: calc(100vh - 36px);
  padding: 0;
  border: 0;
  border-radius: var(--radius);
  overflow: auto;
  box-shadow: var(--shadow);
}

.blog-modal::backdrop {
  background: rgba(0, 0, 0, .72);
}

.blog-modal img {
  width: 100%;
  max-height: 430px;
  object-fit: cover;
}

.modal-body {
  padding: clamp(24px, 5vw, 48px);
}

.modal-body span {
  color: var(--yellow);
  font-weight: 900;
}

.modal-body h2 {
  margin: 12px 0 20px;
  font-size: clamp(28px, 4vw, 48px);
  line-height: 1.08;
}

.modal-body p {
  color: var(--gray-700);
  font-size: 17px;
  line-height: 1.86;
}

.modal-close {
  position: sticky;
  top: 12px;
  float: right;
  z-index: 2;
  width: 42px;
  height: 42px;
  margin: 12px 12px -54px 0;
  border: 0;
  border-radius: 50%;
  color: var(--white);
  background: rgba(8, 9, 11, .78);
  cursor: pointer;
  font-size: 26px;
}

@media (max-width: 980px) {
  .site-header {
    min-height: 104px;
  }

  .nav-shell {
    position: relative;
    flex-wrap: nowrap;
    min-height: 72px;
    padding: 12px 18px;
  }

  .brand {
    min-width: 0;
  }

  .brand span:last-child {
    min-width: 0;
  }

  .menu-toggle {
    display: inline-flex;
    flex: 0 0 auto;
    order: 2;
    margin-left: auto;
  }

  .main-nav {
    position: absolute;
    top: calc(100% + 10px);
    right: 18px;
    left: 18px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
    min-height: 0;
    padding: 12px;
    border-radius: 12px;
    background: rgba(8, 9, 11, .98);
    box-shadow: 0 24px 60px rgba(0, 0, 0, .34);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    visibility: hidden;
    transition: opacity 220ms ease, transform 220ms ease, visibility 220ms ease;
  }

  .main-nav a {
    min-height: 44px;
    justify-content: space-between;
    border-radius: 6px;
    background: rgba(255, 255, 255, .045);
  }

  .nav-mega {
    display: grid;
    gap: 8px;
  }

  .mega-trigger {
    width: 100%;
    min-height: 44px;
    justify-content: space-between;
    border-radius: 6px;
    background: rgba(255, 255, 255, .045);
  }

  .mega-panel {
    position: static;
    display: none;
    width: 100%;
    padding: 12px;
    grid-template-columns: 1fr;
    gap: 10px;
    border-radius: 8px;
    opacity: 1;
    pointer-events: auto;
    transform: none;
    visibility: visible;
  }

  .nav-mega.is-open .mega-panel {
    display: grid;
    transform: none;
  }

  .mega-intro {
    padding: 14px;
  }

  .mega-links {
    grid-template-columns: 1fr;
  }

  .header-actions {
    position: absolute;
    top: calc(100% + 328px);
    right: 18px;
    z-index: 22;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    visibility: hidden;
    transition: opacity 220ms ease, transform 220ms ease, visibility 220ms ease;
  }

  .site-header.menu-open .main-nav,
  .site-header.menu-open .header-actions {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
    visibility: visible;
  }

  .slide {
    padding-top: 172px;
  }

  .band,
  .service-grid,
  .blog-grid,
  .legal-grid,
  .timeline,
  .split,
  .contact-band,
  .site-footer {
    grid-template-columns: 1fr 1fr;
  }

  .contact-band {
    align-items: start;
  }

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

  .corporate-layout {
    grid-template-columns: 1fr;
  }

  .company-info-card {
    position: static;
  }

  .legal-page {
    padding-top: 138px;
  }

  .blog-side-card {
    position: static;
    display: grid;
    grid-template-columns: 120px 1fr;
    gap: 16px;
    align-items: center;
  }
}

@media (max-width: 680px) {
  .ticker-bar {
    height: 30px;
  }

  .ticker-track {
    gap: 18px;
    animation-duration: 26s;
  }

  .ticker-track span {
    font-size: 13px;
  }

  .nav-shell {
    padding: 12px 16px;
  }

  .brand strong {
    font-size: 15px;
  }

  .brand small {
    font-size: 11px;
  }

  .brand-mark {
    width: 38px;
    height: 38px;
  }

  .main-nav {
    right: 16px;
    left: 16px;
  }

  .header-actions {
    top: calc(100% + 328px);
    right: 16px;
  }

  .slide {
    align-items: end;
    min-height: 100svh;
    padding: 184px 18px 104px;
  }

  .slide::after {
    background:
      radial-gradient(circle at 28% 72%, rgba(242, 183, 5, .16), transparent 32%),
      linear-gradient(180deg, rgba(8, 9, 11, .42) 0%, rgba(8, 9, 11, .9) 72%);
  }

  .slide-copy h1,
  .slide-copy h2 {
    font-size: clamp(38px, 12vw, 56px);
  }

  .slider-controls {
    right: 18px;
    bottom: 24px;
  }

  .section {
    padding: 70px 18px;
  }

  .blog-page {
    padding-top: 146px;
  }

  .legal-page {
    padding-top: 146px;
  }

  .blog-article,
  .legal-article {
    padding: 32px 18px 70px;
  }

  .blog-article-hero {
    aspect-ratio: 4 / 3;
  }

  .blog-article-lead {
    font-size: 18px;
  }

  .legal-article-lead,
  .legal-section p {
    font-size: 17px;
  }

  .blog-side-card {
    grid-template-columns: 92px 1fr;
  }

  .band,
  .service-grid,
  .blog-grid,
  .legal-grid,
  .timeline,
  .split,
  .contact-band,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .contact-band {
    margin: 0 18px 70px;
    padding: 28px;
  }

  .whatsapp-btn {
    width: 100%;
    min-width: 0;
  }

  .cookie-banner {
    right: 12px;
    bottom: 12px;
    left: 12px;
    align-items: stretch;
    display: none;
    flex-direction: column;
    grid-template-columns: 1fr;
    gap: 10px;
    width: auto;
    min-height: 0;
    padding: 14px;
  }

  .cookie-banner.is-visible {
    display: flex;
  }

  .cookie-icon {
    width: 38px;
    height: 38px;
    margin-top: 0;
    border-radius: 7px;
    font-size: 22px;
  }

  .cookie-content h2 {
    font-size: 21px;
  }

  .cookie-banner p {
    font-size: 13px;
    line-height: 1.34;
  }

  .cookie-lead {
    margin-top: 4px;
  }

  .cookie-tabs {
    gap: 6px;
    margin: 8px 0 6px;
  }

  .cookie-tabs span {
    min-height: 28px;
    padding: 0 10px;
    font-size: 13px;
  }

  .cookie-summary {
    white-space: normal;
  }

  .cookie-links a {
    font-size: 13px;
  }

  .cookie-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    padding-top: 0;
  }

  .cookie-actions button {
    min-width: 0;
    min-height: 44px;
    font-size: 15px;
  }

  .floating-whatsapp {
    right: 16px;
    bottom: 84px;
  }

}
