/* ─── Design Tokens ─────────────────────────────────── */
:root {
  --bg-base: #000000;
  --bg-panel: rgba(0, 0, 0, 0.95);
  --bg-elevated: rgba(0, 0, 0, 0.90);
  --accent: #006dd3;
  --accent-dim: rgba(0, 109, 211, .12);
  --accent-glow: 0 0 40px rgba(0, 109, 211, .35);
  --text-primary: #FFFFFF;
  --text-muted: #FFFFFF;
  --text-subtle: #FFFFFF;
  --border: rgba(255, 255, 255, .06);
  --border-accent: rgba(0, 109, 211, .4);
  --font-sans: 'Syne', sans-serif;
  --font-secondary: 'Plus Jakarta Sans', sans-serif;
  --font-mono: 'Courier New', monospace;
}

/* ─── Base Reset ────────────────────────────────────── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

@media (hover: hover) and (pointer: fine) {

  *,
  *::before,
  *::after {
    cursor: none !important;
  }
}

html {
  font-size: 16px;
  background-color: #000000;
  scroll-behavior: auto;
}

body {
  background-color: #000000;
  color: var(--text-primary);
  font-family: var(--font-secondary);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  overscroll-behavior: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-sans);
  font-weight: 600;
  hyphens: none;
  -webkit-hyphens: none;
  overflow-wrap: normal;
  word-break: keep-all;
}

/* ─── GSAP Structural ───────────────────────────────── */
#smooth-wrapper {
  overflow: visible !important;
  width: 100%;
  position: relative;
}

#smooth-content {
  overflow: visible !important;
  width: 100%;
}

/* ─── Custom Cursor ─────────────────────────────────── */
#cursor-dot {
  position: fixed;
  top: 0;
  left: 0;
  width: 6px;
  height: 6px;
  background: #fff;
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  opacity: 0;
  will-change: transform;
  margin: -3px 0 0 -3px;
}

#cursor-ring {
  position: fixed;
  top: 0;
  left: 0;
  width: 32px;
  height: 32px;
  border: 1.5px solid rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  opacity: 0;
  will-change: transform;
  margin: -16px 0 0 -16px;
}

@media (hover: none) {

  #cursor-dot,
  #cursor-ring {
    display: none !important;
  }
}

/* ─── Scroll Reveal ─────────────────────────────────── */
@media (prefers-reduced-motion: no-preference) {
  .sys-reveal {
    opacity: 0;
    transform: translateY(24px);
    filter: blur(6px);
    transition: opacity 1.6s cubic-bezier(.16, 1, .3, 1),
      transform 1.6s cubic-bezier(.16, 1, .3, 1),
      filter 1.4s ease-out;
    will-change: opacity, transform;
  }

  .sys-rise {
    transform: translateY(34px);
  }


  .sys-active {
    opacity: 1 !important;
    transform: translate(0) scale(1) !important;
    filter: blur(0) !important;
  }

  .sys-delay-1 {
    transition-delay: 120ms;
  }

  .sys-delay-2 {
    transition-delay: 240ms;
  }

  .sys-delay-3 {
    transition-delay: 360ms;
  }

  .sys-delay-4 {
    transition-delay: 480ms;
  }

  .sys-delay-5 {
    transition-delay: 600ms;
  }

}

/* ─── Heading Hierarchy (fora do hero) ──────────────── */
#site-main h2,
footer h2 {
  color: #FFFFFF !important;
}

#site-main h3,
footer h3 {
  color: #FFFFFF !important;
}

#site-main h4,
#site-main h5,
#site-main h6,
footer h4,
footer h5,
footer h6 {
  color: #FFFFFF !important;
}

/* ─── Typography Utilities ──────────────────────────── */
.text-outline {
  -webkit-text-stroke: 1.5px rgba(255, 255, 255, .3);
  color: transparent;
  display: inline;
}

.text-ghost {
  color: #ffffff;
  opacity: 0.04;
  font-weight: 700;
  user-select: none;
  pointer-events: none;
}

.text-glow {
  text-shadow: 0 0 40px rgba(255, 255, 255, .12);
}

.text-shimmer {
  background: linear-gradient(90deg, #fff 0%, rgba(255, 255, 255, .4) 40%, #fff 60%, rgba(255, 255, 255, .4) 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shimmer 4s linear infinite;
}

@keyframes shimmer {
  0% {
    background-position: -200% center;
  }

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


/* ─── Section Labels ────────────────────────────────── */
.section-label {
  font-family: var(--font-mono);
  font-size: .625rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--accent);
}

.section-index {
  font-family: var(--font-mono);
  font-size: .625rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--text-subtle);
}

