/* AUJ Digital - Main Styles */
@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

/* ===== CSS VARIABLES ===== */
:root {
  --black: #0d0d0d;
  --white: #ffffff;
  --orange: #F5A623;
  --orange-dark: #d4891a;
  --orange-light: #fdebc8;
  --maroon: #7D1A1A;
  --maroon-light: #f5e0e0;
  --off-white: #faf9f7;
  --gray-light: #f4f3f0;
  --gray: #e8e6e1;
  --gray-mid: #999;
  --text-dark: #1a1a1a;
  --text-muted: #666;
  --body-font: 'Montserrat', sans-serif;
  --heading-font: 'Inter', sans-serif;
}

/* ===== RESET & BASE ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--white);
  color: var(--text-dark);
  font-family: var(--body-font);
  overflow-x: hidden;
  line-height: 1.6;
}

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

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

/* ===== NAVIGATION ===== */
nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 3rem;
  border-bottom: 1px solid var(--gray);
  position: sticky;
  top: 0;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(12px);
  z-index: 100;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0;
  font-family: var(--heading-font);
  font-size: 1.45rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1;
}

.logo-au {
  color: var(--black);
}

.logo-j {
  color: var(--orange);
}

.logo-dot-mark {
  display: inline-block;
  width: 9px;
  height: 9px;
  background: var(--maroon);
  border-radius: 1px;
  transform: translateY(-6px);
  margin-left: 1px;
}

.logo-digital {
  color: var(--text-dark);
  font-weight: 700;
  margin-left: 4px;
}

.logo-period {
  color: var(--maroon);
}

.nav-links {
  display: flex;
  gap: 2rem;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.nav-links a {
  transition: color 0.2s;
}

.nav-links a:hover {
  color: var(--orange);
}

.nav-cta {
  background: var(--orange);
  color: var(--white);
  padding: 0.6rem 1.4rem;
  border-radius: 6px;
  font-size: 0.875rem;
  font-weight: 500;
  transition: background 0.2s;
}

.nav-cta:hover {
  background: var(--orange-dark);
}

/* ===== HERO ===== */
.hero {
  padding: 5.5rem 3rem 4rem;
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 4rem;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--orange-light);
  border: 1px solid #f5d090;
  border-radius: 50px;
  padding: 0.35rem 1rem;
  font-size: 0.75rem;
  color: var(--orange-dark);
  margin-bottom: 1.8rem;
  font-weight: 500;
}

.dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--orange);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

.hero h1 {
  font-family: var(--heading-font);
  font-size: clamp(2.8rem, 5vw, 4.6rem);
  font-weight: 800;
  line-height: 1.0;
  letter-spacing: -0.03em;
  margin-bottom: 1.8rem;
  color: var(--black);
}

.hero h1 em {
  font-style: normal;
  color: var(--orange);
}

.hero h1 .red {
  color: var(--maroon);
}

.hero-sub {
  font-size: 1rem;
  color: var(--text-muted);
  max-width: 460px;
  line-height: 1.75;
  margin-bottom: 2.5rem;
  font-weight: 300;
}

.hero-ctas {
  display: flex;
  gap: 1rem;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-primary {
  background: var(--orange);
  color: var(--white);
  padding: 0.85rem 2rem;
  border-radius: 6px;
  font-weight: 500;
  font-size: 0.95rem;
  transition: background 0.2s;
  display: inline-block;
}

.btn-primary:hover {
  background: var(--orange-dark);
}

.btn-outline {
  border: 1.5px solid var(--maroon);
  color: var(--maroon);
  padding: 0.85rem 2rem;
  border-radius: 6px;
  font-size: 0.95rem;
  transition: all 0.2s;
  font-weight: 500;
  display: inline-block;
}

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

/* ===== HERO VISUAL ===== */
.hero-visual {
  background: var(--black);
  border-radius: 16px;
  padding: 2rem;
  position: relative;
  overflow: hidden;
}

.hero-visual::before {
  content: '';
  position: absolute;
  top: -40px;
  right: -40px;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: var(--orange);
  opacity: 0.12;
}

.hero-visual::after {
  content: '';
  position: absolute;
  bottom: -30px;
  left: -30px;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: var(--maroon);
  opacity: 0.15;
}

.vis-label {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: #666;
  margin-bottom: 1.2rem;
}

.vis-stat {
  margin-bottom: 1.5rem;
}

.vis-stat-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 0.3rem;
}

.vis-num {
  font-family: var(--heading-font);
  font-size: 2rem;
  font-weight: 700;
  color: var(--orange);
}

.vis-sublabel {
  font-size: 0.72rem;
  color: #888;
}

.progress-bar {
  height: 4px;
  background: #222;
  border-radius: 2px;
  overflow: hidden;
  margin-top: 0.4rem;
}

.progress-fill {
  height: 100%;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--orange), var(--maroon));
}

.vis-divider {
  border: none;
  border-top: 1px solid #222;
  margin: 1.5rem 0;
}

.vis-platforms {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.vis-pill {
  background: #1a1a1a;
  border: 1px solid #2e2e2e;
  border-radius: 4px;
  padding: 0.3rem 0.7rem;
  font-size: 0.7rem;
  color: #aaa;
}

.vis-pill.active {
  border-color: var(--orange);
  color: var(--orange);
}

/* ===== STATS BAR ===== */
.stats-bar {
  background: var(--black);
  padding: 2.5rem 3rem;
  display: flex;
  justify-content: center;
  gap: 5rem;
  flex-wrap: wrap;
}

.stat-item {
  text-align: center;
}

.stat-num {
  font-family: var(--heading-font);
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--orange);
}

.stat-label {
  font-size: 0.78rem;
  color: #888;
  margin-top: 0.2rem;
  letter-spacing: 0.05em;
}

/* ===== MARQUEE ===== */
.marquee-section {
  border-top: 1px solid #222;
  border-bottom: 1px solid #222;
  padding: 0.9rem 0;
  overflow: hidden;
  background: #111;
}

.marquee-track {
  display: flex;
  gap: 0;
  animation: scroll 25s linear infinite;
  white-space: nowrap;
}

@keyframes scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.marquee-item {
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #666;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.marquee-item::after {
  content: '✦';
  color: var(--orange);
  font-size: 0.55rem;
}

/* ===== SECTIONS ===== */
.section {
  padding: 5rem 3rem;
  max-width: 1200px;
  margin: 0 auto;
}

.section-label {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--orange);
  margin-bottom: 0.8rem;
  font-weight: 600;
}

.section-title {
  font-family: var(--heading-font);
  font-size: clamp(1.9rem, 3.5vw, 2.8rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--black);
}

.section-sub {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.65;
  margin-top: 0.8rem;
}

.services-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 3rem;
  flex-wrap: wrap;
  gap: 1.5rem;
}

