/*********************************************************/
/*CSS MODE - MRPSTUDIO 2026
/*********************************************************/
/* === RESET & VARIABLES === */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
:root {
  --navy: #1b1b3a;
  --navy-light: #2a2a52;
  --navy-dark: #12122a;
  --orange: #ff5722;
  --orange-light: #ff7a50;
  --orange-glow: rgba(255, 87, 34, 0.15);
  --white: #ffffff;
  --off-white: #f8f7f4;
  --gray-100: #f0efec;
  --gray-200: #e0ddd8;
  --gray-400: #9a9590;
  --gray-600: #6b6560;
  --gray-800: #3a3530;
  --font-display: 'Lexend', sans-serif;
  --font-body: 'DM Sans', sans-serif;
  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-out-quart: cubic-bezier(0.25, 1, 0.5, 1);
}
html { scroll-behavior: smooth; font-size: 16px; scroll-padding-top: 96px; }
body {
  font-family: var(--font-body);
  color: var(--navy);
  background: var(--off-white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
body.menu-open {
  overflow: hidden;
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
ul { list-style: none; }

/* === GRAIN OVERLAY === */
body::after {
  content: '';
  position: fixed;
  top: 0; left: 0; width: 100%; height: 100%;
  pointer-events: none;
  z-index: 9999;
  opacity: 0.025;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 256px 256px;
}

/* === UTILITY === */
.container { max-width: 1280px; margin: 0 auto; padding: 0 clamp(1.5rem, 4vw, 3rem); }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); border: 0; }

/* === REVEAL ANIMATIONS === */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.9s var(--ease-out-expo), transform 0.9s var(--ease-out-expo);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }

/* === NAVIGATION === */
.nav {
  position: fixed;
  top: 0; left: 0; width: 100%;
  z-index: 1000;
  padding: 10px 0;
  transition: all 0.4s var(--ease-out-quart);
  background-color: #f9f9f9;
}
.nav.scrolled {
  background: rgba(248, 247, 244, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(27, 27, 58, 0.06);
  padding: 0.9rem 0;
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo img {
  height: 80px;
  width: auto;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}
.nav-links a {
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--navy);
  position: relative;
  padding: 0.25rem 0;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 1.5px;
  background: var(--orange);
  transition: width 0.3s var(--ease-out-expo);
}
.nav-links a:hover::after { width: 100%; }
.nav-cta {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--white);
  background: var(--navy);
  padding: 0.7rem 1.6rem;
  border-radius: 100px;
  transition: all 0.3s var(--ease-out-quart);
  letter-spacing: 0.01em;
}
.nav-cta:hover {
  background: var(--orange);
  transform: translateY(-1px);
}

/* Mobile menu */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 28px;
  padding: 4px 0;
}
.nav-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: all 0.3s var(--ease-out-quart);
}
.nav-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

@media (max-width: 768px) {
  .nav-toggle { display: flex; }
  .nav-links {
    position: fixed;
    top: 0; right: -100%;
    width: 100%; height: 100vh;
    background: var(--off-white);
    flex-direction: column;
    justify-content: center;
    gap: 2rem;
    transition: right 0.5s var(--ease-out-expo);
  }
  .nav-links.open { right: 0; }
  .nav-links a { font-size: 1.5rem; }
  .nav-cta { font-size: 1.1rem; padding: 1rem 2.5rem; }
}

