/* =========================================================
   INNER RESULTS — PREMIUM ADVISORY DESIGN SYSTEM
   ========================================================= */

:root {
  --navy: #0B1F3A;
  --charcoal: #1C1C1C;
  --blue: #0987a8;
  --blue-deep: #076d8a;
  --gold: #c8a951;
  --gold-deep: #a88a3e;
  --white: #FFFFFF;
  --grey: #E5E7EB;
  --grey-mid: #9CA3AF;
  --grey-text: #4B5563;
  --slate: #22456D;
  --slate-soft: #2E5380;

  --maxw: 1200px;
  --gap: clamp(1rem, 2vw, 2rem);

  --shadow-sm: 0 2px 6px rgba(11, 31, 58, 0.06);
  --shadow-md: 0 10px 30px rgba(11, 31, 58, 0.08);
  --shadow-lg: 0 20px 60px rgba(11, 31, 58, 0.12);

  --radius: 4px;
  --radius-lg: 10px;

  --easing: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: 'Open Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 17px;
  line-height: 1.65;
  color: var(--charcoal);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

/* Typography */
h1, h2, h3, h4, h5 {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.01em;
  color: var(--navy);
}

h1 { font-size: clamp(2.5rem, 5vw, 4rem); }
h2 { font-size: clamp(2rem, 3.5vw, 2.625rem); }
h3 { font-size: clamp(1.25rem, 2vw, 1.5rem); }
h4 { font-size: 1.125rem; font-family: 'Open Sans', sans-serif; font-weight: 700; letter-spacing: 0.02em; }

p { font-size: 1.0625rem; color: var(--grey-text); }
.lead { font-size: 1.1875rem; line-height: 1.6; color: var(--grey-text); }

.eyebrow {
  display: inline-block;
  font-family: 'Open Sans', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--slate);
  margin-bottom: 1rem;
}
.eyebrow.on-dark { color: var(--blue); }

.eyebrow::before {
  content: '';
  display: inline-block;
  width: 28px;
  height: 1px;
  background: var(--slate);
  vertical-align: middle;
  margin-right: 0.75rem;
  transform: translateY(-2px);
}
.eyebrow.on-dark::before { background: var(--blue); }

/* Layout */
.container {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 1.5rem;
}

section { padding: clamp(4rem, 8vw, 7rem) 0; }
.section-tight { padding: clamp(3rem, 5vw, 4.5rem) 0; }

.bg-navy { background: var(--navy); color: var(--white); }
.bg-navy h1, .bg-navy h2, .bg-navy h3 { color: var(--white); }
.bg-navy p, .bg-navy .lead { color: rgba(255,255,255,0.78); }

.bg-grey { background: var(--grey); }
.bg-white { background: var(--white); }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 1rem 1.75rem;
  font-family: 'Open Sans', sans-serif;
  font-weight: 700;
  font-size: 0.9375rem;
  letter-spacing: 0.02em;
  border-radius: var(--radius);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.25s var(--easing);
  text-align: center;
  line-height: 1;
}

.btn-primary {
  background: var(--blue);
  color: var(--white);
  border-color: var(--blue);
}
.btn-primary:hover {
  background: var(--blue-deep);
  border-color: var(--blue-deep);
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(9, 135, 168, 0.25);
}

.btn-secondary {
  background: transparent;
  color: var(--blue);
  border-color: var(--blue);
}
.btn-secondary:hover {
  background: var(--blue);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-secondary.on-dark {
  color: var(--white);
  border-color: var(--white);
}
.btn-secondary.on-dark:hover {
  background: var(--white);
  color: var(--navy);
}

.btn .arrow { font-size: 1.1rem; transition: transform 0.25s var(--easing); }
.btn:hover .arrow { transform: translateX(4px); }

.btn-row { display: flex; flex-wrap: wrap; gap: 1rem; align-items: center; }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: saturate(180%) blur(12px);
  -webkit-backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid rgba(11, 31, 58, 0.08);
}

.nav {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 1.1rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 1.375rem;
  color: var(--navy);
  letter-spacing: -0.01em;
}
.brand span { color: var(--blue); }

.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
}
.nav-links a {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--charcoal);
  position: relative;
  padding: 0.25rem 0;
  transition: color 0.2s var(--easing);
}
.nav-links a:hover, .nav-links a.active { color: var(--navy); }
.nav-links a.active::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: -4px;
  height: 2px;
  background: var(--blue);
}

.nav-cta { display: flex; align-items: center; gap: 1rem; }

.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}
.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--navy);
  margin: 5px 0;
  transition: 0.3s;
}
.menu-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle.active span:nth-child(2) { opacity: 0; }
.menu-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 900px) {
  .nav-links {
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: var(--white);
    flex-direction: column;
    padding: 1.5rem;
    gap: 1.25rem;
    border-bottom: 1px solid var(--grey);
    transform: translateY(-110%);
    transition: transform 0.3s var(--easing);
    box-shadow: var(--shadow-md);
  }
  .nav-links.open { transform: translateY(0); }
  .nav-cta .btn { display: none; }
  .menu-toggle { display: block; }
}

