/* ============================================================
   Elanpro Management Consulting — Static Stylesheet
   Converted from the Tailwind/React build to vanilla CSS.
   ============================================================ */

/* ---------- Design Tokens ---------- */
:root {
  --background: hsl(153, 47%, 97%);
  --foreground: hsl(159, 38%, 15%);
  --border: hsl(155, 15%, 85%);
  --card: #ffffff;
  --primary: hsl(159, 38%, 20%);          /* deep forest green #174e3b */
  --primary-soft: #1a6348;
  --primary-border: hsl(159, 38%, 20%);
  --secondary: hsl(42, 55%, 55%);         /* warm gold #c8aa50 */
  --secondary-foreground: #ffffff;
  --muted: hsl(155, 20%, 94%);
  --muted-foreground: hsl(159, 10%, 40%);
  --slate-50: #f8fafc;
  --white: #ffffff;
  --radius: 0.5rem;

  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-serif: 'Playfair Display', Georgia, 'Times New Roman', serif;

  --shadow-sm: 0 1px 2px rgba(23, 78, 59, 0.05);
  --shadow: 0 1px 3px rgba(23, 78, 59, 0.1), 0 1px 2px rgba(23, 78, 59, 0.06);
  --shadow-md: 0 4px 6px rgba(23, 78, 59, 0.07), 0 2px 4px rgba(23, 78, 59, 0.06);
  --shadow-lg: 0 10px 15px rgba(23, 78, 59, 0.1), 0 4px 6px rgba(23, 78, 59, 0.05);
  --shadow-xl: 0 20px 25px rgba(23, 78, 59, 0.12), 0 10px 10px rgba(23, 78, 59, 0.04);
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-sans);
  background-color: var(--background);
  color: var(--foreground);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

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

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

ul {
  list-style: none;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-serif);
  letter-spacing: -0.025em;
  color: var(--primary);
  line-height: 1.2;
}

button {
  font-family: inherit;
  cursor: pointer;
  background: none;
  border: none;
}

section {
  scroll-margin-top: 80px;
}

::selection {
  background: rgba(200, 170, 80, 0.3);
  color: #174e3b;
}

/* Scrollbar */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--background); }
::-webkit-scrollbar-thumb { background: hsla(159, 10%, 40%, 0.3); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: var(--secondary); }

:focus-visible {
  outline: 2px solid var(--secondary);
  outline-offset: 2px;
}

/* ---------- Utilities ---------- */
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

.hidden { display: none !important; }

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

.section {
  padding: 96px 0;
}

/* Eyebrow label */
.eyebrow {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}
.eyebrow-line {
  width: 40px;
  height: 1px;
  background: var(--secondary);
}
.eyebrow span {
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--secondary);
}
.eyebrow.centered { justify-content: center; }

/* Section titles */
.section-title {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 24px;
}
.section-lead {
  font-size: 18px;
  color: var(--muted-foreground);
  max-width: 42rem;
  margin: 0 auto;
}
.section-head { margin-bottom: 80px; }

.accent-italic {
  color: var(--secondary);
  font-style: italic;
  padding-right: 8px;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  padding: 14px 28px;
  border-radius: 2px;
  border: 1px solid transparent;
  transition: all 0.3s ease;
  white-space: nowrap;
}
.btn svg { transition: transform 0.3s ease; }
.btn:active { transform: scale(0.97); }

.btn-gold {
  background: var(--secondary);
  color: var(--secondary-foreground);
  box-shadow: 0 0 20px rgba(197, 160, 89, 0.3);
}
.btn-gold:hover {
  background: var(--white);
  color: var(--primary);
  transform: scale(1.05);
  box-shadow: 0 0 25px rgba(255, 255, 255, 0.4);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.3);
}
.btn-outline:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: scale(1.05);
}

.btn-primary {
  background: var(--primary);
  color: var(--white);
}
.btn-primary:hover {
  background: var(--primary-soft);
  box-shadow: var(--shadow-lg);
  transform: scale(1.01);
}
.btn-primary:disabled {
  opacity: 0.7;
  cursor: not-allowed;
  transform: none;
}