/* === HERO === */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 10rem 0 4rem;
  background:
    linear-gradient(115deg, rgba(8, 12, 30, 0.9) 0%, rgba(8, 12, 30, 0.76) 42%, rgba(8, 12, 30, 0.88) 100%),
    url("images/bg.jpg") center/cover no-repeat;
  background-attachment: fixed;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(6, 10, 24, 0.35) 0%, rgba(6, 10, 24, 0.62) 100%),
    radial-gradient(circle at 18% 22%, rgba(255, 87, 34, 0.18) 0%, transparent 30%);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  top: -20%; right: -10%;
  width: 60vw; height: 60vw;
  max-width: 800px; max-height: 800px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 87, 34, 0.2) 0%, transparent 70%);
  pointer-events: none;
  animation: heroGlow 8s ease-in-out infinite alternate;
}
@keyframes heroGlow {
  0% { transform: translate(0, 0) scale(1); opacity: 0.6; }
  100% { transform: translate(-30px, 20px) scale(1.1); opacity: 1; }
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 1;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.18);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  color: var(--white);
  padding: 0.5rem 1.2rem;
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 2rem;
}
.hero-badge::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--orange);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.5); }
}
.hero h1 {
  font-family: var(--font-display);
  font-size: 3.4em;
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--white);
  margin-bottom: 1.5rem;
  text-shadow: 0 10px 30px rgba(8, 12, 30, 0.35);
}
.hero h1 .accent {
  color: var(--orange);
  position: relative;
  display: inline-block;
}
.hero h1 .accent::after {
  content: '';
  position: absolute;
  bottom: 0.05em; left: 0;
  width: 100%; height: 0.12em;
  background: var(--orange);
  opacity: 0.2;
  border-radius: 4px;
}
.hero-text {
  font-size: clamp(1.05rem, 1.3vw, 1.2rem);
  line-height: 1.7;
  color: rgba(255,255,255,0.82);
  max-width: 520px;
  margin-bottom: 2.5rem;
  text-shadow: 0 8px 24px rgba(8, 12, 30, 0.25);
}
.hero-actions {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: var(--orange);
  color: var(--white);
  font-size: 1rem;
  font-weight: 600;
  padding: 1rem 2rem;
  border-radius: 100px;
  transition: all 0.3s var(--ease-out-quart);
  box-shadow: 0 4px 24px rgba(255, 87, 34, 0.25);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(255, 87, 34, 0.35);
}
.btn-primary svg { transition: transform 0.3s var(--ease-out-quart); }
.btn-primary:hover svg { transform: translateX(3px); }
.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--navy);
  padding: 1rem 0;
  position: relative;
}
.btn-secondary::after {
  content: '';
  position: absolute;
  bottom: 0.7rem; left: 0;
  width: 100%; height: 1.5px;
  background: var(--navy);
  opacity: 0.3;
  transition: opacity 0.3s;
}
.btn-secondary:hover::after { opacity: 1; }