/* Hero */
.hero {
  position: relative;
  background: var(--navy);
  color: var(--white);
  padding: clamp(5rem, 10vw, 8rem) 0 clamp(4rem, 8vw, 6rem);
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 85% 20%, rgba(9, 135, 168, 0.12), transparent 45%),
    radial-gradient(circle at 15% 80%, rgba(34, 69, 109, 0.6), transparent 50%);
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 75%);
}

.hero .container { position: relative; z-index: 2; }

.hero-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 4rem;
  align-items: center;
}

@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; gap: 2.5rem; }
}

.hero h1 {
  color: var(--white);
  margin-bottom: 1.5rem;
  font-size: clamp(2.5rem, 5.5vw, 4.25rem);
}
.hero h1 em {
  font-style: italic;
  color: var(--blue);
  font-weight: 400;
}

.hero .lead {
  color: rgba(255,255,255,0.82);
  font-size: 1.1875rem;
  margin-bottom: 2.25rem;
  max-width: 36rem;
}

.hero-sub {
  margin-top: 2rem;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.6);
  max-width: 32rem;
}

/* Hero stats card */
.hero-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-lg);
  padding: 2rem;
  backdrop-filter: blur(8px);
}

.hero-card h4 {
  color: var(--blue);
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

.hero-stat {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.hero-stat:last-child { border-bottom: none; }
.hero-stat .num {
  font-family: 'Playfair Display', serif;
  font-size: 2.25rem;
  color: var(--white);
  font-weight: 700;
}
.hero-stat .label {
  color: rgba(255,255,255,0.65);
  font-size: 0.875rem;
  text-align: right;
  max-width: 12rem;
}

/* Section heading */
.section-head {
  max-width: 56rem;
  margin: 0 auto 4rem;
  text-align: center;
}
.section-head.left { margin-left: 0; text-align: left; }

.section-head h2 { margin-bottom: 1rem; }
.section-head p { font-size: 1.125rem; }

/* Card grid */
.grid {
  display: grid;
  gap: 1.75rem;
}
.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: 1fr; }
  .grid-2 { grid-template-columns: 1fr; }
}

/* Generic card */
.card {
  background: var(--white);
  border: 1px solid var(--grey);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: all 0.3s var(--easing);
  position: relative;
}
.card:hover {
  border-color: var(--slate);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.card .num-badge {
  font-family: 'Playfair Display', serif;
  font-size: 0.875rem;
  color: var(--blue);
  font-weight: 700;
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
  display: block;
}
.card h3 { margin-bottom: 0.75rem; }
.card p { font-size: 1rem; }

/* Service cards (premium) */
.service-card {
  background: var(--white);
  border: 1px solid var(--grey);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  transition: all 0.3s var(--easing);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 3px;
  background: var(--blue);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--easing);
}
.service-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-6px); }
.service-card:hover::before { transform: scaleX(1); }

.service-card .price {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--navy);
}
.service-card .price small {
  font-size: 0.875rem;
  font-family: 'Open Sans', sans-serif;
  color: var(--grey-text);
  font-weight: 400;
  margin-left: 0.25rem;
}
.service-card .tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--slate);
  background: var(--grey);
  padding: 0.4rem 0.75rem;
  border-radius: 2px;
  width: fit-content;
}
.service-card ul {
  list-style: none;
  margin-top: auto;
  padding-top: 1rem;
}
.service-card ul li {
  padding: 0.5rem 0;
  font-size: 0.95rem;
  color: var(--grey-text);
  position: relative;
  padding-left: 1.5rem;
  border-top: 1px solid var(--grey);
}
.service-card ul li:first-child { border-top: none; }
.service-card ul li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--blue);
  font-weight: 700;
}

/* Framework grid (hexagonal/structured) */
.framework {
  background: var(--navy);
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: clamp(2rem, 4vw, 3.5rem);
  position: relative;
  overflow: hidden;
}
.framework::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 0% 100%, rgba(9, 135, 168, 0.08), transparent 40%);
  pointer-events: none;
}
.framework-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  position: relative;
}
.framework-head h3 { color: var(--white); font-size: 1.875rem; }
.framework-head .label {
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--blue);
  font-weight: 700;
}

.pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.08);
  position: relative;
}
@media (max-width: 700px) { .pillars { grid-template-columns: repeat(2, 1fr); } }

.pillar {
  background: var(--navy);
  padding: 1.75rem;
  position: relative;
  transition: background 0.3s var(--easing);
}
.pillar:hover { background: var(--slate); }
.pillar .num {
  font-family: 'Playfair Display', serif;
  font-size: 0.875rem;
  color: var(--blue);
  font-weight: 700;
  display: block;
  margin-bottom: 0.5rem;
}
.pillar h4 {
  color: var(--white);
  font-size: 1.0625rem;
  margin-bottom: 0.5rem;
  font-family: 'Playfair Display', serif;
  font-weight: 600;
}
.pillar p {
  color: rgba(255,255,255,0.65);
  font-size: 0.875rem;
  line-height: 1.5;
}

