:root {
  --primary: #1a428a;
  --accent: #e28743;
  --flora: #1e5631;
  --bg: #f7f2e9;
  --text: #111827;
  --tap-min: 44px;

  --glass-bg: rgba(255, 255, 255, 0.62);
  --glass-strong: rgba(255, 255, 255, 0.78);
  --glass-border: rgba(255, 255, 255, 0.52);
  --surface-stroke: rgba(26, 66, 138, 0.13);
  --shadow-lg: 0 18px 40px rgba(15, 35, 72, 0.16);
  --shadow-md: 0 12px 28px rgba(15, 35, 72, 0.1);
  --radius-xl: 22px;
  --radius-lg: 16px;
  --radius-md: 12px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  color: var(--text);
  line-height: 1.6;
  background:
    radial-gradient(circle at 8% 8%, rgba(226, 135, 67, 0.2), transparent 28%),
    radial-gradient(circle at 88% 22%, rgba(26, 66, 138, 0.16), transparent 24%),
    radial-gradient(circle at 82% 86%, rgba(30, 86, 49, 0.14), transparent 30%),
    var(--bg);
}

a,
button,
input,
select,
textarea {
  font: inherit;
}

header {
  position: sticky;
  top: 0;
  z-index: 100;
  margin: 14px auto 0;
  width: min(1240px, 92vw);
  padding: 14px 18px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  border-radius: 16px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: var(--shadow-md);
}

.header-nav {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.header-nav a {
  color: var(--primary);
  text-decoration: none;
  font-weight: 700;
  font-size: 0.88rem;
  letter-spacing: 0.01em;
  padding: 8px 10px;
  min-height: var(--tap-min);
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  transition: background-color 0.25s ease, color 0.25s ease;
}

.header-nav a:hover {
  background-color: rgba(26, 66, 138, 0.12);
}

.logo-link {
  text-decoration: none;
}

.logo-text {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--primary);
  letter-spacing: -0.4px;
}

