/* ============================================
   VELORA CREATIVE — Modern Agency Website
   Colors: piano black · vivid red · light red
   ============================================ */

:root {
  --forest: #E31B23;
  --deep: #0a0a0a;
  --white: #ffffff;
  --teal: #E31B23;
  --emerald: #FF6B6B;
  --amber: #FF6B6B;
  --gold: #E31B23;
  --bg: #0a0a0a;
  --bg-elevated: #141414;
  --bg-card: rgba(227, 27, 35, 0.07);
  --border: rgba(227, 27, 35, 0.18);
  --border-hover: rgba(227, 27, 35, 0.45);
  --text: #f5f5f5;
  --text-muted: rgba(245, 245, 245, 0.64);
  --accent-1: #E31B23;
  --accent-2: #FF6B6B;
  --accent-3: #FF6B6B;
  --red: #E31B23;
  --gradient: linear-gradient(135deg, var(--emerald), var(--teal), var(--gold));
  --gradient-text: linear-gradient(135deg, var(--emerald), var(--teal), #FF9B9B);
  --radius: 16px;
  --radius-lg: 24px;
  --font-display: 'Space Grotesk', sans-serif;
  --font-body: 'Inter', sans-serif;
  --header-height: 80px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-height);
}

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
  text-decoration: none;
}

ul { list-style: none; }

img { max-width: 100%; display: block; }

.container {
  width: min(1200px, 92vw);
  margin-inline: auto;
}

/* Grain overlay */
.grain {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9999;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
}

/* Cursor glow */
.cursor-glow {
  position: fixed;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(227, 27, 35, 0.12) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
  transform: translate(-50%, -50%);
  transition: opacity 0.3s;
}

/* Typography */
.gradient-text {
  background: var(--gradient-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-tag {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-1);
  margin-bottom: 1rem;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.section-desc {
  color: var(--text-muted);
  font-size: 1.1rem;
  max-width: 520px;
  margin-top: 1rem;
}

.section-header.center {
  text-align: center;
}

.section-header.center .section-desc {
  margin-inline: auto;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border-radius: 100px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
}

.btn-primary {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--emerald), var(--teal) 40%, var(--gold) 75%, var(--teal));
  background-size: 180% 180%;
  background-position: 0% 50%;
  color: white;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
  box-shadow: 0 4px 24px rgba(227, 27, 35, 0.32);
  transition: background-position 0.6s ease, transform var(--transition), box-shadow var(--transition);
}

.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, transparent 30%, rgba(255, 255, 255, 0.35) 50%, transparent 70%);
  transform: translateX(-120%);
  transition: transform 0.7s ease;
}

.btn-primary:hover {
  background-position: 100% 50%;
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 8px 32px rgba(255, 107, 107, 0.4);
}

.btn-primary:hover::before {
  transform: translateX(120%);
}

.btn-ghost {
  position: relative;
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border);
  transition: var(--transition), border-color 0.4s;
}

.btn-ghost:hover {
  border-color: transparent;
  color: #fff;
  background: var(--gradient);
}

.btn-outline {
  --border-w: 1.5px;
  position: relative;
  z-index: 0;
  color: var(--accent-1);
  border: var(--border-w) solid transparent;
  padding: 0.85rem 2rem;
}

.btn-outline::before {
  content: '';
  position: absolute;
  inset: calc(-1 * var(--border-w));
  border-radius: 100px;
  background: var(--gradient);
  z-index: -2;
}

.btn-outline::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 100px;
  background: var(--bg);
  z-index: -1;
  transition: opacity 0.35s ease;
}

.btn-outline:hover {
  color: #fff;
}

.btn-outline:hover::after {
  opacity: 0;
}

.btn-lg {
  padding: 1rem 2rem;
  font-size: 1rem;
}

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

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--header-height);
  transition: var(--transition);
}

.header.scrolled {
  background: rgba(10, 10, 10, 0.85);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--red);
  box-shadow: 0 4px 24px rgba(227, 27, 35, 0.15);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
}

