/* ==========================================================================
   be on Digital — Landing Page
   Paleta: navy escuro + laranja da marca (logo) + dourado
   ========================================================================== */

:root {
  --bg: #060a12;
  --bg-alt: #0b1218;
  --bg-card: #0f1922;
  --bg-card-alt: #141c27;
  --border: rgba(255, 99, 33, 0.16);
  --border-strong: rgba(255, 99, 33, 0.4);
  --orange: #ff6321;
  --orange-light: #ff9a5c;
  --orange-dark: #d9501a;
  --gold: #ffbd59;
  --gold-light: #ffe0a3;
  --white: #ffffff;
  --gray-light: #c8d2da;
  --gray: #8a96a3;

  --font: 'Sora', 'Segoe UI', sans-serif;
  --radius: 18px;
  --radius-sm: 10px;
  --container: 1200px;
  --transition: 0.3s ease;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

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

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

ul {
  list-style: none;
}

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

/* ==========================================================================
   Helpers
   ========================================================================== */

.degrade,
.degrade1 {
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.degrade {
  background-image: linear-gradient(90deg, var(--orange) 0%, var(--orange-light) 100%);
}

.degrade1 {
  background-image: linear-gradient(90deg, var(--gold) 0%, var(--gold-light) 100%);
}

.eyebrow {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 3px;
  color: var(--orange);
  text-transform: uppercase;
  margin-bottom: 16px;
}

.badge {
  display: inline-block;
  padding: 10px 24px;
  border: 1px solid var(--border-strong);
  border-radius: 999px;
  font-size: 14px;
  font-weight: 500;
  color: var(--orange);
  background: rgba(255, 99, 33, 0.06);
  margin-bottom: 28px;
}

.section-head {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 64px;
}

.section-title {
  font-size: clamp(28px, 4.2vw, 44px);
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: 16px;
  letter-spacing: -0.5px;
}

.section-subtitle {
  font-size: 17px;
  color: var(--gray-light);
}

/* ==========================================================================
   Buttons
   ========================================================================== */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px 36px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 15px;
  white-space: nowrap;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
  border: 1px solid transparent;
  cursor: pointer;
}

.btn--primary {
  background: linear-gradient(135deg, var(--orange), var(--orange-light));
  color: #2b0d02;
  box-shadow: 0 0 0 rgba(255, 99, 33, 0);
}

.btn--primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px -10px rgba(255, 99, 33, 0.55);
}

.btn--outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.25);
}

.btn--outline:hover {
  border-color: var(--orange);
  color: var(--orange);
  transform: translateY(-3px);
}

.btn--small {
  padding: 11px 24px;
  font-size: 14px;
}

.btn--large {
  padding: 20px 48px;
  font-size: 16px;
}

/* ==========================================================================
   Reveal animations
   ========================================================================== */

.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

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

/* ==========================================================================
   Header
   ========================================================================== */

.header {
  position: fixed;
  top: 24px;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: top var(--transition);
}

.header.scrolled {
  top: 14px;
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  max-width: 980px;
  padding: 12px 32px;
  border-radius: 100px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 99, 33, 0.05);
  backdrop-filter: blur(40px);
  -webkit-backdrop-filter: blur(40px);
  transition: background var(--transition), border-color var(--transition), box-shadow var(--transition);
}

.header.scrolled .header__inner {
  background: rgba(11, 18, 24, 0.75);
  border-color: var(--border-strong);
  box-shadow: 0 10px 40px -18px rgba(0, 0, 0, 0.6);
}

.logo img {
  height: 68px;
  width: auto;
}

.nav {
  display: flex;
  flex: 1;
  justify-content: center;
}

.nav__list {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav__link {
  font-size: 15px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.85);
  transition: color var(--transition);
  position: relative;
}

.nav__link:hover {
  color: var(--orange);
}

.nav__cta {
  display: none;
}