/* ─── Grid Utilities ────────────────────────────────── */
.grid-bordered {
  display: grid;
  gap: 1px;
  background: transparent;
  border-radius: 0.75rem;
  overflow: hidden;
}

/* ─── Animated Border ───────────────────────────────── */
@property --angle {
  syntax: '<angle>';
  initial-value: 0deg;
  inherits: false;
}

@keyframes border-rotate {
  from {
    --angle: 0deg;
  }

  to {
    --angle: 360deg;
  }
}

.animated-border {
  position: relative;
  border: 2px solid transparent;
  border-radius: 0.75rem;
  background:
    linear-gradient(var(--bg-base), var(--bg-base)) padding-box,
    conic-gradient(from var(--angle), transparent 70%, var(--accent) 100%) border-box;
  animation: border-rotate 8s linear infinite;
}

.animated-border::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  border: 2px solid transparent;
  border-radius: inherit;
  background:
    linear-gradient(var(--bg-base), var(--bg-base)) padding-box,
    conic-gradient(from var(--angle), transparent 70%, var(--accent) 100%) border-box;
  animation: inherit;
  filter: blur(4px);
}


/* ─── Pulse Dot ─────────────────────────────────────── */
@keyframes pulse-ring {
  0% {
    transform: scale(.8);
    box-shadow: 0 0 0 0 rgba(0, 109, 211, .6);
  }

  70% {
    transform: scale(1);
    box-shadow: 0 0 0 10px rgba(0, 109, 211, 0);
  }

  100% {
    transform: scale(.8);
    box-shadow: 0 0 0 0 rgba(0, 109, 211, 0);
  }
}

.pulse-dot {
  animation: pulse-ring 2s ease-out infinite;
}


/* ─── Navbar ────────────────────────────────────────── */
#navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 2rem;
  background: rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
  border-radius: 0 0 0.75rem 0.75rem;
  transition: background .3s;
}

.nav-link {
  font-family: var(--font-mono);
  font-size: .7rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: #FFFFFF;
  text-decoration: none;
  transition: color .2s;
  padding: .25rem 0;
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--accent);
  transition: width .25s ease;
}

.nav-link:hover {
  color: #fff;
}

.nav-link:hover::after {
  width: 100%;
}

/* ─── Buttons ───────────────────────────────────────── */
.btn-primary {
  background: var(--accent);
  color: #fff;
  padding: .875rem 2.5rem;
  font-family: var(--font-mono);
  font-size: .7rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  border: none;
  border-radius: 0.375rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: .75rem;
  transition: box-shadow .25s, transform .2s;
}

.btn-primary:hover {
  box-shadow: var(--accent-glow);
}

.btn-secondary {
  background: transparent;
  color: var(--text-muted);
  padding: .875rem 2rem;
  font-family: var(--font-mono);
  font-size: .7rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  border: 1px solid var(--border);
  border-radius: 0.375rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: .75rem;
  transition: border-color .2s, color .2s;
}

.btn-secondary:hover {
  border-color: rgba(255, 255, 255, .2);
  color: #fff;
}

/* ─── Form Button Progress & Effects ────────────────── */
#contact-submit {
  position: relative;
  overflow: hidden;
  z-index: 1;
  isolation: isolate;
  transition: transform 0.3s ease, filter 0.3s ease, box-shadow 0.3s ease;
}

#contact-submit:hover {
  filter: brightness(1.15);
  box-shadow: 0 10px 30px rgba(0, 109, 211, 0.5);
}

#contact-submit::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: var(--btn-progress, 0%);
  background: rgba(255, 255, 255, 0.15);
  z-index: 0;
  transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Shimmer gradient animation */
@keyframes shimmer-move {
  0% { left: -100%; }
  100% { left: 100%; }
}

.shimmer-active::after {
  content: '';
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.25),
    transparent
  );
  transform: skewX(-25deg);
  animation: shimmer-move 1.8s infinite ease-in-out;
  z-index: 1;
  pointer-events: none;
}

/* Pulse animation */
@keyframes pulse-btn {
  0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(0, 109, 211, 0.7); }
  70% { transform: scale(1.03); box-shadow: 0 0 0 15px rgba(0, 109, 211, 0); }
  100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(0, 109, 211, 0); }
}