/* Phases (linear flow) */
.phases {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1px;
  background: var(--grey);
  border: 1px solid var(--grey);
  border-radius: var(--radius);
  overflow: hidden;
}
@media (max-width: 900px) { .phases { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 600px) { .phases { grid-template-columns: repeat(2, 1fr); } }

.phase {
  background: var(--white);
  padding: 1.75rem 1.25rem;
  text-align: center;
  position: relative;
  transition: all 0.25s var(--easing);
}
.phase:hover { background: var(--navy); color: var(--white); }
.phase:hover .phase-num { color: var(--blue); }
.phase:hover h4 { color: var(--white); }
.phase:hover p { color: rgba(255,255,255,0.7); }

.phase-num {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  color: var(--blue);
  font-weight: 700;
  display: block;
  margin-bottom: 0.5rem;
  line-height: 1;
}
.phase h4 {
  font-family: 'Playfair Display', serif;
  font-size: 1.0625rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 0.4rem;
}
.phase p {
  font-size: 0.8125rem;
  color: var(--grey-text);
  line-height: 1.4;
}

/* Quadrant (4 core areas) */
.quadrant {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}
@media (max-width: 700px) { .quadrant { grid-template-columns: 1fr; } }

.quad {
  background: var(--white);
  border: 1px solid var(--grey);
  padding: 2rem;
  border-radius: var(--radius-lg);
  position: relative;
  transition: all 0.3s var(--easing);
}
.quad:hover { border-color: var(--blue); transform: translateY(-3px); }
.quad .quad-label {
  font-family: 'Playfair Display', serif;
  font-size: 4rem;
  color: var(--grey);
  font-weight: 700;
  line-height: 0.9;
  position: absolute;
  top: 1rem; right: 1.25rem;
  transition: color 0.3s var(--easing);
}
.quad:hover .quad-label { color: var(--blue); opacity: 0.4; }
.quad h3 { margin-bottom: 0.5rem; font-size: 1.25rem; }
.quad .verb {
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--slate);
  font-weight: 700;
  display: block;
  margin-bottom: 1rem;
}
.quad p { font-size: 0.9375rem; }

/* Process / steps */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  counter-reset: step;
  position: relative;
}
@media (max-width: 900px) { .steps { grid-template-columns: 1fr; } }

.step {
  padding: 2rem 1.5rem 2rem 0;
  position: relative;
  border-top: 2px solid var(--grey);
  counter-increment: step;
}
.step::before {
  content: counter(step, decimal-leading-zero);
  position: absolute;
  top: -0.65rem;
  left: 0;
  background: var(--white);
  color: var(--blue);
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  font-weight: 700;
  padding-right: 1rem;
}
.bg-navy .step::before { background: var(--navy); }
.bg-grey .step::before { background: var(--grey); }
.step h4 {
  font-family: 'Playfair Display', serif;
  font-weight: 600;
  font-size: 1.25rem;
  color: var(--navy);
  margin-bottom: 0.5rem;
}
.bg-navy .step h4 { color: var(--white); }
.step p { font-size: 0.9375rem; }

/* Two-column section */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
@media (max-width: 900px) { .two-col { grid-template-columns: 1fr; gap: 2.5rem; } }

/* "Who this is for" list */
.who-list {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}
@media (max-width: 700px) { .who-list { grid-template-columns: 1fr; } }
.who-list li {
  padding: 1.25rem 1.25rem 1.25rem 3rem;
  background: var(--white);
  border: 1px solid var(--grey);
  border-radius: var(--radius);
  position: relative;
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--charcoal);
}
.who-list li::before {
  content: '✓';
  position: absolute;
  left: 1.25rem; top: 1.15rem;
  width: 22px; height: 22px;
  background: var(--blue);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 700;
  display: grid;
  place-items: center;
  border-radius: 50%;
}

/* Testimonial */
.testimonial {
  background: var(--white);
  border: 1px solid var(--grey);
  border-left: 3px solid var(--blue);
  padding: 2rem;
  border-radius: var(--radius-lg);
  position: relative;
}
.testimonial blockquote {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  line-height: 1.5;
  color: var(--navy);
  font-weight: 500;
  font-style: italic;
  margin-bottom: 1.5rem;
}
.testimonial .person {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--grey);
}
.testimonial .avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--white);
  display: grid;
  place-items: center;
  font-family: 'Playfair Display', serif;
  font-weight: 700;
}
.testimonial .name { font-weight: 700; color: var(--navy); font-size: 0.9375rem; }
.testimonial .role { font-size: 0.8125rem; color: var(--grey-text); }

