/* ==========================================================================
   Miller Advisors — Pricing & Growth Intelligence
   Shared stylesheet
   ========================================================================== */

:root {
  /* Brand palette (derived from current miller-advisors.com) */
  --indigo: #273B64;
  --indigo-700: #1F3153;
  --indigo-dark: #16163F;
  --indigo-soft: #EEF1F7;
  --indigo-soft-2: #E4E9F3;
  --orange: #F04923;
  --orange-dark: #CC3E1E;
  --orange-soft: #FCEAE5;
  --gray-50: #FAFAF9;
  --gray-100: #F2F2F0;
  --gray-200: #E6E6E3;
  --gray-400: #A6ACB8;
  --gray-600: #5B6270;
  --text: #1E2230;
  --white: #FFFFFF;
  --indigo-mid: #35538C;

  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 28px;

  --shadow-sm: 0 2px 10px rgba(22, 22, 63, 0.06);
  --shadow-md: 0 12px 32px rgba(22, 22, 63, 0.10);
  --shadow-lg: 0 24px 60px rgba(22, 22, 63, 0.14);

  --container: 1180px;

  --font-display: 'Raleway', -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif;
  --font-body: 'Raleway', -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif;
  --font-tagline: 'Raleway', -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--indigo-dark);
  line-height: 1.15;
  margin: 0 0 0.5em;
  font-weight: 700;
  letter-spacing: -0.01em;
}

h1 { font-size: clamp(2.2rem, 4.5vw, 3.7rem); letter-spacing: -0.01em; font-weight: 600; }
h2 { font-size: clamp(1.7rem, 3vw, 2.5rem); font-weight: 600; }
h3 { font-size: 1.25rem; font-weight: 600; }
p { margin: 0 0 1em; color: var(--gray-600); }
a { color: inherit; text-decoration: none; }
ul { padding: 0; margin: 0; list-style: none; }
img { max-width: 100%; display: block; }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 28px;
}

.container-wide {
  max-width: 1360px;
  margin: 0 auto;
  padding: 0 28px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 14px;
}
.eyebrow::before {
  content: "";
  width: 20px;
  height: 2px;
  background: var(--orange);
  display: inline-block;
}

.lede {
  font-size: 1.15rem;
  color: var(--gray-600);
  max-width: 640px;
}

section { padding: 88px 0; }
@media (max-width: 780px) { section { padding: 56px 0; } }

.bg-soft { background: var(--indigo-soft); }
.bg-dark { background: var(--indigo-dark); color: var(--white); }
.bg-dark h1, .bg-dark h2, .bg-dark h3 { color: var(--white); }
.bg-dark p { color: rgba(255,255,255,0.72); }
.bg-gray { background: var(--gray-50); }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: all 0.2s ease;
  white-space: nowrap;
}
.btn-primary { background: var(--orange); color: var(--white); }
.btn-primary:hover { background: var(--orange-dark); transform: translateY(-1px); }
.btn-outline { border-color: rgba(39,59,100,0.25); color: var(--indigo); background: transparent; }
.btn-outline:hover { border-color: var(--indigo); background: var(--indigo-soft); }
.btn-outline-light { border-color: rgba(255,255,255,0.4); color: var(--white); background: transparent; }
.btn-outline-light:hover { background: rgba(255,255,255,0.1); }
.btn-white { background: var(--white); color: var(--indigo); }
.btn-white:hover { background: var(--indigo-soft); }

/* ===== Nav ===== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--gray-200);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 28px;
  max-width: var(--container);
  margin: 0 auto;
}
.logo {
  display: flex;
  align-items: baseline;
  gap: 6px;
  font-weight: 800;
  font-size: 1.05rem;
  letter-spacing: -0.01em;
  color: var(--indigo-dark);
}
.logo span.dot { color: var(--orange); }
.logo small {
  font-weight: 600;
  font-size: 0.6rem;
  letter-spacing: 0.12em;
  color: var(--gray-600);
  text-transform: uppercase;
  display: block;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 34px;
}
.nav-links a {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--indigo);
  opacity: 0.75;
  transition: opacity 0.15s;
}
.nav-links a:hover, .nav-links a.active { opacity: 1; }
.nav-cta { display: flex; align-items: center; gap: 22px; }
.nav-toggle { display: none; }

@media (max-width: 900px) {
  .nav-links { display: none; }
  .nav-toggle {
    display: block;
    background: none;
    border: none;
    font-size: 1.4rem;
    cursor: pointer;
    color: var(--indigo);
  }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 68px;
    left: 0;
    right: 0;
    background: var(--white);
    padding: 20px 28px 28px;
    gap: 18px;
    box-shadow: var(--shadow-md);
  }
}

/* ===== Hero ===== */
.hero {
  position: relative;
  overflow: hidden;
  min-height: 62vh;
  box-sizing: border-box;
  padding: 150px 0 40px;
  background-image:
    linear-gradient(100deg, rgba(255,255,255,0.94) 0%, rgba(255,255,255,0.82) 28%, rgba(255,255,255,0.4) 52%, rgba(255,255,255,0.08) 72%),
    url("../images/Background-mainpage.png");
  background-size: cover;
  background-position: center right;
  background-repeat: no-repeat;
}
@media (max-width: 700px) {
  .hero { min-height: 50vh; padding: 115px 0 30px; }
}
.hero::before { display: none; }
.hero .hero-blob { display: none; }
.hero-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.5;
  z-index: 0;
}
.hero-blob.b1 { width: 460px; height: 460px; background: var(--orange); opacity: 0.16; top: -180px; right: -120px; }
.hero-blob.b2 { width: 380px; height: 380px; background: var(--indigo); opacity: 0.14; bottom: -160px; left: -100px; }
.hero .container { position: relative; z-index: 1; }
.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
}
@media (max-width: 900px) { .hero-grid { grid-template-columns: 1fr; } }