.pulse-active {
  animation: pulse-btn 2s infinite ease-in-out;
  border: 1px solid rgba(255, 255, 255, 0.2) !important;
  background-color: var(--accent) !important;
}

/* ─── Cards ─────────────────────────────────────────── */
.service-card {
  background: var(--bg-panel);
  border: 1px solid var(--border);
  border-radius: 0.75rem;
  padding: 2.5rem 2rem;
  position: relative;
  overflow: hidden;
  transition: border-color .3s, background .3s;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  opacity: 0;
  transition: opacity .3s;
}

.service-card:hover {
  border-color: var(--border-accent);
  background: rgba(0, 109, 211, .03);
}

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

.service-icon {
  width: 48px;
  height: 48px;
  background: var(--accent-dim);
  border: 1px solid var(--border-accent);
  border-radius: 0.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  color: var(--accent);
}

.stat-card {
  border-left: 2px solid var(--accent);
  border-radius: 0.75rem;
  padding: 1.5rem 2rem;
  background: var(--bg-panel);
  position: relative;
  overflow: hidden;
}

.testimonial-card {
  background: var(--bg-panel);
  border: 1px solid var(--border);
  border-radius: 0.75rem;
  padding: 2.5rem;
  position: relative;
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 1.5rem;
  right: 2rem;
  font-family: var(--font-sans);
  font-size: 8rem;
  line-height: 1;
  color: rgba(0, 109, 211, .08);
  pointer-events: none;
  font-weight: 700;
}

/* ─── Corner marks ───────────────────────────────────── */
.corner-tl {
  position: absolute;
  top: 1rem;
  left: 1rem;
  width: 1.25rem;
  height: 1.25rem;
  border-left: 1px solid var(--border-accent);
  border-top: 1px solid var(--border-accent);
  pointer-events: none;
}

.corner-br {
  position: absolute;
  bottom: 1rem;
  right: 1rem;
  width: 1.25rem;
  height: 1.25rem;
  border-right: 1px solid var(--border-accent);
  border-bottom: 1px solid var(--border-accent);
  pointer-events: none;
}


/* ─── Section divider ─────────────────────────────────── */
.section-divider {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.section-divider .line {
  flex: 1;
  height: 1px;
  background: var(--border);
}

/* ─── Layout wrappers ─────────────────────────────────── */
#layout-wrap {
  max-width: 1720px;
  margin: 0 auto;
  padding: 0 2.5rem 6rem;
  display: flex;
  align-items: flex-start;
  gap: 2rem;
  position: relative;
  z-index: 10;
}

#site-nav {
  width: 12rem;
  flex-shrink: 0;
  position: sticky;
  top: 96px;
  height: calc(100vh - 96px);
  align-self: flex-start;
  border-right: 1px solid var(--border);
  background: transparent;
  display: none;
  flex-direction: column;
  justify-content: center;
}

@media (min-width: 1024px) {

  #site-nav {
    display: flex;
  }
}

section {
  will-change: transform;
  transform-origin: center center;
}

#site-main>section {
  backdrop-filter: blur(28px) saturate(160%);
  -webkit-backdrop-filter: blur(28px) saturate(160%);
  border-radius: 1.25rem;
  margin-bottom: 1.75rem;
  overflow: hidden;
}

#site-main>section:last-child {
  margin-bottom: 0;
}

#site-nav a {
  display: block;
  position: relative;
  font-family: var(--font-mono);
  font-size: .65rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--text-subtle);
  text-decoration: none;
  padding: .4rem 1rem;
  transition: color .2s;
}

#site-nav a:hover,
#site-nav a.active {
  color: var(--accent);
}

.nav-bar {
  position: absolute;
  left: 0;
  top: 0;
  width: 2px;
  height: 100%;
  background: var(--accent);
  transform: scaleY(0);
  transform-origin: top center;
  pointer-events: none;
}

.nav-group {
  font-family: var(--font-mono);
  font-size: .5rem;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--text-subtle);
  padding: 1.25rem 1rem .5rem;
  opacity: .5;
}

/* ─── Mobile menu ─────────────────────────────────────── */
#mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 101;
  background: rgba(0, 0, 0, .97);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 2rem;
  transform: translateX(100%);
  transition: transform .4s cubic-bezier(.16, 1, .3, 1);
}

#mobile-menu.open {
  transform: translateX(0);
}