/* CTA band */
.cta-band {
  background: var(--navy);
  color: var(--white);
  padding: clamp(3.5rem, 7vw, 6rem) 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 100%, rgba(9, 135, 168, 0.15), transparent 60%);
}
.cta-band .container { position: relative; z-index: 1; }
.cta-band h2 {
  color: var(--white);
  max-width: 38rem;
  margin: 0 auto 1rem;
}
.cta-band p {
  color: rgba(255,255,255,0.78);
  max-width: 36rem;
  margin: 0 auto 2rem;
  font-size: 1.0625rem;
}
.cta-band .btn-row { justify-content: center; }

/* "Not sure" callout */
.not-sure {
  background: var(--grey);
  border-left: 3px solid var(--blue);
  padding: 1.75rem 2rem;
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.5rem;
  max-width: 56rem;
  margin: 3rem auto 0;
}
.not-sure h4 {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.25rem;
}
.not-sure p { font-size: 0.9375rem; margin: 0; }
.not-sure .text { flex: 1; min-width: 18rem; }

/* Footer */
.site-footer {
  background: var(--navy);
  color: rgba(255,255,255,0.7);
  padding: 4rem 0 2rem;
}
.site-footer h4 {
  color: var(--white);
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
@media (max-width: 800px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
}
@media (max-width: 500px) {
  .footer-grid { grid-template-columns: 1fr; }
}
.footer-brand {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  color: var(--white);
  margin-bottom: 1rem;
}
.footer-brand span { color: var(--blue); }
.footer-grid ul { list-style: none; }
.footer-grid ul li { padding: 0.4rem 0; }
.footer-grid a {
  color: rgba(255,255,255,0.7);
  font-size: 0.9375rem;
  transition: color 0.2s;
}
.footer-grid a:hover { color: var(--blue); }
.footer-bottom {
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.5);
}

/* Form */
.form-block {
  background: var(--white);
  border: 1px solid var(--grey);
  border-radius: var(--radius-lg);
  padding: clamp(2rem, 4vw, 3rem);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  margin-bottom: 1.25rem;
}
@media (max-width: 600px) { .form-row { grid-template-columns: 1fr; } }
.form-field { display: flex; flex-direction: column; }
.form-field.full { grid-column: 1 / -1; }
.form-field label {
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--slate);
  margin-bottom: 0.5rem;
}
.form-field input,
.form-field textarea,
.form-field select {
  font-family: 'Open Sans', sans-serif;
  font-size: 1rem;
  padding: 0.875rem 1rem;
  border: 1px solid var(--grey);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--charcoal);
  transition: border-color 0.2s;
}
.form-field input:focus,
.form-field textarea:focus,
.form-field select:focus {
  outline: none;
  border-color: var(--blue);
}
.form-field textarea { min-height: 140px; resize: vertical; }

/* Page hero (smaller than home hero) */
.page-hero {
  background: var(--navy);
  color: var(--white);
  padding: clamp(4rem, 7vw, 6rem) 0 clamp(3rem, 5vw, 4rem);
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 80% 30%, rgba(9, 135, 168, 0.1), transparent 50%);
}
.page-hero .container { position: relative; }
.page-hero h1 {
  color: var(--white);
  font-size: clamp(2.25rem, 4vw, 3.5rem);
  margin-bottom: 1.25rem;
  max-width: 38rem;
}
.page-hero h1 em { color: var(--blue); font-style: italic; font-weight: 400; }
.page-hero .lead { color: rgba(255,255,255,0.78); max-width: 38rem; }
.page-hero .breadcrumb {
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.55);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}
.page-hero .breadcrumb a { color: var(--blue); }

/* Pill list */
.pills { display: flex; flex-wrap: wrap; gap: 0.6rem; margin-top: 1rem; }
.pill {
  background: rgba(9, 135, 168, 0.1);
  color: var(--blue);
  border: 1px solid rgba(9, 135, 168, 0.3);
  padding: 0.4rem 0.85rem;
  border-radius: 100px;
  font-size: 0.8125rem;
  font-weight: 600;
}

/* Outcomes / bullet list with arrow */
.outcomes {
  list-style: none;
  display: grid;
  gap: 0.75rem;
}
.outcomes li {
  padding: 0.85rem 1rem 0.85rem 2.25rem;
  background: var(--white);
  color: var(--charcoal);
  border-radius: var(--radius);
  font-size: 0.9375rem;
  position: relative;
  border: 1px solid var(--grey);
}
.outcomes li a {
  color: var(--blue);
  font-weight: 600;
}
.outcomes li::before {
  content: '';
  position: absolute;
  left: 1.1rem; top: 50%;
  width: 12px; height: 12px;
  background: var(--blue);
  border-radius: 50%;
  transform: translateY(-50%);
}
.outcomes li::after {
  content: '✓';
  position: absolute;
  left: 1.18rem; top: 50%;
  transform: translateY(-50%);
  color: var(--white);
  font-size: 0.55rem;
  font-weight: 700;
  width: 12px;
  text-align: center;
}