/* ===== CATEGORY TABS ===== */
.cat-tabs {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.cat-tab {
  padding: 0.5rem 1.2rem;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 500;
  cursor: pointer;
  border: 1.5px solid var(--gray);
  color: var(--text-muted);
  transition: all 0.2s;
  background: var(--white);
}

.cat-tab.active, .cat-tab:hover {
  background: var(--orange);
  border-color: var(--orange);
  color: var(--white);
}

.cat-tab.maroon.active, .cat-tab.maroon:hover {
  background: var(--maroon);
  border-color: var(--maroon);
  color: var(--white);
}

/* ===== SERVICES GRID ===== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.service-card {
  background: var(--off-white);
  border: 1px solid var(--gray);
  border-radius: 12px;
  padding: 2rem;
  cursor: pointer;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}

.service-card:hover {
  border-color: var(--orange);
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(245, 166, 35, 0.12);
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--orange);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s;
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-card.maroon-card:hover {
  border-color: var(--maroon);
  box-shadow: 0 12px 40px rgba(125, 26, 26, 0.1);
}

.service-card.maroon-card::before {
  background: var(--maroon);
}

.card-icon-wrap {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: var(--orange-light);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  font-size: 1.2rem;
}

.card-icon-wrap.maroon-icon {
  background: var(--maroon-light);
}

.card-num {
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--gray-mid);
  margin-bottom: 0.6rem;
}

.card-title {
  font-family: var(--heading-font);
  font-size: 1rem;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 0.7rem;
  line-height: 1.3;
}

.card-desc {
  font-size: 0.83rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.card-arrow {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.78rem;
  color: var(--orange);
  margin-top: 1.2rem;
  font-weight: 500;
  opacity: 0;
  transition: opacity 0.2s;
}

.service-card:hover .card-arrow {
  opacity: 1;
}

.service-card.maroon-card .card-arrow {
  color: var(--maroon);
}

/* ===== AMAZON FEATURE ===== */
.feature-section {
  background: var(--black);
  padding: 5rem 3rem;
}

.feature-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.feature-section .section-title {
  color: var(--white);
}

.feature-section .section-sub {
  color: #aaa;
}

.feature-section .section-label {
  color: var(--orange);
}

.check-list {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

.check-item {
  display: flex;
  align-items: flex-start;
  gap: 0.9rem;
  font-size: 0.88rem;
  color: #ccc;
  line-height: 1.5;
}

.check-dot {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--orange);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
  font-size: 0.65rem;
  color: var(--black);
  font-weight: 700;
}

.feature-cta {
  margin-top: 2.5rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--orange);
  color: var(--white);
  padding: 0.85rem 1.8rem;
  border-radius: 6px;
  font-weight: 500;
  font-size: 0.9rem;
  transition: background 0.2s;
}

.feature-cta:hover {
  background: var(--orange-dark);
}

.platform-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: #1e1e1e;
  border: 1px solid #1e1e1e;
  border-radius: 12px;
  overflow: hidden;
}

.platform-cell {
  background: #111;
  padding: 1.5rem;
  text-align: center;
  transition: background 0.2s;
}

.platform-cell:hover {
  background: #1a1a1a;
}

.p-name {
  font-family: var(--heading-font);
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.3rem;
}

.p-stat {
  font-size: 0.7rem;
  color: var(--orange);
}

.p-icon {
  font-size: 1.4rem;
  margin-bottom: 0.5rem;
}

/* ===== PROCESS ===== */
.process-wrap {
  background: var(--off-white);
  border-top: 1px solid var(--gray);
  border-bottom: 1px solid var(--gray);
}

.process-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 5rem 3rem;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-top: 3rem;
  position: relative;
}

.process-grid::before {
  content: '';
  position: absolute;
  top: 1.7rem;
  left: 14%;
  right: 14%;
  height: 1px;
  background: repeating-linear-gradient(90deg, var(--orange) 0, var(--orange) 6px, transparent 6px, transparent 14px);
  opacity: 0.4;
}

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

.step-circle {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 50%;
  background: var(--white);
  border: 2px solid var(--orange);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.2rem;
  font-family: var(--heading-font);
  font-size: 0.85rem;
  font-weight: 800;
  color: var(--orange);
}

.step-title {
  font-family: var(--heading-font);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 0.5rem;
}

.step-desc {
  font-size: 0.78rem;
  color: var(--text-muted);
  line-height: 1.55;
}

/* ===== TESTIMONIALS ===== */
.testi-section {
  padding: 5rem 3rem;
  max-width: 1200px;
  margin: 0 auto;
}

.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}

.testi-card {
  background: var(--off-white);
  border: 1px solid var(--gray);
  border-radius: 12px;
  padding: 1.8rem;
}

.stars {
  color: var(--orange);
  font-size: 0.85rem;
  margin-bottom: 1rem;
  letter-spacing: 2px;
}

.testi-text {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 1.5rem;
  font-style: italic;
}

.testi-author {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.testi-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--orange);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--heading-font);
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--white);
}

.testi-name {
  font-family: var(--heading-font);
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--black);
}

.testi-role {
  font-size: 0.72rem;
  color: var(--text-muted);
}

/* ===== CTA SECTION ===== */
.cta-section {
  background: var(--black);
  padding: 6rem 3rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 300px;
  background: radial-gradient(ellipse, rgba(245, 166, 35, 0.08) 0%, transparent 70%);
}

.cta-inner {
  max-width: 650px;
  margin: 0 auto;
  position: relative;
}

.cta-section h2 {
  font-family: var(--heading-font);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.05;
  margin-bottom: 1.2rem;
  color: var(--white);
}

.cta-section h2 em {
  font-style: normal;
  color: var(--orange);
}

.cta-section p {
  color: #888;
  margin-bottom: 2.5rem;
  font-size: 0.9rem;
  line-height: 1.65;
}

