/* ==========================================================================
   act act act GmbH – Complete Website Styles
   Bootstrap Override + Custom Components
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@400;500;600;700&family=Inter:wght@400;500;600&family=JetBrains+Mono:wght@400;500&family=DM+Sans:wght@400;500;600;700&display=swap');

/* ---------- CSS Variables (Design Tokens) ---------- */
:root {
  --navy:       #1B2A4A;
  --navy-dark:  #111C33;
  --teal:       #0D9488;
  --teal-light: #5EEAD4;
  --teal-bg:    #F0FDFA;
  --amber:      #D97706;
  --amber-light:#FBBF24;
  --amber-bg:   #FFFBEB;
  --warmgray:   #F8F7F4;
  --anthracite: #1F2937;
  --muted:      #6B7280;
  --border:     #E5E7EB;
  --blue:       #2563EB;
  --blue-light: #60A5FA;
  --font-display: 'Space Grotesk', sans-serif;
  --font-body:    'Inter', sans-serif;
  --font-mono:    'JetBrains Mono', monospace;
  --font-alt:     'DM Sans', sans-serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--warmgray);
  color: var(--anthracite);
}

/* ---------- Navbar ---------- */
.navbar-brand-text {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.15rem;
  color: #fff !important;
}

.navbar-brand-text .act-amber { color: var(--amber-light); }

.navbar-custom {
  background: var(--navy);
  padding: 0.75rem 0;
  border-bottom: 2px solid var(--teal);
}

.navbar-custom .nav-link {
  color: rgba(255,255,255,0.7) !important;
  font-size: 0.85rem;
  font-weight: 500;
  transition: color 0.2s;
}

.navbar-custom .nav-link:hover,
.navbar-custom .nav-link.active {
  color: #fff !important;
}

.navbar-custom .btn-cta-nav {
  background: var(--amber);
  color: #fff;
  border: none;
  font-size: 0.8rem;
  font-weight: 600;
  padding: 0.4rem 1rem;
  border-radius: 6px;
  transition: background 0.2s;
}

.navbar-custom .btn-cta-nav:hover {
  background: #B45309;
  color: #fff;
}

/* ---------- Hero Section ---------- */
.hero-section {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 100%);
  padding: 6rem 0 5rem;
  position: relative;
  overflow: hidden;
}

.hero-section::after {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 60%;
  height: 200%;
  background: radial-gradient(ellipse, rgba(13,148,136,0.08) 0%, transparent 70%);
  pointer-events: none;
}

.hero-badge {
  display: inline-block;
  background: rgba(13,148,136,0.15);
  color: var(--teal-light);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 0.35rem 0.85rem;
  border-radius: 20px;
  border: 1px solid rgba(13,148,136,0.3);
  margin-bottom: 1.5rem;
}

.hero-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 3rem;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 1.25rem;
}

.hero-title .act-amber { color: var(--amber-light); }

.hero-subtitle {
  color: rgba(255,255,255,0.6);
  font-size: 1.15rem;
  line-height: 1.6;
  max-width: 540px;
  margin-bottom: 2rem;
}

.hero-cta {
  display: inline-block;
  background: var(--amber);
  color: #fff;
  font-weight: 600;
  font-size: 1rem;
  padding: 0.85rem 2rem;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.2s;
  border: none;
}

.hero-cta:hover {
  background: #B45309;
  color: #fff;
  transform: translateY(-1px);
}

.hero-cta-secondary {
  display: inline-block;
  color: rgba(255,255,255,0.7);
  font-weight: 500;
  font-size: 0.95rem;
  padding: 0.85rem 1.5rem;
  text-decoration: none;
  transition: color 0.2s;
}

