/* ============================================================
   Infra Byte Informática — Landing Page Styles
   ============================================================ */

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

:root {
  --cyan-50:  #ecfeff;
  --cyan-100: #cffafe;
  --cyan-200: #a5f3fc;
  --cyan-300: #67e8f9;
  --cyan-400: #22d3ee;
  --cyan-500: #06b6d4;
  --cyan-600: #0891b2;
  --cyan-700: #0e7490;

  --sky-400:  #38bdf8;
  --sky-500:  #0ea5e9;
  --sky-600:  #0284c7;

  --navy-700: #1e3a5f;
  --navy-800: #0f2744;
  --navy-900: #0b1c32;
  --navy-950: #060d1a;

  --gray-50:  #f9fafb;
  --gray-100: #f3f4f6;
  --gray-200: #e5e7eb;
  --gray-500: #6b7280;
  --gray-600: #4b5563;
  --gray-700: #374151;
  --gray-800: #1f2937;
  --gray-900: #111827;

  --white: #ffffff;
  --radius: 16px;
  --radius-sm: 10px;
  --shadow-card: 0 4px 24px rgba(0,0,0,.08);
  --shadow-lg: 0 20px 60px rgba(0,0,0,.12);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--gray-800);
  background: var(--white);
  overflow-x: hidden;
}

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

/* ---- BUTTONS ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  border-radius: 10px;
  cursor: pointer;
  text-decoration: none;
  transition: all .2s ease;
  border: none;
  font-family: inherit;
  font-size: 15px;
}

.btn-primary {
  background: var(--cyan-600);
  color: var(--white);
  padding: 12px 24px;
}
.btn-primary:hover { background: var(--cyan-700); transform: translateY(-1px); box-shadow: 0 8px 24px rgba(8,145,178,.35); }

.btn-outline {
  background: transparent;
  color: var(--cyan-400);
  border: 2px solid rgba(34,211,238,.3);
  padding: 10px 24px;
}
.btn-outline:hover { border-color: var(--cyan-400); background: rgba(6,182,212,.06); }

.btn-ghost {
  background: rgba(255,255,255,.15);
  color: var(--white);
  border: 1px solid rgba(255,255,255,.3);
  padding: 8px 18px;
  font-size: 14px;
  border-radius: 8px;
  backdrop-filter: blur(8px);
}
.btn-ghost:hover { background: rgba(255,255,255,.25); }

.btn-lg { padding: 14px 28px; font-size: 16px; border-radius: 12px; }
.btn-full { width: 100%; justify-content: center; padding: 16px; font-size: 16px; border-radius: 12px; }

/* ---- NAV ---- */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  transition: all .3s ease;
  padding: 0;
}

.nav.scrolled {
  background: rgba(6,13,26,.85);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(6,182,212,.12);
  box-shadow: 0 4px 32px rgba(0,0,0,.3);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--white);
  font-weight: 700;
  font-size: 17px;
  letter-spacing: -.01em;
}

.logo-mark {
  width: 32px;
  height: 34px;
  color: var(--cyan-400);
  flex-shrink: 0;
}

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

.nav-links a {
  text-decoration: none;
  color: rgba(255,255,255,.75);
  font-size: 14px;
  font-weight: 500;
  transition: color .2s;
}
.nav-links a:hover { color: var(--white); }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all .3s;
}

.nav-mobile {
  display: none;
  flex-direction: column;
  background: rgba(6,13,26,.96);
  backdrop-filter: blur(16px);
  border-top: 1px solid rgba(6,182,212,.12);
  padding: 16px 24px 20px;
  gap: 4px;
}
.nav-mobile.open { display: flex; }
.nav-mobile a {
  text-decoration: none;
  color: rgba(255,255,255,.8);
  font-size: 15px;
  font-weight: 500;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,.06);
  transition: color .2s;
}
.nav-mobile a:last-child { border-bottom: none; }
.nav-mobile a:hover { color: var(--cyan-300); }

