/* ============================================================
   TWOCOATS™ — Website Stylesheet (brand site, not funnel)
   Extends styles.css — always load styles.css first
   ============================================================ */

/* ── Site Navigation ── */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 200;
  background: var(--navy);
  border-bottom: 1px solid rgba(255,255,255,.07);
}
.site-nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
  gap: 20px;
}

/* Logo */
.site-logo {
  font-size: 1.35rem;
  font-weight: 900;
  color: #fff;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  line-height: 1;
  flex-shrink: 0;
  position: relative;
  padding-bottom: 5px;
  text-decoration: none;
  font-style: italic;
}
.site-logo::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--orange);
  border-radius: 2px;
}
.site-logo sup {
  font-size: 0.42em;
  vertical-align: super;
  color: rgba(255,255,255,.55);
  font-weight: 700;
  letter-spacing: 0;
  font-style: normal;
}

/* Desktop nav links */
.site-nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  flex: 1;
  justify-content: center;
}
.site-nav-link {
  font-size: 0.875rem;
  font-weight: 600;
  color: rgba(255,255,255,.6);
  text-decoration: none;
  transition: color 0.2s;
  white-space: nowrap;
}
.site-nav-link:hover { color: #fff; }
.site-nav-link.active { color: var(--orange); }

/* Right side actions */
.site-nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 8px;
  cursor: pointer;
  padding: 0;
  transition: background 0.2s;
}
.hamburger:hover { background: rgba(255,255,255,.12); }
.hamburger span {
  display: block;
  width: 18px;
  height: 2px;
  background: rgba(255,255,255,.85);
  border-radius: 2px;
  transition: all 0.25s ease;
}
.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile drawer */
.mobile-menu {
  display: none;
  flex-direction: column;
  padding: 8px 24px 24px;
  border-top: 1px solid rgba(255,255,255,.07);
  background: #0a1628;
}
.mobile-menu.open { display: flex; }
.mobile-menu-link {
  font-size: 1rem;
  font-weight: 600;
  color: rgba(255,255,255,.7);
  padding: 16px 0;
  border-bottom: 1px solid rgba(255,255,255,.06);
  text-decoration: none;
  transition: color 0.2s;
}
.mobile-menu-link:hover { color: #fff; }
.mobile-menu-link.active { color: var(--orange); }
.mobile-menu-cta { margin-top: 20px; }

/* ── Site Footer ── */
.site-footer {
  background: #080e1e;
  border-top: 1px solid rgba(255,255,255,.07);
  padding: 64px 0 32px;
  color: rgba(255,255,255,.5);
  font-size: 0.875rem;
}
.site-footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-brand p {
  color: rgba(255,255,255,.45);
  font-size: 0.875rem;
  line-height: 1.75;
  margin-top: 14px;
  max-width: 260px;
}
.footer-social {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}
.footer-social a {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.6);
  text-decoration: none;
  font-size: 0.875rem;
  transition: background 0.2s, color 0.2s;
}
.footer-social a:hover { background: var(--orange); color: #fff; border-color: var(--orange); }
.footer-col-title {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,.35);
  margin-bottom: 18px;
}
.site-footer ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
  list-style: none;
  padding: 0;
}
.site-footer ul a {
  color: rgba(255,255,255,.55);
  text-decoration: none;
  font-size: 0.875rem;
  transition: color 0.2s;
}
.site-footer ul a:hover { color: #fff; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.07);
  padding-top: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 0.8rem;
  color: rgba(255,255,255,.28);
}
.footer-bottom a { color: rgba(255,255,255,.4); text-decoration: none; }
.footer-bottom a:hover { color: rgba(255,255,255,.7); }

