:root {
  /* Exactly 3 Core Brand Colors from Soledo Logo */
  --brand-red: #d51f27;
  --brand-green: #225128;
  --brand-yellow: #f6eb16;

  /* Primary Brand Red (#d51f27): High-Impact CTA & Key Focus */
  --color-primary: #d51f27;
  --color-primary-dark: #b5151c;
  --color-primary-light: #ea323a;
  --color-primary-soft: #fef2f2;
  --color-primary-border: #fecaca;
  --color-primary-rgb: 213, 31, 39;

  /* Brand Green (#225128): Authority, Headings, Structure & Badges */
  --color-navy: #225128;
  --color-navy-dark: #16361a;
  --color-navy-light: #2c6834;
  --color-navy-soft: #f1f8f3;

  --color-secondary: #225128;
  --color-secondary-dark: #16361a;
  --color-secondary-light: #2c6834;
  --color-secondary-soft: #f1f8f3;
  --color-secondary-border: #b8e5c0;
  --color-secondary-rgb: 34, 81, 40;

  /* Brand Yellow (#f6eb16): Stars, Highlights, Badges & Verification */
  --color-gold: #f6eb16;
  --color-gold-bright: #f6eb16;
  --color-gold-dark: #b8af0a;
  --color-gold-soft: #fffde0;
  --color-gold-border: #f6eb16;
  --color-gold-rgb: 246, 235, 22;

  /* Premium Light Backgrounds & Neutrals */
  --bg-main: #ffffff;
  --bg-subtle: #f8fafc;
  --bg-surface: #ffffff;
  --bg-elevated: #f1f5f9;
  --bg-slate-50: #f8fafc;
  --bg-slate-100: #f1f5f9;
  --bg-slate-200: #e2e8f0;

  /* Typography Colors */
  --text-main: #0f172a;
  --text-sub: #334155;
  --text-muted: #64748b;
  --text-light: #94a3b8;

  /* Borders */
  --border-color: #e2e8f0;
  --border-subtle: #edf2f7;
  --border-hover: #cbd5e1;
  --border-focus: var(--brand-red);

  /* Typography */
  --font-sans: 'Plus Jakarta Sans', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-heading: 'Plus Jakarta Sans', sans-serif;

  /* Sizing & Radius */
  --container-width: 1240px;
  --header-height: 84px;
  --radius-xs: 6px;
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-full: 9999px;

  /* Transitions & Shadows */
  --transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  --shadow-xs: 0 1px 3px rgba(15, 23, 42, 0.04);
  --shadow-sm: 0 4px 14px rgba(15, 23, 42, 0.05);
  --shadow-md: 0 10px 25px -3px rgba(15, 23, 42, 0.07), 0 4px 8px -2px rgba(15, 23, 42, 0.03);
  --shadow-lg: 0 20px 35px -5px rgba(15, 23, 42, 0.1), 0 10px 15px -3px rgba(15, 23, 42, 0.04);
  --shadow-primary: 0 6px 20px rgba(197, 29, 36, 0.25);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  color-scheme: light;
}

body {
  font-family: var(--font-sans);
  background-color: var(--bg-main);
  color: var(--text-main);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* Subtle Geometric Background Pattern */
.bg-ambient {
  position: fixed;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
  opacity: 0.7;
}

.ambient-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(140px);
}

.orb-1 {
  top: -120px;
  left: 20%;
  width: 550px;
  height: 400px;
  background: radial-gradient(circle, rgba(197, 29, 36, 0.04) 0%, transparent 70%);
}

.orb-2 {
  top: 40%;
  right: -80px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(30, 74, 40, 0.04) 0%, transparent 70%);
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--color-navy);
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.015em;
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition);
}

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

ul {
  list-style: none;
}

.container {
  width: 100%;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 1;
}

.text-gradient {
  color: var(--color-primary);
  display: inline;
}

/* SVGs Helpers */
.icon-svg {
  width: 20px;
  height: 20px;
  stroke-width: 2;
  stroke: currentColor;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
  display: inline-block;
  vertical-align: middle;
}

/* Header & Nav */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-color);
  z-index: 1000;
  display: flex;
  align-items: center;
  transition: var(--transition);
}

