
/* ============================================
   MAWINGU HR SOLUTIONS
   Clarity in People. Structure in Growth.
   ============================================ */

/* --- Design Tokens --- */
:root {
  --color-navy: #1B3A6B;
  --color-navy-deep: #0F2444;
  --color-blue: #2E6BC6;
  --color-blue-light: #4A8FE7;
  --color-sky: #7CB8F0;
  --color-cloud: #F0F4F8;
  --color-cloud-warm: #F7F5F2;
  --color-white: #FAFBFD;
  --color-gold: #D4943A;
  --color-gold-light: #E8B86D;
  --color-coral: #C0392B;
  --color-text: #1A1A2E;
  --color-text-secondary: #4A5568;
  --color-text-light: #718096;
  --color-border: #E2E8F0;
  --color-whatsapp: #25D366;

  --font-body: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-heading: 'Playfair Display', Georgia, 'Times New Roman', serif;

  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2.5rem;
  --space-xl: 4rem;
  --space-2xl: 6rem;
  --space-3xl: 8rem;

  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 32px;

  --shadow-soft: 0 2px 15px rgba(27, 58, 107, 0.06);
  --shadow-card: 0 4px 25px rgba(27, 58, 107, 0.08);
  --shadow-elevated: 0 12px 40px rgba(27, 58, 107, 0.12);

  --transition-smooth: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --transition-bounce: 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
  --transition-ease: 0.3s ease;
}

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  font-size: 18px;
  line-height: 1.7;
  color: var(--color-text);
  background-color: var(--color-white);
  overflow-x: hidden;
}

.page-corporate {
  background-color: var(--color-cloud-warm);
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
address { font-style: normal; }

::selection {
  background-color: var(--color-blue);
  color: white;
}


/* --- Container --- */
.container {
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 clamp(1.5rem, 5vw, 6vw);
}

/* --- Typography --- */
h1, h2, h3, h4 {
  font-family: var(--font-heading);
  color: var(--color-navy);
  line-height: 1.2;
  font-weight: 600;
}

h1 { font-size: clamp(2.6rem, 5.5vw, 4rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.3rem, 2.2vw, 1.7rem); }
h4 { font-size: 1.2rem; font-family: var(--font-body); font-weight: 600; }

.text-accent {
  color: var(--color-blue);
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 34px;
  border-radius: 50px;
  font-family: var(--font-body);
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  transition: all var(--transition-smooth);
  cursor: pointer;
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.6s ease, height 0.6s ease;
  z-index: 0;
}

.btn span,
.btn svg {
  position: relative;
  z-index: 1;
}

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

.btn-primary::before {
  background: var(--color-blue);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(27, 58, 107, 0.3);
}

.btn-primary:hover::before {
  width: 400px;
  height: 400px;
}

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

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

.btn-outline-light {
  background: transparent;
  color: white;
  border-color: rgba(255,255,255,0.5);
}

.btn-outline-light:hover {
  background: white;
  color: var(--color-navy);
  transform: translateY(-2px);
}

.btn-lg {
  padding: 16px 38px;
  font-size: 1rem;
}

/* --- Navigation --- */
.main-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 18px 0;
  transition: all var(--transition-smooth);
  background: transparent;
}

.main-nav.scrolled {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 12px 0;
  box-shadow: var(--shadow-soft);
}

.nav-container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 clamp(1.5rem, 4vw, 4rem);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 1001;
}

.logo-img {
  width: 60px;
  height: 48px;
  object-fit: contain;
}

.logo-text {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.08em;
  color: var(--color-navy);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-links a {
  padding: 10px 20px;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 500;
  color: var(--color-text-secondary);
  transition: all var(--transition-ease);
  position: relative;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--color-navy);
  background: rgba(27, 58, 107, 0.06);
}

.nav-links a.active::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--color-blue);
}

.nav-cta {
  background: var(--color-navy) !important;
  color: white !important;
  padding: 10px 24px !important;
  border-radius: 50px !important;
}

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

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 1001;
}

.hamburger-line {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-navy);
  border-radius: 2px;
  transition: all var(--transition-ease);
  transform-origin: center;
}

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

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

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