/* ── Home Hero ── */
.home-hero {
  background:
    linear-gradient(to right,
      rgba(6,12,28,0.97) 0%,
      rgba(6,12,28,0.92) 45%,
      rgba(6,12,28,0.65) 70%,
      rgba(6,12,28,0.20) 100%),
    url('../img/hero-bg.png') center/cover no-repeat;
  padding: 88px 0 80px;
  overflow: hidden;
}
.home-hero-grid {
  display: grid;
  grid-template-columns: 1fr 0.85fr;
  gap: 56px;
  align-items: center;
}
.home-hero-eyebrow {
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.home-hero-eyebrow::before {
  content: '';
  display: block;
  width: 24px;
  height: 2px;
  background: var(--orange);
  flex-shrink: 0;
}
.home-hero-copy h1 {
  color: #fff;
  font-size: clamp(2.2rem,5vw,3.4rem);
  margin-bottom: 22px;
  line-height: 1.08;
}
.home-hero-copy .lead {
  color: rgba(255,255,255,.65);
  font-size: clamp(1rem,2vw,1.15rem);
  line-height: 1.8;
  margin-bottom: 36px;
  max-width: 500px;
}
.home-hero-ctas {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.btn-ghost-white {
  background: none;
  border: 2px solid rgba(255,255,255,.25);
  color: rgba(255,255,255,.85);
  padding: 18px 32px;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 1rem;
  transition: all 0.2s;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
}
.btn-ghost-white:hover {
  border-color: rgba(255,255,255,.65);
  color: #fff;
  transform: translateY(-2px);
}
.home-hero-proof {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.home-hero-proof-item {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 0.825rem;
  font-weight: 600;
  color: rgba(255,255,255,.5);
}
.home-hero-proof-item::before {
  content: '✓';
  color: var(--orange);
  font-weight: 900;
}

/* Founder image column */
.home-hero-image {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: flex-end;
}
.home-hero-image img {
  width: 100%;
  max-width: 500px;
  display: block;
  position: relative;
  z-index: 1;
  border-radius: 20px;
  box-shadow: 0 32px 80px rgba(0,0,0,0.6), 0 8px 24px rgba(0,0,0,0.4);
}
.home-hero-image::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(6,12,28,0.7) 0%, transparent 30%),
              linear-gradient(to top, rgba(6,12,28,0.5) 0%, transparent 30%);
  z-index: 2;
  pointer-events: none;
  border-radius: 20px;
}

/* ── Problem Section ── */
.problem-section {
  background: #0a1628;
  padding: 80px 0;
}
.ws-problem-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 48px;
}
.ws-problem-card {
  background: rgba(239,68,68,.06);
  border: 1px solid rgba(239,68,68,.18);
  border-left: 4px solid #ef4444;
  border-radius: 14px;
  padding: 28px 24px;
}
.ws-problem-icon {
  font-size: 1.75rem;
  margin-bottom: 12px;
}
.ws-problem-title {
  font-weight: 700;
  color: #f87171;
  margin-bottom: 8px;
  font-size: 1rem;
}
.ws-problem-text {
  font-size: 0.875rem;
  color: rgba(255,255,255,.55);
  line-height: 1.65;
}

/* ── Method Steps ── */
.method-section {
  background: var(--light-gray);
  padding: 88px 0;
}
.method-steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  margin-top: 56px;
  position: relative;
}
.method-steps::before {
  content: '';
  position: absolute;
  top: 28px;
  left: calc(10% + 28px);
  right: calc(10% + 28px);
  height: 2px;
  background: linear-gradient(to right, var(--orange), rgba(249,115,22,0.3));
  z-index: 0;
}
.method-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 16px;
  position: relative;
  z-index: 1;
}
.method-step-num {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--orange);
  color: #fff;
  font-size: 1.25rem;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  box-shadow: 0 4px 16px rgba(249,115,22,0.35);
  flex-shrink: 0;
}
.method-step-title {
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
  line-height: 1.3;
}
.method-step-desc {
  font-size: 0.825rem;
  color: var(--dark-gray);
  line-height: 1.6;
}

