/* Base layout & theme */
:root {
  --bg: #000000;
  --bg-alt: #0a0a0a;
  --bg-elevated: #111111;
  --accent: #ffcb00;
  --accent-soft: rgba(255, 203, 0, 0.12);
  --accent-strong: rgba(255, 203, 0, 0.3);
  --text: #ffffff;
  --text-soft: #a0a0a0;
  --border-subtle: rgba(255, 255, 255, 0.15);
  --danger: #f97373;
  --radius-lg: 18px;
  --radius-md: 10px;
  --shadow-soft: 0 18px 60px rgba(0, 0, 0, 0.75);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  background: radial-gradient(circle at top, #1a1a1a 0, #0a0a0a 40%, #000000 100%);
  color: var(--text);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  width: 100%;
  max-width: 100vw;
  box-sizing: border-box;
}

.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

a {
  color: inherit;
  text-decoration: none;
}

p {
  margin: 0 0 0.75rem;
  line-height: 1.7;
}

h1,
h2,
h3,
h4 {
  margin: 0 0 0.6rem;
  font-weight: 600;
  letter-spacing: -0.02em;
}

h1 {
  font-size: clamp(2.6rem, 4vw, 3rem);
}

h2 {
  font-size: clamp(2rem, 3vw, 2.35rem);
}

h3 {
  font-size: 1.25rem;
}

.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section {
  padding: 4.5rem 0;
}

.section--alt {
  background: radial-gradient(circle at top left, #1a1a1a 0, #0a0a0a 55%);
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
}

.section--highlight {
  background: linear-gradient(135deg, #1a1a1a, #0f0f0f);
}

.section-header {
  margin-bottom: 2rem;
}

.section-header p {
  max-width: 620px;
  color: var(--text-soft);
}

.section-header--services p {
  margin: 0;
}

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

.section-header--center p {
  margin: 0.5rem auto 0;
}

.grid {
  display: grid;
  gap: 1.75rem;
}

.grid--2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.grid--3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

@media (max-width: 900px) {
  .grid--2,
  .grid--3 {
    grid-template-columns: minmax(0, 1fr);
  }
}

.card {
  background: radial-gradient(circle at top, #1a1a1a 0, #0a0a0a 60%);
  border-radius: var(--radius-lg);
  padding: 1.6rem 1.4rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.7);
  position: relative;
  overflow: hidden;
}

.card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at top right,
    rgba(255, 255, 255, 0.08),
    transparent 55%
  );
  opacity: 0.4;
  pointer-events: none;
}

.card--service h3 {
  margin-bottom: 0.4rem;
}

.card--service p {
  color: var(--text-soft);
  margin: 0;
}

/* Services page */
.services-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.service-item {
  display: flex;
  gap: 2rem;
  align-items: flex-start;
  padding: 3rem 0;
}

.service-divider {
  height: 1px;
  background: var(--border-subtle);
  margin: 0;
  border: none;
}

.service-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  color: var(--text-soft);
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-icon svg {
  width: 100%;
  height: 100%;
}

.service-content {
  flex: 1;
}

.service-content h2 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: var(--text);
}

.service-content > p {
  color: var(--text-soft);
  margin-bottom: 1rem;
  line-height: 1.6;
}

.service-content .list-tight {
  margin-top: 0.5rem;
}

@media (max-width: 768px) {
  .service-item {
    flex-direction: column;
    gap: 1rem;
    padding: 2.5rem 0;
  }
  
  .service-icon {
    width: 40px;
    height: 40px;
  }
}

.numbered-list,
.checklist {
  margin: 1rem 0 0;
  padding-left: 1.1rem;
  color: var(--text-soft);
}

.numbered-list li + li,
.checklist li + li {
  margin-top: 0.45rem;
}

/* Persona section */
.persona-grid {
  gap: 4rem;
  margin-top: 3rem;
  align-items: start;
}

.persona {
  padding: 0;
  display: flex;
  flex-direction: column;
}

