* { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --white: #ffffff;
  --text: #0f172a;
  --bg: #f8fafc;
  --border: #e2e8f0;
  --maincolor: #a3e635;
  --maincolor-mid: #84cc16;
  --forest: #16a34a;
  --forest-darker: #15803d;
  --forest-light: #bbf7d0;
  --forest-mid: #166534;
  --cream2: #f0fdf4;
  --box-shadow-1: 0 1px 3px 0 rgba(34, 40, 42, 0.1);
  --box-shadow-2: 0 4px 20px 0 rgba(33, 37, 41, 0.05);
  --box-shadow-3: 0 4px 20px 0 rgba(33, 37, 41, 0.15);
}

body {
  font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
  background: #f8fafc;
  color: #0f172a;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

/* ── LOGO ── */
.logo {
  max-width: 120px;
}

.logo a {
  display: flex;
}

/* ── TOP BAR ── */
.topbar { background: #0f172a; padding: 8px 0; }
.topbar-inner { max-width: 1280px; margin: 0 auto; padding: 0 28px; display: flex; align-items: center; justify-content: space-between; }
.topbar-left { display: flex; gap: 20px; }
.tb-link { font-size: 12px; color: rgba(255,255,255,0.45); text-decoration: none; transition: color .15s; }
.tb-link:hover { color: #a3e635; }
.tb-right { font-size: 12px; color: rgba(255,255,255,0.3); }

/* ── NAV ── */
nav { background: #fff; border-bottom: 1px solid #e2e8f0; position: sticky; top: 0; z-index: 100; }
.nav-inner { max-width: 1280px; margin: 0 auto; padding: 0 28px; display: flex; align-items: center; height: 60px; gap: 36px; }
.nav-items { display: flex; gap: 0; overflow-x: auto; scrollbar-width: none; flex: 1; }
.nav-items::-webkit-scrollbar { display: none; }
.nav-item { text-decoration: none; font-size: 13px; font-weight: 700; color: #64748b; padding: 0 14px; height: 60px; display: flex; align-items: center; white-space: nowrap; border-bottom: 3px solid transparent; margin-bottom: -1px; transition: all .15s; }
.nav-item:hover { color: #0f172a; border-bottom-color: #a3e635; }
.nav-item.active { color: #0f172a; border-bottom-color: #0f172a; }

/* ── MOBILE TOGGLE ── */
.mobile-toggle {
  display: none;
  background: none;
  border: 1.5px solid #e2e8f0;
  border-radius: 6px;
  padding: 7px 10px;
  cursor: pointer;
  margin-left: auto;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
}

.mobile-toggle-icon {
  display: block;
  width: 18px;
  height: 2px;
  background: #0f172a;
  position: relative;
  transition: background 0.2s ease;
}

.mobile-toggle-icon::before,
.mobile-toggle-icon::after {
  content: '';
  display: block;
  width: 18px;
  height: 2px;
  background: #0f172a;
  position: absolute;
  left: 0;
  transition: top 0.2s ease, transform 0.2s ease;
}

.mobile-toggle-icon::before { top: -5px; }
.mobile-toggle-icon::after { top: 5px; }

/* Hamburger → X when open */
.mobile-toggle.is-open .mobile-toggle-icon { background: transparent; }
.mobile-toggle.is-open .mobile-toggle-icon::before { top: 0; transform: rotate(45deg); }
.mobile-toggle.is-open .mobile-toggle-icon::after { top: 0; transform: rotate(-45deg); }

/* ── MOBILE MENU ── */
.mobile-nav {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.mobile-nav.is-open {
  max-height: 600px;
}

.mobile-nav-inner {
  background: #fff;
  border-bottom: 1px solid #e2e8f0;
  padding: 12px 28px;
  display: flex;
  flex-direction: column;
}

.mobile-nav-item {
  font-size: 13px;
  font-weight: 700;
  color: #64748b;
  padding: 10px 0;
  border-bottom: 1px solid #f1f5f9;
  text-decoration: none;
  transition: color .15s;
}

.mobile-nav-item:last-child { border-bottom: none; }
.mobile-nav-item:hover { color: #0f172a; }

/* ── HERO ── */
.hero { background: linear-gradient(135deg,#0f172a 0%,#1e293b 55%,#0f2a1a 100%); padding: 64px 0 0; position: relative; overflow: hidden; }
.hero::after { content: ''; position: absolute; right: 0; top: 0; bottom: 0; width: 45%; background: linear-gradient(135deg,rgba(163,230,53,0.06),rgba(22,163,74,0.1)); clip-path: polygon(8% 0,100% 0,100% 100%,0 100%); }
.hero-inner { max-width: 1280px; margin: 0 auto; padding: 0 28px; display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; position: relative; z-index: 1; }
.hero-left {}
.hero-eyebrow { display: inline-flex; align-items: center; gap: 8px; font-size: 11px; font-weight: 800; letter-spacing: 2px; text-transform: uppercase; color: #a3e635; margin-bottom: 18px; }
.hero-eyebrow-dot { width: 6px; height: 6px; background: #a3e635; border-radius: 50%; }
.hero h1 { font-size: 50px; font-weight: 900; color: #fff; line-height: 1.06; letter-spacing: -2px; margin-bottom: 16px; }
.hero h1 .lime { color: #a3e635; }
.hero-sub { font-size: 17px; color: rgba(255,255,255,0.55); line-height: 1.65; margin-bottom: 36px; max-width: 460px; }
.hero-cats { display: flex; flex-wrap: wrap; gap: 8px; }
.hero-cat { display: inline-flex; align-items: center; gap: 6px; background: rgba(255,255,255,0.07); border: 1.5px solid rgba(255,255,255,0.12); border-radius: 100px; padding: 8px 16px; font-size: 13px; font-weight: 700; color: rgba(255,255,255,0.8); text-decoration: none; transition: all .15s; }
.hero-cat:hover { background: rgba(163,230,53,0.15); border-color: #a3e635; color: #a3e635; }

/* RIGHT: Wealth Metric Cards */
.hero-right { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; padding-bottom: 0; }
.metric-card { background: rgba(255,255,255,0.05); border: 1.5px solid rgba(255,255,255,0.09); border-radius: 16px; padding: 22px 20px; text-decoration: none; transition: all .2s; display: flex; flex-direction: column; gap: 8px; }
.metric-card:hover { background: rgba(163,230,53,0.08); border-color: rgba(163,230,53,0.3); transform: translateY(-2px); }
.metric-card.featured { grid-column: span 2; background: rgba(163,230,53,0.1); border-color: rgba(163,230,53,0.25); }
.metric-icon { font-size: 22px; line-height: 1; display: block; }
.metric-label { font-size: 10px; font-weight: 800; letter-spacing: 1.5px; text-transform: uppercase; color: rgba(255,255,255,0.4); display: block; }
.metric-title { font-size: 15px; font-weight: 700; color: #fff; line-height: 1.3; display: block; }
.metric-arrow { font-size: 12px; font-weight: 700; color: #a3e635; margin-top: auto; display: block; }

/* METRIC BAR */
.metric-bar { background: rgba(255,255,255,0.04); border-top: 1px solid rgba(255,255,255,0.07); margin-top: 48px; }
.metric-bar-inner { max-width: 1280px; margin: 0 auto; padding: 0 28px; display: flex; }
.mb-item { flex: 1; padding: 18px 20px; border-right: 1px solid rgba(255,255,255,0.06); display: flex; flex-direction: column; gap: 3px; }
.mb-item:last-child { border-right: none; }
.mb-label { font-size: 10px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: rgba(255,255,255,0.3); }
.mb-value { font-size: 22px; font-weight: 900; color: #a3e635; letter-spacing: -1px; line-height: 1; }
.mb-sub { font-size: 11.5px; color: rgba(255,255,255,0.4); }

/* ── SECTION ── */
.wrap { max-width: 1280px; margin: 0 auto; padding: 0 28px; }
.section-hd { display: flex; align-items: flex-end; margin-bottom: 20px; padding-top: 52px; }
.s-eye { font-size: 10.5px; font-weight: 800; letter-spacing: 2px; text-transform: uppercase; color: #16a34a; margin-bottom: 6px; }
.section-hd h2 { font-size: 26px; font-weight: 900; color: #0f172a; letter-spacing: -.5px; }
.s-link { font-size: 13px; font-weight: 700; color: #16a34a; text-decoration: none; margin-left: auto; border-bottom: 1.5px solid #bbf7d0; padding-bottom: 1px; }
.s-link:hover { color: #15803d; }

/* ── INVESTING GRID ── */
.invest-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; }
.inv-card { background: #fff; border-radius: 14px; border: 1.5px solid #e2e8f0; padding: 22px 22px 20px; text-decoration: none; display: flex; flex-direction: column; gap: 10px; transition: all .15s; }
.inv-card:hover { border-color: #16a34a; box-shadow: 0 6px 24px rgba(22,163,74,0.1); transform: translateY(-2px); }
.inv-card.featured { background: linear-gradient(145deg,#052e16,#0f4a25); border-color: #16a34a; }
.inv-card.featured .inv-tag { color: #a3e635; }
.inv-card.featured .inv-h4 { color: #fff; }
.inv-card.featured .inv-p { color: rgba(255,255,255,0.65); }
.inv-card.featured .inv-read { color: #a3e635; }
.inv-tag { font-size: 10px; font-weight: 800; letter-spacing: 1px; text-transform: uppercase; color: #16a34a; display: block; }
.inv-h4 { font-size: 16px; font-weight: 800; color: #0f172a; line-height: 1.3; display: block; }
.inv-p { font-size: 13.5px; color: #64748b; line-height: 1.6; flex: 1; display: block; }
.inv-read { font-size: 12.5px; font-weight: 700; color: #16a34a; margin-top: 4px; display: block; }

/* ── DARK FEATURE BAND — Retirement ── */
.retire-band { background: #0f172a; border-radius: 20px; padding: 48px 44px; display: grid; grid-template-columns: 320px 1fr; gap: 48px; align-items: start; margin-top: 52px; }
.rb-left .s-eye { color: #a3e635; margin-bottom: 10px; }
.rb-left h2 { font-size: 30px; font-weight: 900; color: #fff; line-height: 1.2; letter-spacing: -.5px; margin-bottom: 12px; }
.rb-left p { font-size: 14px; color: rgba(255,255,255,0.5); line-height: 1.7; margin-bottom: 24px; }
.rb-cta { display: inline-flex; align-items: center; gap: 8px; background: #a3e635; color: #0f172a; font-size: 14px; font-weight: 800; padding: 12px 22px; border-radius: 10px; text-decoration: none; transition: all .15s; }
.rb-cta:hover { background: #84cc16; }
.rb-links { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.rb-link { background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.08); border-radius: 12px; padding: 16px 18px; text-decoration: none; transition: background .15s; display: flex; flex-direction: column; gap: 5px; }
.rb-link:hover { background: rgba(163,230,53,0.1); border-color: rgba(163,230,53,0.2); }
.rb-link-tag { font-size: 10px; font-weight: 800; letter-spacing: 1px; text-transform: uppercase; color: #a3e635; display: block; }
.rb-link-title { font-size: 13.5px; font-weight: 700; color: #fff; line-height: 1.3; display: block; }

/* ── CATEGORY GRID ── */
.cat-grid { display: grid; grid-template-columns: repeat(5,1fr); gap: 12px; }
.cat-tile { border-radius: 14px; padding: 24px 18px; text-decoration: none; display: flex; flex-direction: column; gap: 8px; min-height: 120px; transition: all .15s; }
.cat-tile:hover { transform: translateY(-3px); box-shadow: 0 10px 32px rgba(0,0,0,0.12); }
.ct-icon { font-size: 26px; line-height: 1; display: block; }
.ct-name { font-size: 14.5px; font-weight: 800; color: #fff; line-height: 1.2; display: block; }
.ct-sub { font-size: 11px; color: rgba(255,255,255,0.6); display: block; }
.ct-inv { background: linear-gradient(145deg,#052e16,#16a34a); }
.ct-ret { background: linear-gradient(145deg,#0c1a2e,#1e3a8a); }
.ct-tax { background: linear-gradient(145deg,#1a0f00,#d97706); }
.ct-debt { background: linear-gradient(145deg,#1a0505,#dc2626); }
.ct-pf { background: linear-gradient(145deg,#0a0a1a,#4f46e5); }
.ct-cc { background: linear-gradient(145deg,#1a0514,#9d174d); }
.ct-bank { background: linear-gradient(145deg,#051a1a,#0891b2); }
.ct-ins { background: linear-gradient(145deg,#1a1400,#ca8a04); }
.ct-si { background: linear-gradient(145deg,#0a1a0a,#15803d); }
.ct-ep { background: linear-gradient(145deg,#1a0a1a,#7e22ce); }

/* ── 4-COL LIST ── */
.list-4 { display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; }
.list-col-hd { font-size: 11px; font-weight: 800; letter-spacing: 1.5px; text-transform: uppercase; color: #16a34a; margin-bottom: 14px; padding-bottom: 10px; border-bottom: 2px solid #dcfce7; }
.list-col-items { display: flex; flex-direction: column; }
.lci { display: flex; align-items: flex-start; gap: 8px; padding: 10px 0; border-bottom: 1px solid #f8fafc; text-decoration: none; }
.lci:last-child { border-bottom: none; }
.lci:hover .lci-title { color: #16a34a; }
.lci-dot { width: 5px; height: 5px; background: #bbf7d0; border-radius: 50%; flex-shrink: 0; margin-top: 6px; }
.lci-title { font-size: 13.5px; font-weight: 600; color: #0f172a; line-height: 1.35; transition: color .15s; }

/* ── TAX STRATEGY SPLIT ── */
.tax-split { display: grid; grid-template-columns: 1.4fr 1fr; gap: 28px; }
.tax-main { background: #fff; border-radius: 16px; border: 1.5px solid #e2e8f0; overflow: hidden; }
.tax-main-top { background: linear-gradient(135deg,#d97706,#b45309); padding: 28px 28px 0; }
.tax-badge { display: inline-flex; align-items: center; gap: 6px; background: rgba(255,255,255,0.15); border-radius: 100px; padding: 4px 12px; font-size: 10px; font-weight: 800; letter-spacing: 1px; text-transform: uppercase; color: #fff; margin-bottom: 12px; }
.tax-main-top h3 { font-size: 22px; font-weight: 900; color: #fff; line-height: 1.2; margin-bottom: 10px; }
.tax-main-top p { font-size: 13.5px; color: rgba(255,255,255,0.7); line-height: 1.6; margin-bottom: 20px; }
.tax-vis { font-size: 60px; line-height: 1; padding-top: 8px; text-align: right; }
.tax-main-body { padding: 20px 28px; }
.tax-link-list { display: flex; flex-direction: column; gap: 0; }
.tax-link { display: flex; align-items: center; gap: 10px; padding: 11px 0; border-bottom: 1px solid #f1f5f9; text-decoration: none; font-size: 14px; font-weight: 600; color: #0f172a; transition: color .15s; }
.tax-link:last-child { border-bottom: none; }
.tax-link:hover { color: #d97706; }
.tax-link::before { content: "→"; color: #fde68a; font-size: 13px; flex-shrink: 0; }
.tax-side { display: flex; flex-direction: column; gap: 12px; }
.tax-card { background: #fff; border-radius: 14px; border: 1.5px solid #e2e8f0; padding: 18px 20px; text-decoration: none; display: flex; flex-direction: column; gap: 6px; transition: all .15s; }
.tax-card:hover { border-color: #d97706; box-shadow: 0 4px 20px rgba(217,119,6,0.1); }
.tc-tag { font-size: 10px; font-weight: 800; letter-spacing: 1px; text-transform: uppercase; color: #d97706; display: block; }
.tc-h4 { font-size: 14.5px; font-weight: 700; color: #0f172a; line-height: 1.3; display: block; }
.tc-read { font-size: 12px; font-weight: 700; color: #d97706; margin-top: 4px; display: block; }

/* ── PSYCHOLOGY + PERSONAL FINANCE STRIP ── */
.pf-strip { background: #0f172a; border-radius: 20px; padding: 36px 40px; display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 1px; margin-top: 52px; overflow: hidden; }
.pf-col { padding: 0 32px; border-right: 1px solid rgba(255,255,255,0.08); }
.pf-col:first-child { padding-left: 0; }
.pf-col:last-child { border-right: none; padding-right: 0; }
.pf-col-hd { font-size: 11px; font-weight: 800; letter-spacing: 1.5px; text-transform: uppercase; color: #a3e635; margin-bottom: 16px; padding-bottom: 12px; border-bottom: 1px solid rgba(163,230,53,0.2); }
.pf-items { display: flex; flex-direction: column; }
.pf-item { padding: 10px 0; border-bottom: 1px solid rgba(255,255,255,0.05); text-decoration: none; display: flex; flex-direction: column; gap: 3px; }
.pf-item:last-child { border-bottom: none; }
.pf-item:hover .pf-title { color: #a3e635; }
.pf-item-tag { font-size: 9.5px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; color: rgba(163,230,53,0.6); }
.pf-title { font-size: 13.5px; font-weight: 600; color: rgba(255,255,255,0.8); line-height: 1.3; transition: color .15s; }

/* ── LIME CTA STRIP ── */
.cta-strip { background: #a3e635; border-radius: 16px; padding: 36px 40px; display: flex; align-items: center; justify-content: space-between; gap: 24px; margin-top: 52px; }
.cta-strip-left h3 { font-size: 24px; font-weight: 900; color: #0f172a; letter-spacing: -.5px; margin-bottom: 6px; }
.cta-strip-left p { font-size: 14px; color: rgba(15,23,42,0.65); line-height: 1.5; }
.cta-pills { display: flex; flex-wrap: wrap; gap: 10px; flex-shrink: 0; }
.cta-pill { display: inline-flex; align-items: center; gap: 6px; background: #0f172a; color: #a3e635; font-size: 13px; font-weight: 700; padding: 10px 18px; border-radius: 100px; text-decoration: none; transition: all .15s; white-space: nowrap; }
.cta-pill:hover { background: #1e293b; }

/* ── FOOTER ── */
footer { background: #0f172a; color: rgba(255,255,255,0.5); padding: 52px 28px 28px; margin-top: 64px; }
.footer-inner { max-width: 1280px; margin: 0 auto; }
.footer-brand { margin-bottom: 16px; }
.footer-brand p { font-size: 13px; color: rgba(255,255,255,0.35); line-height: 1.7; max-width: 320px; margin-top: 16px; }
.footer-top { display: grid; grid-template-columns: 1.8fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 40px; }
.footer-col h4 { font-size: 11px; font-weight: 800; text-transform: uppercase; letter-spacing: 1px; color: rgba(255,255,255,0.25); margin-bottom: 14px; }
.footer-col a { display: block; font-size: 13px; color: rgba(255,255,255,0.45); text-decoration: none; margin-bottom: 9px; transition: color .15s; }
.footer-col a:hover { color: #a3e635; }
.footer-rule { height: 1px; background: rgba(255,255,255,0.07); margin-bottom: 20px; }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; font-size: 12.5px; color: rgba(255,255,255,0.25); }
.footer-bottom a { color: rgba(255,255,255,0.25); text-decoration: none; }
.footer-bottom a:hover { color: #a3e635; }
.pb-52 { padding-bottom: 52px; }

/* ── RESPONSIVE ── */
@media (max-width: 1100px) {
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .invest-grid { grid-template-columns: 1fr 1fr; }
  .cat-grid { grid-template-columns: repeat(3,1fr); }
  .list-4 { grid-template-columns: repeat(2,1fr); }
  .tax-split { grid-template-columns: 1fr; }
  .pf-strip { grid-template-columns: 1fr; }
  .pf-col { padding: 20px 0; border-right: none; border-bottom: 1px solid rgba(255,255,255,0.08); }
  .retire-band { grid-template-columns: 1fr; padding: 36px; }
  .footer-top { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 1180px) {
  .nav-items { display: none; }
  .mobile-toggle { display: flex; }
}

@media (max-width: 640px) {
  .hero h1 { font-size: 34px; }
  .hero-right { grid-template-columns: 1fr; }
  .metric-card.featured { grid-column: span 1; }
  .invest-layout,.cat-grid,.list-4 { grid-template-columns: 1fr; }
  .rb-links { grid-template-columns: 1fr; }
  .cta-strip { flex-direction: column; align-items: flex-start; }
  .metric-bar-inner { flex-wrap: wrap; }
  .mb-item { min-width: 50%; }
}

/* ═══════════════════════════════════
           LAYOUT RESET
═══════════════════════════════════ */
.home .container.main {
  width: 100%;
  max-width: 100%;
  padding: 0;
}

.container.layout {
  max-width: 100%;
  padding: 0;
}

.container.layout .row.layout {
  margin: 0;
}

.home .container.layout .row.layout > .cols {
  padding: 0;
}

.pages .main-wrapper .container.main {
  padding: 24px 16px;
}

/* ═══════════════════════════════════
           FONTS RESET
═══════════════════════════════════ */
.pages h1,
.pages h2 {
  font-weight: 700;
  color: var(--text);
}

.pages h1,
.pages h2,
.pages h3,
.pages p,
.pages strong {
  color: var(--text);
}

.pages h1 {
  font-size: 36px;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin: 0 0 18px;
}

.pages h2 {
  font-size: 30px;
  line-height: 1.2;
  letter-spacing: -0.01em;
  margin: 40px 0 18px;
}

.pages h3 {
  font-size: 22px;
  line-height: 1.3;
  font-weight: 600;
  margin: 24px 0 10px;
}

.pages p {
  font-size: 17px;
  line-height: 1.7;
  margin: 0 0 16px;
}

.pages strong {
  font-weight: 700;
}

@media (max-width: 768px) {
  .pages h1 {
    font-size: 30px;
    margin-bottom: 16px;
  }

  .pages h2 {
    font-size: 25px;
    margin: 32px 0 16px;
  }

  .pages h3 {
    font-size: 20px;
    margin: 22px 0 8px;
  }

  .pages p {
    font-size: 16px;
    line-height: 1.65;
    margin-bottom: 14px;
  }
}

/* ═══════════════════════════════════
           TABLE RESET
═══════════════════════════════════ */
table { margin: 32px 0; }

table th, table td {
  border-color: var(--border) !important;
  padding: 8px 16px !important;
}

table td {
  color: var(--text) !important;
}

table th {
  background: var(--maincolor) !important;
  color: var(--white) !important;
  font-size: 13px !important;
  font-weight: bold !important;
}

table tbody tr:nth-child(even) td {
  background: var(--bg) !important;
}

@media (max-width: 992px) {
  table {
    display: block !important;
    overflow-x: auto !important;
    border: 0 !important;
  }
}

@media (max-width: 768px) {
  .pages h1 {
    font-size: 30px;
    margin-bottom: 16px;
  }

  .pages h2 {
    font-size: 25px;
    margin: 32px 0 16px 0;
  }

  .pages h3 {
    font-size: 20px;
    margin: 22px 0 8px 0;
  }

  .pages p {
    font-size: 16px;
    line-height: 1.65;
    margin-bottom: 14px;
  }
}

/* ═══════════════════════════════════
           CONTACT US FORM
═══════════════════════════════════ */
#contact-form {
  margin: 45px auto 0;
  max-width: 500px;
}

#contact-form input,
#contact-form textarea {
  flex: 1;
  border: 2px solid var(--bs-gray-300);
  border-radius: 6px;
  outline: 0;
  padding: 14px 18px;
  font-size: 14px;
  color: var(--text);
  min-width: 100%;
}

#contact-form input:active,
#contact-form input:focus,
#contact-form textarea:active,
#contact-form textarea:focus {
  border: 2px solid var(--maincolor);
}

#contact-form input::placeholder,
#contact-form textarea::placeholder {
  color: var(--bs-gray-600);
}

#contact-form button {
  background: var(--maincolor);
  border: none;
  border-radius: 10px;
  cursor: pointer;
  padding: 16px;
  color: #fff;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: background 0.2s;
  white-space: nowrap;
  width: 100%;
}

#contact-form button:hover {
  background: var(--maincolor-mid);
}

/* ═══════════════════════════════════
           WIDGETS
═══════════════════════════════════ */

/* IMAGE STYLE RESET */
.item-current-image img {
  box-shadow: none !important;
  border-radius: 4px !important;
  border-color: var(--bs-gray-300) !important;
}

/* SUBLIST */
.item-sublist a {
  width: 100%;
  height: 100%;
}

.item.item-bubbles {
  margin-bottom: 32px;
}

.item-bubbles .row {
  margin: 0;
}

.bubbles-chip {
  align-items: center;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  color: var(--text);
  display: flex;
  font-weight: 500;
  height: 100%;
  padding: 16px 48px 16px 24px;
  position: relative;
  transition: padding 0.2s ease-in-out;
}

.bubbles-chip:hover {
  color: var(--forest-darker);
  background: var(--cream2);
  border-color: var(--forest-light);
  padding-left: 20px;
}

.bubbles-chip:active,
.bubbles-chip:focus {
  background: var(--forest-mid);
  color: var(--white);
}

.bubbles-link {
  display: block;
  width: 100%;
  max-width: 100%;
  text-decoration: none;
}

.bubbles-link .bubbles-outer {
  height: 100%;
  padding: 5px;
  max-width: 100%;
}

.sibling.link-button .bubbles-link .bubbles-outer,
.sibling.link-button .bubbles-chip {
  height: auto;
}

.col-gap:has(> .item-bubbles)::before {
  display: none !important;
}

.bubbles-chip::after {
  content: url("data:image/svg+xml,%3Csvg width='13' height='12' viewBox='0 0 13 12' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M8.87771 7.01782H1.02042C0.737361 7.01782 0.496528 6.91886 0.297917 6.72094C0.0993056 6.52317 0 6.2833 0 6.00136C0 5.71942 0.0993056 5.4781 0.297917 5.2774C0.496528 5.07657 0.737361 4.97615 1.02042 4.97615H8.87771L5.66583 1.76428C5.46111 1.55955 5.35681 1.31719 5.35292 1.03719C5.34889 0.757332 5.45076 0.510249 5.65854 0.295943C5.86632 0.0948319 6.11014 -0.00377823 6.39 0.000110661C6.66986 0.00399955 6.91236 0.108583 7.1175 0.313861L12.0713 5.27407C12.1699 5.37282 12.2464 5.4856 12.3008 5.6124C12.3551 5.73935 12.3823 5.86865 12.3823 6.00032C12.3823 6.13199 12.3551 6.26122 12.3008 6.38803C12.2464 6.51497 12.1727 6.62497 12.0798 6.71803L7.10958 11.688C6.89403 11.9037 6.65368 12.0081 6.38854 12.0012C6.12354 11.9942 5.88715 11.8862 5.67938 11.6772C5.4716 11.4629 5.36771 11.2166 5.36771 10.9382C5.36771 10.6599 5.4716 10.4192 5.67938 10.2162L8.87771 7.01782Z' fill='%23a3e635'/%3E%3C/svg%3E%0A");
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  transition: 0.2s ease-in-out;
}

.bubbles-chip:hover::after {
  right: 10px;
}

/* SUBLIST CARDS */
.item-sublist:has(.sublist.card) .row > div {
  padding: 5px !important;
}

.sublist.card {
  border: none;
  border-radius: 6px;
  box-shadow: var(--box-shadow-2);
  transition: 0.2s ease-in;
}

.sublist.card:hover {
  box-shadow: var(--box-shadow-3);
  color: var(--forest);
  transform: translateY(-4px);
}

.sublist.card h5 {
  margin-bottom: 0;
  font-weight: 500;
}

.sublist.card .card-body {
  padding: 16px;
}

@media (max-width: 767.98px) {
  .row div:has(> .sublist.card) {
    padding: 0 !important;
  }

  .row:has(> div .sublist.card) {
    margin: 0;
    gap: 10px;
  }

  .sublist.card {
    display: flex;
    flex-direction: row;
    align-items: center;
  }

  .sublist.card .card-img-top {
    border-radius: calc(var(--bs-border-radius) - (var(--bs-border-width)));
    width: 120px;
    height: 100%;
    object-fit: cover;
    flex-shrink: 0;
  }

  .sublist.card .card-body {
    flex: 1;
    padding: 1rem;
  }

  .sublist.card .card-body * {
    line-clamp: 2;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
  }

  .sublist.card .card-body h5 {
    font-size: 16px;
  }
}