/* Decorative blurred blobs */
.deco {
  position: absolute;
  border-radius: 9999px;
  pointer-events: none;
  filter: blur(48px);
}
.deco-1 { top: 0; right: 0; width: 384px; height: 384px; background: rgba(200, 170, 80, 0.05); transform: translate(50%, -50%); }
.deco-2 { bottom: 0; left: 0; width: 288px; height: 288px; background: rgba(23, 78, 59, 0.05); transform: translate(-50%, 50%); }
.deco-3 { top: 0; left: 0; width: 288px; height: 288px; background: rgba(200, 170, 80, 0.05); transform: translate(-50%, -50%); }
.deco-4 { bottom: 0; right: 0; width: 384px; height: 384px; background: rgba(23, 78, 59, 0.05); transform: translate(50%, 50%); }
.deco-5 { top: 0; right: 0; width: 320px; height: 320px; background: rgba(23, 78, 59, 0.05); transform: translate(50%, -50%); }
.deco-6 { top: 0; left: 0; width: 384px; height: 384px; background: rgba(200, 170, 80, 0.05); transform: translate(-50%, -50%); }
.deco-7 { bottom: 0; right: 0; width: 320px; height: 320px; background: rgba(23, 78, 59, 0.05); transform: translate(50%, 50%); }

/* Glass */
.glass {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: var(--shadow-lg);
}

/* ---------- Scroll reveal animation ---------- */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.6s ease, transform 0.6s cubic-bezier(0.25, 0.1, 0.25, 1);
  will-change: opacity, transform;
}
.reveal.reveal-left { transform: translateX(40px); }
.reveal.reveal-right { transform: translateX(-40px); }
.reveal.is-visible {
  opacity: 1;
  transform: translate(0, 0);
}

/* Hero entrance (on page load) */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
.anim-up {
  opacity: 0;
  animation: fadeUp 0.7s ease forwards;
}

/* Ken Burns */
@keyframes ken-burns {
  from { transform: scale(1.05); }
  to { transform: scale(1.1); }
}

/* ---------- Navbar ---------- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  transition: all 0.5s ease-in-out;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3), transparent);
  padding: 20px 0;
}
.navbar.scrolled {
  background: rgba(23, 78, 59, 0.9);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
  padding: 12px 0;
}

.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 60;
  position: relative;
}
.brand-logo {
  height: 48px;
  width: auto;
  border-radius: 2px;
  box-shadow: var(--shadow-lg);
  transition: transform 0.3s ease;
}
.brand:hover .brand-logo { transform: scale(1.05); }

.brand-text { display: flex; flex-direction: column; }
.brand-name {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 24px;
  letter-spacing: -0.02em;
  line-height: 1.2;
  color: var(--white);
}
.brand-tagline {
  font-size: 0.6rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  line-height: 1.2;
  color: var(--secondary);
}

.nav-desktop {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-desktop a {
  position: relative;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: rgba(255, 255, 255, 0.9);
  transition: color 0.3s ease;
}
.nav-desktop a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  height: 2px;
  width: 0;
  background: var(--secondary);
  transition: width 0.3s ease;
}
.nav-desktop a:hover { color: var(--secondary); }
.nav-desktop a:hover::after { width: 100%; }

.btn-cta-nav {
  background: var(--secondary);
  color: var(--secondary-foreground);
  padding: 10px 24px;
}
.btn-cta-nav:hover {
  background: transparent;
  color: var(--secondary);
  border-color: var(--secondary);
  transform: scale(1.05);
}

.menu-toggle {
  display: none;
  position: relative;
  z-index: 60;
  padding: 8px;
  border-radius: 6px;
  color: var(--white);
  transition: transform 0.3s ease;
}
.menu-toggle.rotated { transform: rotate(90deg); }

/* Mobile menu */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 40;
  background: rgba(23, 78, 59, 0.95);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.5s ease-in-out;
}
.mobile-menu.open {
  opacity: 1;
  pointer-events: auto;
}

.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
}
.mobile-nav a:not(.btn) {
  font-family: var(--font-serif);
  font-size: 30px;
  color: var(--white);
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.4s ease, transform 0.4s ease, color 0.3s ease;
}
.mobile-menu.open .mobile-nav a:not(.btn) {
  opacity: 1;
  transform: translateY(0);
}
.mobile-nav a:not(.btn):hover { color: var(--secondary); }

