/* ============================================================
   DISC四维人格 - 品牌设计系统
   主色: 深蓝 #0B1E3D  |  点缀金: #C8A45C
   DISC四色: D红/E74C3C  i黄/F39C12  S绿/27AE60  C蓝/2980B9
   ============================================================ */

/* --- CSS 变量 --- */
:root {
  --color-navy: #0B1E3D;
  --color-navy-light: #132D52;
  --color-blue: #1A3A6B;
  --color-blue-hover: #234B85;
  --color-gold: #C8A45C;
  --color-gold-light: #D4B87A;
  --color-gold-bg: #FDF8F0;
  --color-white: #FFFFFF;
  --color-bg: #F5F6F8;
  --color-bg-alt: #EDEFF2;
  --color-text: #1A1A2E;
  --color-text-medium: #4A4A6A;
  --color-text-light: #8A8AA0;
  --color-border: #E0E2E8;

  /* DISC 四色 */
  --color-d-red: #E74C3C;
  --color-d-red-light: #FDEDEC;
  --color-I-yellow: #F39C12;
  --color-I-yellow-light: #FEF9E7;
  --color-s-green: #27AE60;
  --color-s-green-light: #EAFAF1;
  --color-c-blue: #2980B9;
  --color-c-blue-light: #EBF5FB;

  --font-heading: "PingFang SC", "Microsoft YaHei", "Noto Sans SC", sans-serif;
  --font-body: "PingFang SC", "Microsoft YaHei", "Helvetica Neue", sans-serif;

  --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
  --shadow-md: 0 4px 16px rgba(0,0,0,0.1);
  --shadow-lg: 0 8px 32px rgba(0,0,0,0.12);
  --shadow-gold: 0 4px 16px rgba(200,164,92,0.25);

  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;

  --max-width: 1200px;
  --nav-height: 72px;
}

/* --- Reset & Base --- */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--nav-height);
}

body {
  font-family: var(--font-body);
  color: var(--color-text);
  background: var(--color-white);
  line-height: 1.75;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* --- Typography --- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.35;
}

h1 { font-size: clamp(2rem, 4vw, 3rem); }
h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.5rem); }
h4 { font-size: 1.15rem; }

.section-title {
  text-align: center;
  margin-bottom: 0.75rem;
  color: var(--color-navy);
}

.section-subtitle {
  text-align: center;
  color: var(--color-text-medium);
  font-size: 1.05rem;
  margin-bottom: 3rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.gold-text {
  color: var(--color-gold);
}

.navy-text {
  color: var(--color-navy);
}

/* --- Layout --- */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 80px 0;
}

.section-alt {
  background: var(--color-bg);
}

@media (max-width: 768px) {
  .section { padding: 48px 0; }
}

/* ============================================================
   NAVIGATION
   ============================================================ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--nav-height);
  background: rgba(11, 30, 61, 0.97);
  backdrop-filter: blur(12px);
  z-index: 1000;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.nav .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--color-white);
}

.nav-logo-icon {
  width: 36px;
  height: 36px;
  background: var(--color-gold);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-navy);
  font-weight: 800;
  font-size: 1rem;
}

.nav-logo-img {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-sm);
  display: block;
  flex-shrink: 0;
}

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

.nav-links a {
  color: rgba(255,255,255,0.8);
  font-size: 0.95rem;
  font-weight: 500;
  transition: color 0.2s;
  position: relative;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--color-gold);
}

.nav-links a.active::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--color-gold);
  border-radius: 1px;
}

.nav-cta {
  background: var(--color-gold);
  color: var(--color-navy) !important;
  padding: 8px 20px;
  border-radius: var(--radius-sm);
  font-weight: 600 !important;
  transition: background 0.2s, transform 0.2s;
}

.nav-cta:hover {
  background: var(--color-gold-light) !important;
  color: var(--color-navy) !important;
  transform: translateY(-1px);
}

/* Mobile nav toggle */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  color: var(--color-white);
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-white);
  margin: 5px 0;
  transition: 0.3s;
  border-radius: 2px;
}

.nav-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.active span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