/* Hero visual */
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
.hero-card {
  width: 100%;
  max-width: 480px;
  aspect-ratio: 4/3.5;
  background: var(--navy);
  border-radius: 24px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 40px 80px rgba(27, 27, 58, 0.2);
}
.hero-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 50%, var(--navy) 100%);
}
.hero-card-content {
  position: relative;
  z-index: 2;
  padding: 2.5rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.hero-card-label {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
}
.hero-card-metric {
  font-family: var(--font-display);
  font-size: clamp(3rem, 5vw, 4.5rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1;
}
.hero-card-metric .unit {
  font-size: 0.4em;
  color: var(--orange);
  font-weight: 600;
  vertical-align: super;
  margin-left: 0.1em;
}
.hero-card-desc {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.6;
}
.hero-card-bars {
  display: flex;
  align-items: flex-end;
  gap: 6px;
  height: 80px;
  margin-top: 1rem;
}
.hero-card-bar {
  flex: 1;
  border-radius: 4px 4px 0 0;
  background: rgba(255,255,255,0.08);
  position: relative;
  overflow: hidden;
  animation: barGrow 1.5s var(--ease-out-expo) forwards;
  animation-delay: var(--delay);
  transform-origin: bottom;
  transform: scaleY(0);
}
@keyframes barGrow {
  to { transform: scaleY(1); }
}
.hero-card-bar .fill {
  position: absolute;
  bottom: 0; left: 0;
  width: 100%;
  background: var(--orange);
  border-radius: 4px 4px 0 0;
  animation: fillGrow 1.8s var(--ease-out-expo) forwards;
  animation-delay: calc(var(--delay) + 0.3s);
  height: 0;
}
@keyframes fillGrow {
  to { height: var(--fill); }
}
.hero-float-tag {
  position: absolute;
  background: var(--white);
  border-radius: 16px;
  padding: 1rem 1.3rem;
  box-shadow: 0 12px 40px rgba(27, 27, 58, 0.12);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  z-index: 3;
  animation: float 4s ease-in-out infinite;
}
.hero-float-tag.tag-1 {
  top: 10%; right: -10%;
  animation-delay: 0s;
}
.hero-float-tag.tag-2 {
  bottom: 15%; left: -8%;
  animation-delay: 1.5s;
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}
.float-icon {
  width: 40px; height: 40px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}
.float-icon.green { background: #e8f5e9; }
.float-icon.blue { background: #e3f2fd; }
.float-label { font-size: 0.75rem; color: var(--gray-400); }
.float-value { font-size: 0.95rem; font-weight: 700; color: var(--navy); }

@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; gap: 3rem; }
  .hero-visual { order: -1; }
  .hero-card { max-width: 400px; margin: 0 auto; }
  .hero-float-tag.tag-1 { right: 0; }
  .hero-float-tag.tag-2 { left: 0; }
}
@media (max-width: 768px) {
  .hero { padding: 7rem 0 3rem; min-height: auto; }
  .hero-float-tag { display: none; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
}

/* === MARQUEE === */
.marquee-section {
  padding: 3rem 0;
  border-top: 1px solid var(--gray-200);
  border-bottom: 1px solid var(--gray-200);
  overflow: hidden;
  background: var(--white);
}
.marquee-track {
  display: flex;
  animation: marquee 30s linear infinite;
  width: max-content;
}
.marquee-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0 3rem;
  white-space: nowrap;
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--gray-400);
  letter-spacing: 0.02em;
}
.marquee-item .dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--orange);
  flex-shrink: 0;
}
@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* === SERVICES === */
.services {
  padding: clamp(5rem, 10vw, 9rem) 0;
  background: var(--off-white);
}
.services .section-label,
.services .section-title {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}
.section-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 1rem;
}
.section-title {
  font-family: var(--font-display);
  font-size: 2.6em;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--navy);
  margin-bottom: 1rem;
  max-width: 600px;
}
.section-subtitle {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--gray-600);
  max-width: 540px;
  margin-bottom: 3.5rem;
}
.about-layout {
  max-width: 1080px;
  margin: 2.5rem auto 0;
  display: grid;
  grid-template-columns: minmax(280px, 420px) minmax(0, 1fr);
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: stretch;
}
.about-photo {
  min-height: 520px;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(27, 27, 58, 0.12);
  position: relative;
  background: var(--gray-100);
}
.about-photo img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center top;
}
.about-copy {
  padding: clamp(2rem, 4vw, 3rem);
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 24px;
  box-shadow: 0 20px 60px rgba(27, 27, 58, 0.06);
}
.about-copy p {
  font-size: 1.05rem;
  line-height: 1.9;
  color: var(--gray-600);
  text-align: left;
}
.about-copy p + p {
  margin-top: 1.25rem;
}
@media (max-width: 900px) {
  .about-layout {
    grid-template-columns: 1fr;
  }
  .about-photo {
    min-height: 420px;
  }
}
@media (max-width: 640px) {
  .about-layout {
    margin-top: 2rem;
  }
  .about-photo {
    min-height: 340px;
  }
  .about-copy {
    padding: 1.5rem;
  }
  .about-copy p {
    font-size: 1rem;
    line-height: 1.8;
  }
}

/* === NUMBERS === */
.numbers {
  padding: clamp(5rem, 10vw, 8rem) 0;
  background: var(--navy);
  position: relative;
  overflow: hidden;
}
.numbers::before {
  content: '';
  position: absolute;
  top: -50%; right: -20%;
  width: 60vw; height: 60vw;
  max-width: 700px; max-height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,87,34,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.numbers .section-label { color: var(--orange); }
.numbers .section-title { color: var(--white); }
.numbers .section-subtitle { color: rgba(255,255,255,0.5); }
.numbers-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}
.number-item {
  text-align: center;
  padding: 2rem 1rem;
  border-radius: 20px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  transition: all 0.3s var(--ease-out-quart);
}
.number-item:hover {
  background: rgba(255,255,255,0.06);
  transform: translateY(-4px);
}
.number-value {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1;
  margin-bottom: 0.5rem;
}
.number-value .suffix {
  color: var(--orange);
  font-size: 0.6em;
}
.number-label {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.45);
  line-height: 1.5;
}
@media (max-width: 768px) {
  .numbers-grid { grid-template-columns: repeat(2, 1fr); }
}