/* Comparison / before-after */
.compare {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}
@media (max-width: 700px) { .compare { grid-template-columns: 1fr; } }

.compare-col {
  border-radius: var(--radius-lg);
  padding: 2rem;
}
.compare-before { background: var(--grey); }
.compare-after { background: var(--navy); color: var(--white); }
.compare-after h3 { color: var(--white); }
.compare-after p { color: rgba(255,255,255,0.78); }
.compare h3 {
  font-size: 1.125rem;
  font-family: 'Open Sans', sans-serif;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}
.compare ul { list-style: none; }
.compare ul li {
  padding: 0.6rem 0 0.6rem 1.75rem;
  font-size: 0.9375rem;
  position: relative;
  border-bottom: 1px solid rgba(0,0,0,0.06);
}
.compare-after ul li { border-bottom-color: rgba(255,255,255,0.08); }
.compare-before ul li::before {
  content: '×';
  position: absolute;
  left: 0;
  color: var(--grey-mid);
  font-weight: 700;
  font-size: 1.1rem;
}
.compare-after ul li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--blue);
  font-weight: 700;
}

/* Anchored callout for stats */
.stat-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin: 3rem 0 0;
  border-top: 1px solid rgba(255,255,255,0.1);
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
@media (max-width: 700px) { .stat-row { grid-template-columns: repeat(2, 1fr); } }
.stat-item {
  padding: 1.75rem 1rem;
  text-align: left;
  border-right: 1px solid rgba(255,255,255,0.1);
}
.stat-item:last-child { border-right: none; }
@media (max-width: 700px) { .stat-item:nth-child(2) { border-right: none; } }
.stat-item .num {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--blue);
  line-height: 1;
  display: block;
  margin-bottom: 0.5rem;
}
.stat-item .label {
  font-size: 0.8125rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  font-weight: 600;
}

/* Reveal on scroll */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s var(--easing), transform 0.8s var(--easing);
}
.reveal.in {
  opacity: 1;
  transform: translateY(0);
}

/* Featured card (highlighted price tier) */
.service-card.featured {
  border: 2px solid var(--navy);
  box-shadow: var(--shadow-md);
  position: relative;
}
.service-card.featured::after {
  content: 'MOST POPULAR';
  position: absolute;
  top: 1rem; right: 1rem;
  background: var(--navy);
  color: var(--white);
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  padding: 0.35rem 0.75rem;
  border-radius: 2px;
}

/* Big number callout */
.big-number {
  font-family: 'Playfair Display', serif;
  font-size: clamp(4rem, 10vw, 7rem);
  color: var(--blue);
  font-weight: 700;
  line-height: 0.9;
  letter-spacing: -0.02em;
}

/* Misc */
.divider {
  height: 1px;
  background: var(--grey);
  margin: 3rem 0;
}
.center { text-align: center; }
.mt-2 { margin-top: 1.5rem; }
.mt-3 { margin-top: 2rem; }

/* =========================================================
   ACTIVECAMPAIGN FORM OVERRIDES — brand match
   Targets all AC inline-form variants (#_form_2_, #_form_3_, #_form_4_, etc.)
   Uses high-specificity selectors to override AC's inline styles.
   ========================================================= */