.btn-mobile {
  margin-top: 16px;
  background: var(--secondary);
  color: var(--secondary-foreground);
  padding: 16px 40px;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.4s ease, transform 0.4s ease, background 0.3s ease, color 0.3s ease;
}
.mobile-menu.open .btn-mobile {
  opacity: 1;
  transform: translateY(0);
}
.btn-mobile:hover { background: var(--white); color: var(--primary); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  background: var(--primary);
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.4;
  transform: scale(1.05);
  animation: ken-burns 20s ease-out forwards;
}
.hero-overlay-left {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, var(--primary), rgba(23, 78, 59, 0.8), transparent);
}
.hero-overlay-bottom {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, var(--primary), transparent);
  opacity: 0.8;
}

.hero-content {
  position: relative;
  z-index: 10;
  padding-top: 120px;
  padding-bottom: 64px;
}
.hero-inner { max-width: 896px; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 6px 16px;
  margin-bottom: 32px;
  border-radius: 9999px;
  border: 1px solid rgba(197, 160, 89, 0.3);
  background: rgba(197, 160, 89, 0.1);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}
.badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 9999px;
  background: var(--secondary);
  animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}
.hero-badge span {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--secondary);
}

.hero-title {
  font-size: 60px;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 32px;
}
.hero-subtitle {
  font-size: 20px;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
  max-width: 42rem;
  margin-bottom: 40px;
  text-wrap: balance;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 64px;
}
.btn-hero { padding: 14px 32px; }

.hero-tags {
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}
.hero-tags-label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 16px;
}
.hero-tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.hero-tag-list span {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.7);
  padding: 5px 12px;
  border-radius: 9999px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  transition: all 0.3s ease;
}
.hero-tag-list span:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(197, 160, 89, 0.3);
}

.hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  color: rgba(255, 255, 255, 0.5);
  animation: bounce 2s infinite;
}
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(10px); }
}

/* ---------- About ---------- */
.about { position: relative; overflow: hidden; }

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  position: relative;
}

.about-media { position: relative; }
.about-frame-bg {
  position: absolute;
  inset: -16px;
  background: rgba(197, 160, 89, 0.05);
  border-radius: 24px;
  transform: rotate(3deg);
  z-index: 0;
}
.about-frame {
  position: relative;
  z-index: 10;
  aspect-ratio: 4 / 5;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-2xl, 0 25px 50px rgba(23, 78, 59, 0.25));
}
.about-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.about-frame-overlay {
  position: absolute;
  inset: 0;
  background: rgba(23, 78, 59, 0.1);
  mix-blend-mode: multiply;
}

.about-stat-card {
  position: absolute;
  bottom: -32px;
  right: -32px;
  z-index: 20;
  padding: 24px;
  max-width: 240px;
  border-radius: 8px;
}
.stat-card-head {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 8px;
}
.stat-card-icon {
  width: 40px;
  height: 40px;
  border-radius: 9999px;
  background: rgba(197, 160, 89, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--secondary);
}
.stat-card-label {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--muted-foreground);
}
.stat-card-value {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 24px;
  color: var(--primary);
}
.stat-card-caption {
  font-size: 12px;
  color: var(--muted-foreground);
  margin-top: 8px;
}

.about-paragraphs {
  display: grid;
  gap: 24px;
  color: var(--muted-foreground);
  font-size: 18px;
  line-height: 1.65;
  margin-bottom: 40px;
}

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-bottom: 48px;
}
.feature { display: flex; align-items: flex-start; gap: 16px; }
.feature-icon {
  margin-top: 4px;
  padding: 8px;
  border-radius: 9999px;
  background: rgba(23, 78, 59, 0.05);
  color: var(--primary);
  flex-shrink: 0;
}
.feature h4 {
  font-family: var(--font-sans);
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 6px;
}
.feature p { font-size: 14px; color: var(--muted-foreground); }

.about-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  color: var(--primary);
  font-size: 16px;
  transition: color 0.3s ease;
}
.about-link svg { transition: transform 0.3s ease; }
.about-link:hover { color: var(--secondary); }
.about-link:hover svg { transform: translate(4px, -4px); }

/* ---------- Services ---------- */
.services {
  position: relative;
  overflow: hidden;
  background: var(--slate-50);
}