.persona h3 {
  font-size: clamp(1.5rem, 2.5vw, 1.8rem);
  margin-bottom: 0.75rem;
  font-weight: 700;
}

.persona > p {
  font-size: 1.1rem;
  color: var(--text-soft);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.persona-items {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-top: 0;
}

.persona-item {
  font-size: 1rem;
  line-height: 1.5;
  color: var(--text);
  padding: 0.4rem 0;
  position: relative;
  padding-left: 1.5rem;
  min-height: 1.5rem;
  display: flex;
  align-items: center;
}

.persona-item::before {
  content: '•';
  position: absolute;
  left: 0;
  color: rgba(255, 255, 255, 0.6);
  font-weight: 400;
  font-size: 1.2rem;
  line-height: 1;
}

@media (max-width: 900px) {
  .persona-grid {
    gap: 3rem;
  }
}

/* Header & nav */
.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(18px);
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.95),
    rgba(0, 0, 0, 0.7),
    transparent
  );
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.9rem 0;
}

.site-header .container {
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}

.logo-img {
  height: 40px;
  width: auto;
  display: block;
}

.logo-text {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.02em;
}

.footer-logo .logo-img {
  height: 36px;
}

.footer-logo .logo-text {
  font-size: 1rem;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.4rem;
  font-size: 0.92rem;
}

.site-nav a {
  color: var(--text-soft);
  position: relative;
  padding-bottom: 0.05rem;
}

.site-nav a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -0.3rem;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: width 0.2s ease;
}

.site-nav a:hover::after {
  width: 100%;
}

.site-nav a.nav-link--active {
  color: var(--text);
}

.site-nav a.nav-link--active::after {
  width: 100%;
}

.site-nav a.nav-link--blog.nav-link--active {
  background: var(--accent);
}

.site-nav a.nav-link--blog.nav-link--active::after {
  display: none;
}

.site-nav a.nav-link--blog {
  padding: 0.3rem 0.9rem;
  border-radius: 999px;
  background: #9E9E9E;
  color: #000000;
  font-weight: 600;
}

.site-nav a.nav-link--blog::after {
  display: none;
}

.btn--nav {
  padding: 0.45rem 0.9rem;
  border-radius: 999px;
  border: none;
  font-weight: 700;
  color: #000000 !important;
  background: var(--accent);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
}

.nav-toggle {
  display: none;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: rgba(0, 0, 0, 0.9);
  align-items: center;
  justify-content: center;
  gap: 4px;
  flex-direction: column;
  padding: 0;
}

.nav-toggle span {
  width: 15px;
  height: 2px;
  border-radius: 999px;
  background: #ffffff;
}

@media (max-width: 768px) {
  .site-header .container {
    padding-left: 1rem;
    padding-right: 1rem;
  }
  
  .header-inner {
    padding-top: 1.25rem;
    padding-bottom: 1.25rem;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .site-nav {
    position: fixed;
    inset-inline: 1rem;
    top: 60px;
    background: rgba(0, 0, 0, 0.98);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: var(--shadow-soft);
    padding: 0.9rem 1rem;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.85rem;
    transform-origin: top;
    transform: scaleY(0.9);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.18s ease, transform 0.18s ease;
  }

  .site-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: scaleY(1);
  }
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  padding: 0.7rem 1.35rem;
  border-radius: 999px;
  box-sizing: border-box;
  border: 1px solid transparent;
  font-size: 0.95rem;
  font-weight: 500;
  cursor: pointer;
  background: none;
  color: inherit;
  transition: transform 0.1s ease, box-shadow 0.1s ease, background 0.15s ease,
    border-color 0.15s ease;
}

.form .btn {
  width: 100%;
  max-width: 100%;
}

.btn--primary {
  background: var(--accent);
  border: none;
  color: #000000;
  font-weight: 700;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.7);
}

.btn--primary:hover:not(:disabled) {
  transform: translateY(-1px);
  box-shadow: 0 22px 55px rgba(0, 0, 0, 0.9);
}

.btn:disabled,
.btn--primary:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  pointer-events: none;
}