.hero-actions { display: flex; gap: 14px; margin-top: 54px; flex-wrap: wrap; }

.page-hero {
  padding: 76px 0 60px;
  background: var(--indigo-dark);
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.page-hero h1 { color: var(--white); max-width: 780px; }
.page-hero .lede { color: rgba(255,255,255,0.75); max-width: 640px; }
.page-hero .hero-blob.b1 { background: var(--orange); opacity: 0.22; }
.page-hero .hero-blob.b2 { background: #4C6FB0; opacity: 0.22; }

.page-hero-img {
  background-image: url("../images/MillerAdvisors-background.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.page-hero-img .hero-blob { display: none; }

/* ===== Cards / grids ===== */
.grid { display: grid; gap: 28px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 900px) { .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) { .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; } }

.card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  padding: 30px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.card .icon {
  width: 46px; height: 46px;
  border-radius: 12px;
  background: var(--indigo-soft);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
  color: var(--indigo);
}
.card h3 { margin-bottom: 10px; }
.card ul li {
  font-size: 0.92rem;
  color: var(--gray-600);
  padding: 5px 0 5px 20px;
  position: relative;
}
.card ul li::before {
  content: "";
  position: absolute; left: 0; top: 13px;
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--orange);
}

.bullet-list li {
  font-size: 0.94rem;
  color: var(--gray-600);
  padding: 6px 0 6px 20px;
  position: relative;
}
.bullet-list li::before {
  content: "";
  position: absolute; left: 0; top: 15px;
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--orange);
}

.section-head { max-width: 720px; margin-bottom: 52px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }

/* Case study preview cards */
.case-row {
  margin-top: 56px;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
@media (max-width: 980px) { .case-row { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) { .case-row { grid-template-columns: 1fr; } }
.case-card {
  background: var(--indigo);
  border-radius: var(--radius-md);
  padding: 38px 34px;
  display: flex;
  flex-direction: column;
  min-height: 300px;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.08);
}
.case-card::before {
  content: "";
  position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: var(--orange);
  opacity: 0; transition: opacity 0.2s ease;
}
.case-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); background: var(--indigo-700); }
.case-card:hover::before { opacity: 1; }
.case-card .case-tag {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 18px;
}
.case-card h4 {
  color: var(--white);
  font-size: 1.32rem;
  line-height: 1.4;
  margin-bottom: 16px;
  font-family: var(--font-display);
  font-weight: 600;
}
.case-card p {
  color: rgba(255,255,255,0.7);
  font-size: 1rem;
  line-height: 1.65;
  flex-grow: 1;
}
.case-card .case-cta {
  margin-top: 26px;
  padding-top: 22px;
  border-top: 1px solid rgba(255,255,255,0.14);
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--white);
  font-weight: 600;
  font-size: 0.95rem;
  transition: color 0.2s ease, gap 0.25s ease;
}
.case-card .case-cta svg { flex-shrink: 0; transition: transform 0.25s ease; }
.case-card:hover .case-cta { color: var(--orange); gap: 15px; }
.case-card:hover .case-cta svg { transform: translateX(5px); }

/* Pull quote */
.pull-quote {
  border-left: 3px solid var(--orange);
  padding-left: 26px;
  font-size: 1.3rem;
  color: var(--indigo-dark);
  font-weight: 600;
  line-height: 1.5;
  max-width: 780px;
}
.pull-quote cite {
  display: block;
  font-style: normal;
  font-weight: 500;
  font-size: 0.9rem;
  color: var(--gray-600);
  margin-top: 14px;
}

.quote-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 44px;
  box-shadow: var(--shadow-md);
  position: relative;
}
.quote-card .mark { font-size: 3rem; color: var(--orange); line-height: 1; font-weight: 800; }

/* Stat row */
.stat-row { display: flex; gap: 50px; flex-wrap: wrap; }
.stat { min-width: 130px; }
.stat .num { font-size: 2.4rem; font-weight: 800; color: var(--indigo); }
.stat .label { font-size: 0.85rem; color: var(--gray-600); }
.bg-dark .stat .num { color: var(--white); }
.bg-dark .stat .label { color: rgba(255,255,255,0.65); }

/* Team */
.team-card { text-align: center; }
.team-photo-img {
  width: 148px;
  height: 148px;
  border-radius: 50%;
  display: block;
  margin: 0 auto 20px;
  box-shadow: 0 6px 18px rgba(39,59,100,0.16);
}
.team-name { font-weight: 700; color: var(--indigo-dark); margin-bottom: 2px; }
.team-role { font-size: 0.85rem; color: var(--orange); font-weight: 600; margin-bottom: 6px; }
.team-location { font-size: 0.82rem; color: var(--gray-400); }
.team-network {
  display: inline-block;
  margin-top: 10px;
  padding: 4px 12px;
  border-radius: 999px;
  background: var(--indigo-soft);
  color: var(--indigo);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

/* Team grid — hover-highlight cards linking to bio pages */
.team-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 26px; }
@media (max-width: 900px) { .team-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) { .team-grid { grid-template-columns: 1fr; } }