.hero-cta-secondary:hover { color: #fff; }

.hero-stats {
  margin-top: 3rem;
  display: flex;
  gap: 2.5rem;
}

.hero-stat-number {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.75rem;
  color: var(--teal-light);
}

.hero-stat-label {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.45);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* ---------- Section Styles ---------- */
.section-padding { padding: 5rem 0; }
.section-padding-sm { padding: 3.5rem 0; }

.bg-white-section { background: #fff; }
.bg-warmgray { background: var(--warmgray); }
.bg-navy-section { background: var(--navy); color: #fff; }

.section-label {
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--teal);
  margin-bottom: 0.75rem;
}

.section-heading {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 2.25rem;
  color: var(--navy);
  margin-bottom: 1rem;
  line-height: 1.2;
}

.section-subheading {
  font-size: 1.05rem;
  color: var(--muted);
  max-width: 640px;
  line-height: 1.6;
}

/* ---------- Trust Bar ---------- */
.trust-bar {
  background: #fff;
  border-bottom: 1px solid var(--border);
  padding: 1.5rem 0;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--muted);
}

.trust-icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}

.trust-icon-teal { background: var(--teal-bg); color: var(--teal); }
.trust-icon-amber { background: var(--amber-bg); color: var(--amber); }
.trust-icon-navy { background: #EFF6FF; color: var(--navy); }

/* ---------- Feature / About Cards ---------- */
.about-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 2rem;
  height: 100%;
  transition: all 0.2s;
}

.about-card:hover {
  border-color: var(--teal);
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}

.about-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  margin-bottom: 1.25rem;
}

.about-icon-teal { background: var(--teal-bg); color: var(--teal); }
.about-icon-amber { background: var(--amber-bg); color: var(--amber); }
.about-icon-navy { background: #EFF6FF; color: var(--navy); }
.about-icon-blue { background: #EFF6FF; color: var(--blue); }

.about-card h4 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.1rem;
  color: var(--navy);
  margin-bottom: 0.75rem;
}

.about-card p {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 0;
}

/* ---------- Module / Course Cards ---------- */
.module-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  height: 100%;
  transition: all 0.2s;
}

.module-card:hover {
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}

.module-header {
  padding: 1.5rem 1.5rem 1rem;
  border-bottom: 1px solid var(--border);
}

.module-level-badge {
  display: inline-block;
  padding: 0.25rem 0.65rem;
  border-radius: 20px;
  font-size: 0.65rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 0.75rem;
}

.level-awareness  { background: #CCFBF1; color: var(--teal); }
.level-professional { background: #DBEAFE; color: var(--blue); }
.level-governance { background: #FEF3C7; color: var(--amber); }

.module-header h4 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.15rem;
  color: var(--navy);
  margin-bottom: 0.35rem;
}

.module-meta {
  font-size: 0.8rem;
  color: var(--muted);
}

.module-body {
  padding: 1.25rem 1.5rem;
}

.module-body ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.module-body li {
  font-size: 0.875rem;
  color: var(--anthracite);
  padding: 0.4rem 0;
  padding-left: 1.25rem;
  position: relative;
}

.module-body li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--teal);
  font-weight: 700;
  font-size: 0.8rem;
}

/* ---------- Process / Steps ---------- */
.step-number {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--teal);
  color: #fff;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.step-content h5 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1rem;
  color: var(--navy);
  margin-bottom: 0.25rem;
}

.step-content p {
  font-size: 0.875rem;
  color: var(--muted);
  margin-bottom: 0;
}

.step-connector {
  width: 2px;
  height: 24px;
  background: var(--border);
  margin-left: 19px;
}

/* ---------- Pricing Cards ---------- */
.pricing-card {
  background: #fff;
  border: 2px solid var(--border);
  border-radius: 12px;
  padding: 2rem;
  height: 100%;
  transition: all 0.2s;
  position: relative;
}

.pricing-card.featured {
  border-color: var(--teal);
  box-shadow: 0 8px 30px rgba(13,148,136,0.1);
}

.pricing-popular {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--teal);
  color: #fff;
  font-size: 0.65rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 0.25rem 1rem;
  border-radius: 20px;
}

.pricing-name {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.1rem;
  color: var(--navy);
  margin-bottom: 0.35rem;
}

.pricing-desc {
  font-size: 0.8rem;
  color: var(--muted);
  margin-bottom: 1.25rem;
}

.pricing-price {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 2.5rem;
  color: var(--navy);
  line-height: 1;
  margin-bottom: 0.25rem;
}