.cta-btns {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-cta-primary {
  background: var(--orange);
  color: var(--white);
  padding: 1rem 2.5rem;
  border-radius: 6px;
  font-weight: 500;
  font-size: 0.95rem;
  transition: background 0.2s;
  display: inline-block;
}

.btn-cta-primary:hover {
  background: var(--orange-dark);
}

.btn-cta-ghost {
  border: 1.5px solid #333;
  color: #ccc;
  padding: 1rem 2.5rem;
  border-radius: 6px;
  font-size: 0.95rem;
  transition: all 0.2s;
  display: inline-block;
}

.btn-cta-ghost:hover {
  border-color: #666;
  color: var(--white);
}

/* ===== FOOTER ===== */
footer {
  background: #080808;
  border-top: 1px solid #1a1a1a;
  padding: 2.5rem 3rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0;
  font-family: var(--heading-font);
  font-size: 1.2rem;
  font-weight: 800;
}

.fl-au {
  color: var(--white);
}

.fl-j {
  color: var(--orange);
}

.fl-mark {
  display: inline-block;
  width: 7px;
  height: 7px;
  background: var(--maroon);
  border-radius: 1px;
  transform: translateY(-5px);
  margin-left: 1px;
}

.fl-digital {
  color: var(--white);
  font-weight: 700;
  margin-left: 3px;
}

.fl-period {
  color: var(--maroon);
}

.footer-links {
  display: flex;
  gap: 2rem;
  font-size: 0.8rem;
  color: #555;
}

.footer-links a:hover {
  color: var(--orange);
}

.footer-copy {
  font-size: 0.75rem;
  color: #333;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .hero {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .hero-visual {
    max-width: 500px;
    margin: 0 auto;
  }
  
  .feature-inner {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .testi-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .process-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .process-grid::before {
    display: none;
  }
}

@media (max-width: 768px) {
  nav {
    padding: 1rem 1.5rem;
  }
  
  .nav-links {
    display: none;
  }
  
  .section {
    padding: 3rem 1.5rem;
  }
  
  .hero {
    padding: 3rem 1.5rem 2rem;
  }
  
  .stats-bar {
    padding: 2rem 1.5rem;
    gap: 2.5rem;
  }
  
  .services-grid {
    grid-template-columns: 1fr;
  }
  
  .testi-grid {
    grid-template-columns: 1fr;
  }
  
  .process-grid {
    grid-template-columns: 1fr;
  }
  
  .platform-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .feature-section {
    padding: 3rem 1.5rem;
  }
  
  .cta-section {
    padding: 4rem 1.5rem;
  }
  
  footer {
    padding: 2rem 1.5rem;
    flex-direction: column;
    text-align: center;
  }
  
  .footer-links {
    flex-wrap: wrap;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .stat-num {
    font-size: 1.8rem;
  }
  
  .platform-grid {
    grid-template-columns: 1fr;
  }
}

/* ============================================
   CONTACT PAGE STYLES — AUJ Digital
   Append these to your existing style.css
   ============================================ */

/* Breadcrumb */
.breadcrumb {
  padding: 1rem 3rem;
  background: var(--gray-light);
  border-bottom: 1px solid var(--gray);
  font-size: 0.78rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.breadcrumb a:hover { color: var(--orange); }
.breadcrumb .current { color: var(--orange); font-weight: 500; }
.breadcrumb .sep { color: #ccc; }

/* Contact Hero */
.contact-hero {
  background: var(--black);
  padding: 5rem 3rem 4rem;
  text-align: center;
}
.contact-hero-inner {
  max-width: 700px;
  margin: 0 auto;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: #1a1a1a;
  border: 1px solid #2e2e2e;
  border-radius: 50px;
  padding: 0.35rem 1rem;
  font-size: 0.72rem;
  color: var(--orange);
  margin-bottom: 1.5rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--orange);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}
.contact-hero h1 {
  font-family: var(--heading-font);
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--white);
  margin-bottom: 1.2rem;
}
.contact-hero h1 em {
  font-style: normal;
  color: var(--orange);
}
.contact-hero p {
  color: #aaa;
  font-size: 0.95rem;
  line-height: 1.75;
  font-weight: 300;
}

/* Trust Strip */
.trust-strip {
  background: #111;
  border-top: 1px solid #1e1e1e;
  border-bottom: 1px solid #1e1e1e;
  padding: 1.5rem 3rem;
  display: flex;
  justify-content: center;
  gap: 4rem;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.8rem;
  color: #888;
}
.trust-icon { font-size: 1rem; }
.trust-item strong { color: var(--orange); font-weight: 600; }

/* Contact Main Layout */
.contact-main {
  padding: 5rem 3rem;
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 4rem;
  align-items: start;
}

/* Left Info */
.contact-info-title {
  font-family: var(--heading-font);
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--black);
  margin-bottom: 1rem;
  line-height: 1.2;
}
.contact-info-sub {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 2.5rem;
}

/* Contact Methods */
.contact-methods {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2.5rem;
}
.contact-method {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.2rem;
  background: var(--off-white);
  border: 1px solid var(--gray);
  border-radius: 10px;
  transition: border-color 0.2s;
}
.contact-method:hover { border-color: var(--orange); }
.method-icon {
  width: 40px;
  height: 40px;
  background: var(--orange-light);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.method-label {
  font-family: var(--heading-font);
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 0.15rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.method-value {
  font-size: 0.85rem;
  color: var(--text-muted);
}
.method-value a { color: var(--orange); font-weight: 500; }

/* Services Offered Box */
.services-offered {
  background: var(--black);
  border-radius: 12px;
  padding: 1.8rem;
}
.so-title {
  font-family: var(--heading-font);
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.so-items {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.so-item {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  font-size: 0.8rem;
  color: #aaa;
}
.so-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--orange);
  flex-shrink: 0;
}

/* Form Card */
.form-card {
  background: var(--off-white);
  border: 1px solid var(--gray);
  border-radius: 16px;
  padding: 2.5rem;
}
.form-title {
  font-family: var(--heading-font);
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--black);
  margin-bottom: 0.4rem;
}
.form-sub {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1rem;
}
.form-group { margin-bottom: 1rem; }
.form-label {
  display: block;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 0.4rem;
  font-family: var(--heading-font);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.form-label span { color: var(--orange); }
.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1.5px solid var(--gray);
  border-radius: 8px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.88rem;
  color: var(--text-dark);
  background: var(--white);
  transition: border-color 0.2s;
  outline: none;
}
.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: var(--orange);
}
.form-textarea {
  resize: vertical;
  min-height: 110px;
}
.form-select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23999' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
}

/* Services Checkboxes */
.services-check {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}
.check-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  color: var(--text-dark);
  cursor: pointer;
}
.check-item input[type="checkbox"] {
  width: 16px;
  height: 16px;
  accent-color: var(--orange);
  cursor: pointer;
  flex-shrink: 0;
}

.form-submit {
  width: 100%;
  background: var(--orange);
  color: var(--white);
  padding: 1rem;
  border: none;
  border-radius: 8px;
  font-family: var(--heading-font);
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s;
  margin-top: 0.5rem;
}
.form-submit:hover { background: var(--orange-dark); }
.form-note {
  font-size: 0.73rem;
  color: #999;
  text-align: center;
  margin-top: 0.8rem;
}