.team-grid-card {
  display: block;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  padding: 28px 20px 22px;
  text-align: center;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.team-grid-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }

.team-grid-photo { width: 118px; height: 118px; margin: 0 auto 18px; }
.team-grid-photo img { width: 100%; height: 100%; border-radius: 50%; display: block; object-fit: cover; box-shadow: 0 6px 18px rgba(39,59,100,0.16); }

.team-grid-info { border-radius: var(--radius-sm); padding: 12px 14px 6px; transition: background 0.25s ease; }
.team-grid-card:hover .team-grid-info { background: var(--indigo-dark); }

.team-grid-name { font-weight: 700; color: var(--indigo-dark); margin-bottom: 2px; transition: color 0.25s ease; }
.team-grid-card:hover .team-grid-name { color: var(--white); }

.team-grid-role { font-size: 0.85rem; color: var(--orange); font-weight: 600; margin-bottom: 6px; transition: color 0.25s ease; }
.team-grid-card:hover .team-grid-role { color: #FF8F6B; }

.team-grid-location { font-size: 0.8rem; color: var(--gray-400); transition: color 0.25s ease; }
.team-grid-card:hover .team-grid-location { color: rgba(255,255,255,0.55); }

.team-grid-network {
  display: inline-block;
  margin-top: 10px;
  padding: 4px 12px;
  border-radius: 999px;
  background: var(--indigo-soft);
  color: var(--indigo);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  transition: background 0.25s ease, color 0.25s ease;
}
.team-grid-card:hover .team-grid-network { background: rgba(255,255,255,0.14); color: var(--white); }

/* Team bio pages */
.back-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--indigo);
  text-decoration: none;
  margin-bottom: 26px;
}
.back-link:hover { color: var(--orange); }

.bio-hero-grid {
  display: grid;
  grid-template-columns: 1fr 240px;
  gap: 50px;
  align-items: center;
}
@media (max-width: 760px) {
  .bio-hero-grid { grid-template-columns: 1fr; text-align: center; }
  .bio-photo-wrap { order: -1; }
  .bio-meta { align-items: center; }
}

.bio-photo-wrap img {
  width: 220px;
  height: 220px;
  border-radius: 50%;
  object-fit: cover;
  display: block;
  margin: 0 auto;
  box-shadow: var(--shadow-lg);
}

.bio-meta { display: flex; flex-direction: column; gap: 12px; margin: 22px 0; }
.bio-meta-label {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--gray-400);
  margin-bottom: 2px;
}
.bio-meta-value { font-size: 0.95rem; color: var(--white); }

.bio-linkedin {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  border-radius: 999px;
  border: 1.5px solid rgba(39,59,100,0.25);
  color: var(--indigo);
  font-weight: 600;
  font-size: 0.85rem;
  text-decoration: none;
  transition: all 0.2s ease;
}
.bio-linkedin:hover { border-color: var(--indigo); background: var(--indigo-soft); }

/* CTA banner */
.cta-banner {
  background: var(--indigo);
  border-radius: var(--radius-lg);
  padding: 60px;
  text-align: center;
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.cta-banner h2 { color: var(--white); margin-bottom: 16px; }
.cta-banner p { color: rgba(255,255,255,0.75); max-width: 560px; margin-left: auto; margin-right: auto; }
.cta-banner .hero-blob { background: var(--orange); opacity: 0.25; width: 300px; height: 300px; top: -100px; right: -60px; }

/* Blog / articles */
.article-card { display: flex; flex-direction: column; height: 100%; }
.tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--indigo);
  background: var(--indigo-soft);
  padding: 5px 12px;
  border-radius: 999px;
  margin-bottom: 14px;
  width: fit-content;
}
.article-meta { font-size: 0.82rem; color: var(--gray-400); margin-top: auto; padding-top: 16px; }
.article-thumb {
  height: 160px;
  border-radius: var(--radius-sm);
  margin-bottom: 20px;
  background: linear-gradient(135deg, var(--indigo-soft-2), var(--orange-soft));
}

.article-body { max-width: 720px; margin: 0 auto; }
.article-body h2 { margin-top: 1.4em; }
.article-body p { color: var(--text); font-size: 1.05rem; }
.article-body .pull-quote { margin: 2em 0; }

/* Forms */
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-grid .full { grid-column: 1 / -1; }
@media (max-width: 620px) { .form-grid { grid-template-columns: 1fr; } }
label { display: block; font-size: 0.85rem; font-weight: 600; color: var(--indigo-dark); margin-bottom: 8px; }
input, textarea, select {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  font-family: inherit;
  background: var(--white);
  color: var(--text);
  transition: border-color 0.15s;
}
input:focus, textarea:focus, select:focus {
  outline: none;
  border-color: var(--indigo);
}
textarea { resize: vertical; min-height: 130px; }

