/* ═══════════════════════════════════════════════
   AYKEE LLC — Shared Styles
   Brand: #FDF7EE (cream) · #603B24 (brown) · #FFC860 (gold)
   ═══════════════════════════════════════════════ */

:root {
  --bg: #FDF7EE;
  --brown: #603B24;
  --brown-light: #7a5438;
  --brown-dark: #3e2415;
  --gold: #FFC860;
  --gold-soft: #ffe4a8;
  --gold-bg: #fff7e6;
  --card: #ffffff;
  --text: #4a3520;
  --text-soft: #7a6655;
  --line: #e6d5c3;
  --radius: 16px;
  --shadow: 0 8px 30px rgba(96, 59, 36, 0.10);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

body {
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.65;
}

a { color: var(--brown); }

img { max-width: 100%; height: auto; }

/* ── NAV ── */
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 5%;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
}
nav, header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--bg);
  box-shadow: 0 2px 12px rgba(96,59,36,0.08);
}
nav.nav { position: sticky; top: 0; }
.nav-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--brown);
}
.nav-brand img { height: 44px; width: auto; }
.nav-brand span {
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: 0.06em;
}
.nav-links {
  display: flex;
  gap: 22px;
  list-style: none;
  align-items: center;
}
.nav-links a {
  text-decoration: none;
  color: var(--brown);
  font-weight: 600;
  font-size: 0.9rem;
  transition: color .2s;
}
.nav-links a:hover { color: var(--gold); }
.nav-links .btn-login {
  background: var(--brown);
  color: #fff;
  padding: 8px 18px;
  border-radius: 999px;
  font-size: 0.85rem;
  transition: background .2s;
}
.nav-links .btn-login:hover {
  background: var(--brown-light);
  color: #fff;
}

/* mobile hamburger */
.nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: 8px; }
.nav-toggle svg { width: 28px; height: 28px; fill: var(--brown); }

/* ── WRAP ── */
.wrap { width: min(1140px, 90%); margin: 0 auto; }

