/* ==========================================================================
   LawPoint Consulting — style.css
   Style: Геометрия, синие градиенты, острые углы, Barlow
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. CUSTOM PROPERTIES
   -------------------------------------------------------------------------- */
:root {
  --lp-primary: #0d47a1;
  --lp-primary-light: #1565c0;
  --lp-primary-dark: #0a3680;
  --lp-accent: #2979ff;
  --lp-accent-hover: #448aff;
  --lp-gradient: linear-gradient(135deg, #0d47a1 0%, #1976d2 50%, #2979ff 100%);
  --lp-gradient-diagonal: linear-gradient(160deg, #0a3680 0%, #1565c0 100%);
  --lp-gradient-reverse: linear-gradient(315deg, #0d47a1 0%, #2979ff 100%);
  --lp-dark: #0b1929;
  --lp-dark-alt: #102a43;
  --lp-text: #1a2332;
  --lp-text-muted: #5a6a7e;
  --lp-text-light: #8896a7;
  --lp-border: #d0dbe8;
  --lp-border-light: #e4ecf4;
  --lp-surface: #ffffff;
  --lp-surface-alt: #f0f5fb;
  --lp-surface-tint: #e8f0fe;
  --lp-radius-sharp: 2px;
  --lp-radius-sm: 4px;
  --lp-shadow-sm: 0 2px 8px rgba(13, 71, 161, 0.08);
  --lp-shadow-md: 0 4px 20px rgba(13, 71, 161, 0.12);
  --lp-shadow-lg: 0 8px 40px rgba(13, 71, 161, 0.16);
  --lp-font: 'Barlow', sans-serif;
  --lp-transition: 0.25s ease;
}

/* --------------------------------------------------------------------------
   2. RESET & BASE
   -------------------------------------------------------------------------- */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

body {
  font-family: var(--lp-font);
  font-size: 16px;
  line-height: 1.7;
  color: var(--lp-text);
  background: var(--lp-surface);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

a {
  color: var(--lp-accent);
  text-decoration: none;
  transition: color var(--lp-transition);
}

a:hover {
  color: var(--lp-accent-hover);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

ul, ol {
  list-style: none;
}

h1, h2, h3, h4, h5, h6 {
  line-height: 1.25;
  font-weight: 700;
  color: var(--lp-dark);
}

/* --------------------------------------------------------------------------
   3. LAYOUT
   -------------------------------------------------------------------------- */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* --------------------------------------------------------------------------
   4. BUTTONS
   -------------------------------------------------------------------------- */
.cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--lp-font);
  font-weight: 600;
  font-size: 0.9375rem;
  padding: 12px 28px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--lp-transition);
  clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 10px, 100% 100%, 10px 100%, 0 calc(100% - 10px));
  text-align: center;
  gap: 8px;
}

.cta-btn--solid {
  background: var(--lp-gradient);
  color: #fff;
  border-color: var(--lp-primary);
}

.cta-btn--solid:hover {
  background: var(--lp-gradient-reverse);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: var(--lp-shadow-md);
}

.cta-btn--bordered {
  background: transparent;
  color: var(--lp-primary);
  border-color: var(--lp-primary);
}

.cta-btn--bordered:hover {
  background: var(--lp-primary);
  color: #fff;
  transform: translateY(-2px);
}

.cta-btn--sm {
  padding: 8px 20px;
  font-size: 0.875rem;
}

.cta-btn--lg {
  padding: 16px 36px;
  font-size: 1rem;
}

.cta-btn--block {
  width: 100%;
}

.cta-btn--white {
  background: #fff;
  color: var(--lp-primary);
  border-color: #fff;
}

.cta-btn--white:hover {
  background: var(--lp-surface-tint);
  color: var(--lp-primary-dark);
}

/* --------------------------------------------------------------------------
   5. STRIP BAR (Top Bar)
   -------------------------------------------------------------------------- */
.strip-bar {
  background: var(--lp-dark);
  color: #c4d4e8;
  font-size: 0.8125rem;
  padding: 8px 0;
}

.strip-bar__row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.strip-bar__contacts {
  display: flex;
  gap: 20px;
}

.strip-bar__contacts a {
  color: #c4d4e8;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.strip-bar__contacts a:hover {
  color: #fff;
}

.strip-bar__hours {
  color: #8896a7;
}

/* --------------------------------------------------------------------------
   6. MASTHEAD (Header)
   -------------------------------------------------------------------------- */
.masthead {
  background: var(--lp-surface);
  border-bottom: 1px solid var(--lp-border-light);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: var(--lp-shadow-sm);
}

.masthead__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  padding-bottom: 14px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--lp-dark);
}

