/* ============================================================
   AKIBWORKS — OLIVE.IN INSPIRED EDITORIAL DESIGN SYSTEM
   Light background | Bold typography | Minimal & confident
   ============================================================ */

/* ==== RESET & BASE ==== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --white:    #FEFEFE;
  --off:      #F4F4F0;
  --gray-100: #E8E8E2;
  --gray-300: #C0C0B8;
  --gray-500: #8A8A82;
  --gray-700: #4A4A44;
  --black:    #0D0D0B;
  --black-2:  #1A1A18;

  --olive:    #2D5016;
  --olive-2:  #4A7C24;
  --gold:     #C8A96E;
  --red-acc:  #D94F3D;

  --font:  'Inter', system-ui, -apple-system, sans-serif;
  --serif: 'Playfair Display', Georgia, serif;

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --t:    0.45s var(--ease);

  scroll-behavior: smooth;
}

html { font-size: 16px; }
body {
  font-family: var(--font);
  background: var(--white);
  color: var(--black);
  overflow-x: hidden;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
a  { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; display: block; }
button { cursor: pointer; font-family: var(--font); border: none; background: none; }
input, textarea, select { font-family: var(--font); }

/* ==== CONTAINERS ==== */
.wide-wrap {
  width: 100%;
  max-width: 1500px;
  margin: 0 auto;
  padding: 0 clamp(1.5rem, 5vw, 5rem);
}

/* ==== LABEL TAG ==== */
.label-tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--olive);
  margin-bottom: 1.5rem;
}
.label-light { color: rgba(255,255,255,0.6); }

/* ==== SECTION HEADINGS ==== */
.sec-h2 {
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: var(--black);
}

/* ==== BUTTONS ==== */
.btn-dark {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  background: var(--black);
  color: #fff;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  border-radius: 4px;
  transition: all 0.3s ease;
}
.btn-dark:hover { background: var(--olive); transform: translateY(-2px); }

.btn-line {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 14px 0;
  color: var(--black);
  font-size: 0.85rem;
  font-weight: 600;
  border-bottom: 1.5px solid var(--black);
  transition: all 0.3s ease;
}
.btn-line:hover { color: var(--olive); border-color: var(--olive); letter-spacing: 0.04em; }

.btn-white {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  background: #fff;
  color: var(--black);
  font-size: 0.85rem;
  font-weight: 700;
  border-radius: 4px;
  transition: all 0.3s ease;
}
.btn-white:hover { background: var(--off); transform: translateY(-2px); }

