/* ==========================================================================
   ABOUT & CONTACT PAGES STYLES
   Used by: about.html, contact.html
   ========================================================================== */

/* ==========================================================================
   1. PAGE HERO (shared between About & Contact)
   ========================================================================== */
.page-hero {
  background: linear-gradient(135deg, #2a2a2a 0%, #1a1a1a 100%);
  color: var(--white);
  padding: 80px var(--space-lg) 100px;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(51, 153, 255, 0.15), transparent 60%);
  pointer-events: none;
}

.page-hero::after {
  content: '';
  position: absolute;
  bottom: -150px;
  left: -150px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(51, 153, 255, 0.08), transparent 60%);
  pointer-events: none;
}

.page-hero-inner {
  max-width: var(--container-max);
  margin: 0 auto;
  position: relative;
  z-index: 2;
  text-align: center;
}

.page-hero .section-tag {
  background: rgba(51, 153, 255, 0.12);
  color: var(--blue);
  margin-left: auto;
  margin-right: auto;
}

.page-hero h1 {
  font-family: var(--font-sans);
  font-weight: 300;
  font-size: clamp(40px, 5.4vw, 72px);
  line-height: 1.05;
  letter-spacing: -0.025em;
  margin-bottom: 20px;
  color: var(--white);
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.page-hero h1 strong {
  font-weight: 700;
  color: var(--blue);
}

.page-hero-lead {
  font-size: 18px;
  line-height: 1.7;
  color: var(--grey-light);
  margin: 0 auto;
  max-width: 720px;
}

/* ==========================================================================
   2. ABOUT — STORY SECTION
   ========================================================================== */
.about-story {
  background: var(--white);
  padding: 120px var(--space-lg);
}

.about-story-inner {
  max-width: var(--container-max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 80px;
  align-items: center;
}

.about-story-image {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: var(--radius-2xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.about-story-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-story-image-tag {
  position: absolute;
  top: 24px;
  left: 24px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  padding: 10px 16px;
  border-radius: var(--radius-full);
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  color: var(--ink);
  font-weight: 600;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 8px;
}

.about-story-image-tag .dot {
  width: 6px;
  height: 6px;
  background: var(--blue);
  border-radius: 50%;
}

.about-story-content > p {
  font-size: 16px;
  line-height: 1.8;
  color: var(--ink-light);
  margin-bottom: 20px;
}

.about-story-content > p:last-of-type {
  margin-bottom: 32px;
}

.about-story-signature {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 24px;
  background: var(--blue-soft);
  border-radius: var(--radius-md);
  border-left: 4px solid var(--blue);
}

.about-story-signature-icon {
  width: 48px;
  height: 48px;
  background: var(--blue);
  border-radius: 50%;
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 600;
  font-style: italic;
}

.about-story-signature-text strong {
  display: block;
  color: var(--ink);
  font-size: 15px;
  font-weight: 700;
}

.about-story-signature-text span {
  font-size: 13px;
  color: var(--grey);
}

/* ==========================================================================
   3. ABOUT — MISSION & VISION
   ========================================================================== */
.about-mission {
  background: var(--grey-bg);
  padding: 120px var(--space-lg);
}

.about-mission-inner {
  max-width: var(--container-max);
  margin: 0 auto;
}

.about-mission-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin-top: 56px;
}

.mission-card {
  padding: 48px 40px;
  background: var(--white);
  border-radius: var(--radius-xl);
  border: 1px solid var(--line);
  transition: all var(--transition-base);
  position: relative;
  overflow: hidden;
}

.mission-card:hover {
  border-color: transparent;
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.mission-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--blue);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition-base);
}

.mission-card:hover::before {
  transform: scaleX(1);
}

.mission-card-icon {
  width: 64px;
  height: 64px;
  background: var(--blue-soft);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue);
  margin-bottom: 24px;
}

.mission-card-tag {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.15em;
  color: var(--blue);
  text-transform: uppercase;
  margin-bottom: 12px;
  font-weight: 500;
}

