/* =============================================
   Brandon Charles — UGC Portfolio
   Bold Creative · Warm Sand + Electric Orange
   Clash Display + Satoshi
   ============================================= */

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

:root {
  --bg: #F5F0EB;
  --dark: #1A1A2E;
  --accent: #FF6B35;
  --accent-hover: #E85A28;
  --blue: #004E89;
  --peach: #FFECD2;
  --ink: #1A1A2E;
  --ink-2: #4A4A5A;
  --ink-3: #6B6B7B;
  --border: #DDD6CC;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --radius: 24px;
}

html { scroll-behavior: auto; }

html.lenis, html.lenis body { height: auto; }

body {
  font-family: 'Satoshi', sans-serif;
  background: var(--bg);
  color: var(--ink);
  overflow-x: hidden;
  cursor: none;
}

a { color: inherit; text-decoration: none; }
img, video { display: block; max-width: 100%; }
button { font-family: inherit; cursor: none; border: none; background: none; }

/* -- GRAIN OVERLAY -- */
.grain {
  position: fixed; inset: 0; z-index: 9999; pointer-events: none; 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");
  background-repeat: repeat; background-size: 200px;
}

/* -- LOADING SCREEN -- */
.loader {
  position: fixed; inset: 0; z-index: 10000; background: var(--dark);
  display: flex; align-items: center; justify-content: center;
  transition: opacity 0.6s var(--ease), visibility 0.6s;
}
.loader.done { opacity: 0; visibility: hidden; pointer-events: none; }
.loader span {
  font-family: 'Clash Display', sans-serif; font-size: clamp(2rem, 5vw, 4rem);
  color: #fff; font-weight: 600; letter-spacing: -0.02em;
  animation: loaderPulse 1s ease-in-out infinite alternate;
}
@keyframes loaderPulse { 0% { opacity: 0.4; } 100% { opacity: 1; } }

/* -- CUSTOM CURSOR -- */
.cursor {
  position: fixed; top: 0; left: 0; z-index: 10001; pointer-events: none;
  width: 20px; height: 20px; border-radius: 50%;
  border: 1.5px solid var(--ink); background: transparent;
  transition: width 0.35s var(--ease), height 0.35s var(--ease),
              background 0.35s var(--ease), border-color 0.35s var(--ease);
  transform: translate(-50%, -50%); mix-blend-mode: difference;
}
.cursor.hovering {
  width: 60px; height: 60px;
  background: rgba(255,255,255,0.15); border-color: rgba(255,255,255,0.4);
}
@media (max-width: 768px) { .cursor { display: none !important; } body { cursor: auto; } a, button { cursor: pointer; } }

/* -- NAV -- */
.nav {
  position: fixed; top: 20px; left: 50%; transform: translateX(-50%);
  z-index: 1000; padding: 14px 32px; border-radius: 100px;
  display: flex; align-items: center; gap: 32px;
  background: rgba(245, 240, 235, 0.6); backdrop-filter: blur(2px);
  border: 1px solid rgba(221, 214, 204, 0.3);
  transition: all 0.5s var(--ease); width: auto; max-width: 90vw;
}
.nav.scrolled {
  padding: 10px 28px;
  background: rgba(245, 240, 235, 0.95); backdrop-filter: blur(20px);
  border-color: var(--border); box-shadow: 0 4px 30px rgba(26,26,46,0.08);
}
.nav-brand { font-family: 'Clash Display', sans-serif; font-weight: 600; font-size: 0.95rem; white-space: nowrap; }
.nav-links { display: flex; gap: 24px; }
.nav-links a { font-size: 0.85rem; font-weight: 500; color: var(--ink-2); transition: color 0.3s; }
.nav-links a:hover { color: var(--ink); }
.nav-cta {
  font-size: 0.8rem; font-weight: 600; background: var(--accent); color: #fff;
  padding: 8px 20px; border-radius: 100px; white-space: nowrap; transition: background 0.3s, transform 0.3s;
}
.nav-cta:hover { background: var(--accent-hover); }
@media (max-width: 768px) {
  .nav { padding: 10px 20px; gap: 16px; }
  .nav-links { display: none; }
  .nav-cta { font-size: 0.75rem; padding: 7px 16px; }
}

