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

:root {
  --sand-50:  #FDF8F0;
  --sand-100: #FAF0DC;
  --sand-200: #F5E4C0;
  --sand-300: #EDD49A;
  --sand-400: #E0BF78;
  --orange-400: #E8752A;
  --orange-500: #D4611E;
  --orange-600: #BE5219;
  --orange-glow: rgba(212, 97, 30, 0.12);
  --text-900: #1E1410;
  --text-700: #4A3728;
  --text-500: #000000;
  --text-300: #B8A494;
  --white: #FEFCF8;
  --transition: cubic-bezier(0.4, 0, 0.2, 1);
}

html { scroll-behavior: smooth; overflow-x: hidden; }

body {
  font-family: 'DM Sans', sans-serif;
  background: #f0ebe0;
  color: var(--text-900);
  overflow-x: hidden;
}

/* ── LOADER ── */
#loader {
  position: fixed; inset: 0;
  background: var(--orange-500);
  z-index: 9999;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  transition: opacity 0.9s ease, visibility 0.9s ease;
}
#loader.done { opacity: 0; visibility: hidden; }
.loader-wordmark {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: 300;
  color: var(--sand-50);
  letter-spacing: 0.1em;
  opacity: 0;
  animation: fadeUp 0.7s 0.3s forwards;
}
.loader-sub {
  font-size: 0.7rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: rgba(253,248,240,0.55);
  margin-top: 0.5rem;
  opacity: 0;
  animation: fadeUp 0.7s 0.6s forwards;
}
.loader-line {
  width: 140px; height: 1px;
  background: rgba(253,248,240,0.2);
  margin-top: 2.5rem; overflow: hidden;
  opacity: 0; animation: fadeUp 0.7s 0.9s forwards;
}
.loader-fill { height: 100%; background: var(--sand-100); width: 0; animation: fill 1.6s 1.1s ease forwards; }
@keyframes fill { to { width: 100%; } }
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ── FLOAT ANIMATION ── */
@keyframes float {
  0%   { transform: translateY(0px); }
  50%  { transform: translateY(-18px); }
  100% { transform: translateY(0px); }
}

/* ── CURSOR ── */
.cursor {
  position: fixed; width: 9px; height: 9px;
  background: var(--orange-500); border-radius: 50%;
  pointer-events: none; z-index: 9998;
  transform: translate(-50%,-50%);
  transition: width 0.3s, height 0.3s;
}
.cursor-ring {
  position: fixed; width: 34px; height: 34px;
  border: 1px solid rgba(212,97,30,0.35); border-radius: 50%;
  pointer-events: none; z-index: 9997;
  transform: translate(-50%,-50%);
  transition: width 0.3s, height 0.3s, opacity 0.3s;
}
body:has(a:hover) .cursor { width: 0; height: 0; }
body:has(a:hover) .cursor-ring { width: 48px; height: 48px; border-color: var(--orange-500); }

/* ── NAV ── */
nav {
  position: fixed; top: 0; width: 100%; z-index: 1000;
  padding: 1.4rem 5%;
  background: rgba(240,235,224,0.96);
  border-bottom: 1px solid rgba(212,97,30,0.08);
  transition: all 0.5s var(--transition);
}
nav.scrolled {
  background: rgba(212,97,30,0.96);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 0.85rem 5%;
  border-bottom: 1px solid rgba(30,20,16,0.08);
  box-shadow: 0 4px 32px rgba(30,20,16,0.12);
}
.nav-inner {
  max-width: 1280px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
}
.nav-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.55rem; font-weight: 600;
  color: var(--text-900); letter-spacing: 0.06em;
  text-decoration: none; transition: color 0.4s;
}
nav.scrolled .nav-logo { color: var(--sand-50); }
.nav-logo span { color: var(--orange-500); }
nav.scrolled .nav-logo span { color: var(--sand-200); }

.nav-links { display: flex; gap: 2.5rem; list-style: none; }
.nav-links a {
  font-size: 0.74rem; letter-spacing: 0.18em; text-transform: uppercase;
  color: rgba(30,20,16,0.78); text-decoration: none;
  transition: color 0.3s; position: relative;
}
nav.scrolled .nav-links a { color: rgba(253,248,240,0.88); }
.nav-links a::after {
  content: ''; position: absolute; bottom: -4px; left: 0;
  width: 0; height: 1px; background: var(--orange-500); transition: width 0.3s;
}
.nav-links a:hover::after { width: 100%; }
.nav-links a:hover { color: var(--orange-400) !important; }

.nav-cta {
  padding: 0.52rem 1.4rem;
  background: var(--orange-500); color: var(--sand-50);
  border: none; border-radius: 2px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.72rem; letter-spacing: 0.18em; text-transform: uppercase;
  cursor: pointer; text-decoration: none;
  transition: all 0.3s; font-weight: 500;
}
nav.scrolled .nav-cta { background: var(--sand-50); color: var(--orange-600); }
.nav-cta:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(212,97,30,0.3); }

.hamburger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 4px;
}
.hamburger span {
  display: block; width: 24px; height: 1.5px;
  background: var(--text-900); transition: all 0.3s;
}
nav.scrolled .hamburger span { background: var(--sand-50); }

/* ── MOBILE MENU ── */
.mobile-menu {
  position: fixed; inset: 0;
  background: var(--orange-500);
  z-index: 999;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 2rem;
  opacity: 0; visibility: hidden; transition: all 0.4s;
}
.mobile-menu.open { opacity: 1; visibility: visible; }
.mobile-menu a {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.4rem; font-weight: 300;
  color: var(--sand-50); text-decoration: none; transition: color 0.3s;
}
.mobile-menu a:hover { color: var(--sand-200); }
.mobile-close {
  position: absolute; top: 1.5rem; right: 1.75rem;
  background: none; border: none; color: var(--sand-50);
  font-size: 1.4rem; cursor: pointer;
}