/* ── Product Showcase ── */
.products-section {
  background: #fff;
  padding: 88px 0;
}
.ws-product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 52px;
}
.ws-product-card {
  background: var(--white);
  border: 1px solid var(--mid-gray);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0,0,0,.06);
  transition: transform 0.25s, box-shadow 0.25s;
  display: flex;
  flex-direction: column;
}
.ws-product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(0,0,0,.12);
}
.ws-product-img {
  background: #0f172a;
  padding: 28px 20px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 200px;
}
.ws-product-img img {
  width: 100%;
  max-width: 200px;
  height: auto;
  display: block;
  margin: 0 auto;
  filter: drop-shadow(0 12px 24px rgba(0,0,0,0.5));
}
.ws-product-body {
  padding: 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.ws-product-badge {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 999px;
  margin-bottom: 10px;
}
.badge-free     { background: rgba(22,163,74,.1);  color: var(--green); }
.badge-paid     { background: rgba(249,115,22,.1); color: var(--orange); }
.badge-soon     { background: rgba(100,116,139,.12); color: var(--dark-gray); }
.badge-bundle   { background: rgba(0,102,204,.1); color: var(--blue); }

.ws-product-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
  line-height: 1.3;
}
.ws-product-desc {
  font-size: 0.85rem;
  color: var(--dark-gray);
  line-height: 1.65;
  flex: 1;
  margin-bottom: 20px;
}
.ws-product-price {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 16px;
  line-height: 1;
}
.ws-product-price .currency {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--dark-gray);
  vertical-align: super;
}
.ws-product-price .period {
  font-size: 0.75rem;
  color: var(--dark-gray);
  font-weight: 500;
}

/* ── About Preview (homepage) ── */
.about-preview {
  background: var(--navy);
  padding: 88px 0;
}
.about-preview-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.founder-img-wrap {
  position: relative;
}
.founder-img-wrap img {
  width: 100%;
  border-radius: 20px;
  display: block;
  box-shadow: 0 32px 80px rgba(0,0,0,0.55);
}
.founder-img-accent {
  position: absolute;
  bottom: -16px;
  right: -16px;
  background: var(--orange);
  color: #fff;
  border-radius: 14px;
  padding: 16px 20px;
  font-weight: 800;
  font-size: 0.875rem;
  line-height: 1.4;
  box-shadow: 0 8px 24px rgba(249,115,22,0.4);
  text-align: center;
}
.founder-img-accent span {
  display: block;
  font-size: 1.75rem;
  font-weight: 900;
  line-height: 1;
  margin-bottom: 2px;
}

/* ── Home Final CTA ── */
.home-cta-section {
  background: linear-gradient(135deg, #f97316 0%, #ea6c0c 60%, #c2410c 100%);
  padding: 80px 0;
  text-align: center;
}
.home-cta-section h2 { color: #fff; margin-bottom: 14px; }
.home-cta-section p  { color: rgba(255,255,255,.8); max-width: 440px; margin: 0 auto 36px; font-size: 1.05rem; }
.btn-white {
  background: #fff;
  color: var(--orange);
  padding: 20px 44px;
  font-size: 1.125rem;
  font-weight: 800;
  border-radius: var(--radius);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.2s;
  box-shadow: 0 4px 20px rgba(0,0,0,0.2);
}
.btn-white:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 36px rgba(0,0,0,0.25);
}
.btn-outline-white {
  background: transparent;
  border: 2px solid rgba(255,255,255,0.5);
  color: #fff;
  padding: 18px 36px;
  font-size: 1rem;
  font-weight: 700;
  border-radius: var(--radius);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  transition: all 0.2s;
}
.btn-outline-white:hover { border-color: #fff; background: rgba(255,255,255,.1); transform: translateY(-2px); }

/* ── Page Hero (inner pages) ── */
.page-hero {
  background: var(--navy);
  padding: 72px 0 64px;
  text-align: center;
}
.page-hero h1 { color: #fff; margin-bottom: 16px; }
.page-hero .lead { color: rgba(255,255,255,.65); max-width: 560px; margin: 0 auto; }

/* ── Free Guide Page ── */
.guide-hero {
  background:
    linear-gradient(to right,
      rgba(6,12,28,0.97) 0%,
      rgba(6,12,28,0.93) 50%,
      rgba(6,12,28,0.50) 100%),
    url('../img/hero-bg.png') center/cover no-repeat;
  padding: 80px 0;
}
.guide-hero-grid {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: 64px;
  align-items: center;
}
.guide-bullets {
  list-style: none;
  padding: 0;
  margin: 28px 0 36px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.guide-bullets li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: rgba(255,255,255,.8);
  font-size: 0.9375rem;
  line-height: 1.55;
}
.guide-bullets li::before {
  content: '✓';
  color: var(--orange);
  font-weight: 900;
  font-size: 1rem;
  flex-shrink: 0;
  margin-top: 1px;
}

/* ── Product Page (Paint Like a Pro) ── */
.pro-hero {
  background:
    linear-gradient(to right,
      rgba(6,12,28,0.97) 0%,
      rgba(6,12,28,0.88) 55%,
      rgba(6,12,28,0.45) 100%),
    url('../img/hero-bg.png') center/cover no-repeat;
  padding: 80px 0;
}
.pro-hero-grid {
  display: grid;
  grid-template-columns: 1fr 0.85fr;
  gap: 64px;
  align-items: center;
}
.pro-hero-img img {
  width: 100%;
  max-width: 420px;
  display: block;
  margin: 0 auto;
  filter: drop-shadow(0 24px 56px rgba(0,0,0,0.6));
}
.benefit-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 48px;
}
.benefit-card {
  background: var(--white);
  border: 1px solid var(--mid-gray);
  border-top: 4px solid var(--orange);
  border-radius: 14px;
  padding: 24px 20px;
  box-shadow: var(--shadow);
}
.benefit-card-icon {
  font-size: 1.75rem;
  margin-bottom: 12px;
}
.benefit-card-title {
  font-weight: 700;
  color: var(--navy);
  font-size: 0.9375rem;
  margin-bottom: 6px;
}
.benefit-card-text {
  font-size: 0.85rem;
  color: var(--dark-gray);
  line-height: 1.6;
}
.who-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 36px;
}
.who-card {
  background: rgba(249,115,22,.06);
  border: 1px solid rgba(249,115,22,.2);
  border-radius: 12px;
  padding: 18px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--navy);
}
.who-card::before {
  content: '✓';
  color: var(--orange);
  font-weight: 900;
  flex-shrink: 0;
}

