/* ═══════════════════════════════════════════
   BANKLY — style.css
   banklyconsulting.com
═══════════════════════════════════════════ */

/* ── VARIABLES ── */
:root {
  --bk:  #0A0A0A;
  --bk2: #1A1A1A;
  --bk3: #262626;
  --gd:  #C9A84C;
  --gdl: #F0D080;
  --gdp: #FDF8EC;
  --gdm: rgba(201,168,76,0.12);
  --wh:  #FFFFFF;
  --ow:  #F8F6F0;
  --tx:  #1A1A1A;
  --gy:  #6B7280;
  --gl:  #E5E1D8;
  --gr:  #16A34A;
  --grb: #DCFCE7;
  --grd: #0A2A0F;
  --bl:  #2563EB;
  --blb: #DBEAFE;
  --bld: #0A1A3A;
  --am:  #D97706;
  --amb: #FEF3C7;
  --wa:  #25D366;
}

/* ── RESET & BASE ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Source Sans 3', sans-serif;
  color: var(--tx);
  background: var(--ow);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ── TYPOGRAPHY ── */
h1, h2, h3, h4 { font-family: 'Playfair Display', serif; line-height: 1.15; }
h1 { font-size: clamp(32px, 5vw, 58px); }
h2 { font-size: clamp(24px, 3.5vw, 36px); }
h3 { font-size: clamp(18px, 2.5vw, 24px); }
h4 { font-size: 16px; }
p  { font-size: 15px; line-height: 1.7; }

/* ── LOGO ── */
.logo {
  display: flex;
  flex-direction: column;
  line-height: 1;
  text-decoration: none;
}
.logo-name {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 20px;
  color: var(--gd);
  letter-spacing: 1px;
}
.logo-rule {
  height: 1px;
  background: var(--gd);
  margin: 3px 0;
}
.logo-tag {
  font-family: 'Source Sans 3', sans-serif;
  font-size: 8px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  font-weight: 400;
}
.logo-tag.dark { color: rgba(10,10,10,0.45); }

/* ── NAVIGATION ── */
.nav {
  position: sticky;
  top: 0;
  z-index: 200;
  background: var(--bk);
  border-bottom: 2px solid var(--gd);
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 40px;
}
.nav-links {
  display: flex;
  gap: 28px;
  align-items: center;
}
.nav-links a {
  font-size: 13px;
  font-weight: 500;
  color: rgba(255,255,255,0.6);
  transition: color 0.2s;
  padding: 4px 0;
  position: relative;
}
.nav-links a:not(.nav-cta)::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gd);
  transition: width 0.22s ease;
}
.nav-links a:not(.nav-cta):hover::after,
.nav-links a:not(.nav-cta).active::after { width: 100%; }
.nav-links a:hover,
.nav-links a.active { color: var(--gd); }
.nav-cta {
  background: var(--gd);
  color: var(--bk) !important;
  padding: 8px 18px !important;
  border-radius: 8px;
  font-weight: 700 !important;
  font-size: 13px;
  transition: background 0.2s !important;
  white-space: nowrap;
}
.nav-cta:hover { background: var(--gdl) !important; color: var(--bk) !important; }
.nav-cta::after { display: none !important; }
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
  background: none;
  border: none;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--wh);
  border-radius: 2px;
  transition: all 0.2s;
}
.mobile-nav {
  display: none;
  position: absolute;
  top: 64px;
  left: 0;
  right: 0;
  background: var(--bk2);
  border-bottom: 2px solid var(--gd);
  z-index: 199;
  padding: 16px 20px;
  flex-direction: column;
  gap: 4px;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  color: rgba(255,255,255,0.7);
  font-size: 14px;
  font-weight: 500;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: color 0.2s;
}
.mobile-nav a:last-child { border-bottom: none; }
.mobile-nav a:hover,
.mobile-nav a.active { color: var(--gd); }

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 11px 24px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  font-family: 'Source Sans 3', sans-serif;
  cursor: pointer;
  border: none;
  transition: all 0.2s;
  text-decoration: none;
  line-height: 1;
}
.btn-gold { background: var(--gd); color: var(--bk); }
.btn-gold:hover { background: var(--gdl); }
.btn-outline { background: transparent; color: var(--gd); border: 1.5px solid var(--gd); }
.btn-outline:hover { background: var(--gdm); }
.btn-dark { background: var(--bk); color: var(--wh); }
.btn-dark:hover { background: var(--bk2); }
.btn-green { background: var(--wa); color: var(--wh); }
.btn-green:hover { background: #22c55e; }
.btn-sm { padding: 8px 16px; font-size: 13px; }
.btn-lg { padding: 14px 32px; font-size: 15px; }

/* ── SECTIONS ── */
.section { padding: 72px 40px; }
.section-inner { max-width: 1000px; margin: 0 auto; }
.section-tag {
  font-size: 10px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gd);
  font-weight: 700;
  margin-bottom: 10px;
  font-family: 'Source Sans 3', sans-serif;
}
.section-title { color: var(--bk); margin-bottom: 12px; }
.section-title.white { color: var(--wh); }
.section-sub { font-size: 15px; color: var(--gy); max-width: 580px; margin-bottom: 36px; }
.section-sub.white { color: rgba(255,255,255,0.45); }
.text-center { text-align: center; }
.text-center .section-sub { margin-left: auto; margin-right: auto; }