.services-grid {
  position: relative;
  z-index: 10;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px 48px;
}

.service-card {
  position: relative;
  background: var(--white);
  padding: 32px;
  border-radius: 12px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  height: 100%;
  transition: box-shadow 0.5s ease, transform 0.5s ease;
}
.service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom right, rgba(23, 78, 59, 0.05), transparent);
  opacity: 0;
  transition: opacity 0.5s ease;
}
.service-card:hover {
  box-shadow: var(--shadow-xl);
}
.service-card:hover::before { opacity: 1; }

.service-icon {
  position: relative;
  z-index: 1;
  width: 56px;
  height: 56px;
  background: rgba(23, 78, 59, 0.05);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  margin-bottom: 24px;
  transition: background 0.3s ease, color 0.3s ease;
}
.service-card:hover .service-icon {
  background: var(--primary);
  color: var(--white);
}

.service-title {
  position: relative;
  z-index: 1;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 16px;
  line-height: 1.3;
  transition: transform 0.3s ease;
}
.service-card:hover .service-title { transform: translateX(4px); }

.service-desc {
  position: relative;
  z-index: 1;
  color: var(--muted-foreground);
  font-size: 14px;
  line-height: 1.6;
}

.service-accent {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 4px;
  width: 0;
  background: var(--secondary);
  transition: width 0.5s ease;
}
.service-card:hover .service-accent { width: 100%; }

/* ---------- Why Elanpro ---------- */
.why {
  position: relative;
  overflow: hidden;
  background: var(--primary);
  color: var(--white);
}
.why-texture {
  position: absolute;
  inset: 0;
  opacity: 0.1;
  mix-blend-mode: overlay;
  pointer-events: none;
}
.why-texture img { width: 100%; height: 100%; object-fit: cover; }
.why-shine {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent, rgba(255, 255, 255, 0.05), transparent);
  pointer-events: none;
}
.why-glow {
  position: absolute;
  top: 50%;
  left: 33%;
  width: 320px;
  height: 320px;
  background: rgba(197, 160, 89, 0.1);
  border-radius: 9999px;
  filter: blur(64px);
  pointer-events: none;
}

.why-grid {
  position: relative;
  z-index: 10;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.why-title {
  font-size: 48px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 32px;
}
.why-lead {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.65;
  margin-bottom: 40px;
}

.why-benefits {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.benefit-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 24px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  transition: all 0.3s ease;
}
.benefit-card:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: scale(1.02);
  border-color: rgba(197, 160, 89, 0.3);
}
.benefit-check {
  color: var(--secondary);
  flex-shrink: 0;
  margin-top: 2px;
}
.benefit-card span {
  font-weight: 500;
  color: var(--white);
  font-size: 14px;
  line-height: 1.3;
}

/* ---------- Industries ---------- */
.industries {
  position: relative;
  overflow: hidden;
  background: var(--white);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.industries-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 600px;
  height: 600px;
  background: rgba(197, 160, 89, 0.03);
  border-radius: 9999px;
  filter: blur(48px);
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.industries-grid {
  position: relative;
  z-index: 10;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.industry-card {
  padding: 24px 16px;
  text-align: center;
  border-radius: 12px;
  border: 1px solid var(--border);
  transition: all 0.3s ease;
}
.industry-card:hover {
  border-color: rgba(197, 160, 89, 0.5);
  background: rgba(197, 160, 89, 0.05);
  transform: scale(1.05);
  box-shadow: var(--shadow-lg);
}
.industry-card span {
  font-weight: 500;
  font-size: 16px;
  color: var(--primary);
  transition: color 0.3s ease;
}
.industry-card:hover span { color: var(--secondary); }

/* ---------- Approach ---------- */
.approach {
  position: relative;
  overflow: hidden;
  background: var(--slate-50);
}
.approach-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 48px;
  margin-bottom: 80px;
}
.approach-head .section-title { margin-bottom: 0; }
.approach-lead {
  color: var(--muted-foreground);
  max-width: 28rem;
  padding-bottom: 8px;
}

.steps {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
.steps-line {
  position: absolute;
  top: 48px;
  left: 12%;
  right: 12%;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--secondary), transparent);
  z-index: 0;
}

