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

html {
  scroll-behavior: smooth;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  color: #1c2530;
  background: #fafaf8;
  line-height: 1.6;
}

.container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header & Navigation */
.nav {
  background: white;
  border-bottom: 1px solid #e8e8e6;
  position: sticky;
  top: 0;
  z-index: 100;
}

.nav-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 0;
}

.nav-logo {
  font-size: 20px;
  font-weight: 700;
  color: #1c2530;
  text-decoration: none;
}

/* Hero Section */
.hero {
  padding: 96px 0 110px;
  background: radial-gradient(1100px 600px at 85% 20%, #253243 0%, #1c2530 55%);
  color: white;
  overflow: hidden;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 56px;
  align-items: center;
}

.hero-content {
  max-width: 100%;
}

.hero-eyebrow {
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #7fc7a8;
  font-weight: 700;
  margin-bottom: 20px;
}

.hero h1 {
  font-size: clamp(40px, 6.5vw, 72px);
  line-height: 1.04;
  margin-bottom: 24px;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.hero h1 .accent {
  color: #7fc7a8;
}

.hero-lead {
  font-size: 19px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 28px;
  max-width: 480px;
}

.hero-checklist {
  list-style: none;
  margin-bottom: 36px;
}

.hero-checklist li {
  position: relative;
  padding-left: 34px;
  margin-bottom: 12px;
  font-size: 16px;
  color: rgba(255, 255, 255, 0.92);
  font-weight: 500;
}

.hero-checklist li::before {
  content: "";
  position: absolute;
  left: 4px;
  top: 3px;
  width: 7px;
  height: 13px;
  border-right: 3px solid #7fc7a8;
  border-bottom: 3px solid #7fc7a8;
  transform: rotate(42deg);
}

.hero-cta {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-start;
}

.btn-big {
  font-size: 19px;
  padding: 18px 52px;
  border-radius: 10px;
}

.cta-micro {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
}

/* Brick wall animation */
.hero-wall {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 130px;
}

.sic-slot {
  position: absolute;
  top: 0;
  right: 12%;
  width: 150px;
  opacity: 0;
  animation: brickIn 0.6s ease-out 1.75s forwards;
}

.sic-slot img {
  width: 100%;
  height: auto;
  display: block;
}

.wall {
  width: 100%;
  max-width: 420px;
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.wall-row {
  display: flex;
  gap: 7px;
}

.wall-row:nth-child(even) {
  transform: translateX(-18px);
}

.brick {
  height: 46px;
  flex: 1;
  min-width: 56px;
  background: #2c3b4d;
  border-radius: 7px;
  box-shadow: inset 0 -3px 0 rgba(0, 0, 0, 0.22);
  opacity: 0;
  animation: brickIn 0.45s ease-out forwards;
  animation-delay: var(--d, 0s);
}

.brick--word {
  flex: none;
  background: #2d7a5c;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
  padding: 0 18px;
  letter-spacing: 0.01em;
  box-shadow: inset 0 -3px 0 rgba(0, 0, 0, 0.28);
}

@keyframes brickIn {
  from {
    opacity: 0;
    transform: translateY(-16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .brick,
  .sic-slot {
    animation: none;
    opacity: 1;
  }
}

/* Nav CTA */
.nav-cta {
  background: #2d7a5c;
  color: white;
  padding: 9px 20px;
  border-radius: 7px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.2s ease;
}

.nav-cta:hover {
  background: #1e5540;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 16px 36px;
  border-radius: 6px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  border: none;
  cursor: pointer;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.btn-primary {
  background: #2d7a5c;
  color: white;
}

.btn-primary:hover {
  background: #1e5540;
  box-shadow: 0 4px 12px rgba(45, 122, 92, 0.3);
  transform: translateY(-2px);
}

.btn-secondary {
  background: white;
  color: #1c2530;
  border: 2px solid #1c2530;
}

.btn-secondary:hover {
  background: #f5f5f5;
}

/* Sections */
section {
  padding: 100px 0;
}

section h2 {
  font-size: 40px;
  margin-bottom: 60px;
  text-align: center;
  color: #1c2530;
  font-weight: 700;
  letter-spacing: -0.5px;
}

/* Pain Scene Section */
.pain-scene {
  background: white;
}

.scene-items {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  max-width: 900px;
  margin: 0 auto;
}

.scene-item {
  text-align: center;
}

.scene-icon {
  display: flex;
  justify-content: center;
  margin-bottom: 24px;
  width: 100%;
  height: 80px;
  align-items: center;
}

.scene-icon svg {
  width: 100%;
  max-width: 60px;
  height: auto;
}

.scene-item p {
  font-size: 15px;
  color: #555555;
  line-height: 1.6;
  font-weight: 500;
}

/* Solution Section */
.solution {
  background: #f9f5f0;
}

.section-intro {
  text-align: center;
  font-size: 16px;
  color: #555555;
  line-height: 1.6;
  max-width: 700px;
  margin: 0 auto 60px;
}

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

.step {
  text-align: center;
}

.step-number {
  display: inline-flex;
  width: 56px;
  height: 56px;
  background: #2d7a5c;
  color: white;
  border-radius: 50%;
  font-size: 28px;
  font-weight: 700;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  box-shadow: 0 4px 12px rgba(45, 122, 92, 0.2);
}

.step h3 {
  font-size: 20px;
  margin-bottom: 16px;
  color: #1c2530;
  font-weight: 700;
}

.step p {
  color: #666666;
  font-size: 15px;
  line-height: 1.7;
}

/* Who It's For Section */
.who-its-for {
  background: white;
}

.industries {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 36px;
}

.industry-card {
  background: #f9f5f0;
  padding: 48px 36px;
  border-radius: 12px;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.05);
}

.industry-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

.industry-icon {
  display: flex;
  justify-content: center;
  margin-bottom: 24px;
  width: 100%;
  height: 70px;
  align-items: center;
}

.industry-icon svg {
  width: 100%;
  max-width: 56px;
  height: auto;
}

.industry-card p {
  font-size: 16px;
  color: #1c2530;
  font-weight: 600;
  line-height: 1.5;
}

/* Trust Section */
.trust {
  background: #2d7a5c;
  color: white;
  padding: 80px 0;
}

.trust-kicker {
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
  max-width: 700px;
  margin: 0 auto 20px;
}

.trust-text {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.95);
  line-height: 1.8;
  max-width: 700px;
  margin: 0 auto 16px;
  font-weight: 400;
}

.trust-note {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.75);
  max-width: 700px;
  margin: 12px auto 0;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.25);
}

/* Pricing Section */
.pricing {
  background: white;
}

.price-box {
  background: #1c2530;
  color: white;
  padding: 60px 48px;
  border-radius: 12px;
  text-align: center;
  max-width: 500px;
  margin: 0 auto;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.price-amount {
  font-size: 64px;
  font-weight: 700;
  margin-bottom: 12px;
  letter-spacing: -1px;
}

.price-note {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 28px;
  font-weight: 500;
}

.price-description {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.7;
}

/* Contact Form Section */
.contact {
  background: white;
}

.interest-form {
  max-width: 600px;
  margin: 0 auto;
  background: #f9f5f0;
  padding: 48px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

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

.form-group label {
  display: block;
  font-weight: 600;
  margin-bottom: 10px;
  color: #1c2530;
  font-size: 15px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  border: 2px solid #d0d0d0;
  border-radius: 6px;
  font-size: 15px;
  font-family: inherit;
  color: #1c2530;
  transition: all 0.2s ease;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #999999;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #2d7a5c;
  box-shadow: 0 0 0 4px rgba(45, 122, 92, 0.1);
  background: white;
}

.form-note {
  text-align: center;
}

/* FAQ Section */
.faq {
  background: #f9f5f0;
}

.faq-item {
  margin-bottom: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid #e8e8e6;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.faq-item:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.faq-item h3 {
  font-size: 18px;
  margin-bottom: 16px;
  color: #1c2530;
  font-weight: 700;
}

.faq-item p {
  color: #666666;
  line-height: 1.7;
  font-size: 15px;
}

/* Footer */
.footer {
  background: #1c2530;
  color: white;
  padding: 60px 0 20px;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
}

.footer-logo {
  font-size: 18px;
  font-weight: 700;
  display: block;
  margin-bottom: 8px;
}

.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-nav a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-nav a:hover {
  color: white;
}

.footer-legal {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-legal a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-legal a:hover {
  color: white;
}

.footer-copy {
  text-align: center;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
}

/* Responsive */
@media (max-width: 768px) {
  .hero {
    padding: 60px 0;
  }

  .hero-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .hero-lead {
    font-size: 17px;
  }

  .hero-wall {
    padding-top: 110px;
  }

  .sic-slot {
    width: 120px;
    right: 8%;
  }

  .wall {
    max-width: 380px;
  }

  .brick {
    height: 40px;
    min-width: 44px;
  }

  .brick--word {
    font-size: 13px;
    padding: 0 14px;
  }

  section {
    padding: 70px 0;
  }

  section h2 {
    font-size: 32px;
    margin-bottom: 48px;
  }

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

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

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

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

  .interest-form {
    padding: 36px;
  }

  .price-box {
    padding: 44px 32px;
  }

  .price-amount {
    font-size: 48px;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }

  .hero {
    padding: 50px 0;
  }

  .hero h1 {
    font-size: 36px;
    margin-bottom: 20px;
  }

  .hero-lead {
    font-size: 15px;
    margin-bottom: 24px;
  }

  .hero-cta {
    align-items: stretch;
  }

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

  .hero-checklist li {
    font-size: 14px;
  }

  .sic-slot {
    width: 100px;
    right: 6%;
  }

  .hero-wall {
    padding-top: 92px;
  }

  .brick {
    height: 34px;
    min-width: 36px;
  }

  .brick--word {
    font-size: 12px;
    padding: 0 10px;
  }

  .wall-row:nth-child(even) {
    transform: translateX(-12px);
  }

  section {
    padding: 50px 0;
  }

  section h2 {
    font-size: 24px;
    margin-bottom: 36px;
  }

  .scene-items {
    grid-template-columns: 1fr;
  }

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

  .step-number {
    width: 48px;
    height: 48px;
    font-size: 24px;
  }

  .btn {
    width: 100%;
    padding: 14px 24px;
  }

  .interest-form {
    padding: 24px;
  }

  .price-box {
    padding: 32px 24px;
  }

  .price-amount {
    font-size: 40px;
  }

  .trust-text {
    font-size: 15px;
    line-height: 1.7;
  }
}