/* ==========================================================================
   HEXARISE PERSONALIZED STRATEGY PLAN STYLES
   ========================================================================== */

body.strategy-body {
  background-color: var(--bg-surface);
  color: var(--text-on-surface);
  min-height: 100vh;
  font-family: var(--font-editorial);
  position: relative;
}

.strategy-bg-glow {
  position: fixed;
  inset: 0;
  pointer-events: none;
  background: 
    radial-gradient(circle at 50% 10%, rgba(252, 213, 53, 0.05) 0%, transparent 50%),
    var(--bg-surface);
  z-index: 0;
}

/* Strategy Header */
.strategy-header {
  position: relative;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-md) clamp(16px, 4vw, 32px);
  height: 72px;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

/* Header Cart Button */
.nav-cart-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: var(--radius-lg);
  background: var(--bg-card-dark);
  border: 1px solid var(--border-dark);
  color: var(--primary-yellow);
  text-decoration: none;
  transition: all 0.2s ease;
}

.nav-cart-btn:hover {
  background: var(--bg-elevated-dark);
  border-color: var(--primary-yellow);
  transform: translateY(-1px);
}

.nav-cart-badge {
  position: absolute;
  top: -4px;
  right: -4px;
  background: #f6465d;
  color: #ffffff;
  font-size: 10px;
  font-weight: 700;
  min-width: 18px;
  height: 18px;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 4px;
}

/* Profile Dropdown Component */
.nav-profile-wrapper {
  position: relative;
  z-index: 9999;
}

.nav-profile-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 8px 4px 4px;
  border-radius: var(--radius-full);
  background: var(--bg-card-dark);
  border: 1px solid var(--border-dark);
  color: #ffffff;
  cursor: pointer;
  transition: all 0.2s ease;
}

.nav-profile-btn:hover {
  border-color: var(--primary-yellow);
  background: var(--bg-elevated-dark);
}

.profile-avatar {
  width: 32px;
  height: 32px;
  border-radius: var(--radius-full);
  background: linear-gradient(135deg, #fcd535 0%, #e0b400 100%);
  color: #0a1421;
  font-size: 14px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  text-transform: uppercase;
}

.dropdown-arrow {
  font-size: 18px;
  color: var(--text-variant);
  transition: transform 0.2s ease;
}

.nav-profile-wrapper.active .dropdown-arrow {
  transform: rotate(180deg);
}

/* Profile Dropdown Menu */
.profile-dropdown-menu {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  width: 260px;
  background: #0a1421 !important;
  border: 1px solid rgba(252, 213, 53, 0.3);
  border-radius: var(--radius-xl);
  padding: 14px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.85), 0 0 24px rgba(252, 213, 53, 0.15);
  display: none;
  flex-direction: column;
  z-index: 99999;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.nav-profile-wrapper.active .profile-dropdown-menu {
  display: flex;
}

.profile-menu-header {
  padding: 4px 8px 10px 8px;
}

.user-display-name {
  font-size: 15px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 3px;
  text-transform: capitalize;
}

.user-display-email {
  font-size: 12px;
  color: var(--text-variant);
  word-break: break-all;
}

.menu-divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.1);
  margin: 8px 0;
}

.profile-menu-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: var(--radius-md);
  color: #ffffff;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  background: transparent;
  border: none;
  width: 100%;
  text-align: left;
  cursor: pointer;
  transition: all 0.15s ease;
}

.profile-menu-item:hover {
  background: rgba(252, 213, 53, 0.12);
  color: var(--primary-yellow);
}

.profile-menu-item.text-danger {
  color: #ff4d6d;
}

.profile-menu-item.text-danger:hover {
  background: rgba(255, 77, 109, 0.15);
  color: #ff6b87;
}

.strategy-main {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: var(--space-xl) clamp(16px, 4vw, 32px) var(--space-xxl) clamp(16px, 4vw, 32px);
}

/* Strategy Hero */
.strategy-hero {
  text-align: center;
  max-width: 720px;
  margin: 0 auto var(--space-xxl) auto;
}

.recommendation-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-xs);
  padding: 6px 16px;
  border-radius: var(--radius-full);
  background: rgba(252, 213, 53, 0.1);
  border: 1px solid rgba(252, 213, 53, 0.3);
  color: var(--primary-yellow);
  font-size: 13px;
  font-weight: 600;
  margin-bottom: var(--space-md);
}