.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 42px;
  height: 42px;
  flex-shrink: 0;
  background: transparent;
  border: 1px solid var(--border-strong);
  border-radius: 50%;
  cursor: pointer;
}

.hamburger span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 0 auto;
  background: var(--orange);
  transition: transform var(--transition), opacity var(--transition);
}

.hamburger.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ==========================================================================
   Hero
   ========================================================================== */

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 160px 0 100px;
  overflow: hidden;
}

.hero__glow {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 900px;
  height: 900px;
  transform: translate(-50%, -50%);
  background:
    radial-gradient(circle at 30% 30%, rgba(255, 99, 33, 0.16), transparent 55%),
    radial-gradient(circle at 70% 70%, rgba(255, 189, 89, 0.12), transparent 55%);
  filter: blur(60px);
  pointer-events: none;
  z-index: 0;
}

.hero__inner {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 880px;
}

.hero__title {
  font-size: clamp(38px, 7vw, 72px);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -1.5px;
  margin-bottom: 24px;
}

.hero__subtitle {
  font-size: 18px;
  color: var(--gray-light);
  max-width: 620px;
  margin: 0 auto 40px;
}

.hero__actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
}

/* ==========================================================================
   Stats
   ========================================================================== */

.stats {
  padding: 70px 0;
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  text-align: center;
}

.stat__value {
  display: block;
  font-size: clamp(32px, 4.5vw, 48px);
  font-weight: 700;
  background-image: linear-gradient(90deg, var(--orange), var(--orange-light));
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 8px;
}

.stat__suffix {
  font-size: 1em;
  margin-left: 2px;
}

.stat__label {
  display: block;
  font-size: 14px;
  color: var(--gray-light);
}

/* ==========================================================================
   Cases (tabs)
   ========================================================================== */

.cases {
  padding: 120px 0;
}

.tabs__nav {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 40px;
}

.tabs__btn {
  padding: 13px 28px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: var(--bg-card);
  color: var(--gray-light);
  font-family: var(--font);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition);
}

.tabs__btn:hover {
  border-color: var(--border-strong);
  color: var(--white);
}

.tabs__btn.is-active {
  background: linear-gradient(135deg, var(--orange), var(--orange-light));
  color: #2b0d02;
  border-color: transparent;
}

.tabs__panel {
  display: none;
  animation: fadeIn 0.5s ease;
}

.tabs__panel.is-active {
  display: block;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}

.case {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 48px;
  text-align: center;
}

.case__tag {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

.case h3 {
  font-size: clamp(22px, 3vw, 30px);
  font-weight: 700;
  margin-bottom: 16px;
  line-height: 1.3;
}

.case p {
  color: var(--gray-light);
  max-width: 680px;
  margin: 0 auto 32px;
}

.case__stats {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 32px;
}

.case__stat {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.case__stat strong {
  font-size: 30px;
  font-weight: 700;
  background-image: linear-gradient(90deg, var(--orange), var(--orange-light));
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.case__stat span {
  font-size: 13px;
  color: var(--gray-light);
}

/* ==========================================================================
   Banner Modo ON
   ========================================================================== */

.modo-on-banner {
  padding: 0 0 40px;
}

.modo-on-banner__img {
  display: block;
  width: 100%;
  max-width: 900px;
  height: auto;
  margin: 0 auto;
}

/* ==========================================================================
   Qualify
   ========================================================================== */

.qualify {
  padding: 60px 0 120px;
}

.qualify__inner {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 56px;
}

.qualify__inner .section-title {
  font-size: clamp(24px, 3.6vw, 36px);
}

.testimonials .section-head {
  max-width: 760px;
}

.testimonials .section-title {
  font-size: clamp(20px, 4.4vw, 40px);
  white-space: nowrap;
}

.qualify__list {
  text-align: left;
  max-width: 520px;
  margin: 0 auto 36px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.qualify__list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 16px;
  color: var(--gray-light);
}

.qualify__check {
  flex-shrink: 0;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--orange), var(--orange-light));
  color: #2b0d02;
  font-size: 13px;
  font-weight: 700;
}

/* ==========================================================================
   Services (com efeito de brilho no hover)
   ========================================================================== */

.services {
  padding: 120px 0;
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

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

.service-card {
  position: relative;
  overflow: hidden;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 32px;
  transition: transform var(--transition), border-color var(--transition);
  --mx: 50%;
  --my: 50%;
}

.service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle 260px at var(--mx) var(--my), rgba(255, 99, 33, 0.16), transparent 70%);
  opacity: 0;
  transition: opacity var(--transition);
  pointer-events: none;
}