.logo:hover {
  color: var(--lp-dark);
}

.logo__mark {
  width: 42px;
  height: 42px;
  background: var(--lp-gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  clip-path: polygon(0 0, calc(100% - 8px) 0, 100% 8px, 100% 100%, 8px 100%, 0 calc(100% - 8px));
}

.logo__title {
  font-size: 1.25rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--lp-dark);
}

.logo__title span {
  color: var(--lp-accent);
}

.logo__sub {
  font-size: 0.6875rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--lp-text-muted);
  font-weight: 500;
}

/* --------------------------------------------------------------------------
   7. PRIMARY NAV
   -------------------------------------------------------------------------- */
.primary-nav__items {
  display: flex;
  gap: 4px;
}

.primary-nav__anchor {
  display: block;
  padding: 8px 16px;
  color: var(--lp-text);
  font-weight: 500;
  font-size: 0.9375rem;
  position: relative;
  transition: color var(--lp-transition);
}

.primary-nav__anchor::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 16px;
  right: 16px;
  height: 2px;
  background: var(--lp-accent);
  transform: scaleX(0);
  transition: transform var(--lp-transition);
}

.primary-nav__anchor:hover,
.primary-nav__anchor--on {
  color: var(--lp-accent);
}

.primary-nav__anchor:hover::after,
.primary-nav__anchor--on::after {
  transform: scaleX(1);
}

.masthead__actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.masthead__phone {
  font-weight: 600;
  color: var(--lp-primary);
  font-size: 0.9375rem;
}

.masthead__phone:hover {
  color: var(--lp-accent);
}

/* --------------------------------------------------------------------------
   8. BURGER / MENU TOGGLE
   -------------------------------------------------------------------------- */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}

.menu-toggle__bar {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--lp-dark);
  transition: all var(--lp-transition);
}

.menu-toggle--open .menu-toggle__bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle--open .menu-toggle__bar:nth-child(2) {
  opacity: 0;
}

.menu-toggle--open .menu-toggle__bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.nav-shade {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(11, 25, 41, 0.5);
  z-index: 998;
}

.nav-shade--visible {
  display: block;
}

/* --------------------------------------------------------------------------
   9. BREADCRUMBS
   -------------------------------------------------------------------------- */
.crumb-trail {
  background: var(--lp-surface-alt);
  padding: 12px 0;
  border-bottom: 1px solid var(--lp-border-light);
}

.crumb-trail__list {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8125rem;
}

.crumb-trail__ref {
  color: var(--lp-text-muted);
}

.crumb-trail__ref:hover {
  color: var(--lp-accent);
}

.crumb-trail__divider {
  color: var(--lp-text-light);
}

.crumb-trail__active {
  color: var(--lp-primary);
  font-weight: 600;
}

/* --------------------------------------------------------------------------
   10. BANNER SECTION (Hero alternative)
   -------------------------------------------------------------------------- */
.apex-banner {
  background: var(--lp-gradient-diagonal);
  padding: 80px 0 90px;
  position: relative;
  overflow: hidden;
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 40px), 0 100%);
}

.apex-banner::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: rgba(41, 121, 255, 0.15);
  clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
  animation: spin-slow 30s linear infinite;
}

@keyframes spin-slow {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.apex-banner__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.apex-banner__label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8125rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 16px;
}

.apex-banner__heading {
  font-size: 2.75rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 20px;
  line-height: 1.15;
}

.apex-banner__summary {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 32px;
  line-height: 1.7;
}

.apex-banner__buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.apex-banner__metrics {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.metric-tile {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  padding: 24px;
  clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 12px, 100% 100%, 12px 100%, 0 calc(100% - 12px));
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.metric-tile__figure {
  font-size: 2rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 4px;
}

.metric-tile__caption {
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.65);
  font-weight: 500;
}

/* --------------------------------------------------------------------------
   11. SECTION HEADINGS
   -------------------------------------------------------------------------- */