.btn--ghost {
  border: none;
  background: rgba(255, 255, 255, 0.06);
  color: var(--text);
  font-weight: 600;
}

.btn--ghost:hover:not(:disabled) {
  background: rgba(255, 255, 255, 0.12);
}

.section-cta {
  margin-top: 2.2rem;
}

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

.inline-link {
  display: inline-flex;
  align-items: center;
  gap: 0.2rem;
  font-size: 0.92rem;
  color: var(--text);
  text-decoration: underline;
  text-decoration-color: rgba(255, 255, 255, 0.4);
}

/* Hero */
.hero {
  padding-top: 5rem;
  padding-bottom: 4rem;
  min-height: calc(100vh - 100px);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: 
    radial-gradient(circle, rgba(255, 255, 255, 0.15) 1.5px, transparent 1.5px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 50px 50px, 50px 50px, 50px 50px;
  background-position: 0 0, 0 0, 0 0;
  pointer-events: none;
  z-index: 0;
  mask-image: linear-gradient(to left, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0.9) 20%, rgba(0, 0, 0, 0.6) 40%, rgba(0, 0, 0, 0.3) 60%, rgba(0, 0, 0, 0) 85%);
  -webkit-mask-image: linear-gradient(to left, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0.9) 20%, rgba(0, 0, 0, 0.6) 40%, rgba(0, 0, 0, 0.3) 60%, rgba(0, 0, 0, 0) 85%);
}

.hero-container {
  width: 100%;
  max-width: 900px;
  position: relative;
  z-index: 1;
}

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

.hero-title {
  font-size: clamp(3rem, 6vw, 4.5rem);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  letter-spacing: -0.03em;
}

.hero-subtitle {
  color: var(--text-soft);
  font-size: clamp(1.1rem, 2vw, 1.3rem);
  max-width: 680px;
  margin: 0 auto 2.5rem;
  line-height: 1.6;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin: 0 auto 3.5rem;
  justify-content: center;
}

.hero-stats {
  display: flex;
  gap: 3rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 3rem;
  padding-top: 3rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

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

.hero-stat-value {
  display: block;
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 0.3rem;
}

.hero-stat-label {
  display: block;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--text-soft);
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 0.72rem;
  color: var(--text-soft);
  margin-bottom: 0.7rem;
}

/* Hero decorative elements */
.hero-decorative {
  position: absolute;
  pointer-events: none;
  z-index: 0;
  opacity: 0.4;
}

.hero-decorative--1 {
  width: 300px;
  height: 300px;
  top: 10%;
  right: 5%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(40px);
}

.hero-decorative--2 {
  width: 200px;
  height: 200px;
  bottom: 15%;
  right: 15%;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.06) 0%, transparent 100%);
  border-radius: 20px;
  transform: rotate(45deg);
  filter: blur(30px);
}

.hero-decorative--3 {
  width: 150px;
  height: 150px;
  top: 50%;
  left: 8%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.05) 0%, transparent 70%);
  border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  filter: blur(25px);
  animation: float 8s ease-in-out infinite;
}

@keyframes float {
  0%, 100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-20px) rotate(5deg);
  }
}

