/* ===================================
   TRINERD AGENCY — MAIN STYLESHEET
   Neo-Brutalism × Modern Startup
=================================== */

/* --- CSS VARIABLES --- */
:root {
  --blue: #5e91f7;
  --blue-dark: #3a6fd8;
  --blue-light: #a0bffc;
  --off-white: #f1f1f1;
  --white: #ffffff;
  --black: #0a0a0a;
  --dark: #111114;
  --dark-2: #18181d;
  --dark-3: #22222a;
  --dark-border: rgba(255,255,255,0.08);
  --text-primary: #f1f1f1;
  --text-secondary: #9999aa;
  --text-muted: #666677;
  --shadow-brutal: 4px 4px 0px var(--blue);
  --shadow-brutal-lg: 6px 6px 0px var(--blue);
  --shadow-brutal-black: 4px 4px 0px var(--black);
  --radius: 12px;
  --radius-lg: 20px;
  --border: 2px solid rgba(255,255,255,0.1);
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  --font-display: 'Syne', sans-serif;
  --font-body: 'DM Sans', sans-serif;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  background: var(--dark);
  color: var(--text-primary);
  font-family: var(--font-body);
  line-height: 1.6;
  overflow-x: hidden;
  cursor: none;
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 100px 0;
}

/* --- CUSTOM CURSOR --- */
.cursor {
  position: fixed;
  width: 10px;
  height: 10px;
  background: var(--blue);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: transform 0.1s;
}

.cursor-follower {
  position: fixed;
  width: 36px;
  height: 36px;
  border: 2px solid var(--blue);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition: all 0.12s ease-out;
  opacity: 0.6;
}

body:hover .cursor { opacity: 1; }

/* --- TYPOGRAPHY --- */
.section-label {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 12px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.section-label::before {
  content: '';
  display: inline-block;
  width: 24px;
  height: 2px;
  background: var(--blue);
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}

.section-sub {
  font-size: 1.05rem;
  color: var(--text-secondary);
  max-width: 560px;
  line-height: 1.7;
}

.accent { color: var(--blue); }
.accent-stroke {
  -webkit-text-stroke: 2px var(--blue);
  color: transparent;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-header .section-label {
  justify-content: center;
}

.section-header .section-label::before { display: none; }

.section-header .section-sub {
  margin: 0 auto;
}

/* --- BUTTONS --- */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  background: var(--blue);
  color: var(--white);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
  border: 2px solid var(--blue);
  border-radius: 8px;
  position: relative;
  transition: var(--transition);
  cursor: none;
}

.btn-primary .btn-shadow {
  position: absolute;
  inset: 0;
  border-radius: 6px;
  background: var(--blue-dark);
  transform: translate(4px, 4px);
  z-index: -1;
  transition: var(--transition);
}

.btn-primary:hover {
  transform: translate(-2px, -2px);
  background: var(--blue-dark);
}

.btn-primary:hover .btn-shadow {
  transform: translate(6px, 6px);
}

.btn-primary:active {
  transform: translate(2px, 2px);
}

.btn-primary:active .btn-shadow {
  transform: translate(2px, 2px);
}

.btn-xl { padding: 18px 36px; font-size: 1.1rem; }

.btn-ghost {
  display: inline-flex;
  align-items: center;
  padding: 14px 28px;
  border: 2px solid rgba(255,255,255,0.2);
  color: var(--text-primary);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: 8px;
  transition: var(--transition);
  cursor: none;
}

.btn-ghost:hover {
  border-color: var(--blue);
  color: var(--blue);
}

.btn-ghost-white {
  display: inline-flex;
  align-items: center;
  padding: 18px 32px;
  border: 2px solid rgba(255,255,255,0.3);
  color: var(--white);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1rem;
  border-radius: 8px;
  transition: var(--transition);
  cursor: none;
}

.btn-ghost-white:hover {
  border-color: var(--white);
  background: rgba(255,255,255,0.05);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  padding: 14px 32px;
  border: 2px solid var(--blue);
  color: var(--blue);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  border-radius: 8px;
  transition: var(--transition);
  cursor: none;
  position: relative;
}

.btn-outline::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 6px;
  background: var(--blue-dark);
  transform: translate(4px, 4px);
  z-index: -1;
  transition: var(--transition);
}