.mission-card h3 {
  font-family: var(--font-sans);
  font-size: 28px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 16px;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.mission-card p {
  font-size: 15px;
  color: var(--ink-light);
  line-height: 1.75;
}

/* ==========================================================================
   4. ABOUT — VALUES SECTION
   ========================================================================== */
.about-values {
  background: var(--white);
  padding: 120px var(--space-lg);
}

.about-values-inner {
  max-width: var(--container-max);
  margin: 0 auto;
}

.about-values-header {
  text-align: center;
  margin-bottom: 64px;
}

.about-values-header .section-tag {
  margin-left: auto;
  margin-right: auto;
}

.about-values-header .section-subtitle {
  margin: 0 auto;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.value-card {
  padding: 32px 24px;
  text-align: center;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  transition: all var(--transition-base);
}

.value-card:hover {
  border-color: var(--blue);
  background: var(--blue-soft);
  transform: translateY(-3px);
}

.value-card-num {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.15em;
  color: var(--blue);
  text-transform: uppercase;
  margin-bottom: 16px;
  font-weight: 500;
}

.value-card-icon {
  width: 56px;
  height: 56px;
  background: var(--blue-soft);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue);
  margin: 0 auto 20px;
  transition: all var(--transition-base);
}

.value-card:hover .value-card-icon {
  background: var(--blue);
  color: var(--white);
}

.value-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}

.value-card p {
  font-size: 13px;
  color: var(--ink-light);
  line-height: 1.65;
}

/* ==========================================================================
   5. ABOUT — TIMELINE
   ========================================================================== */
.about-timeline {
  background: var(--ink);
  color: var(--white);
  padding: 120px var(--space-lg);
  position: relative;
  overflow: hidden;
}

.about-timeline::before {
  content: '';
  position: absolute;
  top: -200px;
  left: -200px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(51, 153, 255, 0.1), transparent 60%);
  pointer-events: none;
}

.about-timeline-inner {
  max-width: var(--container-max);
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.timeline-header {
  text-align: center;
  margin-bottom: 72px;
}

.timeline-header .section-tag {
  background: rgba(51, 153, 255, 0.12);
  color: var(--blue);
  margin-left: auto;
  margin-right: auto;
}

.timeline-header .section-title {
  color: var(--white);
}

.timeline-header .section-subtitle {
  color: var(--grey-light);
  margin: 0 auto;
}

.timeline {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  padding-left: 40px;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  bottom: 8px;
  width: 2px;
  background: linear-gradient(to bottom, var(--blue), rgba(51, 153, 255, 0.2));
}

.timeline-item {
  position: relative;
  padding-bottom: 48px;
  padding-left: 40px;
}

.timeline-item:last-child {
  padding-bottom: 0;
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: -47px;
  top: 6px;
  width: 14px;
  height: 14px;
  background: var(--blue);
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(51, 153, 255, 0.2);
}

.timeline-year {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.15em;
  color: var(--blue);
  font-weight: 600;
  margin-bottom: 8px;
  text-transform: uppercase;
}

.timeline-item h3 {
  font-family: var(--font-sans);
  font-size: 22px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
  letter-spacing: -0.02em;
}

.timeline-item p {
  font-size: 15px;
  color: var(--grey-light);
  line-height: 1.7;
  max-width: 600px;
}

/* ==========================================================================
   6. ABOUT — STATS BANNER
   ========================================================================== */
.about-stats {
  background: var(--white);
  padding: 100px var(--space-lg);
}

.about-stats-inner {
  max-width: var(--container-max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  text-align: center;
}

.about-stat-block {
  padding: 32px 16px;
  border-right: 1px solid var(--line);
}

.about-stat-block:last-child {
  border-right: none;
}

.about-stat-num {
  font-family: var(--font-sans);
  font-size: clamp(40px, 4vw, 56px);
  font-weight: 700;
  color: var(--blue);
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 14px;
}

.about-stat-label {
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 6px;
}

.about-stat-desc {
  font-size: 12px;
  color: var(--grey);
  letter-spacing: 0.02em;
}

/* ==========================================================================
   7. ABOUT — GROUP / SISTER COMPANIES
   ========================================================================== */
.about-group {
  background: var(--grey-bg);
  padding: 120px var(--space-lg);
}

.about-group-inner {
  max-width: var(--container-max);
  margin: 0 auto;
}

.about-group-header {
  text-align: center;
  margin-bottom: 56px;
}

.about-group-header .section-tag {
  margin-left: auto;
  margin-right: auto;
}

.about-group-header .section-subtitle {
  margin: 0 auto;
}

.group-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.group-card {
  padding: 32px 24px;
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  text-align: center;
  transition: all var(--transition-base);
  text-decoration: none;
  color: inherit;
  display: block;
}

.group-card.active {
  border-color: var(--blue);
  background: var(--blue-soft);
  position: relative;
}

.group-card.active::after {
  content: 'Current Division';
  position: absolute;
  top: 12px;
  right: 12px;
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.1em;
  color: var(--blue);
  background: var(--white);
  padding: 4px 8px;
  border-radius: var(--radius-sm);
  text-transform: uppercase;
  font-weight: 600;
}

.group-card:hover:not(.active) {
  border-color: var(--blue);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.group-card-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--blue), var(--blue-dark));
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  margin: 0 auto 20px;
}