.logo em {
  font-style: normal;
  color: var(--red);
  font-weight: 600;
}

.logo-icon {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--deep);
  border: 2px solid var(--red);
  box-shadow: 0 0 12px rgba(227, 27, 35, 0.55);
  border-radius: 10px;
  color: var(--red);
  font-size: 0.85rem;
  letter-spacing: -0.02em;
  font-weight: 800;
  font-family: var(--font-display);
}

.nav-links {
  display: flex;
  gap: 2.5rem;
}

.nav-links a {
  font-size: 0.95rem;
  color: var(--text-muted);
  transition: color var(--transition);
  position: relative;
}

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

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

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

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

.nav-cta {
  padding: 0.6rem 1.25rem;
  font-size: 0.9rem;
}

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

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

.menu-toggle.active span:first-child {
  transform: rotate(45deg) translate(3px, 3px);
}

.menu-toggle.active span:last-child {
  transform: rotate(-45deg) translate(3px, -3px);
}

/* Hero */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: var(--header-height);
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  animation: float 8s ease-in-out infinite;
}

.orb-1 {
  width: 600px;
  height: 600px;
  background: rgba(227, 27, 35, 0.16);
  top: -200px;
  right: -100px;
}

.orb-2 {
  width: 400px;
  height: 400px;
  background: rgba(255, 107, 107, 0.14);
  bottom: -100px;
  left: -100px;
  animation-delay: -3s;
}

.orb-3 {
  width: 300px;
  height: 300px;
  background: rgba(255, 107, 107, 0.12);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation-delay: -5s;
}

@keyframes float {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(30px, -30px) scale(1.05); }
  66% { transform: translate(-20px, 20px) scale(0.95); }
}

.grid-lines {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.05) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse at center, black 20%, transparent 70%);
}

.hero-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  padding-block: 4rem;
  min-height: calc(100vh - var(--header-height));
}

.hero-content {
  position: relative;
  z-index: 1;
  padding-block: 0;
}

.hero-globe {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 420px;
}

.growth-scene {
  position: relative;
  width: min(420px, 80vw);
  height: min(420px, 80vw);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 8%;
}

.growth-glow {
  position: absolute;
  inset: -10%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(227, 27, 35, 0.16) 0%, rgba(255, 107, 107, 0.06) 45%, transparent 72%);
  animation: atmospherePulse 4s ease-in-out infinite;
}

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

.growth-grid {
  position: absolute;
  left: 4%;
  right: 4%;
  bottom: 8%;
  height: 78%;
  background-image: repeating-linear-gradient(0deg, rgba(227, 27, 35, 0.14) 0, rgba(227, 27, 35, 0.14) 1px, transparent 1px, transparent 25%);
  pointer-events: none;
}

.growth-bars {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: clamp(6px, 2vw, 14px);
  width: 100%;
  height: 78%;
  padding-inline: 6%;
}

.growth-bar {
  position: relative;
  flex: 1 1 0;
  max-width: 36px;
  height: 6%;
  border-radius: 8px 8px 3px 3px;
  background: linear-gradient(180deg, var(--emerald), var(--teal) 55%, var(--gold));
  box-shadow: 0 0 18px rgba(227, 27, 35, 0.35);
  transition: height 1.1s cubic-bezier(0.16, 1, 0.3, 1);
}

.growth-bar::after {
  content: '';
  position: absolute;
  top: -4px;
  left: 50%;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #fff;
  transform: translateX(-50%);
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.9), 0 0 20px rgba(227, 27, 35, 0.8);
  animation: capPulse 2.4s ease-in-out infinite;
}

.growth-bar:nth-child(1) { transition-delay: 0.02s; }
.growth-bar:nth-child(2) { transition-delay: 0.09s; }
.growth-bar:nth-child(3) { transition-delay: 0.16s; }
.growth-bar:nth-child(4) { transition-delay: 0.23s; }
.growth-bar:nth-child(5) { transition-delay: 0.3s; }
.growth-bar:nth-child(6) { transition-delay: 0.37s; }
.growth-bar:nth-child(7) { transition-delay: 0.44s; }
.growth-bar:nth-child(8) { transition-delay: 0.51s; }

