/* ============================================
   PRICING CALCULATOR POC THEME — Azure Blue
   ============================================
   Using Azure's signature blue palette for a 
   clean, professional Microsoft look.
   ============================================ */

:root {
  /* Azure Blue Palette */
  --azure-blue: #0078d4;
  --azure-blue-light: #50e6ff;
  --azure-blue-dark: #005a9e;
  --azure-blue-bright: #00A4EF;
  
  /* Primary palette - All Blue */
  --color-primary: var(--azure-blue);
  --color-primary-dark: var(--azure-blue-dark);
  --color-primary-light: var(--azure-blue-light);
  
  /* Success/Error accents */
  --accent-success: #107c10;
  --accent-error: #d13438;
  
  /* Dark backgrounds */
  --theme-dark-1: #0a0a0a;
  --theme-dark-2: #0d1b2a;
  --theme-dark-3: #1b263b;
}

/* ============================================
   HERO - Dark tech gradient with Fluent feel
   ============================================ */
.hero {
  background: linear-gradient(
    135deg,
    var(--theme-dark-1) 0%,
    var(--theme-dark-2) 25%,
    var(--theme-dark-3) 50%,
    var(--theme-dark-2) 75%,
    var(--theme-dark-1) 100%
  );
}

.hero__title {
  background: linear-gradient(135deg, var(--azure-blue) 0%, var(--azure-blue-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero__subtitle {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--azure-blue-light);
  margin-top: -1rem;
  margin-bottom: 1.5rem;
  opacity: 0.9;
}

.hero__badge {
  background: rgba(0, 164, 239, 0.15);
  border-color: rgba(0, 164, 239, 0.3);
}

.hero__badge-dot {
  background: var(--azure-blue-light);
  box-shadow: 0 0 12px var(--azure-blue-light);
}

/* Hero Highlights - replacing metrics */
.hero__highlights {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin: 2rem 0;
}

.hero-highlight {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.25rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
}

.hero-highlight__icon {
  font-size: 1.25rem;
}

.hero-highlight__text {
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
}

.hero__highlights-divider {
  width: 1px;
  height: 24px;
  background: rgba(255, 255, 255, 0.2);
}

/* Hero Preview Placeholder */
.hero__preview-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 300px;
  background: rgba(255, 255, 255, 0.03);
  border: 2px dashed rgba(255, 255, 255, 0.15);
  border-radius: 16px;
  padding: 3rem;
}

.hero__preview-label {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 0.5rem;
}

.hero__preview-note {
  font-family: 'Inter', sans-serif;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.4);
}

/* ============================================
   SECTION COLORS - Azure Blue
   ============================================ */
.section--amber {
  background: linear-gradient(135deg, var(--azure-blue-dark) 0%, var(--azure-blue) 50%, var(--azure-blue-bright) 100%);
}

.section--blue {
  background: linear-gradient(135deg, var(--azure-blue-dark) 0%, var(--azure-blue) 50%, var(--azure-blue-bright) 100%);
}

/* ============================================
   ACCENT ELEMENTS - Azure Blue
   ============================================ */
.section__number {
  color: var(--azure-blue);
}

.floating-nav__item.active {
  background: linear-gradient(135deg, var(--azure-blue) 0%, var(--azure-blue-light) 100%);
}

/* ============================================
   ROLE SECTION - Scope Tags
   ============================================ */
.role__scope-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.role__scope-tag {
  padding: 0.5rem 1rem;
  background: rgba(0, 120, 212, 0.08);
  border: 1px solid rgba(0, 120, 212, 0.2);
  border-radius: 20px;
  font-family: 'Inter', sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--azure-blue);
}

/* ============================================
   PROBLEM SECTION
   ============================================ */
.problem__cards {
    grid-template-columns: repeat(2, 1fr);
}

.problem__opportunity {
  margin-top: 3rem;
  padding: 2rem;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  text-align: center;
}

.problem__opportunity p {
  font-family: 'Inter', sans-serif;
  font-size: 1.25rem;
  color: white;
  margin: 0;
  line-height: 1.6;
}

.problem__opportunity strong {
  color: var(--azure-blue-light);
}

/* ============================================
   APPROACH SECTION
   ============================================ */
.approach__intro {
  max-width: 800px;
  margin-bottom: 3rem;
}

.approach__intro p {
  font-family: 'Inter', sans-serif;
  font-size: 1.125rem;
  line-height: 1.7;
  color: #4b5563;
}

.approach__strategy {
  display: grid;
  gap: 2rem;
  margin-bottom: 3rem;
}

.approach__block {
  padding: 2rem;
  background: #f9fafb;
  border-radius: 12px;
  border: 1px solid #e5e7eb;
}

.approach__block--highlight {
  background: linear-gradient(135deg, rgba(0, 120, 212, 0.08) 0%, rgba(80, 230, 255, 0.05) 100%);
  border-color: rgba(0, 120, 212, 0.25);
}

.approach__block-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: #111827;
  margin-bottom: 1rem;
}

.approach__block-text {
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  line-height: 1.7;
  color: #4b5563;
  margin-bottom: 1rem;
}

.approach__list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.approach__list li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.75rem;
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  color: #4b5563;
}

.approach__list li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: var(--azure-blue);
  font-weight: 600;
}