/* Floating icons */
.hero-floating-icon {
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  color: var(--text-soft);
  opacity: 0.6;
  pointer-events: none;
  z-index: 2;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.hero-floating-icon svg {
  width: 24px;
  height: 24px;
  color: inherit;
}

.hero-floating-icon span {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: inherit;
}

.hero:hover .hero-floating-icon {
  pointer-events: auto;
}

.hero:hover .hero-floating-icon:nth-child(4) {
  transform: translate(3px, -2px);
}

.hero:hover .hero-floating-icon:nth-child(5) {
  transform: translate(-2px, 3px);
}

.hero:hover .hero-floating-icon:nth-child(6) {
  transform: translate(2px, -3px);
}

.hero:hover .hero-floating-icon:nth-child(7) {
  transform: translate(-3px, 2px);
}

.hero:hover .hero-floating-icon:nth-child(8) {
  transform: translate(2px, 2px);
}

.hero:hover .hero-floating-icon:nth-child(9) {
  transform: translate(-2px, -2px);
}

.hero:hover .hero-floating-icon:nth-child(10) {
  transform: translate(3px, 3px);
}

.hero:hover .hero-floating-icon:nth-child(11) {
  transform: translate(-3px, -3px);
}

.hero:hover .hero-floating-icon:nth-child(12) {
  transform: translate(2px, -2px);
}

@media (max-width: 768px) {
  .hero-floating-icon {
    opacity: 0.3;
    font-size: 0.7rem;
  }
  
  .hero-floating-icon svg {
    width: 20px;
    height: 20px;
  }
}

@media (max-width: 768px) {
  .hero {
    padding-top: 3rem;
    padding-bottom: 3rem;
    min-height: calc(100vh - 100px);
  }

  .hero-stats {
    gap: 2rem;
    padding-top: 2rem;
  }

  .hero-stat-value {
    font-size: 1.8rem;
  }

  .hero-decorative--1,
  .hero-decorative--2,
  .hero-decorative--3 {
    opacity: 0.2;
  }
}

/* Logos / social proof */
/* Why Choose Section */
.why-choose-grid {
  gap: 4rem;
  margin-top: 3rem;
}

.why-choose-step h3,
.why-choose-partnership h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 2rem;
}

.step-list {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.step-item {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}

.step-number {
  font-size: 3rem;
  font-weight: 700;
  line-height: 1;
  color: var(--text);
  flex-shrink: 0;
  min-width: 60px;
}

.step-content {
  flex: 1;
}

.step-content strong {
  display: block;
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--text);
}

.step-content p {
  color: var(--text-soft);
  margin: 0;
  line-height: 1.6;
}

.why-choose-partnership {
  display: flex;
  flex-direction: column;
}

.partnership-icon {
  width: 150px;
  height: auto;
  margin-top: 2rem;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.partnership-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: 0.9;
}

.partnership-list {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.partnership-list li {
  color: var(--text-soft);
  padding-left: 1.5rem;
  position: relative;
  line-height: 1.6;
}

.partnership-list li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--text-soft);
  font-size: 1.2rem;
}

@media (max-width: 900px) {
  .why-choose-grid {
    gap: 3rem;
  }
  
  .step-number {
    font-size: 2.5rem;
    min-width: 50px;
  }
}

/* Founders Experience */
.founders-experience {
  margin-top: 4rem;
  padding-top: 3rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.founders-experience-title {
  text-align: center;
  font-size: 0.9rem;
  font-weight: 500;
  margin-bottom: 2rem;
  color: var(--text);
  text-transform: uppercase;
  letter-spacing: 0.15em;
}

.founders-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8rem;
  flex-wrap: wrap;
}

.founders-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.7;
  transition: opacity 0.3s ease;
}

.founders-logo:hover {
  opacity: 1;
}

.founders-logo img {
  height: 70px;
  width: auto;
  max-width: 300px;
  filter: brightness(0) invert(1);
  opacity: 0.6;
}

.founders-logo:hover img {
  opacity: 0.9;
}

@media (max-width: 768px) {
  .founders-logos {
    gap: 4rem;
  }
  
  .founders-logo img {
    height: 50px;
    max-width: 200px;
  }
}

/* Highlight section */
.highlight-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.8rem;
}

.highlight-inner p {
  color: var(--text-soft);
  max-width: 520px;
}

.highlight-actions {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  width: 150px;
}

@media (max-width: 800px) {
  .highlight-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .highlight-actions {
    width: 100%;
  }

  .highlight-actions .btn {
    width: 100%;
    justify-content: center;
  }
}

/* Footer */
.site-footer {
  margin-top: auto;
  padding: 2.8rem 0 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(0, 0, 0, 0.98);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 3rem;
  align-items: flex-start;
  margin-bottom: 1.8rem;
}

.footer-logo {
  margin-bottom: 0.75rem;
}