/* --- Premium Dark Hero Section --- */
.hero-dark {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
  padding: 140px 0 80px;
  overflow: hidden;
  background-color: #080C16;
  color: white;
}

.hero-glow {
  position: absolute;
  top: -10%;
  left: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(46, 107, 198, 0.15) 0%, transparent 70%);
  filter: blur(80px);
  pointer-events: none;
}

.hero-glow-alt {
  position: absolute;
  bottom: -20%;
  right: -10%;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(212, 148, 58, 0.08) 0%, transparent 70%);
  filter: blur(100px);
  pointer-events: none;
}

.hero-content {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: var(--space-xl);
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  margin-bottom: var(--space-md);
  color: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
}

.badge-dot {
  width: 8px;
  height: 8px;
  background: var(--color-gold);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--color-gold);
}

.hero-title {
  font-size: clamp(3rem, 6vw, 4.5rem);
  line-height: 1.1;
  margin-bottom: var(--space-md);
  letter-spacing: -0.02em;
}

.hero-title span {
  display: block;
}

.text-gradient {
  background: linear-gradient(to right, #ffffff, #a0aec0);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.text-gradient-alt {
  background: linear-gradient(135deg, var(--color-gold-light), #e2a856);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-desc-dark {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: var(--space-lg);
  max-width: 580px;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: var(--space-xl);
  justify-content: flex-start;
}

.btn-premium {
  background: linear-gradient(135deg, var(--color-blue), #1e5ab3);
  color: white;
  border: none;
  box-shadow: 0 10px 30px rgba(46, 107, 198, 0.3), inset 0 1px 0 rgba(255,255,255,0.2);
}

.btn-premium:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 35px rgba(46, 107, 198, 0.4), inset 0 1px 0 rgba(255,255,255,0.2);
  color: white;
}

.btn-glass {
  background: rgba(255, 255, 255, 0.05);
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
}

.btn-glass:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
  color: white;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: var(--space-md);
}

.stat-item {
  display: flex;
  flex-direction: column;
}

.stat-num {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 600;
  color: white;
  line-height: 1.2;
}

.stat-label {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
}

.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.glass-orb {
  position: absolute;
  width: 300px;
  height: 300px;
  background: linear-gradient(135deg, var(--color-blue), var(--color-gold));
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.5;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: pulseOrb 8s ease-in-out infinite alternate;
}

@keyframes pulseOrb {
  0% { transform: translate(-50%, -50%) scale(0.9); opacity: 0.4; }
  100% { transform: translate(-50%, -50%) scale(1.1); opacity: 0.6; }
}

.hero-glass-card {
  position: relative;
  width: min(480px, 100%);
  aspect-ratio: 4 / 5;
  border-radius: var(--radius-xl);
  padding: 1px; /* for gradient border */
  background: linear-gradient(135deg, rgba(255,255,255,0.2) 0%, rgba(255,255,255,0.05) 100%);
  box-shadow: 0 30px 60px rgba(0,0,0,0.4);
  transform: rotate(2deg);
  transition: transform 0.5s ease;
}

.hero-glass-card:hover {
  transform: rotate(0deg) translateY(-10px);
}

.glass-inner {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: calc(var(--radius-xl) - 1px);
  overflow: hidden;
  background: #111827;
}

.hero-photo-premium {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  filter: saturate(1.1) contrast(1.1);
  opacity: 0.85; /* Blend with dark background */
}

/* Logo-only hero card */
.hero-logo-card {
  display: flex;
  align-items: center;
  justify-content: center;
  background: radial-gradient(ellipse at center, rgba(46,107,198,0.18) 0%, #111827 70%);
}

.hero-logo-main {
  width: 70%;
  max-width: 260px;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 0 40px rgba(46,107,198,0.5));
  animation: logoFloat 6s ease-in-out infinite;
}

@keyframes logoFloat {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-12px); }
}

/* Logo in reality section */
.reality-logo {
  height: 160px;
  object-fit: contain;
  padding: 24px;
  background: white;
}