.service-card:hover {
  transform: translateY(-6px);
  border-color: var(--border-strong);
}

.service-card:hover::before {
  opacity: 1;
}

.service-card__icon {
  font-size: 34px;
  margin-bottom: 18px;
}

.service-card__icon svg {
  width: 34px;
  height: 34px;
  color: var(--orange);
}

.service-card h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 10px;
  position: relative;
}

.service-card p {
  font-size: 14.5px;
  color: var(--gray-light);
  position: relative;
}

/* ==========================================================================
   Pillars / Timeline
   ========================================================================== */

.pillars {
  padding: 120px 0;
}

.timeline {
  position: relative;
  max-width: 720px;
  margin: 0 auto;
  padding-left: 70px;
}

.timeline__line {
  position: absolute;
  left: 28px;
  top: 8px;
  bottom: 8px;
  width: 2px;
  background: linear-gradient(180deg, var(--orange), var(--gold));
  opacity: 0.4;
}

.timeline__item {
  position: relative;
  margin-bottom: 48px;
}

.timeline__item:last-child {
  margin-bottom: 0;
}

.timeline__dot {
  position: absolute;
  left: -70px;
  top: 0;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 2px solid var(--border-strong);
  background: var(--bg-card);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 700;
  color: var(--gold);
}

.timeline__content {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px 28px;
}

.timeline__content h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 8px;
}

.timeline__content p {
  color: var(--gray-light);
  font-size: 15px;
}

/* ==========================================================================
   Levels (Onde sua empresa está hoje)
   ========================================================================== */

.levels {
  padding: 120px 0;
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.levels__grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 28px;
}

.levels__card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 40px;
}

.levels__card--highlight {
  border-color: var(--border-strong);
  box-shadow: 0 0 60px -20px rgba(255, 99, 33, 0.35);
}

.levels__tag {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  padding: 6px 16px;
  border-radius: 999px;
  margin-bottom: 24px;
}

.levels__tag--off {
  background: rgba(138, 150, 163, 0.15);
  color: var(--gray-light);
}

.levels__tag--on {
  background: linear-gradient(135deg, var(--orange), var(--orange-light));
  color: #2b0d02;
}

.levels__card ul {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.levels__card li {
  font-size: 15px;
  color: var(--gray-light);
  padding-left: 20px;
  position: relative;
}

.levels__card li::before {
  content: '–';
  position: absolute;
  left: 0;
  color: var(--gray);
}

.levels__card--highlight li::before {
  content: '✓';
  color: var(--orange);
}

.levels__arrow {
  font-size: 28px;
  color: var(--gold);
  text-align: center;
}

/* ==========================================================================
   Testimonials / Slider
   ========================================================================== */

.testimonials {
  padding: 120px 0 60px;
}

.slider {
  max-width: 720px;
  margin: 0 auto;
  overflow: hidden;
}

.slider__track {
  display: flex;
  transition: transform 0.6s ease;
}

.slider__slide {
  flex: 0 0 100%;
  padding: 0 8px;
}

.testimonial-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 48px;
  text-align: center;
}

.testimonial-card__text {
  font-size: 18px;
  color: var(--gray-light);
  margin-bottom: 28px;
  font-style: italic;
}

.testimonial-card__author strong {
  display: block;
  font-size: 16px;
  color: var(--orange);
}

.testimonial-card__author span {
  font-size: 14px;
  color: var(--gray);
}