/* ── HERO ── */
.hero {
  min-height: 100vh;
  background: var(--bk);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 100px 40px 80px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 50%, rgba(201,168,76,0.07) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(201,168,76,0.05) 0%, transparent 40%),
    radial-gradient(circle at 60% 80%, rgba(201,168,76,0.04) 0%, transparent 35%);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='60' height='60'%3E%3Ccircle cx='1' cy='1' r='1' fill='rgba(201,168,76,0.12)'/%3E%3C/svg%3E");
  background-size: 60px 60px;
  pointer-events: none;
}
.hero-inner { position: relative; z-index: 1; max-width: 760px; }
.hero-tag {
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gd);
  font-weight: 700;
  margin-bottom: 16px;
  font-family: 'Source Sans 3', sans-serif;
}
.hero h1 { color: var(--wh); margin-bottom: 20px; }
.hero h1 em { color: var(--gd); font-style: italic; }
.hero-sub { font-size: 18px; color: rgba(255,255,255,0.5); margin-bottom: 36px; line-height: 1.7; }
.hero-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-bottom: 40px; }
.hero-chips {
  display: flex;
  gap: 0;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}
.hero-chip {
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gd);
  font-weight: 600;
  padding: 0 16px;
}
.hero-chip-div { width: 1px; height: 14px; background: rgba(201,168,76,0.4); }

/* PAGE HERO (smaller — not full viewport) */
.page-hero {
  background: var(--bk);
  padding: 72px 40px 56px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  right: -80px; bottom: -80px;
  width: 350px; height: 350px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201,168,76,0.05) 0%, transparent 70%);
  pointer-events: none;
}
.page-hero h1 { color: var(--wh); margin-bottom: 14px; font-size: clamp(28px,4vw,48px); }
.page-hero h1 em { color: var(--gd); font-style: italic; }
.page-hero .sub { font-size: 17px; color: rgba(255,255,255,0.5); max-width:580px; margin: 0 auto 28px; line-height: 1.7; }
.hero-badges { display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; margin-top: 8px; }
.badge {
  border-radius: 20px;
  padding: 6px 16px;
  font-size: 12px;
  font-weight: 600;
  border: 1.5px solid;
  font-family: 'Source Sans 3', sans-serif;
}
.badge-gold { border-color: var(--gd); color: var(--gd); }
.badge-green { border-color: var(--gr); color: var(--gr); }
.badge-blue { border-color: var(--bl); color: var(--bl); }

/* ── CARDS ── */
.card {
  background: var(--wh);
  border: 1.5px solid var(--gl);
  border-radius: 12px;
  padding: 24px;
  transition: transform 0.2s, box-shadow 0.2s;
}
.card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(201,168,76,0.15);
}
.card-dark {
  background: var(--bk);
  border: none;
  border-left: 3px solid var(--gd);
  border-radius: 12px;
  padding: 28px;
  transition: transform 0.2s, box-shadow 0.2s;
}
.card-dark:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(201,168,76,0.12);
}

/* ── GRID HELPERS ── */
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.grid-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.grid-4 { display: grid; grid-template-columns: repeat(4,1fr); gap: 16px; }