/* Values / principles list styles */
.principle-num {
  font-size: 0.8rem;
  font-weight: 800;
  color: var(--orange);
  letter-spacing: 0.06em;
  margin-bottom: 10px;
}

/* Footer */
.site-footer {
  background: var(--indigo-dark);
  color: rgba(255,255,255,0.7);
  padding: 70px 0 30px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 44px;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}
@media (max-width: 780px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
.footer-grid h4 {
  color: var(--white);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 18px;
}
.footer-grid .logo { color: var(--white); margin-bottom: 0; }
.footer-logo img { height: 56px; width: auto; display: block; margin-bottom: 16px; }
.footer-grid p { font-size: 0.9rem; color: rgba(255,255,255,0.6); }
.footer-grid a { font-size: 0.9rem; color: rgba(255,255,255,0.7); display: block; margin-bottom: 10px; }
.footer-grid a:hover { color: var(--white); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 24px;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.45);
  flex-wrap: wrap;
  gap: 10px;
}

/* Utility */
.mt-0 { margin-top: 0; }
.text-center { text-align: center; }
.flex { display: flex; }
.gap-3 { gap: 12px; }
.fade-in { animation: fadeIn 0.6s ease both; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(12px);} to { opacity: 1; transform: translateY(0);} }

/* ==========================================================================
   V2 — Motion, texture, icons, diagrams
   ========================================================================== */

/* Grain / noise texture overlay for depth on dark + hero sections */
.noise {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.05;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* Drifting hero blobs */
@keyframes drift {
  0%   { transform: translate(0,0) scale(1); }
  50%  { transform: translate(26px,-22px) scale(1.08); }
  100% { transform: translate(0,0) scale(1); }
}
.hero-blob { animation: drift 16s ease-in-out infinite; }
.hero-blob.b2 { animation-duration: 20s; animation-delay: -6s; }

/* Subtle dot-grid technical texture behind dark hero sections */
.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255,255,255,0.08) 1px, transparent 1px);
  background-size: 26px 26px;
  opacity: 0.5;
  z-index: 0;
  pointer-events: none;
}
.page-hero > .container, .hero > .container { position: relative; z-index: 1; }

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.8s cubic-bezier(.16,1,.3,1), transform 0.8s cubic-bezier(.16,1,.3,1);
}
.reveal.in-view { opacity: 1; transform: none; }

/* Nav shrink/shadow on scroll */
.site-header.scrolled { box-shadow: 0 4px 24px rgba(22,22,63,0.08); }
.site-header.scrolled .nav { padding-top: 12px; padding-bottom: 12px; }
.nav { transition: padding 0.25s ease; }

/* Underline hover for nav links */
.nav-links a { position: relative; }
.nav-links a::after {
  content: "";
  position: absolute; left: 0; bottom: -6px;
  width: 0; height: 2px;
  background: var(--orange);
  transition: width 0.2s ease;
}
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }

/* Button arrow micro-interaction */
.btn .arrow { display: inline-block; transition: transform 0.2s ease; }
.btn:hover .arrow { transform: translateX(4px); }

/* Icon system (replaces emoji) */
.card .icon svg { width: 22px; height: 22px; stroke: var(--indigo); }
.icon-lg { width: 30px; height: 30px; stroke: var(--orange); }

