/* Florida Surface Protection — Brand Styles (Medium Rich Blue palette) */
:root {
  --blue: #0066CC;          /* Medium Rich Blue - primary */
  --blue-dark: #004d99;
  --blue-light: #3399FF;
  --yellow: #F4C430;        /* Sun yellow */
  --teal: #0D9488;          /* Tagline / accent */
  --navy: #0B1C2C;
  --white: #ffffff;
  --off-white: #F8FAFC;
  --gray-100: #F1F5F9;
  --gray-200: #E2E8F0;
  --gray-600: #475569;
  --gray-800: #1E293B;
  --shadow: 0 10px 30px rgba(0, 102, 204, 0.08);
  --radius: 12px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 160px;
}

.section,
#top,
#cycle,
#system,
#how-it-works,
#solutions,
#success,
#founding,
#founders,
#contact {
  scroll-margin-top: 160px;
}

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  color: var(--gray-800);
  line-height: 1.6;
  background: var(--white);
}

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

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

.container {
  width: min(1120px, 92%);
  margin: 0 auto;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--gray-200);
}

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

.logo {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.logo-img {
  height: 120px;
  width: auto;
  object-fit: contain;
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.logo-text .brand {
  font-weight: 800;
  font-size: 1.15rem;
  color: var(--blue);
  letter-spacing: -0.02em;
}

.logo-text .tagline {
  font-size: 0.72rem;
  color: var(--teal);
  font-weight: 600;
  letter-spacing: 0.01em;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 1.75rem;
}

.main-nav a {
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--gray-800);
  transition: color 0.2s;
}

.main-nav a:hover {
  color: var(--blue);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.65rem 1.25rem;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.2s;
  border: none;
  cursor: pointer;
}

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

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

.main-nav a.btn,
.main-nav a.btn-primary {
  color: #ffffff;
}

.main-nav a.btn-primary:hover {
  color: #ffffff;
}

.btn-secondary {
  background: transparent;
  color: var(--blue);
  border: 2px solid var(--blue);
}

.btn-secondary:hover {
  background: var(--blue);
  color: white;
}

.btn-lg {
  padding: 0.9rem 1.75rem;
  font-size: 1rem;
}

.mobile-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--blue);
}

/* Hero */
.hero {
  background: linear-gradient(135deg, #F0F7FF 0%, #FFFFFF 60%);
  padding: 4.5rem 0 5rem;
  text-align: center;
}

.hero .eyebrow {
  display: inline-block;
  background: rgba(0, 102, 204, 0.1);
  color: var(--blue);
  font-weight: 600;
  font-size: 0.85rem;
  padding: 0.35rem 0.9rem;
  border-radius: 50px;
  margin-bottom: 1.25rem;
  letter-spacing: 0.02em;
}

.hero h1 {
  font-size: clamp(2.1rem, 5vw, 3.1rem);
  font-weight: 800;
  line-height: 1.15;
  color: var(--navy);
  margin-bottom: 1.25rem;
  letter-spacing: -0.03em;
}

.hero h1 .highlight {
  color: var(--blue);
}

.hero-sub {
  max-width: 680px;
  margin: 0 auto 2rem;
  font-size: 1.15rem;
  color: var(--gray-600);
}

.hero-ctas {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  max-width: 800px;
  margin: 0 auto;
}

.stat {
  background: white;
  border-radius: var(--radius);
  padding: 1.25rem 1rem;
  box-shadow: var(--shadow);
  border: 1px solid var(--gray-200);
}

.stat strong {
  display: block;
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--blue);
  margin-bottom: 0.2rem;
}

.stat span {
  font-size: 0.82rem;
  color: var(--gray-600);
  font-weight: 500;
}

/* Sections */
.section {
  padding: 5rem 0;
}

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 3rem;
}

.section-header h2 {
  font-size: clamp(1.75rem, 3.5vw, 2.25rem);
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 0.85rem;
  letter-spacing: -0.02em;
}