@keyframes capPulse {
  0%, 100% { opacity: 0.6; transform: translateX(-50%) scale(0.85); }
  50% { opacity: 1; transform: translateX(-50%) scale(1.15); }
}

.hero-globe.visible .growth-bar {
  height: var(--h);
}

.growth-trend {
  position: absolute;
  top: 6%;
  right: 8%;
  color: var(--teal);
  opacity: 0.85;
  filter: drop-shadow(0 0 8px rgba(227, 27, 35, 0.5));
  animation: floatArrow 3s ease-in-out infinite;
}

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

.growth-badge {
  position: absolute;
  top: 40%;
  left: 50%;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.15rem;
  padding: 1rem 1.4rem;
  transform: translate(-50%, -50%);
  background: rgba(20, 20, 20, 0.82);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(227, 27, 35, 0.35);
  border-radius: 18px;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.3), inset 0 0 0 1px rgba(255, 255, 255, 0.12);
  text-align: center;
  white-space: nowrap;
}

.growth-badge-value {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 4vw, 2.4rem);
  font-weight: 700;
  line-height: 1;
  color: var(--teal);
}

.growth-badge-value .stat-num {
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
  color: inherit;
}

.growth-badge-label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.globe-tag {
  position: absolute;
  bottom: -2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.45rem 1rem;
  background: rgba(227, 27, 35, 0.08);
  border: 1px solid rgba(227, 27, 35, 0.22);
  border-radius: 100px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--teal);
  white-space: nowrap;
}

.globe-tag-dot {
  width: 6px;
  height: 6px;
  background: var(--amber);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.5rem 1rem 0.5rem 0.75rem;
  background: rgba(227, 27, 35, 0.1);
  border: 1px solid rgba(227, 27, 35, 0.3);
  border-radius: 100px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--amber);
  margin-bottom: 2rem;
}

.pulse {
  width: 8px;
  height: 8px;
  background: var(--teal);
  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(1.3); }
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 7vw, 5.5rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-bottom: 1.5rem;
}

.hero-title .line {
  display: block;
}

.hero-desc {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: var(--text-muted);
  max-width: 560px;
  margin-bottom: 2.5rem;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 4rem;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
  padding: 1.5rem 2rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(10px);
  width: fit-content;
}

.stat {
  display: flex;
  flex-direction: column;
}

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

.stat-suffix {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
}

.stat-label {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 0.25rem;
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: var(--border);
}

.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-muted);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  z-index: 1;
}

.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--accent-1), transparent);
  animation: scrollLine 2s ease-in-out infinite;
}

@keyframes scrollLine {
  0%, 100% { transform: scaleY(1); opacity: 1; }
  50% { transform: scaleY(0.5); opacity: 0.5; }
}

/* Marquee */
.marquee-section {
  padding: 2rem 0;
  border-block: 1px solid var(--border);
  overflow: hidden;
}

.marquee {
  overflow: hidden;
}

.marquee-track {
  display: flex;
  gap: 3rem;
  animation: marquee 25s linear infinite;
  white-space: nowrap;
}

.marquee-track span {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--text-muted);
  flex-shrink: 0;
}

.marquee-track span:nth-child(even) {
  color: var(--accent-1);
  opacity: 0.5;
}

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

/* Sections */
.section {
  padding: 7rem 0;
}

/* Services */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 4rem;
}

.service-card {
  position: relative;
  padding: 2rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: var(--transition);
}

.service-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-6px) scale(1.015);
  background: rgba(227, 27, 35, 0.06);
}

.service-card.featured {
  background: linear-gradient(135deg, rgba(227, 27, 35, 0.1), rgba(255, 107, 107, 0.06));
  border-color: rgba(227, 27, 35, 0.28);
}

.service-badge {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  padding: 0.25rem 0.75rem;
  background: var(--gradient);
  color: #fff;
  border-radius: 100px;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.service-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(227, 27, 35, 0.12);
  border-radius: 12px;
  margin-bottom: 1.5rem;
}

