/* ============================================================
   GUTTER RECOVERY NC — Main Stylesheet
   Color palette:
     Deep charcoal:  #1a1a2e
     Dark navy:      #0d0d1a
     Warm gold:      #f5a623
     Clean white:    #ffffff
     Soft slate:     #4a5568
     Light slate:    #e2e8f0
     Mid slate:      #a0aec0
   ============================================================ */

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

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

body {
  font-family: 'Inter', sans-serif;
  color: #ffffff;
  background-color: #1a1a2e;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

img, svg { display: block; }

a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s;
}

ul { list-style: none; }

/* ---------- Utility ---------- */
.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px;
}

.br-desktop { display: block; }

/* ---------- Typography ---------- */
h1, h2, h3, h4 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

h1 { font-size: clamp(2.5rem, 6vw, 4.5rem); }
h2 { font-size: clamp(2rem, 4.5vw, 3.2rem); }
h3 { font-size: 1.35rem; font-weight: 700; }
h4 { font-size: 1.1rem; font-weight: 700; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 28px;
  border-radius: 8px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.25s ease;
  white-space: nowrap;
}

.btn-lg {
  padding: 16px 36px;
  font-size: 1.05rem;
}

.btn-full { width: 100%; }

.btn-gold {
  background-color: #f5a623;
  color: #1a1a2e;
  border-color: #f5a623;
}

.btn-gold:hover {
  background-color: #e09415;
  border-color: #e09415;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(245, 166, 35, 0.35);
}

.btn-outline {
  background: transparent;
  color: #ffffff;
  border-color: rgba(255,255,255,0.45);
}

.btn-outline:hover {
  border-color: #ffffff;
  background: rgba(255,255,255,0.08);
  transform: translateY(-2px);
}

/* ---------- Sections ---------- */
.section {
  padding: 100px 0;
}

.section-dark {
  background-color: #0d0d1a;
}

.section-light {
  background-color: #f7f8fc;
  color: #1a1a2e;
}

.section-community {
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 60%, #0f3460 100%);
}

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

.section-label {
  display: inline-block;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #f5a623;
  margin-bottom: 16px;
  padding: 4px 14px;
  border: 1.5px solid rgba(245, 166, 35, 0.3);
  border-radius: 50px;
}

.section-light .section-label {
  color: #d4880e;
  border-color: rgba(212, 136, 14, 0.3);
}

.section-label-gold {
  color: #f5a623 !important;
  border-color: rgba(245, 166, 35, 0.4) !important;
}

.section-header h2 {
  margin-bottom: 20px;
}

.section-sub {
  font-size: 1.15rem;
  opacity: 0.75;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

/* ---------- NAV ---------- */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 20px 0;
  background: rgba(13, 13, 26, 0);
  backdrop-filter: blur(0px);
  transition: background 0.4s ease, backdrop-filter 0.4s ease, padding 0.3s ease, box-shadow 0.3s ease;
}

.nav.scrolled {
  background: rgba(13, 13, 26, 0.93);
  backdrop-filter: blur(12px);
  padding: 14px 0;
  box-shadow: 0 2px 32px rgba(0,0,0,0.4);
}

.nav-inner {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  margin-right: auto;
}

.logo-mark {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: #f5a623;
  color: #1a1a2e;
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: 0.8rem;
  border-radius: 6px;
  letter-spacing: -0.03em;
}

.logo-text {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 1rem;
  color: #ffffff;
  letter-spacing: -0.01em;
}

.logo-nc {
  color: #f5a623;
}

.nav-links {
  display: flex;
  gap: 28px;
}

.nav-links a {
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(255,255,255,0.8);
  transition: color 0.2s;
}

.nav-links a:hover {
  color: #f5a623;
}

.nav-cta {
  padding: 10px 22px;
  font-size: 0.875rem;
}

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

.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #ffffff;
  border-radius: 2px;
  transition: all 0.25s;
}