.pricing-price .currency {
  font-size: 1.25rem;
  vertical-align: top;
  margin-right: 2px;
}

.pricing-price .period {
  font-size: 0.85rem;
  font-weight: 400;
  color: var(--muted);
}

.pricing-per {
  font-size: 0.8rem;
  color: var(--muted);
  margin-bottom: 1.5rem;
}

.pricing-features {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem 0;
}

.pricing-features li {
  font-size: 0.85rem;
  color: var(--anthracite);
  padding: 0.4rem 0;
  padding-left: 1.5rem;
  position: relative;
}

.pricing-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--teal);
  font-weight: 700;
}

.btn-pricing {
  display: block;
  width: 100%;
  padding: 0.75rem;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.9rem;
  text-align: center;
  text-decoration: none;
  transition: all 0.2s;
}

.btn-pricing-primary {
  background: var(--teal);
  color: #fff;
  border: 2px solid var(--teal);
}

.btn-pricing-primary:hover {
  background: #0B7C73;
  border-color: #0B7C73;
  color: #fff;
}

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

.btn-pricing-outline:hover {
  border-color: var(--navy);
  color: var(--navy);
}

/* ---------- Markets / Flags ---------- */
.market-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1.5rem;
  text-align: center;
  height: 100%;
  transition: all 0.2s;
}

.market-card:hover {
  box-shadow: 0 4px 16px rgba(0,0,0,0.06);
}

.market-flag {
  font-size: 2.5rem;
  margin-bottom: 0.75rem;
}

.market-name {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1rem;
  color: var(--navy);
  margin-bottom: 0.25rem;
}

.market-detail {
  font-size: 0.8rem;
  color: var(--muted);
}

/* ---------- FAQ ---------- */
.faq-item {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 10px;
  margin-bottom: 0.75rem;
  overflow: hidden;
}

.faq-item .accordion-button {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--navy);
  background: #fff;
  box-shadow: none;
  padding: 1.25rem 1.5rem;
}

.faq-item .accordion-button:not(.collapsed) {
  background: #FAFAFA;
  color: var(--teal);
}

.faq-item .accordion-button::after {
  flex-shrink: 0;
}

.faq-item .accordion-body {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.7;
  padding: 0 1.5rem 1.25rem;
}

/* ---------- CTA Section ---------- */
.cta-section {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 100%);
  padding: 4rem 0;
  text-align: center;
}

.cta-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 2rem;
  color: #fff;
  margin-bottom: 1rem;
}

.cta-text {
  color: rgba(255,255,255,0.6);
  font-size: 1.05rem;
  max-width: 520px;
  margin: 0 auto 2rem;
}

/* ---------- Footer ---------- */
.footer-section {
  background: var(--navy-dark);
  padding: 3rem 0 1.5rem;
  color: rgba(255,255,255,0.5);
}

.footer-brand {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.2rem;
  color: #fff;
  margin-bottom: 0.5rem;
}

.footer-brand .act-amber { color: var(--amber-light); }

.footer-desc {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
  max-width: 300px;
  line-height: 1.6;
}

.footer-heading {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: rgba(255,255,255,0.6);
  margin-bottom: 1rem;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li { margin-bottom: 0.5rem; }

.footer-links a {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.45);
  text-decoration: none;
  transition: color 0.2s;
}

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

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  margin-top: 2rem;
  padding-top: 1.5rem;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.3);
}

/* ---------- Bars Logo (reused from branding) ---------- */
.bars-icon {
  display: flex;
  align-items: flex-end;
  gap: 5px;
}

.bars-icon .b {
  width: 10px;
  border-radius: 3px 3px 0 0;
}

.bars-icon .b1 { height: 18px; background: var(--teal); opacity: 0.5; }
.bars-icon .b2 { height: 28px; background: var(--teal); opacity: 0.75; }
.bars-icon .b3 { height: 40px; background: var(--amber); }

.bars-icon-sm .b { width: 6px; }
.bars-icon-sm .b1 { height: 10px; }
.bars-icon-sm .b2 { height: 16px; }
.bars-icon-sm .b3 { height: 23px; }