@media (max-width: 768px) {
  .nav-toggle { display: block; }

  .nav-links {
    position: fixed;
    top: var(--nav-height);
    left: 0;
    right: 0;
    background: var(--color-navy);
    flex-direction: column;
    padding: 24px;
    gap: 16px;
    transform: translateY(-100%);
    opacity: 0;
    pointer-events: none;
    transition: 0.3s;
    border-bottom: 2px solid var(--color-gold);
  }

  .nav-links.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 28px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: var(--radius-sm);
  border: none;
  cursor: pointer;
  transition: all 0.25s;
  text-decoration: none;
  line-height: 1.4;
}

.btn-primary {
  background: var(--color-gold);
  color: var(--color-navy);
  box-shadow: var(--shadow-gold);
}

.btn-primary:hover {
  background: var(--color-gold-light);
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(200,164,92,0.35);
}

.btn-secondary {
  background: transparent;
  color: var(--color-white);
  border: 2px solid rgba(255,255,255,0.5);
}

.btn-secondary:hover {
  border-color: var(--color-white);
  background: rgba(255,255,255,0.08);
}

.btn-outline {
  background: transparent;
  color: var(--color-navy);
  border: 2px solid var(--color-navy);
}

.btn-outline:hover {
  background: var(--color-navy);
  color: var(--color-white);
}

.btn-white {
  background: var(--color-white);
  color: var(--color-navy);
  box-shadow: var(--shadow-sm);
}

.btn-white:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.btn-lg {
  padding: 16px 36px;
  font-size: 1.05rem;
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  background: linear-gradient(135deg, var(--color-navy) 0%, var(--color-navy-light) 50%, var(--color-blue) 100%);
  color: var(--color-white);
  padding: 160px 0 100px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(200,164,92,0.12) 0%, transparent 70%);
  border-radius: 50%;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(200,164,92,0.08) 0%, transparent 70%);
  border-radius: 50%;
}

.hero .container {
  position: relative;
  z-index: 1;
}

.hero-content {
  max-width: 680px;
}

.hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.2rem);
  margin-bottom: 1.25rem;
  line-height: 1.25;
}

.hero p {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.75);
  margin-bottom: 2.5rem;
  line-height: 1.8;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

@media (max-width: 768px) {
  .hero { padding: 120px 0 64px; text-align: center; }
  .hero-content { max-width: 100%; }
  .hero-buttons { justify-content: center; }
}

/* ============================================================
   DISC FOUR-TYPE CARDS
   ============================================================ */
.disc-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.disc-card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s, box-shadow 0.3s;
  border-top: 4px solid transparent;
  position: relative;
  overflow: hidden;
}

.disc-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.disc-card.d-card { border-top-color: var(--color-d-red); }
.disc-card.I-card { border-top-color: var(--color-I-yellow); }
.disc-card.s-card { border-top-color: var(--color-s-green); }
.disc-card.c-card { border-top-color: var(--color-c-blue); }

.disc-card-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  font-size: 1.5rem;
  font-weight: 800;
  font-family: var(--font-heading);
}

.d-card .disc-card-icon { background: var(--color-d-red-light); color: var(--color-d-red); }
.I-card .disc-card-icon { background: var(--color-I-yellow-light); color: var(--color-I-yellow); }
.s-card .disc-card-icon { background: var(--color-s-green-light); color: var(--color-s-green); }
.c-card .disc-card-icon { background: var(--color-c-blue-light); color: var(--color-c-blue); }

.disc-card h3 {
  font-size: 1.15rem;
  margin-bottom: 6px;
  color: var(--color-navy);
}

.disc-card .disc-label {
  font-size: 0.85rem;
  color: var(--color-text-light);
  margin-bottom: 12px;
}

.disc-card p {
  font-size: 0.9rem;
  color: var(--color-text-medium);
  line-height: 1.7;
}

@media (max-width: 992px) {
  .disc-grid { grid-template-columns: repeat(2, 1fr); }
}

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

/* ============================================================
   VALUE CARDS (3-column feature)
   ============================================================ */
.value-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.value-card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: 40px 28px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s, box-shadow 0.3s;
}