/* ── HERO ── */
#hero {
  min-height: 100vh;
  background: #f0ebe0;
  position: relative; display: flex; align-items: center; overflow: hidden;
}

/* Texture overlay */
#hero::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    radial-gradient(circle at 70% 30%, rgba(212,97,30,0.08) 0%, transparent 50%),
    radial-gradient(circle at 20% 80%, rgba(30,20,16,0.06) 0%, transparent 40%);
  pointer-events: none;
}

/* Grain overlay */
#hero::after {
  content: '';
  position: absolute; inset: 0;
  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)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none; opacity: 0.4;
}

.hero-grid-lines {
  position: absolute; inset: 0; overflow: hidden; pointer-events: none;
}
.hero-grid-lines::before {
  content: '';
  position: absolute; inset: 0;
  background-image: linear-gradient(rgba(212,97,30,0.05) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(212,97,30,0.05) 1px, transparent 1px);
  background-size: 80px 80px;
  animation: gridDrift 24s linear infinite;
}
@keyframes gridDrift { 0% { background-position: 0 0; } 100% { background-position: 80px 80px; } }

.hero-content {
  position: relative; z-index: 2;
  max-width: 1280px; margin: 0 auto; padding: 0 5%;
  width: 100%;
  display: grid; grid-template-columns: 1fr 1.2fr;
  align-items: center; gap: 2rem;
}

.hero-eyebrow {
  display: flex; align-items: center; gap: 0.75rem; margin-bottom: 1.75rem;
}
.eyebrow-line { width: 36px; height: 1px; background: rgba(212,97,30,0.35); }
.hero-eyebrow span {
  font-size: 0.68rem; letter-spacing: 0.35em; text-transform: uppercase;
  color: rgba(74,55,40,0.72); font-weight: 500;
}

.hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3.2rem, 5.5vw, 6rem);
  font-weight: 300; line-height: 1.04; color: var(--text-900);
  margin-bottom: 1.75rem;
}
.hero-title em { font-style: italic; color: var(--orange-500); }
.hero-title .reveal { overflow: hidden; display: block; }
.hero-title .reveal span {
  display: block; animation: slideUp 0.8s var(--transition) both;
}
.hero-title .reveal:nth-child(1) span { animation-delay: 0.15s; }
.hero-title .reveal:nth-child(2) span { animation-delay: 0.3s; }
.hero-title .reveal:nth-child(3) span { animation-delay: 0.45s; }
@keyframes slideUp { from { transform: translateY(105%); } to { transform: translateY(0); } }

.hero-desc {
  font-size: 1rem; line-height: 1.82; color: rgba(74,55,40,0.86);
  max-width: 460px; margin-bottom: 2.75rem;
  opacity: 0; animation: fadeUp 0.8s 0.9s forwards;
}

.hero-actions {
  display: flex; gap: 1rem; flex-wrap: wrap;
  opacity: 0; animation: fadeUp 0.8s 1.1s forwards;
}

.btn-primary {
  padding: 0.88rem 2.2rem;
  background: var(--orange-500); color: var(--sand-50);
  border: none; border-radius: 2px;
  font-family: 'DM Sans', sans-serif; font-size: 0.76rem;
  letter-spacing: 0.18em; text-transform: uppercase;
  cursor: pointer; text-decoration: none;
  display: inline-flex; align-items: center; gap: 0.6rem;
  transition: all 0.3s; font-weight: 500;
}
.btn-primary:hover {
  background: var(--orange-600);
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(212,97,30,0.22);
}
.btn-primary svg { transition: transform 0.3s; }
.btn-primary:hover svg { transform: translateX(4px); }

.btn-ghost {
  padding: 0.88rem 2.2rem;
  background: transparent; color: var(--text-900);
  border: 1px solid rgba(212,97,30,0.22); border-radius: 2px;
  font-family: 'DM Sans', sans-serif; font-size: 0.76rem;
  letter-spacing: 0.18em; text-transform: uppercase;
  cursor: pointer; text-decoration: none;
  display: inline-flex; align-items: center; gap: 0.6rem;
  transition: all 0.3s;
}
.btn-ghost:hover {
  border-color: var(--orange-500);
  background: rgba(212,97,30,0.06);
  transform: translateY(-3px);
}

.hero-stats {
  display: flex; gap: 2.5rem;
  margin-top: 3.5rem; padding-top: 2rem;
  border-top: 1px solid rgba(212,97,30,0.14);
  opacity: 0; animation: fadeUp 0.8s 1.3s forwards;
}
.stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.2rem; font-weight: 400; color: var(--text-900); line-height: 1;
}
.stat-label {
  font-size: 0.66rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: rgba(74,55,40,0.6); margin-top: 0.3rem;
}

/* Hero right: visual panel */
.hero-panel {
  opacity: 0; animation: fadeUp 0.8s 0.6s forwards;
  overflow: visible; position: relative;
}
.hero-panel-inner {
  background: none; border: none; padding: 0;
}
.hero-panel img {
  width: 140%; max-width: none;
  margin-left: -20%; margin-top: -4rem; margin-bottom: -4rem;
  display: block;
  filter: drop-shadow(0 32px 70px rgba(30,20,16,0.18));
  animation: float 4s ease-in-out infinite;
}
.hero-panel-img-placeholder {
  width: 100%; aspect-ratio: 4/3;
  background: linear-gradient(135deg, rgba(253,248,240,0.12) 0%, rgba(253,248,240,0.04) 100%);
  border-radius: 8px; display: flex; align-items: center; justify-content: center;
  font-size: 4rem; margin-bottom: 1.5rem;
}
.hero-panel-tag {
  font-size: 0.66rem; letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--sand-300); margin-bottom: 0.5rem;
}
.hero-panel-heading {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem; color: var(--sand-50); font-weight: 300; line-height: 1.3;
  margin-bottom: 1rem;
}
.hero-panel-row {
  display: flex; align-items: center; gap: 0.6rem;
  margin-top: 1.25rem; padding-top: 1.25rem;
  border-top: 1px solid rgba(253,248,240,0.1);
}
.pulse-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--sand-200);
  animation: pulse 2.2s ease-in-out infinite;
}
@keyframes pulse {
  0%,100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.6); opacity: 0.45; }
}
.hero-panel-status {
  font-size: 0.72rem; color: rgba(253,248,240,0.55); letter-spacing: 0.08em;
}