/* ─── Custom Classes ─────────────────────────────────── */
.client-logo {
  background: var(--bg-panel);
  border-radius: 0.75rem;
  padding: 2rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 80px;
  opacity: .5;
  will-change: transform, opacity, filter;
}

.contact-link {
  color: var(--text-primary);
  text-decoration: none;
  font-size: .9rem;
  transition: color .2s;
}

.contact-link:hover {
  color: #fff;
}

.footer-link {
  font-size: .875rem;
  color: var(--text-muted);
  text-decoration: none;
  transition: color .2s;
}

.footer-link:hover {
  color: #fff;
}
#page-loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: #000000;
  pointer-events: none;
  transition: opacity .5s ease .2s;
}

/* ─── Image Placeholder ──────────────────────────────── */
.img-ph {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg,
    rgba(0, 109, 211, .07) 0%,
    rgba(255, 255, 255, .015) 50%,
    rgba(0, 109, 211, .04) 100%);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.img-ph::before {
  content: '';
  position: absolute;
  inset: 8px;
  border: 1px dashed rgba(255, 255, 255, .04);
  pointer-events: none;
}

.img-ph::after {
  content: 'IMAGEM';
  font-family: var(--font-mono);
  font-size: .55rem;
  letter-spacing: .3em;
  color: var(--text-subtle);
}

/* ─── Nossa Abordagem ────────────────────────────────── */
.approach-img-wrapper {
  will-change: clip-path;
  border-radius: 0.75rem;
  overflow: hidden;
}

.approach-float-card {
  position: absolute;
  bottom: -2rem;
  right: -1.5rem;
  background: var(--bg-elevated);
  border: 1px solid var(--border-accent);
  padding: 1.25rem 1.75rem;
  backdrop-filter: blur(16px);
  z-index: 2;
}

.approach-feature {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  background: var(--bg-panel);
  border-radius: 0.75rem;
  transition: background .3s;
}

.approach-feature:hover {
  background: rgba(0, 109, 211, .04);
}

.approach-feature-bar {
  width: 2px;
  align-self: stretch;
  background: var(--accent);
  flex-shrink: 0;
}

/* ─── Cases Slider ───────────────────────────────────── */
#cases-track {
  display: flex;
  will-change: transform;
}

.case-slide {
  flex: 0 0 calc(33.333% - 8px);
  background: var(--bg-panel);
  border: 1px solid var(--border);
  border-radius: 0.75rem;
  overflow: hidden;
  transition: border-color .3s;
}

.case-slide:hover {
  border-color: var(--border-accent);
}

.case-img-wrap {
  aspect-ratio: 16 / 9;
  overflow: hidden;
  position: relative;
  border-radius: 0.75rem 0.75rem 0 0;
}

.case-img-inner {
  width: 112%;
  height: 112%;
  margin: -6%;
  transition: transform .6s ease;
}

.case-slide:hover .case-img-inner {
  transform: scale(1.04);
}

.case-metric {
  font-family: var(--font-sans);
  font-size: 2.25rem;
  font-weight: 500;
  color: #fff;
  letter-spacing: -.04em;
  line-height: 1;
}

.slider-btn {
  width: 44px;
  height: 44px;
  background: rgba(255, 255, 255, .04);
  border: 1px solid var(--border);
  border-radius: 0.375rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  cursor: pointer;
  transition: border-color .2s, color .2s, opacity .3s;
  flex-shrink: 0;
}

.slider-btn:hover {
  border-color: rgba(255, 255, 255, .2);
  color: #fff;
}

.slider-btn:disabled,
.slider-btn.is-disabled {
  opacity: .25;
  pointer-events: none;
}

.cases-dots {
  display: flex;
  align-items: center;
  gap: .5rem;
}

.cases-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--border);
  border: none;
  cursor: pointer;
  transition: background .25s, transform .25s;
  padding: 0;
}

.cases-dot.active {
  background: var(--accent);
  transform: scale(1.4);
}

/* ─── Equipe ─────────────────────────────────────────── */
.team-card {
  background: var(--bg-panel);
  border-radius: 0.75rem;
  overflow: hidden;
  position: relative;
  transition: border-color .3s;
}

.team-img-wrap {
  aspect-ratio: 1;
  overflow: hidden;
  position: relative;
  border-radius: 0.75rem 0.75rem 0 0;
}

.team-img-inner {
  width: 100%;
  height: 108%;
  margin-top: -4%;
  transition: transform .5s ease;
}

.team-card:hover .team-img-inner {
  transform: scale(1.05);
}