.segment-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8125rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--lp-accent);
  margin-bottom: 12px;
}

.segment-tag::before {
  content: '';
  width: 24px;
  height: 2px;
  background: var(--lp-accent);
}

.segment-title {
  font-size: 2rem;
  font-weight: 800;
  color: var(--lp-dark);
  margin-bottom: 16px;
}

.segment-subtitle {
  font-size: 1.0625rem;
  color: var(--lp-text-muted);
  max-width: 640px;
  line-height: 1.7;
}

/* --------------------------------------------------------------------------
   12. DIRECTION BLOCKS (Services overview on index)
   -------------------------------------------------------------------------- */
.vectors {
  padding: 80px 0;
  background: var(--lp-surface);
}

.vectors__top {
  margin-bottom: 48px;
}

.vectors__row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.vector-panel {
  background: var(--lp-surface);
  border: 1px solid var(--lp-border-light);
  padding: 32px 28px;
  clip-path: polygon(0 0, calc(100% - 16px) 0, 100% 16px, 100% 100%, 16px 100%, 0 calc(100% - 16px));
  transition: all var(--lp-transition);
  position: relative;
}

.vector-panel::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 0;
  background: var(--lp-gradient);
  transition: height var(--lp-transition);
}

.vector-panel:hover {
  border-color: var(--lp-accent);
  box-shadow: var(--lp-shadow-md);
  transform: translateY(-4px);
}

.vector-panel:hover::before {
  height: 100%;
}

.vector-panel__icon {
  width: 52px;
  height: 52px;
  background: var(--lp-surface-tint);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--lp-primary);
  margin-bottom: 20px;
  clip-path: polygon(0 0, calc(100% - 8px) 0, 100% 8px, 100% 100%, 8px 100%, 0 calc(100% - 8px));
}

.vector-panel__name {
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--lp-dark);
}

.vector-panel__desc {
  font-size: 0.9375rem;
  color: var(--lp-text-muted);
  line-height: 1.65;
}

/* --------------------------------------------------------------------------
   13. TRUST BAND
   -------------------------------------------------------------------------- */
.trust-band {
  background: var(--lp-gradient-diagonal);
  padding: 60px 0;
  clip-path: polygon(0 20px, 100% 0, 100% calc(100% - 20px), 0 100%);
}

.trust-band__layout {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  text-align: center;
}

.trust-point__number {
  font-size: 2.5rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 4px;
}

.trust-point__text {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 500;
}

/* --------------------------------------------------------------------------
   14. TEAM / SPECIALISTS
   -------------------------------------------------------------------------- */
.staff-roster {
  padding: 80px 0;
  background: var(--lp-surface-alt);
}

.staff-roster__top {
  margin-bottom: 48px;
}

.staff-roster__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.staff-card {
  background: var(--lp-surface);
  border: 1px solid var(--lp-border-light);
  padding: 32px 24px;
  text-align: center;
  clip-path: polygon(0 0, calc(100% - 14px) 0, 100% 14px, 100% 100%, 14px 100%, 0 calc(100% - 14px));
  transition: all var(--lp-transition);
}

.staff-card:hover {
  box-shadow: var(--lp-shadow-md);
  transform: translateY(-4px);
}

.staff-card__photo {
  width: 72px;
  height: 72px;
  background: var(--lp-surface-tint);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--lp-primary);
  margin: 0 auto 16px;
}

.staff-card__name {
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--lp-dark);
  margin-bottom: 4px;
}

.staff-card__position {
  font-size: 0.8125rem;
  color: var(--lp-accent);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 12px;
}

.staff-card__bio {
  font-size: 0.9375rem;
  color: var(--lp-text-muted);
  line-height: 1.6;
}

/* --------------------------------------------------------------------------
   15. FAQ ACCORDION
   -------------------------------------------------------------------------- */
.inquiry-section {
  padding: 80px 0;
  background: var(--lp-surface);
}

.inquiry-section__top {
  margin-bottom: 48px;
}

.inquiry-section__list {
  max-width: 800px;
}

.inquiry-row {
  border: 1px solid var(--lp-border-light);
  margin-bottom: 12px;
  clip-path: polygon(0 0, calc(100% - 8px) 0, 100% 8px, 100% 100%, 8px 100%, 0 calc(100% - 8px));
  background: var(--lp-surface);
  transition: border-color var(--lp-transition);
}