.service-icon svg {
  width: 24px;
  height: 24px;
  color: var(--accent-1);
}

.service-card h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.service-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.service-link {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--accent-1);
  transition: gap var(--transition);
}

.service-link:hover {
  color: var(--amber);
}

/* Work / Portfolio */
.work-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 280px;
  gap: 1.5rem;
  margin-top: 4rem;
}

.work-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: pointer;
  border: 1px solid var(--border);
}

.work-card.large {
  grid-column: span 2;
  grid-row: span 2;
}

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

.work-image {
  position: absolute;
  inset: 0;
  background: hsl(var(--hue, 350), 55%, 14%);
}

.work-visual {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 30% 40%, hsla(var(--hue, 350), 80%, 55%, 0.45) 0%, transparent 50%),
    radial-gradient(circle at 70% 60%, hsla(calc(var(--hue, 350) + 20), 70%, 50%, 0.35) 0%, transparent 50%),
    linear-gradient(135deg, hsl(var(--hue, 350), 40%, 10%), hsl(calc(var(--hue, 350) + 30), 35%, 12%));
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.work-card:hover .work-visual {
  transform: scale(1.08);
}

.work-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 2rem;
  background: linear-gradient(to top, rgba(10, 10, 10, 0.95) 0%, transparent 100%);
  transform: translateY(20px);
  opacity: 0;
  transition: var(--transition);
}

.work-card:hover .work-info {
  transform: translateY(0);
  opacity: 1;
}

.work-category {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #FF6B6B;
}

.work-info h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0.25rem 0 0.5rem;
  color: #fff;
}

.work-info p {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.9rem;
}

.work-cta {
  text-align: center;
  margin-top: 3rem;
}

/* About */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-visual {
  position: relative;
}

.about-card {
  aspect-ratio: 4/5;
  border-radius: var(--radius-lg);
  background: var(--bg-card);
  border: 1px solid var(--border);
  padding: 3rem;
  display: flex;
  align-items: flex-end;
  position: relative;
  overflow: hidden;
}

.about-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gradient);
  opacity: 0.08;
}

.about-card-inner {
  position: relative;
  z-index: 1;
}

.about-year {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--accent-1);
  margin-bottom: 1.5rem;
}

.about-quote {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 1rem;
}

.about-author {
  color: var(--text-muted);
  font-size: 0.9rem;
}

.about-floating {
  position: absolute;
  padding: 0.75rem 1.25rem;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: 100px;
  font-size: 0.85rem;
  font-weight: 600;
  backdrop-filter: blur(10px);
  animation: float 6s ease-in-out infinite;
}

.about-float-1 {
  top: 10%;
  right: -10%;
}

.about-float-2 {
  bottom: 15%;
  left: -5%;
  animation-delay: -2s;
}

.about-text {
  color: var(--text-muted);
  margin-bottom: 1rem;
  line-height: 1.7;
}

.about-features {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.about-features li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.95rem;
}

.about-features svg {
  width: 20px;
  height: 20px;
  color: var(--accent-1);
  flex-shrink: 0;
}

/* Testimonials */
.testimonials {
  background: var(--bg-elevated);
  border-block: 1px solid var(--border);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 4rem;
}

.testimonial {
  padding: 2rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: var(--transition);
}

.testimonial:hover {
  border-color: var(--border-hover);
  transform: translateY(-5px);
  box-shadow: 0 14px 32px rgba(227, 27, 35, 0.12);
}

.testimonial.featured {
  background: linear-gradient(135deg, rgba(227, 27, 35, 0.08), rgba(255, 107, 107, 0.05));
  border-color: rgba(227, 27, 35, 0.22);
}

.testimonial-stars {
  color: #FF6B6B;
  font-size: 0.9rem;
  letter-spacing: 2px;
  margin-bottom: 1rem;
}

.testimonial p {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  font-style: italic;
}

.testimonial footer {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: hsl(var(--hue, 350), 55%, 45%);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 700;
}