/* ── MARQUEE ── */
.marquee-wrap {
  background: var(--sand-100); padding: 0.85rem 0;
  overflow: hidden; position: relative; z-index: 2;
  border-top: 1px solid rgba(212,97,30,0.15);
  border-bottom: 1px solid rgba(212,97,30,0.15);
}
.marquee-inner {
  display: flex; animation: marquee 28s linear infinite;
}
.marquee-item {
  display: flex; align-items: center; gap: 1.5rem;
  white-space: nowrap; padding: 0 2rem; flex-shrink: 0;
}
.marquee-item span {
  font-size: 0.7rem; letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--orange-500); font-weight: 400;
}
.marquee-dot { width: 3px; height: 3px; background: var(--orange-400); border-radius: 50%; opacity: 0.5; }
@keyframes marquee { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* ── SHOWCASE SLIDER (hero panel) ── */
.hero-panel-inner {
  background: none; border: none; padding: 0;
  border-radius: 16px; overflow: hidden;
}
.showcase-wrap {
  position: relative; overflow: hidden; border-radius: 16px;
  height: 480px;
}
.showcase-track {
  display: flex; width: 100%; height: 100%;
  transition: transform 0.85s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}
.showcase-slide {
  min-width: 100%; width: 100%; height: 100%; position: relative;
  overflow: hidden; flex-shrink: 0;
}
.showcase-slide img {
  width: 120%; height: 115%; object-fit: cover; display: block;
  transform: scale(1.06); transition: transform 5.5s ease;
}
.showcase-slide.active img { transform: scale(1); }
.showcase-label {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 2.5rem 1.75rem;
  background: linear-gradient(to top, rgba(30,20,16,0.8) 0%, transparent 100%);
}
.showcase-cat {
  font-size: 0.62rem; letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--orange-400); display: block; margin-bottom: 0.4rem;
  opacity: 0; transform: translateY(8px);
  transition: opacity 0.55s 0.2s ease, transform 0.55s 0.2s ease;
}
.showcase-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.4rem, 2.2vw, 2rem);
  font-weight: 300; color: var(--sand-50); line-height: 1.1;
  opacity: 0; transform: translateY(12px);
  transition: opacity 0.55s 0.32s ease, transform 0.55s 0.32s ease;
}
.showcase-slide.active .showcase-cat,
.showcase-slide.active .showcase-name { opacity: 1; transform: translateY(0); }
.showcase-arrow {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(253,248,240,0.12); border: 1px solid rgba(253,248,240,0.2);
  color: rgba(253,248,240,0.8); font-size: 0.95rem; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: all 0.3s; z-index: 2;
}
.showcase-arrow:hover { background: var(--orange-500); border-color: var(--orange-500); color: white; }
.showcase-prev { left: 0.75rem; }
.showcase-next { right: 0.75rem; }
.showcase-footer {
  display: flex; align-items: center; justify-content: center; gap: 1.25rem;
  padding: 0.75rem 1rem;
  border-radius: 0 0 16px 16px;
}
.showcase-dots { display: flex; gap: 0.4rem; }
.sc-dot {
  width: 5px; height: 5px; border-radius: 3px;
  background: rgba(253,248,240,0.2); border: none; cursor: pointer;
  transition: all 0.3s; padding: 0;
}
.sc-dot.active { width: 18px; background: rgb(255, 255, 255); }
.showcase-counter {
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.82rem; white-space: nowrap;
}
#showcaseCurr { color: var(--sand-200); }
.showcase-sep { color: rgba(253,248,240,0.2); }

/* ── SECTION BASE ── */
section { padding: 7rem 5%; }
.section-inner { max-width: 1280px; margin: 0 auto; }
.section-label {
  display: inline-flex; align-items: center; gap: 0.75rem; margin-bottom: 1.1rem;
}
.section-label-line { width: 26px; height: 1px; background: var(--orange-500); }
.section-label span {
  font-size: 0.66rem; letter-spacing: 0.32em; text-transform: uppercase;
  color: var(--orange-500); font-weight: 400;
}
.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.2rem, 4vw, 3.8rem);
  font-weight: 300; line-height: 1.1; color: var(--text-900); margin-bottom: 1.1rem;
}
.section-title em { font-style: italic; color: var(--orange-500); }
.section-desc { font-size: 1rem; line-height: 1.82; color: var(--text-500); max-width: 540px; }

/* ── ABOUT ── */
#about { background: var(--sand-50); }

.about-grid {
  display: grid; grid-template-columns: 1fr 1.5fr;
  gap: 4rem; align-items: center; margin-top: 4rem;
}
.about-img-wrap {
  border-radius: 18px;
  overflow: hidden;
  /* background: linear-gradient(160deg, rgba(245,228,192,0.75) 0%, rgba(253,248,240,0.96) 100%);
  border: 1px solid rgba(212,97,30,0.12);
  box-shadow: 0 18px 50px rgba(212,97,30,0.08); */
  padding: 0.25rem;
}
.about-img-wrap img {
  width: 100%; height: 100%; object-fit: contain; display: block;
  max-height: 500px;
  max-width: 500px;
  animation: float 4s ease-in-out infinite;
}
.about-img-placeholder {
  font-size: 5rem; color: var(--orange-400); opacity: 0.35;
}