.inquiry-row:hover {
  border-color: var(--lp-accent);
}

.inquiry-row__toggle {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 24px;
  background: none;
  border: none;
  font-family: var(--lp-font);
  font-size: 1rem;
  font-weight: 600;
  color: var(--lp-dark);
  cursor: pointer;
  text-align: left;
  gap: 12px;
}

.inquiry-row__toggle iconify-icon {
  transition: transform var(--lp-transition);
  flex-shrink: 0;
  color: var(--lp-accent);
}

.inquiry-row--open .inquiry-row__toggle iconify-icon {
  transform: rotate(180deg);
}

.inquiry-row__panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.inquiry-row__answer {
  padding: 0 24px 20px;
  font-size: 0.9375rem;
  color: var(--lp-text-muted);
  line-height: 1.7;
}

.inquiry-section__more {
  margin-top: 32px;
}

/* --------------------------------------------------------------------------
   16. REVIEWS / TESTIMONIALS
   -------------------------------------------------------------------------- */
.praise-section {
  padding: 80px 0;
  background: var(--lp-surface-alt);
}

.praise-section__top {
  margin-bottom: 48px;
}

.praise-section__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.praise-card {
  background: var(--lp-surface);
  border: 1px solid var(--lp-border-light);
  padding: 28px 24px;
  clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 12px, 100% 100%, 12px 100%, 0 calc(100% - 12px));
  position: relative;
}

.praise-card__quote-mark {
  font-size: 3rem;
  line-height: 1;
  color: var(--lp-surface-tint);
  font-weight: 800;
  margin-bottom: 8px;
}

.praise-card__text {
  font-size: 0.9375rem;
  color: var(--lp-text-muted);
  line-height: 1.7;
  margin-bottom: 20px;
  font-style: italic;
}

.praise-card__author {
  font-weight: 700;
  font-size: 0.9375rem;
  color: var(--lp-dark);
}

.praise-card__company {
  font-size: 0.8125rem;
  color: var(--lp-text-light);
}

/* --------------------------------------------------------------------------
   17. CTA BAND
   -------------------------------------------------------------------------- */
.action-stripe {
  background: var(--lp-gradient);
  padding: 60px 0;
  text-align: center;
  clip-path: polygon(0 0, 100% 20px, 100% 100%, 0 calc(100% - 20px));
}

.action-stripe__heading {
  font-size: 1.75rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 12px;
}

.action-stripe__note {
  font-size: 1.0625rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 28px;
}

.action-stripe__buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* --------------------------------------------------------------------------
   18. PAGE HEADER (inner pages)
   -------------------------------------------------------------------------- */
.heading-plate {
  background: var(--lp-gradient-diagonal);
  padding: 56px 0 64px;
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 30px), 0 100%);
  position: relative;
}

.heading-plate::after {
  content: '';
  position: absolute;
  top: 20%;
  right: 5%;
  width: 200px;
  height: 200px;
  background: rgba(41, 121, 255, 0.1);
  clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
}

.heading-plate__tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8125rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 12px;
}

.heading-plate__title {
  font-size: 2.25rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 12px;
}

.heading-plate__sub {
  font-size: 1.0625rem;
  color: rgba(255, 255, 255, 0.8);
  max-width: 600px;
  line-height: 1.7;
}

/* --------------------------------------------------------------------------
   19. ABOUT PAGE
   -------------------------------------------------------------------------- */
.origin-block {
  padding: 80px 0;
}

.origin-block__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.origin-block__prose {
  font-size: 1rem;
  color: var(--lp-text-muted);
  line-height: 1.8;
}

.origin-block__prose p + p {
  margin-top: 16px;
}

.origin-block__highlights {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.highlight-box {
  background: var(--lp-surface-tint);
  padding: 24px;
  clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 10px, 100% 100%, 10px 100%, 0 calc(100% - 10px));
  text-align: center;
}

.highlight-box__val {
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--lp-primary);
  margin-bottom: 4px;
}

.highlight-box__label {
  font-size: 0.8125rem;
  color: var(--lp-text-muted);
  font-weight: 500;
}

.principles {
  padding: 80px 0;
  background: var(--lp-surface-alt);
}

