/* =============================================
   DAAS FINANCIALS — Professional Financial Advisory
   Design: Charcoal + Emerald — Modern / Executive
   Fonts: Fraunces (Display) + Inter (Body)
   ============================================= */

@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,400;0,9..144,500;0,9..144,600;0,9..144,700;1,9..144,400;1,9..144,500&family=Inter:wght@300;400;500;600;700;800&display=swap');

:root {
  --navy:       #121A22;
  --navy-mid:   #1B2530;
  --navy-light: #26323F;

  --gold:       #0E7C66;
  --gold-light: #14A085;
  --gold-pale:  #DEEEE9;

  --bronze:     #A9885E;

  --cream:      #F6F4EF;
  --white:      #FFFFFF;
  --gray-100:   #F4F4F5;
  --gray-300:   #D6D9DC;
  --gray-500:   #8A9096;
  --gray-700:   #47505A;
  --text-dark:  #131A20;
  --text-body:  #454F58;

  --font-display: 'Fraunces', Georgia, serif;
  --font-body:    'Inter', -apple-system, sans-serif;

  --radius:     6px;
  --radius-lg:  12px;
  --shadow-sm:  0 2px 12px rgba(18,26,34,0.07);
  --shadow-md:  0 8px 40px rgba(18,26,34,0.12);
  --shadow-lg:  0 20px 70px rgba(18,26,34,0.18);
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; scroll-padding-top: 90px; }

body {
  font-family: var(--font-body);
  color: var(--text-body);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
  padding-top: 72px;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: inherit; }

/* ===== TYPOGRAPHY ===== */
h1,h2,h3,h4,h5,h6 {
  font-family: var(--font-display);
  color: var(--text-dark);
  line-height: 1.2;
  font-weight: 600;
}
h1 { font-size: clamp(2.3rem, 4.6vw, 3.9rem); }
h2 { font-size: clamp(1.8rem, 3.2vw, 2.7rem); }
h3 { font-size: clamp(1.4rem, 2.2vw, 1.8rem); }
h4 { font-size: 1.2rem; }
p { color: var(--text-body); }

.section-label {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}

/* ===== LAYOUT ===== */
.container { max-width: 1240px; margin: 0 auto; padding: 0 1.5rem; }
.section { padding: 5.5rem 0; }
.section-dark { background: var(--navy); color: rgba(255,255,255,0.85); }
.section-dark p { color: rgba(255,255,255,0.62); }
.section-dark h2, .section-dark h3, .section-dark h4 { color: var(--white); }
.section-cream { background: var(--cream); }

.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.75rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }

.text-center { text-align: center; }
.text-muted { color: var(--gray-500); }
.mt-3 { margin-top: 1.5rem; }
.sep { color: var(--gray-300); margin: 0 0.4rem; }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.9rem 2rem;
  border-radius: var(--radius);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  cursor: pointer;
  border: none;
  transition: all var(--transition);
  white-space: nowrap;
}

.btn-gold, .btn-cyan {
  background: var(--gold);
  color: var(--white);
  box-shadow: 0 6px 20px rgba(14,124,102,0.28);
}
.btn-gold:hover, .btn-cyan:hover {
  background: var(--gold-light);
  box-shadow: 0 10px 28px rgba(14,124,102,0.38);
  transform: translateY(-2px);
}

.btn-navy {
  background: var(--navy);
  color: var(--white);
}
.btn-navy:hover { background: var(--navy-mid); transform: translateY(-2px); }

.btn-outline-gold {
  background: transparent;
  color: var(--gold);
  border: 1.5px solid var(--gold);
}
.btn-outline-gold:hover { background: var(--gold); color: var(--white); }

.btn-outline-white {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.4);
}
.btn-outline-white:hover { background: var(--white); color: var(--navy); border-color: var(--white); }

.btn-group { display: flex; gap: 1rem; flex-wrap: wrap; justify-content: center; }