.step { position: relative; z-index: 10; }
.step-icon {
  position: relative;
  width: 96px;
  height: 96px;
  background: var(--white);
  border: 2px solid var(--border);
  border-radius: 9999px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 32px;
  color: var(--primary);
  transition: all 0.5s ease;
}
.step:hover .step-icon {
  border-color: var(--secondary);
  transform: scale(1.1);
  box-shadow: var(--shadow-xl);
}
.step-icon svg { transition: color 0.5s ease; }
.step:hover .step-icon svg { color: var(--secondary); }
.step-number {
  position: absolute;
  top: -12px;
  right: -12px;
  font-size: 14px;
  font-weight: 700;
  color: var(--secondary);
  background: var(--slate-50);
  padding: 0 8px;
  transition: transform 0.3s ease;
}
.step:hover .step-number { transform: scale(1.1); }

.step-title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 16px;
  transition: transform 0.3s ease;
}
.step:hover .step-title { transform: translateX(4px); }
.step-desc {
  color: var(--muted-foreground);
  font-size: 14px;
  line-height: 1.6;
}

/* ---------- Differentiators ---------- */
.differentiators {
  position: relative;
  overflow: hidden;
  background: var(--primary);
  color: var(--white);
}
.differentiators-shine {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent, rgba(255, 255, 255, 0.05), transparent);
  pointer-events: none;
}
.differentiators-glow-a {
  position: absolute;
  top: 0;
  left: 25%;
  width: 256px;
  height: 256px;
  background: rgba(197, 160, 89, 0.1);
  border-radius: 9999px;
  filter: blur(48px);
  pointer-events: none;
}
.differentiators-glow-b {
  position: absolute;
  bottom: 0;
  right: 25%;
  width: 192px;
  height: 192px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 9999px;
  filter: blur(48px);
  pointer-events: none;
}

.diff-title {
  font-size: 48px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 24px;
}
.diff-lead {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.8);
  max-width: 42rem;
  margin: 0 auto;
  line-height: 1.6;
}

.diff-grid {
  position: relative;
  z-index: 10;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 48px 24px;
}
.diff-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.diff-icon {
  width: 64px;
  height: 64px;
  border-radius: 9999px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  margin-bottom: 24px;
  transition: all 0.3s ease;
}
.diff-card:hover .diff-icon {
  background: var(--secondary);
  border-color: var(--secondary);
  transform: scale(1.25);
  box-shadow: var(--shadow-xl);
}
.diff-label {
  font-family: var(--font-sans);
  font-weight: 600;
  color: var(--white);
  font-size: 16px;
  line-height: 1.3;
  padding: 0 8px;
}

/* ---------- Stats ---------- */
.stats {
  padding: 80px 0;
  background: rgba(197, 160, 89, 0.1);
  border-top: 1px solid rgba(197, 160, 89, 0.2);
  border-bottom: 1px solid rgba(197, 160, 89, 0.2);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 48px;
  text-align: center;
}
.stat { display: flex; flex-direction: column; align-items: center; }
.stat-value {
  display: flex;
  align-items: baseline;
  margin-bottom: 8px;
}
.stat-number {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 60px;
  color: var(--primary);
  transition: color 0.5s ease;
}
.stat:hover .stat-number { color: var(--secondary); }
.stat-suffix {
  font-weight: 700;
  font-size: 30px;
  color: var(--secondary);
}
.stat-label {
  font-size: 16px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--muted-foreground);
  transition: color 0.5s ease;
}
.stat:hover .stat-label { color: var(--primary); }