.hero-brand-tag {
  position: absolute;
  bottom: 24px;
  left: 24px;
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(10, 15, 29, 0.6);
  backdrop-filter: blur(12px);
  padding: 10px 20px;
  border-radius: 50px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.brand-logo-small {
  width: 24px;
  height: auto;
  filter: brightness(0) invert(1);
}

.brand-text {
  font-size: 0.9rem;
  font-weight: 600;
  color: white;
  letter-spacing: 0.05em;
}

/* Fix header for dark hero */
.page-home .main-nav:not(.scrolled) .logo-text {
  color: white;
}
.page-home .main-nav:not(.scrolled) .logo-img {
  filter: brightness(0) invert(1);
}
.page-home .main-nav:not(.scrolled) .nav-links a {
  color: rgba(255,255,255,0.8);
}
.page-home .main-nav:not(.scrolled) .nav-links a:hover,
.page-home .main-nav:not(.scrolled) .nav-links a.active {
  color: white;
  background: rgba(255, 255, 255, 0.1);
}
.page-home .main-nav:not(.scrolled) .nav-links a.active::after {
  background: var(--color-gold);
}




.hero-scroll-hint {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  font-size: 0.75rem;
  color: var(--color-text-light);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--color-blue), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; transform: scaleY(0.6); }
  50% { opacity: 1; transform: scaleY(1); }
}

/* --- Section Base --- */
.section {
  padding: var(--space-3xl) 0;
  position: relative;
}

.section-label {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-blue);
  margin-bottom: var(--space-sm);
  position: relative;
  padding-left: 40px;
}

.section-label::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  width: 28px;
  height: 2px;
  background: var(--color-gold);
  transform: translateY(-50%);
}

.section-title {
  margin-bottom: var(--space-md);
}

.section-subtitle {
  font-size: 1.3rem;
  color: var(--color-text-secondary);
}

.section-intro {
  font-size: 1.2rem;
  color: var(--color-text-secondary);
  max-width: 700px;
  margin-bottom: var(--space-xl);
}

/* --- Reality Section --- */
.section-reality {
  background: var(--color-cloud);
}

.split-layout {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: var(--space-xl);
  align-items: start;
}

.reality-card {
  background: white;
  padding: var(--space-lg);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  margin-bottom: var(--space-lg);
}

.reality-visual {
  margin-top: var(--space-lg);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  background: var(--color-cloud);
}

.reality-photo {
  width: 100%;
  height: 240px;
  object-fit: cover;
  object-position: var(--img-position, center);
  display: block;
}

.reality-card h3 {
  margin-bottom: var(--space-md);
  font-size: 1.1rem;
  color: var(--color-text-secondary);
  font-family: var(--font-body);
}

.reality-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px 0;
  color: var(--color-text-secondary);
  font-size: 1.05rem;
  border-bottom: 1px solid var(--color-border);
}

.reality-list li:last-child {
  border-bottom: none;
}

.reality-icon {
  flex-shrink: 0;
  margin-top: 2px;
}

.reality-resolution {
  background: var(--color-navy);
  color: white;
  padding: var(--space-lg);
  border-radius: var(--radius-lg);
  position: relative;
}

.reality-resolution::before {
  content: '';
  position: absolute;
  top: -12px;
  left: 40px;
  width: 24px;
  height: 24px;
  background: var(--color-navy);
  transform: rotate(45deg);
  border-radius: 4px;
}

.reality-resolution blockquote p {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  line-height: 1.5;
  margin-bottom: var(--space-sm);
}

.resolution-text {
  color: var(--color-gold-light);
  font-weight: 600;
  font-size: 1.15rem;
}

/* --- Pillars Section --- */
.pillars-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-md);
  margin-bottom: var(--space-lg);
}

.pillar-card {
  background: white;
  padding: var(--space-lg) var(--space-md);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  transition: all var(--transition-smooth);
  border: 1px solid var(--color-border);
  position: relative;
  overflow: hidden;
}

.pillar-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--color-blue), var(--color-gold));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition-smooth);
}

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

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

.pillar-icon {
  width: 64px;
  height: 64px;
  margin-bottom: var(--space-md);
}

.pillar-card h3 {
  margin-bottom: var(--space-xs);
  font-size: 1.15rem;
}

.pillar-card p {
  color: var(--color-text-secondary);
  font-size: 1rem;
  margin-bottom: var(--space-md);
  line-height: 1.7;
}

.pillar-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-blue);
  transition: gap var(--transition-ease);
}

