/* 
   Blackwik.com Design System & Styles
   Base Color Palette & Modern Dark Mode Elements
*/

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800;900&family=DM+Sans:wght@300;400;500;600;700&display=swap');

:root {
  /* Color Theme Tokens */
  --bg-primary: #0A0A0A;
  --bg-surface: #111111;
  --bg-alt: #0D0D0D;
  --accent-primary: #8B5CF6;
  --accent-secondary: #C084FC;
  --text-main: #E0E0E0;
  --text-muted: #888888;
  --border-color: #2a2a2a;
  --accent-glow: rgba(139, 92, 246, 0.15);
  --accent-glow-strong: rgba(139, 92, 246, 0.4);

  /* Fonts */
  --font-heading: 'Outfit', sans-serif;
  --font-body: 'DM Sans', sans-serif;
  
  /* Transitions */
  --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-fast: all 0.2s ease;
}

/* Reset & Base Styles */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scrollbar-gutter: stable;
  background-color: var(--bg-primary);
  color: var(--text-main);
  font-family: var(--font-body);
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

body {
  overflow-x: hidden;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition-fast);
}

button, input, select, textarea {
  font-family: inherit;
  color: inherit;
  background: transparent;
  border: none;
  outline: none;
}

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

/* Scrollbar Customization */
::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-track {
  background: var(--bg-primary);
}
::-webkit-scrollbar-thumb {
  background: #222;
  border-radius: 5px;
  border: 2px solid var(--bg-primary);
}
::-webkit-scrollbar-thumb:hover {
  background: var(--accent-primary);
}

/* Skip link */
#skip-link {
  position: absolute;
  top: -100px;
  left: 20px;
  background: var(--accent-primary);
  color: white;
  padding: 10px 20px;
  border-radius: 8px;
  z-index: 10000;
  font-weight: 600;
}
#skip-link:focus {
  top: 20px;
}

/* Layout Utilities */
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

.section-heading {
  font-family: var(--font-heading);
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
}

.section-heading em {
  font-style: italic;
  font-weight: 300;
  color: var(--accent-secondary);
}

.section-sub {
  color: var(--text-muted);
  font-size: clamp(16px, 1.5vw, 20px);
  max-width: 600px;
  margin-bottom: 48px;
}

.tag {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent-secondary);
  margin-bottom: 16px;
  position: relative;
  padding-left: 18px;
}

.tag::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 10px;
  height: 2px;
  background: var(--accent-primary);
}

/* Buttons & CTAs */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent-primary);
  color: white;
  padding: 14px 28px;
  border-radius: 9999px;
  font-weight: 600;
  font-family: var(--font-heading);
  transition: var(--transition-smooth);
  box-shadow: 0 4px 20px rgba(139, 92, 246, 0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  background: #7c4dff;
  box-shadow: 0 8px 30px rgba(139, 92, 246, 0.5);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid var(--border-color);
  color: var(--text-main);
  padding: 14px 28px;
  border-radius: 9999px;
  font-weight: 600;
  font-family: var(--font-heading);
  transition: var(--transition-smooth);
}

.btn-outline:hover {
  border-color: var(--accent-primary);
  background: rgba(139, 92, 246, 0.05);
  color: white;
}

/* Navbar */
#nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  border-bottom: 1px solid rgba(42, 42, 42, 0.4);
  background: rgba(10, 10, 10, 0.75);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  transition: var(--transition-smooth);
}

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

.logo-text {
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 900;
  letter-spacing: -0.03em;
  color: white;
  display: flex;
  align-items: center;
  gap: 8px;
}

.logo-text span {
  color: var(--accent-primary);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}

.nav-links a {
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 500;
  color: var(--text-muted);
}

.nav-links a:hover {
  color: white;
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(139, 92, 246, 0.1);
  border: 1px solid rgba(139, 92, 246, 0.3);
  color: var(--accent-secondary);
  padding: 10px 20px;
  border-radius: 9999px;
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 600;
  transition: var(--transition-smooth);
}

