/* ===== VARIABLES ===== */
:root {
  --gold: #F5C000;
  --gold-dark: #D4A200;
  --gold-light: #FFD740;
  --black: #080808;
  --bg: #0A0A0A;
  --bg-2: #0E0E0E;
  --bg-3: #161616;
  --bg-card: #111111;
  --border: rgba(255,255,255,0.07);
  --border-strong: rgba(255,255,255,0.12);
  --border-gold: rgba(245,192,0,0.22);
  --white: #FFFFFF;
  --gray-100: #F0F0F0;
  --gray-300: #ABABAB;
  --gray-500: #606060;
  --gray-700: #2E2E2E;
  --font-display: 'Barlow Condensed', sans-serif;
  --font-body: 'Barlow', sans-serif;
  --radius: 10px;
  --radius-lg: 14px;
  --radius-sm: 6px;
  --shadow-card: 0 1px 2px rgba(0,0,0,0.4), 0 8px 32px rgba(0,0,0,0.3);
  --transition: all 0.22s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; display: block; }
button { border: none; background: none; cursor: pointer; font-family: inherit; }
input { font-family: inherit; }

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--gray-700); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--gold); }

/* ===== CONTAINER ===== */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
}

/* ===== TYPOGRAPHY ===== */
.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  font-weight: 800;
  line-height: 1.06;
  letter-spacing: -0.02em;
  color: var(--white);
}
.section-title em {
  font-style: italic;
  color: var(--gold);
}
.label {
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  display: inline-block;
  margin-bottom: 14px;
}
.section-desc {
  color: var(--gray-300);
  font-size: 1rem;
  max-width: 500px;
  margin: 14px auto 0;
  line-height: 1.65;
}
.section-header {
  text-align: center;
  margin-bottom: 72px;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.03em;
  padding: 11px 22px;
  border-radius: var(--radius-sm);
  transition: var(--transition);
  cursor: pointer;
  white-space: nowrap;
}
.btn--primary {
  background: var(--gold);
  color: var(--black);
}
.btn--primary:hover {
  background: var(--gold-light);
  transform: translateY(-1px);
  box-shadow: 0 6px 24px rgba(245,192,0,0.3);
}
.btn--outline {
  background: transparent;
  color: var(--white);
  border: 1px solid var(--border-strong);
}
.btn--outline:hover {
  border-color: rgba(255,255,255,0.3);
  color: var(--white);
  transform: translateY(-1px);
}
.btn--ghost {
  background: transparent;
  color: var(--gray-300);
  padding-left: 0;
  padding-right: 0;
}
.btn--ghost:hover {
  color: var(--white);
}
.btn--lg { padding: 14px 28px; font-size: 1rem; }
.btn--xl { padding: 17px 40px; font-size: 1.05rem; border-radius: var(--radius); }
.btn--sm { padding: 7px 14px; font-size: 0.82rem; }