.footer-tagline {
  max-width: 320px;
  color: var(--text-soft);
  font-size: 0.9rem;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
  font-size: 0.9rem;
}

.footer-links > div {
  display: flex;
  flex-direction: column;
}

.footer-links h3 {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text);
  margin-bottom: 1rem;
}

.footer-links a {
  display: block;
  margin-top: 0.75rem;
  color: var(--text-soft);
  text-decoration: none;
  transition: color 0.2s ease, text-decoration 0.2s ease;
}

.footer-links a:hover {
  color: var(--text);
  text-decoration: underline;
}

.footer-social {
  display: flex;
  gap: 1rem;
  margin-top: 1.5rem;
  flex-wrap: wrap;
}

.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  margin-top: 0;
  transition: opacity 0.2s ease;
}

.footer-social a:hover {
  text-decoration: none;
  opacity: 0.8;
}

.footer-social img {
  width: 24px;
  height: 24px;
  filter: brightness(0) invert(1);
  opacity: 0.7;
}

.footer-social a:hover img {
  opacity: 1;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 0.9rem;
  font-size: 0.8rem;
  color: var(--text-soft);
}

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

  .footer-links {
    display: flex;
    flex-direction: column;
    gap: 2rem;
  }
}

/* Page utilities */
.page-hero {
  padding: 3.5rem 0 2.5rem;
}

.page-hero h1 {
  margin-bottom: 0.3rem;
}

.page-hero p {
  color: var(--text-soft);
  max-width: 600px;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  margin-top: 0.7rem;
  padding: 0.5rem 1rem;
  border-radius: 999px;
  border: none;
  font-size: 0.78rem;
  font-weight: 600;
  background: #673AB7;
  color: #ffffff;
}

.pill-dot {
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: #22c55e;
}

.badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: #22c55e;
}

.two-col {
  display: grid;
  grid-template-columns: minmax(0, 1.7fr) minmax(0, 1.3fr);
  gap: 2.4rem;
}

@media (max-width: 900px) {
  .two-col {
    grid-template-columns: minmax(0, 1fr);
  }
}

.list-tight {
  margin: 0.6rem 0 0;
  padding-left: 1.1rem;
  color: var(--text-soft);
}

.list-tight li + li {
  margin-top: 0.3rem;
}

/* Forms */
.form {
  display: grid;
  gap: 0.9rem;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}

.field label {
  font-size: 0.86rem;
  color: var(--text-soft);
}

.field input,
.field textarea,
.field select {
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  background: rgba(0, 0, 0, 0.95);
  color: var(--text);
  padding: 0.6rem 0.75rem;
  font-family: inherit;
  font-size: 0.94rem;
}

.field select {
  padding-right: 2.5rem;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23ffffff' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.75rem center;
  background-size: 12px;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

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

.helper-text {
  font-size: 0.8rem;
  color: var(--text-soft);
}

.form-row {
  display: flex;
  gap: 0.9rem;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}

.form-row > * {
  flex: 1;
  min-width: 0;
  max-width: 100%;
  box-sizing: border-box;
}

@media (max-width: 768px) {
  .container {
    padding: 1rem;
  }
  
  .form-row {
    flex-direction: column;
  }
  
  .form {
    gap: 1.2rem;
  }
  
  .field {
    min-width: 0;
  }
  
  .field input,
  .field textarea,
  .field select {
    font-size: 16px; /* Prevents zoom on iOS */
    padding: 0.75rem;
    min-width: 0;
    width: 100%;
  }
  
  .field select {
    padding-right: 2.5rem;
    background-position: right 0.75rem center;
  }
  
  .field label {
    word-wrap: break-word;
    overflow-wrap: break-word;
  }
  
  .field label span {
    word-wrap: break-word;
    overflow-wrap: break-word;
  }
  
  .form-message {
    font-size: 0.85rem;
    padding: 0.875rem;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }
  
  .btn {
    width: 100%;
    max-width: 100%;
    word-wrap: break-word;
    white-space: normal;
    box-sizing: border-box;
  }
  
  .section {
    padding: 3rem 0;
  }
  
  .page-hero {
    display: none;
  }
  
  .two-col {
    gap: 2rem;
  }
  
  .faq-item {
    padding: 0.875rem 0;
  }
  
  .faq-item h3 {
    font-size: 0.95rem;
  }
  
  .mobile-only-link {
    display: block;
    margin-top: 1rem;
  }
  
  .mobile-only-link a {
    color: var(--accent);
    text-decoration: none;
    font-weight: 600;
    transition: opacity 0.2s ease;
  }
  
  .mobile-only-link a:hover {
    opacity: 0.8;
  }
}

.mobile-only-link {
  display: none;
}

/* Checkbox styling */
.field label input[type="checkbox"] {
  width: auto;
  margin-right: 0.5rem;
  cursor: pointer;
}

.field label {
  display: flex;
  align-items: center;
  cursor: pointer;
  word-wrap: break-word;
  overflow-wrap: break-word;
  width: 100%;
  max-width: 100%;
}

/* Quote display */
.quote-display {
  margin: 2rem 0;
  padding: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-lg);
  background: radial-gradient(circle at top left, rgba(255, 255, 255, 0.05) 0%, transparent 60%);
  position: relative;
  overflow: hidden;
}

