/* -------------------------------------------------------------
   DESIGN SYSTEM & VARIABLES
------------------------------------------------------------- */
:root {
  /* Color Palette - Premium Zinc Dark */
  --bg-primary: #09090b;
  --bg-secondary: #121214;
  --card-bg: rgba(20, 20, 25, 0.6);
  --card-border: rgba(255, 255, 255, 0.08);
  --card-border-hover: rgba(139, 92, 246, 0.35);
  
  /* Text Colors */
  --text-primary: #f4f4f5;
  --text-secondary: #a1a1aa;
  --text-muted: #71717a;
  
  /* Accent Colors & Gradients - Metallic & Violet Hybrid */
  --primary-violet: #8b5cf6;
  --primary-cyan: #06b6d4;
  --primary-rose: #f43f5e;
  
  --grad-primary: linear-gradient(135deg, #ffffff 0%, #8b5cf6 100%);
  --grad-sunset: linear-gradient(135deg, #ffffff 0%, #06b6d4 100%);
  --grad-emerald: linear-gradient(135deg, #f4f4f5 0%, #52525b 100%);
  --grad-aurora: linear-gradient(135deg, #ffffff 0%, #27272a 100%);
  
  /* Fonts */
  --font-sans: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --font-mono: 'Space Grotesk', monospace;
  
  /* Transitions */
  --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-fast: all 0.2s ease;
}

/* Reset & Global */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  scroll-behavior: smooth;
}

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

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: var(--bg-primary);
}
::-webkit-scrollbar-thumb {
  background: #27272a;
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: #3f3f46;
}

/* -------------------------------------------------------------
   BACKGROUND EFFECTS (GRID & GLOW)
------------------------------------------------------------- */
.bg-grid {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
  opacity: 0.25;
  background-image: 
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 50px 50px;
  mask-image: radial-gradient(ellipse at 50% 50%, black 40%, transparent 95%);
}

.cursor-glow {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  pointer-events: none;
  z-index: 1;
  background: radial-gradient(circle 350px at var(--mouse-x, 50%) var(--mouse-y, 50%), rgba(139, 92, 246, 0.08) 0%, rgba(255, 255, 255, 0.01) 50%, transparent 80%);
}

.ambient-glow-circle {
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(139, 92, 246, 0.07) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
  filter: blur(80px);
}
.glow-1 { top: -200px; right: -100px; }
.glow-2 { bottom: 200px; left: -200px; }

/* -------------------------------------------------------------
   TYPOGRAPHY & UTILITIES
------------------------------------------------------------- */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 2;
}

h1, h2, h3, h4 {
  font-weight: 700;
  letter-spacing: -0.02em;
}

.gradient-text {
  background: var(--grad-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

.gradient-text-alt {
  background: var(--grad-sunset);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 28px;
  font-family: var(--font-mono);
  font-size: 0.9rem;
  font-weight: 600;
  border-radius: 99px;
  text-decoration: none;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.btn-primary {
  background: #ffffff;
  color: #09090b;
  border: 1px solid #ffffff;
  box-shadow: 0 4px 20px rgba(255, 255, 255, 0.15);
  font-weight: 700;
}
.btn-primary:hover {
  transform: translateY(-2px);
  background: transparent;
  color: #ffffff;
  border-color: #8b5cf6;
  box-shadow: 0 6px 25px rgba(139, 92, 246, 0.4);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.03);
  color: var(--text-primary);
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.btn-secondary:hover {
  background: #ffffff;
  color: #09090b;
  border-color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 255, 255, 0.2);
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  border-radius: 99px;
  font-family: var(--font-mono);
  font-size: 0.8rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  color: var(--text-secondary);
}

/* Glassmorphism Card style */
.glass-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-radius: 20px;
  transition: var(--transition-smooth);
}
.glass-card:hover {
  border-color: var(--card-border-hover);
  box-shadow: 0 10px 30px rgba(139, 92, 246, 0.06);
}

/* -------------------------------------------------------------
   NAVIGATION HEADER
------------------------------------------------------------- */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 80px;
  z-index: 100;
  transition: var(--transition-smooth);
  display: flex;
  align-items: center;
}

.header.scrolled {
  background: rgba(9, 9, 11, 0.8);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  height: 70px;
}

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

.logo {
  font-family: var(--font-mono);
  font-size: 1.3rem;
  font-weight: 700;
  text-decoration: none;
  color: var(--text-primary);
  display: flex;
  align-items: center;
  gap: 8px;
}

.logo-dot {
  width: 8px;
  height: 8px;
  background: var(--primary-violet);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--primary-violet);
}

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