.header.scrolled {
  background: #ffffff;
  box-shadow: var(--shadow-sm);
  height: 74px;
}

.header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.brand-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.brand-logo img {
  height: 53px;
  width: auto;
  object-fit: contain;
  transition: var(--transition);
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-link {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--text-sub);
  position: relative;
  padding: 8px 0;
}

.nav-link:hover, .nav-link.active {
  color: var(--color-primary);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 2px;
  background: var(--color-primary);
  transition: var(--transition);
}

.nav-link:hover::after, .nav-link.active::after {
  width: 100%;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

/* Language Switcher */
.lang-switcher {
  display: flex;
  align-items: center;
  background: var(--bg-slate-100);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-full);
  padding: 3px;
}

.lang-btn {
  background: transparent;
  border: none;
  color: var(--text-muted);
  font-size: 0.8rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: var(--transition);
}

.lang-btn.active {
  background: #ffffff;
  color: var(--color-primary);
  box-shadow: 0 1px 4px rgba(15, 23, 42, 0.1);
}

/* Mobile Toggle */
.mobile-toggle {
  display: none;
  background: transparent;
  border: none;
  color: var(--color-navy);
  cursor: pointer;
  padding: 4px;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 11px 22px;
  font-size: 0.92rem;
  font-weight: 600;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: var(--transition);
  border: 1px solid transparent;
  outline: none;
  white-space: nowrap;
}

.btn-primary {
  background-color: var(--brand-green);
  color: #ffffff;
  box-shadow: 0 4px 18px rgba(34, 81, 40, 0.28);
  font-weight: 700;
}

.btn-primary:hover {
  background-color: var(--color-navy-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(34, 81, 40, 0.38);
}

.btn-primary .icon-svg {
  color: var(--brand-yellow);
  stroke: var(--brand-yellow);
  transition: transform 0.2s ease;
}

.btn-primary:hover .icon-svg {
  transform: translateX(4px);
}

.btn-outline {
  background: #ffffff;
  border-color: #cbd5e1;
  color: #1e293b;
  box-shadow: var(--shadow-xs);
  font-weight: 600;
}

.btn-outline:hover {
  background: #ffffff;
  border-color: var(--brand-green);
  color: var(--brand-green);
  transform: translateY(-2px);
  box-shadow: 0 4px 14px rgba(34, 81, 40, 0.08);
}

/* Badges */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  background: var(--color-primary-soft);
  border: 1px solid var(--color-primary-border);
  color: var(--color-primary);
  font-size: 0.84rem;
  font-weight: 700;
  border-radius: var(--radius-full);
  margin-bottom: 24px;
  letter-spacing: 0.02em;
}

.badge-green {
  background: var(--color-secondary-soft);
  border-color: var(--color-secondary-border);
  color: var(--color-secondary);
}

.badge-gold {
  background: var(--color-gold-soft);
  border-color: var(--color-gold-border);
  color: var(--color-gold);
}

.card-icon-wrapper.gold {
  background: transparent;
  border: 1px solid var(--color-primary);
  color: var(--color-primary);
}

.tag-item.highlight {
  background: var(--color-gold-soft);
  border-color: var(--color-gold-border);
  color: var(--color-gold);
  font-weight: 700;
}

/* Section Containers */
.section {
  padding: 96px 0;
  position: relative;
}

.section-alt {
  background-color: var(--bg-subtle);
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}

.section-header {
  text-align: center;
  max-width: 740px;
  margin: 0 auto 56px;
}

.section-subtitle {
  color: var(--color-primary);
  font-weight: 800;
  letter-spacing: 0.03em;
  font-size: 0.88rem;
  margin-bottom: 10px;
}

.section-title {
  font-size: clamp(2rem, 3.8vw, 2.75rem);
  margin-bottom: 16px;
  color: var(--color-navy);
}

.section-desc {
  color: var(--text-muted);
  font-size: 1.05rem;
  line-height: 1.65;
}