.section-header p {
  font-size: 1.1rem;
  color: var(--gray-600);
}

/* Problem cards */
.problem {
  background: var(--off-white);
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.card {
  background: white;
  border-radius: var(--radius);
  padding: 1.75rem 1.5rem;
  box-shadow: var(--shadow);
  border: 1px solid var(--gray-200);
  transition: transform 0.2s, box-shadow 0.2s;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0, 102, 204, 0.12);
}

.card-icon {
  width: 48px;
  height: 48px;
  background: rgba(0, 102, 204, 0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--blue);
  margin-bottom: 0.6rem;
}

.card p {
  font-size: 0.92rem;
  color: var(--gray-600);
}

/* How it works */
.how {
  background: white;
}

.process {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-bottom: 3.5rem;
}

.process-step {
  background: var(--off-white);
  border-radius: var(--radius);
  padding: 1.5rem 1.25rem;
  text-align: center;
  min-width: 160px;
  flex: 1;
  max-width: 200px;
  border: 1px solid var(--gray-200);
}

.step-num {
  width: 36px;
  height: 36px;
  background: var(--blue);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  margin: 0 auto 0.85rem;
}

.process-step h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.4rem;
}

.process-step p {
  font-size: 0.85rem;
  color: var(--gray-600);
}

.process-arrow {
  font-size: 1.5rem;
  color: var(--blue);
  font-weight: 300;
}

.system-products {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.product-card {
  background: var(--off-white);
  border-radius: var(--radius);
  padding: 1.75rem;
  border: 1px solid var(--gray-200);
}

.product-card h4 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--blue);
  margin-bottom: 0.35rem;
}

.product-role {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--teal);
  margin-bottom: 0.75rem;
}

.product-card p:last-child {
  font-size: 0.92rem;
  color: var(--gray-600);
}

.product-note {
  margin-top: 2rem;
  text-align: center;
  font-size: 0.95rem;
  color: var(--gray-600);
}

.product-note a {
  color: var(--blue);
  font-weight: 600;
  text-decoration: underline;
}

/* Solutions */
.solutions {
  background: var(--off-white);
}

.solutions-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.75rem;
}

.solution {
  background: white;
  border-radius: var(--radius);
  padding: 2rem;
  border: 1px solid var(--gray-200);
  box-shadow: var(--shadow);
}

.solution-header {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin-bottom: 1.1rem;
}

.solution-icon {
  width: 44px;
  height: 44px;
  background: rgba(0, 102, 204, 0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  flex-shrink: 0;
}

.solution h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--blue);
}

.solution ul {
  list-style: none;
  margin-bottom: 1.25rem;
}

.solution li {
  position: relative;
  padding-left: 1.3rem;
  margin-bottom: 0.55rem;
  font-size: 0.95rem;
  color: var(--gray-600);
}

.solution li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--teal);
  font-weight: 700;
}

.outcome {
  font-size: 0.95rem;
  color: var(--navy);
  background: rgba(0, 102, 204, 0.06);
  padding: 0.85rem 1rem;
  border-radius: 8px;
}

/* Benefits */
.benefits {
  background: white;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.benefit {
  background: var(--off-white);
  border-radius: var(--radius);
  padding: 1.75rem;
  border: 1px solid var(--gray-200);
}

.benefit h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--blue);
  margin-bottom: 0.6rem;
}

.benefit p {
  font-size: 0.93rem;
  color: var(--gray-600);
}

.roi-box {
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-dark) 100%);
  color: white;
  border-radius: 16px;
  padding: 2.5rem;
  text-align: center;
}

.roi-box h3 {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 1.75rem;
}

.roi-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.roi-stats strong {
  display: block;
  font-size: 1.75rem;
  font-weight: 800;
  margin-bottom: 0.25rem;
}

.roi-stats span {
  font-size: 0.85rem;
  opacity: 0.9;
}