.btn-outline:hover {
  background: var(--blue);
  color: var(--white);
  transform: translate(-2px, -2px);
}

.btn-outline:hover::after {
  transform: translate(6px, 6px);
}

/* --- IMAGE PLACEHOLDERS --- */
.img-placeholder {
  width: 100%;
  height: 100%;
  min-height: 200px;
  background: linear-gradient(135deg, var(--dark-2) 0%, var(--dark-3) 100%);
  border: 2px dashed rgba(94, 145, 247, 0.3);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.img-placeholder.ph-dark {
  background: linear-gradient(135deg, #0d0d12 0%, #1a1a24 100%);
}

.img-placeholder.ph-accent {
  background: linear-gradient(135deg, #1a1040 0%, #2a1f60 100%);
}

.img-placeholder.ph-blue {
  background: linear-gradient(135deg, #0d2050 0%, #1a3880 100%);
}

.img-placeholder.ph-warm {
  background: linear-gradient(135deg, #201208 0%, #3a2010 100%);
}

.placeholder-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  opacity: 0.5;
}

.ph-icon { font-size: 2.5rem; }

.placeholder-content span {
  font-size: 0.8rem;
  color: var(--text-muted);
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* --- SCROLL REVEAL ANIMATIONS --- */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(60px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}

/* Stagger delay helpers */
.reveal:nth-child(1) { transition-delay: 0s; }
.reveal:nth-child(2) { transition-delay: 0.08s; }
.reveal:nth-child(3) { transition-delay: 0.16s; }
.reveal:nth-child(4) { transition-delay: 0.24s; }
.reveal:nth-child(5) { transition-delay: 0.32s; }
.reveal:nth-child(6) { transition-delay: 0.40s; }
.reveal:nth-child(7) { transition-delay: 0.48s; }
.reveal:nth-child(8) { transition-delay: 0.56s; }

/* ===================================
   NAVBAR
=================================== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 20px 0;
  transition: var(--transition);
}

.navbar.scrolled {
  background: rgba(17, 17, 20, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 14px 0;
  border-bottom: 1px solid var(--dark-border);
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo-placeholder {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: none;
}

.logo-icon {
  font-size: 1.6rem;
  color: var(--blue);
  line-height: 1;
}

.logo-text {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.25rem;
  letter-spacing: -0.02em;
  color: var(--white);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-secondary);
  transition: var(--transition);
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--blue);
  transition: var(--transition);
}

.nav-links a:hover {
  color: var(--text-primary);
}

.nav-links a:hover::after { width: 100%; }

.nav-cta {
  padding: 10px 22px !important;
  background: var(--blue) !important;
  color: var(--white) !important;
  border-radius: 6px;
  font-family: var(--font-display);
  font-weight: 700 !important;
  font-size: 0.875rem !important;
  transition: var(--transition) !important;
}

.nav-cta::after { display: none !important; }

.nav-cta:hover {
  background: var(--blue-dark) !important;
  transform: translateY(-1px);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: none;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-primary);
  transition: var(--transition);
}

/* ===================================
   HERO SECTION
=================================== */
.hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  background: var(--dark);
}

/* Floating shapes */
.shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  animation: float 8s ease-in-out infinite;
  pointer-events: none;
  z-index: 0;
}

.shape-1 {
  width: 400px; height: 400px;
  background: rgba(94, 145, 247, 0.12);
  top: -100px; right: -100px;
  animation-delay: 0s;
}

.shape-2 {
  width: 300px; height: 300px;
  background: rgba(94, 145, 247, 0.08);
  bottom: 100px; left: -80px;
  animation-delay: 2s;
}

.shape-3 {
  width: 200px; height: 200px;
  background: rgba(160, 191, 252, 0.1);
  top: 40%; right: 20%;
  animation-delay: 4s;
}

.shape-4 {
  width: 100px; height: 100px;
  background: rgba(94, 145, 247, 0.2);
  top: 20%; left: 30%;
  animation-delay: 1s;
  animation-duration: 6s;
}

.shape-5 {
  width: 150px; height: 150px;
  background: rgba(94, 145, 247, 0.06);
  bottom: 30%; right: 10%;
  animation-delay: 3s;
}

@keyframes float {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  33% { transform: translateY(-20px) rotate(3deg); }
  66% { transform: translateY(10px) rotate(-2deg); }
}

.grid-overlay {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(94, 145, 247, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(94, 145, 247, 0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
  z-index: 0;
}

.hero-inner {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  padding: 120px 24px 60px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-left { display: flex; flex-direction: column; gap: 0; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: rgba(94, 145, 247, 0.1);
  border: 1px solid rgba(94, 145, 247, 0.3);
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--blue-light);
  margin-bottom: 24px;
  width: fit-content;
}

.badge-dot {
  width: 8px;
  height: 8px;
  background: #4ade80;
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}

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

.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(3rem, 6vw, 5.5rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
  overflow: hidden;
}

.line-wrap {
  display: block;
  overflow: hidden;
}

.line {
  display: block;
  animation: lineReveal 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
  animation-delay: var(--delay, 0.2s);
  opacity: 0;
  transform: translateY(100%);
}

.line-wrap:nth-child(1) .line { --delay: 0.3s; }
.line-wrap:nth-child(2) .line { --delay: 0.5s; }
.line-wrap:nth-child(3) .line { --delay: 0.7s; }

.line-wrap.accent .line { color: var(--blue); }

@keyframes lineReveal {
  to { opacity: 1; transform: translateY(0); }
}

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

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

.hero-stats {
  display: flex;
  align-items: center;
  gap: 24px;
}

.stat {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.stat-num {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
}

.stat span { color: var(--blue); font-size: 1.2rem; font-weight: 700; }

.stat p {
  font-size: 0.75rem;
  color: var(--text-muted);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.1);
}

/* Hero right */
.hero-right { position: relative; }

.hero-visual {
  position: relative;
  width: 100%;
  aspect-ratio: 4/3;
}

.hero-card-main {
  width: 90%;
  height: 100%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 2px solid rgba(255,255,255,0.08);
  box-shadow: 0 40px 80px rgba(0,0,0,0.5), var(--shadow-brutal-lg);
  animation: heroFloat 6s ease-in-out infinite;
}

.hero-img {
  width: 100%;
  height: 100%;
  min-height: 300px;
  object-fit: cover;
  display: block;
  border-radius: var(--radius-lg);
}

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

/* Floating cards */
.float-card {
  position: absolute;
  background: rgba(24, 24, 29, 0.9);
  border: 2px solid rgba(94, 145, 247, 0.25);
  backdrop-filter: blur(20px);
  border-radius: var(--radius);
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.3);
  animation: cardFloat 5s ease-in-out infinite;
  z-index: 2;
}

.fc-1 {
  bottom: 10%;
  right: -5%;
  animation-delay: 0.5s;
}

.fc-2 {
  top: 10%;
  right: -8%;
  animation-delay: 1s;
  animation-duration: 7s;
}

.fc-3 {
  top: 50%;
  left: -8%;
  animation-delay: 1.5s;
  animation-duration: 6s;
}

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

.fc-icon { font-size: 1.4rem; }

.fc-title {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-primary);
}

.fc-sub {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.fc-big {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--blue);
  line-height: 1;
}

.fc-avatar-row { display: flex; gap: -4px; }

.fc-avatar {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: 700;
  color: white;
  border: 2px solid var(--dark-2);
  margin-left: -6px;
}

.fc-avatar:first-child { margin-left: 0; background: var(--blue-dark); }
.fc-avatar:last-child { background: #7c5cf7; }

.float-tag {
  position: absolute;
  background: var(--blue);
  color: white;
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 100px;
  z-index: 2;
  animation: tagFloat 4s ease-in-out infinite;
}

.float-tag:first-of-type {
  top: 5%;
  left: 10%;
  animation-delay: 0s;
}

.ft-2 {
  bottom: 25%;
  left: 2%;
  background: var(--dark-3) !important;
  border: 2px solid rgba(94,145,247,0.4);
  animation-delay: 2s;
}

@keyframes tagFloat {
  0%, 100% { transform: translateY(0) rotate(-2deg); }
  50% { transform: translateY(-6px) rotate(2deg); }
}

/* Ticker */
.ticker-wrap {
  position: relative;
  z-index: 1;
  width: 100%;
  overflow: hidden;
  background: var(--blue);
  border-top: 2px solid var(--blue-dark);
  border-bottom: 2px solid var(--blue-dark);
  padding: 14px 0;
}

.ticker-track {
  display: inline-flex;
  gap: 40px;
  white-space: nowrap;
  animation: ticker 30s linear infinite;
}

.ticker-track span {
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 700;
  color: white;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.tick-sep {
  opacity: 0.6;
}

@keyframes ticker {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ===================================
   ABOUT SECTION
=================================== */
.about {
  background: var(--dark-2);
  border-top: 1px solid var(--dark-border);
  border-bottom: 1px solid var(--dark-border);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.about-left {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.about-desc {
  color: var(--text-secondary);
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 20px;
}

.about-desc:last-of-type { margin-bottom: 32px; }

.about-right {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.about-img-block {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: visible;
}

.about-img {
  width: 100%;
  height: 340px;
  object-fit: cover;
  display: block;
  border-radius: var(--radius-lg);
  border: 2px solid rgba(94, 145, 247, 0.15);
  box-shadow: var(--shadow-brutal-lg);
}

.about-badge {
  position: absolute;
  background: var(--dark);
  border: 2px solid var(--blue);
  border-radius: var(--radius);
  padding: 12px 18px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  font-weight: 700;
  box-shadow: var(--shadow-brutal);
  z-index: 2;
}

.ab-1 { bottom: -16px; left: 20px; }
.ab-2 { top: -16px; right: 20px; }

.ab-num {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--blue);
}

.about-stats-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.astat-card {
  background: var(--dark-3);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius);
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  transition: var(--transition);
}

.astat-card:hover {
  border-color: var(--blue);
  transform: translateY(-3px);
  box-shadow: var(--shadow-brutal);
}

.astat-num {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--blue);
  line-height: 1;
}

.astat-label {
  font-size: 0.8rem;
  color: var(--text-muted);
  font-weight: 500;
}

/* ===================================
   SERVICES SECTION
=================================== */
.services { background: var(--dark); }

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

.service-card {
  background: var(--dark-2);
  border: 2px solid rgba(255,255,255,0.07);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  position: relative;
  overflow: hidden;
  transition: var(--transition);
  cursor: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--blue);
  transform: scaleX(0);
  transform-origin: left;
  transition: var(--transition);
}

.service-card:hover {
  border-color: rgba(94, 145, 247, 0.4);
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.3), var(--shadow-brutal-lg);
}

.service-card:hover::before { transform: scaleX(1); }

.sc-large {
  grid-column: span 2;
}

.sc-icon {
  font-size: 2.2rem;
  line-height: 1;
  margin-bottom: 4px;
}

.service-card h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-primary);
}

.service-card p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.65;
  flex: 1;
}

.sc-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: auto;
}