/* ===== NAVBAR ===== */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(18,26,34,0.97);
  backdrop-filter: blur(10px);
  box-shadow: 0 1px 0 rgba(255,255,255,0.06), 0 4px 24px rgba(0,0,0,0.18);
  transition: padding var(--transition), box-shadow var(--transition), background var(--transition);
}
#navbar.scrolled {
  background: rgba(15,21,27,0.99);
  box-shadow: 0 1px 0 rgba(255,255,255,0.08), 0 8px 32px rgba(0,0,0,0.3);
}

.nav-inner {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  min-height: 72px;
}

.nav-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.nav-logo-img {
  height: 40px;
  width: auto;
  object-fit: contain;
  display: block;
}
.nav-logo-icon { display: none; }

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex: 1;
  flex-wrap: nowrap;
}
.nav-links li { position: relative; }
.nav-links > li > a {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.55rem 0.7rem;
  color: rgba(255,255,255,0.78);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  white-space: nowrap;
  transition: color 0.2s ease;
  border-radius: var(--radius);
}
.nav-links > li > a:hover { color: var(--gold-light); background: rgba(255,255,255,0.04); }
.chevron { font-size: 0.65rem; }

.dropdown {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  min-width: 220px;
  background: var(--navy-mid);
  border-radius: var(--radius-lg);
  border-top: 2px solid var(--gold);
  padding: 0.6rem 0;
  box-shadow: var(--shadow-lg);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: all 0.2s ease;
}
.nav-links li:hover .dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown a {
  display: block;
  padding: 0.6rem 1.15rem;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.68);
  border-left: 2px solid transparent;
}
.dropdown a:hover { background: rgba(255,255,255,0.04); border-left-color: var(--gold); color: var(--white); }

.nav-cta {
  flex-shrink: 0;
  margin-left: auto;
  padding: 0.6rem 1.25rem !important;
  font-size: 0.7rem !important;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.4rem;
  flex-shrink: 0;
}
.nav-toggle span { width: 22px; height: 2px; background: var(--white); border-radius: 2px; transition: all 0.25s ease; }
.nav-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  display: none;
  position: fixed;
  top: 72px;
  left: 0; right: 0;
  bottom: 0;
  background: var(--navy);
  z-index: 999;
  flex-direction: column;
  overflow-y: auto;
  padding-bottom: 2rem;
}
.mobile-menu.active { display: flex; }
.mobile-menu a {
  padding: 1rem 1.75rem;
  color: rgba(255,255,255,0.8);
  font-size: 0.95rem;
  font-weight: 500;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.mobile-menu a:hover { color: var(--gold-light); background: rgba(255,255,255,0.03); }
.mobile-cta { padding: 1.5rem 1.75rem 0.5rem; }

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  background: linear-gradient(160deg, var(--navy) 0%, #0D131A 100%);
  overflow: hidden;
  padding: 6rem 0 4rem;
}
.hero-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 20% 20%, rgba(14,124,102,0.18), transparent 55%),
    radial-gradient(ellipse at 85% 75%, rgba(14,124,102,0.10), transparent 55%);
}
.hero-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.035) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: linear-gradient(180deg, transparent, black 30%, black 80%, transparent);
}
.hero-content { position: relative; z-index: 2; max-width: 700px; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: rgba(14,124,102,0.14);
  border: 1px solid rgba(14,124,102,0.35);
  border-radius: 50px;
  padding: 0.45rem 1.1rem;
  font-size: 0.75rem; font-weight: 600;
  color: var(--gold-light);
  letter-spacing: 0.08em;
  margin-bottom: 1.5rem;
}
.hero h1 { color: var(--white); margin-bottom: 1.25rem; }
.hero h1 em { font-style: italic; color: var(--gold-light); }
.hero p { color: rgba(255,255,255,0.6); font-size: 1.08rem; max-width: 560px; margin-bottom: 2.25rem; }
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 3.5rem; }
.hero-stats { display: grid; grid-template-columns: repeat(4, auto); gap: 2.5rem; }
.hero-stat-num { font-family: var(--font-display); font-size: 2.1rem; font-weight: 600; color: var(--white); }
.hero-stat-label { font-size: 0.75rem; color: rgba(255,255,255,0.5); letter-spacing: 0.04em; margin-top: 0.2rem; }
.hero-scroll {
  position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%);
  color: rgba(255,255,255,0.4); font-size: 0.7rem; letter-spacing: 0.15em; text-transform: uppercase;
}

