:root {
  --dark: #0f0f0f;
  --card: #1a1a1a;
  --card-hover: #222;
  --accent: #ff6b35;
  --accent2: #ffd166;
  --green: #06d6a0;
  --blue: #118ab2;
  --white: #f8f8f8;
  --muted: #888;
  --border: #333;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  background: var(--dark);
  color: var(--white);
  font-family: "Source Sans 3", sans-serif;
  line-height: 1.6;
}
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}
.hero {
  text-align: center;
  padding: 60px 20px 40px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  top: -60%;
  left: -20%;
  width: 140%;
  height: 140%;
  background:
    radial-gradient(ellipse at 30% 50%, rgba(255, 107, 53, 0.08) 0%, transparent 60%),
    radial-gradient(ellipse at 70% 30%, rgba(6, 214, 160, 0.06) 0%, transparent 50%);
  pointer-events: none;
}
.hero-badge {
  display: inline-block;
  background: rgba(255, 107, 53, 0.15);
  color: var(--accent);
  padding: 6px 20px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 20px;
  font-family: "Montserrat", sans-serif;
}
.hero h1 {
  font-family: "Montserrat", sans-serif;
  font-weight: 900;
  font-size: clamp(32px, 5vw, 56px);
  line-height: 1.1;
  margin-bottom: 16px;
}
.hero h1 span {
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero-sub {
  font-size: 18px;
  color: var(--muted);
  max-width: 600px;
  margin: 0 auto;
}
.stats-bar {
  display: flex;
  justify-content: center;
  gap: 40px;
  padding: 30px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  margin: 0 auto 50px;
  max-width: 800px;
  flex-wrap: wrap;
}
.stat-item {
  text-align: center;
  min-width: 80px;
}
.stat-num {
  font-family: "Montserrat", sans-serif;
  font-weight: 900;
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1;
}
.sn-o {
  color: var(--accent);
}
.sn-g {
  color: var(--green);
}
.sn-b {
  color: var(--blue);
}
.sn-y {
  color: var(--accent2);
}
.stat-label {
  font-size: 13px;
  color: var(--muted);
  margin-top: 4px;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
}
.cases {
  display: grid;
  gap: 24px;
  margin-bottom: 50px;
}
.case-card {
  background: var(--card);
  border-radius: 16px;
  padding: 32px;
  border: 1px solid var(--border);
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}
.case-card:hover {
  border-color: var(--accent);
  transform: translateY(-2px);
  background: var(--card-hover);
}
.case-card.featured {
  border-color: var(--accent);
}
.case-card.featured::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--accent2));
}
.case-top {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}
.case-photo {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  object-fit: cover;
  flex-shrink: 0;
  border: 2px solid var(--border);
}
.case-info {
  flex: 1;
  min-width: 180px;
}
.case-name {
  font-family: "Montserrat", sans-serif;
  font-weight: 800;
  font-size: 20px;
  margin-bottom: 2px;
}
.case-niche {
  font-size: 14px;
  color: var(--muted);
}
.case-badge {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-left: auto;
}
.b-ind {
  background: rgba(255, 107, 53, 0.15);
  color: var(--accent);
}
.b-full {
  background: rgba(6, 214, 160, 0.15);
  color: var(--green);
}
.b-grp {
  background: rgba(17, 138, 178, 0.15);
  color: var(--blue);
}
.b-flag {
  background: rgba(255, 209, 102, 0.15);
  color: var(--accent2);
}
.growth-block {
  background: rgba(255, 255, 255, 0.03);
  border-radius: 12px;
  padding: 16px 20px;
  margin-bottom: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.growth-row {
  display: flex;
  align-items: center;
  gap: 12px;
}
.growth-icon {
  font-size: 20px;
  width: 28px;
  text-align: center;
  flex-shrink: 0;
}
.growth-info {
  min-width: 160px;
}
.growth-label {
  font-size: 12px;
  color: var(--muted);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.growth-nums {
  font-family: "Montserrat", sans-serif;
  font-weight: 800;
  font-size: 18px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.g-from {
  color: var(--muted);
  font-size: 14px;
}
.g-arrow {
  color: var(--accent);
  font-size: 14px;
}
.g-to {
  color: var(--white);
}
.growth-bar-wrap {
  flex: 1;
  height: 6px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 3px;
  overflow: hidden;
  min-width: 60px;
}
.growth-bar {
  height: 100%;
  background: linear-gradient(90deg, var(--accent), var(--accent2));
  border-radius: 3px;
  min-width: 4px;
}
.case-story {
  font-size: 15px;
  line-height: 1.7;
  color: #ccc;
  margin-bottom: 16px;
}
.case-extra {
  font-size: 14px;
  color: var(--green);
  font-weight: 600;
  margin-bottom: 16px;
  font-family: "Montserrat", sans-serif;
}
.timeline {
  background: var(--card);
  border-radius: 20px;
  padding: 40px 32px;
  margin: 10px 0 50px;
  border: 1px solid var(--border);
}
.timeline h2 {
  font-family: "Montserrat", sans-serif;
  font-weight: 900;
  font-size: clamp(22px, 3vw, 30px);
  text-align: center;
  margin-bottom: 32px;
}
.timeline h2 span {
  color: var(--accent);
}
.tl-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}
.tl-card {
  background: rgba(255, 255, 255, 0.03);
  border-radius: 12px;
  padding: 20px;
  border-left: 3px solid var(--accent);
}
.tl-card.gc {
  border-color: var(--green);
}
.tl-card h3 {
  font-family: "Montserrat", sans-serif;
  font-weight: 800;
  font-size: 15px;
  margin-bottom: 8px;
  color: var(--accent);
}
.tl-card.gc h3 {
  color: var(--green);
}
.tl-card p {
  font-size: 14px;
  color: #bbb;
  line-height: 1.6;
}
.tl-num {
  font-family: "Montserrat", sans-serif;
  font-weight: 900;
  font-size: 22px;
  color: var(--white);
  margin-bottom: 4px;
}
.video-section {
  text-align: center;
  margin: 40px 0 60px;
  padding: 40px;
  background: var(--card);
  border-radius: 16px;
  border: 1px solid var(--border);
}
.video-section h3 {
  font-family: "Montserrat", sans-serif;
  font-weight: 800;
  font-size: 24px;
  margin-bottom: 8px;
}
.video-section p {
  color: var(--muted);
  font-size: 15px;
  margin-bottom: 20px;
}
.video-ph {
  display: inline-block;
  padding: 16px 32px;
  background: rgba(255, 107, 53, 0.1);
  border: 2px dashed var(--accent);
  border-radius: 12px;
  color: var(--accent);
  font-weight: 700;
  font-size: 14px;
}
.cta-section {
  text-align: center;
  padding: 60px 20px;
  background: linear-gradient(135deg, rgba(255, 107, 53, 0.08) 0%, rgba(6, 214, 160, 0.05) 100%);
  border-radius: 20px;
  margin-bottom: 40px;
}
.cta-section h2 {
  font-family: "Montserrat", sans-serif;
  font-weight: 900;
  font-size: clamp(24px, 4vw, 36px);
  margin-bottom: 12px;
}
.cta-section p {
  color: var(--muted);
  font-size: 16px;
  margin-bottom: 24px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}
.cta-btn {
  display: inline-block;
  background: linear-gradient(135deg, var(--accent), #e85d2a);
  color: white;
  padding: 16px 40px;
  border-radius: 12px;
  text-decoration: none;
  font-family: "Montserrat", sans-serif;
  font-weight: 800;
  font-size: 16px;
  transition:
    transform 0.2s,
    box-shadow 0.2s;
}
.cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(255, 107, 53, 0.3);
}
.footer {
  text-align: center;
  padding: 30px;
  font-size: 12px;
  color: #555;
  font-family: "Montserrat", sans-serif;
  letter-spacing: 2px;
}
@media (max-width: 600px) {
  .stats-bar {
    gap: 20px;
  }
  .case-card {
    padding: 20px;
  }
  .case-top {
    gap: 12px;
  }
  .case-badge {
    margin-left: 0;
    margin-top: 8px;
  }
  .growth-row {
    flex-wrap: wrap;
  }
  .growth-bar-wrap {
    width: 100%;
    flex: none;
  }
}