.ac-form-wrap {
  max-width: 720px;
  margin: 0 auto;
  background: var(--white);
  padding: 2.5rem 2rem;
  border: 1px solid var(--light-grey);
  border-radius: 4px;
  box-shadow: 0 4px 24px rgba(11, 31, 58, 0.06);
}
.ac-form-wrap [id^="_form_"][id$="_"]._inline-form,
.ac-form-wrap form[id^="_form_"] {
  background: transparent !important;
  border: 0 !important;
  margin: 0 auto !important;
  padding: 0 !important;
  max-width: 100% !important;
  box-shadow: none !important;
  font-family: 'Open Sans', sans-serif !important;
  color: var(--charcoal) !important;
}
.ac-form-wrap [id^="_form_"] ._form-title,
.ac-form-wrap [id^="_form_"] ._html-code h1,
.ac-form-wrap [id^="_form_"] ._html-code h2,
.ac-form-wrap [id^="_form_"] ._html-code h3 {
  font-family: 'Playfair Display', serif !important;
  font-weight: 600 !important;
  font-size: 1.75rem !important;
  line-height: 1.25 !important;
  color: var(--navy) !important;
  margin-bottom: 0.75rem !important;
}
.ac-form-wrap [id^="_form_"] ._html-code,
.ac-form-wrap [id^="_form_"] ._html-code p {
  font-family: 'Open Sans', sans-serif !important;
  color: var(--charcoal) !important;
  font-size: 1rem !important;
  line-height: 1.6 !important;
}
.ac-form-wrap [id^="_form_"]._inline-form ._form-label,
.ac-form-wrap [id^="_form_"] ._form-label {
  font-family: 'Open Sans', sans-serif !important;
  font-size: 0.875rem !important;
  font-weight: 600 !important;
  letter-spacing: 0.02em !important;
  color: var(--navy) !important;
  margin-bottom: 0.4rem !important;
  display: block !important;
}
.ac-form-wrap [id^="_form_"] .field-required {
  color: var(--blue) !important;
  font-weight: 600 !important;
}
.ac-form-wrap [id^="_form_"] input[type="text"],
.ac-form-wrap [id^="_form_"] input[type="email"],
.ac-form-wrap [id^="_form_"] input[type="tel"],
.ac-form-wrap [id^="_form_"] input[type="date"],
.ac-form-wrap [id^="_form_"] select,
.ac-form-wrap [id^="_form_"] textarea {
  width: 100% !important;
  padding: 0.85rem 1rem !important;
  font-family: 'Open Sans', sans-serif !important;
  font-size: 1rem !important;
  color: var(--charcoal) !important;
  background: var(--white) !important;
  border: 1px solid var(--light-grey) !important;
  border-radius: 4px !important;
  transition: border-color 0.2s ease, box-shadow 0.2s ease !important;
  box-sizing: border-box !important;
}
.ac-form-wrap [id^="_form_"] textarea {
  min-height: 130px !important;
  resize: vertical !important;
}
.ac-form-wrap [id^="_form_"] input::placeholder,
.ac-form-wrap [id^="_form_"] textarea::placeholder {
  color: #94a3b8 !important;
  opacity: 1 !important;
}
.ac-form-wrap [id^="_form_"] input:focus,
.ac-form-wrap [id^="_form_"] select:focus,
.ac-form-wrap [id^="_form_"] textarea:focus {
  outline: none !important;
  border-color: var(--blue) !important;
  box-shadow: 0 0 0 3px rgba(9, 135, 168, 0.15) !important;
}
.ac-form-wrap [id^="_form_"] ._form_element {
  margin-bottom: 1.25rem !important;
}
.ac-form-wrap [id^="_form_"] .sms_consent_checkbox {
  padding: 1rem 0 !important;
  font-family: 'Open Sans', sans-serif !important;
}
.ac-form-wrap [id^="_form_"] .sms_consent_message {
  color: var(--slate) !important;
  font-size: 0.9rem !important;
}
html body .ac-form-wrap [id^="_form_"] ._submit,
html body .ac-form-wrap button[id^="_form_"][id$="_submit"] {
  width: 100% !important;
  background: var(--blue) !important;
  color: var(--white) !important;
  font-family: 'Open Sans', sans-serif !important;
  font-size: 0.9375rem !important;
  font-weight: 700 !important;
  letter-spacing: 0.04em !important;
  text-transform: uppercase !important;
  padding: 1.05rem 2rem !important;
  border: 0 !important;
  border-radius: 4px !important;
  cursor: pointer !important;
  transition: background 0.2s ease, transform 0.1s ease !important;
  margin-top: 0.5rem !important;
}
html body .ac-form-wrap [id^="_form_"] ._submit:hover,
html body .ac-form-wrap button[id^="_form_"][id$="_submit"]:hover {
  background: var(--blue-deep) !important;
}
.ac-form-wrap [id^="_form_"] ._form-branding {
  display: none !important;
}
.ac-form-wrap [id^="_form_"] .iti input,
.ac-form-wrap [id^="_form_"] .iti--separate-dial-code .iti__selected-flag {
  border-color: var(--light-grey) !important;
  background: var(--white) !important;
}
.ac-form-wrap [id^="_form_"] ._error-inner {
  background-color: #fff1f1 !important;
  color: #b91c1c !important;
  font-family: 'Open Sans', sans-serif !important;
  font-weight: 600 !important;
}

/* Mobile */
@media (max-width: 640px) {
  .ac-form-wrap {
    padding: 2rem 1.25rem;
  }
  .ac-form-wrap [id^="_form_"] ._form-title,
  .ac-form-wrap [id^="_form_"] ._html-code h2 {
    font-size: 1.5rem !important;
  }
}

/* =========================================================
   STRIPE BUY BUTTON ALIGNMENT
   Stripe Buy Button is a web component (shadow DOM) — we can
   only control its outer wrapper, not its internal styling.
   This keeps it visually aligned with adjacent CTA buttons.
   ========================================================= */
.stripe-cta-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
}
.stripe-cta-row stripe-buy-button {
  display: inline-block;
}
@media (max-width: 600px) {
  .stripe-cta-row {
    flex-direction: column;
    align-items: stretch;
  }
  .stripe-cta-row .btn {
    width: 100%;
    text-align: center;
  }
}

/* =========================================================
   TIME ZONE CONVERTER WIDGET — Business School session times
   Brand-matched to site design tokens (Playfair + Open Sans)
   ========================================================= */