.value-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.value-card-icon {
  width: 48px;
  height: 48px;
  background: var(--color-gold-bg);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--color-gold);
  font-size: 1.4rem;
}

.value-card h3 {
  font-size: 1.15rem;
  margin-bottom: 10px;
  color: var(--color-navy);
}

.value-card p {
  font-size: 0.95rem;
  color: var(--color-text-medium);
  line-height: 1.75;
}

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

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.testimonial-card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-sm);
  position: relative;
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 16px;
  left: 24px;
  font-size: 4rem;
  font-family: Georgia, serif;
  color: var(--color-gold);
  opacity: 0.2;
  line-height: 1;
}

.testimonial-card p {
  font-size: 0.95rem;
  color: var(--color-text-medium);
  line-height: 1.8;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}

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

.testimonial-avatar {
  width: 40px;
  height: 40px;
  background: var(--color-navy);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-gold);
  font-weight: 700;
  font-size: 0.9rem;
}

.testimonial-author strong {
  display: block;
  font-size: 0.9rem;
  color: var(--color-text);
}

.testimonial-author span {
  font-size: 0.8rem;
  color: var(--color-text-light);
}

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

/* ============================================================
   CTA SECTION
   ============================================================ */
.cta-section {
  background: linear-gradient(135deg, var(--color-navy), var(--color-navy-light));
  color: var(--color-white);
  text-align: center;
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 700px;
  height: 100%;
  background: radial-gradient(ellipse at center, rgba(200,164,92,0.1) 0%, transparent 70%);
}

.cta-section .container { position: relative; z-index: 1; }

.cta-section h2 {
  margin-bottom: 1rem;
}

.cta-section p {
  color: rgba(255,255,255,0.7);
  margin-bottom: 2rem;
  font-size: 1.05rem;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--color-navy);
  color: rgba(255,255,255,0.7);
  padding: 56px 0 32px;
}

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

.footer-brand h3 {
  color: var(--color-white);
  font-size: 1.15rem;
  margin-bottom: 12px;
}

.footer-brand p {
  font-size: 0.9rem;
  line-height: 1.8;
}

.footer-col h4 {
  color: var(--color-white);
  font-size: 0.95rem;
  margin-bottom: 16px;
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul li a {
  font-size: 0.9rem;
  transition: color 0.2s;
}

.footer-col ul li a:hover {
  color: var(--color-gold);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
  flex-wrap: wrap;
  gap: 12px;
}

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

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

/* ============================================================
   ABOUT-DISC PAGE SPECIFIC
   ============================================================ */
.page-hero {
  background: linear-gradient(135deg, var(--color-navy), var(--color-blue));
  color: var(--color-white);
  padding: 140px 0 72px;
  text-align: center;
}

.page-hero h1 {
  margin-bottom: 1rem;
}

.page-hero p {
  color: rgba(255,255,255,0.7);
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto;
}

.detail-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: flex-start;
}

.detail-block.reverse {
  direction: rtl;
}

.detail-block.reverse > * {
  direction: ltr;
}

.detail-block h2 {
  color: var(--color-navy);
  margin-bottom: 1rem;
}

.detail-block p {
  color: var(--color-text-medium);
  line-height: 1.9;
  font-size: 1rem;
}

.detail-block-image {
  background: transparent;
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 320px;
  color: var(--color-text-light);
  font-size: 0.95rem;
}

@media (max-width: 768px) {
  .detail-block { grid-template-columns: 1fr; gap: 32px; }
}

/* --- Type Detail Cards (D/I/S/C expanded) --- */
.type-detail-card {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 32px;
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow-sm);
  margin-bottom: 24px;
  border-left: 6px solid transparent;
}

.type-detail-card.type-d { border-left-color: var(--color-d-red); }
.type-detail-card.type-I { border-left-color: var(--color-I-yellow); }
.type-detail-card.type-s { border-left-color: var(--color-s-green); }
.type-detail-card.type-c { border-left-color: var(--color-c-blue); }

.type-badge {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  font-weight: 800;
  font-family: var(--font-heading);
  flex-shrink: 0;
}