.about-copy {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.about-intro-card {
  background: var(--white);
  border: 1px solid rgba(212,97,30,0.1);
  border-radius: 16px;
  padding: 1.6rem 1.7rem;
  box-shadow: 0 10px 30px rgba(212,97,30,0.05);
}
.about-copy-text {
  font-size: 0.96rem;
  line-height: 1.8;
  color: var(--text-700);
  margin-top: 0.9rem;
}
.about-copy-note {
  margin-top: 0.9rem;
  font-size: 0.82rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--orange-500);
}
.about-highlights {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.about-highlight {
  background: rgba(245,228,192,0.42);
  border: 1px solid rgba(212,97,30,0.08);
  border-radius: 14px;
  padding: 1.1rem 1.15rem;
}
.about-highlight-label {
  display: block;
  margin-bottom: 0.55rem;
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--orange-500);
}
.about-highlight strong {
  font-size: 0.92rem;
  line-height: 1.65;
  color: var(--text-900);
  font-weight: 500;
}

.principles-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-top: 0.2rem; }
.principle-card {
  position: relative;
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr);
  gap: 1.4rem;
  align-items: start;
  padding: 1.35rem 1.4rem;
  background: linear-gradient(180deg, var(--white) 0%, rgba(250,240,220,0.45) 100%);
  border: 1px solid rgba(212,97,30,0.12);
  border-radius: 14px;
  transition: all 0.4s var(--transition);
  cursor: default;
  overflow: hidden;
}
.principle-card::before {
  content: '';
  position: absolute;
  inset: auto 0 0 0;
  height: 3px;
  background: linear-gradient(90deg, var(--orange-500), rgba(212,97,30,0.18));
  transition: opacity 0.4s, transform 0.4s;
  transform-origin: left center;
}
.principle-card:hover {
  background: var(--orange-500);
  border-color: var(--orange-500);
  transform: translateY(-4px);
  box-shadow: 0 18px 45px rgba(212,97,30,0.22);
}
.principle-card:hover::before {
  opacity: 0.22;
  transform: scaleX(1.08);
}
.principle-card:hover .pc-num { color: rgba(253,248,240,0.28); }
.principle-card:hover .pc-title { color: var(--sand-50); }
.principle-card:hover .pc-desc { color: rgba(253,248,240,0.82); }
.pc-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.2rem, 4vw, 3rem);
  font-weight: 400;
  color: var(--orange-500);
  line-height: 0.9;
  transition: color 0.4s;
  flex-shrink: 0;
  width: 64px;
  letter-spacing: 0.03em;
}
.pc-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.55rem;
  font-weight: 500;
  color: var(--text-900);
  margin-bottom: 0.65rem;
  transition: color 0.4s;
  line-height: 1.05;
}
.pc-desc {
  font-size: 0.88rem;
  line-height: 1.72;
  color: var(--text-700);
  transition: color 0.4s;
  max-width: 28ch;
}

/* ── SOLUTIONS ── */
#solutions {
  background: linear-gradient(160deg, var(--sand-100) 0%, var(--sand-200) 100%);
}
.solutions-header {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 4rem; align-items: end; margin-bottom: 4.5rem;
}
.solutions-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem;
}
.solution-card {
  background: var(--white);
  border: 1px solid rgba(212,97,30,0.1);
  border-radius: 10px; padding: 2.25rem 2rem;
  transition: all 0.45s var(--transition);
  position: relative; overflow: hidden; cursor: default;
}
.solution-card::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, var(--orange-500) 0%, var(--orange-400) 100%);
  opacity: 0; transition: opacity 0.4s;
}
.solution-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 60px rgba(212,97,30,0.2);
  border-color: transparent;
}
.solution-card:hover::before { opacity: 1; }
.solution-card:hover .sc-icon { background: rgba(253,248,240,0.15); }
.solution-card:hover .sc-tag { color: rgba(253,248,240,0.55); }
.solution-card:hover .sc-title { color: var(--sand-50); }
.solution-card:hover .sc-desc { color: rgba(253,248,240,0.65); }
.solution-card:hover .sc-moq { background: rgba(253,248,240,0.12); color: var(--sand-100); border-color: rgba(253,248,240,0.2); }
.solution-card:hover .sc-arrow { color: var(--sand-200); transform: translate(4px,-4px); }
.solution-card-inner { position: relative; z-index: 1; }
.sc-top { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 1.75rem; }
.sc-icon {
  width: 50px; height: 50px; border-radius: 8px;
  background: var(--orange-glow);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem; transition: all 0.4s;
}
.sc-arrow { color: rgba(125,98,81,0.35); font-size: 1.1rem; transition: all 0.35s; }
.sc-tag {
  font-size: 0.65rem; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--orange-500); margin-bottom: 0.5rem;
  transition: color 0.4s; display: block;
}
.sc-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.45rem; font-weight: 400; color: var(--text-900);
  margin-bottom: 0.7rem; line-height: 1.2; transition: color 0.4s;
}
.sc-desc { font-size: 0.8rem; line-height: 1.72; color: var(--text-500); margin-bottom: 1.5rem; transition: color 0.4s; }
.sc-moq {
  display: inline-flex; align-items: center; gap: 0.4rem;
  padding: 0.28rem 0.75rem;
  background: var(--orange-glow);
  border: 1px solid rgba(212,97,30,0.15); border-radius: 20px;
  font-size: 0.67rem; letter-spacing: 0.08em; color: var(--text-500); transition: all 0.4s;
}