/* ---- HERO ---- */
.hero {
  background: linear-gradient(135deg, var(--navy-950) 0%, var(--navy-900) 40%, var(--navy-800) 70%, var(--navy-900) 100%);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: 68px;
  position: relative;
  overflow: hidden;
}

.hero-bg-orbs { position: absolute; inset: 0; pointer-events: none; }

.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
}
.orb-1 {
  width: 500px; height: 500px;
  background: rgba(6,182,212,.18);
  top: -100px; left: -100px;
  animation: orbFloat 8s ease-in-out infinite;
}
.orb-2 {
  width: 400px; height: 400px;
  background: rgba(14,165,233,.12);
  bottom: 50px; right: -80px;
  animation: orbFloat 10s ease-in-out infinite reverse;
}
.orb-3 {
  width: 300px; height: 300px;
  background: rgba(34,211,238,.08);
  top: 40%; left: 50%;
  transform: translateX(-50%);
}

@keyframes orbFloat {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-30px) scale(1.04); }
}

.hero-inner {
  position: relative;
  z-index: 1;
  padding: 80px 24px 60px;
  text-align: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(6,182,212,.12);
  border: 1px solid rgba(6,182,212,.25);
  color: var(--cyan-300);
  font-size: 13px;
  font-weight: 500;
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 28px;
  letter-spacing: .01em;
}

.badge-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--cyan-400);
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: .5; transform: scale(.8); }
}

.hero-title {
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 800;
  line-height: 1.12;
  color: var(--white);
  margin-bottom: 20px;
  letter-spacing: -.02em;
}

.gradient-text {
  background: linear-gradient(90deg, var(--cyan-300), var(--sky-400), var(--cyan-400));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 1.05rem;
  color: rgba(255,255,255,.65);
  max-width: 580px;
  margin: 0 auto 32px;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.hero-stats {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0;
  flex-wrap: wrap;
  margin-top: 12px;
}

.stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 32px;
}
.stat-num {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -.02em;
  line-height: 1.1;
}
.stat-label {
  font-size: .78rem;
  color: rgba(255,255,255,.45);
  margin-top: 3px;
  letter-spacing: .01em;
}
.stat-sep {
  width: 1px;
  height: 36px;
  background: rgba(255,255,255,.12);
}

/* ---- HERO VISUAL (BROWSER MOCKUP) ---- */
.hero-visual {
  position: relative;
  z-index: 1;
  padding-bottom: 64px;
}

.app-preview {
  background: rgba(6,13,26,.7);
  border: 1px solid rgba(6,182,212,.18);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 -8px 60px rgba(6,182,212,.15), 0 0 0 1px rgba(255,255,255,.04);
  max-width: 800px;
  margin: 0 auto;
}