/* Hero Section */
.hero {
  padding-top: calc(var(--header-height) + 54px);
  padding-bottom: 84px;
  position: relative;
  text-align: center;
  background: var(--bg-subtle);
  border-bottom: 1px solid rgba(34, 81, 40, 0.1);
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 7px 20px;
  background: #ffffff;
  border: 1px solid rgba(51, 65, 85, 0.18);
  color: #334155;
  font-size: 0.85rem;
  font-weight: 700;
  border-radius: var(--radius-full);
  margin-bottom: 26px;
  box-shadow: 0 2px 10px rgba(15, 23, 42, 0.04);
  letter-spacing: 0.01em;
}

.badge-dot-red {
  width: 8px;
  height: 8px;
  background-color: var(--brand-red);
  border-radius: 50%;
  display: inline-block;
  box-shadow: 0 0 0 3px rgba(213, 31, 39, 0.2);
  flex-shrink: 0;
  animation: pulse-dot 2.5s infinite;
}

@keyframes pulse-dot {
  0% { box-shadow: 0 0 0 0 rgba(213, 31, 39, 0.45); }
  70% { box-shadow: 0 0 0 6px rgba(213, 31, 39, 0); }
  100% { box-shadow: 0 0 0 0 rgba(213, 31, 39, 0); }
}

.hero-title {
  font-size: 3rem;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
  max-width: 1040px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.2;
  color: var(--brand-green);
}

.hero-title-main {
  color: var(--brand-green);
  display: block;
  font-weight: 800;
}

.hero-title-accent {
  color: var(--brand-red);
  display: block;
  font-weight: 800;
  margin-top: 4px;
}

.hero-description {
  font-size: clamp(1.05rem, 1.8vw, 1.18rem);
  color: #334155;
  max-width: 780px;
  margin: 0 auto 38px;
  line-height: 1.75;
}

.hero-cta {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 56px;
}

#btn-hero-talk {
  background-color: var(--brand-green);
  color: #ffffff;
  box-shadow: 0 4px 18px rgba(34, 81, 40, 0.28);
}

#btn-hero-talk:hover {
  background-color: var(--color-navy-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(34, 81, 40, 0.38);
}

#btn-hero-talk .icon-svg {
  color: var(--brand-yellow);
  stroke: var(--brand-yellow);
  transition: transform 0.2s ease;
}

#btn-hero-talk:hover .icon-svg {
  transform: translateX(4px);
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  max-width: 1060px;
  margin: 0 auto;
}

.stat-item {
  background: #ffffff;
  border: 1px solid rgba(34, 81, 40, 0.12);
  border-radius: var(--radius-md);
  padding: 24px 18px;
  text-align: center;
  box-shadow: 0 4px 16px rgba(34, 81, 40, 0.03);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.stat-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: rgba(34, 81, 40, 0.12);
  transition: var(--transition);
}

.stat-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 28px -4px rgba(34, 81, 40, 0.12);
  border-color: rgba(34, 81, 40, 0.35);
}

.stat-item:hover::before {
  background: var(--brand-green);
}

