/* ============================================================
   PEPTIDETEAM - GLOBAL STYLES
   ============================================================ */

/* ----------------------------- */
/* RESET & BASE                  */
/* ----------------------------- */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  color: #e2e8f0;
  background: #060a12;
  line-height: 1.6;
  overflow-x: hidden;
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
ul { list-style: none; }
button { font-family: inherit; }

/* ----------------------------- */
/* UTILITY CLASSES               */
/* ----------------------------- */
.container { max-width: 1140px; margin: 0 auto; padding: 0 24px; }
.container-narrow { max-width: 800px; margin: 0 auto; padding: 0 24px; }
.gradient-text {
  background: linear-gradient(135deg, #00d4aa 0%, #0099ff 50%, #7c3aed 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.section { padding: 100px 0; }
.section-alt { background: #080c16; }
.text-center { text-align: center; }

.section-label {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #00d4aa;
  margin-bottom: 16px;
}
.section-title {
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 800;
  line-height: 1.15;
  color: #f1f5f9;
  margin-bottom: 20px;
}
.section-subtitle {
  font-size: 18px;
  color: #94a3b8;
  max-width: 640px;
  line-height: 1.7;
}
.section-subtitle.centered { margin-left: auto; margin-right: auto; }

/* ----------------------------- */
/* BUTTONS                       */
/* ----------------------------- */
.cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 18px 36px;
  background: linear-gradient(135deg, #00d4aa, #0099ff);
  color: #fff;
  font-size: 17px;
  font-weight: 700;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.3s;
  text-decoration: none;
  box-shadow: 0 8px 32px rgba(0, 153, 255, 0.25);
}
.cta-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(0, 153, 255, 0.35);
}
.cta-btn-outline {
  background: transparent;
  border: 2px solid rgba(0, 153, 255, 0.4);
  box-shadow: none;
  color: #0099ff;
}
.cta-btn-outline:hover {
  border-color: #0099ff;
  background: rgba(0, 153, 255, 0.08);
  box-shadow: none;
  transform: translateY(-2px);
}
.cta-btn-sm {
  font-size: 14px;
  padding: 12px 24px;
  border-radius: 10px;
}
.cta-btn-lg {
  font-size: 19px;
  padding: 20px 44px;
}
.cta-btn-white {
  background: #fff;
  color: #0f172a;
  box-shadow: 0 8px 32px rgba(255,255,255,0.1);
}
.cta-btn-white:hover {
  box-shadow: 0 12px 40px rgba(255,255,255,0.15);
}
.cta-sub {
  display: block;
  margin-top: 12px;
  font-size: 13px;
  color: #64748b;
}

/* ----------------------------- */
/* NAVBAR                        */
/* ----------------------------- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 14px 0;
  background: rgba(6, 10, 18, 0.7);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid rgba(255,255,255,0.04);
  transition: all 0.3s;
}
.navbar.scrolled {
  padding: 10px 0;
  background: rgba(6, 10, 18, 0.92);
}
.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 22px;
  font-weight: 800;
}
.nav-logo svg { width: 36px; height: 36px; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: #94a3b8;
  transition: color 0.2s;
  position: relative;
}
.nav-links a:hover, .nav-links a.active { color: #f1f5f9; }
.nav-links a.active::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, #00d4aa, #0099ff);
  border-radius: 2px;
}

/* Mobile menu */
.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  background: none;
  border: none;
}
.mobile-toggle span {
  width: 24px;
  height: 2px;
  background: #e2e8f0;
  border-radius: 2px;
  transition: all 0.3s;
}
.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(6, 10, 18, 0.98);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-size: 24px;
  font-weight: 600;
  color: #e2e8f0;
  transition: color 0.2s;
}
.mobile-menu a:hover { color: #0099ff; }
.mobile-close {
  position: absolute;
  top: 20px;
  right: 24px;
  font-size: 32px;
  color: #94a3b8;
  cursor: pointer;
  background: none;
  border: none;
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .mobile-toggle { display: flex; }
}

/* ----------------------------- */
/* HERO (HOME)                   */
/* ----------------------------- */
.hero {
  padding: 160px 0 120px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(0, 153, 255, 0.08) 0%, transparent 70%);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -100px;
  left: -200px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(0, 212, 170, 0.06) 0%, transparent 70%);
  pointer-events: none;
}
.hero .container {
  display: flex;
  align-items: center;
  gap: 60px;
  position: relative;
  z-index: 1;
}
.hero-content { flex: 1; }
.hero-visual { flex: 0 0 420px; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: rgba(0, 212, 170, 0.08);
  border: 1px solid rgba(0, 212, 170, 0.2);
  border-radius: 100px;
  font-size: 13px;
  font-weight: 600;
  color: #00d4aa;
  margin-bottom: 28px;
}
.pulse {
  width: 8px;
  height: 8px;
  background: #00d4aa;
  border-radius: 50%;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.5); }
}