.nav-cta:hover {
  background: var(--accent-primary);
  color: white;
  box-shadow: 0 4px 15px rgba(139, 92, 246, 0.3);
  transform: translateY(-1px);
}

.nav-burger {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  z-index: 1001;
}

.nav-burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: white;
  transition: var(--transition-fast);
}

/* Mobile Drawer */
.nav-drawer {
  position: fixed;
  top: 0;
  right: -100%;
  width: 300px;
  height: 100vh;
  background: var(--bg-surface);
  border-left: 1px solid var(--border-color);
  padding: 80px 40px;
  display: flex;
  flex-direction: column;
  gap: 40px;
  z-index: 999;
  transition: right 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.nav-drawer.open {
  right: 0;
}

.nav-drawer ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.nav-drawer ul a {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 600;
  color: var(--text-muted);
}

.nav-drawer ul a:hover {
  color: white;
}

/* Hero Section */
#hero {
  position: relative;
  padding: 180px 0 100px;
  overflow: hidden;
  background-color: var(--bg-primary);
}

.hero-glow {
  position: absolute;
  top: -20%;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, var(--accent-glow) 0%, transparent 70%);
  z-index: 0;
  pointer-events: none;
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image: 
    linear-gradient(to right, rgba(255, 255, 255, 0.02) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 60px 60px;
  background-position: center top;
  mask-image: radial-gradient(circle, black 30%, transparent 80%);
  -webkit-mask-image: radial-gradient(circle, black 30%, transparent 80%);
  z-index: 0;
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}

.hero-eyebrow {
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 700;
  color: var(--accent-secondary);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 24px;
}

.hero-headline {
  font-family: var(--font-heading);
  font-size: clamp(40px, 7vw, 84px);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-bottom: 32px;
}

.hero-sub {
  font-size: clamp(16px, 2vw, 22px);
  color: var(--text-muted);
  max-width: 720px;
  margin: 0 auto 48px;
  line-height: 1.6;
}

.hero-actions {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-bottom: 80px;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  border-top: 1px solid var(--border-color);
  padding-top: 60px;
}

.hero-stat-num {
  font-family: var(--font-heading);
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 800;
  color: white;
  line-height: 1;
  margin-bottom: 8px;
}

.hero-stat-num span {
  background: linear-gradient(135deg, #fff 30%, var(--accent-secondary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

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

/* Marquee Track */
#brands-strip {
  background: var(--bg-surface);
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
  padding: 24px 0;
  overflow: hidden;
}

.marquee-track {
  display: flex;
  align-items: center;
  gap: 60px;
  width: max-content;
  animation: marquee 25s linear infinite;
}

.m-item {
  display: flex;
  align-items: center;
  gap: 20px;
}

.m-name {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 800;
  color: var(--text-muted);
  letter-spacing: 0.05em;
  transition: var(--transition-fast);
}

.m-name:hover {
  color: var(--accent-secondary);
}

.m-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent-primary);
}

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

/* About Us Section */
#about {
  padding: 100px 0;
  background: var(--bg-primary);
}

.about-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 80px;
  align-items: center;
}

.about-visual {
  position: relative;
}

