.hero {
  background: var(--hero-gradient);
  padding: 120px 0 100px;
  position: relative;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
}

.hero-title {
  font-size: clamp(36px, 4vw, 56px);
  line-height: 1.1;
  color: #fff;
  margin-bottom: 20px;
}

.hero-desc {
  font-size: 18px;
  color: rgba(255,255,255,.85);
  max-width: 520px;
}

.hero-actions {
  margin-top: 32px;
  display: flex;
  gap: 16px;
}

.hero-trust {
  margin-top: 24px;
  font-size: 14px;
  color: rgba(255,255,255,.7);
}

.hero-visual {
  position: relative;
}

.hero-visual img {
  width: 100%;
  border-radius: 18px;
  position: relative;
  z-index: 2;
}

.hero-glow {
  position: absolute;
  inset: -40px;
  background: radial-gradient(circle at center, rgba(0,255,255,.25), transparent 70%);
  filter: blur(60px);
  z-index: 1;
}
:root {

  /* ===== BACKGROUND ===== */
  --bg-page: #ffffff;
  --bg-section: #f8fafc;
  --bg-header: #ffffff;
  --bg-footer: #0f172a;

  /* ===== TEXT ===== */
  --text-primary: #0f172a;
  --text-secondary: #475569;
  --text-muted: #64748b;
  --text-inverse: #ffffff;

  /* ===== BRAND / ACCENT ===== */
  --accent-primary: #2563eb;
  --accent-secondary: #22c55e;
  --accent-danger: #ef4444;

  /* ===== BORDER ===== */
  --border-light: #e5e7eb;
  --border-medium: #cbd5e1;
}
:root {

  /* FONT FAMILY */
  --font-heading: 'Inter', system-ui, sans-serif;
  --font-body: 'Inter', system-ui, sans-serif;

  /* FONT SIZE */
  --text-xs: 0.75rem;
  --text-sm: 0.875rem;
  --text-base: 1rem;
  --text-lg: 1.125rem;
  --text-xl: 1.5rem;
  --text-2xl: 2rem;
  --text-3xl: 2.75rem;

  /* LINE HEIGHT */
  --leading-tight: 1.2;
  --leading-normal: 1.6;
}
:root {
  --shadow-sm: 0 1px 2px rgba(0,0,0,.05);
  --shadow-md: 0 4px 12px rgba(0,0,0,.08);
  --shadow-lg: 0 16px 32px rgba(0,0,0,.12);
}
:root {
  --space-xs: 4px;
  --space-sm: 8px;
  --space-md: 16px;
  --space-lg: 32px;
  --space-xl: 64px;
}
* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: var(--text-base);
  line-height: var(--leading-normal);
  color: var(--text-primary);
  background: var(--bg-page);
}
.container {
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: 20px;
}

section {
  padding: var(--space-xl) 0;
}

.btn-primary {
  background: var(--accent-primary);
  color: var(--text-inverse);
  padding: 14px 24px;
  border-radius: 8px;
  text-decoration: none;
  display: inline-block;
  box-shadow: var(--shadow-md);
}

.btn-primary:hover {
  opacity: .9;
}
:root {
  --bg-header: #fff;
  --hero-bg: transparent;

  --text-primary: #0f172a;
  --text-secondary: #475569;

  --accent-primary: #2563eb;
}
/* ======================================================
   VIBE: CORPORATE AUTHORITY
   ====================================================== */
.vibe-corporate {

  /* COLORS */
  --bg-main: #f4f6f8;
  --bg-header: #ffffff;
  --bg-footer: #0f172a;

  --text-primary: #0f172a;
  --text-secondary: #475569;

  --accent-primary: #1e3a8a;   /* Navy Blue */
  --accent-secondary: #64748b; /* Slate */

  --border-color: #e2e8f0;

  /* HERO */
  --hero-bg: linear-gradient(
    135deg,
    #1e293b,
    #0f172a
  );

  /* BUTTON */
  --btn-bg: var(--accent-primary);
  --btn-text: #ffffff;

  /* SHADOW */
  --shadow-sm: 0 2px 6px rgba(0,0,0,.08);
  --shadow-md: 0 6px 18px rgba(0,0,0,.12);
}
.vibe-corporate body {
  font-family: "Inter", "Segoe UI", Roboto, Arial, sans-serif;
  color: var(--text-primary);
  background: var(--bg-main);
}

.vibe-corporate h1,
.vibe-corporate h2,
.vibe-corporate h3 {
  font-weight: 700;
  letter-spacing: -0.02em;
}

.vibe-corporate p {
  line-height: 1.7;
  color: var(--text-secondary);
}