/* Success / Error Messages */
.success-msg {
  background: #f0fdf4;
  border: 1px solid #a3e6b5;
  border-radius: 10px;
  padding: 2rem;
  text-align: center;
  display: none;
}
.success-msg.show { display: block; }
.success-icon { font-size: 2rem; margin-bottom: 0.8rem; }
.success-title {
  font-family: var(--heading-font);
  font-size: 1rem;
  font-weight: 700;
  color: #166534;
  margin-bottom: 0.4rem;
}
.success-text { font-size: 0.82rem; color: #4b7a57; }

.error-msg {
  background: #fef2f2;
  border: 1px solid #fecaca;
  border-radius: 10px;
  padding: 1.2rem;
  margin-bottom: 1.5rem;
}
.error-title {
  font-size: 0.82rem;
  font-weight: 700;
  color: #991b1b;
  margin-bottom: 0.5rem;
}
.error-msg ul {
  list-style: none;
  padding: 0;
}
.error-msg li {
  font-size: 0.78rem;
  color: #b91c1c;
  padding: 0.2rem 0;
}

/* Calendar Section */
.calendar-section {
  background: var(--off-white);
  border-top: 1px solid var(--gray);
  border-bottom: 1px solid var(--gray);
  padding: 5rem 3rem;
}
.calendar-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.book-checklist {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}
.book-check-item {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-size: 0.85rem;
  color: var(--text-muted);
}
.book-check-mark { color: var(--orange); font-weight: 700; }

.calendar-visual {
  background: var(--white);
  border: 1px solid var(--gray);
  border-radius: 14px;
  overflow: hidden;
}
.cal-header {
  background: var(--orange);
  padding: 1.2rem 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.cal-month {
  font-family: var(--heading-font);
  font-size: 1rem;
  font-weight: 800;
  color: var(--black);
}
.cal-nav { display: flex; gap: 0.5rem; }
.cal-btn {
  background: rgba(0,0,0,0.1);
  border: none;
  color: var(--black);
  width: 28px;
  height: 28px;
  border-radius: 6px;
  cursor: pointer;
  font-size: 0.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cal-btn:hover { background: rgba(0,0,0,0.2); }
.cal-grid { padding: 1rem 1.5rem 1.5rem; }
.cal-days {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 0.2rem;
  margin-bottom: 0.5rem;
}
.cal-day-name {
  text-align: center;
  font-size: 0.65rem;
  font-weight: 600;
  color: #999;
  text-transform: uppercase;
  padding: 0.3rem;
}
.cal-dates {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 0.2rem;
}
.cal-date {
  text-align: center;
  padding: 0.45rem 0.2rem;
  font-size: 0.78rem;
  border-radius: 6px;
  cursor: pointer;
  color: var(--text-muted);
  transition: all 0.15s;
}
.cal-date:hover { background: var(--orange-light); color: var(--orange-dark); }
.cal-date.active { background: var(--orange); color: var(--white); font-weight: 700; }
.cal-date.available { color: var(--text-dark); font-weight: 500; }
.cal-date.empty { color: #ccc; pointer-events: none; }

.cal-slots {
  padding: 1rem 1.5rem 1.5rem;
  border-top: 1px solid var(--gray);
}
.cal-slots-title {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #999;
  margin-bottom: 0.8rem;
}
.slots-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.5rem;
}
.slot {
  padding: 0.4rem;
  border: 1px solid var(--gray);
  border-radius: 6px;
  text-align: center;
  font-size: 0.75rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.15s;
  color: var(--text-dark);
}
.slot:hover { border-color: var(--orange); color: var(--orange); }
.slot.selected { background: var(--orange); border-color: var(--orange); color: var(--white); }
.slot.booked { background: #ddd; border-color: #ccc; color: #999; pointer-events: none; text-decoration: line-through; }
.slots-empty { color: #999; font-size: 0.8rem; text-align: center; padding: 1rem; }

.cal-booking-form {
  padding: 1rem 1.5rem 1.5rem;
  border-top: 1px solid var(--gray);
}

/* FAQ */
.faq-section { padding: 5rem 3rem; }
.faq-inner { max-width: 800px; margin: 0 auto; }
.faq-list { margin-top: 2.5rem; }
.faq-item { border-bottom: 1px solid var(--gray); overflow: hidden; }
.faq-q {
  padding: 1.2rem 0;
  font-family: var(--heading-font);
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--black);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}
.faq-q:hover { color: var(--orange); }
.faq-icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--orange-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  color: var(--orange);
  flex-shrink: 0;
  transition: transform 0.3s;
}
.faq-a {
  font-size: 0.83rem;
  color: var(--text-muted);
  line-height: 1.65;
  padding-bottom: 1.2rem;
  display: none;
}
.faq-item.open .faq-a { display: block; }
.faq-item.open .faq-icon {
  transform: rotate(45deg);
  background: var(--orange);
  color: var(--white);
}

/* Responsive */
@media (max-width: 900px) {
  .contact-main {
    grid-template-columns: 1fr;
    padding: 3rem 1.5rem;
  }
  .calendar-inner {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .calendar-section {
    padding: 3rem 1.5rem;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
  .services-check {
    grid-template-columns: 1fr;
  }
  .trust-strip {
    gap: 1.5rem;
    padding: 1.5rem;
  }
  .faq-section {
    padding: 3rem 1.5rem;
  }
  nav {
    padding: 1rem 1.5rem;
  }
}

/* ============================================
   SERVICES PAGE STYLES
   ============================================ */

/* Services Hero */
.services-hero {
  background: var(--black);
  padding: 5rem 3rem 4rem;
  text-align: center;
}
.services-hero-inner {
  max-width: 750px;
  margin: 0 auto;
}
.services-hero h1 {
  font-family: var(--heading-font);
  font-size: clamp(2.4rem, 5vw, 3.5rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--white);
  margin-bottom: 1.2rem;
}
.services-hero h1 em {
  font-style: normal;
  color: var(--orange);
}
.services-hero p {
  color: #aaa;
  font-size: 0.95rem;
  line-height: 1.75;
  font-weight: 300;
  max-width: 560px;
  margin: 0 auto;
}

/* Services Category Section */
.services-category-section {
  padding: 5rem 3rem;
  border-bottom: 1px solid var(--gray);
}
.services-category-section:nth-child(even) {
  background: var(--off-white);
}
.services-category-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.category-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 3rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

/* Why Section */
.why-section {
  padding: 5rem 3rem;
}
.why-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}
.why-card {
  background: var(--off-white);
  border: 1px solid var(--gray);
  border-radius: 12px;
  padding: 2rem;
  transition: border-color 0.2s;
}
.why-card:hover {
  border-color: var(--orange);
}
.why-icon {
  font-size: 1.8rem;
  margin-bottom: 1rem;
}
.why-title {
  font-family: var(--heading-font);
  font-size: 1rem;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 0.6rem;
}
.why-desc {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* Platform Strip */
.platform-strip {
  background: var(--black);
  padding: 4rem 3rem;
}
.platform-strip-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.platform-strip-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0.8rem;
}
.platform-strip-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.8rem 1rem;
  background: #1a1a1a;
  border: 1px solid #2e2e2e;
  border-radius: 8px;
  transition: border-color 0.2s;
}
.platform-strip-item:hover {
  border-color: var(--orange);
}
.ps-icon {
  font-size: 1.1rem;
  flex-shrink: 0;
}
.ps-name {
  font-size: 0.78rem;
  color: #ccc;
  font-weight: 500;
}

/* Responsive */
@media (max-width: 900px) {
  .services-category-section {
    padding: 3rem 1.5rem;
  }
  .category-header {
    flex-direction: column;
    gap: 1rem;
  }
  .why-grid {
    grid-template-columns: 1fr 1fr;
  }
  .platform-strip-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 600px) {
  .why-grid {
    grid-template-columns: 1fr;
  }
  .platform-strip-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .services-hero {
    padding: 3rem 1.5rem;
  }
}
/* ============================================
   DIGITAL MARKETING PAGE STYLES
   ============================================ */

/* Hero */
.dm-hero {
  background: var(--black);
  padding: 5rem 3rem 0;
  text-align: center;
}
.dm-hero-inner {
  max-width: 750px;
  margin: 0 auto 3rem;
}
.dm-hero h1 {
  font-family: var(--heading-font);
  font-size: clamp(2.6rem, 5vw, 4rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--white);
  margin-bottom: 1.2rem;
}
.dm-hero h1 em { font-style: normal; color: var(--orange); }
.dm-hero p {
  color: #aaa;
  font-size: 0.95rem;
  line-height: 1.75;
  font-weight: 300;
  max-width: 540px;
  margin: 0 auto 2rem;
}
.dm-hero .hero-ctas {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* Hero Stats Row */
.dm-hero-stats {
  display: flex;
  justify-content: center;
  gap: 3rem;
  padding: 2.5rem 2rem;
  background: #111;
  border-top: 1px solid #1e1e1e;
  flex-wrap: wrap;
}
.dm-stat { text-align: center; }
.dm-stat-num {
  font-family: var(--heading-font);
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--orange);
  margin-bottom: 0.2rem;
}
.dm-stat-label {
  font-size: 0.75rem;
  color: #888;
  font-weight: 400;
}

/* Services Section */
.dm-services-section {
  padding: 5rem 3rem;
}
.dm-services-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.dm-services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}
.dm-service-card {
  background: var(--off-white);
  border: 1px solid var(--gray);
  border-radius: 14px;
  padding: 2.5rem;
  transition: border-color 0.25s, transform 0.25s;
  display: flex;
  flex-direction: column;
}
.dm-service-card:hover {
  border-color: var(--orange);
  transform: translateY(-2px);
}
.dm-service-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1.2rem;
}
.dm-service-icon {
  font-size: 2rem;
  background: var(--white);
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  border: 1px solid var(--gray);
}
.dm-service-num {
  font-family: var(--heading-font);
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--orange);
  letter-spacing: 0.1em;
}
.dm-service-title {
  font-family: var(--heading-font);
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--black);
  margin-bottom: 0.6rem;
}
.dm-service-desc {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 1.2rem;
}
.dm-feature-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}
.dm-feature-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.78rem;
  color: var(--text-dark);
}
.dm-feature-check {
  color: var(--orange);
  font-weight: 700;
  flex-shrink: 0;
}
.dm-service-link {
  margin-top: auto;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--orange);
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  transition: gap 0.2s;
}
.dm-service-link:hover { gap: 0.6rem; }