.about-img-main {
  width: 100%;
  border-radius: 20px;
  border: 1px solid var(--border-color);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.about-img-sec {
  position: absolute;
  bottom: -40px;
  right: -20px;
  width: 220px;
  height: 220px;
  object-fit: cover;
  border-radius: 16px;
  border: 4px solid var(--bg-primary);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

.about-badge {
  position: absolute;
  top: -20px;
  left: -20px;
  background: var(--bg-surface);
  border: 1px solid var(--border-color);
  padding: 16px 24px;
  border-radius: 16px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.about-badge-num {
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 800;
  color: var(--accent-secondary);
  line-height: 1;
  margin-bottom: 4px;
}

.about-badge-lbl {
  font-size: 12px;
  color: var(--text-muted);
  font-weight: 600;
}

.pillars {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.pillar {
  display: flex;
  gap: 20px;
}

.pillar-icon {
  width: 48px;
  height: 48px;
  background: var(--bg-surface);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}

.pillar-text h3 {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 6px;
}

.pillar-text p {
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.5;
}

/* Impact at Scale (By The Numbers) */
#numbers {
  padding: 100px 0;
  background: var(--bg-alt);
}

.num-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 60px;
}

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

.num-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.num-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  padding: 32px 24px;
  text-align: center;
  transition: var(--transition-smooth);
}

.num-card:hover {
  border-color: rgba(139, 92, 246, 0.4);
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(139, 92, 246, 0.05);
}

.num-val {
  font-family: var(--font-heading);
  font-size: 40px;
  font-weight: 800;
  color: white;
  margin-bottom: 8px;
}

.num-val span {
  background: linear-gradient(135deg, #fff 0%, var(--accent-secondary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.num-lbl {
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 4px;
}

.num-sub {
  font-size: 12px;
  color: var(--text-muted);
}

/* Portfolio Section */
#portfolio {
  padding: 100px 0;
  background: var(--bg-primary);
}

.port-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 60px;
}

.port-header .section-sub {
  margin: 0;
  max-width: 500px;
}

.brands-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.brand-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-color);
  border-radius: 20px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  min-height: 280px;
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
}

.brand-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 80% 20%, rgba(139, 92, 246, 0.08) 0%, transparent 60%);
  opacity: 0;
  transition: var(--transition-smooth);
  pointer-events: none;
}

.brand-card:hover {
  border-color: rgba(139, 92, 246, 0.4);
  transform: translateY(-6px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
}

.brand-card:hover::after {
  opacity: 1;
}

.bc-cat {
  font-size: 12px;
  color: var(--accent-secondary);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 16px;
}

.bc-name {
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 800;
  color: white;
  margin-bottom: 12px;
}

.bc-desc {
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: auto;
}

.bc-status {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: var(--text-muted);
  font-weight: 600;
  margin-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 16px;
}

.bc-status .bc-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent-primary);
  box-shadow: 0 0 10px var(--accent-primary);
}

/* Categories Section */
#categories {
  padding: 100px 0;
  background: var(--bg-alt);
}

.cat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  list-style: none;
}

.cat-item {
  background: var(--bg-surface);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  padding: 24px;
  display: flex;
  align-items: center;
  gap: 16px;
  transition: var(--transition-smooth);
}

.cat-item:hover {
  border-color: rgba(139, 92, 246, 0.3);
  background: rgba(139, 92, 246, 0.02);
  transform: scale(1.02);
}

.cat-icon {
  font-size: 24px;
}

.cat-name {
  font-family: var(--font-heading);
  font-weight: 600;
  color: white;
}

/* Platforms Section */
#platforms {
  padding: 80px 0;
  background: var(--bg-primary);
  border-top: 1px solid var(--border-color);
}

.plat-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 48px;
}

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

.plat-wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  list-style: none;
}

.p-chip {
  background: var(--bg-surface);
  border: 1px solid var(--border-color);
  padding: 12px 24px;
  border-radius: 9999px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 15px;
  color: var(--text-main);
  display: flex;
  align-items: center;
  gap: 10px;
  transition: var(--transition-fast);
}

.p-chip:hover {
  border-color: var(--accent-primary);
  color: white;
  transform: translateY(-2px);
}

.p-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent-secondary);
}

/* Culture Section */
#culture {
  padding: 100px 0;
  background: var(--bg-alt);
}

.culture-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 80px;
  align-items: center;
}

.culture-vals {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  margin-top: 40px;
}

.cv-icon {
  font-size: 28px;
  margin-bottom: 12px;
}

.cv-title {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 8px;
}

.cv-desc {
  color: var(--text-muted);
  font-size: 13px;
  line-height: 1.5;
}

.culture-visual {
  position: relative;
}

.culture-img {
  width: 100%;
  border-radius: 20px;
  border: 1px solid var(--border-color);
  box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}