.type-d .type-badge { background: var(--color-d-red-light); color: var(--color-d-red); }
.type-I .type-badge { background: var(--color-I-yellow-light); color: var(--color-I-yellow); }
.type-s .type-badge { background: var(--color-s-green-light); color: var(--color-s-green); }
.type-c .type-badge { background: var(--color-c-blue-light); color: var(--color-c-blue); }

.type-detail-content h3 {
  color: var(--color-navy);
  margin-bottom: 4px;
}

.type-detail-content .type-subtitle {
  font-size: 0.9rem;
  color: var(--color-text-light);
  margin-bottom: 12px;
}

.type-detail-content .type-traits {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 12px;
}

.type-tag {
  display: inline-block;
  padding: 4px 12px;
  background: var(--color-bg);
  border-radius: 20px;
  font-size: 0.82rem;
  color: var(--color-text-medium);
}

.type-detail-content p {
  color: var(--color-text-medium);
  line-height: 1.8;
  font-size: 0.95rem;
}

@media (max-width: 576px) {
  .type-detail-card { grid-template-columns: 1fr; text-align: center; }
  .type-badge { margin: 0 auto; }
  .type-traits { justify-content: center; }
}

/* ============================================================
   ASSESSMENT PAGE SPECIFIC
   ============================================================ */
.process-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  position: relative;
}

.process-steps::before {
  content: '';
  position: absolute;
  top: 40px;
  left: 20%;
  right: 20%;
  height: 2px;
  background: var(--color-border);
  z-index: 0;
}

.process-step {
  text-align: center;
  position: relative;
  z-index: 1;
}

.step-number {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--color-white);
  border: 3px solid var(--color-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--color-gold);
  font-family: var(--font-heading);
  box-shadow: var(--shadow-sm);
}

.process-step h4 {
  color: var(--color-navy);
  margin-bottom: 8px;
}

.process-step p {
  color: var(--color-text-medium);
  font-size: 0.9rem;
  line-height: 1.7;
}

@media (max-width: 768px) {
  .process-steps { grid-template-columns: 1fr; }
  .process-steps::before { display: none; }
}

/* Report dimensions grid */
.dimension-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.dimension-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: var(--color-white);
  border-radius: var(--radius-md);
  padding: 24px;
  box-shadow: var(--shadow-sm);
}

.dimension-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  background: var(--color-gold-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-gold);
  flex-shrink: 0;
  font-size: 1.2rem;
}

.dimension-item h4 {
  color: var(--color-navy);
  font-size: 0.95rem;
  margin-bottom: 4px;
}

.dimension-item p {
  color: var(--color-text-medium);
  font-size: 0.85rem;
  line-height: 1.6;
}

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

/* Report sample area */
.report-sample {
  background: var(--color-bg);
  border-radius: var(--radius-lg);
  padding: 48px;
  text-align: center;
  border: 2px dashed var(--color-border);
}

.report-sample-placeholder {
  color: var(--color-text-light);
}

.report-sample-placeholder .placeholder-icon {
  font-size: 3rem;
  margin-bottom: 16px;
  opacity: 0.4;
}

/* Purchase options */
.purchase-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.purchase-card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  border: 2px solid var(--color-border);
  transition: border-color 0.3s, box-shadow 0.3s;
}

.purchase-card.featured {
  border-color: var(--color-gold);
  box-shadow: var(--shadow-gold);
}

.purchase-card:hover {
  border-color: var(--color-gold);
  box-shadow: var(--shadow-md);
}

.purchase-card h3 {
  color: var(--color-navy);
  margin-bottom: 8px;
}

.purchase-card .purchase-badge {
  display: inline-block;
  background: var(--color-gold-bg);
  color: var(--color-gold);
  padding: 4px 16px;
  border-radius: 20px;
  font-size: 0.82rem;
  font-weight: 600;
  margin-bottom: 20px;
}

.purchase-card p {
  color: var(--color-text-medium);
  font-size: 0.9rem;
  margin-bottom: 24px;
  line-height: 1.7;
}

.qr-code {
  width: 160px;
  height: 160px;
  background: var(--color-bg);
  border-radius: var(--radius-md);
  margin: 0 auto 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-text-light);
  font-size: 0.85rem;
  border: 1px solid var(--color-border);
}