/* Approach Section */
.dm-approach {
  background: var(--off-white);
  border-top: 1px solid var(--gray);
  border-bottom: 1px solid var(--gray);
  padding: 5rem 3rem;
}
.dm-approach-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}
.dm-approach-points {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-top: 2rem;
}
.dm-approach-point {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.ap-icon {
  width: 40px;
  height: 40px;
  background: var(--white);
  border: 1px solid var(--gray);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.ap-title {
  font-family: var(--heading-font);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 0.3rem;
}
.ap-desc {
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* Results Card */
.dm-results-card {
  background: var(--black);
  border-radius: 14px;
  padding: 2rem;
}
.dm-results-label {
  font-family: var(--heading-font);
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--orange);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 1.5rem;
}
.dm-results-item {
  display: flex;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid #1e1e1e;
  align-items: flex-start;
}
.dm-results-item:last-child { border-bottom: none; }
.dm-results-icon {
  font-size: 1.3rem;
  flex-shrink: 0;
  width: 36px;
  text-align: center;
}
.dm-results-stat {
  font-family: var(--heading-font);
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--white);
}
.dm-results-sub {
  font-size: 0.78rem;
  color: #aaa;
  margin-bottom: 0.1rem;
}
.dm-results-client {
  font-size: 0.68rem;
  color: #666;
}

/* Channels Section */
.dm-channels {
  padding: 5rem 3rem;
}
.dm-channels-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.dm-channels-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 3rem;
}
.dm-channel-card {
  background: var(--off-white);
  border: 1px solid var(--gray);
  border-radius: 10px;
  padding: 1.8rem;
  text-align: center;
  transition: border-color 0.2s;
}
.dm-channel-card:hover { border-color: var(--orange); }
.dm-channel-icon {
  font-size: 1.8rem;
  margin-bottom: 0.8rem;
}
.dm-channel-name {
  font-family: var(--heading-font);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 0.3rem;
}
.dm-channel-specs {
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* Responsive */
@media (max-width: 900px) {
  .dm-services-grid { grid-template-columns: 1fr; }
  .dm-approach-inner { grid-template-columns: 1fr; gap: 3rem; }
  .dm-channels-grid { grid-template-columns: repeat(2, 1fr); }
  .dm-hero-stats { gap: 1.5rem; }
}
@media (max-width: 600px) {
  .dm-channels-grid { grid-template-columns: 1fr 1fr; }
  .dm-hero { padding: 3rem 1.5rem 0; }
  .dm-services-section, .dm-approach, .dm-channels { padding: 3rem 1.5rem; }
  .dm-service-card { padding: 1.5rem; }
}

/* ============================================
   MARKETPLACE PAGE STYLES
   ============================================ */

/* Hero */
.mp-hero {
  background: var(--black);
  padding: 5rem 3rem 0;
  text-align: center;
}
.mp-hero-inner {
  max-width: 800px;
  margin: 0 auto 3rem;
}
.mp-hero h1 {
  font-family: var(--heading-font);
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--white);
  margin-bottom: 1.2rem;
}
.mp-hero h1 em { font-style: normal; color: var(--orange); }
.mp-hero-sub {
  color: #aaa;
  font-size: 0.95rem;
  line-height: 1.75;
  font-weight: 300;
  max-width: 600px;
  margin: 0 auto 2rem;
}
.mp-hero-sub strong { color: var(--orange); font-weight: 600; }

.mp-hero-stats {
  display: flex;
  justify-content: center;
  gap: 3rem;
  padding: 2.5rem 2rem;
  background: #111;
  border-top: 1px solid #1e1e1e;
  flex-wrap: wrap;
}
.mp-stat { text-align: center; }
.mp-stat-num {
  font-family: var(--heading-font);
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--orange);
  margin-bottom: 0.2rem;
}
.mp-stat-label { font-size: 0.75rem; color: #888; }

/* Problem / Solution */
.mp-problem {
  padding: 5rem 3rem;
  background: var(--off-white);
  border-bottom: 1px solid var(--gray);
}
.mp-problem-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.mp-solution-card {
  background: var(--white);
  border: 1px solid var(--maroon);
  border-left: 4px solid var(--maroon);
  border-radius: 12px;
  padding: 2rem;
}
.mp-solution-label {
  font-family: var(--heading-font);
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--maroon);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1.2rem;
}
.mp-solution-list {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}
.mp-solution-item {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.83rem;
  color: var(--text-dark);
  line-height: 1.5;
}
.mp-solution-check { color: var(--maroon); font-weight: 700; flex-shrink: 0; margin-top: 1px; }
.mp-solution-item strong { color: var(--black); }

/* Detailed Services */
.mp-services-detailed {
  padding: 5rem 3rem;
}
.mp-services-detailed-inner {
  max-width: 1000px;
  margin: 0 auto;
}
.mp-service-detailed {
  background: var(--off-white);
  border: 1px solid var(--gray);
  border-radius: 16px;
  padding: 2.5rem;
  margin-top: 2rem;
  transition: border-color 0.25s;
}
.mp-service-detailed:hover { border-color: var(--maroon); }
.mp-service-header {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  margin-bottom: 1.5rem;
}
.mp-service-icon-large {
  font-size: 2.4rem;
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--white);
  border: 1px solid var(--gray);
  border-radius: 12px;
  flex-shrink: 0;
}
.mp-service-num {
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--maroon);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  display: block;
  margin-bottom: 0.3rem;
}
.mp-service-title {
  font-family: var(--heading-font);
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--black);
}
.mp-service-body { padding-left: 0; }
.mp-service-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}
.mp-feature-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.6rem;
  margin-bottom: 1.5rem;
}
.mp-feature-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  color: var(--text-dark);
}
.mp-feature-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--maroon);
  flex-shrink: 0;
}
.mp-service-cta {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--maroon);
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  transition: gap 0.2s;
}
.mp-service-cta:hover { gap: 0.6rem; }