.strategy-title {
  font-size: clamp(30px, 5vw, 44px);
  font-weight: 700;
  color: #ffffff;
  margin-bottom: var(--space-sm);
}

.strategy-subtitle {
  font-size: clamp(14px, 2vw, 16px);
  color: var(--text-variant);
  line-height: 1.6;
}

/* Section Headings */
.section-heading {
  font-size: 24px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: var(--space-lg);
}

.strategy-section {
  margin-bottom: var(--space-xxl);
}

/* Business Snapshot Card */
.snapshot-card {
  background: var(--bg-card-dark);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius-xl);
  padding: clamp(20px, 4vw, 32px);
}

.snapshot-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: var(--space-md);
  margin-bottom: var(--space-lg);
  border-bottom: 1px solid var(--bg-elevated-dark);
}

.snapshot-title {
  font-size: 20px;
  font-weight: 600;
  color: #ffffff;
}

.btn-edit-answers {
  background-color: var(--primary-yellow);
  color: var(--bg-dark, #0a1421);
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  padding: 8px 16px;
  border-radius: var(--radius-md, 8px);
  transition: all 0.2s ease-in-out;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  box-shadow: 0 4px 12px rgba(252, 213, 53, 0.15);
}

.btn-edit-answers:hover {
  background-color: var(--primary-active);
  color: var(--bg-dark, #0a1421);
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(252, 213, 53, 0.25);
  text-decoration: none;
}

.snapshot-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: var(--space-lg);
}

.snapshot-item {
  display: flex;
  flex-direction: column;
  gap: var(--space-xxs);
}

.item-label {
  font-size: 12px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.item-value {
  font-size: 16px;
  font-weight: 600;
  color: #ffffff;
}

.item-value.highlight-gold {
  color: var(--primary-yellow);
}

.item-value.font-num {
  font-family: var(--font-number);
}

/* Services Recommendation Grid */
.services-recommendation-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: var(--space-lg);
}

/* Executive Redesigned Service Card */
.service-card {
  background: var(--bg-card-dark);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius-xl);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
  transition: all 0.3s ease;
}

.service-card:hover {
  border-color: rgba(252, 213, 53, 0.45);
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(252, 213, 53, 0.12);
}

.card-meta-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  flex-wrap: wrap;
  width: 100%;
}

.meta-left-badges {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
}

.card-title-row {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  width: 100%;
  margin-top: 4px;
}

.service-icon-box {
  width: 44px;
  height: 44px;
  min-width: 44px;
  border-radius: 12px;
  background: rgba(252, 213, 53, 0.1);
  border: 1px solid rgba(252, 213, 53, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-icon-box .material-symbols-outlined {
  color: var(--primary-yellow);
  font-size: 24px;
}

.service-name {
  font-size: 19px;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.35;
  flex: 1;
  min-width: 0;
  word-break: break-word;
}

.service-price-tag {
  background: rgba(14, 203, 129, 0.12);
  border: 1px solid rgba(14, 203, 129, 0.3);
  padding: 4px 10px;
  border-radius: 20px;
  white-space: nowrap;
}

.service-price-tag .price-value {
  color: #10b981;
  font-size: 14px;
  font-weight: 700;
}

.priority-badge {
  display: inline-block;
  padding: 4px 10px;
  border-radius: var(--radius-sm);
  font-size: 12px;
  font-weight: 600;
}

.priority-badge.high {
  background: rgba(252, 213, 53, 0.15);
  color: var(--primary-yellow);
  border: 1px solid rgba(252, 213, 53, 0.3);
}

.priority-badge.medium {
  background: rgba(45, 189, 182, 0.15);
  color: var(--accent-smart);
  border: 1px solid rgba(45, 189, 182, 0.3);
}

.priority-badge.standard {
  background: rgba(255, 255, 255, 0.08);
  color: var(--text-variant);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.service-category-chip {
  display: inline-block;
  padding: 3px 8px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius-sm);
  font-size: 11px;
  color: var(--text-muted);
}

.service-desc {
  font-size: 14px;
  color: var(--text-variant);
  line-height: 1.6;
  margin: 0;
}

.why-recommended-box {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-left: 3px solid var(--primary-yellow);
  border-radius: 10px;
  padding: 12px 14px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex: 1;
}

.why-recommended-box .why-header {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 700;
  color: var(--primary-yellow);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.why-recommended-box .why-body {
  font-size: 13px;
  color: var(--text-on-surface);
  line-height: 1.5;
  margin: 0;
}

.btn-check-portfolio-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: var(--primary-yellow);
  text-decoration: none;
  padding: 4px 0;
  transition: color 0.2s ease, transform 0.2s ease;
  width: fit-content;
}

.btn-check-portfolio-link:hover {
  color: var(--primary-active);
  transform: translateX(3px);
}

.highlight-text {
  color: #ffffff;
  font-weight: 600;
}

.expected-results-box {
  margin-bottom: var(--space-lg);
}

.results-label {
  display: block;
  font-size: 12px;
  color: var(--text-muted);
  margin-bottom: var(--space-xs);
}

.results-tags {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-xs);
}

.tag-result {
  background: var(--bg-container-high);
  color: var(--trading-up);
  font-size: 12px;
  font-weight: 500;
  padding: 4px 10px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--bg-elevated-dark);
}