.verticals-compact {
  margin-top: 4rem;
  background: rgba(253,248,240,0.72);
  border: 1px solid rgba(212,97,30,0.12);
  border-radius: 22px;
  padding: 2.1rem;
  box-shadow: 0 18px 45px rgba(212,97,30,0.07);
}
.verticals-compact-head {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 2rem;
  align-items: end;
  margin-bottom: 1.8rem;
}
.verticals-compact-list {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 1rem;
}
.vc-card {
  grid-column: span 4;
  min-height: 250px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 1.25rem;
  padding: 1.3rem;
  background: linear-gradient(180deg, var(--white) 0%, rgba(250,240,220,0.52) 100%);
  border: 1px solid rgba(212,97,30,0.1);
  border-radius: 18px;
  position: relative;
  overflow: hidden;
  transition: transform 0.45s var(--transition), box-shadow 0.45s var(--transition), border-color 0.45s var(--transition), background 0.45s var(--transition);
}
.vc-card::before {
  content: '';
  position: absolute;
  inset: auto 0 0 0;
  height: 0;
  background: linear-gradient(180deg, rgba(212,97,30,0) 0%, rgba(212,97,30,0.12) 100%);
  transition: height 0.45s var(--transition);
}
.vc-card:hover {
  transform: translateY(-10px);
  border-color: rgba(212,97,30,0.24);
  box-shadow: 0 24px 52px rgba(212,97,30,0.16);
}
.vc-card:hover::before {
  height: 100%;
}
.vc-card-featured {
  grid-column: span 6;
  grid-row: span 2;
  min-height: 100%;
  background: linear-gradient(160deg, rgba(245,228,192,0.92) 0%, var(--white) 100%);
}
.vc-card-wide {
  grid-column: span 6;
}
.vc-card-top,
.vc-card-foot {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.85rem;
}
.vc-card-body {
  position: relative;
  z-index: 1;
}
.vc-card:hover .vci-icon {
  background: var(--orange-500);
  color: var(--sand-50);
  transform: translateY(-2px) rotate(6deg);
}
.vc-card:hover .vci-arrow {
  background: var(--orange-500);
  color: var(--sand-50);
  transform: translate(3px, -3px);
}
.vc-card:hover .vci-meta {
  background: var(--orange-500);
  color: var(--sand-50);
  border-color: var(--orange-500);
}
.vc-card:hover .vci-title {
  color: var(--orange-600);
}
.vci-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: rgba(212,97,30,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  flex-shrink: 0;
  transition: all 0.4s var(--transition);
}
.vci-label {
  font-size: 0.66rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--orange-500);
  margin-bottom: 0.5rem;
}
.vci-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  color: var(--text-900);
  line-height: 1.05;
  margin-bottom: 0.55rem;
  transition: color 0.4s var(--transition);
}
.vci-copy {
  font-size: 0.86rem;
  line-height: 1.72;
  color: var(--text-700);
}
.vci-note {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-500);
}
.vci-arrow {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(212,97,30,0.16);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--orange-500);
  background: rgba(212,97,30,0.06);
  transition: all 0.4s var(--transition);
}
.vci-meta {
  flex-shrink: 0;
  font-size: 0.74rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--orange-500);
  padding: 0.45rem 0.8rem;
  border-radius: 999px;
  background: rgba(212,97,30,0.08);
  border: 1px solid rgba(212,97,30,0.12);
  transition: all 0.4s var(--transition);
}

/* ── PROCESS ── */
#process {
  background: var(--orange-500); position: relative; overflow: hidden;
}
#process::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 85% 50%, rgba(253,248,240,0.06) 0%, transparent 55%);
  pointer-events: none;
}
#process .section-title { color: #ffffff; }
#process .section-title em { color: #000000; }
#process .section-desc { color: rgba(0,0,0,0.6); }
#process .section-label span { color: #000000; }
#process .section-label-line { background: #000000; }

.process-steps {
  display: grid; grid-template-columns: repeat(5, 1fr);
  gap: 0; margin-top: 5rem; position: relative;
}
.process-steps::before {
  content: ''; position: absolute;
  top: 50px; left: 12%; right: 12%; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0,0,0,0.2), rgba(0,0,0,0.35), rgba(0,0,0,0.2), transparent);
}
.process-step { padding: 0 1rem; text-align: center; position: relative; }
.ps-number {
  width: 50px; height: 50px; border-radius: 50%;
  background: rgba(0,0,0,0.1);
  border: 1px solid rgba(0,0,0,0.25);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.5rem;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem; color: #000000;
  transition: all 0.4s; position: relative; z-index: 1;
}
.process-step:hover .ps-number {
  background: #ffffff; color: var(--orange-500);
  transform: scale(1.15); border-color: #ffffff;
}
.ps-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem; color: #ffffff; margin-bottom: 0.6rem;
}
.ps-desc { font-size: 0.77rem; line-height: 1.7; color: rgb(0, 0, 0); }
.process-quote {
  text-align: center; margin-top: 4rem;
  padding: 2.5rem;
  border: 1px solid rgba(0,0,0,0.15);
  border-radius: 8px;
  background: rgba(0,0,0,0.06);
}
.process-quote p {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.45rem; font-style: italic;
  color: #ffffff; max-width: 680px;
  margin: 0 auto; line-height: 1.55;
}