/* ===== TRUST BAR ===== */
.trust-bar { background: var(--gold-pale); padding: 1.1rem 0; }
.trust-bar-inner { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 1rem 2rem; }
.trust-item { display: flex; align-items: center; gap: 0.5rem; font-size: 0.85rem; font-weight: 600; color: var(--navy); }
.trust-item .icon { font-size: 1rem; }

/* ===== SERVICES OVERVIEW ===== */
.services-intro { max-width: 640px; margin: 0 auto 3rem; text-align: center; }
.gold-divider { width: 60px; height: 3px; background: var(--gold); border-radius: 2px; margin: 1rem 0; }
.gold-divider.center { margin-left: auto; margin-right: auto; }

.service-card {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg);
  padding: 2.25rem 1.75rem;
  transition: all var(--transition);
}
.service-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); border-color: transparent; }
.service-icon { font-size: 1.9rem; margin-bottom: 1rem; }
.service-card h4 { margin-bottom: 0.75rem; }
.service-card p { font-size: 0.92rem; margin-bottom: 1rem; }
.service-link { color: var(--gold); font-weight: 600; font-size: 0.85rem; }
.service-link:hover { color: var(--gold-light); }

/* ===== ABOUT STRIP ===== */
.about-strip { padding: 5.5rem 0; }
.about-quote {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 2.6vw, 2.2rem);
  font-style: italic;
  color: var(--white);
  line-height: 1.5;
  border-left: 3px solid var(--gold);
  padding-left: 1.75rem;
}
.about-quote cite { display: block; font-style: normal; font-size: 0.95rem; color: var(--gold-light); margin-top: 1.25rem; }

/* ===== PRODUCTS ===== */
.product-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: all var(--transition);
}
.product-card:hover { background: rgba(255,255,255,0.05); border-color: rgba(14,124,102,0.4); transform: translateY(-4px); }
.product-tag {
  display: inline-block;
  font-size: 0.68rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--gold-light);
  background: rgba(14,124,102,0.15);
  padding: 0.3rem 0.7rem;
  border-radius: 50px;
  margin-bottom: 1rem;
}
.product-card h4 { color: var(--white); margin-bottom: 0.75rem; }
.product-card p { font-size: 0.9rem; }

/* ===== CORE CONCEPTS TABS ===== */
.tabs-nav { display: flex; flex-wrap: wrap; gap: 0.5rem; justify-content: center; margin-bottom: 3rem; }
.tab-btn {
  padding: 0.7rem 1.4rem;
  background: var(--gray-100);
  border: none;
  border-radius: 50px;
  font-size: 0.85rem; font-weight: 600;
  color: var(--text-body);
  cursor: pointer;
  transition: all 0.2s ease;
}
.tab-btn:hover { background: var(--gold-pale); }
.tab-btn.active { background: var(--gold); color: var(--white); }
.tab-panel {
  display: none;
  grid-template-columns: 1.3fr 1fr;
  gap: 3rem;
  align-items: center;
}
.tab-panel.active { display: grid; }
.tab-panel-text ul { margin: 1.25rem 0; padding-left: 0; }
.tab-panel-text li { position: relative; padding-left: 1.5rem; margin-bottom: 0.65rem; font-size: 0.95rem; color: var(--text-body); }
.tab-panel-text li::before { content: '✓'; position: absolute; left: 0; color: var(--gold); font-weight: 700; }
.concept-visual {
  background: linear-gradient(150deg, var(--navy), var(--navy-mid));
  border-radius: var(--radius-lg);
  padding: 3rem 2rem;
  text-align: center;
  color: var(--white);
}
.concept-icon-large { font-size: 3rem; display: block; margin-bottom: 1rem; }
.concept-visual h4 { color: var(--white); margin-bottom: 0.75rem; }
.concept-visual p { color: rgba(255,255,255,0.6); font-size: 0.9rem; }