.pillar-link:hover {
  gap: 10px;
}

.pillars-note {
  font-size: 1.1rem;
  color: var(--color-text-secondary);
  font-style: italic;
  padding-top: var(--space-md);
  border-top: 1px solid var(--color-border);
  max-width: 700px;
  margin: 0 auto;
}

/* --- Why Mawingu Section --- */
.section-why {
  background: var(--color-cloud);
}

.why-layout {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: var(--space-xl);
  align-items: start;
}

.why-statement p {
  font-size: 1.25rem;
  color: var(--color-text-secondary);
}

.why-statement .highlight {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  color: var(--color-navy);
  font-weight: 600;
  margin-top: var(--space-xs);
}

.why-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.why-item {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px 24px;
  background: white;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-soft);
  transition: all var(--transition-smooth);
  border-left: 3px solid transparent;
}

.why-item:hover {
  border-left-color: var(--color-gold);
  transform: translateX(4px);
  box-shadow: var(--shadow-card);
}

.why-marker {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--color-blue);
  opacity: 0.4;
  flex-shrink: 0;
}

.why-item h4 {
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--color-text);
}

/* --- CTA Section --- */
.section-cta {
  background: linear-gradient(135deg, var(--color-navy-deep) 0%, var(--color-navy) 50%, var(--color-blue) 100%);
  color: white;
  padding: var(--space-3xl) 0;
  position: relative;
  overflow: hidden;
}


.cta-content {
  position: relative;
  z-index: 1;
  max-width: 650px;
  margin: 0;
}

.cta-content h2 {
  color: white;
  margin-bottom: var(--space-md);
  font-size: clamp(2rem, 4vw, 3rem);
}

.cta-content p {
  color: rgba(255,255,255,0.8);
  font-size: 1.2rem;
  margin-bottom: var(--space-lg);
  line-height: 1.8;
}

.cta-actions {
  display: flex;
  gap: 16px;
  justify-content: flex-start;
  flex-wrap: wrap;
}

.cta-actions .btn-primary {
  background: var(--color-gold);
  color: var(--color-navy-deep);
}

.cta-actions .btn-primary::before {
  background: var(--color-gold-light);
}

.cta-actions .btn-primary:hover {
  box-shadow: 0 8px 25px rgba(212, 148, 58, 0.4);
}

/* --- Page Heroes --- */
.page-hero {
  padding: 160px 0 100px;
  position: relative;
  background: linear-gradient(180deg, var(--color-cloud) 0%, var(--color-white) 100%);
}

.page-hero-title {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  margin-bottom: var(--space-md);
}

.page-hero-subtitle {
  font-size: 1.3rem;
  color: var(--color-text-secondary);
  max-width: 700px;
  margin: 0;
  line-height: 1.8;
}

.page-hero-shape {
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
}

.page-hero-shape svg {
  display: block;
  width: 100%;
  height: 80px;
}

/* --- About: Story --- */
.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: start;
  margin-bottom: var(--space-xl);
}

.story-content h2 {
  margin-bottom: var(--space-md);
}

.story-content p {
  color: var(--color-text-secondary);
  font-size: 1.15rem;
  margin-bottom: var(--space-sm);
  line-height: 1.8;
}

.pain-card {
  padding: 20px 24px;
  background: white;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-soft);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 20px;
  border-left: 3px solid var(--color-coral);
  transition: all var(--transition-smooth);
}

.pain-card:hover {
  transform: translateX(6px);
  box-shadow: var(--shadow-card);
}

.pain-number {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--color-coral);
  opacity: 0.5;
  flex-shrink: 0;
}

.pain-card p {
  color: var(--color-text-secondary);
  font-size: 1.05rem;
}

.story-resolution {
  padding: var(--space-xl) 0;
}

.story-resolution blockquote {
  font-family: var(--font-heading);
  font-size: clamp(1.4rem, 3vw, 2rem);
  color: var(--color-navy);
  font-weight: 500;
  max-width: 800px;
  margin: 0;
  padding: var(--space-lg);
  position: relative;
}

.story-resolution blockquote::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--color-blue), var(--color-gold));
  border-radius: 2px;
}

/* --- About: Leadership --- */
.section-leadership {
  background: var(--color-cloud);
}