.group-card-tag {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.15em;
  color: var(--blue);
  text-transform: uppercase;
  margin-bottom: 8px;
  font-weight: 500;
}

.group-card h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}

.group-card p {
  font-size: 13px;
  color: var(--ink-light);
  line-height: 1.5;
}

/* ==========================================================================
   8. ABOUT — CTA
   ========================================================================== */
.about-cta {
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-dark) 100%);
  padding: 80px var(--space-lg);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.about-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 60px 60px;
  -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 70%);
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 70%);
  pointer-events: none;
}

.about-cta-inner {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.about-cta h2 {
  font-family: var(--font-sans);
  font-weight: 300;
  font-size: clamp(28px, 3.6vw, 44px);
  color: var(--white);
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}

.about-cta h2 strong {
  font-weight: 700;
}

.about-cta p {
  font-size: 17px;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 32px;
  line-height: 1.6;
}

.about-cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-white {
  background: var(--white);
  color: var(--blue);
  border: 1px solid var(--white);
}

.btn-white:hover {
  background: var(--ink);
  color: var(--white);
  border-color: var(--ink);
}

.btn-outline-white {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.4);
}

.btn-outline-white:hover {
  background: var(--white);
  color: var(--blue);
  border-color: var(--white);
}

/* ==========================================================================
   9. CONTACT PAGE — METHODS GRID
   ========================================================================== */
.contact-methods {
  background: var(--white);
  padding: 120px var(--space-lg);
}

.contact-methods-inner {
  max-width: var(--container-max);
  margin: 0 auto;
}

.contact-methods-header {
  text-align: center;
  margin-bottom: 64px;
}

.contact-methods-header .section-tag {
  margin-left: auto;
  margin-right: auto;
}

.contact-methods-header .section-subtitle {
  margin: 0 auto;
}

.contact-methods-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.contact-method {
  padding: 36px 28px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  transition: all var(--transition-base);
  text-decoration: none;
  color: inherit;
  display: block;
}

.contact-method:hover {
  border-color: var(--blue);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.contact-method-icon {
  width: 56px;
  height: 56px;
  background: var(--blue-soft);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue);
  margin-bottom: 20px;
  transition: all var(--transition-base);
}

.contact-method:hover .contact-method-icon {
  background: var(--blue);
  color: var(--white);
}

.contact-method-tag {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.15em;
  color: var(--blue);
  text-transform: uppercase;
  margin-bottom: 8px;
  font-weight: 500;
}

.contact-method h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 6px;
  letter-spacing: -0.01em;
}

.contact-method-value {
  font-size: 16px;
  font-weight: 600;
  color: var(--blue);
  margin-bottom: 12px;
}

.contact-method p {
  font-size: 13px;
  color: var(--grey);
  line-height: 1.5;
}

/* ==========================================================================
   10. CONTACT PAGE — FORM SECTION
   ========================================================================== */
.contact-form-section {
  background: var(--grey-bg);
  padding: 120px var(--space-lg);
}

.contact-form-wrap {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 0;
  background: var(--white);
  border-radius: var(--radius-2xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.contact-form-info {
  padding: 60px 48px;
  background: var(--ink);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.contact-form-info::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(51, 153, 255, 0.15), transparent 60%);
}

.contact-form-info .section-tag {
  background: rgba(51, 153, 255, 0.12);
}

.contact-form-info .section-title {
  color: var(--white);
  font-size: 36px;
  margin-bottom: 20px;
  position: relative;
  z-index: 2;
}

.contact-form-info > p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--grey-light);
  margin-bottom: 40px;
  position: relative;
  z-index: 2;
}