.logo-sub {
  font-size: 0.72rem;
  color: var(--flora);
  display: block;
  margin-top: -2px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.cta-nav,
.hero-btn,
.submit-btn,
.secondary-btn,
.outline-btn {
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  min-height: var(--tap-min);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}

.cta-nav {
  background: linear-gradient(135deg, var(--accent), #cc6f2f);
  color: #ffffff;
  padding: 11px 18px;
  font-size: 0.88rem;
  white-space: nowrap;
  box-shadow: 0 8px 20px rgba(226, 135, 67, 0.35);
}

.cta-nav:hover,
.hero-btn:hover,
.submit-btn:hover,
.secondary-btn:hover,
.outline-btn:hover {
  transform: translateY(-1px);
  filter: brightness(1.01);
}

.hero,
.services-hero,
.proof-hero,
.contact-hero,
.pricing-hero {
  margin: 20px auto 0;
  width: min(1240px, 92vw);
  border-radius: var(--radius-xl);
  border: 1px solid rgba(255, 255, 255, 0.4);
  box-shadow: var(--shadow-lg);
}

.hero {
  padding: 88px 5% 82px;
  text-align: center;
  background:
    linear-gradient(120deg, rgba(13, 35, 77, 0.92), rgba(26, 66, 138, 0.9)),
    radial-gradient(circle at 18% 22%, rgba(255, 255, 255, 0.2), transparent 28%);
  color: #ffffff;
}

.hero h1 {
  font-size: clamp(2.05rem, 4.8vw, 3.2rem);
  margin-bottom: 16px;
  font-weight: 800;
  line-height: 1.15;
  text-wrap: balance;
}

.hero p {
  font-size: clamp(1.02rem, 2.4vw, 1.24rem);
  max-width: 760px;
  margin: 0 auto 30px auto;
  color: #e5e7eb;
}

.hero-btn {
  display: inline-block;
  background: linear-gradient(135deg, var(--accent), #cc6f2f);
  color: #ffffff;
  padding: 14px 30px;
  font-size: 1rem;
  box-shadow: 0 10px 24px rgba(226, 135, 67, 0.35);
}

.trust-strip {
  width: min(1240px, 92vw);
  margin: 16px auto 0;
  background: var(--glass-strong);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: 16px 5%;
  text-align: center;
  font-weight: 700;
  color: var(--primary);
  letter-spacing: 0.04em;
}

.services,
.deep-dive-section,
.journal-container,
.pricing-container,
.contact-wrapper,
.success-wrapper,
.proof-cta,
.stat-banner {
  width: min(1240px, 92vw);
  margin: 16px auto 0;
}

.services {
  padding: 58px 5%;
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.34);
  border: 1px solid rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.section-title,
.services-hero h1,
.proof-hero h1,
.contact-hero h1,
.pricing-hero h1,
.success-wrapper h1 {
  text-align: center;
  color: var(--primary);
  font-size: clamp(1.8rem, 4vw, 2.55rem);
}

.section-title {
  margin-bottom: 12px;
}

.section-subtitle {
  text-align: center;
  color: #4b5563;
  margin-bottom: 36px;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}

.grid,
.grid-blocks,
.loop-grid,
.stat-grid,
.tier-grid {
  display: grid;
  gap: 20px;
}

.grid {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.card,
.block-item,
.loop-box,
.journal-card,
.tier-card,
.touchpoint-card,
.timeline-box,
.faq-section,
.contact-form,
.interactive-widget,
.form-panel {
  background: var(--glass-strong);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.card {
  padding: 28px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.card h3,
.contact-form h3,
.interactive-widget h3,
.service-title-block h2,
.journal-title h3,
.info-heading h2,
.form-panel h3,
.tier-title h3,
.faq-item h4,
.timeline-box h3,
.step-content h4,
.proof-cta h3 {
  color: var(--primary);
}

.card p,
.block-item p,
.loop-box p,
.touchpoint-details p,
.faq-item p,
.step-content p,
.info-heading p,
.success-wrapper p,
.proof-cta-copy,
.section-subtitle,
.interactive-p,
.contact-hero p,
.proof-hero p,
.pricing-hero p,
.services-hero p {
  color: #4b5563;
}

.price-tag,
.badge-verified {
  display: inline-block;
  width: fit-content;
  margin-top: 16px;
  color: var(--flora);
  font-weight: 800;
  font-size: 0.82rem;
  background: rgba(30, 86, 49, 0.11);
  padding: 7px 12px;
  border-radius: 999px;
  align-self: start;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.interactive-widget,
.contact-form,
.form-panel {
  max-width: 760px;
  margin: 34px auto 0;
  padding: 28px;
}

.interactive-p {
  text-align: center;
  font-size: 0.95rem;
  margin-bottom: 20px;
}

.slider-label {
  display: flex;
  justify-content: space-between;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--primary);
}

input[type='range'] {
  width: 100%;
  margin-bottom: 20px;
  accent-color: var(--accent);
  cursor: pointer;
}

.result-box {
  text-align: center;
  font-size: 1.12rem;
  font-weight: 800;
  color: var(--flora);
  background: rgba(243, 244, 246, 0.9);
  padding: 14px;
  border-radius: 12px;
  border-left: 4px solid var(--flora);
}

.form-group {
  margin-bottom: 18px;
}

.form-group label {
  display: block;
  margin-bottom: 6px;
  font-weight: 700;
  color: var(--primary);
  font-size: 0.92rem;
}

.form-group input,
.form-group select,
.textarea-input {
  width: 100%;
  padding: 12px;
  min-height: var(--tap-min);
  border: 1px solid var(--surface-stroke);
  border-radius: 12px;
  font-size: 1rem;
  background-color: rgba(255, 255, 255, 0.76);
}

.form-group input:focus,
.form-group select:focus,
.textarea-input:focus {
  outline: 2px solid rgba(26, 66, 138, 0.35);
  background-color: #ffffff;
}

.submit-btn,
.secondary-btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  background: linear-gradient(135deg, var(--primary), #123267);
  color: #ffffff;
  padding: 13px 16px;
  border: none;
  font-size: 0.98rem;
  cursor: pointer;
  box-shadow: 0 10px 22px rgba(26, 66, 138, 0.25);
}

.form-success {
  margin-top: 14px;
  text-align: center;
  color: var(--flora);
  font-weight: 700;
}

.action-footer {
  margin-top: 18px;
  text-align: right;
}

.primary-page-action {
  margin-top: 24px;
}

.services-hero,
.proof-hero,
.contact-hero,
.pricing-hero {
  padding: 66px 5%;
  text-align: center;
  color: #ffffff;
}

.services-hero {
  background: linear-gradient(135deg, #1e5631 0%, #0e2b18 100%);
}

.proof-hero {
  background: linear-gradient(135deg, var(--primary) 0%, #112853 100%);
}

.contact-hero {
  background: linear-gradient(135deg, var(--primary) 0%, #0c1f42 100%);
}

.pricing-hero {
  background: linear-gradient(135deg, var(--primary) 0%, #0f2752 100%);
}

.deep-dive-section,
.stat-banner,
.proof-cta {
  padding: 42px 5%;
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.34);
  border: 1px solid rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.deep-dive-section + .deep-dive-section,
.journal-card + .journal-card {
  margin-top: 16px;
}

.service-container,
.journal-container,
.pricing-container {
  max-width: 1100px;
  margin: 0 auto;
}

.service-header,
.journal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 18px;
}

.service-meta {
  display: flex;
  gap: 12px;
  font-size: 0.78rem;
  font-weight: 800;
  color: #6b7280;
  text-transform: uppercase;
}

.meta-item span {
  color: var(--flora);
}

.grid-blocks {
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.block-item {
  padding: 20px;
  border-left: 3px solid var(--primary);
}

.block-item.accent-border {
  border-left-color: var(--accent);
}

.block-item.flora-border {
  border-left-color: var(--flora);
}

.block-item h4,
.loop-box h4 {
  font-size: 0.9rem;
  text-transform: uppercase;
  color: var(--text);
  margin-bottom: 9px;
  letter-spacing: 0.04em;
}

.block-item ul {
  padding-left: 18px;
  font-size: 0.93rem;
  color: #4b5563;
}

.stat-grid {
  max-width: 1000px;
  margin: 0 auto;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  text-align: center;
}

.stat-card {
  background: var(--glass-strong);
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  padding: 16px 12px;
}

.stat-card h2 {
  font-size: 2.2rem;
  color: var(--accent);
  margin-bottom: 4px;
}

.stat-card p {
  font-size: 0.82rem;
  font-weight: 800;
  color: var(--primary);
  text-transform: uppercase;
}

.journal-container {
  padding: 10px 0;
}

.journal-card {
  padding: 28px;
}

.loop-grid {
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  margin-bottom: 20px;
}

.loop-box {
  padding: 18px;
}

.client-quote {
  background-color: rgba(255, 250, 247, 0.8);
  border-left: 4px solid var(--accent);
  padding: 18px;
  border-radius: 12px;
  font-style: italic;
}

.client-quote span {
  display: block;
  margin-top: 8px;
  font-style: normal;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--primary);
}

.contact-wrapper {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  padding: 6px 0 12px;
}

.info-panel {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.touchpoint-card {
  padding: 20px;
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.touchpoint-icon {
  background-color: rgba(30, 86, 49, 0.12);
  color: var(--flora);
  font-size: 1.3rem;
  padding: 10px;
  border-radius: 12px;
  line-height: 1;
}

.touchpoint-link {
  color: var(--accent);
  text-decoration: none;
  font-weight: 800;
  font-size: 0.92rem;
}

.touchpoint-link:hover {
  text-decoration: underline;
}

.checkbox-group {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 6px;
}

.checkbox-group input {
  width: auto;
  cursor: pointer;
}

.checkbox-group label {
  font-size: 0.84rem;
  color: #4b5563;
  font-weight: 500;
}

.tier-grid {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.tier-card {
  padding: 30px;
}

.tier-card.featured {
  border: 2px solid rgba(226, 135, 67, 0.6);
}

.featured-tag {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background-color: var(--accent);
  color: #ffffff;
  padding: 5px 12px;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.09em;
}

.tier-title p {
  color: #6b7280;
  font-size: 0.9rem;
  margin-bottom: 18px;
}

.tier-price-box {
  border-top: 1px solid rgba(26, 66, 138, 0.1);
  border-bottom: 1px solid rgba(26, 66, 138, 0.1);
  padding: 16px 0;
  margin-bottom: 20px;
}

.tier-price {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--flora);
}

.tier-price-sub {
  font-size: 0.84rem;
  color: #4b5563;
  margin-top: 2px;
}

.tier-features {
  list-style: none;
  margin-bottom: 24px;
}

.tier-features li {
  font-size: 0.92rem;
  color: #4b5563;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.tier-features li::before {
  content: '✓';
  color: var(--flora);
  font-weight: 900;
}

.faq-section {
  padding: 40px 5%;
  max-width: 900px;
  margin: 0 auto;
}

.faq-section h2 {
  text-align: center;
  margin-bottom: 28px;
  font-size: 1.6rem;
}

.faq-grid {
  display: grid;
  gap: 22px;
}

.faq-item p {
  font-size: 0.94rem;
  text-align: left;
}

.success-wrapper {
  padding: 42px 5% 14px;
}

.success-icon {
  font-size: 3.6rem;
  color: var(--flora);
  margin-bottom: 14px;
  animation: popIn 0.45s ease-out;
}

.timeline-box {
  padding: 26px;
  margin-bottom: 30px;
}

.step-item {
  display: flex;
  gap: 16px;
  margin-bottom: 20px;
  position: relative;
}

.step-item:not(:last-child)::after {
  content: '';
  position: absolute;
  left: 13px;
  top: 29px;
  bottom: -16px;
  width: 2px;
  background-color: rgba(26, 66, 138, 0.15);
}

.step-num {
  background-color: rgba(26, 66, 138, 0.08);
  color: var(--primary);
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.84rem;
  flex-shrink: 0;
  border: 1px solid rgba(26, 66, 138, 0.15);
}

.step-item.active .step-num {
  background-color: var(--primary);
  color: #ffffff;
  border-color: var(--primary);
}

.action-links {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.outline-btn {
  border: 2px solid var(--primary);
  color: var(--primary);
  padding: 10px 22px;
  font-size: 0.92rem;
  background: transparent;
}

.outline-btn:hover {
  background-color: var(--primary);
  color: #ffffff;
}

footer {
  width: min(1240px, 92vw);
  margin: 16px auto;
  border-top: 1px solid rgba(255, 255, 255, 0.5);
  background: rgba(17, 24, 39, 0.9);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: #cbd5e1;
  text-align: center;
  padding: 28px 5%;
  font-size: 0.9rem;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-md);
}

.footer-nav {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 10px;
}

.footer-nav a {
  color: #e2e8f0;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.84rem;
  padding: 6px 10px;
  border-radius: 999px;
  transition: background-color 0.2s ease;
}

.footer-nav a:hover {
  background-color: rgba(255, 255, 255, 0.12);
}

footer p {
  margin-bottom: 6px;
}

@keyframes popIn {
  from {
    opacity: 0;
    transform: scale(0.8);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

@media (max-width: 900px) {
  header {
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 8px;
  }

  .header-nav {
    order: 3;
    width: 100%;
    justify-content: flex-start;
    gap: 8px;
    flex-wrap: nowrap;
    overflow-x: auto;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x proximity;
    padding-bottom: 2px;
  }

  .header-nav::-webkit-scrollbar {
    display: none;
  }

  .header-nav a {
    white-space: nowrap;
    flex: 0 0 auto;
    scroll-snap-align: start;
  }

  .cta-nav {
    order: 4;
    width: 100%;
  }
}

@media (max-width: 768px) {
  .hero,
  .services-hero,
  .proof-hero,
  .contact-hero,
  .pricing-hero,
  .services,
  .deep-dive-section,
  .stat-banner,
  .proof-cta,
  footer,
  header,
  .journal-container,
  .pricing-container,
  .contact-wrapper,
  .success-wrapper,
  .trust-strip {
    width: min(1240px, 96vw);
  }

  .hero,
  .services-hero,
  .proof-hero,
  .contact-hero,
  .pricing-hero {
    padding: 56px 5%;
  }

  .hero h1,
  .services-hero h1,
  .proof-hero h1,
  .contact-hero h1,
  .pricing-hero h1,
  .success-wrapper h1 {
    font-size: 1.9rem;
  }

  .hero p,
  .services-hero p,
  .proof-hero p,
  .contact-hero p,
  .pricing-hero p {
    font-size: 0.97rem;
  }

  .services,
  .deep-dive-section,
  .stat-banner,
  .proof-cta,
  .pricing-container,
  .journal-container,
  .success-wrapper {
    padding: 30px 5%;
  }

  .contact-wrapper {
    padding: 0;
    gap: 18px;
  }

  .grid,
  .grid-blocks,
  .loop-grid,
  .tier-grid,
  .stat-grid {
    grid-template-columns: 1fr;
  }

  .slider-label,
  .service-meta {
    flex-direction: column;
    gap: 4px;
  }

  .service-header,
  .journal-header {
    align-items: flex-start;
  }

  .action-footer {
    text-align: left;
  }

  .journal-card,
  .form-panel,
  .contact-form,
  .interactive-widget,
  .tier-card,
  .timeline-box,
  .faq-section {
    padding: 20px;
  }

  .hero-btn,
  .secondary-btn,
  .submit-btn,
  .outline-btn {
    width: 100%;
  }

  .action-links {
    flex-direction: column;
    align-items: stretch;
  }

  .touchpoint-card {
    align-items: stretch;
  }

  .footer-nav a {
    min-height: var(--tap-min);
    display: inline-flex;
    align-items: center;
  }
}

@media (max-width: 480px) {
  header {
    padding: 12px;
  }

  .logo-text {
    font-size: 1.15rem;
  }

  .logo-sub {
    font-size: 0.66rem;
  }

  .hero h1,
  .services-hero h1,
  .proof-hero h1,
  .contact-hero h1,
  .pricing-hero h1,
  .success-wrapper h1 {
    font-size: 1.7rem;
    line-height: 1.18;
  }

  .section-title,
  .info-heading h2,
  .service-title-block h2,
  .faq-section h2 {
    font-size: 1.45rem;
  }

  .hero,
  .services-hero,
  .proof-hero,
  .contact-hero,
  .pricing-hero {
    padding: 48px 5%;
  }
}
:root {
  --primary: #1a428a;
  --accent: #e28743;
  --flora: #1e5631;
  --bg: #f5f2ec;
  --text: #0f1729;
  --muted: #4b5563;
  --glass: rgba(255, 255, 255, 0.58);
  --glass-soft: rgba(255, 255, 255, 0.42);
  --glass-stroke: rgba(255, 255, 255, 0.62);
  --panel-border: rgba(200, 210, 226, 0.55);
  --shadow-soft: 0 10px 30px rgba(15, 23, 41, 0.08);
  --shadow-mid: 0 14px 40px rgba(15, 23, 41, 0.12);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto,
    Helvetica, Arial, sans-serif;
  color: var(--text);
  line-height: 1.65;
  background:
    radial-gradient(circle at 14% 8%, rgba(26, 66, 138, 0.16), transparent 36%),
    radial-gradient(circle at 88% 18%, rgba(226, 135, 67, 0.2), transparent 28%),
    radial-gradient(circle at 72% 88%, rgba(30, 86, 49, 0.12), transparent 30%),
    linear-gradient(145deg, #f9f6f0 0%, #eef2f7 52%, #f8f3eb 100%);
}

a {
  transition: all 0.25s ease;
}

header {
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.9rem;
  padding: 1rem 5%;
  border-bottom: 1px solid var(--panel-border);
  background: linear-gradient(
    120deg,
    rgba(255, 255, 255, 0.7),
    rgba(255, 255, 255, 0.44)
  );
  box-shadow: 0 8px 24px rgba(15, 23, 41, 0.06);
  backdrop-filter: blur(16px) saturate(1.15);
  -webkit-backdrop-filter: blur(16px) saturate(1.15);
}

.header-nav {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  flex-wrap: wrap;
}

.header-nav a {
  color: var(--primary);
  text-decoration: none;
  font-weight: 700;
  font-size: 0.86rem;
  letter-spacing: 0.01em;
  padding: 0.44rem 0.7rem;
  border-radius: 999px;
}

.header-nav a:hover {
  background: rgba(26, 66, 138, 0.12);
}

.logo-link {
  text-decoration: none;
}

.logo-text {
  font-size: clamp(1.18rem, 1.65vw, 1.5rem);
  font-weight: 800;
  color: var(--primary);
  letter-spacing: -0.02em;
  line-height: 1.15;
}

.logo-sub {
  font-size: 0.73rem;
  color: var(--flora);
  display: block;
  margin-top: -2px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.cta-nav,
.hero-btn,
.secondary-btn,
.submit-btn,
.outline-btn {
  border-radius: 12px;
  font-weight: 800;
  letter-spacing: 0.01em;
  box-shadow: var(--shadow-soft);
}

.cta-nav {
  background: linear-gradient(130deg, #e99a52 0%, #d26f2c 100%);
  color: #ffffff;
  text-decoration: none;
  font-size: 0.88rem;
  padding: 0.65rem 1rem;
}

.cta-nav:hover {
  transform: translateY(-1px);
  box-shadow: var(--shadow-mid);
}

.hero,
.services-hero,
.proof-hero,
.contact-hero,
.pricing-hero {
  position: relative;
  overflow: hidden;
  text-align: center;
  color: #f7fbff;
  border-bottom: 1px solid rgba(255, 255, 255, 0.25);
}

.hero::before,
.services-hero::before,
.proof-hero::before,
.contact-hero::before,
.pricing-hero::before {
  content: '';
  position: absolute;
  inset: -40% auto auto -20%;
  width: 420px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.22), transparent 70%);
  filter: blur(8px);
}

.hero {
  padding: clamp(4rem, 9vw, 6rem) 5% clamp(3rem, 7vw, 4.5rem);
  background: linear-gradient(135deg, #163872 0%, #0f274f 42%, #1f4e89 100%);
}

.hero h1 {
  max-width: 18ch;
  margin: 0 auto 1rem;
  font-size: clamp(2.05rem, 6vw, 3.25rem);
  font-weight: 900;
  letter-spacing: -0.025em;
  line-height: 1.08;
  text-wrap: balance;
}

.hero p {
  max-width: 66ch;
  margin: 0 auto 2rem;
  color: #dde9f7;
  font-size: clamp(1rem, 2.2vw, 1.24rem);
}

.hero-btn {
  display: inline-block;
  background: linear-gradient(130deg, #e99a52 0%, #d26f2c 100%);
  color: #ffffff;
  text-decoration: none;
  padding: 0.95rem 1.9rem;
  font-size: 1rem;
}

.hero-btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-mid);
}

.trust-strip {
  margin: 0 5%;
  text-align: center;
  padding: 0.9rem 1.1rem;
  border-radius: 0 0 18px 18px;
  background: var(--glass);
  border: 1px solid var(--glass-stroke);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  font-weight: 700;
  letter-spacing: 0.03em;
  color: var(--primary);
  box-shadow: var(--shadow-soft);
}

.services {
  padding: clamp(2.5rem, 6vw, 4.4rem) 5% 4rem;
}

.section-title {
  text-align: center;
  font-size: clamp(1.8rem, 4.6vw, 2.6rem);
  color: var(--primary);
  letter-spacing: -0.02em;
  margin-bottom: 0.6rem;
}

.section-subtitle {
  text-align: center;
  color: var(--muted);
  margin: 0 auto 2.2rem;
  max-width: 62ch;
  font-size: 1.03rem;
}

.grid,
.grid-blocks,
.loop-grid,
.tier-grid,
.stat-grid {
  display: grid;
  gap: 1.25rem;
}

.grid {
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.grid-blocks {
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  margin-top: 0.9rem;
}

.loop-grid {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  margin-bottom: 1rem;
}

.stat-grid {
  max-width: 1000px;
  margin: 0 auto;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  text-align: center;
}

.tier-grid {
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  margin-bottom: 2.3rem;
}

.card,
.interactive-widget,
.contact-form,
.service-container,
.block-item,
.journal-card,
.loop-box,
.touchpoint-card,
.form-panel,
.tier-card,
.faq-section,
.timeline-box {
  background: linear-gradient(135deg, var(--glass), var(--glass-soft));
  border: 1px solid var(--glass-stroke);
  border-radius: 18px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: var(--shadow-soft);
}

.card {
  padding: 1.6rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 0.8rem;
}

.card:hover,
.journal-card:hover,
.tier-card:hover,
.touchpoint-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-mid);
}

.card h3,
.contact-form h3,
.interactive-widget h3,
.service-title-block h2,
.journal-title h3,
.info-heading h2,
.form-panel h3,
.tier-title h3,
.timeline-box h3 {
  color: var(--primary);
}

.card h3 {
  margin-bottom: 0.55rem;
  font-size: 1.28rem;
}

.card p,
.block-item p,
.loop-box p,
.faq-item p,
.info-heading p,
.touchpoint-details p,
.tier-title p,
.step-content p {
  color: var(--muted);
}

.price-tag,
.badge-verified,
.featured-tag {
  width: fit-content;
  text-transform: uppercase;
  font-weight: 800;
  letter-spacing: 0.06em;
}

.price-tag {
  color: #144b27;
  font-size: 0.75rem;
  background: #e8f7eb;
  padding: 0.34rem 0.6rem;
  border-radius: 999px;
  margin-top: 0.35rem;
}

.primary-page-action {
  margin-top: 1rem;
}

.action-footer {
  margin-top: 1rem;
  text-align: right;
}

.secondary-btn {
  display: inline-block;
  text-decoration: none;
  color: #ffffff;
  background: linear-gradient(135deg, #1a428a, #0f2a58);
  padding: 0.72rem 1.1rem;
  font-size: 0.92rem;
}

.secondary-btn:hover {
  transform: translateY(-1px);
}

.interactive-widget,
.contact-form,
.form-panel {
  max-width: 760px;
  margin: 1.8rem auto 0;
  padding: 1.5rem;
}

.interactive-p {
  text-align: center;
  color: #6a7588;
  margin-bottom: 1rem;
}

.slider-label {
  display: flex;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 0.55rem;
  color: var(--primary);
  font-weight: 700;
}

input[type='range'] {
  width: 100%;
  margin-bottom: 0.8rem;
  accent-color: var(--accent);
  cursor: pointer;
}

.result-box,
.client-quote {
  border-radius: 12px;
}

.result-box {
  text-align: center;
  font-size: 1.1rem;
  font-weight: 800;
  color: #184625;
  background: rgba(243, 248, 255, 0.8);
  padding: 0.95rem;
  border-left: 4px solid var(--flora);
}

.form-group {
  margin-bottom: 1rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.3rem;
  font-weight: 700;
  color: var(--primary);
  font-size: 0.93rem;
}

.form-group input,
.form-group select,
.textarea-input {
  width: 100%;
  padding: 0.78rem 0.84rem;
  border: 1px solid rgba(176, 189, 211, 0.66);
  border-radius: 10px;
  font-size: 0.98rem;
  background-color: rgba(255, 255, 255, 0.72);
  color: #0f1729;
}

.textarea-input {
  resize: vertical;
  min-height: 100px;
  font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.textarea-input:focus,
input[type='range']:focus-visible,
button:focus-visible,
a:focus-visible {
  outline: 2px solid rgba(26, 66, 138, 0.9);
  outline-offset: 2px;
}

.checkbox-group {
  display: flex;
  align-items: flex-start;
  gap: 0.55rem;
  margin-top: 0.5rem;
}

.checkbox-group input {
  width: auto;
  margin-top: 0.25rem;
}

.checkbox-group label {
  font-size: 0.84rem;
  color: var(--muted);
  font-weight: 500;
}

.submit-btn {
  width: 100%;
  background: linear-gradient(135deg, #1a428a 0%, #0f2a58 100%);
  color: #ffffff;
  padding: 0.85rem 1rem;
  border: none;
  font-size: 1rem;
  cursor: pointer;
}

.submit-btn:hover {
  transform: translateY(-1px);
  box-shadow: var(--shadow-mid);
}

.form-success {
  margin-top: 0.8rem;
  text-align: center;
  color: var(--flora);
  font-weight: 700;
}

.services-hero,
.proof-hero,
.contact-hero,
.pricing-hero {
  padding: clamp(3rem, 8vw, 4.5rem) 5%;
}

.services-hero {
  background: linear-gradient(135deg, #1e5631 0%, #0f2f1b 100%);
}

.proof-hero {
  background: linear-gradient(135deg, var(--primary) 0%, #112853 100%);
}

.contact-hero {
  background: linear-gradient(135deg, var(--primary) 0%, #0c1f42 100%);
}

.pricing-hero {
  background: linear-gradient(135deg, var(--primary) 0%, #0f2752 100%);
}

.services-hero h1,
.proof-hero h1,
.contact-hero h1,
.pricing-hero h1,
.success-wrapper h1 {
  font-size: clamp(1.95rem, 5vw, 2.7rem);
  margin-bottom: 0.65rem;
  letter-spacing: -0.02em;
}

.services-hero p,
.proof-hero p,
.contact-hero p,
.pricing-hero p {
  max-width: 700px;
  margin: 0 auto;
  color: #e4edf8;
  font-size: 1.05rem;
}

.deep-dive-section {
  padding: 2.8rem 5%;
}

.deep-dive-section:nth-child(even) {
  background-color: rgba(255, 255, 255, 0.2);
}

.service-container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.service-header,
.journal-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 0.8rem;
  flex-wrap: wrap;
}

.service-title-block h2,
.journal-title h3,
.info-heading h2,
.faq-section h2 {
  font-size: clamp(1.4rem, 2.8vw, 1.85rem);
}

.service-meta {
  display: flex;
  gap: 0.7rem;
  flex-wrap: wrap;
  font-size: 0.78rem;
  font-weight: 800;
  color: #6b7280;
  text-transform: uppercase;
}

.meta-item span,
.journal-title span,
.client-quote span {
  color: var(--flora);
}

.block-item {
  padding: 1rem;
  border-left: 4px solid var(--primary);
}

.block-item.accent-border {
  border-left-color: var(--accent);
}

.block-item.flora-border {
  border-left-color: var(--flora);
}

.block-item h4,
.loop-box h4,
.faq-item h4,
.touchpoint-details h4,
.step-content h4 {
  color: var(--text);
  font-size: 1rem;
  margin-bottom: 0.35rem;
}

.block-item ul,
.tier-features {
  list-style: none;
  padding-left: 0;
}

.block-item ul li,
.tier-features li {
  position: relative;
  padding-left: 1.25rem;
  margin-bottom: 0.45rem;
}

.block-item ul li::before,
.tier-features li::before {
  content: '\2713';
  position: absolute;
  left: 0;
  top: 0;
  color: var(--flora);
  font-weight: 800;
}

.stat-banner,
.proof-cta {
  padding: 2rem 5%;
}

.stat-card,
.loop-box,
.journal-card,
.faq-item {
  text-align: left;
}

.stat-card h2 {
  font-size: clamp(2rem, 5vw, 2.6rem);
  color: var(--accent);
}

.stat-card p {
  font-size: 0.82rem;
  font-weight: 800;
  color: var(--primary);
  text-transform: uppercase;
}

.journal-container,
.pricing-container,
.contact-wrapper,
.success-wrapper {
  max-width: 1100px;
  margin: 0 auto;
}

.journal-container,
.pricing-container {
  padding: 2.8rem 5%;
}

.journal-card {
  padding: 1.4rem;
  margin-bottom: 1.2rem;
}

.journal-title span,
.badge-verified {
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
}

.badge-verified {
  background-color: #edf7ed;
  color: #16552a;
  padding: 0.28rem 0.65rem;
  border-radius: 999px;
}

.client-quote {
  background-color: rgba(255, 248, 240, 0.82);
  border-left: 4px solid var(--accent);
  padding: 1rem;
  font-style: italic;
}

.client-quote span {
  display: block;
  margin-top: 0.45rem;
  font-style: normal;
  font-weight: 700;
  font-size: 0.88rem;
}

.proof-cta {
  text-align: center;
}

.proof-cta h3 {
  color: var(--primary);
  font-size: clamp(1.5rem, 3.6vw, 2rem);
  margin-bottom: 0.6rem;
}

.proof-cta-copy {
  margin-bottom: 1.2rem;
  color: var(--muted);
}

.contact-wrapper {
  padding: 2.8rem 5%;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.3rem;
}

.info-panel {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.touchpoint-card {
  padding: 1rem;
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
}

.touchpoint-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 10px;
  background-color: #e6f4ea;
  color: var(--flora);
  font-size: 1.25rem;
}

.touchpoint-link {
  color: #c96d2d;
  text-decoration: none;
  font-weight: 800;
  font-size: 0.9rem;
}

.touchpoint-link:hover {
  color: #a85620;
}

.form-panel {
  padding: 1.5rem;
}

.pricing-container {
  padding-top: 2.5rem;
}

.tier-card {
  padding: 1.25rem;
  gap: 1rem;
}

.featured-tag {
  top: -10px;
  padding: 0.22rem 0.7rem;
  border-radius: 999px;
  font-size: 0.7rem;
}

.tier-title p {
  margin-bottom: 0.7rem;
}

.tier-price-box {
  border-top: 1px solid rgba(176, 189, 211, 0.44);
  border-bottom: 1px solid rgba(176, 189, 211, 0.44);
  padding: 0.8rem 0;
  margin-bottom: 0.95rem;
}

.tier-price {
  font-size: 1.18rem;
}

.tier-price-sub {
  font-size: 0.82rem;
  color: #4b5563;
}

.tier-btn {
  text-align: center;
}

.faq-section {
  padding: 1.5rem;
}

.faq-grid {
  display: grid;
  gap: 1rem;
}

.faq-item {
  padding: 1rem;
  border: 1px solid var(--panel-border);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.62);
}

.faq-item p {
  text-align: left;
}

.success-wrapper {
  padding: 2.4rem 5%;
  text-align: center;
}

.success-icon {
  font-size: 3.2rem;
  color: var(--flora);
  margin-bottom: 0.7rem;
  animation: popIn 0.5s ease-out;
}

.success-wrapper p {
  margin: 0 auto 1.5rem;
  max-width: 650px;
}

.timeline-box {
  padding: 1.3rem;
  text-align: left;
  margin-bottom: 1.4rem;
}

.step-item {
  display: flex;
  gap: 0.8rem;
  margin-bottom: 0.9rem;
  position: relative;
}

.step-item:not(:last-child)::after {
  content: '';
  position: absolute;
  left: 0.84rem;
  top: 2rem;
  bottom: -0.84rem;
  width: 2px;
  background-color: rgba(176, 189, 211, 0.44);
}

.step-num {
  background-color: rgba(176, 189, 211, 0.35);
  color: var(--primary);
  width: 1.7rem;
  height: 1.7rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.82rem;
  flex-shrink: 0;
  border: 1px solid rgba(176, 189, 211, 0.45);
}

.step-item.active .step-num {
  background-color: var(--primary);
  color: #ffffff;
  border-color: var(--primary);
}

.action-links {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.outline-btn {
  display: inline-block;
  border: 1px solid rgba(26, 66, 138, 0.62);
  color: var(--primary);
  padding: 0.75rem 1.1rem;
  text-decoration: none;
  font-size: 0.92rem;
  background: rgba(255, 255, 255, 0.35);
}

.outline-btn:hover {
  background: rgba(26, 66, 138, 0.95);
  color: #ffffff;
}

footer {
  margin: 1.4rem 5% 1.8rem;
  border-top: 1px solid var(--panel-border);
  background: linear-gradient(
    120deg,
    rgba(15, 23, 41, 0.9),
    rgba(20, 35, 66, 0.85)
  );
  color: #c4d3ea;
  text-align: center;
  padding: 1.2rem 1rem;
  font-size: 0.9rem;
  border-radius: 18px;
  box-shadow: var(--shadow-soft);
}

.footer-nav {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.42rem;
  margin-bottom: 0.7rem;
}

.footer-nav a {
  color: #e8f2ff;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.82rem;
  padding: 0.32rem 0.6rem;
  border-radius: 999px;
}

.footer-nav a:hover {
  background: rgba(255, 255, 255, 0.16);
}

footer p {
  margin-bottom: 0.3rem;
}

@keyframes popIn {
  from {
    opacity: 0;
    transform: scale(0.84);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

@media (max-width: 980px) {
  header {
    flex-wrap: wrap;
    gap: 0.55rem;
  }

  .header-nav {
    order: 3;
    width: 100%;
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: 0.2rem;
    scrollbar-width: thin;
  }

  .action-footer {
    text-align: left;
  }
}

@media (max-width: 768px) {
  .hero {
    padding-top: 3.25rem;
  }

  .hero h1 {
    font-size: clamp(1.86rem, 9vw, 2.4rem);
  }

  .hero p {
    font-size: 1rem;
  }

  .services,
  .journal-container,
  .pricing-container,
  .contact-wrapper,
  .success-wrapper,
  .deep-dive-section {
    padding-left: 4.2%;
    padding-right: 4.2%;
  }

  .card,
  .interactive-widget,
  .contact-form,
  .service-container,
  .journal-card,
  .form-panel,
  .tier-card,
  .faq-section,
  .timeline-box {
    border-radius: 14px;
    padding: 1rem;
  }

  .services-hero h1,
  .proof-hero h1,
  .contact-hero h1,
  .pricing-hero h1,
  .success-wrapper h1 {
    font-size: 1.95rem;
  }

  .service-meta,
  .slider-label {
    flex-direction: column;
    gap: 0.25rem;
  }

  .touchpoint-card {
    flex-direction: column;
  }

  .touchpoint-icon {
    width: 2.1rem;
    height: 2.1rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* Liquid glass visual layer */
:root {
  --primary: #173f82;
  --accent: #e4873f;
  --flora: #195d48;
  --text: #102033;
  --muted: #506071;
  --liquid-surface: rgba(255, 255, 255, 0.48);
  --liquid-surface-strong: rgba(255, 255, 255, 0.62);
  --liquid-surface-soft: rgba(255, 255, 255, 0.24);
  --liquid-stroke: rgba(255, 255, 255, 0.72);
  --liquid-shadow: 0 24px 70px rgba(30, 53, 82, 0.18);
  --liquid-inner: inset 0 1px 0 rgba(255, 255, 255, 0.78),
    inset 0 -18px 42px rgba(255, 255, 255, 0.18);
}

body {
  min-height: 100vh;
  background:
    radial-gradient(circle at 12% 10%, rgba(109, 169, 255, 0.32), transparent 28%),
    radial-gradient(circle at 86% 16%, rgba(255, 171, 95, 0.34), transparent 26%),
    radial-gradient(circle at 68% 82%, rgba(78, 183, 143, 0.24), transparent 30%),
    linear-gradient(135deg, #edf6ff 0%, #f8f3ec 42%, #e9f7f4 100%);
  overflow-x: hidden;
}

body::before,
body::after {
  content: '';
  position: fixed;
  inset: auto;
  z-index: -1;
  width: min(42vw, 520px);
  aspect-ratio: 1;
  border-radius: 43% 57% 64% 36% / 48% 38% 62% 52%;
  filter: blur(8px);
  opacity: 0.72;
  pointer-events: none;
}

body::before {
  top: 9%;
  left: -10%;
  background:
    radial-gradient(circle at 38% 34%, rgba(255, 255, 255, 0.86), transparent 20%),
    linear-gradient(145deg, rgba(84, 143, 232, 0.38), rgba(255, 255, 255, 0.12));
}

body::after {
  right: -12%;
  bottom: 4%;
  background:
    radial-gradient(circle at 34% 28%, rgba(255, 255, 255, 0.78), transparent 18%),
    linear-gradient(145deg, rgba(232, 135, 63, 0.28), rgba(58, 151, 117, 0.24));
}

header,
.trust-strip,
.services,
.deep-dive-section,
.stat-banner,
.proof-cta,
.card,
.interactive-widget,
.contact-form,
.service-container,
.block-item,
.journal-card,
.loop-box,
.touchpoint-card,
.form-panel,
.tier-card,
.faq-section,
.faq-item,
.timeline-box,
.stat-card,
footer {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--liquid-stroke);
  background:
    linear-gradient(145deg, var(--liquid-surface-strong), var(--liquid-surface-soft)),
    radial-gradient(circle at 12% 8%, rgba(255, 255, 255, 0.78), transparent 28%);
  box-shadow: var(--liquid-shadow), var(--liquid-inner);
  backdrop-filter: blur(22px) saturate(1.28);
  -webkit-backdrop-filter: blur(22px) saturate(1.28);
}

header::before,
.hero::before,
.services-hero::before,
.proof-hero::before,
.contact-hero::before,
.pricing-hero::before,
.card::before,
.interactive-widget::before,
.contact-form::before,
.service-container::before,
.journal-card::before,
.tier-card::before,
.form-panel::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background:
    linear-gradient(115deg, rgba(255, 255, 255, 0.68), transparent 28%),
    radial-gradient(circle at 82% 18%, rgba(255, 255, 255, 0.34), transparent 26%);
  pointer-events: none;
  mix-blend-mode: screen;
}

header {
  border-radius: 24px;
  background:
    linear-gradient(120deg, rgba(255, 255, 255, 0.7), rgba(255, 255, 255, 0.3)),
    rgba(255, 255, 255, 0.42);
}

.hero,
.services-hero,
.proof-hero,
.contact-hero,
.pricing-hero {
  isolation: isolate;
  border: 1px solid rgba(255, 255, 255, 0.48);
  border-radius: 30px;
  box-shadow: 0 26px 90px rgba(18, 45, 84, 0.24),
    inset 0 1px 0 rgba(255, 255, 255, 0.38);
}

.hero {
  background:
    linear-gradient(135deg, rgba(16, 55, 111, 0.94), rgba(24, 83, 132, 0.78)),
    radial-gradient(circle at 22% 18%, rgba(255, 255, 255, 0.34), transparent 28%),
    radial-gradient(circle at 78% 72%, rgba(73, 184, 145, 0.24), transparent 30%);
}

.services-hero,
.proof-hero,
.contact-hero,
.pricing-hero {
  background:
    linear-gradient(135deg, rgba(16, 58, 97, 0.92), rgba(25, 93, 72, 0.78)),
    radial-gradient(circle at 20% 18%, rgba(255, 255, 255, 0.24), transparent 30%),
    radial-gradient(circle at 82% 76%, rgba(232, 135, 63, 0.18), transparent 32%);
}

.hero h1,
.services-hero h1,
.proof-hero h1,
.contact-hero h1,
.pricing-hero h1 {
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.2), 0 16px 40px rgba(7, 20, 42, 0.24);
}

.card,
.interactive-widget,
.contact-form,
.service-container,
.journal-card,
.tier-card,
.form-panel,
.timeline-box,
.faq-section {
  border-radius: 22px;
}

.block-item,
.loop-box,
.touchpoint-card,
.stat-card,
.faq-item {
  border-radius: 18px;
}

.card:hover,
.journal-card:hover,
.tier-card:hover,
.touchpoint-card:hover,
.block-item:hover,
.loop-box:hover {
  transform: translateY(-3px);
  box-shadow: 0 30px 80px rgba(30, 53, 82, 0.22), var(--liquid-inner);
}

.header-nav a,
.footer-nav a {
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.24);
}

.header-nav a:hover,
.footer-nav a:hover {
  background: rgba(255, 255, 255, 0.42);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.66);
}

.cta-nav,
.hero-btn,
.secondary-btn,
.submit-btn,
.outline-btn {
  border: 1px solid rgba(255, 255, 255, 0.46);
  background:
    linear-gradient(135deg, rgba(255, 166, 82, 0.96), rgba(208, 102, 39, 0.92)),
    radial-gradient(circle at 28% 18%, rgba(255, 255, 255, 0.38), transparent 32%);
  box-shadow: 0 14px 34px rgba(191, 97, 40, 0.26),
    inset 0 1px 0 rgba(255, 255, 255, 0.46);
}

.secondary-btn,
.submit-btn {
  background:
    linear-gradient(135deg, rgba(26, 66, 138, 0.94), rgba(18, 84, 103, 0.88)),
    radial-gradient(circle at 24% 18%, rgba(255, 255, 255, 0.32), transparent 32%);
}

.outline-btn {
  background: rgba(255, 255, 255, 0.38);
}

.form-group input,
.form-group select,
.textarea-input {
  border: 1px solid rgba(255, 255, 255, 0.68);
  background: rgba(255, 255, 255, 0.46);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.72),
    0 10px 24px rgba(32, 56, 83, 0.08);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.form-group input:focus,
.form-group select:focus,
.textarea-input:focus {
  background: rgba(255, 255, 255, 0.68);
  outline-color: rgba(23, 63, 130, 0.72);
}

.price-tag,
.badge-verified,
.featured-tag,
.result-box,
.client-quote {
  border: 1px solid rgba(255, 255, 255, 0.6);
  background: rgba(255, 255, 255, 0.42);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.72),
    0 10px 24px rgba(25, 93, 72, 0.08);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

footer {
  background:
    linear-gradient(120deg, rgba(20, 34, 58, 0.74), rgba(17, 61, 72, 0.58)),
    radial-gradient(circle at 18% 12%, rgba(255, 255, 255, 0.2), transparent 28%);
}

@media (max-width: 768px) {
  body::before,
  body::after {
    width: 78vw;
    opacity: 0.48;
  }

  header,
  .hero,
  .services-hero,
  .proof-hero,
  .contact-hero,
  .pricing-hero {
    border-radius: 20px;
  }
}

/* Centering pass */
#app {
  width: 100%;
}

header {
  justify-content: center;
  text-align: center;
}

header > div,
.logo-link,
.logo-text,
.logo-sub {
  text-align: center;
}

.header-nav,
.footer-nav {
  justify-content: center;
}

.hero,
.services-hero,
.proof-hero,
.contact-hero,
.pricing-hero,
.trust-strip,
.services,
.deep-dive-section,
.stat-banner,
.proof-cta,
.journal-container,
.pricing-container,
.contact-wrapper,
.success-wrapper,
footer {
  margin-left: auto;
  margin-right: auto;
}

.trust-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  width: min(1240px, 92vw) !important;
  max-width: min(1240px, 92vw) !important;
  min-height: 58px;
  margin: 16px auto 0 !important;
  padding-left: clamp(1rem, 5vw, 3rem);
  padding-right: clamp(1rem, 5vw, 3rem);
  text-align: center;
}

.grid,
.grid-blocks,
.loop-grid,
.stat-grid,
.tier-grid,
.contact-wrapper {
  justify-items: center;
}

.card,
.block-item,
.loop-box,
.journal-card,
.tier-card,
.touchpoint-card,
.timeline-box,
.faq-item,
.stat-card {
  width: 100%;
  text-align: center;
}

.card,
.tier-card {
  align-items: center;
}

.service-container,
.service-header,
.journal-header,
.info-panel,
.info-heading,
.form-panel,
.faq-section,
.success-wrapper,
.timeline-box {
  text-align: center;
}

.service-header,
.journal-header {
  justify-content: center;
  align-items: center;
}

.service-title-block,
.journal-title {
  width: 100%;
  text-align: center;
}

.service-meta,
.slider-label,
.action-links {
  justify-content: center;
}

.price-tag,
.badge-verified,
.featured-tag {
  margin-left: auto;
  margin-right: auto;
  align-self: center;
}

.action-footer,
.primary-page-action {
  text-align: center;
}

.secondary-btn,
.submit-btn,
.outline-btn,
.hero-btn,
.cta-nav {
  margin-left: auto;
  margin-right: auto;
}

.tier-features,
.block-item ul {
  display: inline-block;
  max-width: 34rem;
  text-align: left;
}

.touchpoint-card {
  justify-content: center;
  align-items: center;
}

.touchpoint-details {
  text-align: center;
}

.touchpoint-icon {
  flex: 0 0 auto;
}

.form-panel,
.contact-form,
.interactive-widget,
.faq-section,
.timeline-box {
  margin-left: auto;
  margin-right: auto;
}

.form-group,
.checkbox-group {
  text-align: left;
}

.checkbox-group {
  justify-content: center;
}

.timeline-box {
  max-width: 780px;
}

.step-content {
  text-align: left;
}

@media (max-width: 980px) {
  header,
  .header-nav {
    justify-content: center;
  }

  .header-nav {
    text-align: center;
  }
}

@media (max-width: 768px) {
  .action-footer {
    text-align: center;
  }

  .service-header,
  .journal-header {
    align-items: center;
  }

  .touchpoint-card {
    align-items: center;
  }

  .trust-strip {
    font-size: clamp(0.86rem, 3.8vw, 1rem);
    line-height: 1.45;
    letter-spacing: 0.01em;
  }
}


footer,
#site-footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

footer p,
#site-footer p {
  width: 100%;
  text-align: center;
}

.footer-nav {
  width: 100%;
  justify-content: center;
  align-items: center;
}

.services,
.deep-dive-section,
.journal-container,
.pricing-container,
.contact-wrapper,
.success-wrapper,
.proof-cta,
.stat-banner,
.trust-strip {
  margin-left: auto;
  margin-right: auto;
}

.brand-lockup {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  text-align: center;
}

.logo-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.brand-mark {
  width: 56px;
  height: 56px;
  padding: 6px;
  object-fit: contain;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.56);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.74), rgba(255, 255, 255, 0.34)),
    radial-gradient(circle at 22% 18%, rgba(255, 255, 255, 0.72), transparent 34%);
  backdrop-filter: blur(18px) saturate(1.2);
  -webkit-backdrop-filter: blur(18px) saturate(1.2);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.72),
    0 8px 16px rgba(8, 20, 40, 0.2);
  filter: drop-shadow(0 4px 12px rgba(6, 20, 40, 0.22));
}

.footer-brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-bottom: 12px;
}

.footer-brand-mark {
  width: 68px;
  height: 68px;
  padding: 8px;
  object-fit: contain;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.56);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.74), rgba(255, 255, 255, 0.34)),
    radial-gradient(circle at 22% 18%, rgba(255, 255, 255, 0.72), transparent 34%);
  backdrop-filter: blur(18px) saturate(1.2);
  -webkit-backdrop-filter: blur(18px) saturate(1.2);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.72),
    0 10px 18px rgba(8, 20, 40, 0.24);
  filter: drop-shadow(0 6px 14px rgba(6, 20, 40, 0.28));
}

.footer-brand-name {
  font-weight: 700;
  letter-spacing: 0.02em;
  color: #e2e8f0;
  margin-bottom: 2px;
}

@media (max-width: 768px) {
  .brand-mark {
    width: 46px;
    height: 46px;
  }

  .footer-brand-mark {
    width: 54px;
    height: 54px;
  }
}

/* Public image-driven layout overrides */
.hero-layout {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: clamp(16px, 3vw, 34px);
}

.hero-copy {
  text-align: left;
}

.hero-copy p {
  margin-left: 0;
}

.hero-media-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.hero-media-card {
  margin: 0;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.56);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.78), rgba(255, 255, 255, 0.42)),
    radial-gradient(circle at 22% 18%, rgba(255, 255, 255, 0.74), transparent 36%);
  backdrop-filter: blur(18px) saturate(1.2);
  -webkit-backdrop-filter: blur(18px) saturate(1.2);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.74),
    0 10px 20px rgba(8, 20, 40, 0.16);
  padding: 12px;
}

.hero-media-card img {
  width: 100%;
  height: 100%;
  max-height: 200px;
  object-fit: contain;
  display: block;
}

.hero-media-card-wide {
  grid-column: 1 / -1;
}

.brand-showcase {
  width: min(1240px, 92vw);
  margin: 16px auto 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.brand-showcase-item {
  margin: 0;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.56);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.78), rgba(255, 255, 255, 0.42)),
    radial-gradient(circle at 22% 18%, rgba(255, 255, 255, 0.74), transparent 36%);
  backdrop-filter: blur(18px) saturate(1.2);
  -webkit-backdrop-filter: blur(18px) saturate(1.2);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.74),
    0 10px 20px rgba(8, 20, 40, 0.16);
  padding: 10px;
  min-height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.brand-showcase-item img {
  width: 100%;
  max-height: 112px;
  object-fit: contain;
}

.service-thumb {
  margin: 0 0 14px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.56);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.78), rgba(255, 255, 255, 0.42)),
    radial-gradient(circle at 22% 18%, rgba(255, 255, 255, 0.74), transparent 36%);
  backdrop-filter: blur(18px) saturate(1.2);
  -webkit-backdrop-filter: blur(18px) saturate(1.2);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.74),
    0 10px 20px rgba(8, 20, 40, 0.16);
  min-height: 116px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px;
}

.service-thumb img {
  width: 100%;
  max-height: 106px;
  object-fit: contain;
}

.story-banner {
  margin: 0 0 14px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.56);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.78), rgba(255, 255, 255, 0.42)),
    radial-gradient(circle at 22% 18%, rgba(255, 255, 255, 0.74), transparent 36%);
  backdrop-filter: blur(18px) saturate(1.2);
  -webkit-backdrop-filter: blur(18px) saturate(1.2);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.74),
    0 10px 20px rgba(8, 20, 40, 0.16);
  min-height: 148px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
}

.story-banner img {
  width: 100%;
  max-height: 150px;
  object-fit: contain;
}

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

  .hero-copy {
    text-align: center;
  }

  .hero-copy p {
    margin-left: auto;
    margin-right: auto;
  }

  .brand-showcase {
    grid-template-columns: 1fr;
  }
}
