/* ============================================
   MEEK MEDIA — Premium Digital Agency
   styles.css — Complete Premium Stylesheet
   ============================================ */

/* ---------- CUSTOM PROPERTIES ---------- */
:root {
  --blue: #29A9E0;
  --blue-dark: #1a87b8;
  --blue-light: #e8f6fd;
  --yellow: #F7B83B;
  --yellow-dark: #d99b1e;
  --yellow-light: #fef8e8;
  --white: #FFFFFF;
  --black: #111111;
  --gray-50: #F5F7FA;
  --gray-100: #EEF1F6;
  --gray-200: #DDE3EE;
  --gray-400: #9BA8BD;
  --gray-600: #5A6780;
  --gradient-blue-yellow: linear-gradient(135deg, var(--blue) 0%, var(--yellow) 100%);
  --gradient-hero: linear-gradient(145deg, #f0f8fe 0%, #fdf9f0 50%, #f5f7fa 100%);
  --shadow-sm: 0 2px 12px rgba(41, 169, 224, 0.08);
  --shadow-md: 0 8px 32px rgba(41, 169, 224, 0.12);
  --shadow-lg: 0 20px 60px rgba(41, 169, 224, 0.15);
  --shadow-yellow: 0 8px 32px rgba(247, 184, 59, 0.15);
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --font-main: 'Outfit', 'Inter', -apple-system, sans-serif;
  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-med: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.7s cubic-bezier(0.4, 0, 0.2, 1);
  --header-h: 80px;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

body {
  font-family: var(--font-main);
  color: var(--black);
  background: var(--white);
  overflow-x: hidden;
  cursor: none;
}

img { display: block; max-width: 100%; height: auto; }
a { text-decoration: none; color: inherit; }
button { border: none; background: none; font-family: inherit; cursor: none; }
ul, ol { list-style: none; }
input, select, textarea { font-family: inherit; }

.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 64px);
}

/* ---------- CURSOR ---------- */
.cursor {
  position: fixed;
  width: 8px; height: 8px;
  background: var(--blue);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: width 0.2s, height 0.2s, background 0.2s;
  mix-blend-mode: multiply;
}
.cursor-follower {
  position: fixed;
  width: 36px; height: 36px;
  border: 2px solid rgba(41, 169, 224, 0.35);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition: transform 0.15s ease, width 0.3s, height 0.3s, border-color 0.3s;
}
body.cursor-hover .cursor { width: 14px; height: 14px; background: var(--yellow); }
body.cursor-hover .cursor-follower { width: 52px; height: 52px; border-color: rgba(247, 184, 59, 0.4); }

/* ---------- TYPOGRAPHY ---------- */
.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 16px;
  position: relative;
  padding-left: 28px;
}
.section-label::before {
  content: '';
  position: absolute;
  left: 0; top: 50%;
  transform: translateY(-50%);
  width: 18px; height: 2px;
  background: var(--gradient-blue-yellow);
  border-radius: 2px;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 800;
  line-height: 1.15;
  color: var(--black);
  letter-spacing: -0.02em;
  margin-bottom: 48px;
}
.section-title em { font-style: normal; color: var(--blue); }

.accent-gradient {
  background: var(--gradient-blue-yellow);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-header { text-align: center; }
.section-header .section-label { padding-left: 0; }
.section-header .section-label::before { display: none; }

/* ---------- BUTTONS ---------- */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  background: var(--blue);
  color: var(--white);
  border-radius: 50px;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  transition: background var(--transition-fast), transform var(--transition-fast), box-shadow var(--transition-fast);
  box-shadow: 0 4px 20px rgba(41, 169, 224, 0.3);
  position: relative;
  overflow: hidden;
  cursor: none;
}
.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-dark) 100%);
  opacity: 0;
  transition: opacity var(--transition-fast);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(41, 169, 224, 0.4); }
.btn-primary:hover::before { opacity: 1; }
.btn-primary span, .btn-primary svg { position: relative; z-index: 1; }

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  background: transparent;
  color: var(--black);
  border: 2px solid var(--gray-200);
  border-radius: 50px;
  font-size: 0.95rem;
  font-weight: 600;
  transition: border-color var(--transition-fast), background var(--transition-fast), color var(--transition-fast);
  cursor: none;
}
.btn-secondary:hover { border-color: var(--blue); color: var(--blue); background: var(--blue-light); }