/* ---------- Certificate Preview ---------- */
.cert-preview {
  background: #fff;
  border: 2px solid var(--navy);
  border-radius: 4px;
  max-width: 560px;
  margin: 0 auto;
}

.cert-inner {
  border: 1px solid #D1D5DB;
  padding: 1.75rem;
  margin: 1.75rem;
}

.cert-title {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--navy);
}

.cert-subtitle {
  font-size: 0.7rem;
  color: var(--muted);
  letter-spacing: 1px;
  text-transform: uppercase;
}

.cert-divider {
  width: 50px;
  height: 3px;
  background: var(--teal);
  margin: 0 auto;
}

.cert-name {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--navy);
}

.cert-desc {
  font-size: 0.75rem;
  color: var(--muted);
  line-height: 1.7;
}

.cert-level {
  display: inline-block;
  padding: 0.2rem 0.65rem;
  border-radius: 20px;
  font-size: 0.6rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.cert-id {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  color: #9CA3AF;
}

.cert-date {
  font-size: 0.7rem;
  color: var(--muted);
}

.cert-logo-mini .b { width: 5px; border-radius: 2px 2px 0 0; }
.cert-logo-mini .b1 { height: 10px; }
.cert-logo-mini .b2 { height: 15px; }
.cert-logo-mini .b3 { height: 22px; }

/* ---------- Number Stats ---------- */
.stat-box {
  text-align: center;
  padding: 1.5rem;
}

.stat-number {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 2.5rem;
  color: var(--teal);
  line-height: 1;
}

.stat-label {
  font-size: 0.8rem;
  color: var(--muted);
  margin-top: 0.5rem;
}

/* ---------- Country Selector (Navbar) ---------- */
.country-selector {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  color: #fff;
  font-size: 0.8rem;
  font-weight: 500;
  padding: 0.3rem 0.65rem;
  border-radius: 6px;
  display: flex;
  align-items: center;
  gap: 0.35rem;
  transition: all 0.2s;
}

.country-selector:hover,
.country-selector:focus,
.country-selector.show {
  background: rgba(255,255,255,0.2);
  border-color: rgba(255,255,255,0.35);
  color: #fff;
}

.country-selector::after {
  border-top-color: rgba(255,255,255,0.6);
  margin-left: 0.15rem;
}

.country-flag {
  font-size: 1.1rem;
  line-height: 1;
}

.country-code {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.75rem;
  letter-spacing: 0.5px;
}

.country-dropdown {
  min-width: 220px;
  border: 1px solid var(--border);
  border-radius: 10px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.12);
  padding: 0.5rem;
  margin-top: 0.5rem !important;
}

.country-option {
  display: flex !important;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 0.75rem;
  border-radius: 6px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--anthracite);
  transition: all 0.15s;
}

.country-option:hover {
  background: var(--teal-bg);
  color: var(--navy);
}

.country-option.active {
  background: var(--teal-bg);
  color: var(--teal);
  font-weight: 600;
}

.country-option .country-flag {
  font-size: 1.2rem;
  flex-shrink: 0;
}

.country-lang {
  margin-left: auto;
  font-size: 0.7rem;
  color: var(--muted);
  font-weight: 400;
}

/* ---------- Language Suggestion Banner ---------- */
.lang-banner {
  background: var(--amber-bg);
  border-bottom: 1px solid #FDE68A;
  padding: 0.65rem 0;
  font-size: 0.85rem;
}

.lang-banner-btn-yes {
  background: var(--teal);
  color: #fff;
  font-weight: 600;
  font-size: 0.75rem;
  padding: 0.3rem 0.85rem;
  border-radius: 5px;
  text-decoration: none;
}

.lang-banner-btn-yes:hover {
  background: #0B7C73;
  color: #fff;
}

.lang-banner-btn-no {
  background: transparent;
  color: var(--muted);
  font-weight: 500;
  font-size: 0.75rem;
  padding: 0.3rem 0.85rem;
  border: 1px solid var(--border);
  border-radius: 5px;
}

.lang-banner-btn-no:hover {
  background: #fff;
  color: var(--anthracite);
}