/* ---------- HERO ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, #1a1a2e 0%, #0d0d1a 50%, #0a0a1a 100%);
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 70% 50%, rgba(245,166,35,0.06) 0%, transparent 70%),
    radial-gradient(ellipse 40% 40% at 20% 80%, rgba(15,52,96,0.4) 0%, transparent 70%);
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 120px;
  background: linear-gradient(to bottom, transparent, #1a1a2e);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  padding-top: 120px;
  padding-bottom: 80px;
  max-width: 840px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: rgba(255,255,255,0.6);
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 50px;
  padding: 6px 16px;
  margin-bottom: 28px;
}

.hero-headline {
  color: #ffffff;
  margin-bottom: 28px;
}

.hero-headline em {
  font-style: normal;
  color: #f5a623;
}

.hero-sub {
  font-size: clamp(1.05rem, 2.5vw, 1.3rem);
  color: rgba(255,255,255,0.72);
  max-width: 620px;
  margin-bottom: 44px;
  line-height: 1.6;
}

.hero-ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 60px;
}

.hero-scroll-hint {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.8rem;
  font-weight: 500;
  color: rgba(255,255,255,0.4);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.hero-scroll-hint svg {
  animation: scrollBounce 2s infinite;
  color: rgba(255,255,255,0.4);
}

@keyframes scrollBounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(4px); }
}

/* ---------- STATS ---------- */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 32px;
}

.stat-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  padding: 40px 28px;
  text-align: center;
  transition: border-color 0.3s, transform 0.3s;
}

.stat-card:hover {
  border-color: rgba(245,166,35,0.4);
  transform: translateY(-4px);
}

.stat-number {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: clamp(2.8rem, 5vw, 4rem);
  color: #f5a623;
  line-height: 1;
  margin-bottom: 16px;
}

.stat-unit {
  font-size: 0.55em;
  opacity: 0.85;
}

.stat-desc {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.5;
}

.stats-source {
  text-align: center;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.35);
  letter-spacing: 0.02em;
}

/* ---------- MISSION ---------- */
.mission-statement {
  max-width: 780px;
  margin: 0 auto 64px;
  text-align: center;
}

.mission-statement p {
  font-size: 1.2rem;
  color: #4a5568;
  line-height: 1.7;
  margin-bottom: 16px;
}

.mission-goal {
  font-size: 1.4rem !important;
  color: #1a1a2e !important;
  font-weight: 600;
}

.mission-goal strong {
  color: #d4880e;
}

.mission-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.mission-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 40px 32px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0,0,0,0.05);
  transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
}

.mission-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.1);
  border-color: #f5a623;
}

.mission-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 72px;
  height: 72px;
  background: rgba(245,166,35,0.1);
  color: #d4880e;
  border-radius: 16px;
  margin-bottom: 24px;
}

.mission-card h3 {
  color: #1a1a2e;
  margin-bottom: 12px;
}

.mission-card p {
  color: #4a5568;
  font-size: 0.95rem;
  line-height: 1.6;
}

/* ---------- APP SECTION ---------- */
.app-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.feature-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 20px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 12px;
  transition: border-color 0.25s, background 0.25s;
}

.feature-list li:hover {
  border-color: rgba(245,166,35,0.3);
  background: rgba(245,166,35,0.04);
}

.feature-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
  line-height: 1;
  margin-top: 2px;
}

.feature-list li div {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.feature-list li strong {
  font-weight: 600;
  color: #ffffff;
  font-size: 0.95rem;
}

.feature-list li span {
  color: rgba(255,255,255,0.55);
  font-size: 0.875rem;
  line-height: 1.5;
}

.app-cta-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 36px;
}

/* Phone mockup */
.phone-frame {
  width: 240px;
  height: 480px;
  background: #1a1a2e;
  border: 2.5px solid rgba(255,255,255,0.15);
  border-radius: 36px;
  padding: 20px 16px;
  box-shadow:
    0 0 0 6px rgba(255,255,255,0.04),
    0 32px 80px rgba(0,0,0,0.5),
    inset 0 1px 0 rgba(255,255,255,0.08);
  position: relative;
  flex-shrink: 0;
}

.phone-frame::before {
  content: '';
  position: absolute;
  top: 14px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 6px;
  background: rgba(255,255,255,0.12);
  border-radius: 3px;
}

.phone-screen {
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding-top: 18px;
}

.phone-header {
  display: flex;
  align-items: center;
  justify-content: center;
}

.phone-logo {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: 1rem;
  color: #f5a623;
  letter-spacing: -0.02em;
}