/* === PROCESS === */
.process {
  padding: clamp(5rem, 10vw, 9rem) 0;
  background: var(--white);
}
.process-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}
.process-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.process-step {
  display: flex;
  gap: 1.5rem;
  padding: 2rem 0;
  border-bottom: 1px solid var(--gray-200);
  transition: all 0.3s;
  cursor: default;
}
.process-step:first-child { padding-top: 0; }
.process-step:last-child { border-bottom: none; }
.process-step:hover { padding-left: 0.5rem; }
.step-number {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--orange);
  min-width: 2rem;
  padding-top: 0.15rem;
}
.step-content h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.5rem;
}
.step-content p {
  font-size: 0.95rem;
  line-height: 1.65;
  color: var(--gray-600);
}
.process-visual {
  position: sticky;
  top: 6rem;
  background: var(--off-white);
  border-radius: 24px;
  padding: 3rem;
  border: 1px solid var(--gray-200);
}
.process-visual-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 1rem;
}
.process-visual-text {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--gray-600);
  margin-bottom: 2rem;
}
.process-quote {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 600;
  font-style: italic;
  color: var(--navy);
  line-height: 1.5;
  padding-left: 1.5rem;
  border-left: 3px solid var(--orange);
}
@media (max-width: 1024px) {
  .process-grid { grid-template-columns: 1fr; }
  .process-visual { position: static; }
}

/* === TESTIMONIALS === */
.testimonials {
  padding: clamp(5rem, 10vw, 9rem) 0;
  background: var(--off-white);
}
.testimonials-slider {
  position: relative;
  padding: 0 3rem;
}
.testimonials-slider .slick-list {
  margin: 0 -0.75rem;
}
.testimonials-slider .slick-slide {
  padding: 0 0.75rem;
}
.testimonial-slide {
  outline: none;
}
.testimonial-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 20px;
  padding: 2.5rem 2rem;
  display: flex;
  flex-direction: column;
  transition: all 0.3s var(--ease-out-quart);
  height: 100%;
}
.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(27, 27, 58, 0.06);
}
.testimonial-stars {
  display: flex;
  gap: 2px;
  margin-bottom: 1.25rem;
  color: var(--orange);
  font-size: 1rem;
}
.testimonial-text {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--gray-800);
  flex: 1;
  margin-bottom: 1.5rem;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--gray-100);
}
.testimonial-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--white);
}
.testimonial-name {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--navy);
}
.testimonial-role {
  font-size: 0.8rem;
  color: var(--gray-400);
}

.testimonials-slider .slick-prev,
.testimonials-slider .slick-next {
  width: 44px;
  height: 44px;
  z-index: 10;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 50%;
  box-shadow: 0 4px 12px rgba(0,0,0,0.06);
  transition: all 0.25s var(--ease-out-quart);
}
.testimonials-slider .slick-prev:hover,
.testimonials-slider .slick-next:hover {
  background: var(--navy);
  border-color: var(--navy);
}
.testimonials-slider .slick-prev:before,
.testimonials-slider .slick-next:before {
  font-size: 1.1rem;
  color: var(--navy);
  font-family: inherit;
  font-weight: 700;
  line-height: 1;
}
.testimonials-slider .slick-prev:hover:before,
.testimonials-slider .slick-next:hover:before {
  color: var(--white);
}
.testimonials-slider .slick-prev { left: -0.5rem; }
.testimonials-slider .slick-next { right: -0.5rem; }
.testimonials-slider .slick-prev:before { content: '\2039'; }
.testimonials-slider .slick-next:before { content: '\203A'; }

.testimonials-slider .slick-dots {
  bottom: -2.5rem;
}
.testimonials-slider .slick-dots li button:before {
  font-size: 0.65rem;
  color: var(--gray-300);
  opacity: 1;
}
.testimonials-slider .slick-dots li.slick-active button:before {
  color: var(--orange);
  opacity: 1;
}