.roi-note {
  font-size: 0.85rem;
  opacity: 0.85;
  max-width: 600px;
  margin: 0 auto;
}

/* Florida section */
.florida {
  background: var(--off-white);
}

.florida-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.florida-item {
  background: white;
  border-radius: var(--radius);
  padding: 1.75rem;
  border: 1px solid var(--gray-200);
}

.florida-item h4 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--blue);
  margin-bottom: 0.6rem;
}

.florida-item p {
  font-size: 0.95rem;
  color: var(--gray-600);
}

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

.contact-box {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  background: var(--off-white);
  border-radius: 16px;
  padding: 3rem;
  border: 1px solid var(--gray-200);
}

.contact-text h2 {
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}

.contact-text p {
  color: var(--gray-600);
  margin-bottom: 1.5rem;
}

.contact-list {
  list-style: none;
  margin-bottom: 2rem;
}

.contact-list li {
  margin-bottom: 0.5rem;
  font-size: 0.95rem;
  color: var(--gray-800);
}

.team {
  margin-top: 1.75rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--gray-200);
}

.team h4 {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--gray-600);
  margin-bottom: 0.6rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.team-names {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--blue);
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  border: 1px solid var(--gray-200);
  border-radius: 8px;
  font-size: 0.95rem;
  font-family: inherit;
  background: white;
  transition: border-color 0.2s;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--blue);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1rem;
}

.contact-form textarea {
  min-height: 110px;
  resize: vertical;
  margin-bottom: 1rem;
}

.contact-form .btn {
  width: 100%;
  margin-top: 0.5rem;
}

/* Footer */
.site-footer {
  background: var(--navy);
  color: white;
  padding: 3rem 0 2rem;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 2rem;
  flex-wrap: wrap;
}

.footer-brand {
  max-width: 320px;
}

.footer-brand .logo-img {
  height: 56px;
  margin-bottom: 1rem;
  filter: brightness(0) invert(1);
}

.footer-brand p {
  font-size: 0.9rem;
  opacity: 0.8;
  line-height: 1.5;
}

.footer-links {
  display: flex;
  gap: 2.5rem;
}

.footer-col h5 {
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 0.85rem;
  opacity: 0.7;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.footer-col a {
  display: block;
  font-size: 0.92rem;
  margin-bottom: 0.45rem;
  opacity: 0.9;
}

.footer-col a:hover {
  opacity: 1;
  text-decoration: underline;
}

.footer-bottom {
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.15);
  font-size: 0.85rem;
  opacity: 0.7;
  text-align: center;
}

/* Responsive */
@media (max-width: 900px) {
  .grid-4,
  .solutions-grid,
  .benefits-grid,
  .florida-grid,
  .system-products,
  .hero-stats,
  .roi-stats {
    grid-template-columns: 1fr 1fr;
  }

  .contact-box {
    grid-template-columns: 1fr;
  }

  .main-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0.35rem;
    padding: 0.85rem 1rem 1.1rem;
    background: #ffffff;
    border-bottom: 1px solid var(--gray-200);
    box-shadow: 0 12px 24px rgba(11, 28, 44, 0.08);
  }

  .main-nav.open {
    display: flex;
  }

  .main-nav a {
    padding: 0.7rem 0.4rem;
    font-size: 1rem;
  }

  .main-nav a.btn-primary {
    text-align: center;
    margin-top: 0.35rem;
  }

  .mobile-toggle {
    display: block;
    z-index: 101;
  }
}

@media (max-width: 600px) {
  .grid-4,
  .solutions-grid,
  .benefits-grid,
  .florida-grid,
  .system-products,
  .hero-stats,
  .roi-stats,
  .form-row {
    grid-template-columns: 1fr;
  }

  .process {
    flex-direction: column;
  }

  .process-arrow {
    transform: rotate(90deg);
  }

  .hero {
    padding: 3rem 0 3.5rem;
  }
}