/* ── Courses Page ── */
.courses-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 52px;
}
.course-card {
  background: var(--white);
  border: 1px solid var(--mid-gray);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0,0,0,.06);
  transition: transform 0.25s, box-shadow 0.25s;
  display: flex;
  flex-direction: column;
}
.course-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 40px rgba(0,0,0,.11);
}
.course-card.coming-soon {
  opacity: 0.72;
}
.course-card.coming-soon:hover {
  transform: none;
  box-shadow: 0 2px 12px rgba(0,0,0,.06);
  opacity: 0.82;
}
.course-img {
  background: #0f172a;
  padding: 28px 24px 20px;
  min-height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.course-img img {
  width: 100%;
  max-width: 190px;
  display: block;
  margin: 0 auto;
  filter: drop-shadow(0 10px 20px rgba(0,0,0,0.5));
}
.course-body {
  padding: 22px 22px 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.course-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
  line-height: 1.3;
}
.course-desc {
  font-size: 0.85rem;
  color: var(--dark-gray);
  line-height: 1.65;
  flex: 1;
  margin-bottom: 20px;
}
.course-price {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 14px;
}

/* Coming soon overlay badge */
.coming-soon-banner {
  background: var(--light-gray);
  border-top: 1px solid var(--mid-gray);
  text-align: center;
  padding: 12px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--dark-gray);
}