.principles__top {
  margin-bottom: 48px;
}

.principles__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.principle-tile {
  background: var(--lp-surface);
  border: 1px solid var(--lp-border-light);
  padding: 28px 20px;
  text-align: center;
  clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 10px, 100% 100%, 10px 100%, 0 calc(100% - 10px));
  transition: all var(--lp-transition);
}

.principle-tile:hover {
  border-color: var(--lp-accent);
  box-shadow: var(--lp-shadow-sm);
}

.principle-tile__icon {
  width: 48px;
  height: 48px;
  background: var(--lp-surface-tint);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--lp-primary);
  margin: 0 auto 16px;
  clip-path: polygon(0 0, calc(100% - 8px) 0, 100% 8px, 100% 100%, 8px 100%, 0 calc(100% - 8px));
}

.principle-tile__name {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--lp-dark);
}

.principle-tile__text {
  font-size: 0.875rem;
  color: var(--lp-text-muted);
  line-height: 1.6;
}

/* --------------------------------------------------------------------------
   20. SERVICES PAGE
   -------------------------------------------------------------------------- */
.offerings {
  padding: 80px 0;
}

.offerings__list {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.offering-block {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 28px;
  padding: 32px;
  background: var(--lp-surface);
  border: 1px solid var(--lp-border-light);
  clip-path: polygon(0 0, calc(100% - 16px) 0, 100% 16px, 100% 100%, 16px 100%, 0 calc(100% - 16px));
  transition: all var(--lp-transition);
}

.offering-block:hover {
  border-color: var(--lp-accent);
  box-shadow: var(--lp-shadow-md);
}

.offering-block__glyph {
  width: 80px;
  height: 80px;
  background: var(--lp-gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 12px, 100% 100%, 12px 100%, 0 calc(100% - 12px));
  flex-shrink: 0;
}

.offering-block__badge {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--lp-accent);
  margin-bottom: 8px;
}

.offering-block__name {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--lp-dark);
  margin-bottom: 10px;
}

.offering-block__detail {
  font-size: 0.9375rem;
  color: var(--lp-text-muted);
  line-height: 1.7;
  margin-bottom: 16px;
}

.offering-block__bullets {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.offering-block__bullet {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.875rem;
  color: var(--lp-text);
}

.offering-block__bullet iconify-icon {
  color: var(--lp-accent);
  flex-shrink: 0;
}

/* --------------------------------------------------------------------------
   21. PRICING PAGE
   -------------------------------------------------------------------------- */
.rate-section {
  padding: 80px 0;
}

.rate-section__top {
  margin-bottom: 48px;
}

.rate-section__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.rate-card {
  background: var(--lp-surface);
  border: 1px solid var(--lp-border-light);
  padding: 36px 28px;
  clip-path: polygon(0 0, calc(100% - 14px) 0, 100% 14px, 100% 100%, 14px 100%, 0 calc(100% - 14px));
  transition: all var(--lp-transition);
  position: relative;
}

.rate-card:hover {
  border-color: var(--lp-accent);
  box-shadow: var(--lp-shadow-md);
  transform: translateY(-4px);
}

.rate-card--featured {
  background: var(--lp-gradient-diagonal);
  border-color: transparent;
  color: #fff;
}

.rate-card--featured .rate-card__tier,
.rate-card--featured .rate-card__price,
.rate-card--featured .rate-card__cycle {
  color: #fff;
}

.rate-card--featured .rate-card__perks li {
  color: rgba(255, 255, 255, 0.85);
}

.rate-card--featured .rate-card__perks iconify-icon {
  color: rgba(255, 255, 255, 0.7);
}

.rate-card__flag {
  position: absolute;
  top: 16px;
  right: 28px;
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--lp-accent);
  background: var(--lp-surface-tint);
  padding: 4px 10px;
  clip-path: polygon(0 0, calc(100% - 6px) 0, 100% 6px, 100% 100%, 6px 100%, 0 calc(100% - 6px));
}

.rate-card--featured .rate-card__flag {
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
}

.rate-card__tier {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--lp-dark);
  margin-bottom: 16px;
}

.rate-card__price {
  font-size: 2.25rem;
  font-weight: 800;
  color: var(--lp-primary);
  margin-bottom: 4px;
}