.nav-link {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  transition: var(--transition-fast);
  position: relative;
}
.nav-link:hover {
  color: var(--text-primary);
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0; width: 0; height: 1.5px;
  background: var(--grad-primary);
  transition: var(--transition-fast);
}
.nav-link:hover::after {
  width: 100%;
}

.nav-cta {
  display: flex;
  align-items: center;
}

/* -------------------------------------------------------------
   HERO SECTION
------------------------------------------------------------- */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 120px;
  position: relative;
}

.hero-content {
  max-width: 800px;
  text-align: left;
}

.hero-badge {
  margin-bottom: 24px;
  background: rgba(139, 92, 246, 0.06);
  border-color: rgba(139, 92, 246, 0.15);
  color: var(--text-primary);
}
.hero-badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #8b5cf6;
  animation: pulse-violet 1.5s infinite;
}

.hero-title {
  font-size: 4rem;
  line-height: 1.1;
  margin-bottom: 24px;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.hero-description {
  font-size: 1.25rem;
  color: var(--text-secondary);
  margin-bottom: 40px;
  max-width: 650px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  margin-bottom: 64px;
}

.hero-platforms {
  display: flex;
  align-items: center;
  gap: 20px;
}
.hero-platforms-title {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  color: var(--text-muted);
  text-transform: uppercase;
}
.platform-links {
  display: flex;
  gap: 16px;
}
.platform-link {
  color: var(--text-secondary);
  font-size: 0.9rem;
  text-decoration: none;
  font-family: var(--font-mono);
  transition: var(--transition-fast);
  display: flex;
  align-items: center;
  gap: 6px;
}
.platform-link:hover {
  color: var(--text-primary);
}

/* -------------------------------------------------------------
   TECH STACK SECTION
------------------------------------------------------------- */
.section {
  padding: 100px 0;
  position: relative;
}

.section-header {
  margin-bottom: 60px;
  max-width: 600px;
}
.section-tag {
  font-family: var(--font-mono);
  font-size: 0.85rem;
  text-transform: uppercase;
  color: var(--primary-violet);
  letter-spacing: 0.05em;
  margin-bottom: 12px;
  display: block;
}
.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 16px;
}
.section-desc {
  color: var(--text-secondary);
  font-size: 1.1rem;
}

.stack-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.stack-card {
  padding: 32px;
}
.stack-card-icon {
  margin-bottom: 24px;
  width: 48px;
  height: 48px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.06);
  color: var(--primary-violet);
}
.stack-card:hover .stack-card-icon {
  color: #ffffff;
  background: #8b5cf6;
  border-color: transparent;
  transform: scale(1.05);
  box-shadow: 0 0 15px rgba(139, 92, 246, 0.4);
}

.stack-card-title {
  font-size: 1.3rem;
  margin-bottom: 16px;
}
.stack-card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.stack-tag {
  font-size: 0.75rem;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  padding: 4px 10px;
  border-radius: 99px;
  color: var(--text-secondary);
}

/* -------------------------------------------------------------
   PROJECTS SECTION (PORTFOLIO)
------------------------------------------------------------- */
.portfolio-filters {
  display: flex;
  gap: 12px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.filter-btn {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.06);
  color: var(--text-secondary);
  font-family: var(--font-mono);
  font-size: 0.85rem;
  padding: 8px 18px;
  border-radius: 99px;
  cursor: pointer;
  transition: var(--transition-fast);
}
.filter-btn:hover, .filter-btn.active {
  border-color: #8b5cf6;
  color: var(--text-primary);
  background: rgba(139, 92, 246, 0.05);
}

.projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
  gap: 32px;
}

.project-card {
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.project-img-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 16/10;
  overflow: hidden;
  background: #18181b;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.project-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(100%);
  opacity: 0.85;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), filter 0.6s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.project-card:hover .project-img {
  transform: scale(1.04);
  filter: grayscale(0%);
  opacity: 1;
}