.hero h1 {
  font-size: clamp(38px, 5.5vw, 60px);
  font-weight: 900;
  line-height: 1.08;
  color: #f1f5f9;
  margin-bottom: 24px;
}
.hero p.hero-sub {
  font-size: 19px;
  color: #94a3b8;
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 540px;
}
.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
}
.hero-proof {
  display: flex;
  gap: 40px;
  margin-top: 48px;
  padding-top: 36px;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.proof-item { display: flex; flex-direction: column; }
.proof-num { font-size: 28px; font-weight: 800; color: #f1f5f9; }
.proof-label { font-size: 13px; color: #64748b; margin-top: 2px; }

@media (max-width: 900px) {
  .hero .container { flex-direction: column; }
  .hero-visual { flex: 0 0 auto; width: 100%; max-width: 420px; }
  .hero-proof { flex-wrap: wrap; gap: 24px; }
}

/* Revenue card */
.revenue-card {
  background: linear-gradient(145deg, #111827 0%, #0f172a 100%);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 24px;
  padding: 40px;
  box-shadow: 0 40px 80px rgba(0,0,0,0.4);
  position: relative;
  overflow: hidden;
}
.revenue-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, #00d4aa, #0099ff, #7c3aed);
}
.rev-header { font-size: 13px; color: #64748b; text-transform: uppercase; letter-spacing: 2px; margin-bottom: 8px; }
.rev-amount { font-size: 48px; font-weight: 900; margin-bottom: 4px; }
.rev-period { font-size: 14px; color: #64748b; margin-bottom: 32px; }
.rev-bars { display: flex; align-items: flex-end; gap: 10px; height: 120px; margin-bottom: 20px; }
.rev-bar {
  flex: 1;
  border-radius: 6px 6px 0 0;
  animation: growBar 1.5s ease-out forwards;
  transform-origin: bottom;
  position: relative;
}
@keyframes growBar { from { transform: scaleY(0); } to { transform: scaleY(1); } }
.rev-bar-label { position: absolute; bottom: -22px; left: 50%; transform: translateX(-50%); font-size: 10px; color: #64748b; white-space: nowrap; }
.rev-line { display: flex; justify-content: space-between; align-items: center; padding: 12px 0; border-top: 1px solid rgba(255,255,255,0.04); }
.rev-line-label { font-size: 14px; color: #94a3b8; }
.rev-line-val { font-size: 14px; font-weight: 700; color: #00d4aa; }

/* ----------------------------- */
/* CARDS (SHARED)                */
/* ----------------------------- */
.card {
  background: linear-gradient(145deg, #111827, #0f172a);
  border: 1px solid rgba(255,255,255,0.04);
  border-radius: 16px;
  padding: 36px;
  transition: all 0.3s;
}
.card:hover {
  border-color: rgba(0, 153, 255, 0.12);
  transform: translateY(-4px);
}
.card h3 { font-size: 20px; font-weight: 700; color: #f1f5f9; margin-bottom: 10px; }
.card p { font-size: 15px; color: #94a3b8; line-height: 1.7; }

.card-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 20px;
}
.card-icon-teal { background: rgba(0, 212, 170, 0.1); }
.card-icon-blue { background: rgba(0, 153, 255, 0.1); }
.card-icon-purple { background: rgba(124, 58, 237, 0.1); }
.card-icon-amber { background: rgba(245, 158, 11, 0.1); }
.card-icon-red { background: rgba(239, 68, 68, 0.1); }

/* ----------------------------- */
/* GRIDS                         */
/* ----------------------------- */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }

@media (max-width: 900px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .grid-2, .grid-3 { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .grid-4 { grid-template-columns: 1fr; }
}

/* ----------------------------- */
/* PROBLEM CARDS                 */
/* ----------------------------- */
.problem-icon {
  width: 48px;
  height: 48px;
  background: rgba(239, 68, 68, 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 20px;
}

/* ----------------------------- */
/* SOLUTION CARDS                */
/* ----------------------------- */
.solution-card {
  position: relative;
  overflow: hidden;
  padding: 40px;
}
.solution-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 4px;
  height: 100%;
}
.solution-card:nth-child(1)::before { background: #00d4aa; }
.solution-card:nth-child(2)::before { background: #0099ff; }
.solution-card:nth-child(3)::before { background: #7c3aed; }
.solution-card:nth-child(4)::before { background: #f59e0b; }
.sol-num {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  margin-bottom: 16px;
}
.sol-1 { color: #00d4aa; }
.sol-2 { color: #0099ff; }
.sol-3 { color: #7c3aed; }
.sol-4 { color: #f59e0b; }
.solution-card h3 { font-size: 22px; margin-bottom: 12px; }
.solution-card ul { margin-top: 16px; }
.solution-card li {
  font-size: 14px;
  color: #94a3b8;
  padding: 6px 0 6px 24px;
  position: relative;
}
.solution-card li::before {
  content: '>';
  position: absolute;
  left: 0;
  color: #00d4aa;
  font-weight: 700;
}

/* ----------------------------- */
/* PROCESS STEPS                 */
/* ----------------------------- */
.process-steps {
  position: relative;
}
.process-steps::before {
  content: '';
  position: absolute;
  top: 44px;
  left: 15%;
  right: 15%;
  height: 2px;
  background: linear-gradient(90deg, #00d4aa, #0099ff, #7c3aed);
  opacity: 0.2;
}
.step {
  text-align: center;
  position: relative;
  z-index: 1;
}
.step-num {
  width: 88px;
  height: 88px;
  margin: 0 auto 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  font-weight: 900;
  background: #0f172a;
}
.step-1 { color: #00d4aa; border: 2px solid rgba(0, 212, 170, 0.3); }
.step-2 { color: #0099ff; border: 2px solid rgba(0, 153, 255, 0.3); }
.step-3 { color: #7c3aed; border: 2px solid rgba(124, 58, 237, 0.3); }
.step h3 { font-size: 20px; font-weight: 700; color: #f1f5f9; margin-bottom: 10px; }
.step p { font-size: 15px; color: #94a3b8; max-width: 280px; margin: 0 auto; line-height: 1.6; }

@media (max-width: 768px) {
  .process-steps::before { display: none; }
}

/* ----------------------------- */
/* STAT CARDS                    */
/* ----------------------------- */
.stat-card {
  text-align: center;
}
.stat-num {
  font-size: 44px;
  font-weight: 900;
  margin-bottom: 8px;
}
.stat-label {
  font-size: 14px;
  color: #94a3b8;
  line-height: 1.5;
}

/* ----------------------------- */
/* TESTIMONIALS                  */
/* ----------------------------- */
.testimonial {
  padding: 36px;
}
.testimonial-stars {
  color: #f59e0b;
  font-size: 16px;
  margin-bottom: 16px;
  letter-spacing: 2px;
}
.testimonial-text {
  font-size: 15px;
  color: #cbd5e1;
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 20px;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, #00d4aa, #0099ff);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 700;
  color: white;
  flex-shrink: 0;
}
.testimonial-name { font-size: 15px; font-weight: 600; color: #f1f5f9; }
.testimonial-role { font-size: 13px; color: #64748b; }

/* ----------------------------- */
/* AUDIENCE CHECKLIST            */
/* ----------------------------- */
.audience-list li {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(255,255,255,0.04);
}
.audience-check {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  margin-top: 2px;
}
.check-yes { background: rgba(0, 212, 170, 0.1); color: #00d4aa; border: 1px solid rgba(0, 212, 170, 0.2); }
.check-no { background: rgba(239, 68, 68, 0.1); color: #ef4444; border: 1px solid rgba(239, 68, 68, 0.2); }
.audience-list li span { font-size: 16px; color: #cbd5e1; line-height: 1.5; }

/* ----------------------------- */
/* FAQ ACCORDION                 */
/* ----------------------------- */
.faq-list { max-width: 760px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid rgba(255,255,255,0.06); }
.faq-question {
  width: 100%;
  background: none;
  border: none;
  color: #f1f5f9;
  font-size: 18px;
  font-weight: 600;
  text-align: left;
  padding: 24px 0;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: inherit;
}
.faq-question:hover { color: #0099ff; }
.faq-icon {
  font-size: 24px;
  color: #64748b;
  transition: transform 0.3s;
  flex-shrink: 0;
  margin-left: 20px;
}
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; }
.faq-answer-inner { padding: 0 0 24px; font-size: 15px; color: #94a3b8; line-height: 1.7; }
.faq-item.open .faq-answer { max-height: 400px; }

/* ----------------------------- */
/* MID-PAGE CTA BANNER           */
/* ----------------------------- */
.mid-cta {
  padding: 80px 0;
  background: linear-gradient(135deg, rgba(0, 212, 170, 0.04) 0%, rgba(0, 153, 255, 0.06) 50%, rgba(124, 58, 237, 0.04) 100%);
  border-top: 1px solid rgba(0, 153, 255, 0.08);
  border-bottom: 1px solid rgba(0, 153, 255, 0.08);
  text-align: center;
}
.mid-cta h2 {
  font-size: clamp(24px, 4vw, 36px);
  font-weight: 800;
  color: #f1f5f9;
  margin-bottom: 12px;
}
.mid-cta p { color: #94a3b8; font-size: 16px; margin-bottom: 32px; }

/* ----------------------------- */
/* FINAL CTA                     */
/* ----------------------------- */
.final-cta {
  padding: 120px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.final-cta::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 800px; height: 800px;
  background: radial-gradient(circle, rgba(0, 153, 255, 0.06) 0%, transparent 60%);
  pointer-events: none;
}
.final-cta .container { position: relative; z-index: 1; }
.final-cta h2 {
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 900;
  color: #f1f5f9;
  margin-bottom: 20px;
  line-height: 1.1;
}
.final-cta p {
  font-size: 18px;
  color: #94a3b8;
  margin-bottom: 40px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}
.guarantee-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 24px;
  padding: 12px 24px;
  background: rgba(0, 212, 170, 0.06);
  border: 1px solid rgba(0, 212, 170, 0.15);
  border-radius: 100px;
  font-size: 14px;
  color: #00d4aa;
  font-weight: 600;
}

/* ----------------------------- */
/* FOOTER                        */
/* ----------------------------- */
.footer {
  padding: 60px 0 40px;
  border-top: 1px solid rgba(255,255,255,0.04);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 48px;
}
.footer-brand p {
  font-size: 14px;
  color: #64748b;
  margin-top: 16px;
  line-height: 1.7;
  max-width: 300px;
}
.footer-col h4 {
  font-size: 14px;
  font-weight: 700;
  color: #f1f5f9;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.footer-col a {
  display: block;
  font-size: 14px;
  color: #64748b;
  padding: 6px 0;
  transition: color 0.2s;
}
.footer-col a:hover { color: #e2e8f0; }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.04);
}
.footer-copy { font-size: 13px; color: #4b5563; }
.footer-socials { display: flex; gap: 16px; }
.footer-socials a {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: #111827;
  border: 1px solid rgba(255,255,255,0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: #94a3b8;
  transition: all 0.2s;
}
.footer-socials a:hover { color: #0099ff; border-color: rgba(0, 153, 255, 0.3); }

@media (max-width: 768px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-bottom { flex-direction: column; gap: 16px; text-align: center; }
}
@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
}

/* ----------------------------- */
/* STICKY MOBILE CTA             */
/* ----------------------------- */
.sticky-cta {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 999;
  padding: 12px 16px;
  background: rgba(6, 10, 18, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-top: 1px solid rgba(255,255,255,0.06);
}
.sticky-cta .cta-btn { width: 100%; justify-content: center; padding: 16px; font-size: 16px; }
@media (max-width: 768px) {
  .sticky-cta { display: block; }
  body { padding-bottom: 80px; }
}

/* ----------------------------- */
/* PAGE HEADERS (inner pages)    */
/* ----------------------------- */
.page-header {
  padding: 160px 0 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-header::before {
  content: '';
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 900px;
  height: 600px;
  background: radial-gradient(ellipse, rgba(0, 153, 255, 0.06) 0%, transparent 70%);
  pointer-events: none;
}
.page-header .container { position: relative; z-index: 1; }
.page-header h1 {
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 900;
  color: #f1f5f9;
  margin-bottom: 16px;
  line-height: 1.1;
}
.page-header p {
  font-size: 18px;
  color: #94a3b8;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ----------------------------- */
/* ABOUT PAGE                    */
/* ----------------------------- */
.about-story {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.about-story-text h2 {
  font-size: 36px;
  font-weight: 800;
  color: #f1f5f9;
  margin-bottom: 20px;
  line-height: 1.2;
}
.about-story-text p {
  font-size: 16px;
  color: #94a3b8;
  line-height: 1.8;
  margin-bottom: 16px;
}
.about-visual {
  background: linear-gradient(145deg, #111827, #0f172a);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 24px;
  padding: 48px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 400px;
}
.value-list { margin-top: 16px; }
.value-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 20px 0;
  border-bottom: 1px solid rgba(255,255,255,0.04);
}
.value-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(0, 153, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}
.value-item h4 { font-size: 17px; font-weight: 700; color: #f1f5f9; margin-bottom: 4px; }
.value-item p { font-size: 14px; color: #94a3b8; line-height: 1.6; }

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

/* ----------------------------- */
/* SERVICES PAGE                 */
/* ----------------------------- */
.service-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  padding: 80px 0;
  border-bottom: 1px solid rgba(255,255,255,0.04);
}
.service-detail:last-child { border-bottom: none; }
.service-detail.reverse { direction: rtl; }
.service-detail.reverse > * { direction: ltr; }
.service-detail-text h3 {
  font-size: 32px;
  font-weight: 800;
  color: #f1f5f9;
  margin-bottom: 16px;
  line-height: 1.2;
}
.service-detail-text p {
  font-size: 16px;
  color: #94a3b8;
  line-height: 1.8;
  margin-bottom: 20px;
}
.feature-list { list-style: none; }
.feature-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  font-size: 15px;
  color: #cbd5e1;
}
.feature-check {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: rgba(0, 212, 170, 0.1);
  border: 1px solid rgba(0, 212, 170, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  color: #00d4aa;
  flex-shrink: 0;
}
.service-visual {
  background: linear-gradient(145deg, #111827, #0f172a);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 20px;
  padding: 40px;
  min-height: 340px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.service-visual-inner {
  text-align: center;
}
.service-visual-icon {
  font-size: 64px;
  margin-bottom: 20px;
}
.service-visual h4 {
  font-size: 20px;
  font-weight: 700;
  color: #f1f5f9;
}

@media (max-width: 768px) {
  .service-detail, .service-detail.reverse { grid-template-columns: 1fr; direction: ltr; }
}

/* ----------------------------- */
/* RESULTS / CASE STUDIES PAGE   */
/* ----------------------------- */
.case-study {
  background: linear-gradient(145deg, #111827, #0f172a);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 20px;
  overflow: hidden;
  margin-bottom: 32px;
}
.case-study-header {
  padding: 40px 40px 0;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 20px;
}
.case-study-tag {
  display: inline-block;
  padding: 6px 14px;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.tag-weight { background: rgba(0, 212, 170, 0.1); color: #00d4aa; border: 1px solid rgba(0, 212, 170, 0.2); }
.tag-peptide { background: rgba(0, 153, 255, 0.1); color: #0099ff; border: 1px solid rgba(0, 153, 255, 0.2); }
.tag-full { background: rgba(124, 58, 237, 0.1); color: #7c3aed; border: 1px solid rgba(124, 58, 237, 0.2); }
.case-study-content {
  padding: 24px 40px;
}
.case-study-content h3 {
  font-size: 24px;
  font-weight: 800;
  color: #f1f5f9;
  margin-bottom: 12px;
}
.case-study-content p {
  font-size: 15px;
  color: #94a3b8;
  line-height: 1.7;
  margin-bottom: 24px;
}
.case-study-stats {
  display: flex;
  gap: 32px;
  padding: 24px 40px 40px;
  flex-wrap: wrap;
}
.case-stat {
  flex: 1;
  min-width: 120px;
  padding: 20px;
  background: rgba(0,0,0,0.2);
  border-radius: 12px;
  text-align: center;
}
.case-stat-num { font-size: 28px; font-weight: 900; margin-bottom: 4px; }
.case-stat-label { font-size: 12px; color: #64748b; text-transform: uppercase; letter-spacing: 1px; }

/* ----------------------------- */
/* CONTACT / BOOKING PAGE        */
/* ----------------------------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}
.contact-info-card {
  background: linear-gradient(145deg, #111827, #0f172a);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 20px;
  padding: 40px;
}
.contact-info-card h3 {
  font-size: 24px;
  font-weight: 800;
  color: #f1f5f9;
  margin-bottom: 16px;
}
.contact-info-card > p {
  font-size: 15px;
  color: #94a3b8;
  line-height: 1.7;
  margin-bottom: 32px;
}
.contact-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(255,255,255,0.04);
}
.contact-item:last-child { border-bottom: none; }
.contact-item-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(0, 153, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}
.contact-item-text h4 { font-size: 14px; font-weight: 600; color: #f1f5f9; }
.contact-item-text p { font-size: 14px; color: #94a3b8; }
.calendly-embed {
  background: linear-gradient(145deg, #111827, #0f172a);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 20px;
  overflow: hidden;
  min-height: 660px;
}

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

/* ----------------------------- */
/* LOGO STRIP                    */
/* ----------------------------- */
.logo-strip {
  padding: 60px 0;
  border-top: 1px solid rgba(255,255,255,0.04);
  border-bottom: 1px solid rgba(255,255,255,0.04);
}
.logo-strip p {
  text-align: center;
  font-size: 13px;
  color: #4b5563;
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 32px;
}
.logo-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 48px;
  flex-wrap: wrap;
  opacity: 0.4;
}
.logo-row span {
  font-size: 18px;
  font-weight: 700;
  color: #64748b;
  letter-spacing: 2px;
}

/* ----------------------------- */
/* ANIMATIONS                    */
/* ----------------------------- */
.animate-in {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease-out;
}
.animate-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ----------------------------- */
/* PRICING TABLE (SERVICES)      */
/* ----------------------------- */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 800px;
  margin: 48px auto 0;
}
.pricing-card {
  background: linear-gradient(145deg, #111827, #0f172a);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 20px;
  padding: 40px;
  position: relative;
  overflow: hidden;
  transition: all 0.3s;
}
.pricing-card:hover {
  border-color: rgba(0, 153, 255, 0.15);
}
.pricing-card.featured {
  border-color: rgba(0, 153, 255, 0.3);
}
.pricing-card.featured::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, #00d4aa, #0099ff, #7c3aed);
}
.pricing-popular {
  display: inline-block;
  padding: 4px 12px;
  background: rgba(0, 153, 255, 0.1);
  border: 1px solid rgba(0, 153, 255, 0.2);
  border-radius: 100px;
  font-size: 11px;
  font-weight: 700;
  color: #0099ff;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 16px;
}
.pricing-card h3 { font-size: 22px; font-weight: 800; color: #f1f5f9; margin-bottom: 8px; }
.pricing-card .pricing-desc { font-size: 14px; color: #64748b; margin-bottom: 24px; }
.pricing-price {
  font-size: 14px;
  color: #94a3b8;
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.pricing-price em { font-style: normal; color: #f1f5f9; font-weight: 700; }
.pricing-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 0;
  font-size: 14px;
  color: #94a3b8;
}
.pricing-features li::before {
  content: '>';
  color: #00d4aa;
  font-weight: 700;
}
@media (max-width: 640px) {
  .pricing-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   COMPREHENSIVE MOBILE STYLES
   ============================================================ */

@media (max-width: 768px) {
  /* Sections tighter on mobile */
  .section { padding: 60px 0; }
  .container { padding: 0 16px; }

  /* Hero mobile */
  .hero { padding: 120px 0 60px; }
  .hero h1 { font-size: 32px; line-height: 1.12; }
  .hero p.hero-sub { font-size: 16px; margin-bottom: 28px; }
  .hero-badge { font-size: 12px; margin-bottom: 20px; }
  .hero-ctas { flex-direction: column; align-items: stretch; }
  .hero-ctas .cta-btn { justify-content: center; font-size: 16px; padding: 16px 24px; }
  .hero-proof { gap: 20px; margin-top: 36px; padding-top: 28px; }
  .proof-num { font-size: 22px; }
  .proof-label { font-size: 12px; }

  /* Revenue card mobile */
  .revenue-card { padding: 28px; }
  .rev-amount { font-size: 36px; }
  .rev-bars { height: 80px; }

  /* Page headers mobile */
  .page-header { padding: 120px 0 48px; }
  .page-header h1 { font-size: 30px; }
  .page-header p { font-size: 16px; }

  /* Cards tighter */
  .card { padding: 24px; }
  .solution-card { padding: 28px; }

  /* Section titles mobile */
  .section-title { font-size: 26px; }
  .section-label { font-size: 11px; letter-spacing: 2px; }
  .section-subtitle { font-size: 16px; }

  /* FAQ mobile */
  .faq-question { font-size: 16px; padding: 20px 0; }
  .faq-icon { font-size: 20px; margin-left: 12px; }

  /* Case studies mobile */
  .case-study-header { padding: 24px 24px 0; }
  .case-study-content { padding: 16px 24px; }
  .case-study-content h3 { font-size: 20px; }
  .case-study-stats { padding: 16px 24px 24px; gap: 12px; }
  .case-stat { min-width: 100px; padding: 16px 12px; }
  .case-stat-num { font-size: 22px; }
  .case-stat-label { font-size: 10px; }

  /* Service details mobile */
  .service-detail { padding: 48px 0; gap: 32px; }
  .service-detail-text h3 { font-size: 24px; }
  .service-visual { min-height: 220px; padding: 32px; }
  .service-visual-icon { font-size: 48px; }

  /* Contact page mobile */
  .contact-info-card { padding: 28px; }
  .calendly-embed { min-height: 560px; }

  /* Steps mobile */
  .step-num { width: 64px; height: 64px; font-size: 24px; }

  /* Mid CTA mobile */
  .mid-cta { padding: 48px 0; }
  .mid-cta h2 { font-size: 22px; }
  .mid-cta p { font-size: 14px; margin-bottom: 24px; }

  /* Final CTA mobile */
  .final-cta { padding: 64px 0; }
  .final-cta h2 { font-size: 28px; }
  .final-cta p { font-size: 16px; margin-bottom: 28px; }
  .guarantee-badge { font-size: 12px; padding: 10px 16px; }

  /* Buttons mobile */
  .cta-btn { font-size: 15px; padding: 15px 28px; }
  .cta-btn-lg { font-size: 16px; padding: 16px 32px; }

  /* Logo strip mobile */
  .logo-strip { padding: 36px 0; }
  .logo-row { gap: 24px; }
  .logo-row span { font-size: 14px; }

  /* Pricing mobile */
  .pricing-card { padding: 28px; }

  /* About page mobile */
  .about-story { gap: 32px; }
  .about-story-text h2 { font-size: 28px; }
  .about-visual { min-height: 280px; padding: 32px; }

  /* Footer mobile */
  .footer { padding: 40px 0 32px; }
  .footer-grid { gap: 24px; margin-bottom: 32px; }
}

@media (max-width: 480px) {
  .hero h1 { font-size: 28px; }
  .hero-proof { flex-direction: column; gap: 12px; }
  .proof-item { flex-direction: row; align-items: center; gap: 12px; }
  .rev-amount { font-size: 30px; }
  .revenue-card { padding: 20px; }
  .rev-bars { height: 60px; gap: 6px; }
  .case-study-stats { flex-direction: column; }
  .case-stat { min-width: auto; }
  .page-header h1 { font-size: 26px; }
  .section-title { font-size: 22px; }
  .final-cta h2 { font-size: 24px; }
  .stat-num { font-size: 32px; }
  .contact-info-card { padding: 20px; }
  .service-detail-text h3 { font-size: 22px; }
  .about-story-text h2 { font-size: 24px; }
  .faq-question { font-size: 15px; }
}
