/* Reset and base styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", roboto,
    sans-serif;
  line-height: 1.6;
  color: #ffffff;
  background: #0a0a0a;
  overflow-x: hidden;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Navigation */
.nav {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid #1a1a1a;
  z-index: 1000;
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 70px;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo {
  width: 32px;
  height: 32px;
  background: linear-gradient(135deg, #ff6b35, #f7931e);
  border-radius: 8px;
}

.brand-name {
  font-weight: 700;
  font-size: 18px;
  color: #ffffff;
}

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

.nav-links a {
  text-decoration: none;
  color: #888888;
  font-weight: 500;
  transition: color 0.3s;
}

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

.cta-button {
  background: linear-gradient(135deg, #ff6b35, #f7931e);
  color: #ffffff !important;
  padding: 10px 20px;
  border-radius: 8px;
  font-weight: 600;
  transition: all 0.3s;
}

.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 107, 53, 0.3);
}

/* Hero Section */
.hero {
  padding: 100px 0 60px;
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
    ellipse at center,
    rgba(255, 107, 53, 0.1) 0%,
    transparent 70%
  );
  pointer-events: none;
}

.hero-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 107, 53, 0.1);
  border: 1px solid rgba(255, 107, 53, 0.3);
  color: #ff6b35;
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 24px;
}

.hero-title {
  font-size: 56px;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 24px;
}