.btn-outline-white {
  display: inline-flex;
  align-items: center;
  padding: 14px 28px;
  border: 1.5px solid rgba(255,255,255,0.4);
  color: #fff;
  font-size: 0.85rem;
  font-weight: 600;
  border-radius: 4px;
  transition: all 0.3s ease;
}
.btn-outline-white:hover { border-color: #fff; background: rgba(255,255,255,0.08); transform: translateY(-2px); }

.btn-full { width: 100%; justify-content: center; }

/* ==== SCROLL REVEAL ==== */
[data-reveal] {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
[data-reveal].revealed {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
   NAVBAR
   ============================================================ */
.navbar {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 500;
  padding: 0;
  background: transparent;
  transition: background 0.4s ease, border-bottom 0.4s ease;
}
.navbar.scrolled {
  background: rgba(254,254,254,0.96);
  border-bottom: 1px solid var(--gray-100);
  backdrop-filter: blur(16px);
}
.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1500px;
  margin: 0 auto;
  padding: 0 clamp(1.5rem, 5vw, 5rem);
  height: 72px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--black);
}
.logo-img {
  height: 32px;
  width: auto;
  display: block;
  object-fit: contain;
  transition: transform 0.3s ease;
}
.nav-logo:hover .logo-img {
  transform: scale(1.1) rotate(-5deg);
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.nav-link {
  padding: 8px 14px;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--gray-700);
  transition: color 0.25s ease;
  position: relative;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 4px; left: 14px;
  width: 0; height: 1.5px;
  background: var(--olive);
  transition: width 0.3s var(--ease);
}
.nav-link:hover { color: var(--black); }
.nav-link:hover::after { width: calc(100% - 28px); }
.nav-contact-link {
  padding: 9px 20px;
  background: var(--black);
  color: #fff !important;
  border-radius: 4px;
  font-weight: 700;
  margin-left: 0.5rem;
  transition: background 0.3s ease, transform 0.3s ease;
}
.nav-contact-link::after { display: none; }
.nav-contact-link:hover { background: var(--olive); transform: translateY(-1px); }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 7px;
  padding: 8px;
}
.hamburger span {
  display: block;
  width: 22px; height: 1.5px;
  background: var(--black);
  border-radius: 2px;
  transition: all 0.3s ease;
  transform-origin: center;
}
.hamburger.active span:nth-child(1) { transform: translateY(8.5px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }

/* Mobile Menu */
.mobile-menu {
  position: fixed; inset: 0;
  background: var(--white);
  z-index: 1000;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: clamp(2rem, 8vw, 6rem);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}
.mobile-menu.open { opacity: 1; pointer-events: all; }
.mob-close {
  position: absolute; top: 1.5rem; right: 1.5rem;
  font-size: 1.2rem;
  color: var(--gray-700);
  padding: 8px;
  transition: color 0.2s;
}
.mob-close:hover { color: var(--black); }
.mob-nav { display: flex; flex-direction: column; gap: 0.25rem; }
.mob-link {
  display: inline-block;
  font-size: clamp(2.2rem, 6vw, 4rem);
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1.15;
  color: var(--gray-300);
  transition: color 0.22s ease;
}
.mob-link:hover { color: var(--black); }
.mob-cta { color: var(--olive) !important; margin-top: 0.75rem; font-size: clamp(1rem, 2.5vw, 1.6rem); font-weight: 700; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  min-height: 100svh;
  position: relative;
  overflow: hidden;
  background: var(--white);
  display: flex;
  align-items: stretch;
}
.hero-wrap {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 4rem;
  width: 100%;
  max-width: 1500px;
  margin: 0 auto;
  padding: 7rem clamp(1.5rem, 5vw, 5rem) clamp(4rem, 8vw, 7rem);
  align-items: flex-end;
}
.hero-left { display: flex; flex-direction: column; justify-content: flex-end; }

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--gray-500);
  margin-bottom: 2.5rem;
  opacity: 0;
}
.hero-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: #22C55E;
  box-shadow: 0 0 10px rgba(34,197,94,0.7);
  animation: dot-pulse 2s ease infinite;
}
@keyframes dot-pulse {
  0%,100% { box-shadow: 0 0 6px rgba(34,197,94,0.5); }
  50%      { box-shadow: 0 0 14px rgba(34,197,94,0.9); }
}

.hero-h1 {
  font-size: clamp(2.5rem, 8vw, 8.5rem);
  font-weight: 900;
  line-height: 0.95;
  letter-spacing: -0.045em;
  color: var(--black);
  margin-bottom: clamp(1.5rem, 4vw, 4.5rem);
}
.word-line { display: block; opacity: 0; transform: translateY(50px); }
.italic-line {
  font-style: italic;
  font-family: var(--serif);
  font-weight: 700;
  color: var(--gray-700);
  font-size: 0.92em;
}
.accent-line { color: var(--olive); }

.hero-bottom {
  display: flex;
  align-items: flex-end;
  gap: clamp(2rem, 5vw, 6rem);
  flex-wrap: wrap;
  opacity: 0;
}
.hero-desc {
  font-size: clamp(0.95rem, 1.4vw, 1.15rem);
  color: var(--gray-500);
  line-height: 1.75;
  max-width: 340px;
}
.hero-actions {
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}