/* ── About Page ── */
.about-story {
  background: var(--white);
  padding: 88px 0;
}
.about-story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.about-founder-img {
  position: relative;
}
.about-founder-img img {
  width: 100%;
  border-radius: 20px;
  display: block;
  box-shadow: var(--shadow-lg);
}
.about-founder-badge {
  position: absolute;
  bottom: -18px;
  left: 24px;
  background: var(--navy);
  color: #fff;
  border-radius: 14px;
  padding: 14px 20px;
  font-size: 0.825rem;
  font-weight: 600;
  line-height: 1.55;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(255,255,255,.08);
}
.about-founder-badge strong {
  display: block;
  color: var(--orange);
  font-size: 1rem;
  font-weight: 800;
  margin-bottom: 2px;
}
.about-mission {
  background: var(--navy);
  padding: 80px 0;
  text-align: center;
}
.mission-card {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 20px;
  padding: 48px 56px;
  max-width: 680px;
  margin: 0 auto;
}
.mission-card blockquote {
  font-size: clamp(1.15rem,2.5vw,1.5rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.5;
  font-style: italic;
}
.mission-card cite {
  display: block;
  margin-top: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--orange);
  font-style: normal;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.creds-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.cred-card {
  background: var(--white);
  border: 1px solid var(--mid-gray);
  border-radius: 16px;
  padding: 28px 20px;
  text-align: center;
  box-shadow: var(--shadow);
}
.cred-number {
  font-size: 2.25rem;
  font-weight: 900;
  color: var(--orange);
  line-height: 1;
  margin-bottom: 6px;
}
.cred-label {
  font-size: 0.85rem;
  color: var(--dark-gray);
  font-weight: 500;
  line-height: 1.4;
}

/* ── Contact Page ── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 64px;
  align-items: start;
  padding: 80px 0;
}
.contact-info h3 {
  color: var(--navy);
  margin-bottom: 12px;
  font-size: 1.25rem;
}
.contact-info p {
  color: var(--dark-gray);
  line-height: 1.75;
  margin-bottom: 28px;
}
.contact-detail {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 0;
  border-bottom: 1px solid var(--mid-gray);
  font-size: 0.9rem;
  color: var(--navy);
}
.contact-detail-icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: rgba(249,115,22,.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}
.contact-form-box {
  background: var(--white);
  border: 1px solid var(--mid-gray);
  border-radius: 20px;
  padding: 40px;
  box-shadow: var(--shadow);
}
.contact-form-box h3 {
  color: var(--navy);
  margin-bottom: 6px;
}
.contact-form-box > p {
  color: var(--dark-gray);
  font-size: 0.9rem;
  margin-bottom: 28px;
}
.contact-success {
  display: none;
  background: #f0fdf4;
  border: 1px solid #bbf7d0;
  border-radius: 12px;
  padding: 20px 22px;
  color: #15803d;
  font-weight: 600;
  font-size: 0.9rem;
  line-height: 1.6;
}
select.form-input-dark {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%2364748b' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
}
textarea.form-input-dark {
  resize: vertical;
  min-height: 120px;
  line-height: 1.65;
}

/* ── Responsive ── */
@media (max-width: 1024px) {
  .site-footer-grid { grid-template-columns: 1.4fr 1fr 1fr; gap: 36px; }
  .site-footer-grid > div:last-child { display: none; }
  .ws-product-grid { grid-template-columns: repeat(2, 1fr); }
  .courses-grid { grid-template-columns: repeat(2, 1fr); }
  .creds-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
  .site-nav-links { display: none; }
  .site-nav-actions .site-nav-cta { display: none; }
  .hamburger { display: flex; }
  .home-hero-grid { grid-template-columns: 1fr; }
  .home-hero-image { display: none; }
  .home-hero { padding: 64px 0 56px; }
  .guide-hero-grid { grid-template-columns: 1fr; }
  .guide-hero-image { display: none; }
  .pro-hero-grid { grid-template-columns: 1fr; }
  .pro-hero-img { display: none; }
  .about-story-grid { grid-template-columns: 1fr; }
  .about-founder-img { display: none; }
  .benefit-cards { grid-template-columns: repeat(2, 1fr); }
  .ws-problem-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; padding: 56px 0; }
  .method-steps { grid-template-columns: repeat(3, 1fr); row-gap: 32px; }
  .method-steps::before { display: none; }
  .about-preview-grid { grid-template-columns: 1fr; }
  .about-preview-img { display: none; }
}

@media (max-width: 640px) {
  .site-footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; text-align: center; gap: 8px; }
  .ws-product-grid { grid-template-columns: 1fr; }
  .courses-grid { grid-template-columns: 1fr; }
  .ws-problem-grid { grid-template-columns: 1fr; }
  .benefit-cards { grid-template-columns: 1fr; }
  .who-grid { grid-template-columns: 1fr; }
  .method-steps { grid-template-columns: 1fr; }
  .creds-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-form-box { padding: 28px 20px; }
  .mission-card { padding: 32px 24px; }
  .home-hero-ctas { flex-direction: column; align-items: flex-start; }
  .home-hero-ctas .btn-ghost-white { width: 100%; justify-content: center; }
}