.rate-card__cycle {
  font-size: 0.8125rem;
  color: var(--lp-text-muted);
  margin-bottom: 24px;
}

.rate-card__perks {
  list-style: none;
  margin-bottom: 28px;
}

.rate-card__perks li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9375rem;
  padding: 8px 0;
  border-bottom: 1px solid var(--lp-border-light);
  color: var(--lp-text-muted);
}

.rate-card--featured .rate-card__perks li {
  border-color: rgba(255, 255, 255, 0.15);
}

.rate-card__perks iconify-icon {
  color: var(--lp-accent);
  flex-shrink: 0;
}

/* --------------------------------------------------------------------------
   22. CONTACT PAGE
   -------------------------------------------------------------------------- */
.reach-section {
  padding: 80px 0;
}

.reach-layout {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 40px;
}

.reach-details__list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 28px;
}

.reach-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.reach-item__icon {
  width: 40px;
  height: 40px;
  background: var(--lp-surface-tint);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--lp-primary);
  clip-path: polygon(0 0, calc(100% - 6px) 0, 100% 6px, 100% 100%, 6px 100%, 0 calc(100% - 6px));
  flex-shrink: 0;
}

.reach-item__label {
  font-size: 0.75rem;
  color: var(--lp-text-light);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 600;
  margin-bottom: 2px;
}

.reach-item__value {
  font-size: 0.9375rem;
  color: var(--lp-text);
  font-weight: 500;
}

.reach-item__value a {
  color: var(--lp-text);
}

.reach-item__value a:hover {
  color: var(--lp-accent);
}

.reach-meta {
  font-size: 0.8125rem;
  color: var(--lp-text-muted);
  line-height: 1.7;
}

/* --------------------------------------------------------------------------
   23. FORM STYLES
   -------------------------------------------------------------------------- */
.compose-form {
  background: var(--lp-surface);
  border: 1px solid var(--lp-border-light);
  padding: 36px 32px;
  clip-path: polygon(0 0, calc(100% - 16px) 0, 100% 16px, 100% 100%, 16px 100%, 0 calc(100% - 16px));
}

.compose-form__heading {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--lp-dark);
  margin-bottom: 24px;
}

.field-pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.field-unit {
  margin-bottom: 16px;
}

.field-unit__label {
  display: block;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--lp-text);
  margin-bottom: 6px;
}

.field-unit__input,
.field-unit__select,
.field-unit__textarea {
  width: 100%;
  padding: 11px 14px;
  font-family: var(--lp-font);
  font-size: 0.9375rem;
  border: 1px solid var(--lp-border);
  background: var(--lp-surface);
  color: var(--lp-text);
  transition: border-color var(--lp-transition);
  clip-path: polygon(0 0, calc(100% - 6px) 0, 100% 6px, 100% 100%, 6px 100%, 0 calc(100% - 6px));
}

.field-unit__input:focus,
.field-unit__select:focus,
.field-unit__textarea:focus {
  outline: none;
  border-color: var(--lp-accent);
}

.field-unit__textarea {
  min-height: 120px;
  resize: vertical;
}

.field-unit__error {
  display: none;
  font-size: 0.75rem;
  color: #e53935;
  margin-top: 4px;
}

.field-unit--invalid .field-unit__input {
  border-color: #e53935;
}

.field-unit--invalid .field-unit__error {
  display: block;
}

.hp-field {
  position: absolute;
  left: -9999px;
  opacity: 0;
  height: 0;
  overflow: hidden;
}

.consent-note {
  font-size: 0.8125rem;
  color: var(--lp-text-muted);
  margin-bottom: 20px;
  line-height: 1.6;
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.consent-note a {
  color: var(--lp-accent);
}

.consent-note iconify-icon {
  flex-shrink: 0;
  margin-top: 2px;
}

.consent-check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 20px;
  font-size: 0.8125rem;
  color: var(--lp-text-muted);
  line-height: 1.5;
}

.consent-check input[type="checkbox"] {
  margin-top: 3px;
  flex-shrink: 0;
}

.consent-check a {
  color: var(--lp-accent);
}

/* --------------------------------------------------------------------------
   24. PRIVACY / TERMS / REFUND (Legal pages)
   -------------------------------------------------------------------------- */
.prose-section {
  padding: 60px 0;
}

.prose-body {
  max-width: 800px;
}