.tz-widget {
  font-family: 'Open Sans', sans-serif;
  color: var(--charcoal);
  max-width: 620px;
  margin: 0 auto;
  background: var(--white);
  border: 1px solid var(--grey);
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  overflow: hidden;
}
.tz-widget .tz-header {
  padding: 2.25rem 2rem 1.75rem;
  text-align: center;
  border-bottom: 1px solid var(--grey);
  background: linear-gradient(180deg, var(--white) 0%, #F9FAFB 100%);
}
.tz-widget .tz-eyebrow {
  font-size: 0.6875rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--slate);
  font-weight: 700;
  margin-bottom: 0.85rem;
}
.tz-widget .tz-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.625rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--navy);
  margin: 0 0 0.6rem;
  line-height: 1.25;
}
.tz-widget .tz-base-display {
  font-size: 0.95rem;
  color: var(--grey-text);
  margin: 0;
  font-weight: 400;
}
.tz-widget .tz-base-display strong {
  color: var(--navy);
  font-weight: 700;
}

.tz-widget .tz-list { padding: 0.25rem 0; }

.tz-widget .tz-section-label {
  font-size: 0.6875rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--slate);
  font-weight: 700;
  padding: 1.1rem 2rem 0.5rem;
}

.tz-widget .tz-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 2rem;
  gap: 1rem;
  border-bottom: 1px solid var(--grey);
  transition: background 0.18s var(--easing);
}
.tz-widget .tz-row:last-child { border-bottom: none; }
.tz-widget .tz-row:hover { background: #F9FAFB; }

.tz-widget .tz-zone {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  min-width: 0;
}
.tz-widget .tz-zone-name {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--navy);
  line-height: 1.3;
}
.tz-widget .tz-zone-meta {
  font-size: 0.75rem;
  color: var(--grey-text);
  letter-spacing: 0.02em;
}

.tz-widget .tz-time { text-align: right; flex-shrink: 0; }
.tz-widget .tz-time-day {
  font-size: 0.7rem;
  color: var(--slate);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 600;
  margin-bottom: 0.2rem;
}
.tz-widget .tz-time-range {
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.01em;
}

/* Eastern Time — slight emphasis (largest audience) */
.tz-widget .tz-row.is-emphasis .tz-zone-name { color: var(--navy); }
.tz-widget .tz-row.is-emphasis .tz-time-range {
  font-size: 1.0625rem;
  color: var(--navy);
}

/* Phoenix — base time highlight */
.tz-widget .tz-row.is-base {
  background: rgba(9, 135, 168, 0.07);
  border-left: 3px solid var(--blue);
  padding-left: calc(2rem - 3px);
}
.tz-widget .tz-row.is-base:hover { background: rgba(9, 135, 168, 0.10); }
.tz-widget .tz-base-tag {
  display: inline-block;
  margin-left: 0.5rem;
  font-size: 0.625rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  background: var(--navy);
  color: var(--white);
  padding: 0.18rem 0.5rem;
  border-radius: 3px;
  font-weight: 700;
  vertical-align: middle;
}

.tz-widget .tz-footnote {
  padding: 1.1rem 2rem 1.4rem;
  font-size: 0.8125rem;
  color: var(--grey-text);
  line-height: 1.6;
  text-align: center;
  border-top: 1px solid var(--grey);
  background: #F9FAFB;
}

@media (max-width: 600px) {
  .tz-widget { border-radius: var(--radius); }
  .tz-widget .tz-header { padding: 1.75rem 1.25rem 1.4rem; }
  .tz-widget .tz-title { font-size: 1.35rem; }
  .tz-widget .tz-base-display { font-size: 0.875rem; }
  .tz-widget .tz-row { padding: 0.9rem 1.25rem; }
  .tz-widget .tz-row.is-base { padding-left: calc(1.25rem - 3px); }
  .tz-widget .tz-section-label { padding: 0.95rem 1.25rem 0.4rem; }
  .tz-widget .tz-zone-name { font-size: 0.9rem; }
  .tz-widget .tz-time-range { font-size: 0.95rem; }
  .tz-widget .tz-row.is-emphasis .tz-time-range { font-size: 0.9875rem; }
  .tz-widget .tz-footnote { padding: 0.9rem 1.25rem 1.2rem; font-size: 0.75rem; }
}

/* No-hover pillars (descriptive, not interactive) */
.pillars.no-hover .pillar { cursor: default; }
.pillars.no-hover .pillar:hover { background: var(--navy); }

/* =========================================================
   FOUNDER PORTRAIT — About page
   ========================================================= */
.founder-section {
  display: grid;
  grid-template-columns: minmax(280px, 380px) 1fr;
  gap: 3.5rem;
  align-items: center;
  max-width: 980px;
  margin: 0 auto;
}
.founder-portrait {
  position: relative;
}
.founder-portrait img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--grey);
}
.founder-caption {
  margin-top: 1rem;
  font-size: 0.8125rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--slate);
  font-weight: 600;
  text-align: center;
}
.founder-caption strong {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 1.125rem;
  letter-spacing: 0.01em;
  text-transform: none;
  color: var(--navy);
  font-weight: 600;
  margin-bottom: 0.25rem;
}
.founder-content h2 {
  margin-bottom: 1.25rem;
}
.founder-signature {
  margin-top: 1.75rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--grey);
  font-size: 0.875rem;
  color: var(--grey-text);
  letter-spacing: 0.04em;
}
.founder-signature strong {
  color: var(--navy);
  font-weight: 700;
  letter-spacing: 0.02em;
}