.sc-tags span {
  font-size: 0.7rem;
  font-weight: 600;
  padding: 4px 10px;
  background: rgba(94, 145, 247, 0.1);
  color: var(--blue-light);
  border-radius: 100px;
  border: 1px solid rgba(94, 145, 247, 0.2);
}

.sc-arrow {
  position: absolute;
  top: 28px;
  right: 28px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: var(--text-muted);
  transition: var(--transition);
}

.service-card:hover .sc-arrow {
  background: var(--blue);
  border-color: var(--blue);
  color: white;
  transform: rotate(45deg);
}

.sc-bg-shape {
  position: absolute;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(94, 145, 247, 0.05) 0%, transparent 70%);
  bottom: -60px;
  right: -60px;
  pointer-events: none;
  transition: var(--transition);
}

.service-card:hover .sc-bg-shape {
  background: radial-gradient(circle, rgba(94, 145, 247, 0.12) 0%, transparent 70%);
  transform: scale(1.3);
}

/* Service Card Images */
.sc-img-wrap {
  width: 100%;
  height: 160px;
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 4px;
  border: 1px solid rgba(255,255,255,0.06);
}

.sc-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.service-card:hover .sc-img-wrap img {
  transform: scale(1.08);
}

.sc-large .sc-img-wrap {
  height: 200px;
}