.project-overlay {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background: linear-gradient(0deg, rgba(9, 9, 11, 0.9) 0%, rgba(9, 9, 11, 0.2) 100%);
  opacity: 0;
  display: flex;
  align-items: flex-end;
  padding: 24px;
  transition: var(--transition-smooth);
}
.project-card:hover .project-overlay {
  opacity: 1;
}

.project-info {
  padding: 28px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.project-category {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  text-transform: uppercase;
  color: var(--primary-cyan);
  margin-bottom: 10px;
}

.project-name {
  font-size: 1.5rem;
  margin-bottom: 12px;
  font-weight: 700;
}

.project-desc {
  color: var(--text-secondary);
  font-size: 0.95rem;
  margin-bottom: 20px;
  flex-grow: 1;
}

.project-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 24px;
}
.project-tag {
  font-size: 0.72rem;
  font-family: var(--font-mono);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.05);
  color: var(--text-secondary);
  padding: 3px 8px;
  border-radius: 4px;
}

.project-link-btn {
  width: 100%;
  padding: 12px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  color: var(--text-primary);
  text-decoration: none;
  font-family: var(--font-mono);
  font-size: 0.85rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.01);
  transition: var(--transition-fast);
}

.project-link-btn:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: var(--text-primary);
}

/* -------------------------------------------------------------
   SERVICES & PRINCIPLES SECTION
------------------------------------------------------------- */
.principles-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 32px;
}
.principle-card {
  padding: 32px;
  position: relative;
  overflow: hidden;
}
.principle-number {
  position: absolute;
  top: 16px;
  right: 24px;
  font-family: var(--font-mono);
  font-size: 2.5rem;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.03);
  user-select: none;
}
.principle-title {
  font-size: 1.25rem;
  margin-bottom: 12px;
  margin-top: 10px;
}
.principle-desc {
  color: var(--text-secondary);
  font-size: 0.95rem;
}

/* -------------------------------------------------------------
   CONTACT SECTION
------------------------------------------------------------- */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
}

.contact-info-panel {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.contact-title {
  font-size: 3rem;
  line-height: 1.1;
  margin-bottom: 24px;
}
.contact-desc {
  color: var(--text-secondary);
  font-size: 1.1rem;
  margin-bottom: 40px;
}

.contact-quick-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 40px;
}

.contact-quick-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
  border-radius: 16px;
}

.quick-item-label {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-mono);
  font-size: 0.9rem;
}
.quick-item-value {
  color: var(--text-primary);
  font-weight: 600;
}

.copy-btn {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  color: var(--text-secondary);
  padding: 6px 12px;
  border-radius: 8px;
  cursor: pointer;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  transition: var(--transition-fast);
  display: flex;
  align-items: center;
  gap: 6px;
}
.copy-btn:hover {
  background: rgba(255, 255, 255, 0.08);
  color: var(--text-primary);
}

.contact-form-panel {
  padding: 40px;
}

.form-group {
  margin-bottom: 24px;
}
.form-label {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.8rem;
  text-transform: uppercase;
  color: var(--text-secondary);
  margin-bottom: 8px;
}
.form-input, .form-textarea {
  width: 100%;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  color: var(--text-primary);
  padding: 14px 18px;
  font-family: var(--font-sans);
  font-size: 1rem;
  transition: var(--transition-fast);
}
.form-input:focus, .form-textarea:focus {
  outline: none;
  border-color: var(--primary-violet);
  background: rgba(255, 255, 255, 0.04);
}

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

.form-submit-btn {
  width: 100%;
  padding: 16px;
  border-radius: 12px;
}

/* Toast Message */
.toast {
  position: fixed;
  bottom: 24px;
  right: 24px;
  max-width: calc(100vw - 48px);
  box-sizing: border-box;
  background: var(--bg-secondary);
  border: 1px solid var(--primary-violet);
  padding: 16px 24px;
  border-radius: 12px;
  color: var(--text-primary);
  font-family: var(--font-mono);
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  z-index: 1000;
  opacity: 0;
  pointer-events: none;
  transform: translateX(calc(100% + 32px));
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.2s ease;
}
.toast.show {
  opacity: 1;
  transform: translateX(0);
}
.toast-icon {
  color: #10b981;
}