.culture-pill {
  position: absolute;
  bottom: -30px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--bg-surface);
  border: 1px solid var(--border-color);
  padding: 20px 40px;
  border-radius: 100px;
  display: flex;
  gap: 40px;
  box-shadow: 0 15px 30px rgba(0,0,0,0.5);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.cp-val {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 800;
  color: var(--accent-secondary);
}

.cp-label {
  font-size: 11px;
  color: var(--text-muted);
  font-weight: 600;
  text-transform: uppercase;
}

/* Team Section */
#team {
  padding: 100px 0;
  background: var(--bg-primary);
}

.team-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 60px;
}

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

.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.team-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-color);
  border-radius: 20px;
  overflow: hidden;
  transition: var(--transition-smooth);
}

.team-card:hover {
  border-color: rgba(139, 92, 246, 0.4);
  transform: translateY(-4px);
}

.team-photo {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  background: #181818;
}

.team-info {
  padding: 24px;
}

.team-name {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 700;
  color: white;
}

.team-role {
  font-size: 13px;
  color: var(--accent-secondary);
  font-weight: 600;
  margin-top: 4px;
}

.team-dept {
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 8px;
}

/* Collage Section */
#collage {
  padding: 100px 0;
  background: var(--bg-alt);
  overflow: hidden;
  position: relative;
}

.collage-header {
  margin-bottom: 60px;
}

.collage-header-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}

.collage-header-row .section-sub {
  margin: 0;
  max-width: 500px;
}

.collage-row {
  display: flex;
  margin-bottom: 24px;
}

.collage-track {
  display: flex;
  gap: 24px;
  width: max-content;
}

.track-left {
  animation: slideLeft 40s linear infinite;
}

.track-right {
  animation: slideRight 40s linear infinite;
}

.coll-item {
  position: relative;
  width: 320px;
  height: 240px;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--border-color);
}

.coll-item.coll-wide {
  width: 480px;
}

.coll-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.coll-label {
  position: absolute;
  bottom: 16px;
  left: 16px;
  background: rgba(10, 10, 10, 0.7);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.08);
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  color: white;
}

.collage-fade-left, .collage-fade-right {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 150px;
  z-index: 2;
  pointer-events: none;
}

.collage-fade-left {
  left: 0;
  background: linear-gradient(to right, var(--bg-alt) 0%, transparent 100%);
}

.collage-fade-right {
  right: 0;
  background: linear-gradient(to left, var(--bg-alt) 0%, transparent 100%);
}

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

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

/* Vision / CTA Banner */
#vision {
  position: relative;
  padding: 120px 0;
  text-align: center;
  background: var(--bg-primary);
  overflow: hidden;
}

.vision-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 800px;
  height: 400px;
  background: radial-gradient(ellipse, rgba(139, 92, 246, 0.1) 0%, transparent 75%);
  z-index: 0;
  pointer-events: none;
}

.vision-inner {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
}

.vision-headline {
  font-family: var(--font-heading);
  font-size: clamp(36px, 6vw, 64px);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
}

.vision-headline em {
  font-style: italic;
  font-weight: 300;
  color: var(--accent-secondary);
}

.vision-sub {
  font-size: clamp(16px, 1.8vw, 20px);
  color: var(--text-muted);
  margin-bottom: 40px;
}

.vision-actions {
  display: flex;
  justify-content: center;
  gap: 16px;
}

/* Contact Section */
#contact {
  padding: 100px 0;
  background: var(--bg-alt);
  border-top: 1px solid var(--border-color);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
}

.contact-details {
  margin: 40px 0;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.c-row {
  display: flex;
  gap: 18px;
}

.c-icon {
  width: 44px;
  height: 44px;
  background: var(--bg-surface);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}

.c-row-text h3 {
  font-size: 14px;
  color: var(--text-muted);
  font-weight: 500;
  margin-bottom: 4px;
}

.c-row-text a, .c-row-text address {
  font-size: 16px;
  color: white;
  font-weight: 600;
  font-style: normal;
}

.c-row-text a:hover {
  color: var(--accent-secondary);
}

.cin-note {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.6;
}

.form-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-color);
  border-radius: 24px;
  padding: 48px;
}

.form-title {
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 800;
  margin-bottom: 8px;
}