.testimonial-quote-box {
  background: var(--bg-container);
  border: 1px solid var(--border-dark);
  padding: var(--space-md);
  border-radius: var(--radius-lg);
  margin-bottom: var(--space-lg);
}

.quote-text {
  font-size: 13px;
  font-style: italic;
  color: var(--text-on-surface);
  line-height: 1.5;
}

.quote-author {
  font-size: 12px;
  color: var(--text-muted);
  text-align: right;
  margin-top: var(--space-xs);
}

.service-card-footer {
  border-top: 1px solid var(--bg-elevated-dark);
  padding-top: var(--space-md);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-sm);
  flex-wrap: wrap;
}

.btn-select-service-action {
  flex: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-xs);
  background: var(--primary-yellow);
  color: #0a1421 !important;
  padding: 10px 18px;
  border-radius: var(--radius-lg);
  font-size: 13px;
  font-weight: 700;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 14px rgba(252, 213, 53, 0.25);
  transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  text-decoration: none;
}

.btn-select-service-action:hover {
  background: #ffe266;
  color: #000000 !important;
  box-shadow: 0 6px 20px rgba(252, 213, 53, 0.4);
  transform: translateY(-2px);
}

.btn-select-service-action .arrow {
  transition: transform 0.2s ease;
}

.btn-select-service-action:hover .arrow {
  transform: translateX(4px);
}

.btn-check-pricing {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-xs);
  background: var(--bg-container-low);
  color: var(--text-on-surface);
  border: 1px solid var(--border-dark);
  padding: 10px 16px;
  border-radius: var(--radius-lg);
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s ease;
}

.btn-check-pricing:hover {
  background: var(--bg-elevated-dark);
  color: var(--primary-yellow);
  border-color: var(--primary-yellow);
  transform: translateY(-1px);
}

.arrow {
  transition: transform 0.2s ease;
}

/* Growth Roadmap Timeline */
.roadmap-timeline {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
  position: relative;
}

.timeline-step {
  display: flex;
  align-items: flex-start;
  gap: var(--space-lg);
  background: var(--bg-card-dark);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius-xl);
  padding: var(--space-lg);
  transition: border-color 0.2s ease;
}

.timeline-step:hover {
  border-color: var(--primary-yellow);
}

.timeline-badge {
  width: 42px;
  height: 42px;
  border-radius: var(--radius-full);
  background: rgba(252, 213, 53, 0.1);
  border: 2px solid var(--primary-yellow);
  color: var(--primary-yellow);
  font-family: var(--font-number);
  font-size: 18px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.timeline-content {
  flex: 1;
}

.timeline-title {
  font-size: 18px;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: var(--space-xxs);
}

.timeline-text {
  font-size: 14px;
  color: var(--text-variant);
  line-height: 1.6;
}

/* Final CTA Card */
.final-cta-card {
  background: var(--bg-card-dark);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius-xl);
  padding: clamp(24px, 5vw, 48px);
  text-align: center;
}

.cta-heading {
  font-size: clamp(24px, 4vw, 36px);
  font-weight: 700;
  color: #ffffff;
  margin-bottom: var(--space-xs);
}

.cta-text {
  font-size: 15px;
  color: var(--text-variant);
  margin-bottom: var(--space-xl);
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

.cta-buttons-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-md);
  flex-wrap: wrap;
}

/* Footer */
.strategy-footer {
  border-top: 1px solid var(--border-dark);
  padding: var(--space-xl) 0;
  text-align: center;
  font-size: 13px;
  color: var(--text-muted);
}