/* ---------- HEADER ---------- */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--header-h);
  transition: height var(--transition-med), background var(--transition-med), box-shadow var(--transition-med), backdrop-filter var(--transition-med);
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.header.scrolled {
  height: 64px;
  background: rgba(255,255,255,0.95);
  box-shadow: 0 2px 20px rgba(41, 169, 224, 0.1);
}
.header-inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 64px);
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.header-logo img { height: 42px; width: auto; transition: height var(--transition-med); }
.header.scrolled .header-logo img { height: 34px; }

.header-nav { display: flex; align-items: center; gap: 8px; }
.nav-link {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--gray-600);
  padding: 8px 14px;
  border-radius: 8px;
  transition: color var(--transition-fast), background var(--transition-fast);
  cursor: none;
}
.nav-link:hover { color: var(--blue); background: var(--blue-light); }

.header-cta { font-size: 0.88rem; padding: 11px 22px; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  cursor: none;
}
.hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--black);
  border-radius: 2px;
  transition: transform var(--transition-fast), opacity var(--transition-fast);
}
.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- MOBILE MENU ---------- */
.mobile-menu {
  position: fixed;
  inset: 0;
  background: var(--white);
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translateX(100%);
  transition: transform var(--transition-slow);
}
.mobile-menu.open { transform: translateX(0); }
.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.mobile-nav-link {
  font-size: 2rem;
  font-weight: 700;
  color: var(--black);
  padding: 8px 20px;
  transition: color var(--transition-fast);
  text-align: center;
}
.mobile-nav-link:hover { color: var(--blue); }
.mobile-cta { margin-top: 24px; }

/* ---------- HERO ---------- */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: var(--gradient-hero);
  padding-top: var(--header-h);
}
.hero-bg-mesh {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 80% 30%, rgba(41,169,224,0.08) 0%, transparent 60%),
    radial-gradient(ellipse 40% 40% at 20% 70%, rgba(247,184,59,0.07) 0%, transparent 60%);
  pointer-events: none;
}
.hero-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  padding-top: 60px;
  padding-bottom: 80px;
  width: 100%;
}
.hero-content { max-width: 580px; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 50px;
  padding: 8px 18px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--gray-600);
  margin-bottom: 28px;
  box-shadow: var(--shadow-sm);
}
.badge-dot {
  width: 8px; height: 8px;
  background: var(--blue);
  border-radius: 50%;
  animation: badgePulse 2s ease-in-out infinite;
  flex-shrink: 0;
}
@keyframes badgePulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(41, 169, 224, 0.4); }
  50% { box-shadow: 0 0 0 6px rgba(41, 169, 224, 0); }
}

.hero-title {
  font-size: clamp(2.4rem, 4.5vw, 4rem);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: var(--black);
  margin-bottom: 24px;
}
.title-line { display: block; }

.hero-subtitle {
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  font-weight: 400;
  color: var(--gray-600);
  line-height: 1.7;
  margin-bottom: 36px;
}
.desktop-break { display: none; }
@media (min-width: 1024px) { .desktop-break { display: inline; } }

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 48px;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 0;
}
.hero-stat { text-align: center; padding: 0 24px; }
.hero-stat:first-child { padding-left: 0; }
.hero-stat strong {
  display: block;
  font-size: 1.8rem;
  font-weight: 900;
  background: var(--gradient-blue-yellow);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-stat span { font-size: 0.78rem; color: var(--gray-400); font-weight: 500; }
.hero-stat-divider { width: 1px; height: 36px; background: var(--gray-200); flex-shrink: 0; }

.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 520px;
}
.hero-canvas {
  width: 100%; height: 100%;
  border-radius: var(--radius-xl);
}
.hero-glow-1 {
  position: absolute;
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(41,169,224,0.15) 0%, transparent 70%);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  animation: glowPulse 4s ease-in-out infinite;
}
.hero-glow-2 {
  position: absolute;
  width: 200px; height: 200px;
  background: radial-gradient(circle, rgba(247,184,59,0.12) 0%, transparent 70%);
  bottom: 10%; right: 10%;
  pointer-events: none;
  animation: glowPulse 4s ease-in-out infinite 2s;
}
@keyframes glowPulse {
  0%, 100% { opacity: 0.6; transform: translate(-50%, -50%) scale(1); }
  50% { opacity: 1; transform: translate(-50%, -50%) scale(1.15); }
}