/* Platforms Grid */
.mp-platforms {
  background: var(--black);
  padding: 5rem 3rem;
}
.mp-platforms-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.mp-platforms .section-label { color: var(--orange); }
.mp-platforms .section-title { color: var(--white); }
.mp-platforms .section-sub { color: #aaa; max-width: 600px; margin-bottom: 3rem; }
.mp-platforms .section-title em { color: var(--orange); font-style: normal; }

.mp-platforms-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
}
.mp-platform-card {
  background: #111;
  border: 1px solid #1e1e1e;
  border-radius: 12px;
  padding: 1.8rem;
  text-align: center;
  transition: border-color 0.25s, transform 0.25s;
}
.mp-platform-card:hover {
  border-color: var(--orange);
  transform: translateY(-2px);
}
.mp-platform-icon { font-size: 2rem; margin-bottom: 0.8rem; }
.mp-platform-name {
  font-family: var(--heading-font);
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.5rem;
}
.mp-platform-desc {
  font-size: 0.78rem;
  color: #999;
  line-height: 1.55;
  margin-bottom: 0.8rem;
}
.mp-platform-meta {
  font-size: 0.7rem;
  color: #666;
}
.mp-platform-meta strong { color: #aaa; }

/* Process */
.mp-process {
  padding: 5rem 3rem;
  background: var(--off-white);
  border-top: 1px solid var(--gray);
}
.mp-process-inner {
  max-width: 900px;
  margin: 0 auto;
}
.mp-process-steps {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-top: 3rem;
}
.mp-process-step {
  display: flex;
  gap: 2rem;
  align-items: flex-start;
}
.mp-step-num {
  font-family: var(--heading-font);
  font-size: 2rem;
  font-weight: 800;
  color: var(--maroon);
  line-height: 1;
  flex-shrink: 0;
  min-width: 50px;
}
.mp-step-title {
  font-family: var(--heading-font);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 0.4rem;
}
.mp-step-desc {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 0.8rem;
}
.mp-step-tags {
  display: flex;
  gap: 0.4rem;
  flex-wrap: wrap;
}
.mp-step-tags span {
  font-size: 0.68rem;
  padding: 0.25rem 0.65rem;
  background: var(--white);
  border: 1px solid var(--gray);
  border-radius: 50px;
  color: var(--text-muted);
}

/* Results */
.mp-results {
  padding: 5rem 3rem;
}
.mp-results-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.mp-results-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}
.mp-result-card {
  background: var(--off-white);
  border: 1px solid var(--gray);
  border-radius: 14px;
  padding: 2rem;
}
.mp-result-platform {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--maroon);
  margin-bottom: 1rem;
}
.mp-result-stat {
  font-family: var(--heading-font);
  font-size: 2rem;
  font-weight: 800;
  color: var(--black);
  margin-bottom: 0.2rem;
}
.mp-result-label {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 1rem;
}
.mp-result-story {
  font-size: 0.82rem;
  color: var(--text-dark);
  line-height: 1.6;
  font-style: italic;
  margin-bottom: 1.2rem;
  padding-left: 0.8rem;
  border-left: 2px solid var(--orange-light);
}
.mp-result-client {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.75rem;
  color: var(--text-muted);
}
.mp-result-avatar {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.65rem;
  font-weight: 700;
  color: var(--white);
  flex-shrink: 0;
}

/* Comparison Table */
.mp-comparison {
  background: var(--off-white);
  border-top: 1px solid var(--gray);
  border-bottom: 1px solid var(--gray);
  padding: 5rem 3rem;
}
.mp-comparison-inner {
  max-width: 1000px;
  margin: 0 auto;
}
.mp-comparison-table-wrap {
  overflow-x: auto;
  margin-top: 3rem;
}
.mp-comparison-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.82rem;
}
.mp-comparison-table thead th {
  text-align: left;
  padding: 1rem;
  background: var(--black);
  color: var(--white);
  font-family: var(--heading-font);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.mp-comparison-table thead th:first-child { border-radius: 8px 0 0 0; }
.mp-comparison-table thead th:last-child { border-radius: 0 8px 0 0; }
.mp-col-auj { color: var(--orange) !important; }
.mp-comparison-table td {
  padding: 0.9rem 1rem;
  border-bottom: 1px solid var(--gray);
  color: var(--text-dark);
  background: var(--white);
}
.mp-comparison-table tr:last-child td:first-child { border-radius: 0 0 0 8px; }
.mp-comparison-table tr:last-child td:last-child { border-radius: 0 0 8px 0; }
.mp-comparison-table .mp-col-auj { background: #fffaf5; }
.mp-comparison-table .mp-col-auj strong { color: var(--maroon); }

/* Responsive */
@media (max-width: 900px) {
  .mp-problem-inner { grid-template-columns: 1fr; gap: 2rem; }
  .mp-platforms-grid { grid-template-columns: repeat(2, 1fr); }
  .mp-results-grid { grid-template-columns: 1fr; }
  .mp-feature-grid { grid-template-columns: 1fr; }
  .mp-process-step { flex-direction: column; gap: 0.5rem; }
  .mp-hero-stats { gap: 1.5rem; }
}
@media (max-width: 600px) {
  .mp-platforms-grid { grid-template-columns: 1fr; }
  .mp-hero { padding: 3rem 1.5rem 0; }
  .mp-problem, .mp-services-detailed, .mp-process, .mp-results, .mp-comparison { padding: 3rem 1.5rem; }
  .mp-service-detailed { padding: 1.5rem; }
  .mp-comparison-table { font-size: 0.7rem; }
  .mp-comparison-table td, .mp-comparison-table thead th { padding: 0.6rem; }
}

/* ============================================
   AUTOMATION PAGE STYLES
   ============================================ */

/* Hero */
.auto-hero {
  background: var(--black);
  padding: 5rem 3rem 0;
  text-align: center;
}
.auto-hero-inner {
  max-width: 750px;
  margin: 0 auto 3rem;
}
.auto-hero h1 {
  font-family: var(--heading-font);
  font-size: clamp(2.6rem, 5vw, 4rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--white);
  margin-bottom: 1.2rem;
}
.auto-hero h1 em { font-style: normal; color: var(--orange); }
.auto-hero-sub {
  color: #aaa;
  font-size: 0.95rem;
  line-height: 1.75;
  font-weight: 300;
  max-width: 560px;
  margin: 0 auto 2rem;
}
.auto-hero-sub strong { color: var(--orange); font-weight: 600; }

.auto-hero-stats {
  display: flex;
  justify-content: center;
  gap: 3rem;
  padding: 2.5rem 2rem;
  background: #111;
  border-top: 1px solid #1e1e1e;
  flex-wrap: wrap;
}
.auto-stat { text-align: center; }
.auto-stat-num {
  font-family: var(--heading-font);
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--orange);
  margin-bottom: 0.2rem;
}
.auto-stat-label { font-size: 0.75rem; color: #888; }

/* Pain Points */
.auto-pain {
  padding: 5rem 3rem;
  background: var(--off-white);
  border-bottom: 1px solid var(--gray);
}
.auto-pain-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
  align-items: start;
}
.auto-pain-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.auto-pain-item {
  background: var(--white);
  border: 1px solid var(--gray);
  border-radius: 10px;
  padding: 1.4rem;
}
.auto-pain-icon { font-size: 1.5rem; margin-bottom: 0.6rem; }
.auto-pain-item strong {
  display: block;
  font-family: var(--heading-font);
  font-size: 0.85rem;
  color: var(--black);
  margin-bottom: 0.3rem;
}
.auto-pain-item p {
  font-size: 0.75rem;
  color: var(--text-muted);
  line-height: 1.55;
}

/* Services */
.auto-services {
  padding: 5rem 3rem;
}
.auto-services-inner {
  max-width: 1000px;
  margin: 0 auto;
}
.auto-service-detailed {
  background: var(--off-white);
  border: 1px solid var(--gray);
  border-radius: 16px;
  padding: 2.5rem;
  margin-top: 2rem;
  transition: border-color 0.25s;
}
.auto-service-detailed:hover { border-color: var(--orange); }
.auto-service-header {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  margin-bottom: 1.5rem;
}
.auto-service-icon-large {
  font-size: 2.4rem;
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--white);
  border: 1px solid var(--gray);
  border-radius: 12px;
  flex-shrink: 0;
}
.auto-service-num {
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--orange);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  display: block;
  margin-bottom: 0.3rem;
}
.auto-service-title {
  font-family: var(--heading-font);
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--black);
}
.auto-service-body { padding-left: 0; }
.auto-service-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}
.auto-feature-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.6rem;
  margin-bottom: 1.5rem;
}
.auto-feature-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  color: var(--text-dark);
}
.auto-feature-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--orange);
  flex-shrink: 0;
}
.auto-service-cta {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--orange);
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  transition: gap 0.2s;
}
.auto-service-cta:hover { gap: 0.6rem; }