.sc-cta-card {
  background: linear-gradient(135deg, rgba(94,145,247,0.15) 0%, rgba(94,145,247,0.05) 100%);
  border-color: rgba(94, 145, 247, 0.3) !important;
  align-items: flex-start;
  justify-content: center;
}

.sc-cta-inner {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.sc-cta-label {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--blue-light);
}

.sc-cta-inner h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 800;
}

/* ===================================
   PORTFOLIO SECTION
=================================== */
.portfolio { background: var(--dark-2); }

.portfolio-filters {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.pf-btn {
  padding: 8px 22px;
  background: transparent;
  border: 2px solid rgba(255,255,255,0.1);
  color: var(--text-secondary);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.85rem;
  border-radius: 100px;
  cursor: none;
  transition: var(--transition);
}

.pf-btn:hover, .pf-btn.active {
  background: var(--blue);
  border-color: var(--blue);
  color: white;
}

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

.p-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--dark-3);
  border: 2px solid rgba(255,255,255,0.06);
  transition: var(--transition);
  cursor: none;
}

.p-card:hover {
  transform: translateY(-6px);
  border-color: rgba(94, 145, 247, 0.3);
  box-shadow: 0 24px 48px rgba(0,0,0,0.4), var(--shadow-brutal-lg);
}

.p-card-lg {
  grid-column: span 2;
}