.hero-scroll-hint {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: 0.5;
  animation: scrollBounce 2s ease-in-out infinite;
}
.scroll-line { width: 1px; height: 40px; background: linear-gradient(to bottom, var(--blue), transparent); }
.hero-scroll-hint span { font-size: 0.7rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--gray-600); }
@keyframes scrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* ---------- REVEAL ANIMATIONS ---------- */
.reveal-up, .reveal-portfolio, .reveal-process {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1), transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}
.reveal-up.visible, .reveal-portfolio.visible, .reveal-process.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-hero { opacity: 0; transform: translateY(30px); animation: revealHero 0.9s cubic-bezier(0.4, 0, 0.2, 1) 0.2s forwards; }
.reveal-hero-right { opacity: 0; transform: translateX(40px) scale(0.97); animation: revealHeroRight 1s cubic-bezier(0.4, 0, 0.2, 1) 0.4s forwards; }

@keyframes revealHero {
  to { opacity: 1; transform: translateY(0); }
}
@keyframes revealHeroRight {
  to { opacity: 1; transform: translateX(0) scale(1); }
}

/* ---------- SERVICES ---------- */
.services {
  padding: 120px 0;
  background: var(--white);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 20px;
  margin-bottom: 48px;
}

.service-card--large { grid-column: span 2; }
.service-card--wide { grid-column: span 2; }

.service-card {
  background: var(--gray-50);
  border-radius: var(--radius-lg);
  border: 1px solid var(--gray-100);
  transition: transform var(--transition-med), box-shadow var(--transition-med), border-color var(--transition-med);
  position: relative;
  overflow: hidden;
  cursor: none;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(41, 169, 224, 0.2);
}
.service-card:hover .service-bg-shape { transform: scale(1.3) rotate(20deg); opacity: 0.08; }
.service-card:hover .service-arrow { opacity: 1; transform: translateX(4px); }

.service-card--accent {
  background: linear-gradient(145deg, var(--blue-light), rgba(247,184,59,0.05));
  border-color: rgba(41, 169, 224, 0.15);
}

.service-card-inner {
  padding: 32px 36px;
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: relative;
}

.service-number {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  color: var(--blue);
  opacity: 0.6;
}

.service-icon {
  width: 48px; height: 48px;
  color: var(--blue);
  transition: color var(--transition-fast), transform var(--transition-fast);
}
.service-card:hover .service-icon { color: var(--yellow); transform: scale(1.1); }
.service-icon svg { width: 100%; height: 100%; }

.service-content { flex: 1; }
.service-content h3 {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--black);
  line-height: 1.2;
  margin-bottom: 8px;
}
.service-content p {
  font-size: 0.9rem;
  color: var(--gray-600);
  line-height: 1.6;
}

.service-tag {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--gray-400);
  letter-spacing: 0.06em;
}

.service-arrow {
  position: absolute;
  top: 28px; right: 32px;
  color: var(--blue);
  opacity: 0;
  transition: opacity var(--transition-fast), transform var(--transition-fast);
}

.service-bg-shape {
  position: absolute;
  bottom: -30px; right: -30px;
  width: 120px; height: 120px;
  border-radius: 50%;
  background: var(--gradient-blue-yellow);
  opacity: 0.04;
  transition: transform var(--transition-slow), opacity var(--transition-slow);
}

.services-cta { text-align: center; margin-top: 16px; }

/* ---------- PROCESS ---------- */
.process {
  padding: 120px 0;
  background: var(--gray-50);
  position: relative;
  overflow: hidden;
}
.process::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--blue), transparent);
  opacity: 0.3;
}

.process-timeline {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.process-line-track {
  position: absolute;
  left: 32px;
  top: 0; bottom: 0;
  width: 2px;
  background: var(--gray-200);
  border-radius: 2px;
}
.process-line-fill {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 0%;
  background: linear-gradient(to bottom, var(--blue), var(--yellow));
  border-radius: 2px;
  transition: height 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.process-step {
  display: flex;
  gap: 40px;
  align-items: flex-start;
  padding: 32px 0 32px 88px;
  position: relative;
}
.process-step::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 88px;
  right: 0;
  height: 1px;
  background: var(--gray-100);
}
.process-step:last-child::after { display: none; }

.process-step-dot {
  position: absolute;
  left: 16px;
  top: 32px;
  width: 32px; height: 32px;
  background: var(--white);
  border: 2px solid var(--gray-200);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color var(--transition-med), background var(--transition-med), box-shadow var(--transition-med);
  z-index: 1;
}
.process-step.visible .process-step-dot {
  border-color: var(--blue);
  background: var(--blue);
  box-shadow: 0 0 0 6px rgba(41, 169, 224, 0.1);
}

.step-number {
  font-size: 0.7rem;
  font-weight: 800;
  color: var(--gray-400);
  transition: color var(--transition-fast);
}
.process-step.visible .step-number { color: var(--white); }

.process-step-content { flex: 1; }
.process-step-content h3 {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--black);
  margin-bottom: 10px;
  transition: color var(--transition-fast);
}
.process-step.visible .process-step-content h3 { color: var(--blue); }
.process-step-content p {
  font-size: 0.95rem;
  color: var(--gray-600);
  line-height: 1.7;
}