/* === Photo-forward additions 2026-08 === */
.hero-photo {
  position: relative;
  min-height: 78vh;
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center right;
  background-repeat: no-repeat;
}
.hero-photo::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, rgba(255,255,255,0.94) 0%, rgba(255,255,255,0.82) 38%, rgba(255,255,255,0.15) 70%);
  z-index: 0;
}
.hero-photo .container { position: relative; z-index: 1; }
.hero-question {
  font-size: 1.15rem;
  line-height: 1.55;
  color: #334155;
  max-width: 520px;
  margin-bottom: 1.25rem;
  font-weight: 500;
}
.photo-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-top: 2rem;
}
.photo-steps .photo-step img {
  width: 100%;
  height: 160px;
  object-fit: cover;
}
.photo-step {
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0,0,0,0.07);
  border: 1px solid #E2E8F0;
  text-align: center;
}
.photo-step img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}
.photo-step .body { padding: 1.25rem 1.1rem 1.5rem; }
.photo-step .num {
  display: inline-flex;
  width: 32px; height: 32px;
  background: #0B1C2C;
  color: #fff;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  margin-bottom: 0.6rem;
}
.photo-step h3 { font-size: 1.15rem; margin-bottom: 0.4rem; color: #0B1C2C; }
.photo-step p { font-size: 0.92rem; color: #475569; line-height: 1.5; }

.prop-photos {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}
.prop-photo-card {
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 6px 18px rgba(0,0,0,0.06);
  border: 1px solid #E2E8F0;
  text-align: center;
}
.prop-photo-card img {
  width: 100%;
  height: 150px;
  object-fit: cover;
}
.prop-photo-card .body { padding: 1.1rem 0.9rem 1.3rem; }
.prop-photo-card h3 { font-size: 1.05rem; color: #0B1C2C; margin-bottom: 0.4rem; }
.prop-photo-card p { font-size: 0.85rem; color: #475569; line-height: 1.45; }

.ba-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.75rem;
}
.ba-card {
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid #E2E8F0;
  box-shadow: 0 6px 18px rgba(0,0,0,0.06);
}
.ba-card h3 {
  padding: 1rem 1.15rem 0.5rem;
  font-size: 1.1rem;
  color: #0B1C2C;
}
.ba-imgs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}
.ba-imgs figure { position: relative; margin: 0; }
.ba-imgs img { width: 100%; height: 160px; object-fit: cover; display: block; }
.ba-imgs .lbl {
  position: absolute; top: 8px; left: 8px;
  background: #0B1C2C; color: #fff;
  font-size: 0.7rem; font-weight: 700;
  padding: 2px 8px; border-radius: 4px;
  text-transform: uppercase;
}
.ba-imgs .lbl.after { background: #1F7A3D; }
.ba-card .cap {
  padding: 0.85rem 1.15rem 1.2rem;
  font-size: 0.9rem;
  color: #475569;
  line-height: 1.5;
}

.founders-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}
.founder-card {
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid #E2E8F0;
  box-shadow: 0 6px 18px rgba(0,0,0,0.06);
  text-align: center;
}
.founder-card img {
  width: 100%;
  height: 320px;
  object-fit: contain;
  object-position: center;
  background: #F1F5F9;
  display: block;
}
.founder-card .info { padding: 1.1rem 0.9rem 1.35rem; }
.founder-card h3 { font-size: 1.05rem; color: #0B1C2C; margin-bottom: 0.15rem; }
.founder-card .role {
  font-size: 0.78rem;
  font-weight: 600;
  color: #1F7A3D;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 0.55rem;
}
.founder-card p { font-size: 0.85rem; color: #475569; line-height: 1.5; }

@media (max-width: 900px) {
  .photo-steps, .prop-photos, .founders-row, .ba-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 600px) {
  .photo-steps, .prop-photos, .founders-row, .ba-grid,
  .cycle-grid, .pain-row, .system-grid, .founding-grid {
    grid-template-columns: 1fr;
  }
  .hero-photo { min-height: auto; padding: 3rem 0; }
}

.hero-promise {
  color: #0B1C2C;
  font-size: 1.05rem;
  margin: 0 0 1.25rem;
  font-weight: 600;
}
.hero-area {
  margin-top: 1.1rem;
  color: #334155;
  font-size: 0.88rem;
}
.hero-photo .eyebrow {
  background: #0B1C2C;
  color: #ffffff;
}

.cycle { background: #F8FAFC; }
.cycle-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.1rem;
  margin-bottom: 1.5rem;
}
.cycle-step {
  background: #fff;
  border: 1px solid #E2E8F0;
  border-radius: 14px;
  padding: 1.15rem 1.1rem 1.25rem;
  box-shadow: 0 6px 18px rgba(0,0,0,0.04);
}
.cycle-num {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #0B1C2C;
  color: #fff;
  font-size: 0.8rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.7rem;
}
.cycle-step h3 { font-size: 1.02rem; color: #0B1C2C; margin-bottom: 0.4rem; }
.cycle-step p { font-size: 0.88rem; color: #475569; line-height: 1.5; }
.pain-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.9rem;
}
.pain-card {
  background: #0B1C2C;
  color: #fff;
  border-radius: 12px;
  padding: 1rem 1rem 1.1rem;
}
.pain-card h3 { font-size: 0.92rem; margin-bottom: 0.35rem; color: #fff; }
.pain-card p { font-size: 0.84rem; color: #CBD5E1; line-height: 1.45; }

.system-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}
.system-card {
  background: #fff;
  border: 1px solid #E2E8F0;
  border-radius: 14px;
  padding: 1.4rem 1.3rem 1.5rem;
  box-shadow: 0 6px 18px rgba(0,0,0,0.05);
}
.system-card h3 { font-size: 1.15rem; color: #0B1C2C; margin-bottom: 0.55rem; }
.system-card p { font-size: 0.95rem; color: #475569; line-height: 1.55; }
.phase-line {
  display: flex;
  justify-content: center;
  gap: 0.65rem;
  align-items: center;
  margin: 1.75rem 0 0.75rem;
  font-weight: 700;
  color: #0B1C2C;
}
.phase-line .dot { color: #1F7A3D; }
.tech-note {
  text-align: center;
  color: #475569;
  max-width: 640px;
  margin: 0 auto;
}
.tech-note a { color: #0066CC; font-weight: 600; }

.limits-box {
  margin-top: 2rem;
  background: #fff;
  border: 1px solid #E2E8F0;
  border-radius: 14px;
  padding: 1.4rem 1.4rem 1.2rem;
}
.limits-box h3 { font-size: 1.1rem; color: #0B1C2C; margin-bottom: 0.7rem; }
.limits-box ul { margin: 0 0 0.9rem 1.1rem; color: #475569; }
.limits-box li { margin-bottom: 0.4rem; line-height: 1.45; }
.limits-note { font-size: 0.9rem; color: #64748B; }

.founding { background: #F0F7FF; }
.founding-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 1.5rem;
  align-items: start;
}
.founding-list {
  background: #fff;
  border-radius: 14px;
  padding: 1.3rem 1.4rem 1.3rem 2rem;
  border: 1px solid #E2E8F0;
  color: #334155;
  line-height: 1.7;
}
.founding-privacy {
  background: #0B1C2C;
  color: #fff;
  border-radius: 14px;
  padding: 1.4rem 1.35rem 1.5rem;
}
.founding-privacy h3 { color: #fff; margin-bottom: 0.6rem; }
.founding-privacy p { color: #CBD5E1; line-height: 1.55; margin-bottom: 1.1rem; }

@media (max-width: 900px) {
  .cycle-grid, .pain-row, .system-grid, .founding-grid {
    grid-template-columns: 1fr 1fr;
  }
}