/* ---------- Language Tabs ---------- */
.lang-tabs .nav-link {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--muted);
  border: none;
  padding: 0.5rem 1rem;
  border-radius: 8px;
}

.lang-tabs .nav-link.active {
  background: var(--teal);
  color: #fff;
}

/* ==========================================================================
   LOGO-KONZEPTE PAGE STYLES
   (Used by logo-konzepte.html)
   ========================================================================== */

/* ---------- Brand Header (Logo page) ---------- */
.brand-header {
  background: var(--navy);
  padding: 3rem 0;
}

.brand-header h1 {
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: -0.5px;
}

.brand-header .lead {
  opacity: 0.6;
}

/* ---------- Section Titles (Logo page) ---------- */
.section-title {
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--navy);
  padding-bottom: 0.75rem;
  border-bottom: 3px solid var(--teal);
  display: inline-block;
  margin-bottom: 1.75rem;
}

/* ---------- Logo Cards ---------- */
.logo-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 0.75rem;
  overflow: hidden;
  transition: box-shadow 0.2s;
}

.logo-card:hover {
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.logo-card-header {
  background: #F1F5F9;
  border-bottom: 1px solid var(--border);
  padding: 1rem 1.5rem;
}

.logo-card-header h5 {
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--navy);
  margin: 0;
}

.logo-area {
  padding: 2.5rem 1.5rem;
}

.logo-area-light {
  background: #fff;
  border-radius: 0.5rem;
}

.logo-area-dark {
  background: var(--navy);
  border-radius: 0.5rem;
}

.logo-area-muted {
  background: var(--warmgray);
  border-radius: 0.5rem;
}

.logo-description {
  background: #FAFAFA;
  border-top: 1px solid var(--border);
  padding: 1.25rem 1.5rem;
  font-size: 0.875rem;
  color: var(--muted);
}

/* ---------- Badge overrides (Logo page) ---------- */
.badge-rec {
  background: var(--teal);
  color: #fff;
  font-size: 0.65rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 0.3rem 0.65rem;
}

.badge-alt {
  background: var(--border);
  color: var(--muted);
  font-size: 0.65rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 0.3rem 0.65rem;
}

.badge-new {
  background: var(--amber);
  color: #fff;
  font-size: 0.65rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 0.3rem 0.65rem;
}

/* ---------- Logo Text ---------- */
.logo-wordmark {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 2rem;
  letter-spacing: -0.5px;
  line-height: 1.1;
}

.logo-wordmark-sm {
  font-size: 1.5rem;
}

.logo-wordmark .act-amber {
  color: var(--amber);
}

.logo-wordmark-dark { color: var(--navy); }
.logo-wordmark-dark .act-amber { color: var(--amber); }
.logo-wordmark-light { color: #fff; }
.logo-wordmark-light .act-amber { color: var(--amber-light); }

.logo-tagline {
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  margin-top: 3px;
}

.tagline-dark { color: var(--muted); }
.tagline-light { color: rgba(255,255,255,0.45); }

/* ---------- Bars Inverted ---------- */
.bars-icon-inv .b1 { height: 18px; background: var(--teal-light); opacity: 0.5; }
.bars-icon-inv .b2 { height: 28px; background: var(--teal-light); opacity: 0.75; }
.bars-icon-inv .b3 { height: 40px; background: var(--amber-light); }

/* ---------- Chevron Logo ---------- */
.chevron-icon {
  display: flex;
  gap: 3px;
}

.chevron-icon .chev {
  font-family: var(--font-display);
  font-size: 2.25rem;
  font-weight: 700;
  line-height: 1;
}

.chev-blue { color: var(--blue); }
.chev-blue-light { color: var(--blue-light); }

/* ---------- Dot Logo ---------- */
.dots-icon {
  display: flex;
  gap: 6px;
  align-items: center;
}

.dots-icon .dot {
  border-radius: 50%;
}

.dots-icon .d1 { width: 10px; height: 10px; background: var(--teal); opacity: 0.45; }
.dots-icon .d2 { width: 14px; height: 14px; background: var(--teal); opacity: 0.7; }
.dots-icon .d3 { width: 20px; height: 20px; background: var(--amber); }

.dots-icon-inv .d1 { width: 10px; height: 10px; background: var(--teal-light); opacity: 0.45; }
.dots-icon-inv .d2 { width: 14px; height: 14px; background: var(--teal-light); opacity: 0.7; }
.dots-icon-inv .d3 { width: 20px; height: 20px; background: var(--amber-light); }

/* ---------- Bracket Logo ---------- */
.bracket-mark {
  font-family: var(--font-mono);
  font-weight: 500;
}

.bracket-mark .br { opacity: 0.4; }
.bracket-mark .inner { color: var(--teal); }

/* ---------- Underline Logo ---------- */
.underline-word {
  display: inline-block;
  position: relative;
}

.underline-word::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 3px;
  border-radius: 2px;
}