/* ---------- EXPERIENCE ---------- */
.experience {
  padding: 120px 0;
  background: var(--white);
  position: relative;
  overflow: hidden;
}
.experience-bg-canvas {
  position: absolute;
  inset: 0;
  opacity: 0.4;
  pointer-events: none;
}
.experience-bg-canvas canvas { width: 100%; height: 100%; }

.experience-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.exp-visual {
  display: flex;
  align-items: center;
  justify-content: center;
}
.exp-number-wrap {
  position: relative;
  width: 280px; height: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.exp-ring {
  position: absolute;
  border-radius: 50%;
  border: 2px solid transparent;
  animation: ringRotate 12s linear infinite;
}
.exp-ring--1 {
  inset: 0;
  border-color: rgba(41, 169, 224, 0.2);
  animation-duration: 12s;
}
.exp-ring--2 {
  inset: 20px;
  border-color: rgba(247, 184, 59, 0.25);
  animation-duration: 18s;
  animation-direction: reverse;
}
.exp-ring--3 {
  inset: 40px;
  border: 1px dashed rgba(41, 169, 224, 0.15);
  animation-duration: 30s;
}
@keyframes ringRotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.exp-center {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: var(--white);
  width: 160px; height: 160px;
  border-radius: 50%;
  box-shadow: 0 0 60px rgba(41, 169, 224, 0.12), 0 20px 60px rgba(0,0,0,0.06);
}
.exp-digit {
  font-size: 5rem;
  font-weight: 900;
  background: var(--gradient-blue-yellow);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-top: 28px;
}
.exp-plus {
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--yellow);
  line-height: 1;
  margin-top: -10px;
}
.exp-label {
  font-size: 0.8rem;
  color: var(--gray-400);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.exp-content .section-title { margin-bottom: 20px; }
.exp-desc {
  font-size: 1rem;
  color: var(--gray-600);
  line-height: 1.7;
  margin-bottom: 32px;
}

.exp-pillars {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 36px;
}
.exp-pillar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: var(--gray-50);
  border: 1px solid var(--gray-100);
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--black);
  transition: border-color var(--transition-fast), background var(--transition-fast);
}
.exp-pillar:hover { border-color: var(--blue); background: var(--blue-light); }
.pillar-icon { color: var(--blue); display: flex; }

/* ---------- WHY MEEK ---------- */
.why-meek {
  padding: 120px 0;
  background: var(--gray-50);
  position: relative;
}
.why-meek::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--yellow), transparent);
  opacity: 0.4;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.why-card--featured { grid-column: span 2; }

.why-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--gray-100);
  padding: 36px;
  transition: transform var(--transition-med), box-shadow var(--transition-med);
  cursor: none;
}
.why-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.why-card--featured { background: linear-gradient(145deg, var(--blue-light), rgba(247,184,59,0.06)); }

.why-card-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 20px;
}
.why-number {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  color: var(--gray-200);
}

.why-icon {
  width: 52px; height: 52px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform var(--transition-fast);
}
.why-card:hover .why-icon { transform: scale(1.1) rotate(-3deg); }
.why-icon--blue { background: var(--blue-light); color: var(--blue); }
.why-icon--yellow { background: var(--yellow-light); color: var(--yellow-dark); }
.why-icon--gradient { background: var(--gradient-blue-yellow); color: var(--white); }

.why-card h3 {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--black);
  margin-bottom: 12px;
}
.why-card p {
  font-size: 0.92rem;
  color: var(--gray-600);
  line-height: 1.65;
}
.why-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 20px;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--blue);
  transition: gap var(--transition-fast);
}
.why-cta:hover { gap: 10px; }

