:root {
  --paper: #FAFAF9;
  --paper2: #F5F5F4;
  --ink: #0C0A09;
  --muted: rgba(12, 10, 9, .65);
  --line: rgba(12, 10, 9, .08);
  --emerald: #10B981;
  --emerald2: #059669;
  --gold: #F59E0B;
  --goldSoft: #FBBF24;
  --bgDark: #0C0A09;
  --bgDark2: #1C1917;
  --r: 24px;
  --r2: 32px;
  --shadow: 0 25px 80px rgba(12, 10, 9, .12);
  --shadow2: 0 8px 30px rgba(12, 10, 9, .08);
  --max: 1200px;
  --gutter: 24px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Manrope", system-ui, sans-serif;
  color: var(--ink);
  background: var(--paper);
  overflow-x: hidden;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
}

button {
  font: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

.wrap {
  width: min(var(--max), calc(100% - var(--gutter) * 2));
  margin: 0 auto;
}

/* ===== HEADER ===== */
header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 16px 0;
  background: rgba(250, 250, 249, .9);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--line);
  transition: all .3s ease;
}

header.scrolled {
  box-shadow: var(--shadow2);
}

.nav-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.logo {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 800;
  font-size: 1.5rem;
  letter-spacing: -.03em;
  display: flex;
  flex-direction: column;
  z-index: 102;
}

.logo span {
  font-size: .75rem;
  font-weight: 600;
  color: var(--muted);
  letter-spacing: .02em;
}

.nav-links {
  display: flex;
  gap: 32px;
}

.nav-links a {
  font-weight: 700;
  font-size: .9rem;
  color: var(--muted);
  transition: color .2s ease;
  position: relative;
}

.nav-links a:hover {
  color: var(--ink);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--emerald), var(--gold));
  border-radius: 2px;
  transition: width .3s ease;
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-cta {
  display: flex;
  gap: 12px;
  align-items: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  border-radius: 100px;
  font-weight: 700;
  font-size: .9rem;
  transition: all .3s ease;
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, var(--emerald), var(--emerald2));
  color: #fff;
  box-shadow: 0 8px 24px rgba(16, 185, 129, .3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(16, 185, 129, .4);
}

.btn-ghost {
  background: rgba(12, 10, 9, .05);
  color: var(--ink);
}

.btn-ghost:hover {
  background: rgba(12, 10, 9, .1);
}

/* Hamburger & Mobile Menu */
.hamburger {
  display: none;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(12, 10, 9, .05);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  z-index: 102;
}

.hamburger span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: all .3s ease;
}

.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);
}

.mobile-menu {
  position: fixed;
  inset: 0;
  background: var(--paper);
  z-index: 101;
  padding: 100px 24px 40px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  transform: translateY(-100%);
  transition: transform .4s cubic-bezier(0.65, 0, 0.35, 1);
  opacity: 0;
  pointer-events: none;
}

.mobile-menu.active {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.mobile-link {
  font-family: "Space Grotesk", sans-serif;
  font-size: 2rem;
  font-weight: 800;
  color: var(--ink);
  border-bottom: 1px solid var(--line);
  padding-bottom: 12px;
}

.mobile-actions {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.mobile-actions .btn {
  width: 100%;
}

/* ===== HERO ===== */


.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 140px 0 80px;
  position: relative;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 0%, rgba(16, 185, 129, .08), transparent),
    radial-gradient(ellipse 60% 50% at 100% 50%, rgba(245, 158, 11, .06), transparent),
    radial-gradient(ellipse 60% 50% at 0% 100%, rgba(16, 185, 129, .05), transparent);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 16px;
  background: rgba(16, 185, 129, .1);
  border-radius: 100px;
  font-size: .85rem;
  font-weight: 700;
  color: var(--emerald2);
  margin-bottom: 24px;
}

.hero-tag::before {
  content: '';
  width: 8px;
  height: 8px;
  background: var(--emerald);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: .5;
  }
}