/* Marquee (client-type badge strip) */
.marquee-wrap {
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
          mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.marquee-track {
  display: flex;
  width: max-content;
  gap: 16px;
  animation: scroll-left 26s linear infinite;
}
@keyframes scroll-left {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
.badge-pill {
  padding: 11px 22px;
  border: 1.5px solid var(--gray-200);
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--indigo);
  white-space: nowrap;
  background: var(--white);
}

/* Framework diagram (homepage) */
.framework-wrap {
  display: flex;
  justify-content: center;
  padding: 20px 0 10px;
}
.framework-wrap svg { max-width: 100%; height: auto; }
.fw-node-label {
  font-family: var(--font-body);
  font-size: 12.5px;
  font-weight: 700;
  fill: var(--indigo-dark);
}
.fw-node-sub {
  font-family: var(--font-body);
  font-size: 10.5px;
  fill: var(--gray-600);
}

/* Reading progress bar (article pages) */
.reading-progress {
  position: fixed;
  top: 0; left: 0;
  height: 3px;
  background: var(--orange);
  width: 0%;
  z-index: 300;
}

/* Page load fade */
body { animation: pageFade 0.5s ease both; }
@keyframes pageFade { from { opacity: 0; } to { opacity: 1; } }

/* Stagger helper (JS sets --d via inline style) */
.reveal { transition-delay: var(--d, 0s); }

/* Rotating hero word + sub-tagline */
.sub-tagline {
  font-family: var(--font-tagline);
  font-size: clamp(1.3rem, 2vw, 1.6rem);
  font-weight: 700;
  color: var(--indigo);
  letter-spacing: -0.01em;
  margin: 36px 0 18px;
}
.rotating-wrap {
  position: relative;
  display: inline-block;
}
.rotating-word {
  position: relative;
  z-index: 1;
  display: inline-block;
  color: var(--orange);
  white-space: nowrap;
  transition: opacity 0.32s ease, transform 0.32s ease;
  opacity: 1;
  transform: translateY(0);
}
.rotating-word.swap { opacity: 0; transform: translateY(10px); }
.highlight-bar {
  position: absolute;
  left: -8px;
  right: -8px;
  bottom: -9px;
  height: 11px;
  background: linear-gradient(100deg,
    rgba(240, 73, 35, 0.04) 0%,
    rgba(240, 73, 35, 0.36) 10%,
    rgba(240, 73, 35, 0.22) 48%,
    rgba(240, 73, 35, 0.38) 76%,
    rgba(240, 73, 35, 0.06) 100%);
  border-radius: 3px 12px 7px 14px / 7px 4px 10px 5px;
  z-index: 0;
  transform: rotate(-1.6deg) scaleX(0);
  transform-origin: left center;
  transition: transform 0.5s cubic-bezier(.16,1,.3,1);
}
.highlight-bar.active { transform: rotate(-1.6deg) scaleX(1); }

/* ==========================================================================
   V3 — Orbiting Pricing & Growth Intelligence diagram
   ========================================================================== */

.orbit-section {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 36px;
  flex-wrap: wrap;
  padding: 10px 0 40px;
}

.orbit-diagram {
  position: relative;
  width: min(760px, 92vw);
  aspect-ratio: 1 / 1;
  flex-shrink: 0;
}

.orbit-center {
  position: absolute;
  top: 50%; left: 50%;
  width: 32%;
  aspect-ratio: 1 / 1;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: radial-gradient(circle at 32% 26%, #35497e 0%, var(--indigo-dark) 72%);
  box-shadow: 0 0 0 2px rgba(240,86,43,0.35), 0 24px 54px rgba(22,22,63,0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 10%;
  z-index: 3;
}
.orbit-center::after {
  content: "";
  position: absolute;
  inset: -13%;
  border: 1.5px dashed rgba(39,59,100,0.18);
  border-radius: 50%;
  z-index: -1;
}
.orbit-center span {
  color: #fff;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(1rem, 2.4vw, 1.3rem);
  line-height: 1.28;
}

.orbit-ring {
  position: absolute;
  inset: 0;
  animation: orbit-spin 70s linear infinite;
}
@keyframes orbit-spin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}
@keyframes orbit-spin-reverse {
  from { transform: rotate(0deg); }
  to   { transform: rotate(-360deg); }
}

.orbit-slot {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 1px;
  height: 1px;
  transform: rotate(var(--angle)) translateX(var(--radius));
}
.orbit-slot::before {
  content: "";
  position: absolute;
  top: 0; right: 0;
  width: var(--radius);
  height: 2px;
  background: linear-gradient(to left, rgba(39,59,100,0.32), rgba(39,59,100,0));
}
.orbit-unrotate {
  position: absolute;
  top: 0;
  left: 0;
  transform: translate(-50%, -50%) rotate(calc(var(--angle) * -1));
}

.orbit-counter-spin {
  animation: orbit-spin-reverse 70s linear infinite;
}

.orbit-card {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 210px;
  padding: 16px 18px;
  background: var(--white);
  border: 1.5px solid var(--gray-200);
  border-radius: 16px;
  box-shadow: var(--shadow-sm);
  cursor: pointer;
  text-align: center;
  font-family: var(--font-body);
  transition: box-shadow 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}
.orbit-card:hover,
.orbit-card:focus-visible,
.orbit-card.is-active {
  box-shadow: var(--shadow-md);
  border-color: var(--orange);
  transform: translateY(-3px);
  outline: none;
}
.orbit-card .orbit-icon {
  flex-shrink: 0;
  width: 42px;
  height: 42px;
  border-radius: 11px;
  background: var(--indigo-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--indigo);
}
.orbit-card .orbit-icon svg { width: 20px; height: 20px; }
.orbit-card .orbit-label {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--indigo-dark);
  line-height: 1.3;
}

.orbit-info { width: 300px; flex-shrink: 0; }
.orbit-info-inner {
  background: var(--indigo-dark);
  color: #fff;
  border-radius: var(--radius-lg);
  padding: 40px 36px;
  min-height: 240px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
  transition: box-shadow 0.2s ease;
}
.orbit-info-inner .tag { background: rgba(255,255,255,0.12); color: #fff; }
.orbit-info-inner h4 { color: #fff; margin: 4px 0 12px; font-size: 1.2rem; }
.orbit-info-inner p { color: rgba(255,255,255,0.78); font-size: 0.98rem; margin: 0; }

.orbit-fallback { display: none; }

@media (max-width: 1150px) {
  .orbit-section { flex-direction: column; }
  .orbit-info { width: 100%; max-width: 560px; }
}
@media (max-width: 780px) {
  .orbit-section { display: none; }
  .orbit-fallback { display: grid; }
}

/* Homepage hero headline — larger than default h1 */
.hero-title {
  font-family: var(--font-tagline);
  font-size: clamp(2.4rem, 5.2vw, 4.6rem);
  line-height: 1.1;
  margin-bottom: 0;
}
.hero-title-lead { color: var(--indigo); }

/* Customer logo marquee */
.logo-item {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 70px;
  flex-shrink: 0;
  padding: 0 6px;
}
.logo-item img {
  max-width: 150px;
  max-height: 42px;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: grayscale(1);
  opacity: 0.5;
  transition: filter 0.25s ease, opacity 0.25s ease;
}
.logo-item:hover img { filter: none; opacity: 1; }
.logo-track { gap: 56px; animation-duration: 80s; }
.logo-placeholder-label {
  display: none;
  align-items: center;
  justify-content: center;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.92rem;
  letter-spacing: 0.01em;
  color: var(--gray-400);
  text-align: center;
  transition: color 0.25s ease;
}
.logo-item:hover .logo-placeholder-label { color: var(--indigo); }

/* Nav logo image (replaces text wordmark) */
.logo-mark {
  display: flex;
  align-items: center;
}
.logo-mark img {
  height: 55px;
  width: auto;
  display: block;
}

/* Force hero copy block to stay left-aligned regardless of word length */
.hero-copy {
  text-align: left;
  width: 100%;
}
.hero-copy .hero-title,
.hero-copy .sub-tagline,
.hero-copy .lede {
  text-align: left;
}

/* Pillar cards (homepage, below hero) — rounded cards with hover accent */
.pillar-card {
  border-color: var(--gray-200);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.pillar-card:hover {
  border-color: var(--orange);
}
.pillar-card:hover .icon {
  background: var(--orange-soft);
  color: var(--orange);
}
.pillar-card .icon {
  transition: background 0.2s ease, color 0.2s ease;
}

/* Why Miller Advisors — dark gradient cards */
.whyus-dark-card {
  background: var(--indigo);
  border: 1px solid rgba(255,255,255,0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease, background 0.2s ease;
  position: relative;
  overflow: hidden;
}
.whyus-dark-card::before {
  content: "";
  position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: var(--orange);
  opacity: 0; transition: opacity 0.2s ease;
}
.whyus-dark-card .icon {
  background: rgba(255,255,255,0.1);
  color: var(--orange);
  transition: background 0.2s ease, color 0.2s ease;
}
.whyus-dark-card h3 { color: var(--white); }
.whyus-dark-card p { color: rgba(255,255,255,0.66); }
.whyus-dark-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 38px rgba(0,0,0,0.32);
  border-color: var(--orange);
  background: var(--indigo-700);
}
.whyus-dark-card:hover::before { opacity: 1; }
.whyus-dark-card:hover .icon {
  background: var(--orange);
  color: var(--white);
}

/* Client logo cycle (2-row grid, crossfading sets, brand-tinted section) */
.client-cycle-section {
  padding: 56px 0;
  background: linear-gradient(180deg, var(--indigo-soft) 0%, #fff 100%);
}
.client-cycle-stage {
  position: relative;
  min-height: 198px;
}
.client-cycle-group {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 28px 20px;
  max-width: 1120px;
  margin: 0 auto;
  align-content: center;
  justify-items: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.7s ease;
}
.client-cycle-group.is-active {
  opacity: 1;
  visibility: visible;
  position: relative;
}
@media (max-width: 900px) {
  .client-cycle-group { grid-template-columns: repeat(4, 1fr); gap: 24px 16px; }
}
@media (max-width: 560px) {
  .client-cycle-group { grid-template-columns: repeat(3, 1fr); }
}
.client-cycle-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 30px;
}
.cycle-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gray-200);
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}
.cycle-dot.is-active {
  background: var(--orange);
  transform: scale(1.2);
}

/* Hero scroll-down cue */
#pillars { scroll-margin-top: 90px; }
#whyus { scroll-margin-top: 90px; }

.scroll-cue {
  position: absolute;
  left: 50%;
  bottom: 34px;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
}
.scroll-cue-bob {
  display: inline-flex;
  animation: scrollCueBob 2.2s ease-in-out infinite;
}
.scroll-cue-circle {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255,255,255,0.78);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border: 1.5px solid rgba(39,59,100,0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--indigo);
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease, color 0.25s ease;
}
.scroll-cue-circle svg { width: 20px; height: 20px; }
.scroll-cue:hover .scroll-cue-circle {
  transform: scale(1.12);
  border-color: var(--orange);
  color: var(--orange);
  background: rgba(255,255,255,0.92);
}
@keyframes scrollCueBob {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(8px); }
}