.slider__dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 28px;
}

.slider__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: none;
  background: var(--border);
  cursor: pointer;
  transition: background var(--transition), transform var(--transition);
  padding: 0;
}

.slider__dot.is-active {
  background: var(--orange);
  transform: scale(1.2);
}

/* ==========================================================================
   Final CTA
   ========================================================================== */

.final-cta {
  padding: 60px 0 140px;
  text-align: center;
}

.final-cta__inner {
  max-width: 680px;
  margin: 0 auto;
}

.final-cta__title {
  font-size: clamp(28px, 5vw, 48px);
  font-weight: 700;
  margin-bottom: 18px;
  letter-spacing: -1px;
}

.final-cta__subtitle {
  font-size: 17px;
  color: var(--gray-light);
  margin-bottom: 36px;
}

/* ==========================================================================
   Blog
   ========================================================================== */

.blog {
  padding: 100px 0 120px;
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
}

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

.blog-card__tag {
  position: relative;
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.5px;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 14px;
}

.blog-card__link {
  position: relative;
  display: inline-block;
  margin-top: 12px;
  font-size: 14.5px;
  font-weight: 600;
  color: var(--orange);
  transition: color var(--transition);
}

.blog-card__link:hover {
  color: var(--orange-light);
}

.blog-card__img {
  display: block;
  width: calc(100% + 64px);
  max-width: calc(100% + 64px);
  aspect-ratio: 4 / 3;
  object-fit: contain;
  background: var(--bg-card-alt);
  margin: -36px -32px 24px;
}

/* ==========================================================================
   Blog — páginas internas (listagem e artigo)
   ========================================================================== */

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 13px;
  color: var(--gray);
  margin-bottom: 24px;
}

.breadcrumb a {
  color: var(--gray-light);
  transition: color var(--transition);
}

.breadcrumb a:hover {
  color: var(--orange);
}

.breadcrumb span {
  color: var(--orange);
}

.page-head {
  padding: 160px 0 64px;
  border-bottom: 1px solid var(--border);
}

.page-head--center {
  text-align: center;
}

.page-head--center .breadcrumb {
  justify-content: center;
}

.page-head__content {
  max-width: 760px;
  margin: 0 auto;
}

.post-header .eyebrow {
  margin-bottom: 16px;
}

.post-title {
  font-size: clamp(28px, 4.6vw, 46px);
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.5px;
  margin-bottom: 16px;
}

.post-meta {
  font-size: 14px;
  color: var(--gray);
}

.blog-listing {
  padding: 80px 0 120px;
}

.post {
  padding: 80px 0 120px;
}

.post__container {
  max-width: 760px;
  margin: 0 auto;
}

.post__featured-img {
  display: block;
  width: 100%;
  aspect-ratio: 9 / 5;
  object-fit: contain;
  background: var(--bg-card-alt);
  border-radius: var(--radius);
  margin-bottom: 40px;
}

.post__content > * + * {
  margin-top: 22px;
}

.post__content p {
  font-size: 16.5px;
  color: var(--gray-light);
  line-height: 1.8;
}

.post__content h2 {
  font-size: clamp(22px, 3vw, 30px);
  font-weight: 700;
  margin-top: 48px;
  letter-spacing: -0.3px;
}

.post__content h3 {
  font-size: 19px;
  font-weight: 700;
  margin-top: 32px;
}

.post__content ul,
.post__content ol {
  padding-left: 22px;
  color: var(--gray-light);
  font-size: 16.5px;
  line-height: 1.8;
}

.post__content li {
  list-style: disc;
  margin-bottom: 8px;
}

.post__content ol li {
  list-style: decimal;
}

.post__content strong {
  color: var(--white);
}