.form-sub {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 32px;
}

.fg {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 20px;
}

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

.fg label {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-main);
}

.fg input, .fg select, .fg textarea {
  background: #181818;
  border: 1px solid var(--border-color);
  border-radius: 10px;
  padding: 14px 18px;
  font-size: 14px;
  color: white;
  transition: var(--transition-fast);
}

.fg input::placeholder, .fg textarea::placeholder {
  color: #555;
}

.fg input:focus, .fg select:focus, .fg textarea:focus {
  border-color: var(--accent-primary);
  background: #1c1c1c;
}

.fg select option {
  background: var(--bg-surface);
}

.fg textarea {
  height: 120px;
  resize: none;
}

.form-btn {
  width: 100%;
  background: var(--accent-primary);
  color: white;
  padding: 16px;
  border-radius: 10px;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition-smooth);
  margin-top: 10px;
}

.form-btn:hover {
  background: #7c4dff;
  box-shadow: 0 4px 15px rgba(139, 92, 246, 0.4);
}

/* Footer Section */
footer {
  background: var(--bg-primary);
  border-top: 1px solid var(--border-color);
  padding: 80px 0 40px;
}

.footer-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 60px;
}

.footer-brand p {
  margin-top: 16px;
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.6;
  max-width: 320px;
}

.fl-group h3 {
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: white;
  margin-bottom: 20px;
}

.fl-group ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.fl-group ul a {
  font-size: 14px;
  color: var(--text-muted);
}

.fl-group ul a:hover {
  color: white;
}

.footer-bottom {
  max-width: 1280px;
  margin: 0 auto;
  padding: 30px 24px 0;
  border-top: 1px solid var(--border-color);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: var(--text-muted);
}

/* Scroll Reveals (Intersection Observer) */
/* On desktop only — mobile gets instant visibility to prevent blank screen */
@media (min-width: 901px) {
  .reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  }

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

  .reveal.d1 { transition-delay: 0.1s; }
  .reveal.d2 { transition-delay: 0.2s; }
  .reveal.d3 { transition-delay: 0.3s; }
  .reveal.d4 { transition-delay: 0.4s; }
}

/* Mobile: all content visible immediately */
@media (max-width: 900px) {
  .reveal {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .about-grid, .culture-grid, .contact-grid {
    grid-template-columns: 1fr;
    gap: 60px;
  }
  
  .about-img-sec {
    right: 20px;
  }
  
  .brands-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .num-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .cat-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .footer-inner {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
}

@media (max-width: 768px) {
  .reveal {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }

  .nav-links, .nav-cta {
    display: none;
  }
  
  .nav-burger {
    display: flex;
  }
  
  .hero-actions {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }
  
  .hero-actions .btn-primary, .hero-actions .btn-outline {
    width: 100%;
    justify-content: center;
    max-width: 320px;
  }
  
  .hero-stats {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .port-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
  
  .collage-header-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
  
  .form-card {
    padding: 32px 20px;
  }
  
  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }
  
  .footer-inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  
  .footer-bottom {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }

  /* Ensure sections have proper padding on mobile */
  #hero {
    padding: 120px 0 80px;
  }

  #about, #portfolio, #platforms, #team, #culture, #contact {
    padding: 70px 0;
  }

  .container {
    padding: 0 16px;
  }

  .section-heading {
    font-size: clamp(28px, 8vw, 44px);
  }

  /* Team grid on mobile */
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .team-card img {
    height: 220px;
    object-fit: cover;
  }

  /* Brands grid */
  .brands-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  /* About grid */
  .about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  /* Contact grid */
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  /* Culture grid */
  .culture-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

@media (max-width: 480px) {
  .hero-stats {
    grid-template-columns: 1fr;
  }
  
  .brands-grid {
    grid-template-columns: 1fr;
  }
  
  .num-grid {
    grid-template-columns: 1fr;
  }
  
  .team-grid {
    grid-template-columns: 1fr;
  }
  
  .cat-grid {
    grid-template-columns: 1fr;
  }
}