/* ── CHIPS ── */
.chip {
  display: inline-block;
  border: 1.5px solid var(--gd);
  color: var(--gd);
  background: rgba(201,168,76,0.06);
  border-radius: 20px;
  padding: 8px 18px;
  font-size: 13px;
  font-weight: 600;
  font-family: 'Source Sans 3', sans-serif;
}
.chip-row { display: flex; flex-wrap: wrap; gap: 10px; }
.chip-light {
  background: var(--wh);
  border: 1.5px solid var(--gl);
  color: var(--tx);
  border-radius: 20px;
  padding: 8px 18px;
  font-size: 13px;
  font-weight: 500;
}

/* ── BULLET LIST ── */
.bul-list { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.bul-list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 14px;
  color: #374151;
  line-height: 1.6;
}
.bul-list li::before {
  content: '';
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--gd);
  flex-shrink: 0;
  margin-top: 7px;
}
.bul-list.white li { color: rgba(255,255,255,0.75); }
.bul-list.white li::before { background: var(--gd); }
.bul-list.green li::before { background: var(--gr); }

/* ── DOMAIN GROUPS ── */
.domain-group { border-radius: 12px; overflow: hidden; margin-bottom: 4px; }
.domain-group-hdr {
  padding: 12px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.domain-group-hdr h4 { font-size: 14px; font-weight: 700; color: var(--bk); font-family: 'Playfair Display', serif; }
.domain-badge { font-size: 11px; font-weight: 600; color: var(--gy); }
.domain-hdr-tf { background: var(--amb); }
.domain-hdr-retail { background: var(--grb); }
.domain-hdr-commercial { background: var(--blb); }
.domain-body { background: rgba(255,255,255,0.04); padding: 14px 18px; }
.domain-body.light { background: rgba(0,0,0,0.02); }
.domain-grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 4px 16px; }
.domain-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  padding: 5px 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.domain-item:last-child { border-bottom: none; }
.domain-item.light { border-bottom-color: rgba(0,0,0,0.05); color: var(--tx); }
.domain-item::before {
  content: '';
  width: 5px; height: 5px;
  border-radius: 50%;
  flex-shrink: 0;
}
.tf .domain-item { color: rgba(255,255,255,0.8); }
.tf .domain-item::before { background: var(--gd); }
.retail .domain-item { color: rgba(255,255,255,0.8); }
.retail .domain-item::before { background: var(--gr); }
.commercial .domain-item { color: rgba(255,255,255,0.8); }
.commercial .domain-item::before { background: var(--bl); }
.tf-light .domain-item::before { background: var(--gd); }
.retail-light .domain-item::before { background: var(--gr); }
.commercial-light .domain-item::before { background: var(--bl); }

/* ── SERVICES LIST ── */
.services-list { border-radius: 14px; overflow: hidden; border: 1.5px solid var(--gl); }
.service-row {
  display: grid;
  grid-template-columns: 52px 1fr auto;
  align-items: center;
  padding: 18px 20px;
  gap: 16px;
  border-bottom: 1px solid var(--gl);
  transition: background 0.15s;
}
.service-row:last-child { border-bottom: none; }
.service-row:nth-child(odd) { background: var(--wh); }
.service-row:nth-child(even) { background: var(--ow); }
.service-row:hover { background: var(--gdp); }
.service-num {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--gd);
  color: var(--bk);
  font-size: 13px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-family: 'Source Sans 3', sans-serif;
}
.service-body h4 { font-size: 14px; font-weight: 700; color: var(--bk); margin-bottom: 3px; font-family: 'Source Sans 3', sans-serif; }
.service-body p  { font-size: 13px; color: var(--gy); line-height: 1.5; }
.service-tag {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  background: var(--gdp);
  color: var(--am);
  border-radius: 20px;
  padding: 3px 10px;
  white-space: nowrap;
}