/* ===== NAVIGATION ===== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 18px 0;
  transition: var(--transition);
}
.nav.scrolled {
  background: rgba(10,10,10,0.92);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
}
.nav__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
}
.nav__logo {
  justify-self: start;
  display: flex;
  align-items: center;
}
.nav__logo-img {
  height: 38px;
  width: auto;
  object-fit: contain;
}
.nav__logo-fut { color: var(--white); }
.nav__logo-scale { color: var(--gold); }
.nav__links {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: 36px;
}
.nav__links a {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--gray-300);
  transition: color 0.18s;
  letter-spacing: 0.03em;
}
.nav__links a:hover { color: var(--white); }
.nav__right {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 12px;
}
.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
}
.nav__toggle span {
  width: 20px;
  height: 1.5px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
  display: block;
}
.nav__mobile {
  display: none;
  flex-direction: column;
  gap: 0;
  background: rgba(10,10,10,0.98);
  border-top: 1px solid var(--border);
  padding: 8px 32px 28px;
}
.nav__mobile ul {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-bottom: 20px;
}
.nav__mobile ul li a {
  display: block;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--gray-300);
  padding: 13px 0;
  border-bottom: 1px solid var(--border);
  transition: color 0.18s;
}
.nav__mobile ul li a:hover { color: var(--gold); }
.nav__mobile.open { display: flex; }

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 140px 0 100px;
  overflow: hidden;
}
.hero__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.hero__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: radial-gradient(ellipse 70% 55% at 50% 20%, black 30%, transparent 100%);
}
.hero__glow {
  position: absolute;
  width: 640px;
  height: 640px;
  background: radial-gradient(circle, rgba(245,192,0,0.055) 0%, transparent 65%);
  top: -80px;
  right: -60px;
  pointer-events: none;
}
.hero__container {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
  text-align: center;
}
.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(245,192,0,0.07);
  border: 1px solid var(--border-gold);
  border-radius: 100px;
  padding: 7px 14px;
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 32px;
}
.hero__badge-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
  animation: pulse 2.5s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(1.4); }
}
.hero__title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 8vw, 6.5rem);
  font-weight: 900;
  line-height: 0.96;
  letter-spacing: -0.03em;
  color: var(--white);
  margin-bottom: 28px;
}
.hero__title em {
  font-style: italic;
  color: var(--gold);
  display: block;
}
.hero__subtitle {
  font-size: clamp(1rem, 2.2vw, 1.15rem);
  color: var(--gray-300);
  max-width: 580px;
  margin: 0 auto 44px;
  line-height: 1.65;
}
.hero__br { display: none; }
@media (min-width: 768px) { .hero__br { display: block; } }
.hero__actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 80px;
}
.hero__stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  background: rgba(255,255,255,0.025);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 48px;
  max-width: 560px;
  margin: 0 auto;
}
.hero__stat {
  flex: 1;
  text-align: center;
}
.hero__stat-number {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 4vw, 2.8rem);
  font-weight: 900;
  color: var(--gold);
  letter-spacing: -0.03em;
  line-height: 1;
  display: inline;
}
.hero__stat-prefix, .hero__stat-suffix {
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 2.5vw, 1.9rem);
  font-weight: 800;
  color: var(--gold);
  display: inline;
}
.hero__stat-label {
  display: block;
  font-size: 0.75rem;
  color: var(--gray-500);
  margin-top: 5px;
  letter-spacing: 0.03em;
  font-weight: 500;
}
.hero__stat-divider {
  width: 1px;
  height: 44px;
  background: var(--border);
  flex-shrink: 0;
  margin: 0 12px;
}

/* ===== ABOUT ===== */
.about {
  padding: 140px 0;
  border-top: 1px solid var(--border);
}
.about__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 96px;
  align-items: center;
}
.about__text {
  color: var(--gray-300);
  margin-bottom: 18px;
  font-size: 1rem;
  line-height: 1.72;
}
.about__text:last-of-type { margin-bottom: 36px; }
.about__cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.about__card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  transition: var(--transition);
}
.about__card:hover {
  border-color: var(--border-gold);
  background: rgba(245,192,0,0.03);
}
.about__card-icon {
  width: 32px;
  height: 32px;
  color: var(--gold);
  margin-bottom: 14px;
  opacity: 0.85;
}
.about__card-icon svg {
  width: 100%;
  height: 100%;
}
.about__card h3 {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 6px;
  letter-spacing: 0.01em;
}
.about__card p {
  font-size: 0.83rem;
  color: var(--gray-500);
  line-height: 1.55;
}

/* ===== SERVICES ===== */
.services {
  padding: 140px 0;
  border-top: 1px solid var(--border);
}
.services__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.service-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px;
  position: relative;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}