.post__content a {
  color: var(--orange);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.post__cta {
  margin-top: 56px;
  padding: 40px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  text-align: center;
}

.post__cta h3 {
  font-size: clamp(20px, 3vw, 28px);
  font-weight: 700;
  margin-bottom: 12px;
}

.post__cta p {
  color: var(--gray-light);
  margin-bottom: 24px;
}

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

.post__related h4 {
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--gray);
  margin-bottom: 18px;
}

.post__related ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.post__related a {
  font-size: 15.5px;
  font-weight: 600;
  color: var(--white);
  transition: color var(--transition);
}

.post__related a:hover {
  color: var(--orange);
}

/* ==========================================================================
   Footer
   ========================================================================== */

.footer {
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
  padding-top: 80px;
}

.footer__inner {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
  gap: 48px;
  padding-bottom: 56px;
}

.footer__brand img {
  height: 44px;
  margin-bottom: 16px;
}

.footer__brand p {
  color: var(--gray-light);
  font-size: 14px;
  max-width: 280px;
  margin-bottom: 20px;
}

.footer__top {
  display: inline-block;
  font-size: 14px;
  font-weight: 600;
  color: var(--orange);
  transition: opacity var(--transition);
}

.footer__top:hover {
  opacity: 0.7;
}

.footer__col h4,
.footer__cta h4 {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 20px;
}

.footer__col ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer__col a {
  font-size: 14.5px;
  color: var(--gray-light);
  transition: color var(--transition);
}

.footer__col a:hover {
  color: var(--orange);
}

.footer__cta h4 {
  margin-bottom: 18px;
}

.footer__bottom {
  border-top: 1px solid var(--border);
  padding: 24px 0;
}

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

.footer__bottom-inner p {
  font-size: 13px;
  color: var(--gray);
}

.footer__social {
  display: flex;
  gap: 18px;
}

.footer__social a {
  color: var(--gray-light);
  transition: color var(--transition);
}

.footer__social a:hover {
  color: var(--orange);
}

/* ==========================================================================
   WhatsApp float
   ========================================================================== */

.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--orange), var(--orange-light));
  color: #2b0d02;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 30px -8px rgba(255, 99, 33, 0.6);
  z-index: 999;
  transition: transform var(--transition);
}

.whatsapp-float:hover {
  transform: scale(1.08);
}

/* ==========================================================================
   Responsive
   ========================================================================== */

@media (max-width: 992px) {
  .header__inner {
    padding: 10px 18px;
  }

  .logo img {
    height: 52px;
  }

  .nav {
    position: fixed;
    top: 84px;
    right: 24px;
    left: 24px;
    width: auto;
    max-height: calc(100vh - 110px);
    overflow-y: auto;
    background: rgba(11, 18, 24, 0.92);
    backdrop-filter: blur(24px);
    border: 1px solid var(--border);
    border-radius: 24px;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    padding: 28px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-12px);
    transition: opacity var(--transition), transform var(--transition), visibility var(--transition);
    z-index: 1001;
  }

  .nav.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .nav__list {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 28px;
  }

  .nav__link {
    font-size: 17px;
  }

  .nav__cta {
    display: inline-flex;
    width: 100%;
    justify-content: center;
  }

  .header__cta {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .stats__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px 24px;
  }

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

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

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

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

  .levels__arrow {
    transform: rotate(90deg);
  }
}

@media (max-width: 768px) {
  .hero {
    padding-top: 130px;
  }

  .page-head {
    padding-top: 130px;
  }

  .case {
    padding: 32px;
  }

  .case__stats {
    gap: 24px;
  }

  .qualify__inner {
    padding: 36px 24px;
  }

  .timeline {
    padding-left: 56px;
  }

  .timeline__dot {
    left: -56px;
    width: 44px;
    height: 44px;
    font-size: 14px;
  }

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

@media (max-width: 480px) {
  .stats__grid {
    grid-template-columns: 1fr;
  }

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

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

  .testimonials .section-title {
    font-size: 4.6vw;
  }

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

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

  .testimonial-card {
    padding: 32px 24px;
  }

  .case__stats {
    flex-direction: column;
    gap: 18px;
  }
}