.phone-logo span {
  color: rgba(255,255,255,0.5);
  font-size: 0.75em;
}

.phone-welcome {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.4;
  padding: 0 4px;
}

.phone-welcome strong {
  color: #ffffff;
  font-size: 1.1em;
}

.phone-cards {
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}

.phone-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: 10px;
  padding: 12px 14px;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.8);
  font-weight: 500;
}

.pc-job { border-left: 3px solid #f5a623; }
.pc-mentor { border-left: 3px solid #68d391; }
.pc-meeting { border-left: 3px solid #76e4f7; }

.phone-badge {
  text-align: center;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.6rem;
  letter-spacing: 0.15em;
  color: #f5a623;
  opacity: 0.7;
  padding-bottom: 4px;
}

.app-badge {
  display: inline-block;
  background: rgba(245,166,35,0.15);
  color: #f5a623;
  border: 1px solid rgba(245,166,35,0.3);
  padding: 4px 14px;
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  margin-bottom: 16px;
}

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

.app-cta-text p {
  color: rgba(255,255,255,0.65);
  font-size: 0.95rem;
  margin-bottom: 24px;
  line-height: 1.6;
}

/* ---------- COMMUNITY ---------- */
.community-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 56px;
}

.community-feature {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: 14px;
  padding: 32px 24px;
  text-align: center;
  transition: border-color 0.3s, transform 0.3s;
}

.community-feature:hover {
  border-color: rgba(245,166,35,0.4);
  transform: translateY(-4px);
}

.cf-icon {
  font-size: 2rem;
  margin-bottom: 16px;
}

.community-feature h4 {
  margin-bottom: 10px;
  font-size: 1rem;
}

.community-feature p {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.6;
}

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

.cta-note {
  margin-top: 14px;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.4);
  font-weight: 500;
}

/* ---------- SUPPORT ---------- */
.support-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.support-lead {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 1.5rem;
  color: #1a1a2e;
  margin-bottom: 20px;
  line-height: 1.3;
}

.support-text p {
  color: #4a5568;
  margin-bottom: 24px;
  font-size: 1rem;
  line-height: 1.7;
}

.support-bullets {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.support-bullets li {
  color: #4a5568;
  font-size: 0.92rem;
  display: flex;
  align-items: flex-start;
  gap: 8px;
  padding: 8px 0;
  border-bottom: 1px solid #e2e8f0;
}

.support-form-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 20px;
  padding: 44px 40px;
  box-shadow: 0 8px 40px rgba(0,0,0,0.08);
}

.support-form-card h3 {
  color: #1a1a2e;
  margin-bottom: 12px;
  font-size: 1.5rem;
}

.support-form-card > p {
  color: #4a5568;
  font-size: 0.95rem;
  margin-bottom: 28px;
  line-height: 1.6;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 16px;
}

.form-group label {
  font-size: 0.85rem;
  font-weight: 600;
  color: #1a1a2e;
  letter-spacing: 0.01em;
}

.form-group input {
  padding: 14px 16px;
  border: 2px solid #e2e8f0;
  border-radius: 10px;
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  color: #1a1a2e;
  background: #f7f8fc;
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
}

.form-group input:focus {
  border-color: #f5a623;
  box-shadow: 0 0 0 3px rgba(245,166,35,0.15);
  background: #ffffff;
}

.form-group input::placeholder {
  color: #a0aec0;
}

.form-note {
  margin-top: 18px;
  font-size: 0.82rem;
  color: #a0aec0;
  text-align: center;
}

.form-note a {
  color: #d4880e;
  font-weight: 500;
}

.form-note a:hover {
  text-decoration: underline;
}

/* ---------- FOOTER ---------- */
.footer {
  background: #0a0a14;
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 72px;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 60px;
  padding-bottom: 56px;
}

.footer-brand .footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}

.footer-tagline {
  color: rgba(255,255,255,0.45);
  font-size: 0.9rem;
  line-height: 1.6;
  max-width: 380px;
}

.footer-links h4 {
  color: rgba(255,255,255,0.5);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.footer-links a {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,0.7);
  font-size: 0.9rem;
  margin-bottom: 12px;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: #f5a623;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 24px 0;
}

.footer-bottom p {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.3);
  text-align: center;
}

