/* ===== HERO ===== */
.hero {
  padding: 148px 0 112px;
  background: var(--white);
  position: relative;
  overflow: hidden;
}

/* Subtle line grid */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(37,99,235,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(37,99,235,0.04) 1px, transparent 1px);
  background-size: 64px 64px;
  pointer-events: none;
  z-index: 0;
}

/* Top-right blue accent bar */
.hero::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 3px;
  height: 180px;
  background: linear-gradient(to bottom, var(--blue), transparent);
  pointer-events: none;
  z-index: 2;
}

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

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(239,246,255,0.9);
  border: 1px solid rgba(37,99,235,0.2);
  padding: 7px 16px;
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--blue);
  margin-bottom: 24px;
  backdrop-filter: blur(8px);
  box-shadow: 0 2px 12px rgba(37,99,235,0.1);
}

.hero-badge-dot {
  width: 6px;
  height: 6px;
  background: var(--blue);
  border-radius: 50%;
  animation: badgePulse 2s infinite;
  box-shadow: 0 0 6px rgba(37,99,235,0.5);
}

@keyframes badgePulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}

.hero-title {
  font-size: clamp(2.4rem, 4.5vw, 3.8rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.04em;
  color: var(--navy);
  margin-bottom: 22px;
}

/* Animated gradient on typing word */
.hero-title .gradient-text {
  background: linear-gradient(135deg, #2563eb 0%, #7c3aed 60%, #2563eb 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradientShift 4s linear infinite;
}

@keyframes gradientShift {
  0% { background-position: 0% center; }
  100% { background-position: 200% center; }
}

.cursor-blink {
  animation: cursorBlink 1s step-end infinite;
  color: var(--blue);
  font-weight: 300;
  -webkit-text-fill-color: var(--blue);
}

@keyframes cursorBlink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0; }
}

.hero-sub {
  font-size: 1.05rem;
  color: var(--text-secondary);
  line-height: 1.75;
  margin-bottom: 36px;
  max-width: 460px;
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 56px;
}

.hero-stats {
  display: flex;
  gap: 32px;
  padding-top: 28px;
  border-top: 1px solid var(--border);
}

.hero-stat-num {
  display: block;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 4px;
}

.hero-stat-label {
  font-size: 0.78rem;
  color: var(--text-muted);
  font-weight: 500;
}

/* ===== HERO VISUAL ===== */
.hero-visual {
  position: relative;
}

.hero-browser {
  background: var(--white);
  border: 1px solid rgba(37,99,235,0.12);
  border-radius: 16px;
  overflow: hidden;
  box-shadow:
    0 0 0 1px rgba(37,99,235,0.06),
    0 32px 80px rgba(0,0,0,0.14),
    0 0 80px rgba(37,99,235,0.08);
  transition: box-shadow 0.4s ease, transform 0.4s ease;
}

.hero-browser:hover {
  box-shadow:
    0 0 0 1px rgba(37,99,235,0.1),
    0 40px 100px rgba(0,0,0,0.18),
    0 0 100px rgba(37,99,235,0.12);
  transform: translateY(-3px);
}

.browser-bar {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
}