/* ===== CALCULATORS ===== */
.calc-card {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg);
  padding: 2.25rem;
  box-shadow: var(--shadow-sm);
}
.calc-card h3 { margin-bottom: 1.5rem; }
.calc-result {
  background: var(--gold-pale);
  border-radius: var(--radius);
  padding: 1.5rem;
  margin-top: 1.5rem;
  text-align: center;
}
.calc-result-label { font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.06em; color: var(--gray-700); }
.calc-result-value { font-family: var(--font-display); font-size: 2.1rem; font-weight: 700; color: var(--navy); margin: 0.35rem 0; }
.calc-result-sub { font-size: 0.82rem; color: var(--gray-500); }
.calc-breakdown { margin-top: 1.25rem; border-top: 1px solid var(--gray-300); padding-top: 1.25rem; }
.breakdown-item { display: flex; justify-content: space-between; padding: 0.5rem 0; font-size: 0.88rem; }
.breakdown-item .label { color: var(--gray-700); font-weight: 500; }
.breakdown-item .value { color: var(--text-dark); font-weight: 700; }
.contact-item .label { display: block; font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.05em; color: var(--gold-light); margin-bottom: 0.2rem; }
.rule72-input {
  width: 100%;
  padding: 0.85rem 1rem;
  border: 1.5px solid var(--gray-300);
  border-radius: var(--radius);
  font-size: 1rem;
  margin-bottom: 1rem;
}
.rule72-input:focus { outline: none; border-color: var(--gold); }

/* ===== TEAM ===== */
.team-card {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg);
  padding: 2rem;
  text-align: center;
  transition: all var(--transition);
}
.team-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.team-avatar {
  width: 84px; height: 84px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.25rem;
  color: var(--white);
}
.team-card h4 { margin-bottom: 0.25rem; }
.team-card .role { font-size: 0.8rem; font-weight: 600; color: var(--gold); text-transform: uppercase; letter-spacing: 0.04em; margin-bottom: 0.9rem; }
.team-card p { font-size: 0.87rem; }
.team-avatar.photo { padding: 0; overflow: hidden; }
.team-avatar.photo img { width: 100%; height: 100%; object-fit: cover; }
.team-avatar.initials { font-size: 1.35rem; font-weight: 700; letter-spacing: 0.03em; }