/* ── BUTTONS ── */
.btn {
  display: inline-block;
  padding: 13px 28px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.95rem;
  border: 2px solid transparent;
  transition: transform .2s, box-shadow .2s, background .2s;
  cursor: pointer;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
  background: var(--brown);
  color: #fff;
  box-shadow: 0 6px 20px rgba(96, 59, 36, 0.25);
}
.btn-primary:hover { background: var(--brown-light); }
.btn-secondary {
  color: var(--brown);
  border-color: var(--brown);
  background: transparent;
}
.btn-secondary:hover { background: var(--brown); color: #fff; }
.btn-gold {
  background: var(--gold);
  color: var(--brown);
  box-shadow: 0 6px 20px rgba(255, 200, 96, 0.3);
  font-weight: 800;
}
.btn-gold:hover { background: #ffbe45; }

/* ── SECTIONS ── */
section { padding: 60px 0; }
.section-label {
  color: var(--gold);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-size: 0.78rem;
  margin-bottom: 8px;
}
.section-title {
  font-size: clamp(1.5rem, 3vw, 2rem);
  color: var(--brown);
  margin-bottom: 10px;
}
.section-text {
  color: var(--text-soft);
  max-width: 65ch;
  margin-bottom: 36px;
  font-size: 1.02rem;
}
.text-center { text-align: center; }

/* ── CARDS ── */
.card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 24px;
  box-shadow: var(--shadow);
  transition: transform .2s, box-shadow .2s;
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 36px rgba(96, 59, 36, 0.15);
}

/* ── COMPARISON TABLE ── */
.comparison-section {
  background: var(--brown);
  border-radius: 24px;
  padding: 48px;
  margin: 40px 0;
}
.comparison-section .section-label { color: var(--gold); }
.comparison-section .section-title { color: #fff; }
.comparison-section .section-text { color: #c9b8a8; }
.comparison-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.95rem;
}
.comparison-table th {
  text-align: left;
  padding: 14px 18px;
  color: var(--gold);
  font-weight: 700;
  border-bottom: 1px solid rgba(255,255,255,0.15);
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.comparison-table td {
  padding: 14px 18px;
  color: #fff;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.comparison-table tr:last-child td { border-bottom: none; }
.savings-tag {
  background: var(--gold);
  color: var(--brown);
  font-weight: 700;
  font-size: 0.82rem;
  padding: 3px 10px;
  border-radius: 999px;
  display: inline-block;
}
.comparison-note {
  color: #c9b8a8;
  font-size: 0.82rem;
  margin-top: 16px;
  font-style: italic;
}

/* ── FOOTER ── */
footer {
  border-top: 1px solid var(--line);
  padding: 28px 0 36px;
}
.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 28px;
  max-width: 1140px;
  width: 90%;
  margin: 0 auto;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--brown);
  margin-bottom: 8px;
}
.footer-brand img { height: 32px; }
.footer-brand span { font-weight: 700; font-size: 1rem; letter-spacing: 0.05em; }
.footer-col p, .footer-col a {
  color: var(--text-soft);
  font-size: 0.88rem;
  text-decoration: none;
  line-height: 1.8;
}
.footer-col a:hover { color: var(--brown); }
.footer-col h4 {
  color: var(--brown);
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 8px;
}
.footer-bottom {
  text-align: center;
  padding: 16px 0 0;
  color: var(--text-soft);
  font-size: 0.84rem;
  border-top: 1px solid var(--line);
  margin-top: 20px;
}

/* ── FLOATING CONTACT BUTTON ── */
.floating-contact {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 1000;
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--brown);
  color: #fff;
  padding: 14px 22px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.9rem;
  box-shadow: 0 8px 24px rgba(96, 59, 36, 0.35);
  transition: transform .2s, background .2s;
}
.floating-contact:hover {
  transform: translateY(-3px);
  background: var(--brown-light);
  color: #fff;
}
.floating-contact svg { width: 20px; height: 20px; fill: #fff; }

/* ── ANIMATIONS ── */
.fade { animation: rise .6s ease both; }
.fade.d1 { animation-delay: .1s; }
.fade.d2 { animation-delay: .2s; }
.fade.d3 { animation-delay: .3s; }
@keyframes rise {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ── NAV TOOLS WIGGLE ── */
.nav-links a[href="tools.html"] {
  display: inline-block;
  position: relative;
  animation: navWiggle 3s ease-in-out infinite;
  background: var(--gold);
  color: var(--brown) !important;
  padding: 6px 16px;
  border-radius: 99px;
  font-weight: 700;
  font-size: .85rem;
  letter-spacing: .3px;
}
@keyframes navWiggle {
  0%, 100% { transform: rotate(0deg); }
  15%      { transform: rotate(-3deg) scale(1.08); }
  25%      { transform: rotate(3deg) scale(1.08); }
  35%      { transform: rotate(-2deg); }
  45%      { transform: rotate(0deg) scale(1); }
}

/* ── PAGE HERO (inner pages) ── */
.page-hero {
  padding: 60px 0 40px;
  text-align: center;
  background: linear-gradient(180deg, var(--gold-bg) 0%, var(--bg) 100%);
}
.page-hero .section-title {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  margin-bottom: 12px;
}
.page-hero .lead {
  max-width: 58ch;
  margin: 0 auto;
  color: var(--text-soft);
  font-size: 1.08rem;
}

/* ── DIAGRAM / FLOW ── */
.flow-diagram {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
  margin: 32px 0;
}
.flow-step {
  text-align: center;
  padding: 20px;
  flex: 0 0 auto;
}
.flow-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 10px;
}
.flow-icon svg { width: 32px; height: 32px; }
.flow-icon.cream { background: var(--gold-bg); }
.flow-icon.cream svg { fill: var(--brown); }
.flow-icon.gold { background: var(--gold); }
.flow-icon.gold svg { fill: var(--brown); }
.flow-icon.brown { background: var(--brown); }
.flow-icon.brown svg { fill: #fff; }
.flow-step h4 { color: var(--brown); font-size: 0.95rem; margin-bottom: 4px; }
.flow-step p { color: var(--text-soft); font-size: 0.85rem; max-width: 140px; margin: 0 auto; }
.flow-arrow {
  display: flex;
  align-items: center;
  padding: 0 6px;
}
.flow-arrow svg { width: 28px; height: 28px; fill: var(--gold); }

/* ── ICON CARDS ── */
.icon-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px 24px;
  text-align: center;
  transition: transform .2s, box-shadow .2s;
}
.icon-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 36px rgba(96, 59, 36, 0.15);
}
.icon-circle {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
  background: linear-gradient(135deg, var(--gold), var(--gold-soft));
}
.icon-circle svg { width: 28px; height: 28px; fill: var(--brown); }
.icon-card h3 { color: var(--brown); font-size: 1.05rem; margin-bottom: 8px; }
.icon-card p { color: var(--text-soft); font-size: 0.92rem; }

/* ── GRID LAYOUTS ── */
.grid-2 { display: grid; grid-template-columns: repeat(2, 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; }
.grid-5 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }

/* ── SERVICE CARDS ── */
.service-card { position: relative; }
.service-badge {
  position: absolute;
  top: -12px;
  right: 20px;
  background: var(--gold);
  color: var(--brown);
  font-weight: 800;
  font-size: 0.82rem;
  padding: 4px 14px;
  border-radius: 999px;
}
.service-icon {
  width: 44px;
  height: 44px;
  background: var(--bg);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}
.service-icon svg { width: 24px; height: 24px; fill: var(--brown); }
.service-card h3 { font-size: 1.1rem; color: var(--brown); margin-bottom: 4px; }
.service-price {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--brown);
  margin-bottom: 2px;
}
.service-price span { font-size: 0.85rem; font-weight: 400; color: var(--text-soft); }
.service-price .price-star { color: #c0392b; font-size: 1rem; vertical-align: super; margin-left: 1px; }
.price-starting {
  font-size: .72rem;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--text-soft);
  font-weight: 600;
  margin-bottom: 12px;
}
.price-note {
  font-size: .74rem;
  color: var(--text-soft);
  line-height: 1.5;
  margin-top: 16px;
  padding-top: 12px;
  border-top: 1px solid var(--line);
  font-style: italic;
}
.service-card ul { list-style: none; padding: 0; }
.service-card li {
  padding: 4px 0;
  font-size: 0.9rem;
  color: var(--text-soft);
  position: relative;
  padding-left: 18px;
}
.service-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 11px;
  width: 8px;
  height: 8px;
  background: var(--gold);
  border-radius: 50%;
}