.testimonial cite {
  display: block;
  font-style: normal;
  font-weight: 600;
  font-size: 0.95rem;
}

.testimonial footer span {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* Contact */
.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
  align-items: start;
}

.contact-info p {
  color: var(--text-muted);
  margin: 1rem 0 2rem;
  line-height: 1.7;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--text-muted);
  font-size: 0.95rem;
  transition: color var(--transition);
}

a.contact-item:hover {
  color: var(--accent-1);
}

.contact-item svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  color: var(--accent-1);
}

.contact-form {
  padding: 2.5rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-group {
  margin-bottom: 1.25rem;
}

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
  color: var(--text-muted);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  background: rgba(227, 27, 35, 0.04);
  border: 1px solid var(--border);
  border-radius: 12px;
  color: var(--text);
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: var(--transition);
  outline: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(136, 136, 160, 0.6);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--accent-1);
  background: rgba(227, 27, 35, 0.07);
}

.form-group select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%238888a0' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
}

.form-group select option {
  background: var(--bg-elevated);
}

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

.form-success {
  text-align: center;
  color: #E31B23;
  font-weight: 600;
  font-size: 0.9rem;
  margin-top: 1rem;
}

/* Footer */
.footer {
  padding: 4rem 0 2rem;
  border-top: 1px solid var(--border);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-brand p {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin: 1rem 0 1.5rem;
  max-width: 280px;
}

.social-links {
  display: flex;
  gap: 0.75rem;
}

.social-links a {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border);
  border-radius: 10px;
  color: var(--text-muted);
  transition: var(--transition);
}

.social-links a:hover {
  border-color: transparent;
  color: #fff;
  background: var(--gradient);
  transform: translateY(-3px);
}

.social-links svg {
  width: 18px;
  height: 18px;
}

.footer-links h4 {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 1.25rem;
}

.footer-links li {
  margin-bottom: 0.75rem;
}

.footer-links a {
  color: var(--text-muted);
  font-size: 0.9rem;
  transition: color var(--transition);
}

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

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

.footer-made {
  opacity: 0.7;
}

/* Reveal animations */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1),
              transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform, opacity;
}

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

/* Directional / dynamic reveal variants */
.reveal-left { transform: translateX(-56px); }
.reveal-left.visible { transform: translateX(0); }

.reveal-right { transform: translateX(56px); }
.reveal-right.visible { transform: translateX(0); }

.reveal-scale { transform: scale(0.82) translateY(20px); }
.reveal-scale.visible { transform: scale(1) translateY(0); }

.reveal-rotate { transform: translateY(40px) rotate(-4deg); }
.reveal-rotate.visible { transform: translateY(0) rotate(0deg); }

.reveal-up-lg { transform: translateY(70px); }
.reveal-up-lg.visible { transform: translateY(0); }

/* Scroll progress bar */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 0%;
  background: var(--gradient);
  z-index: 1100;
  box-shadow: 0 0 12px rgba(227, 27, 35, 0.5);
  transition: width 0.1s linear;
}

/* Parallax-driven elements */
.parallax {
  will-change: transform;
}