/* ---------- Animations ---------- */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  animation: fadeInUp 0.8s ease forwards;
}

.fade-in:nth-child(1) { animation-delay: 0.1s; }
.fade-in:nth-child(2) { animation-delay: 0.25s; }
.fade-in:nth-child(3) { animation-delay: 0.4s; }
.fade-in:nth-child(4) { animation-delay: 0.55s; }
.fade-in:nth-child(5) { animation-delay: 0.65s; }

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

/* Scroll-triggered reveals */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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

/* Stagger children inside grids */
.stats-grid .reveal:nth-child(2) { transition-delay: 0.1s; }
.stats-grid .reveal:nth-child(3) { transition-delay: 0.2s; }
.stats-grid .reveal:nth-child(4) { transition-delay: 0.3s; }

.mission-cards .reveal:nth-child(2) { transition-delay: 0.12s; }
.mission-cards .reveal:nth-child(3) { transition-delay: 0.24s; }

.community-grid .reveal:nth-child(2) { transition-delay: 0.1s; }
.community-grid .reveal:nth-child(3) { transition-delay: 0.2s; }
.community-grid .reveal:nth-child(4) { transition-delay: 0.3s; }

/* ---------- Mobile Nav Drawer ---------- */
@media (max-width: 900px) {
  .nav-links, .nav-cta {
    display: none;
  }

  .nav-hamburger {
    display: flex;
  }

  .nav-inner {
    position: relative;
  }

  .nav-links.mobile-open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: 280px;
    background: rgba(13,13,26,0.98);
    backdrop-filter: blur(20px);
    padding: 80px 32px 40px;
    gap: 0;
    box-shadow: -8px 0 40px rgba(0,0,0,0.5);
    z-index: 999;
  }

  .nav-links.mobile-open a {
    display: block;
    font-size: 1.1rem;
    padding: 16px 0;
    border-bottom: 1px solid rgba(255,255,255,0.07);
    color: rgba(255,255,255,0.85);
  }

  .nav-links.mobile-open + .nav-cta {
    display: none;
  }
}

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .community-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

  h1 { font-size: 2.6rem; }
  h2 { font-size: 2rem; }

  .br-desktop { display: inline; }

  .hero-content { padding-top: 100px; }
  .hero-ctas { flex-direction: column; gap: 12px; }
  .hero-ctas .btn { width: 100%; text-align: center; }

  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .stat-card { padding: 28px 20px; }
  .stat-number { font-size: 2.6rem; }

  .mission-cards { grid-template-columns: 1fr; gap: 20px; }

  .app-layout {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .app-cta-card { flex-direction: column; }

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

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

  .support-form-card { padding: 32px 24px; }

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

@media (max-width: 480px) {
  .stats-grid { grid-template-columns: 1fr; }
  .community-grid { grid-template-columns: 1fr; }
  .section-header { margin-bottom: 44px; }
}

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

.social-card {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 16px;
  padding: 1.5rem;
  text-decoration: none;
  color: inherit;
  transition: background 0.2s, border-color 0.2s, transform 0.2s;
  position: relative;
}

.social-card:hover {
  background: rgba(255,255,255,0.09);
  border-color: rgba(245,166,35,0.4);
  transform: translateY(-3px);
}

.social-icon {
  width: 60px;
  height: 60px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.social-tiktok { background: rgba(0,0,0,0.5); color: #fff; }
.social-instagram { background: linear-gradient(135deg, #833ab4, #fd1d1d, #fcb045); color: #fff; }
.social-facebook { background: #1877f2; color: #fff; }

.social-info { flex: 1; }
.social-info h4 { margin: 0 0 0.15rem; font-size: 1.05rem; color: #fff; }
.social-info span { font-size: 0.8rem; color: var(--gold); font-weight: 600; display: block; margin-bottom: 0.4rem; }
.social-info p { margin: 0; font-size: 0.85rem; color: rgba(255,255,255,0.6); line-height: 1.4; }

.social-arrow {
  font-size: 1.3rem;
  color: rgba(255,255,255,0.3);
  transition: color 0.2s, transform 0.2s;
}
.social-card:hover .social-arrow {
  color: var(--gold);
  transform: translateX(4px);
}

@media (max-width: 768px) {
  .social-grid {
    grid-template-columns: 1fr;
  }
}