.stat-number {
  font-size: 2.2rem;
  font-weight: 800;
  color: #475569;
  margin-bottom: 6px;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.stat-label {
  font-size: 0.85rem;
  color: #475569;
  font-weight: 600;
  line-height: 1.45;
}

/* About / Executive Showcase Section */
.about-showcase {
  display: grid;
  grid-template-columns: 460px 1fr;
  gap: 56px;
  align-items: stretch;
}

/* Left: Visual Frame */
.about-visual {
  position: relative;
  height: 100%;
}

.founder-frame {
  background: #ffffff;
  border-radius: var(--radius-xl);
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  position: relative;
  transition: var(--transition);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.founder-frame:hover {
  box-shadow: 0 25px 50px -12px rgba(34, 81, 40, 0.2);
  border-color: rgba(34, 81, 40, 0.3);
}

.founder-photo-container {
  position: relative;
  width: 100%;
  flex: 1;
  min-height: 580px;
  overflow: hidden;
  background: var(--color-navy-soft);
}

.founder-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 10%;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.founder-frame:hover .founder-image {
  transform: scale(1.03);
}

/* Floating Badges */
.founder-float-tag {
  position: absolute;
  top: 20px;
  left: 20px;
  background: rgba(34, 81, 40, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(246, 235, 22, 0.6);
  padding: 6px 14px;
  border-radius: var(--radius-full);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #ffffff;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  z-index: 2;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);
}

.founder-float-metric {
  position: absolute;
  bottom: 20px;
  left: 20px;
  right: 20px;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--border-color);
  border-left: 4px solid var(--brand-red);
  padding: 14px 18px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  gap: 16px;
  z-index: 2;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.founder-float-metric .metric-num {
  font-size: 2.1rem;
  font-weight: 800;
  color: var(--brand-green);
  line-height: 1;
  font-family: var(--font-heading);
}

.founder-float-metric .metric-info strong {
  display: block;
  font-size: 0.92rem;
  color: var(--color-navy);
  font-weight: 700;
  margin-bottom: 2px;
}

.founder-float-metric .metric-info small {
  display: block;
  font-size: 0.78rem;
  color: var(--text-muted);
  font-weight: 500;
}

.founder-id-strip {
  padding: 20px 24px;
  background: #ffffff;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.founder-identity h4 {
  font-size: 1.25rem;
  color: var(--color-navy);
  margin-bottom: 3px;
}

.founder-identity .alias {
  color: var(--brand-red);
  font-weight: 700;
}

.founder-identity .founder-role {
  font-size: 0.88rem;
  color: var(--brand-green);
  font-weight: 700;
}

.brand-bar-accent {
  width: 100%;
  height: 3.5px;
  border-radius: var(--radius-full);
  background: linear-gradient(90deg, var(--brand-red) 0%, var(--brand-yellow) 50%, var(--brand-green) 100%);
}

/* Right: Story & Pillars */
.about-narrative {
  display: flex;
  flex-direction: column;
}

.about-badge {
  align-self: flex-start;
  margin-bottom: 20px;
}

.about-main-title {
  font-size: clamp(2rem, 3.6vw, 2.7rem);
  line-height: 1.22;
  color: var(--brand-green);
  margin-bottom: 18px;
  letter-spacing: -0.02em;
}

.about-lead,
.about-lead-sub {
  font-size: 1rem;
  color: #334155;
  line-height: 1.72;
  font-weight: 400;
}

.about-lead {
  margin-bottom: 14px;
}

.about-lead-sub {
  margin-bottom: 26px;
}

/* 3 Pillars */
.about-pillars {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 26px;
}

.pillar-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 16px 18px;
  background: var(--bg-subtle);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  transition: var(--transition);
}

.pillar-card:hover {
  background: #ffffff;
  border-color: var(--brand-green);
  box-shadow: var(--shadow-sm);
  transform: translateX(4px);
}

.pillar-icon {
  width: 42px;
  height: 42px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.pillar-icon.red {
  background: transparent;
  border: 1px solid var(--brand-red);
  color: var(--brand-red);
}

.pillar-icon.green {
  background: #f1f8f3;
  border: 1px solid #b8e5c0;
  color: var(--brand-green);
}

.pillar-icon.yellow {
  background: #fffde0;
  border: 1px solid #f6eb16;
  color: #787302;
}

.pillar-icon .icon-svg {
  width: 20px;
  height: 20px;
}

.pillar-text h5 {
  font-size: 0.98rem;
  color: var(--color-navy);
  margin-bottom: 3px;
}

.pillar-text p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.5;
  margin: 0;
}

/* Credentials Chips */
.about-credentials {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 26px;
}

.cred-chip {
  font-size: 0.8rem;
  font-weight: 600;
  padding: 6px 14px;
  background: #ffffff;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-full);
  color: var(--text-sub);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  box-shadow: var(--shadow-xs);
}

.cred-chip.highlight-gold {
  background: #fffde0;
  border-color: #f6eb16;
  color: var(--brand-green);
  font-weight: 700;
}

.about-action {
  display: flex;
  align-items: center;
  gap: 16px;
}

/* Category Grid & Cards */
.categories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.category-card {
  background: #ffffff;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 32px 26px;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  height: 100%;
  box-shadow: var(--shadow-xs);
}

.category-card:hover {
  border-color: var(--color-primary);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.card-icon-wrapper {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-sm);
  background: transparent;
  border: 1px solid var(--color-primary);
  color: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.card-icon-wrapper.green,
.card-icon-wrapper.navy,
.card-icon-wrapper.gold {
  background: transparent;
  border: 1px solid var(--color-primary);
  color: var(--color-primary);
}

.card-icon-wrapper .icon-svg {
  width: 24px;
  height: 24px;
}

.category-title {
  font-size: 1.25rem;
  margin-bottom: 12px;
  color: var(--color-navy);
}

.category-desc {
  color: var(--text-sub);
  font-size: 0.94rem;
  margin-bottom: 20px;
  flex-grow: 1;
  line-height: 1.6;
}

.category-items {
  border-top: 1px solid var(--border-subtle);
  padding-top: 16px;
  margin-top: auto;
}

.category-item-bullet {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 0.88rem;
  color: var(--text-sub);
  margin-bottom: 8px;
  font-weight: 500;
}

.category-item-bullet .icon-svg {
  width: 16px;
  height: 16px;
  color: var(--color-primary);
  flex-shrink: 0;
  margin-top: 3px;
}

/* 4-Step Sourcing Process */
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  position: relative;
}

.process-step {
  background: #ffffff;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 30px 22px;
  position: relative;
  transition: var(--transition);
  box-shadow: var(--shadow-xs);
}

.process-step:hover {
  border-color: var(--color-primary);
  transform: translateY(-3px);
  box-shadow: var(--shadow-sm);
}

.step-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.step-badge {
  font-size: 0.78rem;
  font-weight: 800;
  color: var(--color-primary);
  background: var(--color-primary-soft);
  padding: 4px 10px;
  border-radius: var(--radius-xs);
  border: 1px solid var(--color-primary-border);
}

.step-icon-circle {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--color-navy);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
}

.step-icon-circle .icon-svg {
  width: 20px;
  height: 20px;
}

.step-title {
  font-size: 1.12rem;
  margin-bottom: 10px;
  color: var(--color-navy);
}

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

/* Executed Products & Projects Showcase */
.showcase-tabs {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 40px;
}

.showcase-tab-btn {
  background: #ffffff;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-full);
  padding: 10px 22px;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--text-sub);
  cursor: pointer;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.showcase-tab-btn:hover {
  border-color: var(--brand-green);
  color: var(--brand-green);
  transform: translateY(-1px);
}

.showcase-tab-btn.active {
  background: var(--brand-green);
  color: #ffffff;
  border-color: var(--brand-green);
  box-shadow: 0 4px 14px rgba(34, 81, 40, 0.25);
}

.showcase-tab-btn .tab-count {
  font-size: 0.75rem;
  background: rgba(0, 0, 0, 0.08);
  padding: 2px 7px;
  border-radius: var(--radius-full);
  font-weight: 800;
}

.showcase-tab-btn.active .tab-count {
  background: rgba(255, 255, 255, 0.25);
  color: #ffffff;
}

.showcase-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(360px, 1fr));
  gap: 28px;
}