/* ==========================================================================
   Homepage v2 — gradient hero, dark "Why Miller Advisors" panel, and
   4-column footer with solid-orange CTA column. Brought in from the
   miller-advisors.com brand-alignment mockup.
   ========================================================================== */

:root {
  --network-texture-v2: url("data:image/svg+xml,%3Csvg%20xmlns%3D%27http%3A//www.w3.org/2000/svg%27%20viewBox%3D%270%200%20900%20700%27%3E%0A%3Cg%20fill%3D%27none%27%20stroke%3D%27%23ffffff%27%20stroke-width%3D%271%27%20opacity%3D%270.28%27%3E%0A%3Cline%20x1%3D%2780%27%20y1%3D%2790%27%20x2%3D%27260%27%20y2%3D%27190%27/%3E%0A%3Cline%20x1%3D%27260%27%20y1%3D%27190%27%20x2%3D%27440%27%20y2%3D%2780%27/%3E%0A%3Cline%20x1%3D%27260%27%20y1%3D%27190%27%20x2%3D%27340%27%20y2%3D%27380%27/%3E%0A%3Cline%20x1%3D%27440%27%20y1%3D%2780%27%20x2%3D%27620%27%20y2%3D%27170%27/%3E%0A%3Cline%20x1%3D%27620%27%20y1%3D%27170%27%20x2%3D%27790%27%20y2%3D%27100%27/%3E%0A%3Cline%20x1%3D%27620%27%20y1%3D%27170%27%20x2%3D%27680%27%20y2%3D%27360%27/%3E%0A%3Cline%20x1%3D%27340%27%20y1%3D%27380%27%20x2%3D%27500%27%20y2%3D%27470%27/%3E%0A%3Cline%20x1%3D%27500%27%20y1%3D%27470%27%20x2%3D%27680%27%20y2%3D%27360%27/%3E%0A%3Cline%20x1%3D%27150%27%20y1%3D%27450%27%20x2%3D%27340%27%20y2%3D%27380%27/%3E%0A%3Cline%20x1%3D%27790%27%20y1%3D%27100%27%20x2%3D%27840%27%20y2%3D%27260%27/%3E%0A%3Cline%20x1%3D%27680%27%20y1%3D%27360%27%20x2%3D%27840%27%20y2%3D%27260%27/%3E%0A%3Cline%20x1%3D%2760%27%20y1%3D%27480%27%20x2%3D%27150%27%20y2%3D%27450%27/%3E%0A%3Cline%20x1%3D%27500%27%20y1%3D%27470%27%20x2%3D%27420%27%20y2%3D%27600%27/%3E%0A%3Cline%20x1%3D%27340%27%20y1%3D%27380%27%20x2%3D%27230%27%20y2%3D%27560%27/%3E%0A%3C/g%3E%0A%3Cg%20fill%3D%27%23F04923%27%3E%0A%3Ccircle%20cx%3D%27260%27%20cy%3D%27190%27%20r%3D%276%27/%3E%0A%3Ccircle%20cx%3D%27620%27%20cy%3D%27170%27%20r%3D%276%27/%3E%0A%3Ccircle%20cx%3D%27340%27%20cy%3D%27380%27%20r%3D%275%27/%3E%0A%3Ccircle%20cx%3D%27680%27%20cy%3D%27360%27%20r%3D%275%27/%3E%0A%3C/g%3E%0A%3Cg%20fill%3D%27%23ffffff%27%20opacity%3D%270.65%27%3E%0A%3Ccircle%20cx%3D%2780%27%20cy%3D%2790%27%20r%3D%273.5%27/%3E%0A%3Ccircle%20cx%3D%27440%27%20cy%3D%2780%27%20r%3D%273.5%27/%3E%0A%3Ccircle%20cx%3D%27790%27%20cy%3D%27100%27%20r%3D%273.5%27/%3E%0A%3Ccircle%20cx%3D%27500%27%20cy%3D%27470%27%20r%3D%273.5%27/%3E%0A%3Ccircle%20cx%3D%27150%27%20cy%3D%27450%27%20r%3D%273.5%27/%3E%0A%3Ccircle%20cx%3D%27840%27%20cy%3D%27260%27%20r%3D%273.5%27/%3E%0A%3Ccircle%20cx%3D%2760%27%20cy%3D%27480%27%20r%3D%273%27/%3E%0A%3Ccircle%20cx%3D%27420%27%20cy%3D%27600%27%20r%3D%273%27/%3E%0A%3Ccircle%20cx%3D%27230%27%20cy%3D%27560%27%20r%3D%273%27/%3E%0A%3C/g%3E%0A%3C/svg%3E");
}