/* ---------- Testimonials ---------- */
.testimonials { position: relative; overflow: hidden; }
.testimonials-grid {
  position: relative;
  z-index: 10;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.testimonial-card {
  position: relative;
  background: var(--slate-50);
  padding: 40px;
  border-radius: 16px;
  border: 1px solid var(--border);
  margin-top: 24px;
  transition: box-shadow 0.5s ease, transform 0.5s ease, border-color 0.5s ease;
}
.testimonial-card:hover {
  box-shadow: var(--shadow-xl);
  transform: scale(1.02);
  border-color: rgba(197, 160, 89, 0.2);
}
.quote-icon {
  position: absolute;
  top: -24px;
  left: 40px;
  width: 48px;
  height: 48px;
  background: var(--secondary);
  border-radius: 9999px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  box-shadow: var(--shadow-lg);
  transition: transform 0.3s ease;
}
.testimonial-card:hover .quote-icon { transform: scale(1.1); }
.testimonial-quote {
  font-style: italic;
  font-size: 18px;
  line-height: 1.65;
  color: hsla(159, 38%, 20%, 0.8);
  margin-bottom: 32px;
  padding-top: 16px;
}
.testimonial-author {
  font-family: var(--font-sans);
  font-weight: 700;
  color: var(--primary);
}
.testimonial-role { font-size: 14px; color: var(--muted-foreground); }

/* ---------- CTA ---------- */
.cta {
  position: relative;
  padding: 128px 0;
  background: var(--primary);
  overflow: hidden;
}
.cta-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.cta-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: bottom;
  opacity: 0.2;
  filter: grayscale(1);
  mix-blend-mode: luminosity;
}
.cta-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, var(--primary), rgba(23, 78, 59, 0.8), transparent);
}
.cta-content {
  position: relative;
  z-index: 10;
  text-align: center;
  max-width: 896px;
}
.cta-title {
  font-size: 60px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}
.cta-lead {
  font-size: 20px;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
  max-width: 42rem;
  margin: 0 auto 48px;
}
.btn-cta {
  padding: 20px 40px;
  font-size: 18px;
}
.btn-cta:hover svg { transform: translateX(4px); }

/* ---------- Contact ---------- */
.contact { position: relative; overflow: hidden; background: var(--slate-50); }
.contact-topline {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(to right, transparent, var(--secondary), transparent);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}
.contact-lead {
  color: var(--muted-foreground);
  font-size: 18px;
  max-width: 28rem;
  margin-bottom: 40px;
}

.contact-items { display: grid; gap: 24px; }
.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}
.contact-item-icon {
  width: 48px;
  height: 48px;
  background: var(--white);
  border-radius: 9999px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--secondary);
  transition: all 0.3s ease;
}
.contact-item:hover .contact-item-icon {
  border-color: var(--secondary);
  box-shadow: var(--shadow-md);
  transform: scale(1.05);
}
.contact-item-title {
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 18px;
  color: var(--primary);
  margin-bottom: 6px;
}
.contact-item p {
  color: var(--muted-foreground);
  font-size: 16px;
}
.contact-item a { transition: color 0.3s ease; }
.contact-item a:hover { color: var(--secondary); }

.contact-form-card {
  background: var(--white);
  padding: 48px;
  border-radius: 16px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-xl);
  transition: box-shadow 0.5s ease;
}
.contact-form-card:hover { box-shadow: 0 30px 50px rgba(23, 78, 59, 0.15); }
.contact-form-title {
  font-size: 24px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 32px;
}

.contact-form { display: grid; gap: 24px; }
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.form-field { display: grid; gap: 8px; }
.form-label {
  font-size: 14px;
  font-weight: 500;
  color: var(--primary);
}
.form-input {
  width: 100%;
  padding: 12px 16px;
  background: var(--slate-50);
  border: 1px solid var(--border);
  border-radius: 2px;
  font-family: inherit;
  font-size: 14px;
  color: var(--foreground);
  transition: all 0.2s ease;
}
.form-input::placeholder { color: hsla(159, 10%, 40%, 0.6); }
.form-input:focus {
  outline: none;
  border-color: var(--secondary);
  box-shadow: 0 0 0 2px rgba(197, 160, 89, 0.3);
}
.form-textarea { resize: none; }

.honeypot {
  position: absolute;
  left: -9999px;
  opacity: 0;
  height: 0;
  width: 0;
}

.btn-submit {
  width: 100%;
  padding: 16px;
}
.btn-submit:hover { transform: scale(1.01); }
.btn-submit:active { transform: scale(0.99); }

.spinner-wrap { display: inline-flex; align-items: center; }
.spinner {
  height: 20px;
  width: 20px;
  animation: spin 1s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }
.spinner-ring { opacity: 0.25; }
.spinner-fill { opacity: 0.75; }

.form-note {
  font-size: 12px;
  color: var(--muted-foreground);
  text-align: center;
  padding-top: 16px;
}