/* Hero Right Panel */
.hero-right {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-end;
  padding-bottom: clamp(4rem, 8vw, 7rem);
  gap: 1.5rem;
  opacity: 0;
  position: relative;
}
.hero-panel {
  width: 100%;
  border: 1px solid var(--gray-100);
  border-radius: 12px;
  background: var(--off);
  overflow: hidden;
}
.hpanel-stat {
  padding: 1.75rem 1.75rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.hpanel-num {
  font-size: 3.5rem;
  font-weight: 900;
  letter-spacing: -0.06em;
  line-height: 1;
  color: var(--black);
}
.hpanel-num em { font-style: normal; color: var(--olive); }
.hpanel-label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gray-500);
}
.hpanel-divider {
  height: 1px;
  background: var(--gray-100);
  margin: 0;
}
.hpanel-project {
  display: flex;
  gap: 1rem;
  padding: 1.25rem 1.75rem;
  align-items: center;
}
.hpanel-project img {
  width: 56px; height: 44px;
  object-fit: cover;
  border-radius: 6px;
  background: var(--gray-100);
  flex-shrink: 0;
}
.hpanel-proj-info { display: flex; flex-direction: column; gap: 2px; }
.hpanel-tag {
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gray-300);
}
.hpanel-proj-name {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--black);
}
.hpanel-kpi.green {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--olive-2);
}
.hpanel-trust {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 1.25rem 1.75rem;
}
.hpanel-avatars { display: flex; }
.hpav {
  display: block;
  width: 28px; height: 28px;
  border-radius: 50%;
  border: 2px solid var(--off);
  margin-left: -8px;
}
.hpav:first-child { margin-left: 0; }
.hpav-1 { background: linear-gradient(135deg, var(--olive), var(--olive-2)); }
.hpav-2 { background: linear-gradient(135deg, var(--gold), #A07840); }
.hpav-3 { background: linear-gradient(135deg, #3B7DD8, #5B9AEA); }
.hpanel-trust-text {
  font-size: 0.72rem;
  color: var(--gray-500);
  line-height: 1.4;
  font-weight: 500;
}

/* Hero year watermark */
.hero-year {
  font-size: clamp(4rem, 6vw, 6rem);
  font-weight: 900;
  letter-spacing: -0.06em;
  color: var(--gray-100);
  line-height: 1;
  user-select: none;
  align-self: flex-end;
}

/* Scroll line */
.hero-scroll-line {
  position: absolute;
  bottom: 0; left: clamp(1.5rem, 5vw, 5rem);
  width: 1px; height: 80px;
  background: linear-gradient(to bottom, transparent, var(--gray-300));
  animation: scroll-grow 2.5s ease-in-out infinite;
}
@keyframes scroll-grow {
  0% { transform: scaleY(0); transform-origin: top; opacity: 0; }
  50% { transform: scaleY(1); transform-origin: top; opacity: 1; }
  100% { transform: scaleY(0); transform-origin: bottom; opacity: 0; }
}

/* ============================================================
   MARQUEE
   ============================================================ */
.marquee-band {
  border-top: 1px solid var(--gray-100);
  border-bottom: 1px solid var(--gray-100);
  padding: 1.1rem 0;
  overflow: hidden;
  background: var(--off);
}
.marquee-inner {
  display: flex;
  white-space: nowrap;
  width: max-content;
  animation: marquee-scroll 30s linear infinite;
}
.marquee-inner span {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gray-700);
  padding: 0 1.5rem;
}
.dot-sep { color: var(--olive); padding: 0 0.25rem !important; }
@keyframes marquee-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ============================================================
   INTRO / ABOUT
   ============================================================ */
.intro-section {
  padding: clamp(5rem, 10vw, 10rem) 0;
  background: var(--white);
}
.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(4rem, 8vw, 10rem);
  align-items: start;
}
.intro-h2 {
  font-size: clamp(1.8rem, 3.5vw, 3rem);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.03em;
}
.intro-h2 em {
  font-style: italic;
  font-family: var(--serif);
  color: var(--olive);
  font-weight: 700;
}
.intro-body {
  font-size: 1.05rem;
  color: var(--gray-700);
  line-height: 1.8;
  margin-bottom: 2.5rem;
}
.intro-stats {
  display: flex;
  gap: 2.5rem;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
}
.istat { display: flex; flex-direction: column; gap: 4px; }
.istat-num {
  font-size: 2.5rem;
  font-weight: 900;
  letter-spacing: -0.04em;
  color: var(--black);
  line-height: 1;
}
.istat-label { font-size: 0.72rem; color: var(--gray-500); font-weight: 500; letter-spacing: 0.06em; text-transform: uppercase; }

/* ============================================================
   SERVICES
   ============================================================ */
.services-section {
  padding: clamp(4rem, 8vw, 8rem) 0;
  background: var(--off);
}
.services-header {
  margin-bottom: 4rem;
}
.services-list {
  border-top: 1px solid var(--gray-100);
}
.svc-item {
  display: grid;
  grid-template-columns: 80px 1fr 48px;
  align-items: center;
  gap: 2rem;
  padding: 2rem 0;
  border-bottom: 1px solid var(--gray-100);
  cursor: default;
  transition: background 0.3s ease;
}
.svc-item:hover { background: rgba(45,80,22,0.04); }
.svc-num {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--gray-300);
}

.svc-title {
  font-size: clamp(1.1rem, 2vw, 1.5rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 0.4rem;
}
.svc-desc {
  font-size: 0.88rem;
  color: var(--gray-500);
  line-height: 1.6;
}
.svc-arrow {
  font-size: 1.2rem;
  color: var(--gray-300);
  transition: transform 0.3s ease, color 0.3s ease;
  justify-self: end;
}
.svc-item:hover .svc-arrow { transform: translateX(6px); color: var(--olive); }

/* ============================================================
   PORTFOLIO
   ============================================================ */
/* ============================================================
   PORTFOLIO (Product-Style Cards)
   ============================================================ */
.portfolio-section.modular-editorial {
  background: var(--white);
  padding: clamp(6rem, 12vw, 15rem) 0;
}

.portfolio-header {
  margin-bottom: 5rem;
}

.modular-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.5rem, 3vw, 2.5rem);
}