.contact-form-info-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
  z-index: 2;
}

.contact-form-info-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-form-info-item:last-child {
  border-bottom: none;
}

.contact-form-info-icon {
  width: 40px;
  height: 40px;
  background: rgba(51, 153, 255, 0.1);
  border: 1px solid rgba(51, 153, 255, 0.3);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--blue);
}

.contact-form-info-label {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.15em;
  color: var(--grey-light);
  margin-bottom: 4px;
  text-transform: uppercase;
}

.contact-form-info-value {
  font-size: 15px;
  color: var(--white);
  font-weight: 500;
  line-height: 1.5;
}

.contact-form-info-value a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition-base);
}

.contact-form-info-value a:hover {
  color: var(--blue);
}

.contact-form-actual {
  padding: 60px 48px;
  background: var(--white);
}

.contact-form-actual h3 {
  font-family: var(--font-sans);
  font-size: 24px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 8px;
  letter-spacing: -0.02em;
}

.contact-form-actual > p {
  font-size: 14px;
  color: var(--grey);
  margin-bottom: 32px;
}

/* ==========================================================================
   11. CONTACT PAGE — FAQ
   ========================================================================== */
.contact-faq {
  background: var(--white);
  padding: 120px var(--space-lg);
}

.contact-faq-inner {
  max-width: 880px;
  margin: 0 auto;
}

.contact-faq-header {
  text-align: center;
  margin-bottom: 56px;
}

.contact-faq-header .section-tag {
  margin-left: auto;
  margin-right: auto;
}

.contact-faq-header .section-subtitle {
  margin: 0 auto;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: all var(--transition-base);
}

.faq-item[open] {
  border-color: var(--blue);
  box-shadow: var(--shadow-sm);
}

.faq-item summary {
  padding: 20px 24px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  font-size: 16px;
  font-weight: 600;
  color: var(--ink);
  list-style: none;
  transition: color var(--transition-base);
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary:hover {
  color: var(--blue);
}

.faq-item summary::after {
  content: '+';
  font-size: 24px;
  color: var(--blue);
  font-weight: 300;
  transition: transform var(--transition-base);
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--blue-soft);
  border-radius: 50%;
}

.faq-item[open] summary::after {
  content: '−';
  background: var(--blue);
  color: var(--white);
}

.faq-item-content {
  padding: 0 24px 24px;
  font-size: 15px;
  color: var(--ink-light);
  line-height: 1.75;
}

.faq-item-content a {
  color: var(--blue);
  text-decoration: underline;
}

/* ==========================================================================
   12. CONTACT PAGE — MAP / LOCATION
   ========================================================================== */
.contact-locations {
  background: var(--grey-bg);
  padding: 120px var(--space-lg);
}

.contact-locations-inner {
  max-width: var(--container-max);
  margin: 0 auto;
}

.contact-locations-header {
  text-align: center;
  margin-bottom: 56px;
}

.contact-locations-header .section-tag {
  margin-left: auto;
  margin-right: auto;
}

.contact-locations-header .section-subtitle {
  margin: 0 auto;
}

.locations-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.location-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  transition: all var(--transition-base);
}

.location-card:hover {
  border-color: var(--blue);
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.location-card-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--blue-soft);
  padding: 5px 10px;
  border-radius: var(--radius-sm);
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  color: var(--blue);
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 16px;
}

.location-card h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}

.location-card-address {
  font-size: 14px;
  color: var(--ink-light);
  line-height: 1.7;
  margin-bottom: 20px;
}

.location-card-details {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}

.location-card-detail {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: var(--ink);
}

.location-card-detail svg {
  color: var(--blue);
  flex-shrink: 0;
}

.location-card-detail a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition-base);
}

.location-card-detail a:hover {
  color: var(--blue);
}

/* ==========================================================================
   13. RESPONSIVE
   ========================================================================== */
