/* =====================================================================
   theme-corporate.css  —  Direction A, "Corporate Zoho-Partner"
   The expected business-services baseline: white, slate, Zoho blue.
   Rounded cards, light shadows, clean SaaS sans.
   ===================================================================== */

.theme-corporate {
  /* palette */
  --bg-1: #ffffff;
  --bg-2: #f8fafc;
  --bg-3: #f1f5f9;
  --bg-dark: #0f172a;
  --text-1: #1e293b;
  --text-2: #475569;
  --text-3: #94a3b8;
  --line: #e2e8f0;
  --accent: #226DB4;
  --accent-d: #1a5a96;
  --accent-l: #e8f1fa;
  --invert-bg: #226DB4;
  --invert-text: #ffffff;
  --invert-text-2: rgba(255,255,255,0.85);
  --surface-card: #ffffff;

  /* section backgrounds */
  --hero-bg: #ffffff;
  --hero-text: #1e293b;
  --hero-sub-text: #475569;
  --hero-visual-bg: #f1f5f9;
  --hero-meta-text: #94a3b8;
  --stats-bg: #f8fafc;
  --services-bg: #ffffff;
  --trust-bg: #ffffff;
  --industries-bg: #f8fafc;
  --cases-bg: #ffffff;
  --why-bg: #f8fafc;
  --cta-bg: #226DB4;
  --cta-text: #ffffff;
  --cta-sub-text: rgba(255,255,255,0.85);
  --footer-bg: #0f172a;
  --footer-text: rgba(255,255,255,0.7);

  /* type — heavier, predictable */
  --display-weight: 700;
  --body-weight: 400;
  --display-tracking: -0.025em;
  --em-style: normal;       /* corporate doesn't italicize accent words */
  --em-weight: 700;
  --em-color: #226DB4;

  /* surface — rounded, shadowed */
  --radius-card: 12px;
  --radius-button: 8px;
  --shadow-card: 0 1px 2px rgba(15,23,42,0.04);
  --shadow-card-hover: 0 12px 28px rgba(34,109,180,0.10);
  --border-width: 1px;
  --card-border: #e2e8f0;

  /* rhythm — efficient, conventional */
  --container-max: 1240px;
  --container-pad: 32px;
  --section-pad-y: 52px;
  --hero-pad-y: 60px;
  --gap-grid: 24px;

  /* decorative */
  --eyebrow-tracking: 0.06em;
  --eyebrow-weight: 600;
  --eyebrow-color: #226DB4;
  --eyebrow-line-color: #226DB4;
  --hero-h-size: clamp(32px, 3.6vw + 16px, 56px);
  --hero-h-line: 1.08;
  --section-h-size: clamp(26px, 2.4vw + 12px, 40px);
  --section-h-line: 1.15;
  --section-h-weight: 700;
}

/* ----------  Corporate-specific overrides  ---------- */