/* ---------- PORTFOLIO ---------- */
.portfolio {
  padding: 120px 0;
  background: var(--white);
}
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: 320px;
  gap: 16px;
  margin: 0 clamp(20px, 5vw, 64px) 48px;
  max-width: 1440px;
  margin-left: auto;
  margin-right: auto;
}

.portfolio-item { position: relative; overflow: hidden; border-radius: var(--radius-lg); grid-column: span 5; }
.portfolio-item--large { grid-column: span 7; grid-row: span 2; }
.portfolio-item--right { grid-column: 6 / span 7; }

.portfolio-item-img {
  width: 100%; height: 100%;
  overflow: hidden;
  position: relative;
}
.portfolio-item-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}
.portfolio-item:hover .portfolio-item-img img { transform: scale(1.05); }

/* Gradient visual for projects without photos */
.portfolio-item-img--gradient { position: relative; }
.portfolio-gradient-visual {
  width: 100%; height: 100%;
  background: linear-gradient(145deg, var(--c1), var(--c2));
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  padding: 32px;
  transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}
.portfolio-item:hover .portfolio-gradient-visual { transform: scale(1.03); }
.pgv-shape {
  position: absolute;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
}
.pgv-shape--1 { width: 200px; height: 200px; top: -60px; right: -60px; }
.pgv-shape--2 { width: 120px; height: 120px; bottom: 20px; left: 20%; opacity: 0.15; }
.pgv-text {
  font-size: 1.6rem;
  font-weight: 900;
  color: rgba(255,255,255,0.9);
  position: relative;
  z-index: 1;
  line-height: 1.2;
}

.portfolio-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(17,17,17,0.85) 0%, rgba(17,17,17,0.3) 50%, transparent 100%);
  opacity: 0;
  transition: opacity var(--transition-med);
  display: flex;
  align-items: flex-end;
}
.portfolio-item:hover .portfolio-overlay { opacity: 1; }
.portfolio-overlay-content {
  padding: 28px;
  transform: translateY(12px);
  transition: transform var(--transition-med);
}
.portfolio-item:hover .portfolio-overlay-content { transform: translateY(0); }
.portfolio-overlay-content .portfolio-sector {
  display: block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: 6px;
}
.portfolio-overlay-content h3 {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 8px;
}
.portfolio-overlay-content p {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.5;
  margin-bottom: 10px;
}
.portfolio-overlay-content .portfolio-service {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.5);
  font-weight: 500;
}

.portfolio-item-info {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 20px 24px;
  display: none;
}
.portfolio-meta { display: flex; gap: 8px; margin-bottom: 6px; flex-wrap: wrap; }
.portfolio-sector-badge, .portfolio-service-badge {
  font-size: 0.7rem;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 50px;
  letter-spacing: 0.05em;
}
.portfolio-sector-badge { background: rgba(41,169,224,0.15); color: var(--blue); }
.portfolio-service-badge { background: rgba(247,184,59,0.15); color: var(--yellow-dark); }
.portfolio-title { font-size: 1rem; font-weight: 700; color: var(--black); }

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

/* ---------- CLIENTS ---------- */
.clients {
  padding: 80px 0;
  background: var(--gray-50);
  overflow: hidden;
}
.clients .section-title { margin-bottom: 48px; font-size: 2rem; }

.clients-track-wrap {
  overflow: hidden;
  mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
}
.clients-track {
  display: flex;
  gap: 20px;
  animation: clientsScroll 28s linear infinite;
  width: max-content;
}
.clients-track:hover { animation-play-state: paused; }
@keyframes clientsScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.client-logo {
  flex-shrink: 0;
  width: 180px; height: 100px;
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast), transform var(--transition-fast);
}
.client-logo:hover {
  border-color: var(--blue);
  box-shadow: var(--shadow-sm);
  transform: translateY(-2px);
}
.client-logo-inner {
  font-size: 0.9rem;
  font-weight: 800;
  color: var(--gray-600);
  text-align: center;
  line-height: 1.4;
}
.client-logo-inner small { font-size: 0.72rem; font-weight: 500; color: var(--gray-400); display: block; }

/* ---------- CONTACT ---------- */
.contact {
  padding: 120px 0;
  background: var(--white);
  position: relative;
  overflow: hidden;
}
.contact-bg-mesh {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 50% 60% at 10% 50%, rgba(41,169,224,0.06) 0%, transparent 60%),
    radial-gradient(ellipse 40% 50% at 90% 30%, rgba(247,184,59,0.05) 0%, transparent 60%);
  pointer-events: none;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: flex-start;
  position: relative;
  z-index: 1;
}