/* ── TABLE ── */
.tc-table { width: 100%; border-collapse: collapse; border-radius: 12px; overflow: hidden; }
.tc-table thead tr { background: var(--bk2); }
.tc-table thead th { padding: 12px 14px; text-align: left; font-size: 12px; font-weight: 700; color: var(--gd); font-family: 'Source Sans 3', sans-serif; letter-spacing: 0.5px; }
.tc-table tbody tr:nth-child(odd)  { background: var(--ow); }
.tc-table tbody tr:nth-child(even) { background: var(--wh); }
.tc-table tbody tr:hover { background: var(--gdp); }
.tc-table td { padding: 14px 14px; font-size: 13px; color: var(--tx); line-height: 1.5; vertical-align: top; }
.tc-table td:first-child { font-family: 'Source Sans 3', sans-serif; font-weight: 700; color: var(--gd); font-size: 12px; white-space: nowrap; }
.tc-badge {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  border-radius: 20px;
  padding: 2px 8px;
  white-space: nowrap;
}
.tc-pos { background: var(--grb); color: var(--gr); }
.tc-neg { background: #FEE2E2; color: var(--am); }
.tc-edge { background: #EDE9FE; color: #7C3AED; }
.tc-crit { background: #FEE2E2; color: #DC2626; }
.tc-med  { background: var(--blb); color: var(--bl); }

/* ── CURRICULUM TABLE ── */
.curr-table { width: 100%; border-collapse: collapse; }
.curr-table tr:nth-child(odd)  td { background: var(--ow); }
.curr-table tr:nth-child(even) td { background: var(--wh); }
.curr-table td { padding: 14px 16px; font-size: 14px; border-bottom: 1px solid var(--gl); }
.curr-table tr:last-child td { border-bottom: none; }
.curr-id { font-weight: 700; color: var(--gd); width: 44px; font-family: 'Source Sans 3', sans-serif; }
.curr-name { font-weight: 600; color: var(--bk); }
.curr-desc { color: var(--gy); font-size: 13px; }

/* ── ACCORDION / FAQ ── */
.faq-list { display: flex; flex-direction: column; gap: 8px; }
.faq-item { background: var(--wh); border: 1.5px solid var(--gl); border-radius: 10px; overflow: hidden; }
.faq-q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 20px;
  cursor: pointer;
  font-size: 15px;
  font-weight: 600;
  color: var(--bk);
  gap: 12px;
  transition: background 0.2s;
}
.faq-q:hover { background: var(--gdp); }
.faq-chevron {
  flex-shrink: 0;
  color: var(--gd);
  font-size: 14px;
  transition: transform 0.25s;
}
.faq-item.open .faq-chevron { transform: rotate(180deg); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}
.faq-a-inner { padding: 0 20px 18px; font-size: 14px; color: var(--gy); line-height: 1.7; }

/* ── CONTACT FORM ── */
.form-group { margin-bottom: 18px; }
.form-label { display: block; font-size: 13px; font-weight: 600; color: var(--bk); margin-bottom: 6px; }
.form-input, .form-select, .form-textarea {
  width: 100%;
  padding: 11px 14px;
  font-size: 14px;
  font-family: 'Source Sans 3', sans-serif;
  border: 1.5px solid var(--gl);
  border-radius: 8px;
  background: var(--wh);
  color: var(--tx);
  transition: border-color 0.2s;
  outline: none;
}
.form-input:focus, .form-select:focus, .form-textarea:focus { border-color: var(--gd); }
.form-textarea { resize: vertical; min-height: 120px; }
.form-success {
  display: none;
  background: var(--gdp);
  border: 1.5px solid var(--gd);
  border-radius: 10px;
  padding: 24px;
  text-align: center;
  font-size: 15px;
  color: var(--bk);
  line-height: 1.7;
}
.form-success strong { color: var(--gd); }

/* ── FORMAT CARDS ── */
.format-card {
  border-radius: 14px;
  padding: 28px;
  border-left: 4px solid;
  transition: transform 0.2s, box-shadow 0.2s;
}
.format-card:hover { transform: translateY(-3px); box-shadow: 0 8px 28px rgba(0,0,0,0.2); }
.format-card.html { background: var(--bk); border-color: var(--gd); }
.format-card.sheets { background: var(--grd); border-color: var(--gr); }
.format-card h3 { font-size: 18px; margin-bottom: 16px; }
.format-card.html h3 { color: var(--gd); }
.format-card.sheets h3 { color: var(--gr); }

/* ── DELIVERY MODE CARDS ── */
.mode-card {
  border-radius: 14px;
  padding: 32px;
  border-left: 5px solid;
  margin-bottom: 16px;
  transition: transform 0.2s;
}
.mode-card:hover { transform: translateY(-2px); }
.mode-card.online { background: var(--bk); border-color: var(--gd); }
.mode-card.virtual { background: var(--bld); border-color: var(--bl); }
.mode-card.onsite { background: var(--grd); border-color: var(--gr); }
.mode-header { display: flex; align-items: center; gap: 14px; margin-bottom: 16px; flex-wrap: wrap; }
.mode-icon { font-size: 32px; }
.mode-title { font-family: 'Playfair Display', serif; font-size: 20px; }
.mode-card.online .mode-title { color: var(--gd); }
.mode-card.virtual .mode-title { color: #93C5FD; }
.mode-card.onsite .mode-title { color: var(--grb); }
.mode-brand {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border-radius: 20px;
  padding: 3px 10px;
}
.mode-card.online .mode-brand { background: var(--gdm); color: var(--gd); }
.mode-card.virtual .mode-brand { background: rgba(37,99,235,0.15); color: #93C5FD; }
.mode-card.onsite .mode-brand { background: rgba(22,163,74,0.15); color: var(--grb); }
.mode-ideal { margin-top: 12px; padding: 8px 12px; border-radius: 8px; font-size: 12px; font-weight: 600; }
.mode-card.online .mode-ideal { background: var(--gdm); color: var(--gdl); }
.mode-card.virtual .mode-ideal { background: rgba(37,99,235,0.12); color: #93C5FD; }
.mode-card.onsite .mode-ideal { background: rgba(22,163,74,0.12); color: var(--grb); }

/* ── ENGAGEMENT MODEL CARDS ── */
.eng-card {
  background: var(--wh);
  border: 1.5px solid var(--gl);
  border-top: 3px solid var(--gd);
  border-radius: 0 0 12px 12px;
  padding: 22px;
  transition: transform 0.2s, box-shadow 0.2s;
}
.eng-card:hover { transform: translateY(-3px); box-shadow: 0 8px 24px rgba(201,168,76,0.12); }
.eng-card h4 { font-family: 'Playfair Display', serif; font-size: 16px; color: var(--bk); margin-bottom: 8px; }
.eng-card p  { font-size: 13px; color: var(--gy); line-height: 1.6; }

/* ── CREDENTIAL CARDS ── */
.cred-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  padding: 20px;
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.cred-icon { font-size: 22px; flex-shrink: 0; }
.cred-card p { font-size: 14px; color: rgba(255,255,255,0.7); line-height: 1.6; }
.cred-card p strong { color: var(--wh); display: block; margin-bottom: 4px; }

/* ── WHAT ITEM CARDS ── */
.what-card {
  background: var(--wh);
  border: 1px solid var(--gl);
  border-radius: 10px;
  padding: 18px;
  display: flex;
  gap: 12px;
  align-items: flex-start;
}
.what-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--gd); flex-shrink: 0; margin-top: 6px; }
.what-card p { font-size: 14px; color: #374151; line-height: 1.6; }

/* ── SAMPLE BOX ── */
.sample-box {
  background: var(--gdp);
  border-left: 4px solid var(--gd);
  border-radius: 0 12px 12px 0;
  padding: 24px;
}
.sample-box h3 { font-family: 'Playfair Display', serif; font-size: 18px; color: var(--bk); margin-bottom: 8px; }
.sample-box p  { font-size: 14px; color: var(--gy); margin-bottom: 16px; line-height: 1.6; }

/* ── PRICING BOX ── */
.pricing-box {
  background: var(--bk);
  border-radius: 14px;
  padding: 36px;
  text-align: center;
}
.pricing-box p { color: var(--gd); font-size: 10px; letter-spacing: 2px; text-transform: uppercase; font-weight: 700; margin-bottom: 8px; }
.pricing-box h3 { font-family: 'Playfair Display', serif; font-size: 22px; color: var(--wh); margin-bottom: 6px; }
.pricing-box .sub { font-size: 13px; color: rgba(255,255,255,0.4); margin-bottom: 20px; }

/* ── CTA BANNER ── */
.cta-banner { background: var(--bk); padding: 64px 40px; text-align: center; }
.cta-banner h2 { color: var(--wh); margin-bottom: 10px; }
.cta-banner p  { color: var(--gy); margin-bottom: 28px; font-size: 15px; }

/* ── DISCOVERY CTA ── */
.discovery {
  background: var(--gdp);
  border-radius: 16px;
  padding: 52px 40px;
  text-align: center;
}
.discovery-icon { font-size: 40px; margin-bottom: 16px; }
.discovery h2 { color: var(--bk); margin-bottom: 12px; }
.discovery p { font-size: 16px; color: var(--gy); max-width: 480px; margin: 0 auto 28px; line-height: 1.7; }
.discovery .promise { font-size: 13px; color: var(--gy); margin-top: 14px; }

/* ── BOOKING CTA ── */
.booking-cta { background: var(--gd); border-radius: 14px; padding: 44px 40px; text-align: center; }
.booking-cta h2 { font-family: 'Playfair Display', serif; font-size: clamp(22px,3vw,30px); color: var(--bk); margin-bottom: 10px; }
.booking-cta p { font-size: 15px; color: rgba(0,0,0,0.55); margin-bottom: 24px; }
.booking-cta .share { font-size: 13px; color: rgba(0,0,0,0.4); margin-bottom: 20px; }

/* ── INTL STRIP ── */
.intl-strip { background: var(--bk2); border-top: 1px solid rgba(255,255,255,0.06); border-bottom: 1px solid rgba(255,255,255,0.06); padding: 18px 40px; }
.intl-inner { max-width: 1000px; margin: 0 auto; display: flex; align-items: center; gap: 20px; flex-wrap: wrap; }
.intl-label { font-size: 10px; letter-spacing: 2px; text-transform: uppercase; color: rgba(255,255,255,0.3); flex-shrink: 0; font-weight: 700; }
.intl-chips { display: flex; gap: 8px; flex-wrap: wrap; }
.intl-chip { font-size: 12px; color: rgba(255,255,255,0.45); border: 1px solid rgba(255,255,255,0.1); border-radius: 20px; padding: 3px 12px; }

/* ── WHO CARDS ── */
.who-card {
  background: var(--wh);
  border: 1.5px solid var(--gl);
  border-left: 4px solid var(--gd);
  border-radius: 0 10px 10px 0;
  padding: 16px 18px;
}
.who-card h4 { font-size: 14px; font-weight: 700; color: var(--bk); margin-bottom: 4px; font-family: 'Source Sans 3', sans-serif; }
.who-card p  { font-size: 13px; color: var(--gy); line-height: 1.5; }

/* ── PACK CONTENT CARDS ── */
.pack-content-card { background: var(--wh); border: 1.5px solid var(--gl); border-radius: 12px; padding: 22px; text-align: center; transition: transform 0.2s, box-shadow 0.2s; }
.pack-content-card:hover { transform: translateY(-3px); box-shadow: 0 6px 20px rgba(201,168,76,0.12); }
.pack-content-card .icon { font-size: 28px; margin-bottom: 10px; }
.pack-content-card h4 { font-size: 13px; font-weight: 700; color: var(--bk); margin-bottom: 6px; font-family: 'Source Sans 3', sans-serif; }
.pack-content-card p  { font-size: 12px; color: var(--gy); line-height: 1.5; }

/* ── SCREENSHOT GALLERY ── */
.screenshot-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.screenshot-box { border-radius: 10px; overflow: hidden; border: 1px dashed var(--gd); background: var(--bk2); }
.screenshot-box img { width: 100%; height: 220px; object-fit: cover; display: block; }
.screenshot-caption { padding: 10px 14px; font-size: 13px; color: var(--gy); text-align: center; background: var(--bk); }

/* ── OVERVIEW CARDS (samples) ── */
.overview-card {
  background: var(--ow);
  border-top: 3px solid var(--gd);
  border-radius: 0 0 12px 12px;
  padding: 22px;
  transition: transform 0.2s, box-shadow 0.2s;
}
.overview-card:hover { transform: translateY(-3px); box-shadow: 0 8px 24px rgba(201,168,76,0.12); }
.overview-card .ov-icon { font-size: 28px; margin-bottom: 10px; }
.overview-card h4 { font-family: 'Source Sans 3', sans-serif; font-size: 16px; font-weight: 700; color: var(--bk); margin-bottom: 8px; }
.overview-card p  { font-size: 13px; color: var(--gy); margin-bottom: 16px; line-height: 1.6; }
.overview-btns { display: flex; gap: 8px; flex-wrap: wrap; }

/* ── CONTACT CARD ── */
.contact-card { background: var(--bk); border: 1.5px solid var(--gd); border-radius: 14px; padding: 28px; }
.contact-card .c-item { display: flex; align-items: center; gap: 10px; padding: 10px 0; border-bottom: 1px solid rgba(255,255,255,0.07); }
.contact-card .c-item:last-of-type { border-bottom: none; }
.contact-card .c-item span { font-size: 18px; }
.contact-card .c-item a { font-size: 14px; color: var(--gd); font-weight: 600; }
.contact-card .c-item p { font-size: 14px; color: rgba(255,255,255,0.6); }
.contact-card .c-div { height: 1px; background: rgba(255,255,255,0.08); margin: 12px 0; }
.contact-card .c-note { font-size: 13px; color: rgba(255,255,255,0.45); padding: 6px 0; display: flex; align-items: center; gap: 8px; }

/* ── FOOTER ── */
.footer { background: var(--bk); border-top: 2px solid var(--gd); padding: 48px 40px 28px; }
.footer-inner { max-width: 1000px; margin: 0 auto; display: grid; grid-template-columns: 1.2fr 1fr 1fr; gap: 48px; margin-bottom: 32px; }
.footer-brand .tagline { font-size: 12px; color: rgba(255,255,255,0.3); margin-top: 8px; line-height: 1.5; }
.footer-brand .copy { font-size: 11px; color: rgba(255,255,255,0.2); margin-top: 12px; }
.footer-col h5 { font-size: 10px; letter-spacing: 2px; text-transform: uppercase; color: rgba(255,255,255,0.3); margin-bottom: 14px; font-weight: 700; font-family: 'Source Sans 3', sans-serif; }
.footer-col a { display: block; color: rgba(255,255,255,0.5); font-size: 13px; margin-bottom: 8px; transition: color 0.2s; }
.footer-col a:hover { color: var(--gd); }
.footer-col .wa-btn { display: inline-flex; align-items: center; gap: 6px; background: var(--wa); color: var(--wh); border-radius: 8px; padding: 8px 14px; font-size: 13px; font-weight: 600; margin-top: 4px; transition: background 0.2s; }
.footer-col .wa-btn:hover { background: #22c55e; color: var(--wh); }
.footer-disc { max-width: 1000px; margin: 0 auto; padding-top: 20px; border-top: 1px solid rgba(255,255,255,0.06); font-size: 11px; color: rgba(255,255,255,0.2); text-align: center; line-height: 1.6; }

/* ── DOMAIN PAGE STYLES ── */
.domain-card {
  background: var(--wh);
  border: 1.5px solid var(--gl);
  border-radius: 12px;
  padding: 22px;
  transition: transform 0.2s, box-shadow 0.2s;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.domain-card:hover { transform: translateY(-3px); box-shadow: 0 8px 24px rgba(201,168,76,0.12); }
.domain-card-hdr { display: flex; align-items: center; justify-content: space-between; gap: 10px; }
.domain-card-title { font-family: 'Playfair Display', serif; font-size: 16px; color: var(--bk); }
.domain-card-desc { font-size: 13px; color: var(--gy); line-height: 1.6; }
.domain-card-link { font-size: 13px; font-weight: 600; color: var(--gd); margin-top: auto; }
.status-live { display: inline-block; background: var(--bk); color: var(--gd); font-size: 10px; font-weight: 700; padding: 3px 10px; border-radius: 20px; letter-spacing: 0.5px; }
.status-next { display: inline-block; background: #DBEAFE; color: #1E3A6E; font-size: 10px; font-weight: 700; padding: 3px 10px; border-radius: 20px; }
.status-soon { display: inline-block; background: var(--ow); border: 1px solid var(--gl); color: var(--gy); font-size: 10px; font-weight: 700; padding: 3px 10px; border-radius: 20px; }

/* ── DISCLOSURE BOX ── */
.disc-box {
  background: var(--gdp);
  border-left: 3px solid var(--gd);
  border-radius: 0 8px 8px 0;
  padding: 14px 18px;
  font-size: 13px;
  color: #4B3B0A;
  line-height: 1.6;
}
.disc-box strong { color: var(--bk); }

/* ── PROCESS FLOW ── */
.flow-steps { display: flex; flex-direction: column; gap: 0; }
.flow-step { display: flex; gap: 20px; align-items: flex-start; padding: 18px 0; border-bottom: 1px solid var(--gl); }
.flow-step:last-child { border-bottom: none; }
.flow-num { width: 36px; height: 36px; border-radius: 50%; background: var(--gd); color: var(--bk); font-size: 14px; font-weight: 700; display: flex; align-items: center; justify-content: center; flex-shrink: 0; font-family: 'Source Sans 3', sans-serif; }
.flow-body h4 { font-size: 15px; font-weight: 700; color: var(--bk); margin-bottom: 4px; font-family: 'Source Sans 3', sans-serif; }
.flow-body p { font-size: 13px; color: var(--gy); line-height: 1.6; }

/* ── WHATSAPP FLOATING ── */
.wa-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 999;
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--wa);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  box-shadow: 0 4px 16px rgba(37,211,102,0.35);
  transition: transform 0.2s, box-shadow 0.2s;
  text-decoration: none;
}
.wa-float:hover { transform: scale(1.08); box-shadow: 0 6px 24px rgba(37,211,102,0.45); }

/* ── DIVIDER ── */
.divider { height: 1px; background: var(--gl); margin: 0; }

/* ── UTIL ── */
.mt-8  { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mt-40 { margin-top: 40px; }
.mb-8  { margin-bottom: 8px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-32 { margin-bottom: 32px; }
.gap-12 { gap: 12px; }

/* ══════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════ */
@media (max-width: 768px) {
  .nav { padding: 0 20px; }
  .nav-links { display: none; }
  .hamburger { display: flex; }

  .hero { padding: 80px 20px 64px; }
  .page-hero { padding: 56px 20px 44px; }
  .section { padding: 52px 20px; }
  .cta-banner { padding: 52px 20px; }
  .footer { padding: 40px 20px 24px; }
  .footer-inner { grid-template-columns: 1fr; gap: 28px; }
  .intl-strip { padding: 16px 20px; }
  .discovery { padding: 40px 24px; }
  .booking-cta { padding: 36px 24px; }

  .grid-2 { grid-template-columns: 1fr; }
  .grid-3 { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: 1fr 1fr; }
  .domain-grid-2 { grid-template-columns: 1fr; }
  .screenshot-grid { grid-template-columns: 1fr; }
  .service-row { grid-template-columns: 40px 1fr; }
  .service-tag { display: none; }
  .hero-btns { flex-direction: column; align-items: center; }
  .overview-btns { flex-direction: column; }
}

@media (max-width: 480px) {
  .grid-4 { grid-template-columns: 1fr; }
  h1 { font-size: 30px; }
  h2 { font-size: 24px; }
}

/* ── THREE FORMAT CARDS ── */
.format-card-new {
  background: var(--wh);
  border: 1.5px solid var(--gl);
  border-radius: 12px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: transform 0.2s, box-shadow 0.2s;
}
.format-card-new:hover { transform: translateY(-3px); box-shadow: 0 8px 24px rgba(201,168,76,0.12); }
.format-card-new .format-icon { font-size: 28px; }
.format-card-new h3 { font-family: 'Playfair Display', serif; font-size: 18px; color: var(--bk); }
.format-card-new .format-for { font-size: 11px; font-weight: 700; color: var(--gd); text-transform: uppercase; letter-spacing: 0.8px; }
.format-bundle { border-color: var(--gd); border-width: 2px; background: linear-gradient(135deg, var(--wh) 0%, var(--gdp) 100%); }
.pack-content-card { background: var(--ow); border-radius: 10px; padding: 20px; display: flex; flex-direction: column; gap: 8px; }
.pack-content-card .icon { font-size: 24px; }
.pack-content-card h4 { font-family: 'Source Sans 3', sans-serif; font-size: 14px; font-weight: 700; color: var(--bk); }
.pack-content-card p { font-size: 13px; color: var(--gy); line-height: 1.6; }