@media (max-width: 900px) {
  .hero {
    padding: 120px 0 60px;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .hero-desc {
    max-width: 100%;
  }
}

.hero h1 {
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(2.5rem, 5vw, 4.2rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -.03em;
  margin-bottom: 24px;
}

.hero h1 span {
  background: linear-gradient(135deg, var(--emerald), var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-desc {
  font-size: 1.15rem;
  color: var(--muted);
  max-width: 500px;
  margin-bottom: 32px;
  font-weight: 500;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.hero-stats {
  display: flex;
  flex-wrap: wrap; /* Allows the 2x2 grid */
  justify-content: center;
  gap: 20px 10px; /* Vertical and horizontal spacing */
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

.stat {
  flex: 0 0 calc(50% - 10px); /* Two items per row */
  display: flex;
  flex-direction: column; /* Stacks number and label vertically */
  align-items: center;    /* Centers items horizontally */
  text-align: center;     /* Centers text within the items */
}

.stat-item {
  display: flex;
  align-items: baseline;
  justify-content: center; /* Centers number + unit together */
  gap: 2px;
}

.stat-num {
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.4rem; 
  font-weight: 800;
  line-height: 1.1;
  background: linear-gradient(135deg, var(--ink), var(--muted));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.stat-label {
  display: block;
  font-size: 0.65rem;
  color: var(--muted);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-top: 4px; /* Space between number and label */
}

/* --- Desktop Scaling (Restores the horizontal look) --- */
@media (min-width: 768px) {
  .hero-stats {
    flex-wrap: nowrap;
    justify-content: space-between;
    gap: 40px;
    margin-top: 64px;
    padding-top: 40px;
  }

  .stat {
    flex: 1;
    align-items: flex-start; /* Aligns back to left for desktop */
    text-align: left;
  }

  .stat-item {
    justify-content: flex-start;
  }

  .stat-num {
    font-size: 1.8rem;
  }

  .stat-label {
    font-size: 0.8rem;
  }
}

.hero-visual {
  position: relative;
  height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-card {
  position: absolute;
  width: 280px;
  height: 380px;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(0, 0, 0, .15);
  border: 1px solid #fff;
  transition: all .4s cubic-bezier(.4, 0, .2, 1);
}

.hero-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-card:nth-child(1) {
  transform: rotate(-6deg) translateX(-40px);
  z-index: 3;
}

.hero-card:nth-child(2) {
  transform: rotate(3deg) translateX(40px) translateY(-20px);
  z-index: 2;
  opacity: .9;
}

.hero-card:nth-child(3) {
  transform: rotate(-2deg) translateY(40px);
  z-index: 1;
  opacity: .8;
}

.hero-visual:hover .hero-card:nth-child(1) {
  transform: rotate(-12deg) translateX(-80px) scale(1.02);
}

.hero-visual:hover .hero-card:nth-child(2) {
  transform: rotate(8deg) translateX(80px) translateY(-30px);
}

.hero-visual:hover .hero-card:nth-child(3) {
  transform: rotate(0deg) translateY(60px) scale(.95);
}

/* ===== SECTIONS ===== */
section {
  padding: 100px 0;
  position: relative;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: .8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--emerald2);
  margin-bottom: 16px;
}

.section-tag::before {
  content: '';
  width: 24px;
  height: 2px;
  background: linear-gradient(90deg, var(--emerald), var(--gold));
  border-radius: 2px;
}

.section-title {
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  letter-spacing: -.02em;
  margin-bottom: 16px;
}

.section-desc {
  font-size: 1.1rem;
  color: var(--muted);
  max-width: 600px;
  font-weight: 500;
}

/* ===== ABOUT SECTION ===== */
#about {
  background: #fff;
  border-bottom: 1px solid var(--line);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  margin-top: 40px;
}

.about-text {
  font-size: 1.05rem;
  color: var(--muted);
  font-weight: 500;
  line-height: 1.7;
}

.about-text strong {
  color: var(--ink);
  font-weight: 800;
}

/* Responsive */
@media (max-width: 900px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}


/* ===== WHY SECTION ===== */
#why {
  background: var(--paper2);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 60px;
}

.why-card {
  padding: 32px;
  background: #fff;
  border-radius: var(--r);
  border: 1px solid var(--line);
  transition: all .3s ease;
  position: relative;
  overflow: hidden;
}

.why-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--emerald), var(--gold));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s ease;
}

.why-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow);
}

.why-card:hover::before {
  transform: scaleX(1);
}

.why-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(16, 185, 129, .1), rgba(245, 158, 11, .1));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 20px;
}

.why-card h3 {
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.why-card p {
  color: var(--muted);
  font-size: .95rem;
}


/* ===== PRINCIPLES  ===== */
#principles {
  background: #f8fafc;
  padding: 120px 0;
}