.quote-display::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0%, transparent 40%, rgba(255, 255, 255, 0.03) 100%);
  pointer-events: none;
  z-index: 0;
}

.quote-display h3 {
  position: relative;
  z-index: 1;
  margin-bottom: 1.5rem;
  font-size: 1.5rem;
}

.quote-box {
  position: relative;
  z-index: 1;
  padding: 1.5rem;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.quote-box--consulting {
  border-color: var(--accent);
  background: rgba(255, 203, 0, 0.08);
}

.quote-box--static {
  border-color: rgba(255, 255, 255, 0.2);
}

.quote-amount {
  font-size: 3rem;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.quote-label {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 1rem;
}

.quote-description {
  color: var(--text-soft);
  margin: 0;
  line-height: 1.6;
}

.quote-description strong {
  color: var(--text);
  font-weight: 600;
}

/* Form states */
.form.sending button {
  opacity: 0.7;
  cursor: not-allowed;
  position: relative;
}

.form.sending button::after {
  content: '';
  position: absolute;
  width: 16px;
  height: 16px;
  margin: auto;
  border: 2px solid transparent;
  border-top-color: currentColor;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
}

@keyframes spin {
  to { transform: translateY(-50%) rotate(360deg); }
}

.form.success button {
  background: #22c55e;
  color: #000000;
}

.form.error button {
  background: var(--danger);
  color: #ffffff;
}

.form-message {
  padding: 1rem;
  border-radius: var(--radius-md);
  margin-bottom: 1rem;
  font-size: 0.9rem;
  line-height: 1.5;
}

.form-message--success {
  background: rgba(34, 197, 94, 0.15);
  border: 1px solid rgba(34, 197, 94, 0.3);
  color: #22c55e;
}

.form-message--error {
  background: rgba(249, 115, 115, 0.15);
  border: 1px solid rgba(249, 115, 115, 0.3);
  color: var(--danger);
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.5rem 1rem;
  border-radius: 999px;
  background: var(--accent);
  border: none;
  font-size: 0.78rem;
  font-weight: 600;
  color: #000000;
}

.faq {
  margin-top: 1.8rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.faq-item {
  padding: 1rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.faq-item h3 {
  font-size: 1rem;
}

.faq-item p {
  color: var(--text-soft);
}

/* Blog styles */
#blog-posts {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.blog-card {
  display: flex;
  flex-direction: column;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  overflow: hidden;
}

.blog-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.8);
}

/* Featured post - full width, no thumbnail, big bold title */
.blog-featured {
  width: 100%;
  margin-bottom: 2rem;
}

.blog-card--featured {
  padding: 0 !important;
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  border-radius: 0 !important;
}

.blog-card--featured::before {
  display: none !important;
}

.blog-card--featured:hover {
  transform: none;
  box-shadow: none;
}

.blog-title-featured {
  font-size: clamp(2.4rem, 14vw, 6rem) !important;
  font-weight: 700 !important;
  line-height: 1.05 !important;
  margin-bottom: 2rem !important;
  overflow-wrap: anywhere;
}

.blog-title-featured a {
  color: var(--text);
  text-decoration: none;
  transition: color 0.2s ease;
}

.blog-title-featured a:hover {
  color: var(--accent);
}

.blog-description-featured {
  font-size: 1.25rem;
  line-height: 1.7;
  color: var(--text-soft);
  margin-bottom: 2rem;
  max-width: 800px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Row of 3 posts with thumbnails */
.blog-row {
  margin-bottom: 2rem;
}

/* Mixed layout: 3 stacked posts + 1 with thumbnail */
.blog-mixed {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
  align-items: stretch;
}

.blog-stacked {
  display: flex;
  flex-direction: column;
  gap: 3rem;
  background: transparent;
  border: none;
  border-radius: 0;
  overflow: visible;
  height: 100%;
  justify-content: space-between;
}

.blog-stacked .blog-card {
  padding: 0 0 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 0;
  margin: 0;
  background: transparent !important;
  border-left: none;
  border-right: none;
  border-top: none;
  box-shadow: none !important;
}

.blog-stacked .blog-card::before {
  display: none !important;
}

.blog-stacked .blog-card:last-child {
  border-bottom: none;
}

.blog-stacked .blog-card:hover {
  transform: none;
  box-shadow: none;
}

.blog-stacked .blog-card h2 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.blog-stacked .blog-card p {
  display: none;
}

.blog-single {
  display: flex;
}

/* Remaining posts in 2 columns */
.blog-remaining {
  margin-top: 2rem;
}

.blog-thumbnail {
  width: calc(100% + 2.8rem);
  height: 200px;
  overflow: hidden;
  margin: -1.6rem -1.4rem 1rem -1.4rem;
  background: var(--bg-elevated);
  display: block;
  position: relative;
}

.blog-thumbnail a {
  display: block;
  width: 100%;
  height: 100%;
}

.blog-thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}

.blog-card:hover .blog-thumbnail img {
  transform: scale(1.05);
}

.blog-card-content {
  display: flex;
  flex-direction: column;
  flex: 1;
}

.blog-card-header {
  margin-bottom: 0.75rem;
}

.blog-date {
  font-size: 0.8rem;
  color: var(--text-soft);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.blog-card h2 {
  margin-bottom: 0.75rem;
  font-size: 1.5rem;
}

.blog-card--featured .blog-title-featured,
.blog-card .blog-title-featured {
  margin-bottom: 2rem !important;
}

.blog-card h2 a {
  color: var(--text);
  text-decoration: none;
  transition: color 0.2s ease;
}

.blog-card h2 a:hover {
  color: var(--accent);
}

.blog-card p {
  color: var(--text-soft);
  margin-bottom: 1rem;
  line-height: 1.6;
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.blog-read-more {
  display: inline-flex;
  align-items: center;
  color: #76cbc3;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  margin-top: auto;
  transition: opacity 0.2s ease;
}

.blog-read-more:hover {
  opacity: 0.8;
}

.blog-loading,
.blog-error {
  text-align: center;
  padding: 3rem;
  color: var(--text-soft);
}

.blog-medium-link {
  text-align: center;
  padding: 3rem 0 1rem;
  margin-top: 2rem;
}

.blog-medium-link .btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .blog-title-featured {
    font-size: 3rem;
  }
  
  .blog-description-featured {
    font-size: 1.1rem;
  }
  
  .blog-mixed {
    grid-template-columns: 1fr;
  }
  
  .blog-row {
    grid-template-columns: 1fr;
  }
  
  .blog-remaining {
    grid-template-columns: 1fr;
  }
}

/* Responsive adjustments */

.blog-error a {
  color: var(--accent);
  text-decoration: none;
}

.blog-error a:hover {
  text-decoration: underline;
}