.modular-item {
  height: 100%;
}

.m-card {
  background: var(--white);
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid var(--gray-100);
  box-shadow: 0 4px 20px rgba(0,0,0,0.03);
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.5s var(--ease);
  display: flex;
  flex-direction: column;
  height: 100%;
  text-decoration: none;
  color: inherit;
}

.m-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.1);
}

.m-img-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 1.4 / 1;
  overflow: hidden;
  background: var(--off);
}

.m-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.m-card:hover .m-img {
  transform: scale(1.08);
}

/* Category Tag (Top Left) */
.m-cat-tag {
  position: absolute;
  top: 1.25rem;
  left: 1.25rem;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(8px);
  padding: 6px 14px;
  border-radius: 100px;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--black);
  z-index: 2;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

/* KPI Pill (Bottom Right of Image) */
.m-kpi-pill {
  position: absolute;
  bottom: 1.25rem;
  right: 1.25rem;
  padding: 7px 16px;
  border-radius: 100px;
  font-size: 0.78rem;
  font-weight: 800;
  color: #fff;
  z-index: 2;
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}
.m-kpi-red    { background: var(--red-acc); }
.m-kpi-teal   { background: #14B8A6; }
.m-kpi-orange { background: #F59E0B; }

.m-body {
  padding: 2.25rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.m-title {
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 0.85rem;
  color: var(--black);
}

.m-desc {
  font-size: 0.92rem;
  color: var(--gray-700);
  line-height: 1.6;
  margin-bottom: 1.75rem;
  flex-grow: 1;
  opacity: 0.85;
}

/* Bottom Tags */
.m-tags {
  display: flex;
  gap: 8px;
  margin-bottom: 1.75rem;
  flex-wrap: wrap;
}

.m-tag {
  font-size: 0.68rem;
  font-weight: 700;
  padding: 5px 12px;
  background: var(--off);
  color: var(--gray-700);
  border-radius: 100px;
  border: 1px solid var(--gray-100);
}

/* CTA Pill Button */
.m-cta-pill {
  width: 100%;
  padding: 15px;
  border-radius: 100px;
  background: var(--black);
  color: #fff;
  font-size: 0.88rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: all 0.3s ease;
}

.m-card:hover .m-cta-pill {
  background: var(--olive);
  transform: scale(1.02);
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .modular-grid { grid-template-columns: repeat(2, 1fr); gap: 2rem; }
}

@media (max-width: 768px) {
  .modular-grid { display: flex; flex-direction: column; gap: 3rem; }
  .modular-item { margin-bottom: 0; }
  .m-body { padding: 1.75rem; }
}

/* ============================================================
   PROCESS
   ============================================================ */
.process-section {
  padding: clamp(4rem, 8vw, 8rem) 0;
  background: var(--off);
}
.process-header { margin-bottom: 4rem; }
.process-cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}
.proc-step {
  padding: 2.5rem 2rem;
  border-left: 1px solid var(--gray-100);
  transition: background 0.3s ease;
}
.proc-step:first-child { border-left: none; }
.proc-step:hover { background: rgba(45,80,22,0.04); }
.proc-num {
  display: block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--olive);
  margin-bottom: 1.25rem;
}
.proc-title {
  font-size: 1.2rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 0.75rem;
}
.proc-body {
  font-size: 0.88rem;
  color: var(--gray-500);
  line-height: 1.7;
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials-section {
  padding: clamp(4rem, 8vw, 8rem) 0;
  background: var(--white);
}
.testi-header { margin-bottom: 4rem; }
.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.testi-card {
  padding: 2.5rem;
  background: var(--off);
  border-radius: 4px;
  border-left: 3px solid var(--olive);
  transition: transform 0.3s ease, border-left-color 0.3s ease;
}
.testi-card:hover { transform: translateY(-6px); border-left-color: var(--gold); }
.testi-text {
  font-size: 0.95rem;
  color: var(--gray-700);
  line-height: 1.8;
  margin-bottom: 2rem;
  font-style: italic;
  position: relative;
}
.testi-text::before {
  content: '\201C';
  font-family: var(--serif);
  font-size: 4rem;
  color: var(--gray-100);
  line-height: 0;
  position: absolute;
  top: 1rem; left: -1rem;
  pointer-events: none;
}
.testi-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.testi-avatar {
  width: 42px; height: 42px;
  border-radius: 50%;
  flex-shrink: 0;
}
.av-a { background: linear-gradient(135deg, #2D5016, #4A7C24); }
.av-b { background: linear-gradient(135deg, #C8A96E, #A07840); }
.av-c { background: linear-gradient(135deg, #4A7C24, #C8A96E); }
.testi-author strong {
  display: block;
  font-size: 0.88rem;
  font-weight: 700;
}
.testi-author span {
  font-size: 0.75rem;
  color: var(--gray-500);
  display: block;
}

/* ============================================================
   CTA BANNER
   ============================================================ */
.cta-banner {
  background: var(--black-2);
  padding: clamp(5rem, 10vw, 10rem) 0;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: 'LEAD';
  position: absolute;
  font-size: clamp(8rem, 18vw, 18rem);
  font-weight: 900;
  letter-spacing: -0.06em;
  color: rgba(255,255,255,0.025);
  right: -2rem; bottom: -2rem;
  line-height: 1;
  pointer-events: none;
  user-select: none;
}
.cta-inner { max-width: 800px; position: relative; }
.cta-h2 {
  font-size: clamp(2.8rem, 6vw, 6rem);
  font-weight: 900;
  line-height: 1.0;
  letter-spacing: -0.04em;
  color: #fff;
  margin-bottom: 1.5rem;
}
.cta-sub {
  font-size: 1rem;
  color: rgba(255,255,255,0.55);
  margin-bottom: 2.5rem;
  line-height: 1.7;
}
.cta-acts {
  display: flex;
  gap: 1.25rem;
  flex-wrap: wrap;
}

/* ============================================================
   CONTACT
   ============================================================ */
.contact-section {
  padding: clamp(5rem, 10vw, 10rem) 0;
  background: var(--off);
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(4rem, 8vw, 10rem);
  align-items: start;
}
.contact-body {
  font-size: 1rem;
  color: var(--gray-500);
  line-height: 1.75;
  margin-bottom: 2rem;
}
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.info-line {
  font-size: 0.9rem;
  color: var(--gray-700);
  font-weight: 500;
}
a.info-line:hover { color: var(--olive); }

/* Form */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}
.form-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.form-field label {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gray-700);
}
.form-field input,
.form-field select,
.form-field textarea {
  padding: 12px 16px;
  border: 1.5px solid var(--gray-100);
  border-radius: 4px;
  background: var(--white);
  color: var(--black);
  font-size: 0.9rem;
  transition: border-color 0.25s ease;
  outline: none;
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus { border-color: var(--olive); }
.form-field textarea { resize: vertical; min-height: 110px; }
.form-field select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%238A8A82' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 18px;
}
.form-success {
  display: none;
  padding: 14px 16px;
  background: rgba(45,80,22,0.1);
  border: 1px solid rgba(45,80,22,0.3);
  border-radius: 4px;
  color: var(--olive);
  font-size: 0.88rem;
  font-weight: 500;
}
.form-success.visible { display: block; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--black);
  padding: clamp(3.5rem, 7vw, 7rem) 0 2rem;
  color: rgba(255,255,255,0.6);
}
.footer-logo { color: #fff; }
.footer-top {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 4rem;
  margin-bottom: 4rem;
  padding-bottom: 4rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-desc {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.4);
  line-height: 1.75;
  margin-top: 1.25rem;
  max-width: 280px;
}
.footer-links-cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.footer-col h4 {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(255,255,255,0.5);
  margin-bottom: 1.25rem;
}
.footer-col ul { display: flex; flex-direction: column; gap: 0.75rem; }
.footer-col a, .footer-col span {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.45);
  transition: color 0.25s ease;
}
.footer-col a:hover { color: #fff; }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-bottom span { font-size: 0.78rem; color: rgba(255,255,255,0.3); }
.footer-socials { display: flex; gap: 1.5rem; }
.footer-socials a {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.35);
  transition: color 0.25s ease;
  font-weight: 600;
}
.footer-socials a:hover { color: #fff; }



/* ============================================================
   GLOBAL POLISH ENHANCEMENTS
   ============================================================ */

/* Custom scrollbar */
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--off); }
::-webkit-scrollbar-thumb { background: var(--gray-300); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: var(--olive); }

/* Text selection */
::selection { background: var(--olive); color: #fff; }
::-moz-selection { background: var(--olive); color: #fff; }

/* ============================================================
   HERO DOT GRID + VERTICAL SIDE TEXT
   ============================================================ */
.hero-dots {
  position: absolute; inset: 0;
  background-image: radial-gradient(circle, var(--gray-100) 1px, transparent 1px);
  background-size: 32px 32px;
  background-position: 0 0;
  pointer-events: none;
  mask-image: radial-gradient(ellipse 80% 80% at 30% 50%, black 40%, transparent 100%);
}
.hero-side-text {
  position: absolute;
  right: 0; top: 50%;
  transform: translateY(-50%) rotate(90deg);
  transform-origin: center center;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gray-300);
  white-space: nowrap;
  pointer-events: none;
  user-select: none;
}

/* ============================================================
   CLIENT LOGOS STRIP
   ============================================================ */
.clients-section {
  border-top: 1px solid var(--gray-100);
  padding: 2.5rem 0;
  background: var(--white);
}
.clients-inner {
  display: flex;
  align-items: center;
  gap: 3rem;
  flex-wrap: wrap;
}
.clients-label {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gray-300);
  white-space: nowrap;
  flex-shrink: 0;
}
.clients-logos {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0 3rem;
  align-items: center;
  flex: 1;
}
.client-logo {
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--gray-300);
  text-transform: uppercase;
  transition: color 0.25s ease;
  cursor: default;
  text-align: center;
  padding: 0.25rem 0;
  position: relative;
}
.client-logo::after {
  content: '';
  position: absolute;
  bottom: 0; left: 50%;
  transform: translateX(-50%);
  width: 0; height: 1.5px;
  background: var(--olive);
  transition: width 0.3s var(--ease);
}
.client-logo:hover { color: var(--black); }
.client-logo:hover::after { width: 100%; }

/* ============================================================
   STATS BORDER ACCENTS
   ============================================================ */
.istat {
  padding-left: 1.25rem;
  border-left: 2px solid var(--gray-100);
  transition: border-color 0.3s ease;
}
.istat:first-child { border-left: none; padding-left: 0; }
.istat:hover { border-left-color: var(--olive); }
.istat-num { transition: color 0.3s ease; }
.istat:hover .istat-num { color: var(--olive); }

/* ============================================================
   PROCESS — NUMBERED STEP CONNECTOR
   ============================================================ */
.process-cols {
  position: relative;
}
.process-cols::before {
  content: '';
  position: absolute;
  top: 2.5rem; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gray-100) 10%, var(--gray-100) 90%, transparent);
  pointer-events: none;
  z-index: 0;
}
.proc-step { position: relative; z-index: 1; }
.proc-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--white);
  border: 1px solid var(--gray-100);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--olive);
  margin-bottom: 1.5rem;
  transition: background 0.3s ease, border-color 0.3s ease;
}
.proc-step:hover .proc-num {
  background: var(--olive);
  border-color: var(--olive);
  color: #fff;
}