.contact-info .section-title { margin-bottom: 16px; }
.contact-desc { font-size: 1rem; color: var(--gray-600); line-height: 1.7; margin-bottom: 40px; }

.contact-channels { display: flex; flex-direction: column; gap: 12px; }
.contact-channel {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 20px;
  background: var(--gray-50);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-md);
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast), transform var(--transition-fast);
  cursor: none;
}
.contact-channel:hover {
  border-color: var(--blue);
  box-shadow: var(--shadow-sm);
  transform: translateX(4px);
}
.channel-icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.channel-icon--green { background: rgba(37, 211, 102, 0.1); color: #25D366; }
.channel-icon--blue { background: var(--blue-light); color: var(--blue); }
.channel-icon--pink { background: rgba(225, 48, 108, 0.1); color: #E1306C; }
.channel-info { flex: 1; min-width: 0; }
.channel-label { display: block; font-size: 0.75rem; font-weight: 600; color: var(--gray-400); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 2px; }
.channel-value { display: block; font-size: 0.92rem; font-weight: 600; color: var(--black); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.channel-arrow { color: var(--gray-400); flex-shrink: 0; transition: transform var(--transition-fast); }
.contact-channel:hover .channel-arrow { transform: translateX(4px); color: var(--blue); }

/* ---------- FORM ---------- */
.contact-form-wrap {
  background: rgba(245, 247, 250, 0.8);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-xl);
  padding: 40px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: 0 4px 40px rgba(0,0,0,0.04);
}

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; }
.form-group label { font-size: 0.83rem; font-weight: 600; color: var(--black); }
.req { color: var(--blue); }
.form-group input,
.form-group textarea,
.form-group select {
  padding: 13px 16px;
  background: var(--white);
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-sm);
  font-size: 0.92rem;
  color: var(--black);
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
  outline: none;
  -webkit-appearance: none;
  appearance: none;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--gray-400); }
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(41, 169, 224, 0.12);
}
.form-group.error input,
.form-group.error textarea,
.form-group.error select {
  border-color: #ef4444;
  box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.08);
}
.form-error { font-size: 0.78rem; color: #ef4444; font-weight: 500; min-height: 16px; }

.select-wrap { position: relative; }
.select-wrap select { width: 100%; padding-right: 40px; cursor: none; }
.select-arrow { position: absolute; right: 14px; top: 50%; transform: translateY(-50%); pointer-events: none; color: var(--gray-400); }

.form-group textarea { resize: vertical; min-height: 100px; }

.btn-submit {
  width: 100%;
  justify-content: center;
  padding: 16px;
  font-size: 1rem;
  margin-top: 8px;
  cursor: none;
}

.form-success {
  display: none;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 40px 20px;
  gap: 12px;
}
.form-success svg { color: #10B981; }
.form-success h3 { font-size: 1.4rem; font-weight: 800; }
.form-success p { color: var(--gray-600); }
.form-success.show { display: flex; }

/* ---------- FOOTER ---------- */
.footer {
  background: var(--gray-50);
  border-top: 1px solid var(--gray-100);
  padding: 64px 0 32px;
}
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 48px;
}
.footer-brand { max-width: 280px; }
.footer-logo { display: inline-block; margin-bottom: 16px; }
.footer-logo img { height: 36px; width: auto; }
.footer-tagline { font-size: 0.9rem; color: var(--gray-600); line-height: 1.6; }

.footer-nav, .footer-contact {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-nav-title {
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--black);
  margin-bottom: 4px;
}
.footer-nav a, .footer-contact a {
  font-size: 0.9rem;
  color: var(--gray-600);
  transition: color var(--transition-fast);
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: none;
}
.footer-nav a:hover, .footer-contact a:hover { color: var(--blue); }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 28px;
  border-top: 1px solid var(--gray-100);
  font-size: 0.82rem;
  color: var(--gray-400);
}
.footer-accent-line {
  height: 2px;
  width: 60px;
  background: var(--gradient-blue-yellow);
  border-radius: 2px;
}