.p-img {
  position: relative;
  aspect-ratio: 16/10;
  overflow: hidden;
}

.p-card-lg .p-img {
  aspect-ratio: 16/8;
}

.p-img .img-placeholder {
  border-radius: 0;
  border: none;
  height: 100%;
  min-height: unset;
  transition: transform 0.5s ease;
}

.p-card:hover .p-img .img-placeholder,
.p-card:hover .p-img .p-img-actual {
  transform: scale(1.05);
}

.p-img-actual {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
  display: block;
}

.p-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,10,14,0.95) 0%, rgba(10,10,14,0.4) 60%, transparent 100%);
  display: flex;
  align-items: flex-end;
  padding: 24px;
  opacity: 0;
  transition: var(--transition-slow);
}

.p-card:hover .p-overlay { opacity: 1; }

.p-overlay-inner {
  transform: translateY(20px);
  transition: transform 0.4s ease;
}

.p-card:hover .p-overlay-inner {
  transform: translateY(0);
}

.p-tag {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--blue-light);
  display: block;
  margin-bottom: 6px;
}

.p-overlay-inner h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 800;
  color: white;
  margin-bottom: 6px;
}

.p-overlay-inner p {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.7);
  margin-bottom: 12px;
  line-height: 1.4;
}

.p-link {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--blue);
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: var(--transition);
}

.p-link:hover { gap: 8px; }

.p-meta {
  padding: 16px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.p-cat {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-muted);
}

.p-year {
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--blue);
}

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

/* ===================================
   WHY US SECTION
=================================== */
.why-us {
  background: var(--dark);
  position: relative;
  overflow: hidden;
}

.why-bg-glow {
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(94, 145, 247, 0.08) 0%, transparent 70%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.why-img-wrap {
  position: relative;
}

.why-img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  display: block;
  border-radius: var(--radius-lg);
  border: 2px solid rgba(94, 145, 247, 0.15);
  box-shadow: var(--shadow-brutal-lg);
}

.why-accent-card {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--blue);
  border: 2px solid var(--blue-dark);
  border-radius: var(--radius);
  padding: 16px 24px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  box-shadow: 4px 4px 0 var(--black);
  z-index: 2;
}

.why-ac-num {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 800;
  color: white;
  line-height: 1;
}

.why-ac-label {
  font-size: 0.8rem;
  font-weight: 600;
  color: rgba(255,255,255,0.8);
}

.why-right {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.why-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 20px;
  border-radius: var(--radius);
  transition: var(--transition);
  border: 1px solid transparent;
}

.why-item:hover {
  background: rgba(94, 145, 247, 0.05);
  border-color: rgba(94, 145, 247, 0.2);
}

.why-icon {
  font-size: 1.6rem;
  width: 48px;
  height: 48px;
  background: var(--dark-2);
  border: 2px solid rgba(94, 145, 247, 0.2);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: var(--transition);
}