/* Flow / Process */
.auto-flow {
  background: var(--black);
  padding: 5rem 3rem;
}
.auto-flow-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.auto-flow .section-label { color: var(--orange); }
.auto-flow .section-title { color: var(--white); }
.auto-flow .section-title em { color: var(--orange); font-style: normal; }

.auto-flow-steps {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-top: 3rem;
  overflow-x: auto;
}
.auto-flow-step {
  background: #111;
  border: 1px solid #1e1e1e;
  border-radius: 14px;
  padding: 2rem;
  text-align: center;
  flex: 1;
  min-width: 220px;
  position: relative;
}
.auto-flow-num {
  font-family: var(--heading-font);
  font-size: 0.65rem;
  font-weight: 700;
  color: var(--orange);
  letter-spacing: 0.1em;
  margin-bottom: 0.8rem;
}
.auto-flow-icon-wrap {
  font-size: 2rem;
  margin-bottom: 1rem;
}
.auto-flow-title {
  font-family: var(--heading-font);
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.6rem;
}
.auto-flow-desc {
  font-size: 0.75rem;
  color: #999;
  line-height: 1.6;
  margin-bottom: 1rem;
}
.auto-flow-tag {
  font-size: 0.65rem;
  color: var(--orange);
  background: rgba(245,166,35,0.1);
  display: inline-block;
  padding: 0.25rem 0.7rem;
  border-radius: 50px;
}
.auto-flow-arrow {
  font-size: 1.5rem;
  color: #333;
  padding-top: 3rem;
  flex-shrink: 0;
}

/* Scenarios */
.auto-scenarios {
  padding: 5rem 3rem;
  background: var(--off-white);
  border-top: 1px solid var(--gray);
}
.auto-scenarios-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.auto-scenarios-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}
.auto-scenario-card {
  background: var(--white);
  border: 1px solid var(--gray);
  border-radius: 14px;
  padding: 2rem;
  transition: border-color 0.25s;
}
.auto-scenario-card:hover { border-color: var(--orange); }
.auto-scenario-badge {
  font-size: 0.65rem;
  font-weight: 700;
  color: var(--orange);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.auto-scenario-title {
  font-family: var(--heading-font);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 0.8rem;
}
.auto-scenario-desc {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 1rem;
}
.auto-scenario-desc strong { color: var(--text-dark); }
.auto-scenario-stats {
  display: flex;
  gap: 1.5rem;
  font-size: 0.7rem;
  color: var(--orange);
  font-weight: 500;
}

/* Tools */
.auto-tools {
  padding: 5rem 3rem;
}
.auto-tools-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.auto-tools-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-top: 3rem;
}
.auto-tool-card {
  display: flex;
  gap: 1rem;
  padding: 1.5rem;
  background: var(--off-white);
  border: 1px solid var(--gray);
  border-radius: 12px;
  transition: border-color 0.2s;
  align-items: flex-start;
}
.auto-tool-card:hover { border-color: var(--orange); }
.auto-tool-icon { font-size: 1.8rem; flex-shrink: 0; width: 40px; text-align: center; }
.auto-tool-name {
  font-family: var(--heading-font);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 0.15rem;
}
.auto-tool-cat {
  font-size: 0.65rem;
  color: var(--orange);
  font-weight: 600;
  margin-bottom: 0.3rem;
}
.auto-tool-desc {
  font-size: 0.73rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* ROI */
.auto-roi {
  background: var(--black);
  padding: 5rem 3rem;
}
.auto-roi-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.auto-roi .section-label { color: var(--orange); }
.auto-roi .section-title { color: var(--white); }
.auto-roi .section-title em { color: var(--orange); font-style: normal; }
.auto-roi .section-sub { color: #aaa; }
.auto-roi-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.auto-roi-card {
  background: #111;
  border: 1px solid #1e1e1e;
  border-radius: 12px;
  padding: 1.5rem;
}
.auto-roi-num {
  font-family: var(--heading-font);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--orange);
  margin-bottom: 0.2rem;
}
.auto-roi-label {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 0.4rem;
}
.auto-roi-desc {
  font-size: 0.7rem;
  color: #888;
  line-height: 1.5;
}

/* Responsive */
@media (max-width: 900px) {
  .auto-pain-inner { grid-template-columns: 1fr; gap: 2rem; }
  .auto-pain-grid { grid-template-columns: 1fr 1fr; }
  .auto-roi-inner { grid-template-columns: 1fr; gap: 2rem; }
  .auto-roi-grid { grid-template-columns: 1fr 1fr; }
  .auto-scenarios-grid { grid-template-columns: 1fr; }
  .auto-flow-steps { flex-wrap: wrap; }
  .auto-flow-arrow { display: none; }
  .auto-flow-step { min-width: 100%; }
  .auto-tools-grid { grid-template-columns: 1fr; }
  .auto-feature-grid { grid-template-columns: 1fr; }
  .auto-hero-stats { gap: 1.5rem; }
}
@media (max-width: 600px) {
  .auto-pain-grid { grid-template-columns: 1fr; }
  .auto-roi-grid { grid-template-columns: 1fr; }
  .auto-hero { padding: 3rem 1.5rem 0; }
  .auto-pain, .auto-services, .auto-flow, .auto-scenarios, .auto-tools, .auto-roi { padding: 3rem 1.5rem; }
  .auto-service-detailed { padding: 1.5rem; }
  .auto-scenario-stats { flex-direction: column; gap: 0.3rem; }
}
/* ============================================
   ABOUT PAGE STYLES
   ============================================ */

/* Hero */
.about-hero {
  background: var(--black);
  padding: 5rem 3rem 0;
  text-align: center;
}
.about-hero-inner {
  max-width: 780px;
  margin: 0 auto 3rem;
}
.about-hero h1 {
  font-family: var(--heading-font);
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--white);
  margin-bottom: 1.2rem;
}
.about-hero h1 em { font-style: normal; color: var(--orange); }
.about-hero-sub {
  color: #aaa;
  font-size: 0.95rem;
  line-height: 1.75;
  font-weight: 300;
  max-width: 600px;
  margin: 0 auto;
}
.about-hero-sub strong { color: var(--orange); font-weight: 600; }