.team-info {
  padding: 1.5rem;
  border-top: 1px solid var(--border);
}

.team-role {
  font-family: var(--font-mono);
  font-size: .6rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--accent);
  margin: .25rem 0 .6rem;
}

/* ─── Por Que DRX ────────────────────────────────────── */
.why-img-wrap {
  overflow: hidden;
  position: relative;
  border-radius: 0.75rem;
}

.why-img-inner {
  width: 100%;
  height: 120%;
  margin-top: -10%;
  will-change: transform;
}

.why-feature {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  padding: 1.25rem 0;
  border-bottom: 1px solid var(--border);
}

.why-feature:first-child {
  border-top: 1px solid var(--border);
}

.why-icon {
  width: 40px;
  height: 40px;
  background: var(--accent-dim);
  border: 1px solid var(--border-accent);
  border-radius: 0.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  flex-shrink: 0;
}

/* ─── Social Icons ───────────────────────────────────── */
.social-icon {
  border-radius: 0.375rem;
}

/* ─── Contact Form ───────────────────────────────────── */
#contact input,
#contact textarea {
  border-radius: 0.25rem;
}

#contact button[type="submit"] {
  border-radius: 0.375rem;
}

/* ─── Responsive ─────────────────────────────────────── */
@media (max-width: 1024px) {
  #layout-wrap {
    display: block;
    padding: 0 1.25rem 4rem;
  }

  #site-main > section {
    padding-left: 1.5rem !important;
    padding-right: 1.5rem !important;
  }

  .grid-2col-mobile {
    grid-template-columns: 1fr !important;
    gap: 3rem !important;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr !important;
    gap: 2rem !important;
  }
}

@media (max-width: 1024px) {
  .case-slide { flex: 0 0 calc(50% - 6px); }
  .approach-float-card { right: 0; bottom: -1.5rem; }
  #approach .grid-bordered { grid-template-columns: 1fr !important; }
  #approach > div > div:nth-child(2) { grid-template-columns: 1fr !important; }
}

@media (max-width: 640px) {
  /* ── Layout ── */
  #layout-wrap {
    padding: 0 0.75rem 2.5rem;
  }

  #site-main > section {
    padding: 3rem 1rem !important;
    border-radius: 0.75rem;
    margin-bottom: 1rem;
  }

  #site-main > section:last-child {
    margin-bottom: 0;
  }

  /* ── Hero ── */
  @supports (height: 100dvh) {
    #hero { height: 100dvh !important; }
  }

  #hero {
    min-height: 600px;
  }

  .hero-body {
    padding: 0 1rem 3rem !important;
    align-items: flex-end !important;
    flex-wrap: wrap !important;
  }

  #hero h1 {
    font-size: clamp(2.75rem, 10vw, 4rem) !important;
  }

  #hero p.hero-split {
    font-size: 0.95rem !important;
    margin-top: 1.25rem !important;
  }

  #hero .sys-delay-4 {
    margin-top: 1.75rem !important;
  }

  /* ── Cases slider ── */
  .case-slide { flex: 0 0 100%; }

  #cases > div:first-of-type {
    padding: 0 1rem 1.5rem !important;
  }

  #cases-slider-outer {
    padding: 0 1rem !important;
  }

  /* ── Approach float card ── */
  .approach-float-card { position: static; margin-top: 1rem; }

  /* ── Grid ── */
  .grid-1col-mobile {
    grid-template-columns: 1fr !important;
  }

  /* ── Footer ── */
  footer {
    padding: 3rem 1rem 2rem !important;
  }

  .footer-grid {
    grid-template-columns: 1fr !important;
    gap: 2rem !important;
  }

  /* ── Navbar ── */
  #navbar {
    padding: 0 1rem;
  }

  /* ── Tipografia consistente ── */
  #site-main h2 {
    font-size: clamp(1.6rem, 7vw, 2.5rem) !important;
    line-height: 1.1 !important;
    max-width: 100% !important;
  }

  /* ── Team cards ── */
  #team .grid-bordered {
    grid-template-columns: 1fr !important;
  }

  /* ── Stats cards ── */
  .stat-card {
    padding: 1.25rem 1rem !important;
  }

  .stat-card > div:nth-child(3) {
    font-size: 2rem !important;
  }

  .stat-card .text-ghost {
    font-size: 3rem !important;
  }

  /* ── Contact form ── */
  #contact .animated-border {
    padding: 1.5rem !important;
  }
}