/* topbar with Zoho-blue pill badge */
.theme-corporate .topbar { background: #ffffff; }
.theme-corporate .wordmark { color: #1e293b; }
.theme-corporate .wordmark em { color: #226DB4; font-style: italic; font-weight: 500; }
.theme-corporate .partner-mark {
  background: #e8f1fa;
  color: #226DB4;
  border: 1px solid #226DB4;
  border-radius: 999px;
  padding: 6px 14px;
  font-size: 12px;
  font-weight: 600;
}

/* hero — split with eyebrow pill */
.theme-corporate .hero { background: #ffffff; }
.theme-corporate .hero .eyebrow {
  background: #e8f1fa;
  color: #226DB4;
  padding: 6px 14px;
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 600;
  font-size: 12px;
}
.theme-corporate .hero h1 em { font-style: normal; color: #226DB4; }
.theme-corporate .hero-visual {
  background:
    linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);
  border: 1px solid #e2e8f0;
  border-radius: 12px;
}
.theme-corporate .hero-visual::before {
  content: ''; position: absolute;
  top: 24px; left: 24px; right: 24px; bottom: 24px;
  background:
    repeating-linear-gradient(45deg, transparent 0 12px, rgba(34,109,180,0.04) 12px 24px);
  border-radius: 6px;
}
.theme-corporate .hero-visual-inner {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 6px;
  color: #94a3b8;
}
.theme-corporate .hero-meta { display: none; }

/* Partner badge — chip matches the badge's off-white logo card (#f3f3f3)
   so the chip and the card read as one continuous panel instead of a
   white frame around the off-white logo card. */
.theme-corporate .partner-badge {
  background: #f3f3f3;
  box-shadow: 0 1px 2px rgba(15,23,42,0.04);
}
.theme-corporate .partner-since-year { color: #226DB4; }
.theme-corporate .partner-since-label { color: #475569; opacity: 0.75; }

/* buttons — solid blue primary */
.theme-corporate .btn-primary {
  background: #226DB4;
  color: #ffffff;
  border: 1px solid #226DB4;
  box-shadow: 0 1px 2px rgba(0,0,0,0.08);
}
.theme-corporate .btn-primary:hover { background: #1a5a96; }
.theme-corporate .btn-secondary {
  background: #ffffff;
  color: #1e293b;
  border: 1px solid #e2e8f0;
}
.theme-corporate .btn-secondary:hover { border-color: #226DB4; color: #226DB4; }

/* stats — clean numbered band */
.theme-corporate .stats { background: #f8fafc; padding: var(--section-pad-y) 0; }
.theme-corporate .stat-num { color: #1e293b; font-weight: 800; font-size: 32px; letter-spacing: -0.02em; }
.theme-corporate .stat-num em { color: #226DB4; font-style: normal; }
.theme-corporate .stat-label { font-size: 14px; color: #475569; font-weight: 500; }

/* services — soft cards; hover deepens; feature tiles are full Zoho-blue fills */
.theme-corporate .service {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 1px 2px rgba(15,23,42,0.04);
  transition: background 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease, transform 0.18s ease;
}
.theme-corporate .service:hover {
  background: #f1f5f9;
  border-color: #226DB4;
  box-shadow: 0 14px 32px rgba(34,109,180,0.12);
  transform: translateY(-2px);
}
.theme-corporate .service-icon {
  background: #e8f1fa;
  border-radius: 10px;
  color: #226DB4;
  width: 48px; height: 48px;
}
.theme-corporate .service h3 { font-weight: 700; font-size: 20px; }
.theme-corporate .service h3 em { color: #226DB4; font-style: normal; font-weight: 700; }

/* feature tiles — full Zoho-blue fill (replaces the thin top stripe) */
.theme-corporate .service.feature {
  background: #226DB4;
  border-color: #226DB4;
  box-shadow: 0 6px 20px rgba(34,109,180,0.20);
}
.theme-corporate .service.feature h3 { color: #ffffff; }
.theme-corporate .service.feature p { color: rgba(255,255,255,0.92); }
.theme-corporate .service.feature h3 em { color: #ffffff; font-style: normal; font-weight: 800; }
.theme-corporate .service.feature .service-icon {
  background: rgba(255,255,255,0.18);
  color: #ffffff;
}
.theme-corporate .service.feature:hover {
  background: #1a5a96;
  border-color: #1a5a96;
  box-shadow: 0 18px 36px rgba(34,109,180,0.28);
}

/* trust strip */
.theme-corporate .trust { background: #ffffff; }
.theme-corporate .trust-cap { color: #94a3b8; letter-spacing: 0.10em; text-transform: uppercase; }
/* logo chips: shared .logo-slot treatment (base.css) */
/* monochrome reversed logos (e.g. Lohmiller) flip to dark on a white chip in the light theme */
.theme-corporate .logo-slot.is-mono { background: #ffffff; border-color: #e2e8f0; }
.theme-corporate .logo-slot.is-mono img { filter: invert(1); }

/* industries — uniform card with image */
.theme-corporate .industries { background: #f8fafc; }
.theme-corporate .ind-card {
  background: #ffffff; border-radius: 12px; border: 1px solid #e2e8f0;
  box-shadow: 0 1px 2px rgba(15,23,42,0.04);
}
.theme-corporate .ind-image { aspect-ratio: 4/3; }
.theme-corporate .ind-image { background: linear-gradient(160deg, #226DB4 0%, #1a5a96 100%); }
.theme-corporate .ind-image.two { background: linear-gradient(160deg, #0ea5e9 0%, #0369a1 100%); }
.theme-corporate .ind-image.three { background: linear-gradient(160deg, #cbd5e1 0%, #94a3b8 100%); }
.theme-corporate .ind-status { border-radius: 6px; }
.theme-corporate .ind-body h3 { font-weight: 700; font-size: 22px; }

/* cases */
.theme-corporate .cases { background: #ffffff; }
.theme-corporate .case-tile {
  background: #ffffff; border: 1px solid #e2e8f0; border-radius: 12px;
  box-shadow: 0 1px 2px rgba(15,23,42,0.04);
}
.theme-corporate .case-image { background: linear-gradient(160deg, #226DB4 0%, #1a5a96 100%); }
.theme-corporate .case-image.two { background: linear-gradient(160deg, #0ea5e9 0%, #0369a1 100%); }
.theme-corporate .case-body h3 { font-weight: 700; }

/* why us — numbered tiles */
.theme-corporate .why { background: #f8fafc; }
.theme-corporate .why-num {
  font-style: normal;
  font-weight: 800;
  font-size: 28px;
  color: #226DB4;
  text-transform: uppercase;
  font-family: 'Inter', sans-serif;
}
.theme-corporate .why-item h3 { font-weight: 700; }

/* CTA band — Zoho blue */
.theme-corporate .cta-band { background: #226DB4; color: #ffffff; }
.theme-corporate .cta-band .section-eyebrow.inv { color: #e8f1fa; }
.theme-corporate .cta-band .section-eyebrow.inv::before { background: rgba(255,255,255,0.6); }
.theme-corporate .cta-band h2 { font-weight: 800; color: #ffffff; font-size: 44px; }
.theme-corporate .cta-band h2 em { font-style: normal; color: #ffffff; }
.theme-corporate .cta-band .btn-primary { background: #ffffff; color: #226DB4; border-color: #ffffff; }
.theme-corporate .cta-band .btn-primary:hover { background: #f8fafc; color: #1a5a96; border-color: #f8fafc; }
.theme-corporate .cta-band .btn-secondary.inv { color: #ffffff; border-color: rgba(255,255,255,0.4); }
.theme-corporate .cta-band .btn-secondary.inv:hover { background: rgba(255,255,255,0.1); border-color: #ffffff; }

/* footer */
.theme-corporate .footer { background: #0f172a; color: rgba(255,255,255,0.7); }
.theme-corporate .footer-wordmark em { color: #226DB4; font-style: italic; }
.theme-corporate .footer .footer-grid .footer-col-label { color: #e8f1fa; }