/* -- HERO -- */
.hero {
  min-height: 100vh; display: grid; grid-template-columns: 1.2fr 0.8fr;
  align-items: center; gap: 40px; padding: 140px 6vw 80px;
  position: relative; overflow: hidden;
}
.hero-content { position: relative; z-index: 2; }

/* Available for work badge */
.hero-available {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 16px 6px 12px; border-radius: 100px;
  background: rgba(255, 107, 53, 0.08); border: 1px solid rgba(255, 107, 53, 0.2);
  font-size: 0.78rem; font-weight: 600; color: var(--accent);
  letter-spacing: 0.04em; text-transform: uppercase; margin-bottom: 28px;
}
.available-dot {
  width: 8px; height: 8px; border-radius: 50%; background: #22C55E;
  animation: dotPulse 2s ease-in-out infinite;
  box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.4);
}
@keyframes dotPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.4); }
  50% { box-shadow: 0 0 0 6px rgba(34, 197, 94, 0); }
}

.hero-tag {
  font-size: 0.75rem; font-weight: 600; letter-spacing: 0.15em;
  color: var(--ink-3); text-transform: uppercase; margin-bottom: 24px;
}
.hero h1 {
  font-family: 'Clash Display', sans-serif; font-size: clamp(4rem, 8.5vw, 10rem);
  line-height: 0.95; letter-spacing: -0.04em; margin-bottom: 32px;
}
.hero h1 .thin { font-weight: 200; }
.hero h1 .bold { font-weight: 700; }
.hero h1 .accent {
  color: var(--accent); font-weight: 700;
  text-shadow: 0 0 80px rgba(255, 107, 53, 0.2);
}
.hero-sub { font-size: 1.1rem; line-height: 1.7; color: var(--ink-2); max-width: 480px; margin-bottom: 40px; }
.hero-cta {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 18px 40px; border-radius: 100px;
  background: var(--accent); color: #fff; font-weight: 600; font-size: 1rem;
  transition: background 0.3s var(--ease), transform 0.15s, box-shadow 0.3s;
  box-shadow: 0 8px 32px rgba(255, 107, 53, 0.25);
}
.hero-cta:hover { background: var(--accent-hover); box-shadow: 0 12px 40px rgba(255, 107, 53, 0.35); }
.hero-visual {
  position: relative; display: flex; justify-content: center;
  margin-right: -4vw;
}
.hero-img {
  width: 110%; max-width: 520px; border-radius: 32px;
  box-shadow: 0 30px 80px rgba(26,26,46,0.15); object-fit: cover; aspect-ratio: 3/4;
  position: relative; z-index: 1;
}
/* Floating blobs — colorful */
.blob {
  position: absolute; border-radius: 50%; filter: blur(70px); opacity: 0.35;
  animation: blobFloat 8s ease-in-out infinite alternate;
}
.blob-1 { width: 240px; height: 240px; background: var(--accent); top: -50px; right: -50px; animation-delay: 0s; }
.blob-2 { width: 180px; height: 180px; background: var(--blue); bottom: 40px; left: -40px; animation-delay: -3s; }
.blob-3 { width: 140px; height: 140px; background: var(--peach); top: 50%; right: 20%; animation-delay: -5s; opacity: 0.5; }
@keyframes blobFloat {
  0% { transform: translateY(0) rotate(0deg) scale(1); }
  100% { transform: translateY(-30px) rotate(15deg) scale(1.05); }
}

/* Scroll indicator */
.scroll-indicator {
  position: absolute; bottom: 40px; left: 6vw;
  display: flex; align-items: center; gap: 8px;
  font-size: 0.75rem; font-weight: 500; color: var(--ink-3);
  letter-spacing: 0.08em; text-transform: uppercase;
}
.scroll-indicator svg {
  animation: bounceArrow 2s ease-in-out infinite;
}
@keyframes bounceArrow {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(6px); }
}

@media (max-width: 768px) {
  .hero { grid-template-columns: 1fr; padding: 120px 6vw 60px; gap: 40px; text-align: center; }
  .hero-sub { margin-inline: auto; }
  .hero-visual { margin-right: 0; }
  .hero-img { width: 100%; max-width: 320px; }
  .hero-available { margin-inline: auto; }
  .scroll-indicator { left: 50%; transform: translateX(-50%); }
  .hero h1 { font-size: clamp(3rem, 12vw, 5rem); }
}