.showcase-card {
  background: #ffffff;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-sm);
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  animation: fadeIn 0.4s ease;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

.showcase-card:hover {
  border-color: var(--brand-green);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

/* Media Showcase Container */
.showcase-media {
  height: 230px;
  background: #f8fafc;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--border-subtle);
}

.showcase-media.single img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.4s ease;
}

.showcase-media.gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  background: var(--border-color);
}

.showcase-media.gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: #ffffff;
  transition: transform 0.4s ease;
}

.showcase-card:hover .showcase-media img {
  transform: scale(1.04);
}

.showcase-media-tag {
  position: absolute;
  top: 12px;
  right: 12px;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-xs);
  padding: 4px 10px;
  font-size: 0.74rem;
  font-weight: 700;
  color: var(--color-navy);
  display: inline-flex;
  align-items: center;
  gap: 5px;
  box-shadow: var(--shadow-xs);
  z-index: 2;
}

/* Card Body */
.showcase-body {
  padding: 22px 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.showcase-header-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
  gap: 8px;
}

.showcase-badge {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  padding: 3px 9px;
  border-radius: var(--radius-xs);
}

.showcase-badge.green {
  background: var(--color-navy-soft);
  color: var(--brand-green);
  border: 1px solid var(--color-secondary-border);
}