/* ---------- WHATSAPP FLOAT ---------- */
.whatsapp-float {
  position: fixed;
  bottom: 28px; right: 28px;
  z-index: 900;
  display: flex;
  align-items: center;
  gap: 10px;
  background: #25D366;
  color: var(--white);
  padding: 14px 20px;
  border-radius: 50px;
  box-shadow: 0 4px 24px rgba(37, 211, 102, 0.4);
  font-size: 0.9rem;
  font-weight: 700;
  transition: transform var(--transition-fast), box-shadow var(--transition-fast), padding var(--transition-med);
  cursor: none;
}
.whatsapp-float:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 36px rgba(37, 211, 102, 0.5);
}
.whatsapp-pulse {
  position: absolute;
  inset: 0;
  border-radius: 50px;
  border: 2px solid #25D366;
  animation: wpPulse 2.5s ease-out infinite;
}
@keyframes wpPulse {
  0% { transform: scale(1); opacity: 0.8; }
  100% { transform: scale(1.35); opacity: 0; }
}
.whatsapp-label { white-space: nowrap; }

/* ---------- DELAY UTILITIES ---------- */
[data-delay="100"] { transition-delay: 0.1s !important; }
[data-delay="200"] { transition-delay: 0.2s !important; }
[data-delay="300"] { transition-delay: 0.3s !important; }
[data-delay="400"] { transition-delay: 0.4s !important; }
[data-delay="500"] { transition-delay: 0.5s !important; }

/* ============================================
   RESPONSIVE
   ============================================ */

/* --- Tablet --- */
@media (max-width: 1100px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .service-card--large { grid-column: span 2; }
  .service-card--wide { grid-column: span 2; }

  .portfolio-grid { grid-template-columns: repeat(6, 1fr); grid-auto-rows: 260px; }
  .portfolio-item { grid-column: span 3; }
  .portfolio-item--large { grid-column: span 6; grid-row: span 1; }
  .portfolio-item--right { grid-column: span 6; }

  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .why-card--featured { grid-column: span 2; }
}

@media (max-width: 900px) {
  .hero-container { grid-template-columns: 1fr; text-align: center; gap: 40px; padding-top: 40px; }
  .hero-content { max-width: 100%; }
  .hero-actions { justify-content: center; }
  .hero-stats { justify-content: center; }
  .hero-visual { height: 340px; }
  .hero-badge { justify-content: center; }

  .experience-container { grid-template-columns: 1fr; gap: 48px; text-align: center; }
  .exp-visual { justify-content: center; }
  .exp-pillars { justify-content: center; }
  .exp-content { display: flex; flex-direction: column; align-items: center; }

  .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: span 2; }
}

@media (max-width: 768px) {
  :root { --header-h: 64px; }

  .header-nav { display: none; }
  .header-cta { display: none; }
  .hamburger { display: flex; }

  .services-grid { grid-template-columns: 1fr; }
  .service-card--large { grid-column: span 1; }
  .service-card--wide { grid-column: span 1; }

  .portfolio-grid { grid-template-columns: 1fr; grid-auto-rows: 240px; margin: 0 20px 40px; }
  .portfolio-item, .portfolio-item--large, .portfolio-item--right { grid-column: span 1; grid-row: span 1; }

  .why-grid { grid-template-columns: 1fr; }
  .why-card--featured { grid-column: span 1; }

  .process-line-track { display: none; }
  .process-step { padding-left: 60px; }
  .process-step-dot { left: 8px; }

  .footer-top { grid-template-columns: 1fr; gap: 32px; }
  .footer-brand { grid-column: span 1; }
  .footer-bottom { flex-direction: column; gap: 16px; text-align: center; }

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

  .whatsapp-float { bottom: 20px; right: 16px; }
  .whatsapp-label { display: none; }
  .whatsapp-float { padding: 14px; border-radius: 50%; }

  .section-title { margin-bottom: 32px; }
  .services, .process, .experience, .why-meek, .portfolio, .contact { padding: 80px 0; }
}

@media (max-width: 480px) {
  .hero-title { font-size: 2.2rem; }
  .hero-subtitle { font-size: 0.95rem; }
  .btn-primary, .btn-secondary { padding: 13px 22px; font-size: 0.88rem; }
  .hero-visual { height: 260px; }
  .exp-number-wrap { width: 220px; height: 220px; }
  .exp-center { width: 130px; height: 130px; }
  .exp-digit { font-size: 4rem; }
}

/* Hide cursor on touch devices */
@media (hover: none) {
  .cursor, .cursor-follower { display: none; }
  body { cursor: auto; }
  button, a, [role="button"] { cursor: pointer; }
}