.qr-code-image {
  width: 180px;
  height: 180px;
  margin: 0 auto 16px;
  display: block;
  border-radius: var(--radius-md);
  border: 1px solid var(--color-border);
  padding: 6px;
  background: var(--color-white);
}

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

/* ============================================================
   SCENARIOS PAGE
   ============================================================ */
.scenario-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  margin-bottom: 64px;
}

.scenario-card:nth-child(even) {
  direction: rtl;
}

.scenario-card:nth-child(even) > * {
  direction: ltr;
}

.scenario-card h2 {
  color: var(--color-navy);
  margin-bottom: 0.75rem;
}

.scenario-card .scenario-pain {
  color: var(--color-d-red);
  font-weight: 600;
  font-size: 0.95rem;
  margin-bottom: 1rem;
}

.scenario-card p {
  color: var(--color-text-medium);
  line-height: 1.9;
  margin-bottom: 1rem;
}

.scenario-card .scenario-solution {
  color: var(--color-s-green);
  font-weight: 600;
  font-size: 0.95rem;
}

.scenario-image {
  background: var(--color-bg);
  border-radius: var(--radius-lg);
  min-height: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-text-light);
}

@media (max-width: 768px) {
  .scenario-card { grid-template-columns: 1fr; gap: 24px; }
  .scenario-card:nth-child(even) { direction: ltr; }
}

/* ============================================================
   ABOUT PAGE
   ============================================================ */
.about-values {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.about-value {
  text-align: center;
  padding: 32px 20px;
}

.about-value-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--color-gold-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  color: var(--color-gold);
  font-size: 1.4rem;
}

.about-value h4 {
  color: var(--color-navy);
  margin-bottom: 8px;
}

.about-value p {
  color: var(--color-text-medium);
  font-size: 0.9rem;
  line-height: 1.7;
}

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

/* Contact info cards */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.contact-card {
  background: var(--color-white);
  border-radius: var(--radius-md);
  padding: 28px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.contact-card-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--color-gold-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  color: var(--color-gold);
  font-size: 1.2rem;
  flex-shrink: 0;
}

.contact-card h4 {
  color: var(--color-navy);
  margin-bottom: 4px;
  font-size: 0.95rem;
}

.contact-card p {
  color: var(--color-text-medium);
  font-size: 0.9rem;
  margin: 4px 0;
}

.contact-card img.qr-code-image {
  margin-top: auto;
  padding-top: 16px;
}

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

/* ============================================================
   UTILITIES
   ============================================================ */
.text-center { text-align: center; }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }

.highlight-box {
  background: var(--color-gold-bg);
  border-left: 4px solid var(--color-gold);
  padding: 20px 24px;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  margin: 24px 0;
}

.highlight-box p {
  color: var(--color-text);
  font-size: 0.95rem;
  line-height: 1.8;
}

/* ============================================================
   ANIMATIONS
   ============================================================ */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-in {
  animation: fadeInUp 0.6s ease-out forwards;
}

/* Scroll reveal offset */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
   BREADCRUMB (SEO)
   ============================================================ */
.breadcrumb {
  display: flex;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--color-text-light);
  margin-bottom: 24px;
  flex-wrap: wrap;
}

.breadcrumb a {
  color: var(--color-text-light);
  transition: color 0.2s;
}

.breadcrumb a:hover {
  color: var(--color-gold);
}

.breadcrumb span {
  color: var(--color-text);
}

/* ============================================================
   GRID MODIFIERS (consulting/training page)
   ============================================================ */
.value-grid.cols-2 {
  grid-template-columns: repeat(2, 1fr);
}

.process-steps.cols-4 {
  grid-template-columns: repeat(4, 1fr);
}

@media (max-width: 992px) {
  .process-steps.cols-4 { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .value-grid.cols-2 { grid-template-columns: 1fr; }
  .process-steps.cols-4 { grid-template-columns: 1fr; }
}

/* ============================================================
   PRINT STYLES
   ============================================================ */
@media print {
  .nav, .footer, .btn, .cta-section { display: none !important; }
  body { color: #000; background: #fff; }
  .section { padding: 20px 0; }
}