.gradient-text {
  background: linear-gradient(135deg, #ff6b35, #f7931e);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 20px;
  color: #888888;
  margin-bottom: 40px;
  line-height: 1.5;
}

.hero-stats {
  display: flex;
  gap: 48px;
  margin-bottom: 40px;
}

.stat {
  text-align: center;
}

.stat-number {
  font-size: 32px;
  font-weight: 700;
  color: #ff6b35;
  display: block;
}

.stat-label {
  font-size: 14px;
  color: #888888;
  font-weight: 500;
}

.hero-cta {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.primary-button {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: linear-gradient(135deg, #ff6b35, #f7931e);
  color: #ffffff;
  border: none;
  padding: 16px 32px;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
  width: fit-content;
}

.primary-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(255, 107, 53, 0.4);
}

.cta-subtitle {
  color: #888888;
  font-size: 14px;
}

/* Phone Mockup */
.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.phone-mockup {
  width: 300px;
  height: 600px;
  background: #1a1a1a;
  border-radius: 40px;
  padding: 8px;
  box-shadow: 0 25px 80px rgba(0, 0, 0, 0.3);
  position: relative;
}

.phone-screen {
  width: 100%;
  height: 100%;
  background: #000000;
  border-radius: 32px;
  overflow: hidden;
  position: relative;
}

.app-preview {
  padding: 20px;
  height: 100%;
  background: linear-gradient(180deg, #111111 0%, #0a0a0a 100%);
}

.preview-header {
  display: flex;
  justify-content: space-between;
  margin-bottom: 30px;
  font-size: 14px;
  font-weight: 600;
}

.daily-briefing h3 {
  color: #ff6b35;
  margin-bottom: 20px;
  font-size: 18px;
}

.energy-meter {
  margin-bottom: 20px;
}

.energy-meter span {
  display: block;
  margin-bottom: 8px;
  font-size: 14px;
  color: #888888;
}

.meter-bars {
  display: flex;
  gap: 4px;
}

.bar {
  width: 20px;
  height: 8px;
  background: #333333;
  border-radius: 4px;
}

.bar.active {
  background: linear-gradient(135deg, #ff6b35, #f7931e);
}

.quick-wins p {
  margin-bottom: 12px;
  font-size: 13px;
  line-height: 1.4;
}

/* AI Body Scan Styles */
.ai-body-scan {
  margin-bottom: 25px;
  padding-bottom: 20px;
  border-bottom: 1px solid #333333;
}

.ai-body-scan h3 {
  color: #ff6b35;
  margin-bottom: 15px;
  font-size: 16px;
}

.scan-metrics {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.scan-metric {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.scan-metric .metric-label {
  font-size: 12px;
  color: #888888;
}

.scan-metric .metric-value {
  font-size: 13px;
  font-weight: 600;
  color: #ffffff;
}

.rescan-button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  width: 100%;
  background: rgba(255, 107, 53, 0.1);
  border: 1px solid rgba(255, 107, 53, 0.3);
  color: #ff6b35;
  padding: 8px 12px;
  border-radius: 8px;
  font-size: 11px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s;
  margin-top: 10px;
}

.rescan-button:hover {
  background: rgba(255, 107, 53, 0.2);
  border-color: #ff6b35;
}

.camera-icon {
  font-size: 12px;
}

/* Reps for Today Styles */
.reps-today {
  margin-top: 20px;
  padding-top: 15px;
  border-top: 1px solid #333333;
}

.reps-today h4 {
  color: #ff6b35;
  margin-bottom: 12px;
  font-size: 14px;
  font-weight: 600;
}

.rep-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
  font-size: 12px;
}

.rep-item span:first-child {
  color: #cccccc;
}

.rep-count {
  color: #ff6b35;
  font-weight: 600;
}

/* Transformation Section */
.transformation {
  padding: 80px 0;
  background: #0a0a0a;
  position: relative;
}

.transformation::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
    ellipse at center,
    rgba(255, 107, 53, 0.08) 0%,
    transparent 70%
  );
  pointer-events: none;
}

.transformation-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.transformation-features {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 32px;
}

.transformation-feature {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.transformation-cta {
  margin-top: 32px;
}

/* Dashboard Container */
.dashboard-container {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid #222222;
  border-radius: 20px;
  padding: 32px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(10px);
}

.dashboard-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 32px;
  padding-bottom: 16px;
  border-bottom: 1px solid #333333;
}

.dashboard-header h3 {
  color: #ffffff;
  font-size: 18px;
  font-weight: 700;
}

.dashboard-date {
  background: linear-gradient(135deg, #ff6b35, #f7931e);
  color: #ffffff;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
}

.dashboard-content {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

/* Goals Section */
.goals-section h4,
.metrics-section h4,
.schedule-section h4,
.weaknesses-section h4 {
  color: #ff6b35;
  margin-bottom: 16px;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Weaknesses Section */
.weakness-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.weakness-item {
  display: grid;
  grid-template-columns: 30px 1fr auto;
  align-items: center;
  gap: 12px;
  padding: 12px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid #333333;
  transition: all 0.3s;
}

.weakness-item.critical {
  border-color: #ff4444;
  background: rgba(255, 68, 68, 0.1);
}

.weakness-item.high {
  border-color: #ff8800;
  background: rgba(255, 136, 0, 0.1);
}

.weakness-item.medium {
  border-color: #ffaa00;
  background: rgba(255, 170, 0, 0.08);
}

.weakness-icon {
  font-size: 16px;
}

.weakness-name {
  color: #ffffff;
  font-size: 12px;
  font-weight: 500;
}

.weakness-severity {
  font-size: 10px;
  font-weight: 600;
  padding: 3px 8px;
  border-radius: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.weakness-item.critical .weakness-severity {
  background: #ff4444;
  color: #ffffff;
}

.weakness-item.high .weakness-severity {
  background: #ff8800;
  color: #ffffff;
}

.weakness-item.medium .weakness-severity {
  background: #ffaa00;
  color: #000000;
}

.goal-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid #222222;
}

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

.goal-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.goal-name {
  color: #ffffff;
  font-size: 13px;
  font-weight: 600;
}

.goal-target {
  color: #888888;
  font-size: 11px;
}

.goal-progress {
  display: flex;
  align-items: center;
  gap: 8px;
}

.progress-bar-small {
  width: 60px;
  height: 6px;
  background: #333333;
  border-radius: 3px;
  overflow: hidden;
}

.progress-fill-small {
  height: 100%;
  background: linear-gradient(135deg, #ff6b35, #f7931e);
  transition: width 0.8s ease;
}

.progress-percent {
  color: #ff6b35;
  font-size: 11px;
  font-weight: 600;
  min-width: 30px;
}

/* Metrics Section */
.metric-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.metric-box {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid #333333;
  border-radius: 12px;
  padding: 16px;
  text-align: center;
  position: relative;
}

.metric-value {
  color: #ffffff;
  font-size: 24px;
  font-weight: 700;
  display: block;
  margin-bottom: 4px;
}

.metric-label {
  color: #888888;
  font-size: 11px;
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.metric-trend {
  font-size: 10px;
  font-weight: 600;
  position: absolute;
  top: 8px;
  right: 8px;
}

.metric-trend.up {
  color: #00ff88;
}

.metric-trend.neutral {
  color: #888888;
}

/* Schedule Section */
.schedule-grid {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 16px;
}

.schedule-day {
  display: grid;
  grid-template-columns: 40px 1fr 20px;
  align-items: center;
  padding: 8px 12px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid #333333;
  transition: all 0.3s;
}

.schedule-day.completed {
  background: rgba(0, 255, 136, 0.1);
  border-color: #00ff88;
}

.schedule-day.active {
  background: rgba(255, 107, 53, 0.1);
  border-color: #ff6b35;
}

.day-name {
  color: #ffffff;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
}

.day-activity {
  color: #cccccc;
  font-size: 11px;
}

.day-status {
  color: #ff6b35;
  font-size: 12px;
  text-align: center;
}

.schedule-day.completed .day-status {
  color: #00ff88;
}

.frequency-indicator {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 16px;
  background: rgba(255, 107, 53, 0.05);
  border: 1px solid rgba(255, 107, 53, 0.3);
  border-radius: 8px;
}

.frequency-text {
  color: #cccccc;
  font-size: 12px;
}

.frequency-badge {
  background: linear-gradient(135deg, #ff6b35, #f7931e);
  color: #ffffff;
  padding: 4px 8px;
  border-radius: 12px;
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
}

/* Buddy Accountability Section */
.buddy-accountability {
  padding: 80px 0;
  background: #111111;
  position: relative;
}

.buddy-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.buddy-features {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 32px;
}

.buddy-feature {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.accountability-dashboard {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid #222222;
  border-radius: 20px;
  padding: 32px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.buddy-section,
.group-section {
  margin-bottom: 32px;
}

.buddy-section:last-child,
.group-section:last-child {
  margin-bottom: 0;
}

.buddy-section h3,
.group-section h3 {
  color: #ff6b35;
  margin-bottom: 20px;
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.buddy-comparison {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 20px;
}

.buddy-plan {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid #333333;
  border-radius: 12px;
  padding: 20px;
  text-align: center;
}

.plan-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.buddy-avatar {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, #ff6b35, #f7931e);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: #ffffff;
  font-size: 16px;
}

.buddy-avatar.alex {
  background: linear-gradient(135deg, #4caf50, #45a049);
}

.plan-title {
  color: #ffffff;
  font-size: 14px;
  font-weight: 600;
}

.streak-info {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.streak-number {
  color: #ff6b35;
  font-size: 32px;
  font-weight: 700;
  line-height: 1;
}

.streak-label {
  color: #888888;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.success-badge {
  background: rgba(0, 255, 136, 0.1);
  border: 1px solid #00ff88;
  border-radius: 12px;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 13px;
  color: #00ff88;
  font-weight: 600;
}

.success-badge .badge-icon {
  font-size: 16px;
}

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

.member-row {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  padding: 12px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid #333333;
  border-radius: 8px;
  transition: all 0.3s;
}

.member-row.current-user {
  background: rgba(255, 107, 53, 0.1);
  border-color: #ff6b35;
}

.member-info {
  display: flex;
  align-items: center;
  gap: 12px;
}

.member-avatar {
  width: 32px;
  height: 32px;
  background: linear-gradient(135deg, #666666, #444444);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  color: #ffffff;
  font-size: 12px;
}

.member-avatar.you {
  background: linear-gradient(135deg, #ff6b35, #f7931e);
}

.member-name {
  color: #ffffff;
  font-size: 13px;
  font-weight: 500;
}

.member-streak {
  display: flex;
  align-items: center;
  gap: 6px;
}

.member-streak .streak-number {
  color: #ffffff;
  font-size: 14px;
  font-weight: 600;
}

.member-streak .streak-unit {
  color: #888888;
  font-size: 11px;
}

.member-streak.perfect {
  gap: 8px;
}

.perfect-badge {
  background: #00ff88;
  color: #000000;
  padding: 2px 6px;
  border-radius: 8px;
  font-size: 9px;
  font-weight: 700;
  text-transform: uppercase;
}

.group-chat-preview {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid #333333;
  border-radius: 12px;
  padding: 16px;
}

.chat-bubble {
  display: flex;
  gap: 8px;
  margin-bottom: 8px;
  font-size: 12px;
  line-height: 1.4;
}

.chat-bubble:last-child {
  margin-bottom: 0;
}

.chat-author {
  color: #ff6b35;
  font-weight: 600;
  min-width: 60px;
}

.chat-message {
  color: #cccccc;
}

/* Military Training Section */
.military-training {
  padding: 100px 0;
  background: #0f0f0f;
  position: relative;
}

.military-training::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
    ellipse at center,
    rgba(255, 107, 53, 0.05) 0%,
    transparent 70%
  );
  pointer-events: none;
}

.military-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.phone-mockup-military {
  width: 320px;
  height: 640px;
  background: #1a1a1a;
  border-radius: 40px;
  padding: 8px;
  box-shadow: 0 25px 80px rgba(0, 0, 0, 0.4);
  position: relative;
  margin: 0 auto;
}

.phone-screen-military {
  width: 100%;
  height: 100%;
  background: #000000;
  border-radius: 32px;
  overflow: hidden;
  position: relative;
}

.notification-preview {
  padding: 20px;
  height: 100%;
  background: linear-gradient(180deg, #111111 0%, #0a0a0a 100%);
}

.notification-header {
  display: flex;
  justify-content: space-between;
  margin-bottom: 30px;
  font-size: 14px;
  font-weight: 600;
  color: #ffffff;
}

.notification-card {
  background: rgba(255, 107, 53, 0.1);
  border: 2px solid #ff6b35;
  border-radius: 16px;
  padding: 20px;
  margin-bottom: 20px;
  animation: pulse-urgent 2s infinite;
}

.notification-card.urgent {
  box-shadow: 0 0 20px rgba(255, 107, 53, 0.3);
}

@keyframes pulse-urgent {
  0%,
  100% {
    border-color: #ff6b35;
    box-shadow: 0 0 20px rgba(255, 107, 53, 0.3);
  }
  50% {
    border-color: #f7931e;
    box-shadow: 0 0 30px rgba(255, 107, 53, 0.5);
  }
}

.notification-icon {
  font-size: 24px;
  margin-bottom: 8px;
}

.notification-body h4 {
  color: #ff6b35;
  margin-bottom: 12px;
  font-size: 16px;
  font-weight: 700;
}

.countdown-text {
  color: #ffffff;
  font-size: 14px;
  margin-bottom: 8px;
  line-height: 1.4;
}

.countdown-number {
  color: #ff6b35;
  font-weight: 700;
  font-size: 16px;
}

.penalty-text {
  color: #cccccc;
  font-size: 13px;
  margin-bottom: 16px;
  line-height: 1.4;
}

.penalty-highlight {
  color: #ff4444;
  font-weight: 700;
}

.notification-actions {
  display: flex;
  gap: 8px;
}

.notification-btn {
  flex: 1;
  padding: 8px 12px;
  border: none;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
}

.notification-btn.primary {
  background: linear-gradient(135deg, #ff6b35, #f7931e);
  color: #ffffff;
}

.notification-btn.secondary {
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  border: 1px solid #333333;
}

.notification-btn:hover {
  transform: translateY(-1px);
}

.training-progress {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid #222222;
  border-radius: 12px;
  padding: 16px;
}

.progress-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}

.progress-header span:first-child {
  color: #cccccc;
  font-size: 13px;
  font-weight: 500;
}

.progress-percentage {
  color: #ff6b35;
  font-size: 14px;
  font-weight: 700;
}

.progress-bar-container {
  width: 100%;
  height: 6px;
  background: #333333;
  border-radius: 3px;
  overflow: hidden;
  margin-bottom: 12px;
}

.progress-bar-fill {
  height: 100%;
  background: linear-gradient(135deg, #ff6b35, #f7931e);
  transition: width 0.8s ease;
}

.progress-stats {
  display: flex;
  justify-content: space-between;
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.stat-label {
  font-size: 11px;
  color: #888888;
  margin-bottom: 2px;
}

.stat-value {
  font-size: 13px;
  color: #ffffff;
  font-weight: 600;
}

.military-features {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 32px;
}

.military-feature {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.feature-icon-small {
  font-size: 24px;
  margin-top: 4px;
}

.feature-content h4 {
  color: #ffffff;
  margin-bottom: 8px;
  font-size: 18px;
  font-weight: 600;
}

.feature-content p {
  color: #888888;
  line-height: 1.6;
}

.military-cta {
  margin-top: 32px;
}

.secondary-button {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: rgba(255, 107, 53, 0.1);
  border: 2px solid #ff6b35;
  color: #ff6b35;
  padding: 14px 28px;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
}

.secondary-button:hover {
  background: #ff6b35;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 107, 53, 0.3);
}

/* Problem Section */
.problem {
  padding: 100px 0;
  background: #111111;
}

.section-title {
  font-size: 42px;
  line-height: 1.25;
  font-weight: 700;
  text-align: center;
  margin-bottom: 60px;
}

.problem-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.problem-item {
  text-align: center;
  padding: 40px 20px;
  background: rgba(255, 255, 255, 0.02);
  border-radius: 16px;
  border: 1px solid #222222;
}

.problem-icon {
  font-size: 48px;
  margin-bottom: 20px;
}

.problem-item h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 16px;
  color: #ffffff;
}

.problem-item p {
  color: #888888;
  line-height: 1.6;
}

/* Solution Section */
.solution {
  padding: 80px 0;
  background: #0a0a0a;
}

.solution-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 107, 53, 0.1);
  border: 1px solid rgba(255, 107, 53, 0.3);
  color: #ff6b35;
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 20px;
}

.section-subtitle {
  font-size: 18px;
  color: #888888;
  margin-bottom: 32px;
  line-height: 1.6;
}

.solution-features {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.feature-check {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.check-icon {
  color: #00ff88;
  font-size: 16px;
  margin-top: 2px;
}

.metrics-dashboard {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid #222222;
  border-radius: 16px;
  padding: 32px;
}

.metrics-dashboard h4 {
  color: #ff6b35;
  margin-bottom: 24px;
  font-size: 18px;
}

.metric {
  margin-bottom: 24px;
}

.metric-label {
  display: block;
  color: #888888;
  font-size: 14px;
  margin-bottom: 8px;
}

.metric-bar {
  width: 100%;
  height: 8px;
  background: #333333;
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: 8px;
}

.metric-fill {
  height: 100%;
  background: linear-gradient(135deg, #ff6b35, #f7931e);
  transition: width 0.3s;
}

.metric-value {
  color: #ffffff;
  font-weight: 600;
}

.metric-number {
  font-size: 24px;
  font-weight: 700;
  color: #ff6b35;
}

.domain-scores {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.domain {
  font-size: 14px;
  color: #ffffff;
}

/* Looks Analysis Dashboard */
.looks-analysis-dashboard {
  background: rgba(26, 26, 26, 0.8);
  border: 1px solid rgba(255, 107, 53, 0.2);
  border-radius: 16px;
  padding: 32px;
  backdrop-filter: blur(10px);
}

.looks-analysis-dashboard h4 {
  color: #ffffff;
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 24px;
  text-align: center;
}

.polygon-chart-container {
  position: relative;
  margin-bottom: 32px;
}

.polygon-chart {
  position: relative;
  width: 100%;
  max-width: 400px;
  margin: 0 auto;
}

.radar-chart {
  width: 100%;
  height: auto;
}

.radar-labels {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
}

.radar-label {
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background: rgba(10, 10, 10, 0.9);
  border: 1px solid rgba(255, 107, 53, 0.3);
  border-radius: 8px;
  padding: 8px 12px;
  backdrop-filter: blur(5px);
}

.label-text {
  font-size: 12px;
  color: #888888;
  font-weight: 500;
  line-height: 1;
}

.label-value {
  font-size: 14px;
  color: #f7931e;
  font-weight: 700;
  line-height: 1;
  margin-top: 2px;
}

.chart-legend {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin-bottom: 24px;
}

.legend-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: #888888;
}

.legend-color {
  width: 16px;
  height: 16px;
  border-radius: 3px;
}

.legend-color.potential {
  background: rgba(255, 107, 53, 0.3);
  border: 2px solid #ff6b35;
  border-style: dashed;
}

.legend-color.current {
  background: rgba(247, 147, 30, 0.4);
  border: 2px solid #f7931e;
}

.improvement-suggestions {
  margin-bottom: 24px;
}

.improvement-suggestions h5 {
  color: #ffffff;
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 16px;
}

.suggestion-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px;
  border-radius: 8px;
  margin-bottom: 8px;
  transition: all 0.3s;
}

.suggestion-item.priority-high {
  background: rgba(255, 69, 58, 0.1);
  border: 1px solid rgba(255, 69, 58, 0.3);
}

.suggestion-item.priority-medium {
  background: rgba(255, 159, 10, 0.1);
  border: 1px solid rgba(255, 159, 10, 0.3);
}

.suggestion-item.priority-low {
  background: rgba(48, 209, 88, 0.1);
  border: 1px solid rgba(48, 209, 88, 0.3);
}

.suggestion-icon {
  font-size: 16px;
}

.suggestion-text {
  font-size: 14px;
  color: #cccccc;
  font-weight: 500;
}

.overall-score {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  background: rgba(255, 107, 53, 0.1);
  border: 1px solid rgba(255, 107, 53, 0.3);
  border-radius: 12px;
}

.score-circle {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.score-number {
  font-size: 36px;
  font-weight: 800;
  color: #f7931e;
  line-height: 1;
}

.score-label {
  font-size: 14px;
  color: #888888;
  font-weight: 500;
}

.score-trend {
  display: flex;
  align-items: center;
  gap: 8px;
}

.trend-arrow {
  font-size: 20px;
  color: #48d158;
}

.trend-text {
  font-size: 14px;
  color: #48d158;
  font-weight: 600;
}

/* Looks Metrics Preview */
.looks-metrics-preview {
  margin-top: 32px;
  padding: 24px;
  background: rgba(26, 26, 26, 0.6);
  border: 1px solid rgba(255, 107, 53, 0.2);
  border-radius: 12px;
}

.looks-metrics-preview h4 {
  color: #ffffff;
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 16px;
}

.metrics-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.metric-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 0;
}

.metric-icon {
  font-size: 16px;
}

.metric-name {
  font-size: 14px;
  color: #cccccc;
  font-weight: 500;
}

/* Features Section */
.features {
  padding: 100px 0;
  background: #111111;
}

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

.feature-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid #222222;
  border-radius: 16px;
  padding: 32px;
  transition: transform 0.3s, box-shadow 0.3s;
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.feature-icon {
  font-size: 40px;
  margin-bottom: 20px;
}

.feature-card h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 16px;
  color: #ffffff;
}

.feature-card p {
  color: #888888;
  line-height: 1.6;
  margin-bottom: 20px;
}

.feature-highlight {
  background: rgba(255, 107, 53, 0.1);
  border: 1px solid rgba(255, 107, 53, 0.3);
  border-radius: 8px;
  padding: 12px 16px;
  font-size: 14px;
  color: #ff6b35;
}

/* Coach Section */
.coach {
  padding: 100px 0;
  background: #0a0a0a;
}

.coach-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.coach-avatar {
  text-align: center;
  margin-bottom: 32px;
}

.avatar-img {
  width: 120px;
  height: 120px;
  background: linear-gradient(135deg, #ff6b35, #f7931e);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
  margin: 0 auto 16px;
}

.coach-status {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 14px;
  color: #888888;
}

.status-indicator {
  width: 8px;
  height: 8px;
  background: #00ff88;
  border-radius: 50%;
}

.chat-preview {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid #222222;
  border-radius: 16px;
  padding: 24px;
  max-width: 400px;
}

.chat-message {
  margin-bottom: 16px;
}

.chat-message p {
  background: rgba(255, 107, 53, 0.1);
  border: 1px solid rgba(255, 107, 53, 0.3);
  border-radius: 16px;
  padding: 12px 16px;
  margin-bottom: 4px;
  font-size: 14px;
  line-height: 1.4;
}

.user-message p {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid #333333;
  margin-left: 40px;
}

.timestamp {
  font-size: 12px;
  color: #666666;
}

.coach-features {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.coach-feature h4 {
  color: #ffffff;
  margin-bottom: 8px;
  font-size: 16px;
}

.coach-feature p {
  color: #888888;
  line-height: 1.6;
}

/* Testimonials */
.testimonials {
  padding: 100px 0;
  background: #111111;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.testimonial-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid #222222;
  border-radius: 16px;
  padding: 32px;
}

.testimonial-rating {
  margin-bottom: 20px;
  font-size: 16px;
}

.testimonial-text {
  color: #ffffff;
  line-height: 1.6;
  margin-bottom: 24px;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 16px;
}

.author-avatar {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, #ff6b35, #f7931e);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: #ffffff;
}

.author-name {
  font-weight: 600;
  color: #ffffff;
}

.author-title {
  font-size: 14px;
  color: #888888;
}

/* Download CTA */
.download-cta {
  padding: 100px 0;
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
  text-align: center;
}

.cta-title {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 20px;
}

.cta-subtitle {
  font-size: 18px;
  color: #888888;
  margin-bottom: 40px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.download-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 24px;
}

.store-button img {
  height: 60px;
  width: auto;
  transition: transform 0.3s;
}

.store-button:hover img {
  transform: scale(1.05);
}

.cta-guarantee {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: #888888;
  font-size: 14px;
}

/* Footer */
.footer {
  background: #000000;
  border-top: 1px solid #222222;
  padding: 60px 0 30px;
}

.footer-content {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 80px;
  margin-bottom: 40px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.footer-logo img {
  width: 32px;
  height: 32px;
  background: linear-gradient(135deg, #ff6b35, #f7931e);
  border-radius: 8px;
}

.footer-logo span {
  font-weight: 700;
  font-size: 18px;
}

.footer-brand p {
  color: #888888;
  line-height: 1.6;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.footer-column h4 {
  color: #ffffff;
  margin-bottom: 16px;
  font-size: 16px;
  font-weight: 600;
}

.footer-column a {
  display: block;
  color: #888888;
  text-decoration: none;
  margin-bottom: 8px;
  transition: color 0.3s;
}

.footer-column a:hover {
  color: #ffffff;
}

.footer-bottom {
  border-top: 1px solid #222222;
  padding-top: 24px;
  text-align: center;
}

.footer-bottom p {
  color: #666666;
  font-size: 14px;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .hero-container,
  .solution-content,
  .coach-content,
  .military-content,
  .transformation-content,
  .buddy-content {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

  .features-grid,
  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

@media (max-width: 768px) {
  .hero-title {
    font-size: 36px;
  }

  .section-title {
    font-size: 32px;
  }

  .hero-stats {
    justify-content: center;
    gap: 24px;
  }

  .features-grid,
  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .nav-links {
    display: none;
  }

  .download-buttons {
    flex-direction: column;
    align-items: center;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

  .footer-links {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }

  .hero {
    padding: 100px 0 60px;
  }

  .hero-title {
    font-size: 28px;
  }

  .phone-mockup {
    width: 250px;
    height: 500px;
  }

  .phone-mockup-military {
    width: 280px;
    height: 560px;
  }
}