/* ── VERTICALS ── */
#verticals { background: var(--sand-50); }
.verticals-layout {
  margin-top: 2rem;
}
.verticals-chooser {
  background: linear-gradient(165deg, rgba(253,248,240,0.9) 0%, var(--white) 100%);
  border: 1px solid rgba(212,97,30,0.12);
  border-radius: 24px;
  padding: 1.5rem;
  box-shadow: 0 16px 40px rgba(212,97,30,0.06);
}
.verticals-chooser-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(212,97,30,0.08);
}
.verticals-chooser-copy {
  font-size: 0.92rem;
  line-height: 1.7;
  color: var(--text-700);
  max-width: 48ch;
}
.verticals-chooser-link {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.1rem;
  background: rgba(212,97,30,0.08);
  color: var(--orange-500);
  border: 1px solid rgba(212,97,30,0.12);
  border-radius: 999px;
  text-decoration: none;
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  transition: all 0.35s var(--transition);
}
.verticals-chooser-link:hover {
  background: var(--orange-500);
  color: var(--sand-50);
}
.verticals-fit-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}
.fit-card {
  min-height: 0;
  padding: 1.1rem;
  background: var(--white);
  border: 1px solid rgba(212,97,30,0.1);
  border-radius: 18px;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  justify-content: flex-start;
  position: relative;
  overflow: hidden;
  transition: transform 0.4s var(--transition), box-shadow 0.4s var(--transition), border-color 0.4s var(--transition);
}
.fit-card::before {
  content: '';
  position: absolute;
  inset: auto 0 0 0;
  height: 0;
  background: linear-gradient(180deg, rgba(212,97,30,0) 0%, rgba(212,97,30,0.1) 100%);
  transition: height 0.4s var(--transition);
}
.fit-card:hover {
  transform: translateY(-8px);
  border-color: rgba(212,97,30,0.24);
  box-shadow: 0 20px 44px rgba(212,97,30,0.14);
}
.fit-card:hover::before {
  height: 100%;
}
.fit-card-head {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
}
.fit-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: rgba(212,97,30,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  transition: all 0.4s var(--transition);
}
.fit-moq {
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--orange-500);
  padding: 0.42rem 0.7rem;
  border-radius: 999px;
  background: rgba(212,97,30,0.08);
  border: 1px solid rgba(212,97,30,0.12);
  transition: all 0.4s var(--transition);
}
.fit-card-label,
.fit-card-title,
.fit-card-copy {
  position: relative;
  z-index: 1;
}
.fit-card-label {
  font-size: 0.68rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--orange-500);
}
.fit-card-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.25rem;
  line-height: 1.08;
  color: var(--text-900);
  font-weight: 500;
}
.fit-card-copy {
  font-size: 0.83rem;
  line-height: 1.62;
  color: var(--text-700);
}
.fit-card:hover .fit-icon {
  background: var(--orange-500);
  color: var(--sand-50);
  transform: rotate(6deg) translateY(-2px);
}
.fit-card:hover .fit-moq {
  background: var(--orange-500);
  color: var(--sand-50);
  border-color: var(--orange-500);
}

/* ── TESTIMONIALS (REDESIGNED) ── */
#testimonials {
  background: var(--text-900); position: relative; overflow: hidden;
}
#testimonials::before {
  content: ''; position: absolute;
  top: -20%; right: -8%;
  width: 55vw; height: 55vw; border-radius: 50%;
  background: radial-gradient(circle, rgba(212,97,30,0.1) 0%, transparent 68%);
  pointer-events: none;
}
#testimonials .section-label span { color: var(--orange-400); }
#testimonials .section-label-line { background: var(--orange-400); }
#testimonials .section-title { color: var(--sand-50); }
#testimonials .section-title em { color: var(--orange-400); }

.testi-header {
  display: flex; justify-content: space-between; align-items: flex-end;
  margin-bottom: 5rem;
}
.testi-nav { display: flex; align-items: center; gap: 1.25rem; }
.testi-btn {
  width: 50px; height: 50px; border-radius: 50%;
  border: 1px solid rgba(253,248,240,0.14);
  background: transparent; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  color: rgba(253,248,240,0.45); transition: all 0.3s; font-size: 1.1rem;
}
.testi-btn:hover {
  background: var(--orange-500); border-color: var(--orange-500); color: white;
}
.testi-counter {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1rem; min-width: 70px; text-align: center;
  white-space: nowrap;
}
#testiCurrent { color: var(--sand-100); font-size: 1.15rem; }
.testi-slash { color: rgba(253,248,240,0.25); }

.testi-stage {
  position: relative; min-height: 300px;
  max-width: 820px; margin: 0 auto; text-align: center;
}
.testi-item {
  position: absolute; inset: 0;
  opacity: 0; transition: opacity 0.65s ease, transform 0.65s ease;
  pointer-events: none; transform: translateY(14px);
}
.testi-item.active {
  opacity: 1; position: relative; pointer-events: auto; transform: translateY(0);
}
.testi-mark {
  font-family: 'Cormorant Garamond', serif;
  font-size: 6.5rem; line-height: 0.65;
  color: var(--orange-500); opacity: 0.45;
  display: block; margin-bottom: 1.25rem;
}
.testi-quote {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.3rem, 2.1vw, 1.85rem);
  font-style: italic; line-height: 1.72;
  color: var(--sand-100); margin-bottom: 2.5rem;
}
.testi-author {
  display: inline-flex; align-items: center; gap: 1rem;
  padding: 0.85rem 1.75rem;
  background: rgba(253,248,240,0.04);
  border: 1px solid rgba(253,248,240,0.1); border-radius: 50px;
}
.testi-avatar {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--orange-500);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.76rem; color: white; font-weight: 500; flex-shrink: 0;
}
.testi-name { font-size: 0.84rem; font-weight: 500; color: var(--sand-100); }
.testi-role { font-size: 0.72rem; color: rgba(253,248,240,0.38); }

.testi-progress {
  height: 1px; background: rgba(253,248,240,0.08);
  max-width: 200px; margin: 3rem auto 0; border-radius: 1px; overflow: hidden;
}
.testi-progress-fill {
  height: 100%; background: var(--orange-500);
  width: 20%; transition: width 0.55s ease;
}
.carousel-dots {
  display: flex; gap: 0.5rem; margin-top: 1.25rem; justify-content: center;
}
.c-dot {
  width: 6px; height: 6px; border-radius: 3px;
  background: rgba(253,248,240,0.15); border: none; cursor: pointer;
  transition: all 0.3s; padding: 0;
}
.c-dot.active { width: 22px; background: var(--orange-500); }


/* ── CTA BANNER ── */
#cta-banner {
  background: var(--sand-200); padding: 5rem 5%; position: relative; overflow: hidden;
  border-top: 1px solid rgba(212,97,30,0.15);
  border-bottom: 1px solid rgba(212,97,30,0.15);
}
#cta-banner::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(212,97,30,0.08) 0%, transparent 60%);
}
.cta-inner {
  max-width: 1280px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr auto;
  gap: 4rem; align-items: center; position: relative; z-index: 1;
}
.cta-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 4vw, 3.4rem); font-weight: 300;
  color: var(--text-900); line-height: 1.1;
}
.cta-title em { font-style: italic; color: var(--orange-500); }
.btn-orange {
  padding: 0.9rem 2.2rem;
  background: var(--orange-500); color: white;
  border: none; border-radius: 2px;
  font-family: 'DM Sans', sans-serif; font-size: 0.76rem;
  letter-spacing: 0.18em; text-transform: uppercase;
  cursor: pointer; text-decoration: none;
  display: inline-flex; align-items: center; gap: 0.6rem;
  transition: all 0.3s; font-weight: 500;
}
.btn-orange:hover {
  background: var(--orange-600);
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(212,97,30,0.35);
}