.why-item:hover .why-icon {
  border-color: var(--blue);
  background: rgba(94, 145, 247, 0.1);
}

.why-item h4 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 6px;
}

.why-item p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.65;
}

/* ===================================
   PROCESS SECTION
=================================== */
.process {
  background: var(--dark-2);
  border-top: 1px solid var(--dark-border);
  border-bottom: 1px solid var(--dark-border);
}

.process-steps {
  display: flex;
  align-items: center;
  gap: 0;
  justify-content: center;
}

.process-step {
  flex: 1;
  max-width: 240px;
  background: var(--dark-3);
  border: 2px solid rgba(255,255,255,0.07);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  text-align: center;
  position: relative;
  transition: var(--transition);
  cursor: default;
}

.process-step:hover {
  border-color: var(--blue);
  transform: translateY(-6px);
  box-shadow: var(--shadow-brutal-lg);
}

.ps-num {
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  color: var(--blue);
  margin-bottom: 16px;
}

.ps-icon {
  font-size: 2.4rem;
  margin-bottom: 16px;
  display: block;
}

.process-step h4 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.process-step p {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

.process-connector {
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, var(--blue), rgba(94, 145, 247, 0.2));
  flex-shrink: 0;
  position: relative;
}

.process-connector::after {
  content: '›';
  position: absolute;
  right: -8px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--blue);
  font-size: 1.2rem;
  line-height: 1;
}

/* ===================================
   TESTIMONIALS
=================================== */
.testimonials { background: var(--dark); }

.testimonials-slider {
  position: relative;
  overflow: hidden;
}

.tslider-track {
  display: flex;
  gap: 24px;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.t-card {
  min-width: calc(33.333% - 16px);
  background: var(--dark-2);
  border: 2px solid rgba(255,255,255,0.07);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  transition: var(--transition);
  flex-shrink: 0;
}

.t-card:hover {
  border-color: rgba(94, 145, 247, 0.3);
  transform: translateY(-4px);
  box-shadow: var(--shadow-brutal);
}

.t-stars {
  font-size: 1.1rem;
  color: #fbbf24;
  letter-spacing: 2px;
}

.t-quote {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.8;
  font-style: italic;
  flex: 1;
}

.t-author {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,0.07);
}

.t-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1rem;
  color: white;
  border: 2px solid rgba(255,255,255,0.1);
  flex-shrink: 0;
}

.t-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--text-primary);
}

.t-role {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.tslider-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 36px;
}

.tslider-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.15);
  background: none;
  color: var(--text-primary);
  font-size: 1.1rem;
  cursor: none;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
}

.tslider-btn:hover {
  border-color: var(--blue);
  color: var(--blue);
  background: rgba(94, 145, 247, 0.1);
}

.tslider-dots {
  display: flex;
  gap: 8px;
}

.tslider-dot {
  width: 8px;
  height: 8px;
  border-radius: 100px;
  background: rgba(255,255,255,0.2);
  cursor: none;
  transition: var(--transition);
}

.tslider-dot.active {
  background: var(--blue);
  width: 24px;
}

/* ===================================
   CTA BANNER
=================================== */
.cta-banner {
  background: var(--dark-2);
  border-top: 1px solid var(--dark-border);
  border-bottom: 1px solid var(--dark-border);
  position: relative;
  overflow: hidden;
  padding: 120px 0;
}