/* ── SPLIT SECTIONS ── */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.split-text h2 { font-size: clamp(1.4rem, 3vw, 1.8rem); color: var(--brown); margin-bottom: 12px; }
.split-text p { color: var(--text-soft); margin-bottom: 16px; font-size: 0.98rem; }
.split-text ul { list-style: none; padding: 0; }
.split-text li {
  padding: 6px 0;
  padding-left: 22px;
  position: relative;
  color: var(--text-soft);
  font-size: 0.94rem;
}
.split-text li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 13px;
  width: 10px;
  height: 10px;
  background: var(--gold);
  border-radius: 50%;
}

/* ── INLINE SVG ILLUSTRATION ── */
.illustration-box {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .grid-3, .grid-5 { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .split { grid-template-columns: 1fr; gap: 24px; }
  .comparison-section { padding: 28px 20px; }
  .comparison-table { font-size: 0.85rem; }
  .comparison-table th, .comparison-table td { padding: 10px 10px; }
  .nav-links { display: none; }
  .nav-toggle { display: block; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 70px;
    right: 5%;
    background: var(--card);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 16px 24px;
    box-shadow: var(--shadow);
    z-index: 100;
  }
  .flow-arrow { display: none; }
  .flow-diagram { gap: 8px; }
}
@media (max-width: 600px) {
  .grid-4 { grid-template-columns: 1fr; }
  .grid-2 { grid-template-columns: 1fr; }
}

/* ── SERVICE DETAIL CARDS (services.html) ── */
.service-card-detail { padding: 32px 28px; }
.service-card-detail h2 { font-size: 1.2rem; color: var(--brown); margin-bottom: 4px; }
.service-card-detail h4 { font-size: 0.85rem; color: var(--brown); text-transform: uppercase; letter-spacing: 0.06em; margin: 18px 0 8px; }
.service-compare { font-size: 0.88rem; color: var(--text-soft); margin-bottom: 16px; font-style: italic; }
.tool-list { font-size: 0.88rem; color: var(--text-soft); line-height: 1.6; }

/* ── PLAIN LISTS (how-it-works.html comparison) ── */
.plain-list { list-style: none; padding: 0; }
.plain-list li { padding: 8px 0 8px 28px; position: relative; font-size: 0.92rem; color: var(--text-soft); border-bottom: 1px solid var(--line); }
.plain-list li:last-child { border-bottom: none; }
.risk-list li::before { content: "✕"; position: absolute; left: 4px; color: #c0392b; font-weight: 700; font-size: 0.85rem; }
.benefit-list li::before { content: "✓"; position: absolute; left: 4px; color: #27ae60; font-weight: 700; font-size: 0.85rem; }

/* ── COST HOVER TOOLTIPS ── */
.cost-hover {
  position: relative;
  cursor: pointer;
  border-bottom: 1px dashed rgba(255,200,96,0.5);
  padding-bottom: 1px;
  white-space: nowrap;
}
.cost-hint {
  display: inline-block;
  font-size: 0.75rem;
  color: var(--gold);
  margin-left: 4px;
  opacity: 0.8;
  transition: opacity .2s;
}
.cost-hover:hover .cost-hint { opacity: 1; }
.cost-tooltip {
  display: none;
  position: absolute;
  bottom: calc(100% + 12px);
  left: 50%;
  transform: translateX(-50%);
  background: #fff;
  color: var(--text);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 16px 20px;
  width: 270px;
  box-shadow: 0 12px 40px rgba(96, 59, 36, 0.18);
  z-index: 50;
  font-size: 0.85rem;
  line-height: 1.5;
}
.cost-tooltip::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  border: 8px solid transparent;
  border-top-color: #fff;
}
.cost-tooltip::before {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  border: 9px solid transparent;
  border-top-color: var(--line);
}
.cost-hover:hover .cost-tooltip { display: block; }
.cost-tooltip strong {
  display: block;
  color: var(--brown);
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 8px;
  padding-bottom: 6px;
  border-bottom: 1px solid var(--line);
}
.tt-row {
  display: flex;
  justify-content: space-between;
  padding: 3px 0;
  color: var(--text-soft);
  font-size: 0.83rem;
}
.tt-row.tt-total {
  margin-top: 6px;
  padding-top: 6px;
  border-top: 1.5px solid var(--gold);
  font-weight: 700;
  color: var(--brown);
}
@media (max-width: 700px) {
  .cost-tooltip {
    left: 0;
    transform: none;
    width: 240px;
  }
  .cost-tooltip::after, .cost-tooltip::before {
    left: 40px;
  }
}

/* ── CONTACT MODAL ── */
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(62, 36, 21, 0.55);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  z-index: 200;
  justify-content: center;
  align-items: center;
  padding: 20px;
  overflow-y: auto;
}
.modal-overlay.open { display: flex; }
.modal-card {
  background: #fff;
  border-radius: 20px;
  width: 100%;
  max-width: 520px;
  box-shadow: 0 24px 80px rgba(96, 59, 36, 0.25);
  position: relative;
  animation: modalIn .3s ease;
  margin: auto;
}
@keyframes modalIn {
  from { opacity: 0; transform: translateY(20px) scale(0.97); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}
.modal-header {
  padding: 28px 32px 0;
  text-align: center;
}
.modal-header h2 {
  color: var(--brown);
  font-size: 1.4rem;
  margin-bottom: 4px;
}
.modal-header p {
  color: var(--text-soft);
  font-size: 0.9rem;
}
.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 36px;
  height: 36px;
  border: none;
  background: var(--bg);
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .2s;
}
.modal-close:hover { background: var(--line); }
.modal-close svg { width: 18px; height: 18px; fill: var(--brown); }
.modal-form {
  padding: 24px 32px 32px;
}
.form-row {
  display: flex;
  gap: 12px;
}
.form-group {
  margin-bottom: 14px;
  flex: 1;
}
.form-group label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--brown);
  margin-bottom: 5px;
  letter-spacing: 0.02em;
}
.form-group label .req { color: #c0392b; }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 10px 14px;
  border: 1.5px solid var(--line);
  border-radius: 10px;
  font-family: inherit;
  font-size: 0.92rem;
  color: var(--text);
  background: #fff;
  transition: border-color .2s, box-shadow .2s;
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(255, 200, 96, 0.25);
}
.form-group textarea { resize: vertical; min-height: 80px; }
.form-group select { cursor: pointer; }
.form-group input::placeholder,
.form-group textarea::placeholder { color: #c0b5a5; }
.form-submit-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 6px;
}
.form-submit-row .btn { flex: 1; text-align: center; border: none; cursor: pointer; font-family: inherit; }
.form-secure {
  font-size: 0.75rem;
  color: var(--text-soft);
  display: flex;
  align-items: center;
  gap: 4px;
  margin-top: 12px;
  justify-content: center;
}
.form-secure svg { width: 14px; height: 14px; fill: var(--text-soft); }
@media (max-width: 500px) {
  .form-row { flex-direction: column; gap: 0; }
  .modal-card { border-radius: 16px; }
  .modal-form { padding: 20px 20px 24px; }
  .modal-header { padding: 24px 20px 0; }
}