.underline-word.uw-1::after { background: var(--teal); opacity: 0.4; }
.underline-word.uw-2::after { background: var(--teal); opacity: 0.7; }
.underline-word.uw-3::after { background: var(--amber); }

/* ---------- Stacked Logo ---------- */
.stacked-logo {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.5px;
}

.stacked-logo .line-1 { opacity: 0.35; }
.stacked-logo .line-2 { opacity: 0.65; }
.stacked-logo .line-3 { color: var(--amber); }

/* ---------- Shield Logo ---------- */
.shield-icon {
  width: 48px;
  height: 56px;
  flex-shrink: 0;
}

.shield-icon svg {
  width: 100%;
  height: 100%;
}

/* ---------- Monogram Logo ---------- */
.monogram-box {
  width: 52px;
  height: 52px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.5rem;
  flex-shrink: 0;
}

.monogram-box.mg-dark {
  background: var(--navy);
  color: #fff;
}

.monogram-box.mg-amber {
  background: var(--amber);
  color: #fff;
}

.monogram-box.mg-outline {
  background: transparent;
  border: 2px solid rgba(255,255,255,0.3);
  color: #fff;
}

/* ---------- Color Palette Swatches ---------- */
.swatch {
  width: 100%;
  aspect-ratio: 1.5;
  border-radius: 0.625rem;
  margin-bottom: 0.5rem;
}

.swatch-label {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--navy);
}

.swatch-hex {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--muted);
}

/* ---------- Slogan Cards ---------- */
.slogan-card {
  background: #fff;
  border-radius: 0.625rem;
  padding: 1.5rem;
  border-left: 4px solid var(--teal);
}

.slogan-market {
  font-size: 0.65rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--teal);
  margin-bottom: 0.5rem;
}

.slogan-text {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--navy);
  line-height: 1.3;
  margin-bottom: 0.4rem;
}

.slogan-context {
  font-size: 0.8rem;
  color: #9CA3AF;
}

/* ---------- Name Chips ---------- */
.name-chip {
  background: #fff;
  border: 2px solid var(--border);
  border-radius: 0.5rem;
  padding: 0.625rem 1rem;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--navy);
  transition: all 0.2s;
  display: inline-block;
}

.name-chip:hover {
  border-color: var(--teal);
  background: var(--teal-bg);
}

.name-chip.recommended {
  border-color: var(--teal);
  background: var(--teal-bg);
}

.name-chip .domain {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.65rem;
  font-weight: 400;
  color: #9CA3AF;
  margin-top: 2px;
}

.market-label {
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--teal);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 0.75rem;
}

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */

@media (max-width: 991px) {
  .hero-title { font-size: 2.25rem; }
  .section-heading { font-size: 1.75rem; }
  .hero-stats { gap: 1.5rem; }
}

@media (max-width: 767px) {
  .hero-section { padding: 4rem 0 3rem; }
  .hero-title { font-size: 1.85rem; }
  .hero-stats { flex-direction: column; gap: 0.75rem; }
  .section-padding { padding: 3rem 0; }
  .pricing-price { font-size: 2rem; }
  .cert-inner { padding: 1rem; margin: 1rem; }
  .logo-wordmark { font-size: 1.5rem; }
}