.cta-glow {
  position: absolute;
  width: 800px;
  height: 800px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(94, 145, 247, 0.12) 0%, transparent 70%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.cta-grid-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(94, 145, 247, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(94, 145, 247, 0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}

.cta-inner {
  position: relative;
  z-index: 1;
  text-align: center;
}

.cta-label {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--blue);
  margin-bottom: 16px;
}

.cta-headline {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.05;
  margin-bottom: 20px;
}

.cta-sub {
  font-size: 1.05rem;
  color: var(--text-secondary);
  margin-bottom: 40px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.cta-actions {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}

.cta-chips {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
}

.cta-chips span {
  padding: 8px 18px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--text-secondary);
}

/* ===================================
   FOOTER
=================================== */
.footer {
  background: var(--dark-3);
  border-top: 2px solid rgba(94, 145, 247, 0.2);
  padding: 80px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 60px;
  padding-bottom: 60px;
  border-bottom: 1px solid var(--dark-border);
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-tagline {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
  max-width: 280px;
}

.footer-socials {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.social-link {
  width: 40px;
  height: 40px;
  border: 2px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--text-muted);
  transition: var(--transition);
  cursor: none;
}

.social-link:hover {
  border-color: var(--blue);
  color: var(--blue);
  background: rgba(94, 145, 247, 0.1);
  transform: translateY(-2px);
}

.footer-col h5 {
  font-family: var(--font-display);
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-primary);
  margin-bottom: 20px;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col li a {
  font-size: 0.9rem;
  color: var(--text-muted);
  transition: var(--transition);
  cursor: none;
}

.footer-col li a:hover { color: var(--blue); padding-left: 4px; }

.footer-contact li {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.footer-status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  color: #4ade80;
  font-weight: 500;
  margin-top: 16px;
}

.status-dot {
  width: 8px;
  height: 8px;
  background: #4ade80;
  border-radius: 50%;
  animation: pulse 2s infinite;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 0;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.footer-bottom-links {
  display: flex;
  gap: 24px;
}

.footer-bottom-links a {
  color: var(--text-muted);
  transition: var(--transition);
  cursor: none;
}

.footer-bottom-links a:hover { color: var(--blue); }

/* ===================================
   RESPONSIVE / MOBILE
=================================== */
@media (max-width: 1024px) {
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 60px;
    text-align: center;
  }

  .hero-left { align-items: center; }
  .hero-badge { margin: 0 auto 24px; }
  .hero-sub { text-align: center; }
  .hero-stats { justify-content: center; }
  .hero-actions { justify-content: center; }
  .hero-right { display: none; }

  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .why-grid { grid-template-columns: 1fr; gap: 48px; }

  .services-grid { grid-template-columns: 1fr 1fr; }
  .sc-large { grid-column: span 1; }

  .portfolio-grid { grid-template-columns: 1fr 1fr; }
  .p-card-lg { grid-column: span 1; }

  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }

  .process-steps {
    flex-direction: column;
    gap: 20px;
  }

  .process-connector {
    width: 2px;
    height: 40px;
    background: linear-gradient(180deg, var(--blue), rgba(94, 145, 247, 0.2));
  }

  .process-connector::after {
    right: unset;
    left: 50%;
    bottom: -10px;
    top: unset;
    transform: translateX(-50%) rotate(90deg);
  }

  .t-card { min-width: calc(50% - 12px); }
}

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

  .nav-links {
    position: fixed;
    inset: 0;
    background: var(--dark);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 24px;
    transform: translateX(100%);
    transition: transform 0.4s ease;
    z-index: 999;
  }

  .nav-links.open { transform: translateX(0); }

  .nav-links a {
    font-size: 1.5rem;
    font-family: var(--font-display);
    font-weight: 700;
  }

  .nav-cta {
    font-size: 1.2rem !important;
    padding: 16px 32px !important;
  }

  .hamburger { display: flex; z-index: 1001; }
  .hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .hamburger.open span:nth-child(2) { opacity: 0; }
  .hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

  .hero-inner { padding: 100px 24px 60px; }

  .services-grid { grid-template-columns: 1fr; }
  .sc-large { grid-column: span 1; }

  .portfolio-grid { grid-template-columns: 1fr; }
  .p-card-lg { grid-column: span 1; }

  .about-stats-row { grid-template-columns: 1fr 1fr; }

  .footer-grid { grid-template-columns: 1fr; gap: 32px; }

  .footer-bottom {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }

  .t-card { min-width: 100%; }

  .cta-headline { font-size: 2.2rem; }

  .hero-headline { font-size: 2.8rem; }
}

@media (max-width: 480px) {
  .hero-stats { flex-direction: column; align-items: center; gap: 16px; }
  .stat-divider { width: 40px; height: 1px; }
  .hero-actions { flex-direction: column; width: 100%; }
  .btn-primary, .btn-ghost { width: 100%; justify-content: center; }
  .cta-actions { flex-direction: column; align-items: center; }
  .btn-ghost-white { width: 100%; justify-content: center; }
}