.service-card:hover {
  border-color: rgba(255,255,255,0.14);
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
}
.service-card--featured {
  border-color: var(--border-gold);
  background: var(--bg-card);
}
.service-card--featured:hover {
  border-color: rgba(245,192,0,0.4);
  box-shadow: var(--shadow-card), 0 0 40px rgba(245,192,0,0.07);
}
.service-card__tag {
  position: absolute;
  top: 18px;
  right: 18px;
  background: var(--gold);
  color: var(--black);
  font-family: var(--font-display);
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 3px 9px;
  border-radius: 4px;
}
.service-card__icon {
  width: 40px;
  height: 40px;
  color: var(--gold);
  margin-bottom: 20px;
  flex-shrink: 0;
  opacity: 0.9;
}
.service-card__icon svg {
  width: 100%;
  height: 100%;
}
.service-card__number {
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--gray-700);
  margin-bottom: 10px;
}
.service-card__title {
  font-family: var(--font-display);
  font-size: 1.7rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
  line-height: 1.1;
}
.service-card__title em {
  font-style: italic;
  color: var(--gold);
}
.service-card__desc {
  color: var(--gray-300);
  font-size: 0.92rem;
  line-height: 1.65;
  margin-bottom: 20px;
}
.service-card__list {
  list-style: none;
  margin-bottom: 28px;
  flex: 1;
}
.service-card__list li {
  font-size: 0.88rem;
  color: var(--gray-300);
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 10px;
}
.service-card__list li::before {
  content: '';
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
  opacity: 0.7;
}
.service-card__list li:last-child { border-bottom: none; }

/* ===== PORTFOLIO ===== */
.portfolio {
  padding: 140px 0;
  border-top: 1px solid var(--border);
}
.portfolio__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 16px;
  margin-bottom: 48px;
}
.portfolio-item--large {
  grid-column: span 2;
}
.portfolio-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
}
.portfolio-item:hover {
  border-color: rgba(255,255,255,0.14);
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
}
.portfolio-item__img {
  position: relative;
  height: 240px;
  overflow: hidden;
}
.portfolio-item--large .portfolio-item__img { height: 300px; }