/* -------------------------------------------------------------
   FOOTER
------------------------------------------------------------- */
.footer {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding: 40px 0;
  background: var(--bg-primary);
}
.footer-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-copy {
  color: var(--text-muted);
  font-size: 0.9rem;
}
.footer-links {
  display: flex;
  gap: 24px;
  list-style: none;
}
.footer-link-item a {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 0.9rem;
  transition: var(--transition-fast);
}
.footer-link-item a:hover {
  color: var(--text-primary);
}

/* -------------------------------------------------------------
   REVEAL ANIMATIONS (SCROLL EFFECT)
------------------------------------------------------------- */
.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.active {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.15s; }
.reveal-delay-2 { transition-delay: 0.3s; }
.reveal-delay-3 { transition-delay: 0.45s; }

/* -------------------------------------------------------------
   RESPONSIVE DESIGN (MEDIA QUERIES)
------------------------------------------------------------- */
@media (max-width: 992px) {
  .hero-title {
    font-size: 3.2rem;
  }
  .contact-layout {
    grid-template-columns: 1fr;
    gap: 48px;
  }
}

@media (max-width: 768px) {
  .nav-links, .nav-cta {
    display: none; /* simple mobile fallback, or burger menu can be added */
  }
  .header {
    height: 64px;
  }
  .hero-title {
    font-size: 2.5rem;
  }
  .hero-description {
    font-size: 1.1rem;
  }
  .hero-actions {
    flex-direction: column;
  }
  .btn {
    width: 100%;
  }
  .section-title {
    font-size: 2rem;
  }
  .projects-grid {
    grid-template-columns: 1fr;
  }
}

.stack-desc-text {
  color: var(--text-secondary);
  font-size: 0.95rem;
  margin-bottom: 24px;
  flex-grow: 1;
}
.stack-badge {
  align-self: flex-start;
  font-size: 0.75rem;
}

/* Keyframes */
@keyframes pulse-green {
  0% {
    box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.4);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(16, 185, 129, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(16, 185, 129, 0);
  }
}

@keyframes pulse-white {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.4);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(255, 255, 255, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
  }
}

@keyframes pulse-violet {
  0% {
    box-shadow: 0 0 0 0 rgba(139, 92, 246, 0.4);
  }
}

/* Custom Contact Grid Layout */
.contact-grid-custom {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 24px;
  margin-top: 40px;
}

.contact-panel-left {
  padding: 32px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.contact-panel-right {
  padding: 24px 32px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.panel-header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 32px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  padding-bottom: 16px;
}

.panel-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-primary);
}

.panel-subtitle {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  color: var(--text-muted);
}

.channels-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.channel-card {
  display: flex;
  align-items: center;
  gap: 16px;
  width: 100%;
  padding: 20px 24px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  text-decoration: none;
  color: var(--text-primary);
  font: inherit;
  text-align: left;
  cursor: pointer;
  transition: var(--transition-fast);
}

.channel-card:last-child {
  grid-column: span 2;
}

.channel-card:hover {
  background: rgba(139, 92, 246, 0.05);
  border-color: var(--primary-violet);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(139, 92, 246, 0.15);
}

.channel-icon {
  color: var(--text-secondary);
  display: flex;
  align-items: center;
}

.channel-card:hover .channel-icon {
  color: var(--text-primary);
}

.channel-name {
  font-size: 0.95rem;
  font-weight: 600;
}

/* Freelance Platforms */
.platform-list {
  display: flex;
  flex-direction: column;
  width: 100%;
}

.platform-row-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  text-decoration: none;
  color: var(--text-secondary);
  transition: var(--transition-fast);
}

.platform-row-item:last-child {
  border-bottom: none;
}

.platform-row-item:hover {
  color: var(--text-primary);
  padding-left: 8px;
}

.platform-name {
  font-size: 1rem;
  font-weight: 600;
}

.arrow-icon {
  color: var(--text-muted);
  transition: var(--transition-fast);
}

.platform-row-item:hover .arrow-icon {
  color: var(--text-primary);
  transform: translate(2px, -2px);
}

@media (max-width: 992px) {
  .contact-grid-custom {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

@media (max-width: 576px) {
  .channels-grid {
    grid-template-columns: 1fr;
  }
  .channel-card:last-child {
    grid-column: span 1;
  }
}