.approach__why-worked {
  padding: 2.5rem;
  background: linear-gradient(135deg, var(--theme-dark-2) 0%, var(--theme-dark-3) 100%);
  border-radius: 16px;
  color: white;
}

.approach__why-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.approach__why-text {
  font-family: 'Inter', sans-serif;
  font-size: 1.125rem;
  line-height: 1.7;
  opacity: 0.9;
  margin-bottom: 2rem;
}

.approach__proof-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1rem;
  margin-bottom: 2rem;
}

.approach__proof-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
}

.approach__proof-icon {
  color: var(--accent-success);
  font-size: 1.25rem;
  flex-shrink: 0;
}

.approach__proof-item span:last-child {
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  line-height: 1.5;
  opacity: 0.9;
}

.approach__reframe {
  font-family: 'Inter', sans-serif;
  font-size: 1.125rem;
  text-align: center;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.approach__reframe em {
  opacity: 0.7;
}

.approach__reframe strong {
  color: var(--azure-blue-light);
}

/* ============================================
   RESULTS SECTION - Wins Grid
   ============================================ */
.results__wins-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1rem;
  margin-bottom: 3rem;
}

.results__win {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 1.25rem;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.results__win-icon {
  font-size: 1.25rem;
  flex-shrink: 0;
}

.results__win-text {
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  line-height: 1.5;
  color: white;
}

.results__impact {
  display: flex;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
  padding: 2.5rem;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 16px;
}

.results__impact-stat {
  text-align: center;
}

.results__impact-value {
  display: block;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 3rem;
  font-weight: 700;
  color: white;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.results__impact-label {
  font-family: 'Inter', sans-serif;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.75);
  max-width: 150px;
}

/* ============================================
   CTA BUTTONS - Azure Blue
   ============================================ */
.cta__button--primary {
  background: linear-gradient(135deg, var(--azure-blue) 0%, var(--azure-blue-light) 100%);
}

.cta__button--primary:hover {
  box-shadow: 0 15px 40px rgba(0, 120, 212, 0.4);
}

/* ============================================
   HERO CTA - Visit Website Button
   ============================================ */
.hero__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
  padding: 0.875rem 1.75rem;
  background: transparent;
  border: 2px solid var(--azure-blue-light);
  border-radius: 8px;
  color: var(--azure-blue-light);
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s ease;
}

.hero__cta:hover {
  background: var(--azure-blue-light);
  color: var(--theme-dark-1);
  box-shadow: 0 8px 25px rgba(80, 230, 255, 0.35);
  transform: translateY(-2px);
}

.hero__cta svg {
  transition: transform 0.3s ease;
}

.hero__cta:hover svg {
  transform: translate(3px, -3px);
}

/* ============================================
   LEARNINGS GRID - 5 items layout
   ============================================ */
.learnings__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

/* ============================================
   VIDEO SHOWCASE - Hero variant
   ============================================ */
.video-showcase--hero {
  margin-top: 1rem;
}

.video-showcase--hero .video-showcase__container {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 25px 80px rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.video-showcase--hero video {
  width: 100%;
  display: block;
  background: var(--theme-dark-2);
}

/* ============================================
   BEFORE / AFTER COMPARISON
   ============================================ */
.before-after {
  margin-top: 4rem;
  padding-top: 3rem;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.before-after__title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.75rem;
  font-weight: 600;
  color: white;
  text-align: center;
  margin-bottom: 0.5rem;
}

.before-after__subtitle {
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.7);
  text-align: center;
  margin-bottom: 2.5rem;
}

.before-after__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.before-after__panel {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.1);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.before-after__label {
  padding: 0.75rem 1.5rem;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  text-align: center;
  background: #f5f5f5;
  color: #333;
}

.before-after__label--before {
  /* Same styling as base label */
}

.before-after__label--after {
  /* Same styling as base label */
}

.before-after__image {
  background: #fff;
}

.before-after__image img {
  width: 100%;
  display: block;
}

.before-after__notes {
  list-style: none;
  padding: 1.25rem 1.5rem;
  margin: 0;
  background: #fafafa;
}

.before-after__notes li {
  position: relative;
  padding-left: 1.25rem;
  margin-bottom: 0.5rem;
  font-family: 'Inter', sans-serif;
  font-size: 0.875rem;
  color: #444;
  line-height: 1.5;
}

.before-after__notes li:last-child {
  margin-bottom: 0;
}

.before-after__notes li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #666;
}

.before-after__panel:first-child .before-after__notes li::before {
  color: #666;
}

.before-after__panel:last-child .before-after__notes li::before {
  color: #666;
}

/* ============================================
   RESPONSIVE ADJUSTMENTS
   ============================================ */
@media (max-width: 768px) {
  .hero__subtitle {
    font-size: 1.25rem;
  }
  
  .hero__highlights {
    flex-direction: column;
    gap: 0.75rem;
  }
  
  .hero__highlights-divider {
    display: none;
  }
  
  .results__impact {
    gap: 2rem;
  }
  
  .results__impact-value {
    font-size: 2.25rem;
  }
  
  .before-after__grid {
    grid-template-columns: 1fr;
  }
  
  .before-after__title {
    font-size: 1.5rem;
  }
}