.app-preview-bar {
  background: rgba(255,255,255,.04);
  border-bottom: 1px solid rgba(255,255,255,.06);
  padding: 10px 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.dot { width: 10px; height: 10px; border-radius: 50%; }
.dot-red    { background: #ff5f57; }
.dot-yellow { background: #ffbd2e; }
.dot-green  { background: #28ca41; }

.preview-title {
  margin-left: 12px;
  font-size: 12px;
  color: rgba(255,255,255,.35);
  font-weight: 500;
  letter-spacing: .01em;
}

/* Mock website inside browser */
.app-preview-body.mock-website {
  padding: 16px;
  background: linear-gradient(180deg, #0a1628 0%, #0c1e35 100%);
  min-height: 260px;
}

.mock-site-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 0 12px;
  border-bottom: 1px solid rgba(255,255,255,.06);
  margin-bottom: 16px;
}
.mock-logo-block {
  width: 80px; height: 8px;
  background: rgba(6,182,212,.5);
  border-radius: 4px;
}
.mock-nav-pills { display: flex; gap: 8px; align-items: center; }
.mock-pill { width: 36px; height: 6px; background: rgba(255,255,255,.12); border-radius: 3px; }
.mock-pill-filled { width: 56px; height: 22px; background: rgba(6,182,212,.35); border-radius: 5px; }

.mock-site-hero { padding: 12px 0 16px; border-bottom: 1px solid rgba(255,255,255,.06); margin-bottom: 14px; }
.mock-badge-row { margin-bottom: 10px; }
.mock-badge { display: inline-block; width: 140px; height: 16px; background: rgba(6,182,212,.2); border-radius: 8px; }
.mock-h1-line { height: 16px; background: rgba(255,255,255,.25); border-radius: 4px; margin-bottom: 8px; }
.mock-h1-lg { width: 70%; }
.mock-h1-md { width: 50%; background: linear-gradient(90deg, rgba(6,182,212,.4), rgba(14,165,233,.3)); }
.mock-sub-line { height: 8px; background: rgba(255,255,255,.1); border-radius: 3px; margin-bottom: 6px; }
.mock-sub-short { width: 60%; margin-bottom: 14px; }
.mock-cta-row { display: flex; gap: 8px; }
.mock-cta-primary { width: 110px; height: 26px; background: rgba(8,145,178,.7); border-radius: 6px; }
.mock-cta-outline { width: 90px; height: 26px; border: 1px solid rgba(6,182,212,.35); border-radius: 6px; }

.mock-cards-row { display: flex; gap: 10px; }
.mock-card-item { flex: 1; background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.06); border-radius: 8px; padding: 10px; }
.mock-card-icon { width: 24px; height: 24px; border-radius: 6px; margin-bottom: 8px; }
.mock-icon-cyan  { background: rgba(6,182,212,.4); }
.mock-icon-blue  { background: rgba(14,165,233,.4); }
.mock-icon-teal  { background: rgba(20,184,166,.4); }
.mock-line { height: 7px; background: rgba(255,255,255,.15); border-radius: 3px; margin-bottom: 5px; }
.mock-line-sm { width: 65%; background: rgba(255,255,255,.08); }

/* ---- SECTION COMMON ---- */
.section-header { text-align: center; margin-bottom: 56px; }

.section-label {
  display: inline-block;
  background: var(--cyan-50);
  color: var(--cyan-700);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .08em;
  padding: 5px 13px;
  border-radius: 100px;
  margin-bottom: 16px;
}

.section-title {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 800;
  color: var(--gray-900);
  line-height: 1.2;
  letter-spacing: -.02em;
  margin-bottom: 14px;
}

.section-sub {
  color: var(--gray-500);
  font-size: 1.05rem;
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ---- SERVICES / FEATURES ---- */
.services {
  padding: 100px 0;
  background: var(--white);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 20px;
}

.feature-card {
  background: var(--white);
  border: 1.5px solid var(--gray-100);
  border-radius: var(--radius);
  padding: 28px;
  transition: all .25s ease;
  position: relative;
  overflow: hidden;
  grid-column: span 4;
}
.feature-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(6,182,212,.04) 0%, transparent 60%);
  opacity: 0;
  transition: opacity .25s;
}
.feature-card:hover {
  border-color: var(--cyan-300);
  box-shadow: 0 8px 32px rgba(6,182,212,.1);
  transform: translateY(-3px);
}
.feature-card:hover::before { opacity: 1; }

.feature-card-large {
  grid-column: span 6;
  background-image: linear-gradient(145deg, #ffffff 0%, #f0fdff 100%);
}
.feature-card-large.fc-blue {
  background-image: linear-gradient(145deg, #ffffff 0%, #f0f9ff 100%);
}

.feature-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--gray-900);
  margin: 14px 0 10px;
  line-height: 1.3;
}
.feature-card p {
  font-size: .93rem;
  color: var(--gray-600);
  line-height: 1.65;
}

.fc-icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.fc-icon-cyan   { background: rgba(6,182,212,.12); color: var(--cyan-600); }
.fc-icon-blue   { background: #dbeafe; color: #2563eb; }
.fc-icon-teal   { background: #ccfbf1; color: #0f766e; }
.fc-icon-sky    { background: #e0f2fe; color: var(--sky-600); }
.fc-icon-indigo { background: #e0e7ff; color: #4338ca; }
.fc-icon-emerald{ background: #d1fae5; color: #059669; }

.fc-tag {
  display: inline-block;
  margin-top: 16px;
  font-size: 12px;
  font-weight: 600;
  color: var(--cyan-700);
  background: rgba(6,182,212,.1);
  padding: 4px 10px;
  border-radius: 6px;
}
.fc-tag-blue {
  color: #1e40af;
  background: #dbeafe;
}

/* ---- SHOWCASE ---- */
.showcase {
  padding: 100px 0;
  background: var(--gray-50);
}

.showcase-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  background: var(--white);
  border: 1.5px solid var(--gray-100);
  border-radius: 20px;
  padding: 48px;
  box-shadow: var(--shadow-card);
}

.showcase-badge {
  display: inline-block;
  background: rgba(6,182,212,.1);
  color: var(--cyan-700);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .06em;
  padding: 4px 12px;
  border-radius: 100px;
  margin-bottom: 16px;
}

.showcase-content h3 {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--gray-900);
  line-height: 1.25;
  margin-bottom: 12px;
  letter-spacing: -.02em;
}
.showcase-content p {
  color: var(--gray-600);
  line-height: 1.7;
  margin-bottom: 20px;
  font-size: .97rem;
}

.showcase-list {
  list-style: none;
  margin-bottom: 28px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.showcase-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: .93rem;
  color: var(--gray-700);
}
.showcase-list li svg {
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--cyan-600);
}

/* Pylates app preview inside showcase */
.showcase-visual { display: flex; justify-content: center; }

.showcase-device {
  background: rgba(6,13,26,.85);
  border: 1px solid rgba(6,182,212,.15);
  border-radius: 12px;
  overflow: hidden;
  width: 100%;
  max-width: 360px;
  box-shadow: 0 12px 48px rgba(6,182,212,.1);
}

.device-bar {
  background: rgba(255,255,255,.04);
  border-bottom: 1px solid rgba(255,255,255,.06);
  padding: 8px 14px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.device-body {
  display: flex;
  min-height: 200px;
}

.pylates-sidebar {
  width: 110px;
  border-right: 1px solid rgba(255,255,255,.07);
  padding: 12px 8px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex-shrink: 0;
}

.ps-logo-row {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 4px 6px 10px;
  border-bottom: 1px solid rgba(255,255,255,.07);
  margin-bottom: 6px;
}
.ps-logo-block {
  width: 14px; height: 14px;
  background: var(--cyan-500);
  border-radius: 3px;
}
.ps-logo-row span {
  font-size: 11px;
  font-weight: 700;
  color: rgba(255,255,255,.7);
}

.ps-item {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 6px 8px;
  border-radius: 6px;
  font-size: 11px;
  color: rgba(255,255,255,.45);
  cursor: default;
}
.ps-item-active {
  background: rgba(6,182,212,.15);
  color: var(--cyan-300);
}

.pylates-content { flex: 1; padding: 12px; }

.pyl-chips { display: flex; gap: 5px; margin-bottom: 10px; }
.pyl-chip {
  font-size: 10px;
  font-weight: 600;
  padding: 3px 8px;
  border-radius: 5px;
  color: rgba(255,255,255,.4);
  background: rgba(255,255,255,.05);
  cursor: default;
}
.pyl-chip-active {
  background: rgba(6,182,212,.2);
  color: var(--cyan-300);
}

.pyl-exercise {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 7px 0;
  border-bottom: 1px solid rgba(255,255,255,.05);
}
.pyl-exercise:last-child { border-bottom: none; }
.pyl-dot { width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0; }
.pyl-info { flex: 1; min-width: 0; }
.pyl-name { font-size: 11px; font-weight: 600; color: rgba(255,255,255,.8); }
.pyl-meta { font-size: 9.5px; color: rgba(255,255,255,.35); margin-top: 1px; }
.pyl-badge {
  font-size: 9px;
  font-weight: 600;
  padding: 2px 6px;
  border-radius: 4px;
  background: rgba(6,182,212,.15);
  color: var(--cyan-300);
  white-space: nowrap;
  flex-shrink: 0;
}

/* ---- FOR WHOM ---- */
.for-whom {
  padding: 100px 0;
  background: var(--white);
}

.persona-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin-bottom: 56px;
}

.persona-card {
  background: var(--gray-50);
  border: 1.5px solid var(--gray-100);
  border-radius: var(--radius);
  padding: 28px;
  transition: all .25s;
}
.persona-card:hover {
  border-color: var(--cyan-200);
  box-shadow: 0 6px 24px rgba(6,182,212,.08);
  transform: translateY(-2px);
}
.persona-icon { font-size: 2rem; margin-bottom: 14px; }
.persona-card h3 { font-size: 1rem; font-weight: 700; color: var(--gray-900); margin-bottom: 8px; }
.persona-card p  { font-size: .9rem; color: var(--gray-600); line-height: 1.65; }

.pain-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.pain-col {
  border-radius: var(--radius);
  padding: 28px 32px;
}
.pain-col-before { background: #fff5f5; border: 1.5px solid #fed7d7; }
.pain-col-after  { background: #f0fdfa; border: 1.5px solid #99f6e4; }

.pain-label {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: 20px;
  display: block;
}
.pain-label-red   { color: #c53030; }
.pain-label-green { color: #276749; }

.pain-list { list-style: none; display: flex; flex-direction: column; gap: 14px; }
.pain-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: .9rem;
  color: var(--gray-700);
  line-height: 1.5;
}
.pain-icon {
  width: 20px; height: 20px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}
.pain-x     { background: #fed7d7; color: #c53030; }
.pain-check { background: #bbf7d0; color: #16a34a; }

/* ---- TEAM ---- */
.team {
  padding: 100px 0;
  background: var(--gray-50);
}

.team-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 40px;
}

.team-card {
  background: var(--white);
  border: 1.5px solid var(--gray-100);
  border-radius: var(--radius);
  padding: 32px;
  display: flex;
  gap: 24px;
  align-items: flex-start;
  transition: all .25s;
}
.team-card:hover {
  border-color: var(--cyan-200);
  box-shadow: 0 8px 32px rgba(6,182,212,.08);
  transform: translateY(-2px);
}

.team-avatar {
  width: 56px; height: 56px;
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
  font-weight: 800;
  flex-shrink: 0;
  letter-spacing: .02em;
}
.team-avatar-cyan  { background: rgba(6,182,212,.15); color: var(--cyan-600); }
.team-avatar-navy  { background: rgba(14,165,233,.12); color: var(--sky-600); }

.team-info h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 4px;
}
.team-role {
  font-size: .82rem;
  font-weight: 600;
  color: var(--cyan-600);
  text-transform: uppercase;
  letter-spacing: .04em;
  margin-bottom: 12px;
}
.team-info p {
  font-size: .9rem;
  color: var(--gray-600);
  line-height: 1.65;
}

.team-location {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  background: rgba(6,182,212,.06);
  border: 1px solid rgba(6,182,212,.15);
  border-radius: var(--radius-sm);
  padding: 14px 18px;
  font-size: .9rem;
  color: var(--gray-600);
  line-height: 1.5;
}
.team-location svg { flex-shrink: 0; margin-top: 2px; color: var(--cyan-600); }
.team-location strong { color: var(--gray-800); }

/* ---- CONTACT ---- */
.contact {
  padding: 100px 0;
  background: linear-gradient(135deg, var(--navy-950) 0%, var(--navy-900) 40%, var(--navy-800) 70%, var(--navy-900) 100%);
  position: relative;
  overflow: hidden;
}

.contact .section-label-light {
  background: rgba(6,182,212,.15);
  color: var(--cyan-300);
}

.contact-title { color: var(--white); }
.contact-sub   { color: rgba(255,255,255,.6); }

.contact-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.contact-text { text-align: left; }
.contact-text .section-title { margin-bottom: 14px; }

.contact-cards { display: flex; flex-direction: column; gap: 14px; }

.contact-card {
  display: flex;
  align-items: center;
  gap: 16px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius);
  padding: 18px 22px;
  text-decoration: none;
  transition: all .25s;
  cursor: pointer;
}
.contact-card:hover {
  background: rgba(6,182,212,.1);
  border-color: rgba(6,182,212,.3);
  transform: translateX(4px);
}

.cc-icon {
  width: 44px; height: 44px;
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.cc-icon-green { background: rgba(16,185,129,.2); color: #10b981; }
.cc-icon-pink  { background: rgba(244,63,94,.15);  color: #f43f5e; }
.cc-icon-cyan  { background: rgba(6,182,212,.2);   color: var(--cyan-400); }

.cc-body { flex: 1; }
.cc-title { font-size: .95rem; font-weight: 600; color: var(--white); }
.cc-sub   { font-size: .83rem; color: rgba(255,255,255,.5); margin-top: 2px; }

.cc-arrow { color: rgba(255,255,255,.3); transition: transform .2s, color .2s; }
.contact-card:hover .cc-arrow { transform: translateX(4px); color: var(--cyan-400); }

/* ---- FOOTER ---- */
.footer {
  background: #030810;
  padding: 36px 0 32px;
  border-top: 1px solid rgba(6,182,212,.08);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-logo { color: var(--cyan-400); font-size: 15px; }
.footer-logo .logo-mark { color: var(--cyan-400); }

.footer-tagline {
  font-size: .83rem;
  color: rgba(255,255,255,.3);
  margin-top: 5px;
}
.footer-location {
  font-size: .78rem;
  color: rgba(255,255,255,.2);
  margin-top: 2px;
}

.footer-copy {
  font-size: .82rem;
  color: rgba(255,255,255,.25);
}

/* ---- SCROLL REVEAL ---- */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .55s ease, transform .55s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ---- RESPONSIVE ---- */
@media (max-width: 900px) {
  .contact-inner { grid-template-columns: 1fr; gap: 40px; }
  .contact-text { text-align: center; }
  .contact-text .section-label { display: block; }
  .showcase-card { grid-template-columns: 1fr; gap: 32px; }
  .showcase-visual { order: -1; }
}

@media (max-width: 768px) {
  .features-grid { grid-template-columns: 1fr; }
  .feature-card, .feature-card-large { grid-column: span 1; }
  .team-grid { grid-template-columns: 1fr; }
  .pain-block { grid-template-columns: 1fr; }
  .hero-stats { gap: 12px; }
  .stat { padding: 0 16px; }
  .showcase-card { padding: 28px 24px; }
}

@media (max-width: 640px) {
  .nav-links { display: none; }
  .nav-toggle { display: flex; }
  .hero-title { font-size: 2rem; }
  .hero-actions { flex-direction: column; align-items: center; }
  .hero-actions .btn { width: 100%; max-width: 300px; justify-content: center; }
  .stat-sep { display: none; }
  .hero-stats { flex-direction: column; gap: 8px; }
  .stat { padding: 8px 0; }
  .mock-cards-row { display: none; }
  .persona-grid { grid-template-columns: 1fr; }
  .team-card { flex-direction: column; gap: 16px; }
  .footer-inner { flex-direction: column; align-items: flex-start; }
  .contact-inner { grid-template-columns: 1fr; }
}