@media (max-width: 1024px) {
  .testimonials-slider { padding: 0 2.5rem; }
}
@media (max-width: 640px) {
  .testimonials-slider { padding: 0; }
  .testimonials-slider .slick-prev { left: -0.25rem; }
  .testimonials-slider .slick-next { right: -0.25rem; }
}

/* === CONTACT === */
.contact {
  padding: clamp(5rem, 10vw, 9rem) 0;
  background: var(--navy);
  position: relative;
  overflow: hidden;
}
.contact::before {
  content: '';
  position: absolute;
  bottom: -30%; left: -10%;
  width: 50vw; height: 50vw;
  max-width: 600px; max-height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,87,34,0.06) 0%, transparent 70%);
  pointer-events: none;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}
.contact .section-label { color: var(--orange); }
.contact .section-title { color: var(--white); }
.contact .section-subtitle { color: rgba(255,255,255,0.5); }
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-top: 1rem;
}
.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}
.contact-info-icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: rgba(255,255,255,0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-info-icon svg {
  width: 20px; height: 20px;
  stroke: var(--orange);
  fill: none;
  stroke-width: 2;
}
.contact-info-label {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
  margin-bottom: 0.2rem;
}
.contact-info-value {
  font-size: 1rem;
  font-weight: 500;
  color: var(--white);
}
.contact-info-value,
.contact-info-value a {
  overflow-wrap: anywhere;
}
.contact-socials {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: 0.5rem;
  flex-wrap: wrap;
}
.contact-socials a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s var(--ease-out-quart);
}
.contact-socials a:hover {
  background: var(--orange);
  border-color: var(--orange);
  transform: translateY(-2px);
}
.contact-socials svg {
  width: 17px;
  height: 17px;
  fill: var(--white);
}
.contact-form {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 24px;
  padding: 2.5rem;
}
.form-group {
  margin-bottom: 1.25rem;
}
.form-group label {
  display: block;
  font-size: 0.8rem;
  font-weight: 500;
  color: rgba(255,255,255,0.5);
  margin-bottom: 0.5rem;
  letter-spacing: 0.04em;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.9rem 1.2rem;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: all 0.3s;
  outline: none;
}
.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(255,255,255,0.25);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--orange);
  background: rgba(255,255,255,0.08);
}
.form-group select {
  appearance: none;
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='rgba(255,255,255,0.4)' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}
.form-group select option {
  background: var(--navy);
  color: var(--white);
}
.form-group textarea {
  resize: vertical;
  min-height: 100px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.form-submit {
  width: 100%;
  padding: 1rem;
  background: var(--orange);
  color: var(--white);
  font-size: 1rem;
  font-weight: 600;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.3s var(--ease-out-quart);
  margin-top: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}
.form-submit:hover {
  background: var(--orange-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(255, 87, 34, 0.3);
}
.form-privacy {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.3);
  text-align: center;
  margin-top: 1rem;
  line-height: 1.5;
}
@media (max-width: 1024px) {
  .contact-grid { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .form-row { grid-template-columns: 1fr; }
}

/* === FOOTER === */
.footer {
  padding: 4rem 0 2rem;
  background: var(--navy-dark);
  border-top: 1px solid rgba(255,255,255,0.05);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  width: 100%;
  margin-bottom: 3rem;
  justify-items: center;
}
.footer-brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.footer-brand img {
  height: 80px;
  margin-bottom: 1rem;
  filter: brightness(0) invert(1);
  opacity: 0.9;
}
.footer-brand p {
  font-size: 0.9rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.4);
  max-width: 300px;
  margin: 0 auto;
}
.footer-col h4 {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 1.25rem;
  letter-spacing: 0.04em;
}
.footer-col a {
  display: block;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.4);
  margin-bottom: 0.75rem;
  transition: color 0.3s;
}
.footer-col a:hover { color: var(--orange); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.footer-copy {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.3);
}
.footer-socials {
  display: flex;
  gap: 1rem;
}
.footer-socials a {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
  color: #fff;;
}
.footer-socials a:hover {
  background: var(--orange);
  transform: translateY(-2px);
}
.footer-socials svg {
  width: 16px; height: 16px;
  fill: var(--white);
}
@media (max-width: 768px) {
  .hero {
    background-attachment: scroll;
  }
  .nav {
    padding: 0.7rem 0;
  }
  .nav-logo img {
    height: 58px;
  }
  .nav-links {
    padding: 7rem 1.5rem 2rem;
    align-items: center;
    text-align: center;
    overflow-y: auto;
  }
  .nav-links a::after {
    display: none;
  }
  .hero {
    padding: 7rem 0 3.5rem;
  }
  .hero-grid {
    gap: 2.5rem;
  }
  .hero-card-content {
    padding: 1.75rem;
  }
  .hero-card-bars {
    height: 64px;
  }
  .hero-text,
  .section-subtitle {
    font-size: 1rem;
  }
  .section-subtitle {
    margin-bottom: 2.5rem;
  }
  .marquee-section {
    padding: 2rem 0;
  }
  .marquee-item {
    padding: 0 1.75rem;
    font-size: 0.95rem;
  }
  .numbers-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
  }
  .number-item,
  .testimonial-card,
  .contact-form {
    padding: 1.5rem;
  }
  .process-grid,
  .contact-grid {
    gap: 2.5rem;
  }
  .process-step {
    gap: 1rem;
    padding: 1.5rem 0;
  }
  .process-step:hover {
    padding-left: 0;
  }
  .process-visual {
    padding: 2rem;
  }
  .footer {
    padding: 3rem 0 2rem;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
}
@media (max-width: 540px) {
  .container {
    padding: 0 1.1rem;
  }
  .nav-logo img {
    height: 52px;
  }
  .nav-links a {
    font-size: 1.2rem;
  }
  .hero {
    padding: 6.5rem 0 3rem;
  }
  .hero h1 br {
    display: none;
  }
  .hero h1 {
    font-size: clamp(2.1rem, 10vw, 2.8rem);
  }
  .hero-text {
    max-width: 100%;
  }
  .hero-badge {
    font-size: 0.72rem;
    padding: 0.45rem 0.9rem;
    margin-bottom: 1.25rem;
  }
  .hero-card {
    border-radius: 20px;
  }
  .hero-card-content {
    padding: 1.35rem;
  }
  .hero-card-metric {
    font-size: 2.6rem;
  }
  .hero-card-label {
    font-size: 0.7rem;
  }
  .hero-card-desc {
    font-size: 0.82rem;
    line-height: 1.5;
  }
  .btn-primary,
  .btn-secondary {
    width: 100%;
    justify-content: center;
  }
  .section-title {
    font-size: clamp(1.75rem, 8vw, 2.3rem);
  }
  .about-layout {
    margin-top: 1.5rem;
  }
  .about-photo {
    min-height: 280px;
    border-radius: 22px;
  }
  .about-copy {
    padding: 1.25rem;
    border-radius: 20px;
  }
  .about-copy p {
    font-size: 0.98rem;
    line-height: 1.75;
  }
  .numbers-grid {
    grid-template-columns: 1fr;
  }
  .number-item {
    padding: 1.35rem 1rem;
  }
  .process-visual {
    padding: 1.5rem;
    border-radius: 20px;
  }
  .process-visual-title {
    font-size: 1.3rem;
  }
  .process-quote {
    font-size: 1.05rem;
    padding-left: 1rem;
  }
  .contact-info {
    gap: 1.25rem;
  }
  .contact-info-item {
    gap: 0.85rem;
  }
  .contact-info-icon {
    width: 40px;
    height: 40px;
  }
  .contact-form {
    padding: 1.25rem;
    border-radius: 20px;
  }
  .form-group label,
  .contact-info-label {
    font-size: 0.75rem;
  }
  .footer-brand img {
    height: 68px;
  }
  .footer-brand p,
  .footer-copy {
    font-size: 0.82rem;
    line-height: 1.6;
  }
  .footer-copy {
    max-width: 260px;
  }
  .footer-socials {
    justify-content: center;
    gap: 0.75rem;
  }
}
@media (max-width: 390px) {
  html {
    font-size: 15px;
  }
  .container {
    padding: 0 0.9rem;
  }
  .nav {
    padding: 0.55rem 0;
  }
  .nav-logo img {
    height: 48px;
  }
  .nav-toggle {
    width: 24px;
  }
  .nav-links {
    padding: 6.25rem 1rem 1.5rem;
    gap: 1.5rem;
  }
  .nav-links a {
    font-size: 1.05rem;
  }
  .hero {
    padding: 6rem 0 2.5rem;
  }
  .hero-badge {
    width: 100%;
    justify-content: center;
    text-align: center;
    line-height: 1.4;
  }
  .hero h1 {
    font-size: clamp(1.9rem, 10vw, 2.45rem);
    margin-bottom: 1rem;
  }
  .hero-text {
    font-size: 0.96rem;
    line-height: 1.65;
    margin-bottom: 1.75rem;
  }
  .hero-actions {
    gap: 0.85rem;
  }
  .btn-primary,
  .btn-secondary,
  .form-submit {
    min-height: 48px;
    padding-left: 1rem;
    padding-right: 1rem;
  }
  .hero-card {
    border-radius: 18px;
  }
  .hero-card-content {
    padding: 1.1rem;
  }
  .hero-card-metric {
    font-size: 2.2rem;
  }
  .hero-card-bars {
    height: 54px;
    gap: 4px;
  }
  .section-label {
    font-size: 0.68rem;
    margin-bottom: 0.75rem;
  }
  .section-title {
    font-size: clamp(1.6rem, 8vw, 2rem);
  }
  .section-subtitle {
    font-size: 0.95rem;
    margin-bottom: 2rem;
  }
  .marquee-item {
    padding: 0 1.2rem;
    font-size: 0.88rem;
  }
  .about-photo {
    min-height: 240px;
  }
  .about-copy,
  .process-visual,
  .contact-form,
  .testimonial-card {
    padding: 1rem;
    border-radius: 18px;
  }
  .about-copy p,
  .process-visual-text,
  .step-content p,
  .testimonial-text {
    font-size: 0.94rem;
    line-height: 1.65;
  }
  .number-item {
    padding: 1.1rem 0.85rem;
    border-radius: 18px;
  }
  .number-value {
    font-size: 2.2rem;
  }
  .number-label {
    font-size: 0.84rem;
  }
  .process-step {
    gap: 0.85rem;
    padding: 1.2rem 0;
  }
  .step-number {
    min-width: 1.75rem;
    font-size: 0.78rem;
  }
  .step-content h3,
  .process-visual-title {
    font-size: 1.1rem;
  }
  .process-quote {
    font-size: 0.98rem;
  }
  .contact-info {
    gap: 1rem;
  }
  .contact-info-item {
    gap: 0.75rem;
  }
  .contact-info-icon {
    width: 36px;
    height: 36px;
    border-radius: 10px;
  }
  .contact-info-icon svg {
    width: 17px;
    height: 17px;
  }
  .contact-socials {
    gap: 0.6rem;
  }
  .contact-socials a,
  .footer-socials a {
    width: 34px;
    height: 34px;
  }
  .contact-socials svg,
  .footer-socials svg {
    width: 15px;
    height: 15px;
  }
  .form-group {
    margin-bottom: 1rem;
  }
  .form-group input,
  .form-group select,
  .form-group textarea {
    padding: 0.82rem 1rem;
    font-size: 0.92rem;
  }
  .footer {
    padding: 2.5rem 0 1.5rem;
  }
  .footer-brand img {
    height: 60px;
  }
  .footer-brand p,
  .footer-copy {
    font-size: 0.78rem;
  }
  .footer-copy {
    max-width: 230px;
  }
}
.campo-erro {
    display: block;
    margin-top: 6px;
    font-size: 13px;
    color: #d93025;
}

input.erro,
textarea.erro,
select.erro {
    border-color: #d93025 !important;
    outline: none;
}

input.erro:focus,
textarea.erro:focus,
select.erro:focus {
    box-shadow: 0 0 0 2px rgba(217, 48, 37, 0.10);
}