.showcase-badge.red {
  background: var(--color-primary-soft);
  color: var(--brand-red);
  border: 1px solid var(--color-primary-border);
}

.showcase-badge.yellow {
  background: var(--color-gold-soft);
  color: #787302;
  border: 1px solid var(--brand-yellow);
}

.showcase-country {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-muted);
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.showcase-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--color-navy);
  margin-bottom: 8px;
  line-height: 1.35;
}

.showcase-desc {
  font-size: 0.88rem;
  color: var(--text-sub);
  line-height: 1.6;
  margin-bottom: 16px;
  flex: 1;
}

.showcase-items-list {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 16px;
}

.showcase-pill {
  font-size: 0.76rem;
  background: var(--bg-slate-100);
  border: 1px solid var(--border-color);
  padding: 3px 8px;
  border-radius: var(--radius-xs);
  color: var(--text-sub);
  font-weight: 500;
}

.showcase-footer {
  border-top: 1px solid var(--border-subtle);
  padding-top: 14px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  color: var(--text-muted);
}

.showcase-entity {
  font-weight: 600;
  color: var(--brand-green);
}

.showcase-years {
  font-weight: 700;
  color: var(--brand-red);
}

/* Direct Contact Section Reorganized */
.contact-section-content {
  display: flex;
  flex-direction: column;
  gap: 28px;
  max-width: 1140px;
  margin: 0 auto;
}

.contact-channels-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.channel-card-new {
  background: #ffffff;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  transition: var(--transition);
  box-shadow: var(--shadow-xs);
  text-decoration: none;
  position: relative;
}

.channel-card-new:hover {
  border-color: var(--color-primary);
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.08);
}

.channel-card-new .channel-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}