.principles-list {
  margin-top: 60px;
  border-top: 1px solid var(--line);
}

.principle-item {
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 24px;
  padding: 32px 0;
  border-bottom: 1px solid var(--line);
}

.principle-index {
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--muted);
}

.principle-item h3 {
  font-size: 1.3rem;
  margin-bottom: 8px;
}

.principle-item p {
  color: var(--muted);
  max-width: 640px;
}

.section-divider {
  height: 1px;
  background: var(--line);
  margin: 100px 0;
}

/* SERVICES */
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  margin-top: 60px;
}

.service-card {
  padding: 36px;
  background: rgba(255,255,255,.6);
  backdrop-filter: blur(8px);
  border-radius: 24px;
  border: 1px solid var(--line);
}

.service-card h3 {
  font-size: 1.25rem;
  margin-bottom: 12px;
}

.service-card p {
  color: var(--muted);
}


.principles-list {
  margin-top: 60px;
  border-top: 1px solid var(--line);
}

.principle-item {
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 24px;
  padding: 32px 0;
  border-bottom: 1px solid var(--line);
}

.principle-index {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--emerald2);
}

.principle-item h3 {
  font-size: 1.3rem;
  margin-bottom: 8px;
}

.principle-item p {
  color: var(--muted);
  max-width: 640px;
  line-height: 1.6;
}

/* Responsive */
@media (max-width: 900px) {
  .principle-item {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .principle-index {
    font-size: 1rem;
  }
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .principle-item {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .principle-index {
    font-size: 1rem;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }
}

/* ===== service SECTION ===== */

/* ===== SERVICES (Adapted from Why Choose Us Design) ===== */
#services { 
  background: var(--paper2); 
  padding: 80px 0;
}

.service-grid { 
  display: grid; 
  grid-template-columns: repeat(3, 1fr); 
  gap: 24px; 
  margin-top: 60px; 
}

.service-card { 
  padding: 32px; 
  background: #fff; 
  border-radius: var(--r); 
  border: 1px solid var(--line); 
  transition: all .3s ease; 
  position: relative; 
  overflow: hidden; 
}

/* The gradient top-border reveal */
.service-card::before { 
  content: ''; 
  position: absolute; 
  top: 0; 
  left: 0; 
  right: 0; 
  height: 4px; 
  background: linear-gradient(90deg, var(--emerald), var(--gold)); 
  transform: scaleX(0); 
  transform-origin: left; 
  transition: transform .3s ease; 
}

.service-card:hover { 
  transform: translateY(-8px); 
  box-shadow: var(--shadow); 
}

.service-card:hover::before { 
  transform: scaleX(1); 
}

.service-icon { 
  width: 56px; 
  height: 56px; 
  border-radius: 16px; 
  background: linear-gradient(135deg, rgba(16, 185, 129, .1), rgba(245, 158, 11, .1)); 
  display: flex; 
  align-items: center; 
  justify-content: center; 
  font-size: 1.25rem; 
  font-weight: 700;
  color: var(--emerald);
  margin-bottom: 20px; 
}

.service-card h3 { 
  font-family: "Space Grotesk", sans-serif; 
  font-size: 1.25rem; 
  font-weight: 700; 
  margin-bottom: 12px; 
  color: var(--dark); /* Assuming you have a --dark variable */
}

.service-card p { 
  color: var(--muted); 
  font-size: .95rem; 
  line-height: 1.6;
}

/* Responsive adjustment for tablets/mobile */
@media (max-width: 992px) {
  .service-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .service-grid { grid-template-columns: 1fr; }
}



/* ===== VISION SECTION STYLE ===== */
#vision {
  padding: 100px 0;
  background: var(--paper1); /* Using a lighter base */
  position: relative;
  overflow: hidden;
}

/* Background Watermark Text */
#vision::before {
  content: "VISION";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 20rem;
  font-weight: 900;
  color: rgba(0, 0, 0, 0.02); /* Extremely subtle */
  z-index: 0;
  pointer-events: none;
  font-family: "Space Grotesk", sans-serif;
}