/* ═══ GRID-4 ═══ */
.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
@media (max-width: 900px) { .grid-4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 500px) { .grid-4 { grid-template-columns: 1fr; } }

/* ═══ ELEVATE CALLOUT ═══ */
.elevate-callout {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  background: linear-gradient(135deg, #fdf7ee 0%, #fff8ec 100%);
  border: 1.5px solid var(--gold);
  border-radius: 14px;
  padding: 32px 36px;
  max-width: 860px;
  margin: 48px auto;
}
.elevate-callout .elevate-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  background: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.elevate-callout .elevate-icon svg {
  width: 26px;
  height: 26px;
  fill: #fff;
}
.elevate-callout h3 {
  color: var(--brown);
  font-size: 1.15rem;
  margin-bottom: 6px;
}
.elevate-callout p {
  color: var(--text-soft);
  font-size: .95rem;
  line-height: 1.6;
  margin: 0;
}
@media (max-width: 600px) {
  .elevate-callout { flex-direction: column; align-items: center; text-align: center; padding: 24px 20px; }
}

/* ═══ TIMEZONE BANNER ═══ */
.tz-banner {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: var(--gold-bg);
  border: 1.5px solid var(--gold);
  border-radius: var(--radius);
  padding: 22px 28px;
  margin: 0 auto 10px;
  max-width: 700px;
}

/* ═══ FOUNDER CARD ═══ */
.founder-card {
  background: var(--brown);
  color: #fff;
  border-radius: var(--radius);
  padding: 44px;
  box-shadow: var(--shadow);
  cursor: pointer;
  position: relative;
}
.founder-peek {
  display: flex;
  align-items: center;
  gap: 16px;
}
.founder-peek-avatar {
  width: 56px;
  height: 56px;
  background: rgba(255,255,255,.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.founder-peek-avatar svg { width: 30px; height: 30px; fill: var(--gold); }
.founder-peek-info { flex: 1; }
.founder-peek h2 { font-size: 1.2rem; margin-bottom: 2px; }
.founder-peek .founder-title { margin-bottom: 0; }
.founder-peek .founder-location { margin-bottom: 0; font-size: .85rem; }
.founder-body {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 40px;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height .5s ease, opacity .4s ease;
}
.founder-card.open .founder-peek { display: none; }
.founder-card.open .founder-body {
  max-height: 2000px;
  opacity: 1;
}
.founder-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 28px;
  height: 28px;
  fill: var(--gold);
  opacity: 0;
  cursor: pointer;
  display: none;
}
.founder-card.open .founder-close { display: block; opacity: .6; }
.founder-card.open .founder-close:hover { opacity: 1; }
.founder-left { text-align: center; }
.founder-avatar {
  width: 100px;
  height: 100px;
  background: rgba(255,255,255,.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
}
.founder-avatar svg { width: 54px; height: 54px; fill: var(--gold); }
.founder-card h2 { font-size: 1.4rem; margin-bottom: 4px; }
.founder-title {
  color: var(--gold);
  font-weight: 700;
  font-size: .95rem;
  text-transform: uppercase;
  letter-spacing: .06em;
  margin-bottom: 10px;
}
.founder-location { font-size: .9rem; color: rgba(255,255,255,.7); margin-bottom: 14px; }
.founder-edu { display: flex; flex-direction: column; gap: 6px; }
.founder-edu .tag {
  background: rgba(255,255,255,.12);
  color: rgba(255,255,255,.85);
  padding: 5px 12px;
  border-radius: 8px;
  font-size: .78rem;
  display: inline-block;
}
.founder-right {}
.founder-bio {
  font-size: .97rem;
  line-height: 1.7;
  color: rgba(255,255,255,.88);
  margin-bottom: 24px;
}
.founder-highlights { display: flex; flex-direction: column; gap: 16px; margin-bottom: 24px; }
.fh-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.fh-item svg { width: 28px; height: 28px; fill: var(--gold); flex-shrink: 0; margin-top: 2px; }
.fh-item strong { display: block; font-size: .92rem; color: #fff; margin-bottom: 3px; }
.fh-item span { font-size: .86rem; color: rgba(255,255,255,.72); line-height: 1.55; }
.founder-passion {
  font-size: .93rem;
  color: rgba(255,255,255,.8);
  line-height: 1.65;
  border-top: 1px solid rgba(255,255,255,.15);
  padding-top: 18px;
}
.founder-passion em { color: var(--gold); font-style: normal; font-weight: 600; }

@media (max-width: 800px) {
  .founder-card { padding: 32px 24px; }
  .founder-body { grid-template-columns: 1fr; gap: 28px; }
  .founder-left { text-align: center; }
}

/* ═══ TEAM GRID ═══ */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 24px;
}
.team-card {
  background: var(--card);
  border-radius: var(--radius);
  padding: 30px 28px;
  box-shadow: var(--shadow);
  transition: box-shadow .25s;
  cursor: pointer;
}
.team-card:hover { box-shadow: 0 8px 24px rgba(96,59,36,.1); }
.team-card.open { box-shadow: 0 14px 40px rgba(96,59,36,.14); }
.tc-avatar {
  width: 56px;
  height: 56px;
  background: var(--gold-bg);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}
.tc-avatar svg { width: 30px; height: 30px; fill: var(--brown); }
.team-card h3 { font-size: 1.12rem; color: var(--brown); margin-bottom: 4px; }
.tc-degree { font-size: .82rem; color: var(--text-soft); margin-bottom: 16px; line-height: 1.45; }
.tc-skills { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 18px; }

/* Accordion header / body */
.tc-header {
  display: flex;
  align-items: center;
  gap: 14px;
}
.tc-header .tc-avatar { margin-bottom: 0; flex-shrink: 0; }
.tc-header-info { flex: 1; min-width: 0; }
.tc-header-info h3 { margin-bottom: 4px; }
.tc-header-roles { display: flex; flex-wrap: wrap; gap: 4px; }
.tc-chevron {
  width: 24px;
  height: 24px;
  fill: var(--brown);
  flex-shrink: 0;
  transition: transform .3s ease;
}
.team-card.open .tc-chevron,
.founder-card.open .tc-chevron { transform: rotate(180deg); }
.tc-body {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height .4s ease, opacity .3s ease, margin-top .3s ease;
  margin-top: 0;
}
.team-card.open .tc-body {
  max-height: 800px;
  opacity: 1;
  margin-top: 20px;
}
.team-card.open .tc-header-roles { display: none; }
.skill-tag {
  background: var(--gold-bg);
  color: var(--brown);
  padding: 4px 10px;
  border-radius: 6px;
  font-size: .76rem;
  font-weight: 500;
  white-space: nowrap;
}
.tc-roles { border-top: 1px solid var(--line); padding-top: 14px; }
.tc-roles-label {
  font-size: .72rem;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--text-soft);
  font-weight: 700;
  margin-bottom: 8px;
}
.role-tag {
  display: inline-block;
  background: var(--brown);
  color: #fff;
  padding: 4px 12px;
  border-radius: 6px;
  font-size: .76rem;
  font-weight: 600;
  margin: 0 4px 4px 0;
}

/* ═══ FLOATING TIMEZONE BAR ═══ */
.tz-float {
  position: fixed;
  top: 16px;
  right: 16px;
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0;
  background: var(--brown);
  color: #fff;
  border-radius: 14px;
  padding: 6px;
  box-shadow: 0 4px 20px rgba(96,59,36,.25);
  transition: opacity .3s, transform .3s;
}
.tz-float-toggle {
  background: rgba(255,255,255,.15);
  border: none;
  border-radius: 50%;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  flex-shrink: 0;
  transition: background .2s;
}
.tz-float-toggle:hover { background: rgba(255,255,255,.25); }
.tz-float-toggle svg { width: 18px; height: 18px; fill: var(--gold); }
.tz-float-times {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 8px 10px 4px;
  overflow: hidden;
  transition: max-height .35s ease, opacity .25s ease, padding .35s ease;
  max-height: 300px;
  opacity: 1;
}
.tz-float.collapsed .tz-float-times {
  max-height: 0;
  opacity: 0;
  padding: 0 10px;
}
.tz-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  min-width: 110px;
}
.tz-label {
  font-size: .68rem;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: rgba(255,255,255,.55);
  font-weight: 700;
  line-height: 1;
}
.tz-time {
  font-size: .82rem;
  font-weight: 700;
  color: #fff;
  white-space: nowrap;
  line-height: 1.6;
}
.tz-manila .tz-label { color: var(--gold); }
.tz-manila .tz-time { color: var(--gold); }

@media (max-width: 600px) {
  .tz-float { top: 74px; right: 10px; }
}
@media (max-width: 900px) and (min-width: 601px) {
  .tz-float { top: 74px; right: 10px; }
}