/* ── CONTACT ── */
#contact { background: var(--sand-50); }
.contact-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 5rem; margin-top: 5rem; align-items: start;
}
.contact-info { display: flex; flex-direction: column; gap: 1.5rem; }
.contact-item {
  display: flex; gap: 1.25rem; padding: 1.4rem 1.5rem;
  background: var(--white); border: 1px solid rgba(212,97,30,0.1);
  border-radius: 8px; transition: all 0.3s; cursor: default;
}
.contact-item:hover { border-color: var(--orange-500); transform: translateX(6px); }
.ci-icon {
  width: 42px; height: 42px; border-radius: 8px;
  background: rgba(212,97,30,0.08);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; flex-shrink: 0; transition: all 0.3s;
}
.contact-item:hover .ci-icon { background: var(--orange-500); transform: rotate(8deg); }
.ci-label { font-size: 0.67rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--orange-500); margin-bottom: 0.28rem; }
.ci-value { font-size: 0.86rem; color: var(--text-900); }
.contact-social-row {
  padding: 1.4rem 1.5rem;
  background: var(--white);
  border: 1px solid rgba(212,97,30,0.1); border-radius: 8px;
}
@keyframes socPop {
  0%   { opacity: 0; transform: scale(0.4) translateY(12px); }
  70%  { transform: scale(1.15) translateY(-2px); }
  100% { opacity: 1; transform: scale(1) translateY(0); }
}
@keyframes socPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(212,97,30,0.35); }
  50%       { box-shadow: 0 0 0 7px rgba(212,97,30,0); }
}

@keyframes iconFloat {
  0%, 100% { transform: translateY(0px); }
  50%       { transform: translateY(-7px); }
}

.contact-social-icons { display: flex; gap: 0.6rem; flex-wrap: wrap; }
.csoc-btn {
  width: 42px; height: 42px; border-radius: 50%;
  border: 1px solid rgba(212,97,30,0.18);
  background: var(--sand-50);
  display: flex; align-items: center; justify-content: center;
  color: var(--text-700); text-decoration: none;
  transition: background 0.3s, border-color 0.3s, color 0.3s, box-shadow 0.3s;
  animation: iconFloat 2.8s ease-in-out infinite;
}
.csoc-btn:nth-child(1) { animation-duration: 2.6s; animation-delay: 0.0s; }
.csoc-btn:nth-child(2) { animation-duration: 3.0s; animation-delay: 0.4s; }
.csoc-btn:nth-child(3) { animation-duration: 2.7s; animation-delay: 0.8s; }
.csoc-btn:nth-child(4) { animation-duration: 3.2s; animation-delay: 0.2s; }
.csoc-btn:nth-child(5) { animation-duration: 2.9s; animation-delay: 0.6s; }
.csoc-btn:nth-child(6) { animation-duration: 2.5s; animation-delay: 1.0s; }
.csoc-btn:hover {
  animation: none;
  background: var(--orange-500); border-color: var(--orange-500);
  color: white; transform: translateY(-6px) scale(1.15);
  box-shadow: 0 8px 22px rgba(212,97,30,0.35);
}
.csoc-btn:nth-child(1):hover { background: #25D366; border-color: #25D366; }
.contact-accent {
  padding: 2rem; background: var(--orange-500); border-radius: 10px; margin-top: 0.25rem;
}
.contact-accent-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.35rem; color: var(--sand-50); font-weight: 300; line-height: 1.4; margin-bottom: 0.65rem;
}
.contact-accent-sub { font-size: 0.76rem; color: rgba(253,248,240,0.5); line-height: 1.7; }