.leaders-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-lg);
  margin-top: var(--space-lg);
}

.leader-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: var(--space-xl) var(--space-lg);
  box-shadow: var(--shadow-card);
  transition: all var(--transition-smooth);
}

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

.leader-avatar {
  margin-bottom: var(--space-md);
}

.avatar-placeholder svg {
  width: 100px;
  height: 100px;
}

.leader-photo {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  object-fit: cover;
  object-position: top;
  border: 3px solid var(--color-blue);
  box-shadow: 0 4px 15px rgba(27, 58, 107, 0.12);
}

.leader-info h3 {
  font-size: 1.4rem;
  margin-bottom: 4px;
}

.leader-role {
  color: var(--color-blue);
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: var(--space-md);
}

.leader-bio {
  color: var(--color-text-secondary);
  font-size: 1.05rem;
  margin-bottom: var(--space-md);
  line-height: 1.8;
}

.leader-expertise h4 {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-text-light);
  margin-bottom: var(--space-xs);
}

.leader-expertise ul {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: var(--space-md);
}

.leader-expertise li {
  padding: 5px 16px;
  background: var(--color-cloud);
  border-radius: 50px;
  font-size: 0.9rem;
  color: var(--color-text-secondary);
}

.leader-highlight {
  font-weight: 600;
  color: var(--color-navy);
  font-size: 1.05rem;
  padding-top: var(--space-sm);
  border-top: 1px solid var(--color-border);
}

/* --- Corporate Services --- */
.page-corporate .section {
  padding: var(--space-2xl) 0;
}

.page-corporate .page-hero {
  background: linear-gradient(180deg, #eef2f5 0%, var(--color-cloud-warm) 100%);
}

.page-corporate .section-services-detail,
.page-corporate .section-difference {
  background: var(--color-cloud-warm);
}

.page-corporate .service-block {
  padding: var(--space-lg) 0;
}

.page-corporate .service-items-grid {
  gap: var(--space-sm);
}

.page-corporate .service-item {
  background: rgba(255, 255, 255, 0.72);
}

.page-corporate .service-item:hover {
  background: rgba(255, 255, 255, 0.92);
}

.services-visual {
  margin-bottom: var(--space-xl);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  background: var(--color-cloud);
}

.services-photo {
  width: 100%;
  height: 320px;
  object-fit: cover;
  object-position: var(--img-position, center);
  display: block;
}

.services-inline-visuals {
  margin: var(--space-lg) 0 var(--space-xl);
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--space-md);
}

.services-inline-item {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  background: var(--color-cloud);
}

.services-inline-item img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  object-position: var(--img-position, center);
  display: block;
}

.services-gallery {
  margin-top: var(--space-xl);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--space-md);
}

.services-gallery-item {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  background: var(--color-cloud);
}

.services-gallery-item img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  object-position: var(--img-position, center);
  display: block;
}

.service-block {
  padding: var(--space-xl) 0;
  border-bottom: 1px solid var(--color-border);
}

.service-block:last-child {
  border-bottom: none;
}

.service-block-header {
  display: flex;
  gap: var(--space-md);
  align-items: flex-start;
  margin-bottom: var(--space-lg);
}

.service-number {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--color-blue);
  opacity: 0.2;
  line-height: 1;
  flex-shrink: 0;
}

.service-block-header h2 {
  margin-bottom: var(--space-xs);
}

.service-block-desc {
  color: var(--color-text-secondary);
  font-size: 1.1rem;
}

.service-items-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: var(--space-md);
}

.service-item {
  padding: var(--space-md);
  background: var(--color-cloud);
  border-radius: var(--radius-md);
  transition: all var(--transition-smooth);
  position: relative;
  padding-left: calc(var(--space-md) + 16px);
}

.service-item-dot {
  position: absolute;
  left: var(--space-md);
  top: calc(var(--space-md) + 6px);
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--color-gold);
}

.service-item:hover {
  background: white;
  box-shadow: var(--shadow-card);
  transform: translateY(-3px);
}

.service-item h4 {
  font-size: 1.1rem;
  margin-bottom: 6px;
  color: var(--color-navy);
}

.service-item p {
  font-size: 0.95rem;
  color: var(--color-text-secondary);
  line-height: 1.7;
}