.vision-container {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.vision-statement {
  font-family: "Space Grotesk", sans-serif;
  font-size: 2.5rem;
  line-height: 1.3;
  font-weight: 500;
  color: var(--dark);
  letter-spacing: -0.02em;
}

.vision-statement .accent-text {
  font-weight: 700;
  color: var(--dark);
}

.vision-statement .gradient-text {
  background: linear-gradient(90deg, var(--emerald), var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 700;
}

.vision-divider {
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, var(--emerald), var(--gold));
  margin: 40px auto 0;
  border-radius: 2px;
}

/* Responsive adjustment */
@media (max-width: 768px) {
  .vision-statement {
    font-size: 1.8rem;
  }
}

/* ===== vision ===== */
/* Mission Styling - Clean & Bold */
.mission-box {
  max-width: 1000px;
  margin: 40px auto;
  padding: 40px;
  border-left: 4px solid var(--emerald);
  background: var(--paper2);
}

.mission-box p {
  font-size: 1.5rem;
  line-height: 1.6;
  color: var(--dark);
  font-family: "Space Grotesk", sans-serif;
}

/* CTA Card - High Impact */
.cta-card {
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  padding: 80px 40px;
  border-radius: var(--r);
  text-align: center;
  color: #fff;
  position: relative;
  overflow: hidden;
  margin-top: 80px;
}

.cta-card h2 {
  font-size: 2.5rem;
  margin: 20px 0;
  color: #fff;
}

.cta-card p {
  max-width: 700px;
  margin: 0 auto 40px;
  font-size: 1.1rem;
  color: var(--muted);
  opacity: 0.9;
}

.btn-primary {
  display: inline-block;
  padding: 16px 40px;
  background: linear-gradient(90deg, var(--emerald), var(--gold));
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  border-radius: 50px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn-primary:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 20px rgba(16, 185, 129, 0.2);
}

/* Adjusting the service grid for the 5th item to span nicely */
@media (min-width: 992px) {
  .service-grid .service-card:last-child {
    grid-column: span 1; /* Change to 1 if you add a 6th item later */
  }
}
/* ===== RESPONSIVE GRID FIX ===== */

/* For Tablets (2 columns) */
@media (max-width: 992px) {
  .service-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  /* Reset the 5th card to span only 1 column if you want a 2-col layout */
  .service-card[style*="grid-column: span 2"] {
    grid-column: span 2 !important; /* Keep it wide on tablet if you prefer */
  }
}

/* For Mobile Phones (1 column) */
@media (max-width: 768px) {
  .service-grid {
    grid-template-columns: 1fr; /* Force 1 column */
    gap: 16px; /* Tighten gap for mobile */
  }

  .service-card {
    grid-column: span 1 !important; /* Force all cards to 1 column width */
    padding: 24px; /* Slightly less padding on mobile */
  }
  
  .section-title {
    font-size: 1.8rem; /* Scale down title for mobile */
  }
}


/* Mobile Styles (Max-width 768px) */
@media (max-width: 768px) {
  .service-grid {
    /* Set the grid to 2 columns for mobile as requested */
    grid-template-columns: repeat(2, 1fr); 
    gap: 15px;
  }

  .service-card {
    /* Ensure all regular cards take up the full 2 columns on mobile */
    grid-column: span 2 !important; 
    padding: 20px;
  }

  /* Specifically target the 5th card to also be span 2 */
  .service-card[style*="grid-column: span 2"] {
    grid-column: span 2 !important;
  }
}

/* ===== EXECUTIVE CTA BANNER ===== */
#contact-cta {
  padding: 100px 0;
  background: var(--paper2); /* Matches your page background */
}



.cta-banner {
  background: #0f172a; /* Deep Navy/Dark */
  padding: 60px;
  border-radius: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Subtle background glow effect */
.cta-banner::after {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.15) 0%, transparent 70%);
  z-index: 0;
}

.cta-content {
  flex: 1;
  position: relative;
  z-index: 1;
}

.cta-content h2 {
  font-family: "Space Grotesk", sans-serif;
  font-size: 2.5rem;
  color: #fff;
  margin: 15px 0;
  line-height: 1.2;
}