.contact-form-wrap {
  background: var(--white); border: 1px solid rgba(212,97,30,0.1);
  border-radius: 10px; padding: 2.5rem;
  box-shadow: 0 8px 40px rgba(212,97,30,0.06);
}
.form-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.7rem; color: var(--text-900); margin-bottom: 1.5rem;
}
.form-group { margin-bottom: 1.15rem; }
.form-label {
  display: block; font-size: 0.69rem; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--text-500); margin-bottom: 0.48rem;
}
.form-input {
  width: 100%; padding: 0.78rem 1rem;
  background: var(--sand-50);
  border: 1px solid rgba(212,97,30,0.12); border-radius: 6px;
  font-family: 'DM Sans', sans-serif; font-size: 0.85rem; color: var(--text-900);
  transition: border-color 0.3s, box-shadow 0.3s; outline: none;
}
.form-input:focus { border-color: var(--orange-500); box-shadow: 0 0 0 3px rgba(212,97,30,0.08); }
textarea.form-input { resize: vertical; min-height: 100px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-submit {
  width: 100%; padding: 0.9rem;
  background: var(--orange-500); color: white; border: none; border-radius: 6px;
  font-family: 'DM Sans', sans-serif; font-size: 0.76rem;
  letter-spacing: 0.18em; text-transform: uppercase;
  cursor: pointer; transition: all 0.3s; margin-top: 0.5rem;
  display: flex; align-items: center; justify-content: center; gap: 0.6rem;
}
.form-submit:hover {
  background: var(--orange-600); transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(212,97,30,0.3);
}
.form-success {
  display: none; text-align: center; padding: 2rem;
  color: var(--orange-500);
  font-family: 'Cormorant Garamond', serif; font-size: 1.5rem;
}

/* ── FOOTER ── */
footer { background: var(--text-900); padding: 4rem 5% 2rem; }
.footer-inner { max-width: 1280px; margin: 0 auto; }
.footer-top {
  display: grid; grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: 4rem; padding-bottom: 3rem;
  border-bottom: 1px solid rgba(253,248,240,0.07); margin-bottom: 2rem;
}
.footer-brand {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.45rem; color: var(--sand-100); margin-bottom: 0.6rem;
}
.footer-brand span { color: var(--orange-400); }
.footer-tagline { font-size: 0.7rem; letter-spacing: 0.12em; color: rgba(253,248,240,0.3); margin-bottom: 1.25rem; }
.footer-about { font-size: 0.78rem; line-height: 1.72; color: rgba(253,248,240,0.28); max-width: 240px; }
.footer-col-title {
  font-size: 0.65rem; letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--orange-400); margin-bottom: 1.2rem; font-weight: 400;
}
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 0.65rem; }
.footer-links a { font-size: 0.8rem; color: rgba(253,248,240,0.4); text-decoration: none; transition: color 0.3s; }
.footer-links a:hover { color: var(--sand-100); }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  font-size: 0.74rem; color: rgba(253,248,240,0.25);
}
.footer-social { display: flex; gap: 0.85rem; }
.social-link {
  width: 34px; height: 34px; border-radius: 50%;
  border: 1px solid rgba(253,248,240,0.08);
  display: flex; align-items: center; justify-content: center;
  color: rgba(253,248,240,0.35); text-decoration: none; font-size: 0.72rem;
  transition: background 0.3s, border-color 0.3s, color 0.3s, box-shadow 0.3s;
  animation: iconFloat 2.8s ease-in-out infinite;
}
.footer-social .social-link:nth-child(1) { animation-duration: 2.6s; animation-delay: 0.0s; }
.footer-social .social-link:nth-child(2) { animation-duration: 3.0s; animation-delay: 0.35s; }
.footer-social .social-link:nth-child(3) { animation-duration: 2.7s; animation-delay: 0.7s; }
.footer-social .social-link:nth-child(4) { animation-duration: 3.1s; animation-delay: 0.15s; }
.footer-social .social-link:nth-child(5) { animation-duration: 2.9s; animation-delay: 0.5s; }
.footer-social .social-link:nth-child(6) { animation-duration: 2.5s; animation-delay: 0.9s; }
.social-link:hover {
  animation: none;
  border-color: var(--orange-400); color: white;
  background: var(--orange-500);
  transform: translateY(-5px) scale(1.18);
  box-shadow: 0 6px 16px rgba(212,97,30,0.4);
}
.footer-social .social-link:nth-child(1):hover { background: #25D366; border-color: #25D366; }
.footer-social .social-link:nth-child(4):hover { background: linear-gradient(45deg,#f09433,#e6683c,#dc2743,#cc2366,#bc1888); border-color: #dc2743; }

/* ── SCROLL TOP ── */
#scrollTop {
  position: fixed; bottom: 2rem; right: 2rem;
  width: 42px; height: 42px; background: var(--orange-500);
  color: white; border: none; border-radius: 50%;
  cursor: pointer; font-size: 1rem;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transform: translateY(20px); transition: all 0.4s;
  z-index: 500; box-shadow: 0 8px 24px rgba(212,97,30,0.35);
}
#scrollTop.show { opacity: 1; transform: translateY(0); }
#scrollTop:hover { background: var(--orange-600); transform: translateY(-4px); }

/* ── RESPONSIVE ── */
@media(max-width:1024px) {
  .hero-content, .about-grid, .solutions-header,
  .contact-grid, .footer-top { grid-template-columns: 1fr; gap: 3rem; }
  .solutions-grid { grid-template-columns: repeat(2,1fr); }
  .process-steps { grid-template-columns: repeat(3,1fr); gap: 2rem; }
  .process-steps::before { display: none; }
  .verticals-layout { grid-template-columns: 1fr; }
  .about-highlights,
  .verticals-compact-head { grid-template-columns: 1fr; }
  .verticals-chooser-head,
  .verticals-fit-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .vc-card,
  .vc-card-featured,
  .vc-card-wide { grid-column: span 6; }
  .cta-inner { grid-template-columns: 1fr; text-align: center; }
  .hero-panel { display: block; }
  .showcase-wrap { height: 320px; }
}
@media(max-width:768px) {
  section { padding: 5rem 5%; }
  nav { padding: 1rem 5%; }
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .solutions-grid { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr 1fr; }
  .testimonial-card { min-width: 290px; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
  .form-row { grid-template-columns: 1fr; }
  .hero-stats { flex-wrap: wrap; gap: 1.5rem; }
  .verticals-compact { padding: 1.4rem; }
  .verticals-chooser {
    padding: 1.15rem;
  }
  .verticals-chooser-head {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }
  .verticals-fit-grid { grid-template-columns: 1fr; }
  .verticals-compact-list { grid-template-columns: 1fr; }
  .vc-card,
  .vc-card-featured,
  .vc-card-wide { grid-column: span 1; min-height: 220px; }
}
@media(max-width:480px) {
  .testimonial-card { min-width: 260px; padding: 1.75rem; }
  .footer-top { grid-template-columns: 1fr; }
  .about-img-wrap { padding: 0.85rem; }
  .about-intro-card,
  .verticals-compact { padding: 1.15rem; }
  .about-highlights { grid-template-columns: 1fr; }
  .principle-card { padding: 1.2rem 1rem; }
  .vci-title { font-size: 1.2rem; }
  .vc-card { padding: 1.05rem; min-height: 210px; }
  .vc-card-top,
  .vc-card-foot { align-items: flex-start; }
  .vci-meta { padding: 0.38rem 0.65rem; }
  .fit-card { padding: 1.15rem; }
  .fit-card-title { font-size: 1.3rem; }
  .verticals-chooser,
  .fit-card { padding: 1rem; }
}

[data-aos] { backface-visibility: hidden; }