/* ============================================================
   FOOTER STATEMENT
   ============================================================ */
.footer-statement {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 3rem;
  padding: clamp(3rem, 6vw, 6rem) 0;
}
.footer-stmt-h {
  font-size: clamp(2.5rem, 5vw, 5rem);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.04em;
  color: #fff;
}
.footer-stmt-h em {
  font-style: italic;
  font-family: var(--serif);
  font-weight: 700;
  color: var(--olive-2);
}
.footer-stmt-btn {
  flex-shrink: 0;
  align-self: flex-end;
}
.footer-divider {
  height: 1px;
  background: rgba(255,255,255,0.07);
  margin-bottom: clamp(3rem, 6vw, 6rem);
}

/* ============================================================
   SCROLL PROGRESS BAR
   ============================================================ */
.scroll-progress {
  position: fixed;
  top: 0; left: 0;
  height: 2px;
  width: 0%;
  background: var(--olive);
  z-index: 999;
  transition: width 0.1s linear;
}

/* ============================================================
   SECTION LABEL ACCENT LINE
   ============================================================ */
.label-tag {
  position: relative;
  padding-left: 1rem;
}
.label-tag::before {
  content: '';
  position: absolute;
  left: 0; top: 50%;
  transform: translateY(-50%);
  width: 4px; height: 4px;
  border-radius: 50%;
  background: var(--olive);
}