/* Responsive */
@media (max-width: 1024px) {
  .hero-layout {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }

  .hero-content {
    order: 2;
  }

  .hero-globe {
    order: 1;
    min-height: 320px;
  }

  .hero-desc {
    margin-inline: auto;
  }

  .hero-actions {
    justify-content: center;
  }

  .hero-stats {
    margin-inline: auto;
  }

  .growth-scene {
    width: min(320px, 75vw);
    height: min(320px, 75vw);
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .work-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 240px;
  }

  .work-card.large {
    grid-column: span 2;
    grid-row: span 1;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .about-float-1 { right: 0; }
  .about-float-2 { left: 0; }

  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .contact-wrapper {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

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

@media (max-width: 768px) {
  .nav-links,
  .nav-cta {
    display: none;
  }

  .menu-toggle {
    display: flex;
  }

  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    inset: 0;
    top: var(--header-height);
    background: rgba(10, 10, 10, 0.98);
    backdrop-filter: blur(20px);
    padding: 2rem;
    gap: 1.5rem;
    z-index: 999;
  }

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

  .hero-stats {
    width: 100%;
    justify-content: space-between;
    padding: 1.25rem 1rem;
    gap: 0.5rem;
  }

  .stat {
    flex: 1 1 0;
    min-width: 0;
    align-items: center;
    text-align: center;
  }

  .stat-num,
  .stat-suffix {
    font-size: 1.5rem;
  }

  .stat-label {
    font-size: 0.72rem;
  }

  .stat-divider {
    display: none;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .work-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 220px;
  }

  .work-card.large,
  .work-card.wide {
    grid-column: span 1;
  }

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

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 0.5rem;
    text-align: center;
  }

  .scroll-indicator {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

/* ============================================
   Inner Page Styles
   ============================================ */

.page-hero {
  position: relative;
  padding: calc(var(--header-height) + 5rem) 0 4rem;
  overflow: hidden;
}

.page-hero.compact {
  padding-bottom: 3rem;
}

.page-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.page-hero-bg .orb-1 { width: 400px; height: 400px; top: -100px; right: 10%; }
.page-hero-bg .orb-2 { width: 300px; height: 300px; bottom: -50px; left: 5%; }

.page-hero-content {
  position: relative;
  z-index: 1;
}

.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
}

.page-hero p {
  color: var(--text-muted);
  font-size: 1.15rem;
  max-width: 600px;
  line-height: 1.7;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

.breadcrumb a:hover { color: var(--amber); }
.breadcrumb span { color: var(--amber); }

/* Process steps */
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}

.process-step {
  padding: 2rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  position: relative;
}

.process-num {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 800;
  background: var(--gradient-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 1rem;
}

.process-step h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

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

/* Service detail blocks */
.service-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  padding: 4rem 0;
  border-bottom: 1px solid var(--border);
}

.service-detail:nth-child(even) { direction: rtl; }
.service-detail:nth-child(even) > * { direction: ltr; }

.service-detail-visual {
  aspect-ratio: 4/3;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  background: var(--bg-card);
  position: relative;
  overflow: hidden;
}

.service-detail-visual::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gradient);
  opacity: 0.12;
}

.service-detail-list {
  margin-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.service-detail-list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--text-muted);
  font-size: 0.95rem;
}

.service-detail-list svg {
  width: 18px;
  height: 18px;
  color: var(--amber);
  flex-shrink: 0;
}

/* Portfolio filters */
.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 2rem;
  margin-bottom: 1rem;
}

.filter-btn {
  padding: 0.5rem 1.25rem;
  border-radius: 100px;
  border: 1px solid var(--border);
  background: transparent;
  color: var(--text-muted);
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition);
}

.filter-btn:hover,
.filter-btn.active {
  border-color: var(--teal);
  color: #fff;
  background: var(--gradient);
}

/* Team grid */
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}

.team-card {
  text-align: center;
  padding: 2rem 1.5rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: var(--transition);
}

.team-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 12px 32px rgba(227, 27, 35, 0.14);
}

.team-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  margin: 0 auto 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  background: var(--gradient);
  color: #fff;
}

.team-card h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  margin-bottom: 0.25rem;
}

.team-card .role {
  color: var(--amber);
  font-size: 0.85rem;
  font-weight: 500;
  margin-bottom: 0.75rem;
}

.team-card p {
  color: var(--text-muted);
  font-size: 0.85rem;
  line-height: 1.5;
}

/* Values grid */
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}

.value-card {
  padding: 2rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
}

.value-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 107, 107, 0.14);
  border-radius: 12px;
  margin-bottom: 1.25rem;
  font-size: 1.5rem;
}

.value-card h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  margin-bottom: 0.5rem;
}

.value-card p {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.6;
}

/* Blog grid */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}

.blog-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
}

.blog-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-6px);
  box-shadow: 0 16px 36px rgba(227, 27, 35, 0.14);
}