.about-hero-stats {
  display: flex;
  justify-content: center;
  gap: 3rem;
  padding: 2.5rem 2rem;
  background: #111;
  border-top: 1px solid #1e1e1e;
  flex-wrap: wrap;
}
.about-stat { text-align: center; }
.about-stat-num {
  font-family: var(--heading-font);
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--orange);
  margin-bottom: 0.2rem;
}
.about-stat-label { font-size: 0.75rem; color: #888; }

/* Story */
.about-story {
  padding: 5rem 3rem;
}
.about-story-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
  align-items: start;
}
.about-story-text {
  font-size: 0.9rem;
  color: var(--text-dark);
  line-height: 1.75;
  margin-bottom: 1rem;
}
.about-story-text strong { color: var(--black); }

/* Pillars */
.about-pillars {
  background: var(--off-white);
  border-top: 1px solid var(--gray);
  border-bottom: 1px solid var(--gray);
  padding: 5rem 3rem;
}
.about-pillars-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.about-pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.about-pillar-card {
  background: var(--white);
  border: 1px solid var(--gray);
  border-radius: 14px;
  padding: 2rem;
  transition: border-color 0.25s, transform 0.25s;
  display: flex;
  flex-direction: column;
}
.about-pillar-card:hover {
  border-color: var(--orange);
  transform: translateY(-2px);
}
.about-pillar-icon { font-size: 2.2rem; margin-bottom: 1rem; }
.about-pillar-title {
  font-family: var(--heading-font);
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--black);
  margin-bottom: 0.6rem;
}
.about-pillar-desc {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 1rem;
}
.about-pillar-list {
  list-style: none;
  padding: 0;
  margin-bottom: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}
.about-pillar-list li {
  font-size: 0.78rem;
  color: var(--text-dark);
  padding-left: 1rem;
  position: relative;
}
.about-pillar-list li::before {
  content: '•';
  color: var(--orange);
  position: absolute;
  left: 0;
  font-weight: 700;
}
.about-pillar-link {
  margin-top: auto;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--orange);
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  transition: gap 0.2s;
}
.about-pillar-link:hover { gap: 0.6rem; }

/* Values */
.about-values {
  padding: 5rem 3rem;
}
.about-values-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.about-values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.about-value-card {
  background: var(--off-white);
  border: 1px solid var(--gray);
  border-radius: 12px;
  padding: 2rem;
  text-align: center;
  transition: border-color 0.25s;
}
.about-value-card:hover { border-color: var(--orange); }
.about-value-icon { font-size: 2rem; margin-bottom: 1rem; }
.about-value-title {
  font-family: var(--heading-font);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 0.5rem;
}
.about-value-desc {
  font-size: 0.78rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* Timeline */
.about-timeline {
  background: var(--black);
  padding: 5rem 3rem;
}
.about-timeline-inner {
  max-width: 800px;
  margin: 0 auto;
}
.about-timeline .section-label { color: var(--orange); }
.about-timeline .section-title { color: var(--white); }

.about-timeline-track {
  position: relative;
  padding-left: 2rem;
}
.about-timeline-track::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 2px;
  background: #1e1e1e;
}
.about-timeline-item {
  position: relative;
  padding-bottom: 2.5rem;
}
.about-timeline-item:last-child { padding-bottom: 0; }
.about-timeline-year {
  font-family: var(--heading-font);
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--orange);
  letter-spacing: 0.1em;
  margin-bottom: 0.3rem;
}
.about-timeline-dot {
  position: absolute;
  left: -2.45rem;
  top: 0.35rem;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--orange);
  border: 2px solid var(--black);
}
.about-timeline-title {
  font-family: var(--heading-font);
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.3rem;
}
.about-timeline-desc {
  font-size: 0.8rem;
  color: #888;
  line-height: 1.6;
}

/* Team */
.about-team {
  padding: 5rem 3rem;
}
.about-team-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.about-team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
.about-team-card {
  background: var(--off-white);
  border: 1px solid var(--gray);
  border-radius: 14px;
  padding: 2rem;
  text-align: center;
  transition: border-color 0.25s;
}
.about-team-card:hover { border-color: var(--orange); }
.about-team-avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--heading-font);
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--white);
  margin: 0 auto 1rem;
}
.about-team-name {
  font-family: var(--heading-font);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 0.2rem;
}
.about-team-role {
  font-size: 0.72rem;
  color: var(--orange);
  font-weight: 600;
  margin-bottom: 0.8rem;
}
.about-team-bio {
  font-size: 0.75rem;
  color: var(--text-muted);
  line-height: 1.55;
  margin-bottom: 1rem;
}
.about-team-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.3rem;
  justify-content: center;
  margin-bottom: 0.8rem;
}
.about-team-tag {
  font-size: 0.62rem;
  padding: 0.2rem 0.5rem;
  background: var(--white);
  border: 1px solid var(--gray);
  border-radius: 50px;
  color: var(--text-muted);
}
.about-team-linkedin {
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--orange);
}

/* Clients */
.about-clients {
  background: var(--off-white);
  border-top: 1px solid var(--gray);
  border-bottom: 1px solid var(--gray);
  padding: 5rem 3rem;
}
.about-clients-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.about-clients .section-title em { color: var(--orange); font-style: normal; }
.about-clients-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.about-client-type {
  background: var(--white);
  border: 1px solid var(--gray);
  border-radius: 14px;
  padding: 2rem;
  text-align: center;
}
.about-client-icon { font-size: 2rem; margin-bottom: 0.8rem; }
.about-client-title {
  font-family: var(--heading-font);
  font-size: 1rem;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 0.5rem;
}
.about-client-desc {
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* Location */
.about-location {
  padding: 5rem 3rem;
}
.about-location-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: 4rem;
  align-items: center;
}
.about-location .section-title em { color: var(--orange); font-style: normal; }
.about-location-points {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin-top: 1.5rem;
}
.about-location-point {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.82rem;
  color: var(--text-dark);
}
.about-location-check { color: var(--orange); font-weight: 700; }
.about-location-card {
  background: var(--black);
  border-radius: 14px;
  padding: 2.5rem;
  text-align: center;
}
.about-location-icon { font-size: 2.5rem; margin-bottom: 1rem; }
.about-location-label {
  font-family: var(--heading-font);
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 0.3rem;
}
.about-location-value {
  font-size: 0.8rem;
  color: #999;
  margin-bottom: 1.5rem;
}
.about-location-cta {
  display: inline-block;
  background: var(--orange);
  color: var(--white);
  padding: 0.7rem 1.8rem;
  border-radius: 8px;
  font-size: 0.85rem;
  font-weight: 600;
  transition: background 0.2s;
}
.about-location-cta:hover { background: var(--orange-dark); }

/* Responsive */
@media (max-width: 900px) {
  .about-story-inner { grid-template-columns: 1fr; gap: 2rem; }
  .about-pillars-grid { grid-template-columns: 1fr; }
  .about-values-grid { grid-template-columns: repeat(2, 1fr); }
  .about-team-grid { grid-template-columns: repeat(2, 1fr); }
  .about-clients-grid { grid-template-columns: 1fr; }
  .about-location-inner { grid-template-columns: 1fr; gap: 2rem; }
  .about-hero-stats { gap: 1.5rem; }
}
@media (max-width: 600px) {
  .about-values-grid { grid-template-columns: 1fr; }
  .about-team-grid { grid-template-columns: 1fr; }
  .about-hero { padding: 3rem 1.5rem 0; }
  .about-story, .about-pillars, .about-values, .about-timeline, .about-team, .about-clients, .about-location { padding: 3rem 1.5rem; }
}