/* ---------- Footer ---------- */
.footer {
  position: relative;
  background: var(--primary);
  color: var(--white);
  padding: 96px 0 48px;
  overflow: hidden;
}
.footer-shine {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent, rgba(197, 160, 89, 0.05), transparent);
  pointer-events: none;
}

.footer-grid {
  position: relative;
  z-index: 10;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 64px;
}

.footer-brand-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
}
.footer-logo {
  height: 48px;
  width: auto;
  border-radius: 2px;
  box-shadow: var(--shadow-lg);
  transition: transform 0.3s ease;
}
.footer-brand-link:hover .footer-logo { transform: scale(1.05); }
.footer-brand-text { display: flex; flex-direction: column; }
.footer-brand-name {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 24px;
  color: var(--white);
  line-height: 1.2;
}
.footer-brand-tagline {
  font-size: 0.6rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--secondary);
  line-height: 1.2;
}

.footer-blurb {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
  margin-bottom: 32px;
  padding-right: 16px;
}

.socials { display: flex; gap: 16px; }
.social {
  width: 40px;
  height: 40px;
  border-radius: 9999px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.7);
  transition: all 0.3s ease;
}
.social:hover { transform: scale(1.1); color: var(--white); }
.social-fb:hover { background: #1877f2; border-color: #1877f2; }
.social-ig:hover {
  background: linear-gradient(to top right, #f58529, #dd2a7b, #8134af);
  border-color: #dd2a7b;
}
.social-x:hover { background: #000; border-color: rgba(255, 255, 255, 0.5); }

.footer-heading {
  position: relative;
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: 18px;
  color: var(--white);
  margin-bottom: 24px;
}
.footer-heading::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 32px;
  height: 2px;
  background: var(--secondary);
}

.footer-links li { margin-bottom: 16px; }
.footer-links a {
  position: relative;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: color 0.3s ease, transform 0.3s ease;
}
.footer-links a::before {
  content: '›';
  color: var(--secondary);
  font-size: 14px;
}
.footer-links a:hover {
  color: var(--secondary);
  transform: translateX(4px);
}

.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 16px;
}
.footer-contact li svg {
  color: var(--secondary);
  flex-shrink: 0;
  margin-top: 2px;
  transition: transform 0.3s ease;
}
.footer-contact li:hover svg { transform: scale(1.1); }
.footer-link { transition: color 0.3s ease; }
.footer-link:hover { color: var(--secondary); }

.footer-bottom {
  position: relative;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  flex-wrap: wrap;
}
.footer-copy { font-size: 14px; color: rgba(255, 255, 255, 0.5); }
.footer-legal { display: flex; gap: 24px; }
.footer-legal a {
  position: relative;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
  transition: color 0.3s ease;
}
.footer-legal a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  height: 1px;
  width: 0;
  background: var(--white);
  transition: width 0.3s ease;
}
.footer-legal a:hover { color: var(--white); }
.footer-legal a:hover::after { width: 100%; }

.back-to-top {
  width: 40px;
  height: 40px;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  transition: all 0.3s ease;
}
.back-to-top:hover {
  background: var(--secondary);
  transform: scale(1.1);
}
.back-to-top:hover svg { transform: translateY(-4px); }
.back-to-top svg { transition: transform 0.3s ease; }

/* ---------- WhatsApp button ---------- */
.whatsapp-btn {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 50;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  border-radius: 9999px;
  background: #25d366;
  color: var(--white);
  box-shadow: var(--shadow-lg);
  transition: all 0.5s ease;
  opacity: 0;
  transform: translateY(80px);
}
.whatsapp-btn.show {
  opacity: 1;
  transform: translateY(0);
}
.whatsapp-btn:hover {
  transform: scale(1.1);
  box-shadow: var(--shadow-xl);
}
.whatsapp-icon { animation: pulse 2s ease-in-out infinite; }
.whatsapp-label { display: none; font-size: 14px; font-weight: 500; }

.whatsapp-ping,
.whatsapp-dot {
  position: absolute;
  top: -4px;
  right: -4px;
  border-radius: 9999px;
  background: #ef4444;
}
.whatsapp-dot { width: 12px; height: 12px; }
.whatsapp-ping {
  width: 16px;
  height: 16px;
  animation: ping 1s cubic-bezier(0, 0, 0.2, 1) infinite;
}
@keyframes ping {
  75%, 100% { transform: scale(2); opacity: 0; }
}