/* --- Difference Section --- */
.section-difference {
  background: var(--color-cloud);
}

.difference-visual {
  margin-bottom: var(--space-xl);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}

.difference-visual img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  object-position: var(--img-position, center);
  display: block;
}

.difference-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: center;
}

.highlight-text {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  color: var(--color-blue);
  font-weight: 600;
  margin-top: var(--space-sm);
}

.difference-items {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.diff-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 28px;
  background: white;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-soft);
  font-size: 1.1rem;
  color: var(--color-text);
  font-weight: 500;
  transition: all var(--transition-smooth);
}

.diff-item:hover {
  transform: translateX(4px);
  box-shadow: var(--shadow-card);
}

.diff-check {
  flex-shrink: 0;
}

/* --- Professional Services --- */
.pro-service-block {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: var(--space-xl);
  align-items: start;
  padding: var(--space-xl) 0;
  border-bottom: 1px solid var(--color-border);
}

.pro-service-block:last-of-type {
  border-bottom: none;
}

.pro-service-reverse {
  grid-template-columns: 1fr 200px;
}

.pro-service-reverse .pro-service-visual {
  order: 2;
}

.pro-service-visual {
  display: flex;
  justify-content: center;
}

.pro-photo-wrap {
  width: 180px;
  height: 180px;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  position: relative;
  background: var(--color-cloud);
}

.pro-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: var(--img-position, center);
  display: block;
}

.img-focus-top {
  --img-position: center 12%;
}

.img-focus-upper {
  --img-position: center 8%;
}

.img-focus-left {
  --img-position: 38% center;
}

.img-focus-right {
  --img-position: 62% center;
}

.img-tall-card {
  height: 280px !important;
}

.img-focus-lower {
  --img-position: center 32%;
}

.img-contain {
  object-fit: contain !important;
  object-position: center center !important;
  background: linear-gradient(180deg, #f8fbfe 0%, #eef4f9 100%);
}

.services-inline-item.img-portrait-card,
.services-gallery-item.img-portrait-card,
.difference-visual.img-portrait-card {
  background: linear-gradient(180deg, #f8fbfe 0%, #eef4f9 100%);
}

.services-inline-item.img-portrait-card img {
  height: 280px;
  padding: 10px;
}

.services-gallery-item.img-portrait-card img {
  height: 320px;
  padding: 12px;
}

.difference-visual.img-portrait-card img {
  height: 360px;
  padding: 16px;
}

.pro-photo-wrap .coming-soon-badge {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(255, 255, 255, 0.9);
  color: var(--color-gold);
  border: 1px solid rgba(212, 148, 58, 0.3);
}

.pro-icon-wrap {
  width: 140px;
  height: 140px;
  border-radius: var(--radius-xl);
  background: var(--color-cloud);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.pro-icon-wrap svg {
  width: 80px;
  height: 80px;
}

.pro-icon-coming-soon {
  flex-direction: column;
  gap: 8px;
}

.coming-soon-badge {
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-gold);
  background: rgba(212, 148, 58, 0.1);
  padding: 3px 10px;
  border-radius: 50px;
}

.pro-service-content h2 {
  margin-bottom: var(--space-sm);
}

.pro-lead {
  color: var(--color-text-secondary);
  font-size: 1.15rem;
  margin-bottom: var(--space-md);
  line-height: 1.8;
}

.pro-service-list li {
  padding: 10px 0 10px 24px;
  position: relative;
  color: var(--color-text-secondary);
  font-size: 1.05rem;
}

.pro-service-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 16px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: 2px solid var(--color-blue);
}

.pro-pricing {
  margin-top: var(--space-md);
}

.pro-pricing-title {
  margin-bottom: var(--space-sm);
}

.pro-pricing-table-wrap {
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  overflow-x: auto;
  background: white;
  box-shadow: var(--shadow-soft);
}

.pro-pricing-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 560px;
}

.pro-pricing-table th,
.pro-pricing-table td {
  padding: 12px 16px;
  text-align: left;
  font-size: 0.98rem;
  border-bottom: 1px solid var(--color-border);
}