/* ---- Nav v2: solid indigo bar, white logo + links ---- */
.site-header-v2 {
  background: var(--indigo);
  border-bottom: none;
  backdrop-filter: none;
}
.site-header-v2.scrolled { box-shadow: 0 4px 18px rgba(0,0,0,0.18); }
.site-header-v2 .logo-mark img { height: 46px; }
.site-header-v2 .nav-links a { color: rgba(255,255,255,0.82); }
.site-header-v2 .nav-links a:hover,
.site-header-v2 .nav-links a.active { color: var(--white); }
.site-header-v2 .nav-toggle { color: var(--white); }
/* Mobile dropdown panel is white, so its links need to go back to dark text */
@media (max-width: 900px) {
  .site-header-v2 .nav-links a { color: var(--indigo); opacity: 0.75; }
  .site-header-v2 .nav-links a:hover,
  .site-header-v2 .nav-links a.active { color: var(--indigo); opacity: 1; }
}

/* ---- Hero v2: branded background image + two-tone headline ---- */
.hero-v2 {
  position: relative;
  overflow: hidden;
  min-height: 57vh;
  box-sizing: border-box;
  padding: 110px 0 65px;
  background-image: url("../images/MillerAdvisorsBackground-3.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
@media (max-width: 700px) {
  .hero-v2 { min-height: 52vh; padding: 90px 0 65px; }
}
.hero-v2 .container { position: relative; z-index: 2; }
.hero-title-v2 .hero-title-lead { color: var(--white); }
.rotating-word-v2 { font-weight: 500; }
.hero-v2 .sub-tagline { color: rgba(255,255,255,0.78); }
.hero-v2 .btn-outline { border-color: rgba(255,255,255,0.5); color: var(--white); background: transparent; }
.hero-v2 .btn-outline:hover { border-color: var(--white); background: rgba(255,255,255,0.12); }

/* ---- World map / logo panel, echoing "Why Miller Advisors" ---- */
.whyus-panel {
  position: relative;
  background: var(--indigo);
  color: var(--white);
  padding-top: 90px;
  overflow: hidden;
}
.whyus-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
  min-height: 460px;
}
@media (max-width: 900px) { .whyus-grid { grid-template-columns: 1fr; min-height: 0; } }

.whyus-media {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 40px;
  background-image: var(--network-texture-v2), linear-gradient(160deg, var(--indigo) 0%, var(--indigo-700) 100%);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
.whyus-media img { max-width: 340px; width: 80%; }

.whyus-content {
  padding: 60px 20px 70px 56px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media (max-width: 900px) { .whyus-content { padding: 48px 8px 64px; } }
.whyus-content .eyebrow { color: var(--orange); }
.whyus-content .eyebrow::before { background: var(--orange); }
.whyus-content h2 { color: var(--white); margin-bottom: 14px; }
.whyus-content > p { color: rgba(255,255,255,0.72); max-width: 520px; }

.whyus-mini-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 26px 30px;
  margin-top: 32px;
  max-width: 560px;
}
@media (max-width: 500px) { .whyus-mini-grid { grid-template-columns: 1fr; } }
.whyus-mini-item { display: flex; gap: 14px; align-items: flex-start; }
.whyus-mini-icon {
  flex-shrink: 0;
  width: 38px; height: 38px;
  border-radius: 10px;
  background: rgba(255,255,255,0.1);
  color: var(--orange);
  display: flex; align-items: center; justify-content: center;
}
.whyus-mini-item h4 { color: var(--white); font-size: 0.96rem; margin: 0 0 4px; }
.whyus-mini-item p { color: rgba(255,255,255,0.62); font-size: 0.85rem; margin: 0; }

/* ---- Footer v2: 4-column dark footer + solid orange CTA column ---- */
.site-footer-v2 {
  background: var(--indigo-dark);
  color: rgba(255,255,255,0.75);
  padding: 0;
}
.footer-v2-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1.1fr;
}
@media (max-width: 900px) { .footer-v2-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .footer-v2-grid { grid-template-columns: 1fr; } }

.footer-v2-col {
  padding: 48px 34px;
  border-right: 1px solid rgba(255,255,255,0.1);
}
.footer-v2-col:last-child { border-right: none; }
@media (max-width: 900px) { .footer-v2-col:nth-child(2) { border-right: none; } }
@media (max-width: 560px) { .footer-v2-col { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.1); } }