/* ---------- Success Modal ---------- */
.modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.modal.open {
  opacity: 1;
  pointer-events: auto;
}
.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}
.modal-card {
  position: relative;
  z-index: 1;
  background: var(--white);
  border-radius: 16px;
  box-shadow: var(--shadow-xl);
  max-width: 28rem;
  width: 100%;
  padding: 40px;
  text-align: center;
  transform: translateY(20px) scale(0.9);
  opacity: 0;
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.4), opacity 0.3s ease;
}
.modal.open .modal-card {
  transform: translateY(0) scale(1);
  opacity: 1;
}
.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 32px;
  height: 32px;
  border-radius: 9999px;
  background: var(--slate-50);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted-foreground);
  transition: background 0.2s ease;
}
.modal-close:hover { background: #e2e8f0; }

.modal-check {
  width: 80px;
  height: 80px;
  background: var(--primary);
  border-radius: 9999px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  margin: 0 auto 24px;
  animation: modal-pop 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.4);
}
@keyframes modal-pop {
  from { transform: scale(0); }
  to { transform: scale(1); }
}
.modal-title {
  font-size: 24px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 12px;
}
.modal-text {
  color: var(--muted-foreground);
  line-height: 1.6;
  margin-bottom: 32px;
}
.modal-ok { padding: 12px 32px; }

/* ---------- 404 ---------- */
.not-found {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--background);
  padding: 16px;
  text-align: center;
}
.not-found-inner { max-width: 28rem; }
.not-found-icon { color: var(--muted-foreground); margin-bottom: 32px; }
.not-found-title { font-size: 36px; font-weight: 700; margin-bottom: 16px; }
.not-found-text { color: var(--muted-foreground); font-size: 18px; margin-bottom: 24px; }
.not-found-btn { margin-top: 16px; }

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .reveal, .anim-up { opacity: 1 !important; transform: none !important; }
}

/* ---------- Responsive ---------- */
@media (min-width: 640px) {
  .whatsapp-label { display: inline; }
}

@media (max-width: 1024px) {
  .section { padding: 80px 0; }

  .nav-desktop, .btn-cta-nav { display: none; }
  .menu-toggle { display: block; }

  .hero-title { font-size: 48px; }
  .cta-title { font-size: 48px; }

  .about-grid { grid-template-columns: 1fr; gap: 80px; }
  .about-media { max-width: 480px; margin: 0 auto; }

  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: 1fr; gap: 48px; }
  .industries-grid { grid-template-columns: repeat(3, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); gap: 48px 32px; }
  .diff-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 40px; }
  .testimonials-grid { grid-template-columns: 1fr; max-width: 640px; margin: 0 auto; }
  .contact-grid { grid-template-columns: 1fr; gap: 64px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }

  .approach-head { flex-direction: column; align-items: flex-start; gap: 24px; }
  .steps-line { display: none; }
}

@media (max-width: 640px) {
  .section { padding: 64px 0; }
  .container { padding: 0 20px; }

  .hero-title { font-size: 36px; }
  .hero-subtitle { font-size: 17px; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .btn-hero { width: 100%; }
  .hero-content { padding-top: 100px; }
  .hero-tag-list span { font-size: 11px; }

  .section-title { font-size: 36px; }
  .section-head { margin-bottom: 48px; }

  .about-paragraphs { font-size: 16px; }
  .about-features { grid-template-columns: 1fr; }
  .about-stat-card { position: static; max-width: none; margin-top: 32px; }

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

  .why-title { font-size: 36px; }
  .why-benefits { grid-template-columns: 1fr; }

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

  .steps { grid-template-columns: 1fr; }
  .step-icon { margin-left: auto; margin-right: auto; }
  .step { text-align: center; }

  .diff-title { font-size: 36px; }
  .diff-grid { grid-template-columns: 1fr; }

  .stat-number { font-size: 48px; }

  .testimonial-card { padding: 32px; }

  .cta-title { font-size: 36px; }
  .cta { padding: 96px 0; }

  .form-row { grid-template-columns: 1fr; }
  .contact-form-card { padding: 32px; }

  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .brand-logo { height: 40px; }
  .brand-name { font-size: 20px; }
}