.pro-pricing-table th {
  background: var(--color-navy);
  color: white;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.pro-pricing-table th:nth-child(n+2),
.pro-pricing-table td:nth-child(n+2) {
  text-align: right;
}

.pro-pricing-table tbody tr:nth-child(even) {
  background: var(--color-cloud);
}

.pro-pricing-table tbody td {
  color: var(--color-text-secondary);
}

.pro-pricing-table tbody td:first-child {
  color: var(--color-text);
  font-weight: 600;
}

.pro-pricing-table tbody tr:last-child td {
  border-bottom: none;
}

.pro-pricing-note {
  margin-top: var(--space-sm);
  font-size: 0.95rem;
  color: var(--color-text-light);
}

.pro-philosophy {
  padding: var(--space-xl) 0;
}

.pro-philosophy blockquote {
  font-family: var(--font-heading);
  font-size: clamp(1.4rem, 3vw, 1.9rem);
  color: var(--color-navy);
  max-width: 700px;
  margin: 0;
}

/* --- Contact --- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: start;
}

.contact-methods {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-md);
}

.contact-card {
  padding: var(--space-lg) var(--space-md);
  background: white;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  text-align: center;
  transition: all var(--transition-smooth);
  border: 1px solid var(--color-border);
}

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

.contact-card-icon {
  margin-bottom: var(--space-sm);
}

.contact-card h3 {
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-text-light);
  margin-bottom: var(--space-xs);
}

.contact-value {
  font-size: 1.05rem;
  color: var(--color-navy);
  font-weight: 500;
  line-height: 1.6;
  transition: color var(--transition-ease);
}

a.contact-value:hover {
  color: var(--color-blue);
}

.contact-card-whatsapp {
  grid-column: 1 / -1;
  background: linear-gradient(135deg, #f0faf3 0%, #e8f5ec 100%);
  border-color: rgba(37, 211, 102, 0.2);
}

.contact-card-whatsapp:hover {
  border-color: var(--color-whatsapp);
}

.map-placeholder iframe {
  width: 100%;
  border-radius: var(--radius-lg);
}

/* --- 404 --- */
.section-404 {
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.error-content h1 {
  font-size: 8rem;
  color: var(--color-blue);
  opacity: 0.2;
  line-height: 1;
}

.error-content p {
  font-size: 1.2rem;
  color: var(--color-text-secondary);
  margin: var(--space-md) 0 var(--space-lg);
}

/* --- Footer --- */
.footer-wave {
  position: relative;
  margin-top: -1px;
}

.footer-wave svg {
  display: block;
  width: 100%;
  height: 80px;
}

.footer-body {
  background: var(--color-navy);
  color: rgba(255,255,255,0.7);
  padding: var(--space-xl) 0 var(--space-lg);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr 1.2fr;
  gap: var(--space-lg);
  margin-bottom: var(--space-xl);
}

.footer-logo {
  width: 60px;
  height: auto;
  object-fit: contain;
  margin-bottom: var(--space-sm);
}

.footer-tagline {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.5;
}

.footer-links-group h4,
.footer-contact h4 {
  color: white;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: var(--space-md);
}

.footer-links-group ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links-group a {
  font-size: 1rem;
  transition: color var(--transition-ease);
}

.footer-links-group a:hover {
  color: white;
}

.footer-contact address p {
  font-size: 1rem;
  margin-bottom: 6px;
}

.footer-contact a:hover {
  color: white;
}

.footer-bottom {
  padding-top: var(--space-md);
  border-top: 1px solid rgba(255,255,255,0.1);
  text-align: center;
  font-size: 0.85rem;
}

/* --- Scroll Reveal Animations --- */
.reveal-up,
.reveal-right,
.reveal-scale {
  opacity: 0;
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.reveal-up {
  transform: translateY(30px);
}

.reveal-right {
  transform: translateX(-30px);
}

.reveal-scale {
  transform: scale(0.9);
}

.reveal-up.revealed,
.reveal-right.revealed,
.reveal-scale.revealed {
  opacity: 1;
  transform: translateY(0) translateX(0) scale(1);
}

/* Staggered delays */
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }
.delay-5 { transition-delay: 0.5s; }
.delay-6 { transition-delay: 0.6s; }

/* --- Responsive --- */

/* Tablet */
@media (max-width: 1024px) {
  .hero-content {
    grid-template-columns: 1fr;
  }

  .hero-description {
    margin-left: 0;
    margin-right: 0;
  }

  .hero-actions {
    justify-content: flex-start;
  }

  .hero-visual {
    order: -1;
  }

  .hero-logo-large {
    width: 110px;
  }

  .pillars-grid {
    grid-template-columns: 1fr 1fr;
  }

  .split-layout,
  .why-layout,
  .difference-layout,
  .story-grid {
    grid-template-columns: 1fr;
  }

  .leaders-grid {
    grid-template-columns: 1fr;
    gap: var(--space-md);
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr 1fr;
  }

  .pro-service-block,
  .pro-service-reverse {
    grid-template-columns: 1fr;
    gap: var(--space-md);
  }

  .pro-service-reverse .pro-service-visual {
    order: 0;
  }

  .pro-photo-wrap {
    width: 160px;
    height: 160px;
  }

  .services-gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .services-inline-visuals {
    grid-template-columns: 1fr;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .nav-toggle {
    display: flex;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 350px;
    height: 100vh;
    background: white;
    flex-direction: column;
    align-items: flex-start;
    padding: 100px var(--space-lg) var(--space-lg);
    gap: 4px;
    box-shadow: -10px 0 30px rgba(0,0,0,0.1);
    transition: right var(--transition-smooth);
  }

  .nav-links.open {
    right: 0;
  }

  .nav-links a {
    width: 100%;
    font-size: 1rem;
    padding: 12px 16px;
  }

  .nav-cta {
    margin-top: var(--space-md);
    text-align: center;
    width: 100% !important;
  }

  .hero {
    min-height: auto;
    padding: 120px 0 80px;
  }

  .pro-pricing-table {
    min-width: 480px;
  }

  .pro-pricing-table th,
  .pro-pricing-table td {
    padding: 10px 12px;
    font-size: 0.92rem;
  }

  .pro-pricing-note {
    font-size: 0.9rem;
  }

  .hero-logo-large {
    width: 90px;
  }


  .services-photo {
    height: 240px;
  }

  .services-gallery {
    grid-template-columns: 1fr;
  }

  .services-gallery-item img {
    height: 220px;
  }

  .services-inline-item img {
    height: 220px;
  }

  .difference-visual img {
    height: 320px;
  }

  .services-inline-item.img-portrait-card img {
    height: 260px;
    padding: 8px;
  }

  .services-gallery-item.img-portrait-card img {
    height: 280px;
    padding: 10px;
  }

  .difference-visual.img-portrait-card img {
    height: 300px;
    padding: 12px;
  }

  .pro-photo-wrap {
    width: 140px;
    height: 140px;
  }

  .hero-title {
    font-size: 2rem;
  }

  .pillars-grid {
    grid-template-columns: 1fr;
  }

  .section {
    padding: var(--space-xl) 0;
  }

  .page-hero {
    padding: 130px 0 80px;
  }

  .contact-methods {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-md);
  }

  .footer-brand {
    grid-column: 1 / -1;
  }

  .service-items-grid {
    grid-template-columns: 1fr;
  }

  .reality-photo {
    height: 220px;
  }

  .btn {
    padding: 12px 24px;
    font-size: 0.9rem;
  }

  .btn-lg {
    padding: 14px 28px;
  }

  .hero-media {
    width: min(420px, 100%);
    aspect-ratio: 4 / 5;
  }

  .hero-media-portrait {
    width: min(360px, 100%);
    aspect-ratio: 4 / 5;
  }
}

@media (max-width: 480px) {
  .hero-actions {
    flex-direction: column;
    width: 100%;
  }

  .hero-actions .btn {
    width: 100%;
    justify-content: center;
  }

  .cta-actions {
    flex-direction: column;
  }

  .cta-actions .btn {
    width: 100%;
    justify-content: center;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }
}

/* --- Accessibility --- */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  .reveal-up,
  .reveal-right,
  .reveal-scale {
    opacity: 1;
    transform: none;
  }
}

/* Focus styles for keyboard navigation */
*:focus-visible {
  outline: 2px solid var(--color-blue);
  outline-offset: 2px;
  border-radius: 4px;
}