.text-gradient {
  background: linear-gradient(90deg, var(--emerald), var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.cta-content p {
  color: #94a3b8;
  font-size: 1.1rem;
  line-height: 1.7;
  max-width: 600px;
}

.cta-action {
  position: relative;
  z-index: 1;
}

/* Glowing Button Style */
.btn-glow {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 20px 40px;
  background: #fff;
  color: #0f172a;
  text-decoration: none;
  font-weight: 700;
  border-radius: 12px;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.btn-glow:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(16, 185, 129, 0.3);
  background: var(--emerald);
  color: #fff;
}

/* Responsive adjustment */
@media (max-width: 992px) {
  .cta-banner {
    flex-direction: column;
    text-align: center;
    padding: 40px;
  }
  
  .cta-content p {
    margin: 0 auto;
  }
}

/* ===== BRANDS SECTION ===== */
#brands {
  background: #fff;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

#brands .section-desc {
  color: var(--muted);
}

.brands-marquee {
  display: flex;
  gap: 16px;
  padding: 24px 0;
  margin: 40px 0;
  overflow: hidden;
  background: var(--paper);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.marquee-track {
  display: flex;
  gap: 16px;
  animation: scroll 30s linear infinite;
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

.marquee-item {
  padding: 10px 20px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 100px;
  font-size: .85rem;
  font-weight: 700;
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 8px;
}

.marquee-item::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--emerald);
  border-radius: 50%;
}

.brands-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  margin-top: 20px;
}

.brand-card {
  height: 120px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  transition: all .3s ease;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
}

.brand-card:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.08);
  border-color: rgba(16, 185, 129, .2);
}

.brand-card img {
  max-width: 90%;
  max-height: 70px;
  object-fit: contain;
  mix-blend-mode: multiply;
  transition: all .3s ease;
  filter: grayscale(1);
  opacity: .7;
}

.brand-card:hover img {
  filter: grayscale(0);
  opacity: 1;
  transform: scale(1.05);
}

/* ===== CONTACT SECTION ===== */
#contact {
  background: linear-gradient(180deg, var(--paper2), var(--paper));
}

.contact-box {
  max-width: 800px;
  margin: 60px auto 0;
  background: #fff;
  border-radius: var(--r2);
  padding: 60px;
  text-align: center;
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
}

.contact-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, rgba(16, 185, 129, .1), rgba(245, 158, 11, .1));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  font-size: 2rem;
}

.contact-box h3 {
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.75rem;
  font-weight: 800;
  margin-bottom: 16px;
}

.contact-box p {
  color: var(--muted);
  margin-bottom: 32px;
  font-size: 1.05rem;
}

.contact-email {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 20px 40px;
  background: linear-gradient(135deg, var(--emerald), var(--emerald2));
  color: #fff;
  border-radius: 100px;
  font-size: 1.1rem;
  font-weight: 700;
  transition: all .3s ease;
  box-shadow: 0 12px 32px rgba(16, 185, 129, .3);
}

.contact-email:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 16px 40px rgba(16, 185, 129, .4);
}

.contact-info {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid var(--line);
}

.contact-item {
  text-align: center;
}

.contact-item strong {
  display: block;
  font-weight: 800;
  margin-bottom: 4px;
}

.contact-item span {
  color: var(--muted);
  font-size: .9rem;
}

/* ===== FOOTER ===== */
footer {
  background: var(--bgDark);
  color: #fff;
  padding: 60px 0 40px;
}

.footer-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.footer-brand {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 800;
  font-size: 1.25rem;
}

.footer-copy {
  color: rgba(255, 255, 255, .5);
  font-size: .9rem;
}

.footer-links {
  display: flex;
  gap: 24px;
}

.footer-links a {
  color: rgba(255, 255, 255, .7);
  font-weight: 600;
  font-size: .9rem;
  transition: color .2s ease;
}

.footer-links a:hover {
  color: #fff;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {

  .nav-links,
  .nav-cta {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-desc {
    margin: 0 auto 32px;
  }

  .hero-actions {
    justify-content: center;
  }

  .hero-stats {
    justify-content: center;
  }

  .hero-visual {
    height: 400px;
    margin-top: 40px;
  }

  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .brands-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .hero h1 {
    font-size: 2.2rem;
  }

  .why-grid {
    grid-template-columns: 1fr;
  }

  .brands-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .contact-box {
    padding: 40px 24px;
  }

  .contact-info {
    flex-direction: column;
    gap: 24px;
  }

  .hero-card {
    width: 220px;
    height: 300px;
  }

  .services-box {
    padding: 40px 24px;
  }
}

[data-parallax] {
  transition: transform .1s linear;
}