/* ===== PORTFOLIO VISUAL (editorial) ===== */
.portfolio-item__visual {
  width: 100%;
  height: 100%;
  position: relative;
  display: flex;
  align-items: flex-end;
  padding: 28px 32px;
  overflow: hidden;
}
.portfolio-item__visual::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.88) 0%, rgba(0,0,0,0.35) 45%, rgba(0,0,0,0.08) 100%);
  z-index: 1;
}
/* DN Sports */
.pf--dn {
  background-image: url("Captura de tela 2026-05-27 155216.png");
  background-size: cover;
  background-position: top center;
}
.pf--dn .pf__accent { display: none; }
.pf--dn .pf__location { color: #4DDA7A; }
.pf--dn .pf__name    { color: #FFFFFF; text-shadow: 0 2px 12px rgba(0,0,0,0.8); }
.pf--dn .pf__service { color: rgba(255,255,255,0.55); }

/* Canarinhos Store */
.pf--canarinhos {
  background-image: url("Captura de tela 2026-05-27 155441.png");
  background-size: cover;
  background-position: top center;
}
.pf--canarinhos .pf__accent { display: none; }
.pf--canarinhos .pf__location { color: #FFD700; }
.pf--canarinhos .pf__name    { color: #FFFFFF; text-shadow: 0 2px 12px rgba(0,0,0,0.9); }
.pf--canarinhos .pf__service { color: rgba(255,255,255,0.55); }

/* MF Store */
.pf--mf {
  background-image: url("Captura de tela 2026-05-27 155526.png");
  background-size: cover;
  background-position: top center;
}
.pf--mf .pf__accent { display: none; }
.pf--mf .pf__location { color: #F0D200; }
.pf--mf .pf__name    { color: #FFFFFF; text-shadow: 0 2px 12px rgba(0,0,0,0.8); }
.pf--mf .pf__service { color: rgba(255,255,255,0.55); }

/* Brazuckas Store */
.pf--brazuckas {
  background-image: url("Captura de tela 2026-05-27 155339.png");
  background-size: cover;
  background-position: top center;
}
.pf--brazuckas .pf__accent { display: none; }
.pf--brazuckas .pf__location { color: #00FF66; }
.pf--brazuckas .pf__name    { color: #FFFFFF; text-shadow: 0 2px 12px rgba(0,0,0,0.9); }
.pf--brazuckas .pf__service { color: rgba(255,255,255,0.55); }
.pf__accent {
  position: absolute;
  top: 0;
  right: 0;
  width: 60%;
  height: 100%;
}
.pf__inner {
  position: relative;
  z-index: 2;
}
.pf__location {
  display: block;
  font-family: var(--font-display);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
  opacity: 0.9;
}
.pf__name {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 900;
  font-style: italic;
  color: var(--white);
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 10px;
}
.portfolio-item--large .pf__name {
  font-size: 2.1rem;
}
.pf__service {
  font-size: 0.76rem;
  color: rgba(255,255,255,0.38);
  font-family: var(--font-body);
  font-weight: 400;
  letter-spacing: 0.01em;
  line-height: 1.4;
}

.portfolio-item__overlay {
  position: absolute;
  inset: 0;
  background: rgba(8,8,8,0.86);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  opacity: 0;
  transition: var(--transition);
}
.portfolio-item:hover .portfolio-item__overlay { opacity: 1; }
.portfolio-item__tags {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  justify-content: center;
}
.portfolio-item__tags span {
  background: rgba(245,192,0,0.12);
  border: 1px solid var(--border-gold);
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 4px;
  font-family: var(--font-display);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.portfolio-item__info {
  padding: 18px 24px 22px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
}
.portfolio-item__info-main h3 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 3px;
  letter-spacing: 0.01em;
}
.portfolio-item__info-main p {
  font-size: 0.8rem;
  color: var(--gray-500);
}
.portfolio-item__metrics {
  display: flex;
  gap: 20px;
  flex-shrink: 0;
}
.portfolio-item__metrics div {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}
.portfolio-item__metrics strong {
  font-family: var(--font-display);
  font-size: 1rem;
  color: var(--gold);
  font-weight: 800;
  line-height: 1.2;
}
.portfolio-item__metrics span {
  font-size: 0.7rem;
  color: var(--gray-500);
}
.portfolio__cta {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 44px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.portfolio__cta-text p {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 4px;
}
.portfolio__cta-text span {
  font-size: 0.88rem;
  color: var(--gray-500);
}

/* ===== CARE ===== */
.care {
  padding: 140px 0;
  border-top: 1px solid var(--border);
  background: var(--bg-2);
}
.care__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 96px;
  align-items: center;
}
.care__text {
  color: var(--gray-300);
  font-size: 1rem;
  line-height: 1.72;
  margin-bottom: 36px;
}
.care__features {
  display: flex;
  flex-direction: column;
  gap: 22px;
  margin-bottom: 36px;
}
.care__feature {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.care__feature-icon {
  color: var(--gold);
  font-size: 0.75rem;
  margin-top: 4px;
  flex-shrink: 0;
  opacity: 0.8;
}
.care__feature h4 {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 4px;
  letter-spacing: 0.01em;
}
.care__feature p {
  font-size: 0.85rem;
  color: var(--gray-500);
  line-height: 1.55;
}
.care__visual {
  position: relative;
}
.care__dashboard {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.care__dashboard-header {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 14px 20px;
  border-bottom: 1px solid var(--border);
  background: rgba(255,255,255,0.015);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--gray-300);
}
.care__dashboard-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
}
.care__dashboard-dot--green {
  background: #22C55E;
  animation: pulse 2.5s infinite;
}
.care__dashboard-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-bottom: 1px solid var(--border);
}
.care__dashboard-stat {
  padding: 18px 20px;
  text-align: center;
  border-right: 1px solid var(--border);
}
.care__dashboard-stat:last-child { border-right: none; }
.care__stat-label {
  display: block;
  font-size: 0.7rem;
  color: var(--gray-500);
  margin-bottom: 6px;
  line-height: 1.3;
}
.care__stat-value {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--gold);
}
.care__dashboard-tasks {
  padding: 8px 0;
}
.care__task {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 11px 20px;
  font-size: 0.85rem;
  color: var(--gray-300);
  border-bottom: 1px solid var(--border);
}
.care__task:last-child { border-bottom: none; }
.care__task-status {
  width: 18px;
  height: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.72rem;
  flex-shrink: 0;
}
.care__task--done .care__task-status { color: #22C55E; }
.care__task--progress .care__task-status { color: var(--gold); }
.care__task--done { color: var(--gray-500); }

/* ===== AI SECTION ===== */
.ai-section {
  padding: 140px 0;
  border-top: 1px solid var(--border);
}
.ai-section__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 96px;
  align-items: center;
}
.ai-chat {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.ai-chat__header {
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 14px 18px;
  border-bottom: 1px solid var(--border);
  background: rgba(255,255,255,0.015);
}
.ai-chat__avatar {
  width: 32px;
  height: 32px;
  background: var(--gold);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--black);
  flex-shrink: 0;
}
.ai-chat__header strong {
  display: block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.9rem;
}
.ai-chat__status {
  display: block;
  font-size: 0.7rem;
  color: #22C55E;
}
.ai-chat__messages {
  padding: 18px 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-height: 210px;
}
.ai-chat__message {
  max-width: 82%;
  padding: 9px 13px;
  border-radius: 10px;
  font-size: 0.85rem;
  line-height: 1.5;
}
.ai-chat__message--user {
  background: rgba(245,192,0,0.1);
  border: 1px solid rgba(245,192,0,0.18);
  color: var(--white);
  align-self: flex-end;
  border-bottom-right-radius: 3px;
}
.ai-chat__message--bot {
  background: rgba(255,255,255,0.035);
  border: 1px solid var(--border);
  color: var(--gray-100);
  align-self: flex-start;
  border-bottom-left-radius: 3px;
}
.ai-chat__typing {
  display: flex;
  gap: 4px;
  align-self: flex-start;
  padding: 11px 14px;
  background: rgba(255,255,255,0.035);
  border: 1px solid var(--border);
  border-radius: 10px;
  border-bottom-left-radius: 3px;
}
.ai-chat__typing span {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--gray-500);
  animation: typing 1.4s infinite;
}
.ai-chat__typing span:nth-child(2) { animation-delay: 0.2s; }
.ai-chat__typing span:nth-child(3) { animation-delay: 0.4s; }
@keyframes typing {
  0%, 60%, 100% { transform: translateY(0); opacity: 0.4; }
  30% { transform: translateY(-4px); opacity: 1; }
}
.ai-chat__input {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 11px 14px;
  border-top: 1px solid var(--border);
  background: rgba(255,255,255,0.015);
}
.ai-chat__input input {
  flex: 1;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 7px 11px;
  font-size: 0.83rem;
  color: var(--gray-300);
  outline: none;
}
.ai-chat__input button {
  width: 30px;
  height: 30px;
  background: var(--gold);
  color: var(--black);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.ai-section__text {
  color: var(--gray-300);
  font-size: 1rem;
  line-height: 1.72;
  margin-bottom: 28px;
}
.ai-section__features {
  display: flex;
  flex-direction: column;
  gap: 13px;
  margin-bottom: 36px;
}
.ai-feature {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.92rem;
  color: var(--gray-300);
}
.ai-feature__dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
  opacity: 0.75;
}

/* ===== DIFFERENTIALS ===== */
.differentials {
  padding: 140px 0;
  border-top: 1px solid var(--border);
}
.differentials__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}
.differential {
  padding: 40px 36px;
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  transition: background 0.2s;
}
.differential:hover { background: rgba(255,255,255,0.012); }
.differential:nth-child(3n) { border-right: none; }
.differential:nth-child(4), .differential:nth-child(5), .differential:nth-child(6) { border-bottom: none; }
.differential__number {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 900;
  color: rgba(245,192,0,0.09);
  line-height: 1;
  margin-bottom: 18px;
  letter-spacing: -0.04em;
}
.differential h3 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--white);
  letter-spacing: 0.01em;
}
.differential p {
  font-size: 0.86rem;
  color: var(--gray-500);
  line-height: 1.62;
}

/* ===== PROCESS ===== */
.process {
  padding: 140px 0;
  border-top: 1px solid var(--border);
  background: var(--bg-2);
}
.process__steps {
  display: flex;
  flex-direction: column;
  max-width: 720px;
  margin: 0 auto;
  position: relative;
}
.process__steps::before {
  content: '';
  position: absolute;
  left: 23px;
  top: 24px;
  bottom: 24px;
  width: 1px;
  background: linear-gradient(to bottom, var(--gold) 0%, rgba(245,192,0,0.08) 100%);
}
.process__step {
  display: flex;
  align-items: flex-start;
  gap: 32px;
  padding: 32px 0;
  border-bottom: 1px solid var(--border);
  position: relative;
}
.process__step:last-child { border-bottom: none; }
.process__step-number {
  width: 46px;
  height: 46px;
  background: var(--gold);
  color: var(--black);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}
.process__step-content h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 8px;
  padding-top: 10px;
}
.process__step-content p {
  color: var(--gray-500);
  font-size: 0.92rem;
  line-height: 1.65;
}

/* ===== TESTIMONIALS ===== */
.testimonials {
  padding: 140px 0;
  border-top: 1px solid var(--border);
}
.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.testimonial {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  position: relative;
}
.testimonial::before {
  content: '\201C';
  position: absolute;
  top: 20px;
  left: 28px;
  font-family: var(--font-display);
  font-size: 5rem;
  font-weight: 900;
  color: var(--gold);
  opacity: 0.08;
  line-height: 1;
  pointer-events: none;
}
.testimonial:hover {
  border-color: rgba(255,255,255,0.12);
}
.testimonial--featured {
  border-color: var(--border-gold);
}
.testimonial--featured:hover {
  border-color: rgba(245,192,0,0.35);
}
.testimonial__text {
  color: var(--gray-300);
  font-size: 0.96rem;
  line-height: 1.72;
  margin-bottom: 28px;
  flex: 1;
  position: relative;
  z-index: 1;
}
.testimonial__author {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}
.testimonial__avatar {
  width: 38px;
  height: 38px;
  background: var(--bg-3);
  border: 1px solid var(--border-strong);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 800;
  color: var(--gold);
  flex-shrink: 0;
  letter-spacing: 0.02em;
}
.testimonial__author strong {
  display: block;
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 2px;
}
.testimonial__author span {
  font-size: 0.75rem;
  color: var(--gray-500);
}

/* ===== FINAL CTA ===== */
.final-cta {
  padding: 160px 0;
  border-top: 1px solid var(--border);
  background: var(--bg-2);
}
.final-cta__content {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}
.final-cta__title {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 7vw, 5.2rem);
  font-weight: 900;
  line-height: 0.97;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
}
.final-cta__title em {
  font-style: italic;
  color: var(--gold);
  display: block;
}
.final-cta__desc {
  font-size: 1rem;
  color: var(--gray-300);
  max-width: 480px;
  margin: 0 auto 48px;
  line-height: 1.7;
}
.final-cta__actions { margin-bottom: 20px; }
.final-cta__note {
  font-size: 0.78rem;
  color: var(--gray-500);
  letter-spacing: 0.05em;
}