.prose-body h2 {
  font-size: 1.375rem;
  font-weight: 700;
  color: var(--lp-dark);
  margin: 32px 0 12px;
}

.prose-body h3 {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--lp-dark);
  margin: 24px 0 8px;
}

.prose-body p {
  margin-bottom: 14px;
  color: var(--lp-text-muted);
  line-height: 1.8;
}

.prose-body ul {
  margin: 8px 0 16px 20px;
  list-style: disc;
}

.prose-body ul li {
  margin-bottom: 6px;
  color: var(--lp-text-muted);
  line-height: 1.7;
}

/* --------------------------------------------------------------------------
   25. THANK YOU PAGE
   -------------------------------------------------------------------------- */
.gratitude-block {
  padding: 100px 0;
  text-align: center;
}

.gratitude-block__icon {
  color: var(--lp-accent);
  margin-bottom: 20px;
}

.gratitude-block__heading {
  font-size: 2rem;
  font-weight: 800;
  color: var(--lp-dark);
  margin-bottom: 12px;
}

.gratitude-block__note {
  font-size: 1.0625rem;
  color: var(--lp-text-muted);
  margin-bottom: 28px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}

/* --------------------------------------------------------------------------
   26. 404 PAGE
   -------------------------------------------------------------------------- */
.lost-block {
  padding: 100px 0;
  text-align: center;
}

.lost-block__code {
  font-size: 6rem;
  font-weight: 900;
  background: var(--lp-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 12px;
}

.lost-block__heading {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--lp-dark);
  margin-bottom: 12px;
}

.lost-block__note {
  font-size: 1rem;
  color: var(--lp-text-muted);
  margin-bottom: 28px;
}

/* --------------------------------------------------------------------------
   27. FOOTER (Ground)
   -------------------------------------------------------------------------- */
.ground {
  background: var(--lp-dark);
  padding: 60px 0 0;
  color: #c4d4e8;
}

.ground__columns {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.ground-col__brand .logo__title {
  color: #fff;
}

.ground-col__brand .logo__title span {
  color: var(--lp-accent);
}

.ground-col__about {
  font-size: 0.875rem;
  color: #8896a7;
  line-height: 1.7;
  margin-top: 12px;
}

.ground-col__heading {
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #fff;
  margin-bottom: 16px;
}

.ground-col__nav {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.ground-col__ref {
  font-size: 0.875rem;
  color: #8896a7;
  transition: color var(--lp-transition);
}

.ground-col__ref:hover {
  color: #fff;
}

.ground-col__contact {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.875rem;
  color: #8896a7;
  margin-bottom: 12px;
}

.ground-col__contact a {
  color: #8896a7;
}

.ground-col__contact a:hover {
  color: #fff;
}

.ground__baseline {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  font-size: 0.8125rem;
  color: #5a6a7e;
}

.ground__legal {
  display: flex;
  gap: 20px;
}

.ground__legal a {
  color: #5a6a7e;
}

.ground__legal a:hover {
  color: #c4d4e8;
}

/* --------------------------------------------------------------------------
   28. COOKIE CONSENT BAR
   -------------------------------------------------------------------------- */
.consent-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--lp-dark);
  padding: 16px 0;
  z-index: 9999;
  display: none;
  border-top: 2px solid var(--lp-accent);
}

.consent-bar--visible {
  display: block;
}

.consent-bar__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.consent-bar__msg {
  font-size: 0.8125rem;
  color: #c4d4e8;
  line-height: 1.6;
}

.consent-bar__msg a {
  color: var(--lp-accent);
}

.consent-bar__accept {
  background: var(--lp-accent);
  color: #fff;
  border: none;
  padding: 10px 24px;
  font-family: var(--lp-font);
  font-weight: 600;
  font-size: 0.8125rem;
  cursor: pointer;
  white-space: nowrap;
  clip-path: polygon(0 0, calc(100% - 6px) 0, 100% 6px, 100% 100%, 6px 100%, 0 calc(100% - 6px));
  transition: background var(--lp-transition);
}

.consent-bar__accept:hover {
  background: var(--lp-accent-hover);
}

/* --------------------------------------------------------------------------
   29. RESPONSIVE — TABLET (max-width: 992px)
   -------------------------------------------------------------------------- */