.blog-thumb {
  aspect-ratio: 16/10;
  background: linear-gradient(135deg, var(--forest), var(--teal));
  position: relative;
}

.blog-thumb.orange { background: linear-gradient(135deg, var(--emerald), var(--teal)); }
.blog-thumb.mixed { background: linear-gradient(135deg, var(--teal), var(--amber)); }

.blog-date {
  position: absolute;
  top: 1rem;
  left: 1rem;
  padding: 0.35rem 0.75rem;
  background: rgba(10, 10, 10, 0.75);
  color: #fff;
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 600;
}

.blog-body {
  padding: 1.5rem;
}

.blog-tag {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--amber);
  margin-bottom: 0.5rem;
}

.blog-body h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  line-height: 1.3;
  margin-bottom: 0.75rem;
}

.blog-body p {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.blog-link {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--teal);
}

.blog-link:hover { color: var(--amber); }

/* Career listings */
.career-list {
  margin-top: 3rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.career-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 1.75rem 2rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: var(--transition);
  flex-wrap: wrap;
}

.career-item:hover {
  border-color: var(--teal);
  background: rgba(227, 27, 35, 0.05);
}

.career-item h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  margin-bottom: 0.35rem;
}

.career-meta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.career-meta span {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.career-meta .tag {
  color: var(--amber);
  font-weight: 600;
}

/* Perks grid */
.perks-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}

.perk-card {
  padding: 1.75rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  text-align: center;
}

.perk-card .emoji {
  font-size: 2rem;
  margin-bottom: 0.75rem;
}

.perk-card h3 {
  font-family: var(--font-display);
  font-size: 1rem;
  margin-bottom: 0.5rem;
}

.perk-card p {
  color: var(--text-muted);
  font-size: 0.85rem;
}

/* Legal / prose */
.prose {
  max-width: 760px;
  margin: 0 auto;
  padding: 2rem 0 4rem;
}

.prose h2 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  margin: 2.5rem 0 1rem;
  color: var(--text);
}

.prose h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  margin: 1.5rem 0 0.75rem;
}

.prose p, .prose li {
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 1rem;
}

.prose ul {
  list-style: disc;
  padding-left: 1.5rem;
  margin-bottom: 1rem;
}

.prose ul li { margin-bottom: 0.5rem; }

/* CTA banner */
.cta-banner {
  padding: 4rem;
  background: linear-gradient(135deg, rgba(227, 27, 35, 0.15), rgba(255, 107, 107, 0.1));
  border: 1px solid rgba(227, 27, 35, 0.22);
  border-radius: var(--radius-lg);
  text-align: center;
  margin: 4rem 0;
}

.cta-banner h2 {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  margin-bottom: 1rem;
}

.cta-banner p {
  color: var(--text-muted);
  max-width: 500px;
  margin: 0 auto 2rem;
}

.cta-banner .hero-actions {
  justify-content: center;
  margin-bottom: 0;
}

/* Contact page extras */
.contact-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 4rem;
}

.contact-card {
  padding: 2rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  text-align: center;
}

.contact-card svg {
  width: 32px;
  height: 32px;
  color: var(--amber);
  margin-bottom: 1rem;
}

.contact-card h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.contact-card p, .contact-card a {
  color: var(--text-muted);
  font-size: 0.95rem;
}

.contact-card a:hover { color: var(--teal); }

.map-placeholder {
  aspect-ratio: 21/9;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  margin-top: 3rem;
}

@media (max-width: 1024px) {
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .values-grid, .blog-grid, .perks-grid, .contact-cards { grid-template-columns: repeat(2, 1fr); }
  .service-detail { grid-template-columns: 1fr; direction: ltr !important; }
  .service-detail:nth-child(even) { direction: ltr; }
}

@media (max-width: 768px) {
  .process-grid, .team-grid, .values-grid, .blog-grid, .perks-grid, .contact-cards {
    grid-template-columns: 1fr;
  }
  .career-item { flex-direction: column; align-items: flex-start; }
  .cta-banner { padding: 2.5rem 1.5rem; }
}