/* ===== FOOTER ===== */
.footer {
  border-top: 1px solid var(--border);
  background: var(--bg-2);
  padding: 80px 0 36px;
}
.footer__top {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 80px;
  margin-bottom: 56px;
}
.footer__logo {
  font-family: var(--font-display);
  font-weight: 900;
  font-style: italic;
  font-size: 1.7rem;
  letter-spacing: -0.02em;
  display: block;
  margin-bottom: 14px;
}
.footer__brand p {
  font-size: 0.87rem;
  color: var(--gray-500);
  line-height: 1.65;
  margin-bottom: 22px;
}
.footer__social {
  display: flex;
  gap: 10px;
}
.footer__social a {
  width: 36px;
  height: 36px;
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-radius: 7px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray-500);
  transition: var(--transition);
}
.footer__social a:hover {
  border-color: var(--border-gold);
  color: var(--gold);
}
.footer__links {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}
.footer__col h4 {
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gray-500);
  margin-bottom: 16px;
}
.footer__col ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer__col a {
  font-size: 0.87rem;
  color: var(--gray-500);
  transition: color 0.18s;
}
.footer__col a:hover { color: var(--white); }
.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  font-size: 0.78rem;
  color: var(--gray-700);
}

/* ===== WA FLOAT ===== */
.wa-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 90;
  width: 54px;
  height: 54px;
  background: #25D366;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(37,211,102,0.3);
  transition: var(--transition);
}
.wa-float:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(37,211,102,0.45);
}