@media (max-width: 768px) {
  .founder-section {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: left;
  }
  .founder-portrait {
    max-width: 320px;
    margin: 0 auto;
  }
}

/* =========================================================
   ADVISORY PAGE — gold theme override
   Adding class="page-advisory" to the <body> swaps blue → gold
   for all primary accents (CTAs, eyebrow rules, accent borders, etc.)
   ========================================================= */
body.page-advisory {
  --blue: #c8a951;
  --blue-deep: #a88a3e;
}
/* Match the rgba glow color shifts: gold rgba(200, 169, 81, ...) */
body.page-advisory .hero-bg,
body.page-advisory .page-hero {
  background-image:
    radial-gradient(circle at 85% 20%, rgba(200, 169, 81, 0.12), transparent 45%),
    radial-gradient(circle at 15% 80%, rgba(34, 69, 109, 0.4), transparent 50%);
}
body.page-advisory .btn-primary {
  box-shadow: 0 12px 24px rgba(200, 169, 81, 0.25);
}
body.page-advisory .ac-form-wrap [id^="_form_"] input:focus,
body.page-advisory .ac-form-wrap [id^="_form_"] select:focus,
body.page-advisory .ac-form-wrap [id^="_form_"] textarea:focus {
  box-shadow: 0 0 0 3px rgba(200, 169, 81, 0.15) !important;
}

/* =========================================================
   WIDOW PREVENTION
   text-wrap: balance for headings (last line gets even weight)
   text-wrap: pretty for body copy (avoids orphan last words)
   Both gracefully degrade on older browsers.
   ========================================================= */
h1, h2, h3, h4 {
  text-wrap: balance;
}
.lead, p {
  text-wrap: pretty;
}

/* =========================================================
   FOUNDER HERO — About page combined photo + bio hero
   Photo right, content left, on dark navy background.
   Stacks on mobile (photo above content).
   ========================================================= */
.founder-hero .breadcrumb {
  margin-bottom: 2.5rem;
}
.founder-hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 4rem;
  align-items: center;
}
.founder-hero-content h1 {
  font-size: clamp(2rem, 4vw, 3.25rem);
  line-height: 1.1;
  margin-bottom: 1.5rem;
  max-width: none;
}
.founder-hero-content .lead {
  margin-bottom: 1.25rem;
  color: rgba(255, 255, 255, 0.85);
  max-width: none;
}
.founder-hero-content p {
  color: rgba(255, 255, 255, 0.72);
  font-size: 1rem;
  line-height: 1.7;
}
.founder-hero-content .eyebrow.on-dark::before {
  background: var(--blue);
}
.founder-hero-content .eyebrow.on-dark {
  color: var(--blue);
  margin-bottom: 1rem;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
}
.founder-hero-content .eyebrow.on-dark::before {
  content: '';
  display: inline-block;
  width: 24px;
  height: 1px;
}
.founder-hero-signature {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
  letter-spacing: 0.04em;
}
.founder-hero-signature strong {
  color: var(--white);
  font-weight: 700;
  letter-spacing: 0.02em;
}
.founder-hero-portrait {
  position: relative;
}
.founder-hero-portrait::before {
  content: '';
  position: absolute;
  inset: -10% -10% 0 -10%;
  background: radial-gradient(ellipse 70% 60% at 50% 55%, rgba(9, 135, 168, 0.25), transparent 70%);
  pointer-events: none;
  z-index: 0;
}
.founder-hero-portrait img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: auto;
  display: block;
  /* No border, no shadow, no radius — it's a free-floating cut-out */
}

/* Mobile */
@media (max-width: 880px) {
  .founder-hero-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .founder-hero-portrait {
    order: -1;
    max-width: 320px;
    margin: 0 auto;
  }
}

/* =========================================================
   CERTIFICATIONS NAV BUTTON
   External link to certifications.innerresults.com
   Subtle outline so it reads as a different destination
   ========================================================= */
.nav-links .nav-cert {
  border: 1px solid var(--grey);
  padding: 0.4rem 0.85rem;
  border-radius: 100px;
  font-size: 0.875rem;
  transition: all 0.2s ease;
  color: var(--slate);
}
.nav-links .nav-cert:hover {
  border-color: var(--blue);
  color: var(--blue);
  background: rgba(9, 135, 168, 0.04);
}
.nav-links .nav-cert::after {
  content: ' ↗';
  font-size: 0.75rem;
  opacity: 0.6;
  margin-left: 0.15rem;
}