/* -- MARQUEE -- */
.marquee {
  overflow: hidden; padding: 48px 0;
  background: linear-gradient(90deg, rgba(255,107,53,0.04) 0%, rgba(0,78,137,0.04) 50%, rgba(255,107,53,0.04) 100%);
  border-top: 2px solid rgba(255,107,53,0.12); border-bottom: 2px solid rgba(255,107,53,0.12);
}
.marquee-track {
  display: flex; width: max-content;
  animation: marqueeScroll 30s linear infinite;
}
.marquee-track span {
  font-family: 'Clash Display', sans-serif; font-size: clamp(4rem, 10vw, 9rem);
  font-weight: 700; color: rgba(255, 107, 53, 0.08); white-space: nowrap; padding-right: 40px;
  text-transform: uppercase; letter-spacing: -0.02em;
}
@keyframes marqueeScroll { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* -- BRAND STRIP -- */
.brands { padding: 60px 6vw; text-align: center; }
.brands-label { font-size: 0.75rem; font-weight: 600; letter-spacing: 0.15em; color: var(--ink-3); text-transform: uppercase; margin-bottom: 24px; }
.brands-list { display: flex; justify-content: center; flex-wrap: wrap; gap: 16px 32px; align-items: center; }
.brands-list span { font-family: 'Clash Display', sans-serif; font-size: 1.2rem; font-weight: 600; color: var(--ink-3); }
.brand-sep { font-size: 0.7rem !important; color: var(--accent) !important; }

/* -- SECTION UTILITIES -- */
.section { padding: 100px 6vw; }
.section-label {
  font-size: 0.75rem; font-weight: 600; letter-spacing: 0.15em;
  color: var(--accent); text-transform: uppercase; margin-bottom: 16px;
}
.section-title {
  font-family: 'Clash Display', sans-serif; font-size: clamp(2.2rem, 4.5vw, 4rem);
  font-weight: 700; letter-spacing: -0.03em; margin-bottom: 60px;
}

/* -- SERVICES GRID -- */
.services-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.service-card {
  padding: 40px 28px; border-radius: var(--radius);
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
  transform-style: preserve-3d; perspective: 800px;
  position: relative; overflow: hidden;
  border: 2px solid transparent;
}
.service-card:nth-child(1) {
  background: linear-gradient(135deg, #FFECD2 0%, #FFE0C0 100%);
  border-color: rgba(255, 107, 53, 0.15);
}
.service-card:nth-child(2) {
  background: linear-gradient(135deg, #E8F0FE 0%, #D4E4FA 100%);
  border-color: rgba(0, 78, 137, 0.12);
}
.service-card:nth-child(3) {
  background: linear-gradient(135deg, #F0EDE8 0%, #E8E3DC 100%);
  border-color: rgba(26, 26, 46, 0.08);
}
.service-card:nth-child(4) {
  background: linear-gradient(135deg, #FFE8DC 0%, #FFD6C4 100%);
  border-color: rgba(255, 107, 53, 0.12);
}
.service-num {
  font-family: 'Clash Display', sans-serif; font-size: 3.5rem; font-weight: 700;
  color: rgba(26, 26, 46, 0.06); line-height: 1; margin-bottom: 16px; display: block;
}
.service-card h3 {
  font-family: 'Clash Display', sans-serif; font-size: 1.5rem; font-weight: 700;
  margin-bottom: 14px;
}
.service-card p { font-size: 0.92rem; line-height: 1.7; color: var(--ink-2); }
@media (max-width: 900px) { .services-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 540px) { .services-grid { grid-template-columns: 1fr; } }

/* -- PORTFOLIO (DARK) -- */
.portfolio {
  background: linear-gradient(180deg, var(--dark) 0%, #22223A 100%);
  color: #fff; padding: 100px 6vw;
}
.portfolio .section-label { color: var(--accent); }
.portfolio .section-title { color: #fff; }
.portfolio .cat-label {
  font-family: 'Clash Display', sans-serif; font-size: 1.1rem; font-weight: 600;
  color: rgba(255,255,255,0.5); margin-bottom: 24px; margin-top: 48px;
}
.portfolio .cat-label:first-of-type { margin-top: 0; }
.vid-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-bottom: 48px; }
.vid-card {
  position: relative; border-radius: 20px; overflow: hidden;
  aspect-ratio: 9/16; background: #2A2A44; cursor: pointer;
  transition: box-shadow 0.4s var(--ease), transform 0.3s var(--ease);
  border: 2px solid rgba(255,255,255,0.05);
}
.vid-card:hover {
  box-shadow: 0 0 40px rgba(255, 107, 53, 0.25), 0 20px 60px rgba(0,0,0,0.3);
  transform: translateY(-4px);
  border-color: rgba(255, 107, 53, 0.3);
}
.vid-card img, .vid-card video {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
  transition: opacity 0.5s var(--ease);
}
.vid-card video { opacity: 0; }
.vid-card.playing video { opacity: 1; }
.vid-card .vid-overlay {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 24px 18px 18px;
  background: linear-gradient(transparent, rgba(26,26,46,0.85));
  z-index: 2;
}
.vid-card .vid-brand { font-family: 'Clash Display', sans-serif; font-weight: 600; font-size: 0.95rem; }
.vid-card .vid-type { font-size: 0.8rem; color: rgba(255,255,255,0.6); margin-top: 2px; }
.vid-card .play-btn {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 56px; height: 56px; border-radius: 50%; z-index: 3;
  background: rgba(255, 107, 53, 0.3); backdrop-filter: blur(8px);
  border: 2px solid rgba(255, 107, 53, 0.5);
  display: flex; align-items: center; justify-content: center;
  transition: transform 0.4s var(--ease), opacity 0.3s;
  animation: playPulse 2.5s ease-in-out infinite;
}
.vid-card .play-btn svg { width: 18px; height: 18px; fill: #fff; margin-left: 2px; }
.vid-card.playing .play-btn { opacity: 0; transform: translate(-50%, -50%) scale(0.8); }
@keyframes playPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(255, 107, 53, 0.2); }
  50% { box-shadow: 0 0 0 14px rgba(255, 107, 53, 0); }
}
@media (max-width: 640px) { .vid-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; } }

/* -- HOW IT WORKS -- */
.steps-container {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px;
  border: 2px solid var(--border); border-radius: var(--radius); padding: 48px 40px;
  background: linear-gradient(135deg, rgba(255,236,210,0.3) 0%, rgba(245,240,235,0.5) 100%);
}
.step { text-align: center; }
.step-circle {
  width: 56px; height: 56px; margin: 0 auto 20px; position: relative;
}
.step-circle svg { width: 56px; height: 56px; transform: rotate(-90deg); }
.step-circle svg circle {
  fill: none; stroke-width: 3; cx: 28; cy: 28; r: 25;
}
.step-circle svg .bg { stroke: var(--border); }
.step-circle svg .progress {
  stroke: var(--accent); stroke-dasharray: 157; stroke-dashoffset: 157;
  stroke-linecap: round; transition: stroke-dashoffset 1s var(--ease);
}
.step-circle.drawn .progress { stroke-dashoffset: 0; }
.step-num {
  position: absolute; inset: 0; display: flex; align-items: center; justify-content: center;
  font-family: 'Clash Display', sans-serif; font-weight: 700; font-size: 1.1rem; color: var(--accent);
}
.step h3 {
  font-family: 'Clash Display', sans-serif; font-weight: 700; font-size: 1.15rem; margin-bottom: 10px;
}
.step p { font-size: 0.9rem; line-height: 1.7; color: var(--ink-2); max-width: 300px; margin-inline: auto; }
@media (max-width: 700px) { .steps-container { grid-template-columns: 1fr; padding: 32px 24px; } }

/* -- PRICING -- */
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-bottom: 48px; }
.price-card {
  padding: 40px 32px; border-radius: var(--radius);
  border: 2px solid var(--border);
  background: var(--peach); position: relative; transform-style: preserve-3d; perspective: 800px;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.price-card.featured {
  border-color: var(--accent);
  background: linear-gradient(180deg, rgba(255,107,53,0.1) 0%, var(--peach) 40%);
  box-shadow: 0 8px 40px rgba(255,107,53,0.12);
}
.price-badge {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--accent); color: #fff; font-size: 0.72rem; font-weight: 700;
  padding: 6px 20px; border-radius: 100px; text-transform: uppercase; letter-spacing: 0.08em;
  box-shadow: 0 4px 16px rgba(255,107,53,0.3);
}
.price-card h3 {
  font-family: 'Clash Display', sans-serif; font-weight: 700; font-size: 1.3rem; margin-bottom: 8px;
}
.price-amount {
  font-family: 'Clash Display', sans-serif; font-weight: 700; font-size: 3rem;
  letter-spacing: -0.03em; margin-bottom: 24px; color: var(--ink);
}
.price-card ul { list-style: none; margin-bottom: 32px; }
.price-card li {
  font-size: 0.9rem; color: var(--ink-2); padding: 8px 0;
  border-bottom: 1px solid rgba(26,26,46,0.08); display: flex; align-items: center; gap: 10px;
}
.price-card li::before { content: '\2713'; color: var(--accent); font-weight: 700; }
.price-btn {
  display: block; width: 100%; padding: 14px; border-radius: 100px; text-align: center;
  font-weight: 600; font-size: 0.9rem; transition: all 0.3s var(--ease);
}
.price-card .price-btn { background: var(--ink); color: #fff; }
.price-card.featured .price-btn { background: var(--accent); color: #fff; }
.price-btn:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(26,26,46,0.15); }
.addons { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; }
.addon-pill {
  padding: 10px 20px; border-radius: 100px; border: 2px solid var(--border);
  font-size: 0.82rem; color: var(--ink-2); background: var(--peach); white-space: nowrap;
  transition: border-color 0.3s, color 0.3s;
}
.addon-pill:hover { border-color: var(--accent); color: var(--accent); }
@media (max-width: 800px) { .pricing-grid { grid-template-columns: 1fr; max-width: 400px; margin-inline: auto; } }

/* -- ABOUT -- */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }
.about-text p { font-size: 1.05rem; line-height: 1.8; color: var(--ink-2); margin-bottom: 20px; }
.about-img {
  border-radius: var(--radius); width: 100%; object-fit: cover;
  box-shadow: 0 20px 60px rgba(26,26,46,0.12);
  border: 3px solid rgba(255,107,53,0.1);
}
.spec-table { margin-top: 32px; }
.spec-row {
  display: flex; justify-content: space-between; padding: 12px 0;
  border-bottom: 1px solid var(--border); font-size: 0.9rem;
}
.spec-row .spec-label { color: var(--ink-3); font-weight: 500; }
.spec-row .spec-val { font-weight: 600; text-align: right; }
@media (max-width: 768px) { .about-grid { grid-template-columns: 1fr; } }

/* -- FAQ -- */
.faq-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.faq-item {
  border: 2px solid var(--border); border-radius: 20px; overflow: hidden;
  transition: border-color 0.3s; align-self: start;
  background: rgba(255, 236, 210, 0.3);
}
.faq-item.open { border-color: var(--accent); background: rgba(255, 236, 210, 0.6); }
.faq-q {
  display: flex; justify-content: space-between; align-items: center;
  padding: 20px 24px; cursor: pointer; font-weight: 600; font-size: 0.95rem;
  user-select: none; gap: 12px;
}
.faq-q span {
  transition: transform 0.3s var(--ease); display: inline-flex;
  align-items: center; justify-content: center;
  font-size: 1.2rem; color: var(--accent);
  width: 28px; height: 28px; border-radius: 50%; background: rgba(255,107,53,0.08);
  flex-shrink: 0;
}
.faq-item.open .faq-q span { transform: rotate(45deg); }
.faq-a {
  max-height: 0; overflow: hidden; transition: max-height 0.5s var(--ease), padding 0.3s;
}
.faq-a-inner { padding: 0 24px 20px; font-size: 0.9rem; line-height: 1.7; color: var(--ink-2); }
@media (max-width: 640px) { .faq-grid { grid-template-columns: 1fr; } }

/* -- CTA SECTION -- */
.cta-section {
  padding: 140px 6vw; text-align: center; position: relative; overflow: hidden;
}
.cta-mesh {
  position: absolute; inset: 0; z-index: 0;
  background:
    radial-gradient(ellipse 60% 50% at 30% 40%, rgba(255,107,53,0.08) 0%, transparent 60%),
    radial-gradient(ellipse 50% 60% at 70% 60%, rgba(0,78,137,0.06) 0%, transparent 60%),
    radial-gradient(ellipse 40% 40% at 50% 50%, rgba(255,236,210,0.3) 0%, transparent 50%);
  pointer-events: none;
}
.cta-section h2 {
  font-family: 'Clash Display', sans-serif; font-size: clamp(3rem, 8vw, 8rem);
  font-weight: 700; letter-spacing: -0.04em; margin-bottom: 20px;
  position: relative; z-index: 1;
}
.cta-highlight {
  position: relative; display: inline-block;
}
.cta-highlight::after {
  content: ''; position: absolute; bottom: 0.05em; left: -0.05em; right: -0.05em;
  height: 0.18em; background: var(--accent); border-radius: 4px;
  z-index: -1; opacity: 0.35;
  transform: rotate(-1deg);
}
.cta-section .cta-sub { font-size: 1.15rem; color: var(--ink-2); margin-bottom: 44px; max-width: 500px; margin-inline: auto; position: relative; z-index: 1; }
.cta-big {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 20px 48px; border-radius: 100px;
  background: var(--accent); color: #fff; font-weight: 600; font-size: 1.15rem;
  transition: background 0.3s var(--ease), transform 0.15s, box-shadow 0.3s;
  box-shadow: 0 8px 32px rgba(255,107,53,0.3);
  position: relative; z-index: 1;
}
.cta-big:hover { background: var(--accent-hover); box-shadow: 0 12px 40px rgba(255,107,53,0.4); }
.cta-socials { margin-top: 36px; display: flex; justify-content: center; gap: 28px; position: relative; z-index: 1; }
.cta-socials a {
  font-size: 0.9rem; color: var(--ink-2); font-weight: 500;
  position: relative;
}
.cta-socials a::after {
  content: ''; position: absolute; bottom: -2px; left: 0; right: 0;
  height: 2px; background: var(--accent); transform: scaleX(0);
  transition: transform 0.3s var(--ease); transform-origin: left;
  border-radius: 2px;
}
.cta-socials a:hover::after { transform: scaleX(1); }
.cta-socials a:hover { color: var(--accent); }

/* -- FOOTER -- */
.footer {
  padding: 32px 6vw; border-top: 2px solid var(--border);
  display: flex; justify-content: space-between; align-items: center;
  font-size: 0.82rem; color: var(--ink-3);
}
.footer a { color: var(--ink-2); transition: color 0.3s; }
.footer a:hover { color: var(--accent); }
@media (max-width: 540px) { .footer { flex-direction: column; gap: 8px; text-align: center; } }

/* -- MOBILE STICKY CTA -- */
.mobile-cta {
  display: none; position: fixed; bottom: 20px; left: 50%; transform: translateX(-50%);
  z-index: 999; padding: 14px 32px; border-radius: 100px;
  background: var(--accent); backdrop-filter: blur(16px);
  color: #fff; font-weight: 600; font-size: 0.9rem;
  box-shadow: 0 8px 30px rgba(255,107,53,0.3);
}
@media (max-width: 768px) { .mobile-cta { display: block; } }

/* -- SCROLL REVEAL -- */
.reveal {
  opacity: 0; transform: translateY(40px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}
.reveal.revealed { opacity: 1; transform: translateY(0); }

/* -- TILT CARD LIFT -- */
.tilt-card { transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease); }
.tilt-card:hover { box-shadow: 0 20px 50px rgba(26,26,46,0.1); }

/* -- DOTTED GRID PATTERN on services and process sections -- */
#services {
  position: relative;
}
#services::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; bottom: 0;
  background-image: radial-gradient(circle, rgba(26,26,46,0.04) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none;
  z-index: 0;
}
#services > * { position: relative; z-index: 1; }

/* -- Star decorators between sections -- */
.brands-list .brand-sep {
  font-size: 0.6rem !important;
  color: var(--accent) !important;
  opacity: 0.5;
}

/* -- Selection color -- */
::selection {
  background: rgba(255, 107, 53, 0.2);
  color: var(--ink);
}

/* -- Smooth scrollbar -- */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--border); border-radius: 100px; }
::-webkit-scrollbar-thumb:hover { background: var(--accent); }