.channel-icon {
  width: 46px;
  height: 46px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.channel-icon.whatsapp { background: #f0fdf4; color: #16a34a; border: 1px solid #bbf7d0; }
.channel-icon.zalo { background: #eff6ff; color: #0284c7; border: 1px solid #bfdbfe; }
.channel-icon.viber { background: #f5f3ff; color: #7c3aed; border: 1px solid #ddd6fe; }
.channel-icon.email { background: var(--color-primary-soft); color: var(--color-primary); border: 1px solid var(--color-primary-border); }

.channel-icon .icon-svg {
  width: 24px;
  height: 24px;
}

.channel-badge-tag {
  font-size: 0.75rem;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: var(--radius-full);
  background: var(--bg-subtle);
  color: var(--text-muted);
  border: 1px solid var(--border-subtle);
}

.channel-card-new .channel-name {
  font-size: 1.15rem;
  color: var(--color-navy);
  margin-bottom: 4px;
  font-weight: 700;
}

.channel-card-new .channel-value {
  font-size: 0.95rem;
  color: #334155;
  font-weight: 600;
  margin-bottom: 16px;
  word-break: break-all;
}

.channel-card-new .channel-action {
  margin-top: auto;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--brand-green);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: color 0.2s ease;
}

.channel-card-new:hover .channel-action {
  color: var(--color-primary);
}

.channel-card-new .channel-action .icon-svg {
  width: 16px;
  height: 16px;
  color: var(--brand-yellow);
  stroke: var(--brand-yellow);
  transition: transform 0.2s ease;
}

.channel-card-new:hover .channel-action .icon-svg {
  transform: translateX(4px);
}

/* 2 Info Cards below */
.contact-details-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.contact-info-card {
  background: var(--bg-subtle);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
}

.contact-info-card h4 {
  font-size: 1.15rem;
  color: var(--color-navy);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.contact-info-card h4 .icon-svg {
  width: 22px;
  height: 22px;
  color: var(--color-primary);
  flex-shrink: 0;
}

.commitment-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 16px;
  font-size: 0.92rem;
  color: #334155;
  line-height: 1.6;
}

.commitment-item .icon-svg {
  width: 18px;
  height: 18px;
  color: var(--brand-green);
  flex-shrink: 0;
  margin-top: 3px;
}

.commitment-hours {
  margin-top: auto;
  padding-top: 18px;
  border-top: 1px solid var(--border-color);
  font-size: 0.86rem;
  color: #475569;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 8px;
}

.commitment-hours .icon-svg {
  width: 18px;
  height: 18px;
  color: var(--color-primary);
  flex-shrink: 0;
}

.location-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 18px;
  font-size: 0.92rem;
  line-height: 1.6;
  color: #334155;
}

.location-item:last-child {
  margin-bottom: 0;
}

.location-item .loc-icon {
  width: 38px;
  height: 38px;
  border-radius: var(--radius-sm);
  background: #ffffff;
  border: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--color-primary);
}

.location-item .loc-icon .icon-svg {
  width: 18px;
  height: 18px;
}

.location-item strong {
  color: var(--color-navy);
  font-weight: 700;
}

/* Floating Contact */
.floating-contact {
  position: fixed;
  bottom: 28px;
  right: 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 999;
}

.floating-btn {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
}

.floating-btn:hover {
  transform: scale(1.08);
  box-shadow: var(--shadow-lg);
}

.floating-btn.whatsapp { background: #25d366; }
.floating-btn.zalo { background: #0068ff; }
.floating-btn .icon-svg {
  width: 24px;
  height: 24px;
  stroke: none;
  fill: currentColor;
}

/* Footer (Clean Modern Light Theme) */
.footer {
  background: var(--bg-subtle);
  border-top: 1px solid var(--border-color);
  padding: 68px 0 28px;
  color: #475569;
  font-size: 0.9rem;
}

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

.footer-brand p {
  margin-top: 16px;
  font-size: 0.9rem;
  line-height: 1.65;
  max-width: 320px;
  color: #475569;
}

.footer-title {
  color: var(--color-navy);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 18px;
}

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

.footer-links a {
  color: #475569;
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--brand-red);
  padding-left: 4px;
}

.footer-bottom {
  border-top: 1px solid var(--border-color);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.85rem;
  color: #64748b;
}

/* Responsive */
@media (max-width: 1080px) {
  .process-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .about-showcase {
    grid-template-columns: 1fr;
    gap: 42px;
  }
  .contact-channels-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .contact-details-grid {
    grid-template-columns: 1fr;
  }
  .founder-photo-container {
    height: 480px;
    min-height: 480px;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 860px) {
  #btn-header-consult {
    display: none !important;
  }
  .brand-logo img {
    height: 42px;
  }
  .hero-stats {
    grid-template-columns: repeat(2, 1fr);
  }
  .nav-menu {
    position: fixed;
    top: var(--header-height);
    left: 0;
    width: 100%;
    background: #ffffff;
    border-bottom: 1px solid var(--border-color);
    box-shadow: var(--shadow-md);
    flex-direction: column;
    padding: 24px;
    gap: 18px;
    display: none;
  }
  .nav-menu.open {
    display: flex;
  }
  .mobile-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
  }
}

@media (max-width: 580px) {
  :root {
    --header-height: 66px;
  }
  .header .container {
    padding: 0 16px;
  }
  .brand-logo img {
    height: 38px;
  }
  .nav-actions {
    gap: 10px;
  }
  .process-grid, .hero-stats, .footer-grid, .contact-channels-grid {
    grid-template-columns: 1fr;
  }
  .hero {
    padding-top: calc(var(--header-height) + 36px);
    padding-bottom: 50px;
  }
  .hero-title {
    font-size: 2.1rem;
  }
  .hero-cta {
    flex-direction: column;
    width: 100%;
  }
  .btn {
    width: 100%;
  }
  .form-card {
    padding: 24px 18px;
  }
  .showcase-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .showcase-media {
    height: 200px;
  }
  .showcase-tabs {
    gap: 8px;
    margin-bottom: 24px;
  }
  .showcase-tab-btn {
    padding: 7px 15px;
    font-size: 0.8rem;
  }
  .founder-photo-container {
    height: 380px;
    min-height: 380px;
  }
  .founder-float-metric {
    position: static;
    margin: 12px 16px 0;
    box-shadow: var(--shadow-xs);
  }
  .founder-float-tag {
    top: 14px;
    left: 14px;
    font-size: 0.7rem;
    padding: 4px 10px;
  }
  .floating-contact {
    bottom: 18px;
    right: 18px;
  }
  .floating-btn {
    width: 44px;
    height: 44px;
  }
}