/* ===== CTA STRIP ===== */
.cta-strip {
  background: linear-gradient(150deg, var(--navy), #0D131A);
  padding: 5rem 0;
  text-align: center;
}
.cta-strip h2 { color: var(--white); margin-bottom: 1rem; }
.cta-strip p { color: rgba(255,255,255,0.6); max-width: 560px; margin: 0 auto 2.25rem; }

/* ===== CONTACT ===== */
.contact-form-wrapper {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-sm);
}
.contact-info-card {
  background: var(--navy);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  color: var(--white);
}
.contact-item { display: flex; gap: 1rem; align-items: flex-start; margin-bottom: 1.5rem; }
.contact-item-icon {
  width: 40px; height: 40px; flex-shrink: 0;
  background: rgba(14,124,102,0.18);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold-light);
}
.contact-item-text { font-size: 0.9rem; color: rgba(255,255,255,0.65); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { margin-bottom: 1.25rem; }
.form-group label { display: block; font-size: 0.82rem; font-weight: 600; color: var(--text-dark); margin-bottom: 0.4rem; }
.form-group input, .form-group select, .form-group textarea {
  width: 100%;
  padding: 0.8rem 1rem;
  border: 1.5px solid var(--gray-300);
  border-radius: var(--radius);
  font-family: inherit;
  font-size: 0.92rem;
  transition: border-color 0.2s ease;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { outline: none; border-color: var(--gold); }

/* ===== EVENTS ===== */
.event-card {
  display: flex;
  gap: 1.5rem;
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  margin-bottom: 1.25rem;
  transition: all var(--transition);
}
.event-card:hover { box-shadow: var(--shadow-md); }
.event-date {
  flex-shrink: 0;
  width: 76px; height: 76px;
  background: var(--gold-pale);
  border-radius: var(--radius);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
}
.event-date .day { font-family: var(--font-display); font-size: 1.6rem; font-weight: 700; color: var(--navy); line-height: 1; }
.event-date .month { font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.06em; color: var(--gold); margin-top: 0.2rem; }
.event-body { flex: 1; }
.event-header { display: flex; justify-content: space-between; align-items: flex-start; gap: 1rem; flex-wrap: wrap; }
.event-badge {
  font-size: 0.68rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em;
  color: var(--gold); background: var(--gold-pale);
  padding: 0.25rem 0.65rem; border-radius: 50px;
}
.event-meta { font-size: 0.82rem; color: var(--gray-500); margin-top: 0.5rem; }

/* ===== BUSINESS OPPORTUNITY ===== */
.opportunity-steps { display: flex; flex-direction: column; gap: 1.5rem; }
.step-card { display: flex; gap: 1.5rem; align-items: flex-start; }
.step-num {
  flex-shrink: 0;
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-weight: 700; font-size: 1.2rem;
}
.step-content h4 { margin-bottom: 0.4rem; }
.step-content p { font-size: 0.92rem; }

/* ===== PAGE HERO (inner pages) ===== */
.page-hero {
  position: relative;
  background: linear-gradient(160deg, var(--navy), #0D131A);
  padding: 7.5rem 0 4.5rem;
  overflow: hidden;
}
.page-hero::after {
  content: '';
  position: absolute; inset: 0;
  background-image: linear-gradient(rgba(255,255,255,0.035) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.035) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(180deg, black, transparent 90%);
}
.page-hero-content { position: relative; z-index: 1; }
.page-hero h1 { color: var(--white); margin-bottom: 1rem; }
.page-hero p { color: rgba(255,255,255,0.6); font-size: 1.05rem; max-width: 620px; }
.breadcrumb { font-size: 0.8rem; color: rgba(255,255,255,0.45); margin-bottom: 1.25rem; letter-spacing: 0.03em; }
.breadcrumb a { color: var(--gold-light); }
.breadcrumb a:hover { text-decoration: underline; }

/* ===== ABOUT PAGE VALUES ===== */
.value-card { text-align: center; padding: 2rem 1.25rem; }
.value-icon { font-size: 2rem; margin-bottom: 1rem; }
.value-card h4 { margin-bottom: 0.6rem; }
.value-card p { font-size: 0.88rem; }

/* ===== FOOTER ===== */
footer { background: #0D131A; padding: 4.5rem 0 0; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.3fr; gap: 2.5rem; padding-bottom: 3rem; }
.footer-brand .nav-logo-img { height: 30px; margin-bottom: 1.1rem; }
.footer-col h5 { color: var(--white); font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 1.25rem; }
.footer-col ul li { margin-bottom: 0.75rem; }
.footer-col ul li a { font-size: 0.87rem; color: rgba(255,255,255,0.5); transition: color 0.2s ease; }
.footer-col ul li a:hover { color: var(--gold-light); }
.footer-socials { display: flex; gap: 0.7rem; margin-top: 1.25rem; }
.social-btn {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.7);
  font-size: 0.85rem;
  transition: all 0.2s ease;
}
.social-btn:hover { background: var(--gold); color: var(--white); }
.footer-newsletter p { font-size: 0.85rem; color: rgba(255,255,255,0.5); margin-bottom: 1rem; }
.newsletter-form { display: flex; gap: 0.5rem; }
.newsletter-form input {
  flex: 1;
  padding: 0.75rem 1rem;
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.04);
  color: var(--white);
  font-size: 0.85rem;
}
.newsletter-form input::placeholder { color: rgba(255,255,255,0.35); }
.newsletter-form button {
  width: 44px; flex-shrink: 0;
  background: var(--gold);
  border: none;
  border-radius: var(--radius);
  color: var(--white);
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.2s ease;
}
.newsletter-form button:hover { background: var(--gold-light); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 1.5rem 0;
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem;
}
.footer-bottom p { font-size: 0.8rem; color: rgba(255,255,255,0.4); }
.footer-bottom p a { color: rgba(255,255,255,0.55); }
.footer-legal { display: flex; gap: 1.25rem; }
.footer-legal a { font-size: 0.8rem; color: rgba(255,255,255,0.4); }
.footer-legal a:hover { color: var(--gold-light); }

/* ===== MODAL ===== */
.modal-overlay {
  display: none;
  position: fixed; inset: 0;
  background: rgba(13,19,26,0.7);
  z-index: 2000;
  align-items: center; justify-content: center;
  padding: 1.5rem;
}
.modal-overlay.active { display: flex; }
.modal {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  max-width: 480px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  box-shadow: var(--shadow-lg);
}
.modal h3 { margin-bottom: 0.75rem; }
.modal > p { margin-bottom: 1.5rem; font-size: 0.9rem; }
.modal-close {
  position: absolute; top: 1.25rem; right: 1.25rem;
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--gray-100);
  border: none;
  cursor: pointer;
  font-size: 0.9rem;
  color: var(--text-body);
}
.modal-close:hover { background: var(--gray-300); }

/* ===== ANIMATIONS ===== */
.fade-in, .fade-in-left, .fade-in-right { opacity: 0; transition: opacity 0.7s ease, transform 0.7s ease; }
.fade-in { transform: translateY(24px); }
.fade-in-left { transform: translateX(-24px); }
.fade-in-right { transform: translateX(24px); }
.fade-in.visible, .fade-in-left.visible, .fade-in-right.visible { opacity: 1; transform: translate(0,0); }
.stagger-1 { transition-delay: 0.05s; }
.stagger-2 { transition-delay: 0.15s; }
.stagger-3 { transition-delay: 0.25s; }
.stagger-4 { transition-delay: 0.35s; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1300px) {
  .nav-links > li > a { padding: 0.5rem 0.45rem; font-size: 0.66rem; }
  .nav-cta { padding: 0.55rem 1.05rem !important; font-size: 0.65rem !important; }
  .nav-logo-img { height: 28px; }
}

@media (max-width: 1180px) {
  body { padding-top: 64px; }
  .nav-inner { min-height: 64px; }
  .nav-links, .nav-cta { display: none; }
  .nav-toggle { display: flex; }
  .nav-logo-img { height: 32px; }
  .mobile-menu { top: 64px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 860px) {
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .tab-panel { grid-template-columns: 1fr; }
  .tab-panel .concept-visual { order: -1; }
  .form-row { grid-template-columns: 1fr; }
  .hero-stats { grid-template-columns: repeat(2, 1fr); gap: 1.5rem 2rem; }
  .section { padding: 3.5rem 0; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .event-card { flex-direction: column; }
  .event-date { flex-direction: row; width: auto; height: auto; gap: 0.5rem; padding: 0.6rem 1rem; align-self: flex-start; }
}

@media (max-width: 480px) {
  .hero-stats { grid-template-columns: 1fr 1fr; }
  .btn-group { flex-direction: column; width: 100%; }
  .btn-group .btn { width: 100%; }
}

/* ===== TEAM HIGHLIGHTS SLIDER ===== */
.team-slider {
  position: relative;
  max-width: 980px;
  margin: 0 auto;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  background: var(--gray-100);
}
.team-slider-track {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.65, 0, 0.35, 1);
}
.team-slide {
  min-width: 100%;
  aspect-ratio: 16 / 9;
}
.team-slide img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.team-slider-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 46px; height: 46px;
  border-radius: 50%;
  background: rgba(11,22,41,0.55);
  border: 1px solid rgba(255,255,255,0.25);
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
  cursor: pointer;
  transition: background 0.25s ease;
  z-index: 2;
}
.team-slider-nav:hover { background: rgba(11,22,41,0.85); }
.team-slider-nav.prev { left: 1rem; }
.team-slider-nav.next { right: 1rem; }
.team-slider-dots {
  position: absolute;
  bottom: 1rem; left: 50%;
  transform: translateX(-50%);
  display: flex; gap: 0.5rem;
  z-index: 2;
}
.team-slider-dot {
  width: 9px; height: 9px;
  border-radius: 50%;
  background: rgba(255,255,255,0.5);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background 0.25s ease, transform 0.25s ease;
}
.team-slider-dot.active { background: var(--gold); transform: scale(1.2); }

@media (max-width: 640px) {
  .team-slider-nav { width: 38px; height: 38px; font-size: 1rem; }
  .team-slider-nav.prev { left: 0.5rem; }
  .team-slider-nav.next { right: 0.5rem; }
}

/* ===== GALLERY ===== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.gallery-item {
  position: relative;
  aspect-ratio: 1 / 1;
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: pointer;
  background: var(--gray-100);
  box-shadow: var(--shadow-sm);
}
.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.gallery-item:hover img { transform: scale(1.08); }
.gallery-item::after {
  content: '⤢';
  position: absolute; top: 0.75rem; right: 0.75rem;
  width: 32px; height: 32px;
  border-radius: 50%;
  background: rgba(13,19,26,0.55);
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.95rem;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.gallery-item:hover::after { opacity: 1; }

.lightbox-overlay {
  display: none;
  position: fixed; inset: 0;
  background: rgba(8,12,16,0.94);
  z-index: 3000;
  align-items: center; justify-content: center;
  padding: 2rem;
}
.lightbox-overlay.active { display: flex; }
.lightbox-overlay img {
  max-width: 90vw; max-height: 85vh;
  object-fit: contain;
  border-radius: 6px;
  box-shadow: 0 20px 70px rgba(0,0,0,0.5);
}
.lightbox-close, .lightbox-nav {
  position: fixed;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.18);
  color: var(--white);
  border-radius: 50%;
  width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  cursor: pointer;
  transition: background 0.2s ease;
}
.lightbox-close:hover, .lightbox-nav:hover { background: rgba(255,255,255,0.18); }
.lightbox-close { top: 1.75rem; right: 1.75rem; }
.lightbox-nav.prev { left: 1.75rem; top: 50%; transform: translateY(-50%); }
.lightbox-nav.next { right: 1.75rem; top: 50%; transform: translateY(-50%); }
.lightbox-counter {
  position: fixed; bottom: 1.75rem; left: 50%; transform: translateX(-50%);
  color: rgba(255,255,255,0.6); font-size: 0.85rem; letter-spacing: 0.04em;
}

@media (max-width: 860px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 0.85rem; }
  .lightbox-nav { width: 38px; height: 38px; }
  .lightbox-nav.prev { left: 0.6rem; }
  .lightbox-nav.next { right: 0.6rem; }
}

/* ===== SCHEDULE MEETING PAGE ===== */
.consult-feature-card {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg);
  padding: 2rem 1.75rem;
  text-align: center;
  box-shadow: var(--shadow-sm);
}
.consult-feature-card .icon-badge {
  width: 52px; height: 52px;
  border-radius: 50%;
  background: rgba(14,124,102,0.12);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
  margin: 0 auto 1rem;
}
.calendly-wrapper {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  overflow: hidden;
  min-height: 700px;
}
.consult-alt-contact {
  display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center;
  margin-top: 1.5rem;
}