.browser-dots { display: flex; gap: 6px; }
.browser-dots span { width: 10px; height: 10px; border-radius: 50%; }
.browser-dots span:nth-child(1) { background: #f87171; }
.browser-dots span:nth-child(2) { background: #fbbf24; }
.browser-dots span:nth-child(3) { background: #4ade80; }

.browser-url {
  flex: 1;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 4px 12px;
  font-size: 0.78rem;
  color: var(--text-muted);
  text-align: center;
}

/* Browser body — real website look */
.browser-body { padding: 0; overflow: hidden; display: flex; flex-direction: column; }

.bb-nav {
  height: 40px;
  background: var(--navy);
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 14px;
  flex-shrink: 0;
}
.bb-nav-logo { width: 56px; height: 11px; background: white; border-radius: 3px; opacity: 0.9; }
.bb-nav-links { display: flex; gap: 8px; flex: 1; justify-content: center; }
.bb-nav-links span { width: 24px; height: 6px; background: rgba(255,255,255,0.3); border-radius: 2px; }
.bb-nav-cta { width: 52px; height: 22px; background: var(--blue); border-radius: 5px; flex-shrink: 0; }

.bb-hero {
  height: 140px;
  background: linear-gradient(135deg, #0f172a 0%, #1a3a6b 65%, #2563eb 100%);
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 18px;
  flex-shrink: 0;
  position: relative;
  overflow: hidden;
}
.bb-hero::before {
  content: '';
  position: absolute;
  right: 0; top: 0; bottom: 0; width: 38%;
  background: rgba(37,99,235,0.2);
  clip-path: polygon(20% 0, 100% 0, 100% 100%, 0% 100%);
}
.bb-hero-left { display: flex; flex-direction: column; gap: 7px; flex: 1; z-index: 1; }
.bb-h1 { height: 14px; background: rgba(255,255,255,0.9); border-radius: 3px; width: 68%; }
.bb-h2 { height: 8px; background: rgba(255,255,255,0.4); border-radius: 2px; width: 48%; }
.bb-btn { height: 24px; width: 86px; background: var(--blue); border-radius: 5px; margin-top: 4px; }
.bb-hero-img { width: 68px; height: 88px; background: rgba(255,255,255,0.08); border-radius: 8px; border: 1px solid rgba(255,255,255,0.15); flex-shrink: 0; z-index: 1; position: relative; }

.bb-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  padding: 14px;
  background: #f8fafc;
}
.bb-card {
  height: 62px;
  background: white;
  border-radius: 8px;
  border: 1px solid #e2e8f0;
  overflow: hidden;
  position: relative;
}
.bb-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 22px;
}
.bb-card:nth-child(1)::before { background: linear-gradient(90deg, #2563eb, #60a5fa); }
.bb-card:nth-child(2)::before { background: linear-gradient(90deg, #16a34a, #4ade80); }
.bb-card:nth-child(3)::before { background: linear-gradient(90deg, #7c3aed, #a78bfa); }
.bb-card::after {
  content: '';
  position: absolute;
  bottom: 8px; left: 8px; right: 8px;
  height: 6px;
  background: #e2e8f0;
  border-radius: 3px;
}

/* Phone mockup */
.hero-phone {
  position: absolute;
  bottom: -20px;
  right: -18px;
  width: 96px;
  z-index: 10;
  filter: drop-shadow(0 20px 40px rgba(37,99,235,0.25)) drop-shadow(0 8px 16px rgba(0,0,0,0.2));
  animation: floatPhone 4s ease-in-out infinite;
}
@keyframes floatPhone {
  0%, 100% { transform: translateY(0) rotate(-1deg); }
  50% { transform: translateY(-8px) rotate(0deg); }
}
.phone-body {
  background: #0f172a;
  border-radius: 16px;
  padding: 5px;
  border: 1px solid rgba(255,255,255,0.08);
}
.phone-notch {
  height: 8px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 2px;
}
.phone-notch::before {
  content: '';
  width: 22px; height: 4px;
  background: #1e293b;
  border-radius: 2px;
}
.phone-screen {
  background: white;
  border-radius: 11px;
  overflow: hidden;
  height: 178px;
}
.ph-nav { height: 26px; background: var(--navy); }
.ph-hero-img { height: 68px; background: linear-gradient(135deg, #1e3a5f, #2563eb); position: relative; overflow: hidden; }
.ph-hero-img::after { content: ''; position: absolute; bottom: -10px; right: -8px; width: 34px; height: 34px; background: rgba(255,255,255,0.08); border-radius: 50%; }
.ph-content { padding: 9px; display: flex; flex-direction: column; gap: 5px; }
.ph-line { height: 5px; background: #e2e8f0; border-radius: 2px; }
.ph-line.s { width: 58%; }
.ph-btn { margin-top: 5px; height: 18px; background: var(--blue); border-radius: 4px; width: 65%; }

/* Float badges — glassmorphic */
.hero-float {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,0.85);
  border: 1px solid rgba(255,255,255,0.7);
  border-radius: 14px;
  padding: 10px 16px;
  box-shadow: 0 8px 32px rgba(37,99,235,0.12), 0 2px 8px rgba(0,0,0,0.08);
  font-size: 0.82rem;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  animation: badgePulseFloat 4s ease-in-out infinite;
}

.hero-float-1 { top: -16px; right: -20px; animation-delay: 0s; }
.hero-float-2 { bottom: 100px; left: -24px; animation-delay: -2s; }
.hero-float-3 { top: 50%; right: -28px; transform: translateY(-50%); }

@keyframes badgePulseFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-5px); }
}
.hero-float-3 {
  animation: badgePulseFloat3 4s ease-in-out infinite;
  animation-delay: -1s;
}
@keyframes badgePulseFloat3 {
  0%, 100% { transform: translateY(-50%); }
  50% { transform: translateY(calc(-50% - 5px)); }
}

.float-label { color: var(--text-muted); font-size: 0.72rem; display: block; }
.float-val { font-weight: 700; color: var(--navy); font-size: 0.9rem; display: block; }

.float-icon {
  width: 34px; height: 34px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  flex-shrink: 0;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

/* ===== MARQUEE ===== */
.marquee-section {
  padding: 22px 0;
  background: var(--navy);
  overflow: hidden;
  position: relative;
}
.marquee-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, var(--navy) 0%, transparent 10%, transparent 90%, var(--navy) 100%);
  pointer-events: none;
  z-index: 1;
}
.marquee-track {
  display: flex;
  animation: marquee 30s linear infinite;
  white-space: nowrap;
}
.marquee-item {
  padding: 0 36px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  flex-shrink: 0;
  transition: color 0.3s;
}
.marquee-item:hover { color: rgba(255,255,255,0.9); }
.marquee-sep { color: rgba(37,99,235,0.6); padding: 0 4px; }
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ===== SERVICES ===== */
.services-section { padding: 112px 0; }
.services-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 40px;
  margin-bottom: 56px;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.service-card {
  padding: 0;
  display: flex;
  flex-direction: column;
  overflow: visible;
  position: relative;
  transition: transform 0.3s cubic-bezier(0.4,0,0.2,1), box-shadow 0.3s cubic-bezier(0.4,0,0.2,1), border-color 0.3s;
}
.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 0 1px rgba(37,99,235,0.12), 0 20px 56px rgba(0,0,0,0.09);
  border-color: rgba(37,99,235,0.18);
}

/* Card number — top-right corner */
.service-card-num {
  position: absolute;
  top: -11px;
  right: 18px;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--blue);
  background: var(--white);
  border: 1px solid var(--border);
  padding: 3px 9px;
  border-radius: 100px;
  letter-spacing: 0.08em;
  z-index: 5;
  transition: background 0.2s, color 0.2s;
}
.service-card:hover .service-card-num {
  background: var(--blue);
  color: white;
  border-color: var(--blue);
}

/* Service card visual header */
.service-visual {
  height: 160px;
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
}
.service-visual-photo {
  height: 180px;
  background: #e2e8f0;
}
.service-visual-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}
.service-card:hover .service-visual-photo img {
  transform: scale(1.05);
}
.service-visual-design { background: linear-gradient(135deg, #0f172a 0%, #1e3a6b 100%); }
.service-visual-dev { background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 100%); }
.service-visual-seo { background: linear-gradient(135deg, #0c4a6e 0%, #075985 100%); }
.service-visual-shop { background: linear-gradient(135deg, #3b0764 0%, #6b21a8 100%); }

/* Add subtle inner glow to service visual on hover */
.service-card:hover .service-visual::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.04);
  pointer-events: none;
}

/* Design visual: mini browser */
.sv-browser {
  position: absolute;
  bottom: -6px; left: 14px; right: 14px;
  background: white;
  border-radius: 8px 8px 0 0;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0,0,0,0.35);
}
.sv-bbar { height: 20px; background: var(--bg); display: flex; align-items: center; gap: 4px; padding: 0 8px; }
.sv-bbar span { width: 5px; height: 5px; border-radius: 50%; }
.sv-bbar span:nth-child(1) { background: #f87171; }
.sv-bbar span:nth-child(2) { background: #fbbf24; }
.sv-bbar span:nth-child(3) { background: #4ade80; }
.sv-bcontent { padding: 8px; display: flex; flex-direction: column; gap: 4px; }
.sv-bh { height: 7px; background: var(--navy); border-radius: 2px; width: 60%; opacity: 0.5; }
.sv-bl { height: 5px; background: #e2e8f0; border-radius: 2px; }
.sv-bl.s { width: 70%; }

/* Dev visual: code lines */
.sv-code {
  position: absolute;
  inset: 10px 14px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.sv-code-line {
  height: 7px;
  border-radius: 2px;
  opacity: 0.85;
  animation: codeFade 3s ease-in-out infinite;
}
.sv-code-line:nth-child(2) { animation-delay: 0.4s; }
.sv-code-line:nth-child(3) { animation-delay: 0.8s; }
.sv-code-line:nth-child(4) { animation-delay: 1.2s; }
.sv-code-line:nth-child(5) { animation-delay: 1.6s; }
@keyframes codeFade {
  0%, 100% { opacity: 0.7; }
  50% { opacity: 1; }
}
.sv-code-line.blue { background: #60a5fa; width: 70%; }
.sv-code-line.green { background: #4ade80; width: 50%; margin-left: 14px; }
.sv-code-line.yellow { background: #fbbf24; width: 85%; margin-left: 7px; }
.sv-code-line.purple { background: #c084fc; width: 40%; margin-left: 14px; }
.sv-code-line.white { background: rgba(255,255,255,0.4); width: 60%; }

/* SEO visual: bar chart */
.sv-chart {
  position: absolute;
  bottom: 0; left: 14px; right: 14px;
  display: flex;
  align-items: flex-end;
  gap: 4px;
  height: 90px;
}
.sv-bar {
  flex: 1;
  border-radius: 4px 4px 0 0;
  background: rgba(255,255,255,0.15);
  transition: height 0.6s ease;
}
.sv-bar.active { background: #60a5fa; }
.sv-bar.best { background: linear-gradient(to top, #38bdf8, #60a5fa); box-shadow: 0 0 16px rgba(56,189,248,0.5); }

/* Shop visual: product grid */
.sv-products {
  position: absolute;
  inset: 10px 14px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
}
.sv-prod {
  background: rgba(255,255,255,0.1);
  border-radius: 7px;
  overflow: hidden;
  position: relative;
  border: 1px solid rgba(255,255,255,0.08);
}
.sv-prod::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 55%; background: rgba(255,255,255,0.08); }
.sv-prod::after { content: ''; position: absolute; bottom: 5px; left: 5px; right: 5px; height: 5px; background: rgba(255,255,255,0.2); border-radius: 2px; }

.service-card-body {
  padding: 22px 22px 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
}
.service-icon {
  width: 40px; height: 40px;
  background: var(--blue-light);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: var(--blue);
  flex-shrink: 0;
}
.service-card h3 { font-size: 1rem; font-weight: 700; color: var(--navy); letter-spacing: -0.02em; }
.service-card p { font-size: 0.875rem; color: var(--text-secondary); line-height: 1.65; flex: 1; }
.service-tags { display: flex; flex-wrap: wrap; gap: 6px; }
.service-link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 0.835rem;
  font-weight: 600;
  color: var(--blue);
  text-decoration: none;
  transition: var(--transition);
  margin-top: 4px;
}
.service-link:hover { gap: 10px; }

/* ===== PROCESS ===== */
.process-section {
  padding: 112px 0;
  background: var(--bg);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}
.process-section .section-label { color: var(--blue); }
.process-section .section-title { color: var(--navy); }

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 64px;
  position: relative;
  z-index: 1;
}
.process-grid::before {
  content: '';
  position: absolute;
  top: 27px;
  left: 12.5%; right: 12.5%;
  height: 1px;
  background: var(--border-dark);
  z-index: 0;
}
.process-step {
  display: flex; flex-direction: column; align-items: center; text-align: center;
  padding: 0 24px;
  position: relative; z-index: 1;
}
.step-num {
  width: 56px; height: 56px;
  background: var(--white);
  border: 2px solid var(--blue);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.85rem; font-weight: 700; color: var(--blue);
  margin-bottom: 24px;
  transition: background 0.25s ease, color 0.25s ease, transform 0.25s ease;
  letter-spacing: 0.02em;
}
.process-step:hover .step-num {
  background: var(--blue);
  color: white;
  transform: translateY(-3px);
}
.step-content h3 { font-size: 0.98rem; font-weight: 700; color: var(--navy); margin-bottom: 10px; }
.step-content p { font-size: 0.84rem; color: var(--text-secondary); line-height: 1.7; }

/* ===== RESULTS STRIP ===== */
.results-strip {
  background: linear-gradient(135deg, #0f172a 0%, #0d1b3e 100%);
  padding: 64px 0;
  position: relative;
  overflow: hidden;
}
.results-strip::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 50% 100%, rgba(37,99,235,0.25) 0%, transparent 60%),
    radial-gradient(ellipse at 20% 0%, rgba(124,58,237,0.1) 0%, transparent 40%);
  pointer-events: none;
}
.results-inner {
  display: flex;
  align-items: center;
  justify-content: space-around;
  gap: 20px;
  position: relative;
  z-index: 1;
}
.result-item { display: flex; flex-direction: column; align-items: center; text-align: center; }
.result-num {
  font-size: 3rem;
  font-weight: 700;
  color: white;
  letter-spacing: -0.05em;
  line-height: 1;
  background: linear-gradient(135deg, #fff 0%, rgba(255,255,255,0.8) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.result-num span { -webkit-text-fill-color: unset; color: #60a5fa; }
.result-label { font-size: 0.8rem; color: rgba(255,255,255,0.4); margin-top: 8px; font-weight: 500; letter-spacing: 0.03em; }
.result-div { width: 1px; height: 56px; background: rgba(255,255,255,0.08); }

/* ===== WORK ===== */
.work-section { padding: 112px 0; }
.section-header-row {
  display: flex; align-items: flex-end; justify-content: space-between;
  gap: 40px; margin-bottom: 48px;
}
.work-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 20px;
}
.work-item { overflow: hidden; }
.work-item.tall { grid-row: span 2; }
.work-thumb {
  border-radius: 14px 14px 0 0;
  aspect-ratio: 16/9;
  overflow: hidden;
  position: relative;
  transition: transform 0.4s cubic-bezier(0.4,0,0.2,1);
}
.work-item:hover .work-thumb { transform: scale(1.02); }
.work-item.tall .work-thumb { aspect-ratio: auto; flex: 1; min-height: 200px; }
.work-mockup { padding: 0; height: 100%; display: flex; flex-direction: column; overflow: hidden; }

/* Work mockup — Fashion Webshop */
.wm-fashion { }
.wmf-nav { height: 30px; background: white; border-bottom: 1px solid rgba(0,0,0,0.08); display: flex; align-items: center; gap: 8px; padding: 0 10px; flex-shrink: 0; }
.wmf-logo { width: 44px; height: 9px; background: #1e3a5f; border-radius: 2px; }
.wmf-links { flex: 1; display: flex; gap: 6px; justify-content: center; }
.wmf-links span { width: 22px; height: 5px; background: #e2e8f0; border-radius: 2px; }
.wmf-cart { width: 18px; height: 18px; background: #1e3a5f; border-radius: 4px; opacity: 0.7; }
.wmf-hero { height: 110px; background: linear-gradient(135deg, #1e3a5f, #0f172a); display: flex; align-items: center; padding: 12px; gap: 12px; flex-shrink: 0; }
.wmf-hero-text { flex: 1; display: flex; flex-direction: column; gap: 6px; }
.wmf-h1 { height: 12px; background: rgba(255,255,255,0.9); border-radius: 3px; width: 72%; }
.wmf-h2 { height: 7px; background: rgba(255,255,255,0.4); border-radius: 2px; width: 50%; }
.wmf-cta { margin-top: 5px; height: 20px; width: 64px; background: #f59e0b; border-radius: 4px; }
.wmf-hero-img { width: 68px; height: 88px; background: rgba(255,255,255,0.08); border-radius: 6px; border: 1px solid rgba(255,255,255,0.15); flex-shrink: 0; }
.wmf-products { flex: 1; display: grid; grid-template-columns: repeat(3, 1fr); gap: 6px; padding: 8px; background: #fafafa; }
.wmf-prod { background: white; border-radius: 6px; border: 1px solid #f0f0f0; overflow: hidden; position: relative; min-height: 60px; }
.wmf-prod::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 55%; }
.wmf-prod:nth-child(1)::before { background: linear-gradient(135deg, #1e3a5f44, #1e3a5faa); }
.wmf-prod:nth-child(2)::before { background: linear-gradient(135deg, #92400e44, #92400eaa); }
.wmf-prod:nth-child(3)::before { background: linear-gradient(135deg, #3b0764aa, #6b21a8aa); }
.wmf-prod::after { content: ''; position: absolute; bottom: 5px; left: 5px; right: 5px; height: 5px; background: #e2e8f0; border-radius: 2px; }

/* Work mockup — Dashboard */
.wm-dash { flex-direction: row !important; }
.wmd-sidebar { width: 38px; background: #0f172a; display: flex; flex-direction: column; gap: 7px; padding: 10px 6px; flex-shrink: 0; }
.wmd-sidebar div { height: 18px; background: rgba(255,255,255,0.12); border-radius: 4px; }
.wmd-sidebar div:first-child { background: var(--blue); }
.wmd-sidebar div:nth-child(3) { background: rgba(255,255,255,0.25); }
.wmd-main { flex: 1; display: flex; flex-direction: column; background: #f8fafc; overflow: hidden; }
.wmd-header { height: 30px; background: white; border-bottom: 1px solid #e2e8f0; flex-shrink: 0; }
.wmd-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 5px; padding: 6px; flex-shrink: 0; }
.wmd-stats div { height: 26px; background: white; border-radius: 4px; border: 1px solid #e2e8f0; }
.wmd-stats div:first-child { border-top: 3px solid #2563eb; }
.wmd-stats div:nth-child(2) { border-top: 3px solid #16a34a; }
.wmd-stats div:nth-child(3) { border-top: 3px solid #9333ea; }
.wmd-chart { display: flex; align-items: flex-end; gap: 4px; padding: 4px 6px 0; flex: 1; }
.wmd-chart div { flex: 1; border-radius: 3px 3px 0 0; opacity: 0.75; background: linear-gradient(to top, #2563eb, #60a5fa); }
.wmd-chart div:nth-child(2) { opacity: 1; }
.wmd-chart div:nth-child(4) { opacity: 1; background: linear-gradient(to top, #16a34a, #4ade80); }

/* Work mockup — Greentech */
.wm-green { }
.wmg-nav { height: 28px; background: white; border-bottom: 1px solid rgba(0,0,0,0.08); flex-shrink: 0; }
.wmg-hero { height: 80px; background: linear-gradient(135deg, #14532d, #166534); display: flex; flex-direction: column; justify-content: center; padding: 10px 12px; gap: 6px; flex-shrink: 0; }
.wmg-h1 { height: 12px; background: rgba(255,255,255,0.9); border-radius: 3px; width: 62%; }
.wmg-h2 { height: 7px; background: rgba(255,255,255,0.4); border-radius: 2px; width: 44%; }
.wmg-cta { margin-top: 4px; height: 18px; width: 60px; background: #4ade80; border-radius: 4px; }
.wmg-features { display: grid; grid-template-columns: repeat(3, 1fr); gap: 5px; padding: 8px; background: #f8fafc; flex: 1; }
.wmg-features div { background: white; border-radius: 5px; border: 1px solid #e2e8f0; border-top: 3px solid #16a34a; }

.work-info { padding: 20px; display: flex; flex-direction: column; gap: 8px; }
.work-tags { display: flex; gap: 6px; flex-wrap: wrap; }
.work-info h3 { font-size: 0.97rem; font-weight: 700; color: var(--navy); letter-spacing: -0.02em; }
.work-info p { font-size: 0.835rem; color: var(--text-secondary); line-height: 1.6; }
.work-result {
  font-size: 0.78rem; font-weight: 600; color: #16a34a;
  background: #f0fdf4; border: 1px solid #bbf7d0;
  padding: 3px 10px; border-radius: 100px; width: fit-content;
}

/* ===== PORTFOLIO TEASER ===== */
.portfolio-teaser {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 36px 40px;
  flex-wrap: wrap;
}

.pt-left {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  flex: 1;
  min-width: 260px;
}

.pt-icon {
  width: 48px;
  height: 48px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
  color: var(--blue);
}

.pt-left h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 6px;
  letter-spacing: -0.02em;
}

.pt-left p {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.65;
  max-width: 420px;
}

/* ===== TESTIMONIALS ===== */
.testimonials-section {
  padding: 112px 0;
  background: var(--bg);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 48px;
}
.testimonial-card {
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
  overflow: hidden;
}
.testimonial-card::before {
  content: '\201C';
  position: absolute;
  top: 16px;
  right: 24px;
  font-size: 7rem;
  line-height: 1;
  color: var(--blue);
  opacity: 0.06;
  font-family: Georgia, serif;
  pointer-events: none;
}
.testimonial-card:hover::before { opacity: 0.1; }
.stars { color: #fbbf24; font-size: 0.85rem; letter-spacing: 2px; }
.testimonial-card p { font-size: 0.9rem; color: var(--text-secondary); line-height: 1.8; flex: 1; position: relative; z-index: 1; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.author-avatar {
  width: 42px; height: 42px;
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.8rem; font-weight: 700; color: white; flex-shrink: 0;
}
.testimonial-author strong { display: block; font-size: 0.875rem; font-weight: 600; color: var(--navy); }
.testimonial-author span { font-size: 0.775rem; color: var(--text-muted); }

/* ===== CTA BANNER ===== */
.cta-section { padding: 112px 0; }
.cta-banner {
  background: var(--navy);
  border-radius: var(--radius-xl);
  padding: 80px 60px;
  display: flex; flex-direction: column; align-items: center; text-align: center;
  position: relative; overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 0% 100%, rgba(37,99,235,0.2) 0%, transparent 50%),
    radial-gradient(ellipse at 100% 0%, rgba(37,99,235,0.12) 0%, transparent 50%);
  pointer-events: none;
}

.cta-banner::after {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(37,99,235,0.12) 0%, transparent 70%);
  pointer-events: none;
}
.cta-banner .section-label { color: rgba(255,255,255,0.45); justify-content: center; position: relative; z-index: 1; }
.cta-banner .section-label::before { display: none; }
.cta-banner h2 { color: white; font-size: clamp(1.8rem, 3vw, 2.8rem); margin-bottom: 16px; position: relative; z-index: 1; }
.cta-banner p { color: rgba(255,255,255,0.6); max-width: 460px; line-height: 1.7; font-size: 1rem; margin-bottom: 36px; position: relative; z-index: 1; }
.cta-actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; position: relative; z-index: 1; }
.cta-banner .btn-primary { background: var(--blue); box-shadow: 0 8px 32px rgba(37,99,235,0.4); }
.cta-banner .btn-primary:hover { box-shadow: 0 12px 40px rgba(37,99,235,0.5); }
.cta-banner .btn-outline { border-color: rgba(255,255,255,0.18); color: white; background: rgba(255,255,255,0.06); }
.cta-banner .btn-outline:hover { background: rgba(255,255,255,0.12); border-color: rgba(255,255,255,0.3); color: white; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1100px) {
  .hero::before { display: none; }
  .hero-inner { grid-template-columns: 1fr; gap: 56px; }
  .hero-visual { order: -1; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .process-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .process-grid::before { display: none; }
  .work-grid { grid-template-columns: 1fr 1fr; }
  .work-item.tall { grid-row: auto; }
  .services-header { flex-direction: column; align-items: flex-start; }
  .section-header-row { flex-direction: column; align-items: flex-start; }
  .results-inner { flex-wrap: wrap; gap: 32px; }
  .result-div { display: none; }
}

@media (max-width: 768px) {
  .hero { padding: 100px 0 64px; }
  .hero-stats { gap: 20px; flex-wrap: wrap; }
  .services-grid { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: 1fr; }
  .process-section { padding: 80px 0; }
  .work-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .cta-banner { padding: 48px 28px; }
  .hero-float { display: none; }
  .hero-phone { display: none; }
}