/* ===== REVEAL ANIMATIONS ===== */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.08s; }
.reveal-delay-2 { transition-delay: 0.16s; }
.reveal-delay-3 { transition-delay: 0.24s; }
.reveal-delay-4 { transition-delay: 0.32s; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .about__inner { grid-template-columns: 1fr; gap: 56px; }
  .care__inner { grid-template-columns: 1fr; gap: 56px; }
  .ai-section__inner { grid-template-columns: 1fr; gap: 56px; }
  .differentials__grid { grid-template-columns: repeat(2, 1fr); }
  .differential:nth-child(3n) { border-right: 1px solid var(--border); }
  .differential:nth-child(2n) { border-right: none; }
  .differential:nth-child(5), .differential:nth-child(6) { border-bottom: none; }
  .differential:nth-child(3), .differential:nth-child(4) { border-bottom: 1px solid var(--border); }
  .footer__top { grid-template-columns: 1fr; gap: 48px; }
  .footer__links { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .container { padding: 0 24px; }
  .nav__links { display: none; }
  .nav__right .nav__cta { display: none; }
  .nav__toggle { display: flex; }
  .nav__container { grid-template-columns: 1fr auto; }
  .hero__stats {
    flex-direction: column;
    gap: 20px;
    padding: 24px 28px;
  }
  .hero__stat-divider { width: 100%; height: 1px; margin: 0; }
  .services__grid { grid-template-columns: 1fr; }
  .service-card--featured { grid-column: span 1; }
  .portfolio__grid { grid-template-columns: 1fr; }
  .portfolio-item--large { grid-column: span 1; }
  .portfolio-item--large .portfolio-item__img { height: 240px; }
  .testimonials__grid { grid-template-columns: 1fr; }
  .differentials__grid { grid-template-columns: 1fr; }
  .differential { border-right: none !important; border-bottom: 1px solid var(--border) !important; }
  .differential:last-child { border-bottom: none !important; }
  .footer__bottom { flex-direction: column; gap: 8px; text-align: center; }
  .portfolio__cta { flex-direction: column; gap: 20px; }
  .footer__links { grid-template-columns: 1fr 1fr; }
  .about__cards { grid-template-columns: 1fr; }
  .portfolio-item__info { flex-direction: column; align-items: flex-start; gap: 12px; }
  .portfolio-item__metrics div { align-items: flex-start; }
  .section-header { margin-bottom: 52px; }
}

@media (max-width: 480px) {
  .hero__actions { flex-direction: column; align-items: stretch; }
  .hero__actions .btn { justify-content: center; }
  .care__dashboard-stats { grid-template-columns: 1fr; }
  .care__dashboard-stat { border-right: none; border-bottom: 1px solid var(--border); }
  .care__dashboard-stat:last-child { border-bottom: none; }
  .footer__links { grid-template-columns: 1fr; }
  .portfolio__cta { padding: 28px 24px; }
}