/* Per-column palette, matching the miller-advisors.com footer reference */
.footer-v2-col:nth-child(1),
.footer-v2-col:nth-child(2) { background: var(--indigo); }
.footer-v2-col:nth-child(3) { background: var(--indigo-mid); }

.footer-v2-col img.footer-v2-logo { height: 40px; width: auto; margin-bottom: 18px; }
.footer-v2-col h5 {
  color: var(--white);
  font-weight: 700;
  font-size: 0.92rem;
  margin: 0 0 6px;
}
.footer-v2-col p { color: rgba(255,255,255,0.62); font-size: 0.88rem; margin: 0 0 4px; }
.footer-v2-col a.footer-v2-link { display: block; color: rgba(255,255,255,0.72); font-size: 0.9rem; margin-bottom: 10px; text-decoration: none; }
.footer-v2-col a.footer-v2-link:hover { color: var(--white); }
.footer-v2-col a.footer-v2-contact { color: rgba(255,255,255,0.85); text-decoration: none; }
.footer-v2-col a.footer-v2-contact:hover { color: var(--white); }

.footer-v2-menu-badge {
  width: 44px; height: 44px;
  border: 1.5px solid rgba(255,255,255,0.35);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.8);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-align: center;
  line-height: 1.1;
  margin-bottom: 16px;
}

.footer-v2-col:nth-child(3) .footer-v2-social-icon { background: var(--white); color: var(--indigo); }

.footer-v2-social-icon {
  width: 40px; height: 40px;
  border-radius: 8px;
  background: rgba(255,255,255,0.1);
  display: flex; align-items: center; justify-content: center;
  color: var(--white);
  margin-bottom: 16px;
}
.footer-v2-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 12px;
  padding: 9px 18px;
  border-radius: 6px;
  background: var(--indigo-dark);
  color: var(--white);
  font-size: 0.82rem;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.2s ease;
}
.footer-v2-btn:hover { background: #10102c; }

.footer-v2-cta {
  background: var(--orange);
  color: var(--white);
  display: flex;
  flex-direction: column;
}
.footer-v2-cta .footer-v2-social-icon { background: rgba(255,255,255,0.16); }
.footer-v2-cta h5 { color: var(--white); font-size: 1rem; }
.footer-v2-cta p { color: rgba(255,255,255,0.88); }
.footer-v2-cta .footer-v2-btn { background: var(--indigo-dark); color: var(--white); }
.footer-v2-cta .footer-v2-btn:hover { background: #10102c; }

.footer-v2-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.55);
}
.footer-v2-bottom a { color: rgba(255,255,255,0.7); }
.footer-v2-bottom a:hover { color: var(--white); }