@media (max-width: 1024px) {
  .page-hero {
    padding: 60px var(--space-md) 80px;
  }

  .about-story-inner,
  .about-mission-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .values-grid,
  .group-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-stats-inner {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .about-stat-block {
    border-right: none;
    border-bottom: 1px solid var(--line);
    padding: 24px 16px;
  }

  .about-stat-block:nth-last-child(-n+2) {
    border-bottom: none;
  }

  .contact-methods-grid {
    grid-template-columns: 1fr;
  }

  .contact-form-wrap {
    grid-template-columns: 1fr;
  }

  .contact-form-info,
  .contact-form-actual {
    padding: 40px 32px;
  }

  .locations-grid {
    grid-template-columns: 1fr;
  }

  .about-story,
  .about-mission,
  .about-values,
  .about-timeline,
  .about-stats,
  .about-group,
  .contact-methods,
  .contact-form-section,
  .contact-faq,
  .contact-locations {
    padding: 80px var(--space-md);
  }

  .about-cta {
    padding: 60px var(--space-md);
  }
}

@media (max-width: 720px) {
  .values-grid,
  .group-grid {
    grid-template-columns: 1fr;
  }

  .about-stats-inner {
    grid-template-columns: 1fr;
  }

  .about-stat-block {
    border-bottom: 1px solid var(--line);
  }

  .timeline {
    padding-left: 32px;
  }

  .timeline-item {
    padding-left: 24px;
  }

  .timeline-item::before {
    left: -39px;
  }

  .mission-card,
  .contact-method,
  .location-card {
    padding: 28px 24px;
  }

  .contact-form-info,
  .contact-form-actual {
    padding: 32px 24px;
  }
}

/* ==========================================================================
   GLOBAL INQUIRY FORM STYLES (cu-form-*)
   Used by: contact us page form + any page using the inquiry-form template part
   ========================================================================== */

.inquiry-form .cu-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 18px;
}

.inquiry-form .cu-form-group {
  margin-bottom: 18px;
}

.inquiry-form .cu-form-group:last-of-type {
  margin-bottom: 24px;
}

.inquiry-form .cu-form-label {
  display: block;
  font-family: 'Manrope', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: #333;
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}

.inquiry-form .cu-form-label .req {
  color: #3399ff;
  font-weight: 700;
}

.inquiry-form .cu-form-input,
.inquiry-form .cu-form-select,
.inquiry-form .cu-form-textarea {
  width: 100%;
  padding: 13px 16px;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  font-family: 'Manrope', sans-serif;
  font-size: 14px;
  color: #1a1a1a;
  background: #fafafa;
  box-sizing: border-box;
  transition: all 0.25s ease;
}

.inquiry-form .cu-form-input:focus,
.inquiry-form .cu-form-select:focus,
.inquiry-form .cu-form-textarea:focus {
  outline: none;
  border-color: #3399ff;
  background: #fff;
  box-shadow: 0 0 0 4px rgba(51, 153, 255, 0.08);
}

.inquiry-form .cu-form-textarea {
  resize: vertical;
  min-height: 120px;
  font-family: 'Manrope', sans-serif;
}

.inquiry-form .cu-form-submit {
  width: 100%;
  padding: 16px 28px;
  background: #3399ff;
  color: #fff;
  border: 1px solid #3399ff;
  border-radius: 8px;
  font-family: 'Manrope', sans-serif;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: all 0.25s ease;
  letter-spacing: -0.01em;
}

.inquiry-form .cu-form-submit:hover {
  background: #1a7fe0;
  border-color: #1a7fe0;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(51, 153, 255, 0.3);
}

.inquiry-form .cu-form-submit:disabled {
  background: #999;
  border-color: #999;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

.inquiry-form .cu-form-note {
  font-size: 12px;
  line-height: 1.6;
  color: #999;
  text-align: center;
  margin-top: 16px;
}

.inquiry-form .cu-form-status {
  margin-top: 18px;
  padding: 14px 18px;
  border-radius: 8px;
  font-size: 14px;
  line-height: 1.5;
  display: none;
}

.inquiry-form .cu-form-status.success {
  display: block;
  background: #e8f5e9;
  color: #1b5e20;
  border: 1px solid #c3e6cb;
}

.inquiry-form .cu-form-status.error {
  display: block;
  background: #fdecea;
  color: #b71c1c;
  border: 1px solid #f5c6cb;
}

/* Responsive — stack form rows on small screens */
@media (max-width: 640px) {
  .inquiry-form .cu-form-row {
    grid-template-columns: 1fr;
  }
}