/* ============================================
   Homepage — Extra Content Sections
   ============================================ */

/* Why us */
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 4rem;
}

.why-card {
  padding: 2rem 1.75rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: var(--transition);
}

.why-card:hover {
  transform: translateY(-6px) rotate(-0.5deg);
  border-color: var(--border-hover);
  box-shadow: 0 16px 36px rgba(227, 27, 35, 0.14);
}

.why-icon {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  background: var(--gradient);
  color: #fff;
  margin-bottom: 1.25rem;
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.why-card:hover .why-icon {
  transform: rotate(-8deg) scale(1.08);
}

.why-icon svg { width: 24px; height: 24px; }

.why-card h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.6rem;
}

.why-card p {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.6;
}

/* Process timeline */
.timeline {
  position: relative;
  margin-top: 4.5rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.timeline-line {
  position: absolute;
  top: 27px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--border);
  z-index: 0;
}

.timeline-line-fill {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: var(--gradient);
  transform-origin: left center;
  transform: scaleX(0);
  transition: transform 1.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.timeline-line-fill.visible {
  transform: scaleX(1);
}

.timeline-step {
  position: relative;
  z-index: 1;
  text-align: center;
}

.timeline-num {
  width: 56px;
  height: 56px;
  margin: 0 auto 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--bg);
  border: 2px solid var(--accent-1);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--accent-1);
  transition: var(--transition);
}

.timeline-step:hover .timeline-num {
  background: var(--gradient);
  color: #fff;
  transform: scale(1.12);
}

.timeline-step h3 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  margin-bottom: 0.5rem;
}

.timeline-step p {
  color: var(--text-muted);
  font-size: 0.88rem;
  line-height: 1.55;
  max-width: 220px;
  margin-inline: auto;
}

/* Client / trust marquee */
.clients-marquee {
  padding: 3rem 0;
  border-block: 1px solid var(--border);
  overflow: hidden;
}

.client-pill {
  display: inline-flex;
  align-items: center;
  padding: 0.6rem 1.5rem;
  border: 1px solid var(--border);
  border-radius: 100px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1rem;
  color: var(--text-muted);
  flex-shrink: 0;
  transition: var(--transition);
}

.client-pill:hover {
  border-color: var(--accent-1);
  color: var(--accent-1);
  background: var(--bg-card);
}

.marquee-track.reverse {
  animation-direction: reverse;
  animation-duration: 30s;
}

/* Blog preview */
.blog-preview-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 4rem;
}

/* FAQ accordion */
.faq-list {
  max-width: 780px;
  margin: 4rem auto 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--bg-card);
  overflow: hidden;
  transition: border-color var(--transition);
}

.faq-item.open {
  border-color: var(--border-hover);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
}

.faq-icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--gradient);
  color: #fff;
  font-size: 1.1rem;
  line-height: 1;
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item.open .faq-icon {
  transform: rotate(135deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-answer p {
  padding: 0 1.5rem 1.5rem;
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.65;
}

/* Floating scroll-to-top */
.scroll-top-btn {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--gradient);
  color: #fff;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 900;
  opacity: 0;
  visibility: hidden;
  transform: translateY(16px) scale(0.85);
  transition: opacity 0.3s, transform 0.3s, visibility 0.3s;
  box-shadow: 0 8px 24px rgba(227, 27, 35, 0.35);
}

.scroll-top-btn.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}

.scroll-top-btn:hover {
  transform: translateY(-3px) scale(1.06);
}

.scroll-top-btn svg { width: 20px; height: 20px; }

@media (max-width: 1024px) {
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .timeline { grid-template-columns: repeat(2, 1fr); row-gap: 3rem; }
  .timeline-line { display: none; }
  .blog-preview-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .why-grid, .blog-preview-grid { grid-template-columns: 1fr; }
  .timeline { grid-template-columns: 1fr; }
  .faq-question { font-size: 0.92rem; }
  .scroll-top-btn { bottom: 1.25rem; right: 1.25rem; }
}