/* ============================================================
   BUTTON SHIMMER EFFECT
   ============================================================ */
.btn-dark {
  overflow: hidden;
  position: relative;
}
.btn-dark::after {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.12), transparent);
  transform: skewX(-20deg);
  transition: left 0.5s ease;
}
.btn-dark:hover::after { left: 160%; }

/* ============================================================
   TESTIMONIALS — RATING STARS
   ============================================================ */
.testi-stars {
  color: var(--gold);
  font-size: 0.78rem;
  letter-spacing: 2px;
  margin-bottom: 1rem;
  display: block;
}

/* ============================================================
   RESPONSIVE (Moved to end for correct precedence)
   ============================================================ */
@media (max-width: 1023px) {
  .hero-wrap { grid-template-columns: 1fr; }
  .hero-right { display: none; }
  .intro-grid { grid-template-columns: 1fr; gap: 3rem; }
  .process-cols { grid-template-columns: repeat(2, 1fr); }
  .proc-step:nth-child(odd) { border-left: none; }
  .testi-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  
  .hero { align-items: flex-start; padding-top: 4rem; }
  .hero-wrap { padding-top: 4rem; padding-bottom: 4rem; }
  .hero-side-text, .hero-year, .hero-dots { display: none !important; }

  .port-grid { grid-template-columns: 1fr; }
  .process-cols { grid-template-columns: 1fr; }
  .proc-step { border-left: none; border-top: 1px solid var(--gray-100); }
  .proc-step:first-child { border-top: none; }
  .testi-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; gap: 2.5rem; }
  .footer-links-cols { grid-template-columns: repeat(2, 1fr); }
  .form-row { grid-template-columns: 1fr; }
  .svc-item { grid-template-columns: 48px 1fr 32px; gap: 1rem; }
  .hero-bottom { flex-direction: column; align-items: flex-start; gap: 1.5rem; }
  .cta-acts { flex-direction: column; }
  .footer-bottom { flex-direction: column; gap: 1rem; text-align: center; }
  .footer-statement { flex-direction: column; gap: 2rem; align-items: flex-start; padding: 4rem 0; }
  .clients-logos { grid-template-columns: repeat(2, 1fr) !important; gap: 1.5rem 0; }
  .clients-inner { gap: 1.5rem; }
  
  .hpanel-stat { padding: 1.25rem; }
  .hpanel-num { font-size: 2.5rem; }
  .hero-h1 { margin-bottom: 2rem; }
}