@media (max-width: 992px) {
  .primary-nav {
    position: fixed;
    top: 0;
    right: -300px;
    width: 300px;
    height: 100vh;
    background: var(--lp-surface);
    z-index: 999;
    transition: right var(--lp-transition);
    box-shadow: var(--lp-shadow-lg);
    padding: 80px 24px 40px;
    overflow-y: auto;
  }

  .primary-nav--open {
    right: 0;
  }

  .primary-nav__items {
    flex-direction: column;
    gap: 0;
  }

  .primary-nav__anchor {
    padding: 14px 0;
    border-bottom: 1px solid var(--lp-border-light);
    font-size: 1rem;
  }

  .primary-nav__anchor::after {
    display: none;
  }

  .menu-toggle {
    display: flex;
  }

  .masthead__actions {
    display: none;
  }

  .apex-banner__grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .apex-banner__heading {
    font-size: 2rem;
  }

  .vectors__row {
    grid-template-columns: 1fr 1fr;
  }

  .trust-band__layout {
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }

  .staff-roster__grid {
    grid-template-columns: 1fr 1fr;
  }

  .praise-section__grid {
    grid-template-columns: 1fr;
  }

  .rate-section__grid {
    grid-template-columns: 1fr;
    max-width: 420px;
  }

  .reach-layout {
    grid-template-columns: 1fr;
  }

  .origin-block__grid {
    grid-template-columns: 1fr;
  }

  .ground__columns {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }

  .principles__grid {
    grid-template-columns: 1fr 1fr;
  }

  .offering-block__bullets {
    grid-template-columns: 1fr;
  }
}

/* --------------------------------------------------------------------------
   30. RESPONSIVE — MOBILE (max-width: 600px)
   -------------------------------------------------------------------------- */
@media (max-width: 600px) {
  .strip-bar__contacts {
    flex-direction: column;
    gap: 4px;
  }

  .strip-bar__hours {
    display: none;
  }

  .apex-banner {
    padding: 50px 0 60px;
  }

  .apex-banner__heading {
    font-size: 1.625rem;
  }

  .apex-banner__metrics {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }

  .metric-tile {
    padding: 16px;
  }

  .metric-tile__figure {
    font-size: 1.5rem;
  }

  .apex-banner__buttons {
    flex-direction: column;
  }

  .vectors__row {
    grid-template-columns: 1fr;
  }

  .trust-band__layout {
    grid-template-columns: 1fr 1fr;
  }

  .trust-point__number {
    font-size: 1.75rem;
  }

  .staff-roster__grid {
    grid-template-columns: 1fr;
  }

  .segment-title {
    font-size: 1.5rem;
  }

  .heading-plate__title {
    font-size: 1.625rem;
  }

  .field-pair {
    grid-template-columns: 1fr;
  }

  .ground__columns {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .ground__baseline {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }

  .ground__legal {
    flex-direction: column;
    gap: 8px;
    align-items: center;
  }

  .principles__grid {
    grid-template-columns: 1fr;
  }

  .offering-block {
    grid-template-columns: 1fr;
  }

  .offering-block__glyph {
    width: 56px;
    height: 56px;
  }

  .consent-bar__row {
    flex-direction: column;
    text-align: center;
    gap: 12px;
  }

  .action-stripe__heading {
    font-size: 1.375rem;
  }

  .lost-block__code {
    font-size: 4rem;
  }

  .gratitude-block {
    padding: 60px 0;
  }
}

/* --------------------------------------------------------------------------
   31. UTILITIES
   -------------------------------------------------------------------------- */
.u-text-center {
  text-align: center;
}

.u-mt-0 { margin-top: 0; }
.u-mt-16 { margin-top: 16px; }
.u-mt-24 { margin-top: 24px; }
.u-mt-32 { margin-top: 32px; }
.u-mb-0 { margin-bottom: 0; }
.u-mb-16 { margin-bottom: 16px; }
.u-mb-24 { margin-bottom: 24px; }
.u-mb-32 { margin-bottom: 32px; }

/* --------------------------------------------------------------------------
   End of style.css
   -------------------------------------------------------------------------- */

[class*="photo"] img,[class*="avatar"] img{width:100%;height:100%;object-fit:cover;border-radius:50%}
[class*="visual"] img{width:100%;height:100%;object-fit:cover;border-radius:12px}
