/* ========================================
   SMS Website — Global Styles
   ======================================== */

:root {
  --white: #FFFFFF;
  --offwhite: #F8F7F5;
  --border: #E0DFDD;
  --mid-gray: #4A4A4A;
  --charcoal: #1A1A1A;
  --orange: #D4621A;
  --orange-hover: #B8530F;
  --steel: #8A8F96;
  --red: #DC2626;
  --green: #16A34A;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
body {
  font-family: 'DM Sans', -apple-system, sans-serif;
  color: var(--charcoal); background: var(--white);
  -webkit-font-smoothing: antialiased; overflow-x: hidden;
}

/* NAV */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(255,255,255,0.92); backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  padding: 0 clamp(1.5rem, 5vw, 6rem); height: 72px;
  display: flex; align-items: center; justify-content: space-between;
}
.nav-logo { display: flex; align-items: center; gap: 12px; text-decoration: none; color: var(--charcoal); }
.nav-logo img { height: 40px; width: 40px; object-fit: contain; }
.nav-logo span { font-weight: 700; font-size: 1.1rem; letter-spacing: -0.02em; }
.nav-links { display: flex; gap: 2rem; align-items: center; }
.nav-links a { text-decoration: none; color: var(--mid-gray); font-size: 0.9rem; font-weight: 500; transition: color 0.2s; }
.nav-links a:hover { color: var(--charcoal); }
.nav-cta {
  background: var(--orange); color: white !important; padding: 10px 24px;
  font-size: 0.85rem; font-weight: 600; border-radius: 6px;
  text-decoration: none; transition: background 0.2s;
}
.nav-cta:hover { background: var(--orange-hover); }

/* HERO */
.hero {
  padding: 130px clamp(1.5rem, 5vw, 6rem) 40px;
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1.1fr; gap: 3.5rem; align-items: center;
}
.hero-text h1 {
  font-family: 'Instrument Serif', Georgia, serif;
  font-size: clamp(2.8rem, 4.5vw, 4.5rem);
  line-height: 1.08; letter-spacing: -0.03em;
  color: var(--charcoal); margin-bottom: 1.25rem;
}
.hero-text h1 .orange { color: var(--orange); }
.hero-sub {
  font-size: 1.2rem; line-height: 1.5; font-weight: 500;
  color: var(--mid-gray); margin-bottom: 0.75rem;
}
.hero-text p {
  font-size: 1.05rem; line-height: 1.7;
  color: var(--mid-gray); max-width: 540px; margin-bottom: 2rem;
}
.hero-buttons { display: flex; gap: 1rem; flex-wrap: wrap; }
.btn-primary {
  background: var(--orange); color: white; padding: 14px 32px;
  font-size: 0.95rem; font-weight: 600; border: none; border-radius: 6px;
  text-decoration: none; transition: all 0.2s;
  display: inline-flex; align-items: center; gap: 8px;
}
.btn-primary:hover { background: var(--orange-hover); transform: translateY(-1px); box-shadow: 0 4px 16px rgba(212,98,26,0.25); }
.btn-secondary {
  background: transparent; color: var(--charcoal); padding: 14px 32px;
  font-size: 0.95rem; font-weight: 600; border: 1.5px solid var(--border); border-radius: 6px;
  text-decoration: none; transition: all 0.2s;
}
.btn-secondary:hover { border-color: var(--charcoal); background: var(--offwhite); }
.btn-secondary-light {
  background: transparent; color: var(--white); padding: 14px 32px;
  font-size: 0.95rem; font-weight: 600; border: 1.5px solid var(--steel); border-radius: 6px;
  text-decoration: none; transition: all 0.2s;
}
.btn-secondary-light:hover { border-color: var(--white); background: rgba(255,255,255,0.08); color: var(--white); }
.hero-screenshot {
  border-radius: 0; overflow: visible;
  box-shadow: none;
  position: relative; aspect-ratio: 16/10;
  background: var(--white);
}
.hero-screenshot img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  position: absolute; top: 0; left: 0;
  opacity: 0; transition: opacity 1s ease;
}
.hero-screenshot img.active { opacity: 1; }
.slide-dots {
  position: absolute; bottom: 12px; left: 50%;
  transform: translateX(-50%); display: flex; gap: 8px; z-index: 2;
}
.slide-dots button {
  width: 8px; height: 8px; border-radius: 50%; border: none;
  background: rgba(255,255,255,0.4); cursor: pointer;
  transition: all 0.3s; padding: 0;
}
.slide-dots button.active {
  background: var(--orange); width: 24px; border-radius: 4px;
}

/* WORKS WITH */
.works-with {
  padding: 2rem clamp(1.5rem, 5vw, 6rem);
  border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
  background: var(--offwhite); text-align: center;
}
.works-with p {
  font-size: 0.8rem; font-weight: 600; text-transform: uppercase;
  letter-spacing: 0.1em; color: var(--steel); margin-bottom: 1.5rem;
}
.brand-grid {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 2rem 3rem;
  max-width: 1100px; margin: 0 auto;
}
.brand-grid span {
  font-size: 1.1rem; font-weight: 600; color: var(--charcoal);
  opacity: 0.35; transition: opacity 0.3s;
}
.brand-grid span:hover { opacity: 0.7; }

/* SECTIONS */
section { padding: 4rem clamp(1.5rem, 5vw, 6rem); }
.section-inner { max-width: 1200px; margin: 0 auto; }
.section-label {
  font-size: 0.8rem; font-weight: 600; text-transform: uppercase;
  letter-spacing: 0.1em; color: var(--orange); margin-bottom: 0.75rem;
}
.section-title {
  font-family: 'Instrument Serif', Georgia, serif;
  font-size: clamp(2rem, 4vw, 3rem); line-height: 1.15;
  letter-spacing: -0.02em; color: var(--charcoal); margin-bottom: 1rem;
}
.section-subtitle {
  font-size: 1.1rem; color: var(--mid-gray); line-height: 1.7;
  max-width: 660px; margin-bottom: 2rem;
}

/* PROBLEM / SOLUTION */
.problem-solution { background: var(--white); }
.ps-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem;
}
.ps-col {
  padding: 2.5rem; border-radius: 12px;
  border: 1px solid var(--border);
}
.ps-col.problem { background: var(--offwhite); }
.ps-col.solution { background: var(--offwhite); }
.ps-icon-badge {
  width: 44px; height: 44px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem; font-weight: 700; margin-bottom: 1.25rem;
}
.red-badge { background: #FEE2E2; color: var(--red); }
.green-badge { background: #DCFCE7; color: var(--green); }
.ps-col h3 { font-size: 1.3rem; font-weight: 700; margin-bottom: 1.5rem; }
.ps-col.problem h3 { color: var(--red); }
.ps-col.solution h3 { color: var(--green); }
.ps-item { display: flex; gap: 12px; margin-bottom: 1.25rem; align-items: flex-start; }
.ps-dot { width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0; margin-top: 7px; }
.ps-dot.red { background: var(--red); opacity: 0.5; }
.ps-dot.green { background: var(--green); }
.ps-item p { font-size: 1rem; line-height: 1.6; color: var(--mid-gray); }
.ps-col.solution .ps-item p { color: var(--charcoal); }

/* HOW IT WORKS */
.how-it-works { background: var(--offwhite); }
.steps-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; margin-top: 2rem; }
.step-card {
  padding: 2rem 1.5rem; background: var(--white);
  border: 1px solid var(--border); border-radius: 10px;
  transition: box-shadow 0.3s, transform 0.3s;
  text-align: left;
}
.step-card:hover { box-shadow: 0 8px 32px rgba(0,0,0,0.06); transform: translateY(-2px); }
.step-number {
  display: inline-flex; align-items: center; justify-content: center;
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--orange); color: white;
  font-size: 0.85rem; font-weight: 700; margin-bottom: 1rem;
}
.step-card h4 { font-size: 1.1rem; font-weight: 700; margin-bottom: 0.75rem; color: var(--charcoal); }
.step-card p { font-size: 0.95rem; line-height: 1.65; color: var(--mid-gray); }

/* FEATURES */
.feature-row {
  display: grid; grid-template-columns: 1fr 1fr; gap: 3rem;
  align-items: center; margin-bottom: 4rem;
}
.feature-row.reverse { direction: rtl; }
.feature-row.reverse > * { direction: ltr; }
.feature-text h3 {
  font-family: 'Instrument Serif', Georgia, serif;
  font-size: 1.8rem; line-height: 1.2; margin-bottom: 1rem; color: var(--charcoal);
}
.feature-text p { font-size: 1.05rem; line-height: 1.7; color: var(--mid-gray); margin-bottom: 1.5rem; }
.feature-text ul { list-style: none; padding: 0; }
.feature-text li {
  display: flex; gap: 10px; align-items: flex-start;
  font-size: 0.95rem; line-height: 1.6; color: var(--mid-gray); margin-bottom: 0.75rem;
}
.feature-text li svg { flex-shrink: 0; margin-top: 3px; color: var(--orange); }
.feature-screenshot {
  border-radius: 0; overflow: visible;
  box-shadow: none;
  background: transparent;
}
.feature-screenshot img { width: 100%; display: block; }

/* FORMS */
.form-section { background: var(--offwhite); }
.form-section .section-inner {
  display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center;
}
.form-text h2 {
  font-family: 'Instrument Serif', Georgia, serif;
  font-size: clamp(2rem, 3.5vw, 2.8rem); line-height: 1.15;
  letter-spacing: -0.02em; color: var(--charcoal); margin-bottom: 1rem;
}
.form-text p { font-size: 1.05rem; line-height: 1.7; color: var(--mid-gray); margin-bottom: 1rem; }
.form-text ul { list-style: none; padding: 0; margin-top: 1.5rem; }
.form-text li {
  display: flex; gap: 10px; align-items: flex-start;
  font-size: 0.95rem; line-height: 1.6; color: var(--mid-gray); margin-bottom: 0.6rem;
}
.form-text li svg { flex-shrink: 0; margin-top: 3px; color: var(--orange); }
.form-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: 12px; padding: 2.5rem;
}
.form-card h3 {
  font-size: 1.2rem; font-weight: 700; color: var(--charcoal); margin-bottom: 1.5rem;
}
.form-row { margin-bottom: 1rem; }
.form-row label {
  display: block; font-size: 0.85rem; font-weight: 600;
  color: var(--charcoal); margin-bottom: 0.35rem;
}
.form-row input, .form-row select {
  width: 100%; padding: 10px 14px; font-size: 0.95rem;
  font-family: 'DM Sans', sans-serif;
  border: 1px solid var(--border); border-radius: 6px;
  background: var(--white); color: var(--charcoal);
  transition: border-color 0.2s;
}
.form-row input:focus, .form-row select:focus {
  outline: none; border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(212,98,26,0.1);
}
.form-row input::placeholder { color: var(--steel); }
.form-submit {
  width: 100%; margin-top: 0.5rem;
  background: var(--orange); color: white; padding: 14px 32px;
  font-size: 0.95rem; font-weight: 600; border: none; border-radius: 6px;
  font-family: 'DM Sans', sans-serif;
  cursor: pointer; transition: all 0.2s;
}
.form-submit:hover { background: var(--orange-hover); transform: translateY(-1px); box-shadow: 0 4px 16px rgba(212,98,26,0.25); }
.form-note { font-size: 0.8rem; color: var(--steel); margin-top: 0.75rem; text-align: center; }

/* GUIDE SECTION */
.guide-section { background: var(--white); }
.guide-inner {
  max-width: 680px; margin: 0 auto; text-align: center;
}
.guide-inner h2 {
  font-family: 'Instrument Serif', Georgia, serif;
  font-size: clamp(1.8rem, 3vw, 2.4rem); line-height: 1.15;
  letter-spacing: -0.02em; color: var(--charcoal); margin-bottom: 0.75rem;
}
.guide-inner p {
  font-size: 1.05rem; line-height: 1.7; color: var(--mid-gray); margin-bottom: 2rem;
}
.guide-form {
  display: grid; grid-template-columns: 1fr 1fr 1fr auto; gap: 0.75rem;
  align-items: end;
}
.guide-form .form-row { margin-bottom: 0; text-align: left; }
.guide-form .form-submit { width: auto; padding: 10px 24px; margin-top: 0; }
.guide-form label { font-size: 0.8rem; }
.guide-form input { padding: 10px 12px; font-size: 0.9rem; }

/* CTA */
.final-cta {
  background: var(--white); text-align: center;
  padding: 4rem clamp(1.5rem, 5vw, 6rem);
}
.final-cta .section-title { max-width: 720px; margin: 0 auto 1rem; }
.final-cta .section-subtitle { max-width: 560px; margin: 0 auto 2.5rem; }
.cta-buttons { display: flex; justify-content: center; gap: 1rem; flex-wrap: wrap; }

/* FOOTER */
footer {
  padding: 3rem clamp(1.5rem, 5vw, 6rem);
  border-top: 1px solid var(--border); background: var(--offwhite);
  text-align: center;
}
footer p { font-size: 0.85rem; color: var(--steel); }
footer a { color: var(--mid-gray); text-decoration: none; font-size: 0.85rem; }
footer a:hover { color: var(--charcoal); }
.footer-contact { margin-bottom: 1rem; }
.footer-contact strong { color: var(--charcoal); }
.footer-links { display: flex; justify-content: center; gap: 2rem; margin-bottom: 1rem; }
.footer-copyright { font-size: 0.8rem; color: var(--steel); }

.check-icon { width: 18px; height: 18px; }

/* DIAGRAM */
.diagram-wrap {
  margin: 2rem auto;
  max-width: 800px;
}
.transfer-diagram {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
}

/* PAGE HERO (partners, etc.) */
.page-hero {
  padding: 140px clamp(1.5rem, 5vw, 6rem) 3rem;
  max-width: 1200px; margin: 0 auto;
  text-align: center;
}
.page-hero h1 {
  font-family: 'Instrument Serif', Georgia, serif;
  font-size: clamp(2.4rem, 4vw, 3.5rem);
  line-height: 1.12; letter-spacing: -0.03em;
  color: var(--charcoal); margin-bottom: 1.25rem;
}
.page-hero h1 .orange { color: var(--orange); }
.page-hero p {
  font-size: 1.15rem; line-height: 1.7;
  color: var(--mid-gray); max-width: 620px; margin: 0 auto;
}

/* PARTNER CARD */
.partner-feature {
  max-width: 900px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1.2fr; gap: 3rem;
  align-items: start;
}
.partner-info h3 {
  font-family: 'Instrument Serif', Georgia, serif;
  font-size: 1.8rem; line-height: 1.2; color: var(--charcoal);
  margin-bottom: 0.5rem;
}
.partner-location {
  font-size: 0.9rem; color: var(--steel); font-weight: 500;
  margin-bottom: 1.25rem;
}
.partner-badges {
  display: flex; flex-wrap: wrap; gap: 0.5rem;
  margin-bottom: 1.5rem;
}
.badge {
  font-size: 0.75rem; font-weight: 600; text-transform: uppercase;
  letter-spacing: 0.06em; padding: 5px 12px; border-radius: 4px;
}
.badge-green { background: #DCFCE7; color: var(--green); }
.badge-blue { background: #DBEAFE; color: #2563EB; }
.badge-orange { background: #FFF7ED; color: var(--orange); }
.partner-desc {
  font-size: 1rem; line-height: 1.7; color: var(--mid-gray);
  margin-bottom: 1.5rem;
}
.partner-link {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 0.9rem; font-weight: 600; color: var(--orange);
  text-decoration: none; transition: gap 0.2s;
}
.partner-link:hover { gap: 10px; }
.partner-link svg { width: 16px; height: 16px; }

.partner-services {
  background: var(--offwhite); border: 1px solid var(--border);
  border-radius: 12px; padding: 2rem;
}
.partner-services h4 {
  font-size: 0.8rem; font-weight: 600; text-transform: uppercase;
  letter-spacing: 0.1em; color: var(--steel); margin-bottom: 1.25rem;
}
.partner-services ul { list-style: none; padding: 0; }
.partner-services li {
  display: flex; gap: 10px; align-items: flex-start;
  font-size: 0.95rem; line-height: 1.6; color: var(--mid-gray);
  margin-bottom: 0.75rem;
}
.partner-services li svg { flex-shrink: 0; margin-top: 3px; color: var(--green); }

/* HOW IT WORKS TOGETHER */
.together-grid {
  display: grid; grid-template-columns: 1fr auto 1fr; gap: 1.5rem;
  align-items: center; max-width: 800px; margin: 0 auto;
}
.together-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: 12px; padding: 2rem; text-align: center;
}
.together-card h4 {
  font-size: 1.1rem; font-weight: 700; color: var(--charcoal);
  margin-bottom: 0.5rem;
}
.together-card p { font-size: 0.9rem; color: var(--mid-gray); line-height: 1.6; }
.together-arrow {
  font-size: 1.5rem; color: var(--orange); font-weight: 700;
}

/* FUTURE PARTNERS */
.future-card {
  max-width: 620px; margin: 0 auto;
  background: var(--offwhite); border: 2px dashed var(--border);
  border-radius: 12px; padding: 2.5rem; text-align: center;
}
.future-card h3 {
  font-family: 'Instrument Serif', Georgia, serif;
  font-size: 1.5rem; color: var(--charcoal); margin-bottom: 0.75rem;
}
.future-card p {
  font-size: 1rem; line-height: 1.7; color: var(--mid-gray);
  margin-bottom: 1.5rem;
}

/* THANK-YOU PAGES */
.thanks-body {
  background: var(--offwhite);
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}
.thanks-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 3rem;
  max-width: 560px;
  text-align: center;
}
.check-circle {
  width: 64px; height: 64px;
  background: #DCFCE7;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 1.8rem;
  color: var(--green);
}
.thanks-card h1 {
  font-family: 'Instrument Serif', Georgia, serif;
  font-size: 2rem;
  color: var(--charcoal);
  margin-bottom: 0.75rem;
  letter-spacing: -0.02em;
}
.thanks-card p {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--mid-gray);
  margin-bottom: 1.5rem;
}
.thanks-card .detail {
  font-size: 0.95rem;
  color: var(--mid-gray);
  margin-bottom: 2rem;
}
.back-link {
  display: inline-block;
  background: var(--orange);
  color: white;
  padding: 14px 36px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.2s;
  margin-bottom: 1.5rem;
}
.back-link:hover {
  background: var(--orange-hover);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(212,98,26,0.25);
}
.download-btn {
  display: inline-block;
  background: var(--orange);
  color: white;
  padding: 14px 36px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.2s;
  margin-bottom: 1.5rem;
}
.download-btn:hover {
  background: var(--orange-hover);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(212,98,26,0.25);
}
.guide-link {
  display: block;
  color: var(--orange);
  text-decoration: none;
  font-size: 0.9rem;
  margin-top: 0.5rem;
}
.guide-link:hover { text-decoration: underline; }
.back-link-plain {
  display: block;
  color: var(--mid-gray);
  text-decoration: none;
  font-size: 0.9rem;
}
.back-link-plain:hover { color: var(--charcoal); }

/* BLOG */
.blog-list { list-style: none; padding: 0; }
.blog-post-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: 10px; padding: 2rem; margin-bottom: 1.5rem;
  transition: box-shadow 0.3s, transform 0.3s;
}
.blog-post-card:hover { box-shadow: 0 8px 32px rgba(0,0,0,0.06); transform: translateY(-2px); }
.blog-post-card h2 {
  font-family: 'Instrument Serif', Georgia, serif;
  font-size: 1.5rem; line-height: 1.2; color: var(--charcoal);
  margin-bottom: 0.5rem;
}
.blog-post-card h2 a { color: inherit; text-decoration: none; }
.blog-post-card h2 a:hover { color: var(--orange); }
.blog-meta {
  font-size: 0.8rem; color: var(--steel); margin-bottom: 0.75rem;
}
.blog-post-card p {
  font-size: 1rem; line-height: 1.7; color: var(--mid-gray);
}
.blog-tags { display: flex; gap: 0.5rem; margin-top: 1rem; flex-wrap: wrap; }
.blog-tag {
  font-size: 0.75rem; font-weight: 600; text-transform: uppercase;
  letter-spacing: 0.06em; padding: 4px 10px; border-radius: 4px;
  background: #FFF7ED; color: var(--orange);
}

/* BLOG SINGLE */
.blog-content {
  max-width: 720px; margin: 0 auto;
  font-size: 1.05rem; line-height: 1.8; color: var(--mid-gray);
}
.blog-content h2 {
  font-family: 'Instrument Serif', Georgia, serif;
  font-size: 1.6rem; color: var(--charcoal); margin: 2rem 0 1rem;
}
.blog-content h3 {
  font-size: 1.2rem; font-weight: 700; color: var(--charcoal); margin: 1.5rem 0 0.75rem;
}
.blog-content p { margin-bottom: 1.25rem; }
.blog-content ul, .blog-content ol { margin-bottom: 1.25rem; padding-left: 1.5rem; }
.blog-content li { margin-bottom: 0.5rem; }
.blog-content blockquote {
  border-left: 3px solid var(--orange); padding-left: 1.5rem;
  font-style: italic; color: var(--charcoal); margin: 1.5rem 0;
}
.blog-content a { color: var(--orange); text-decoration: underline; }
.blog-content a:hover { color: var(--orange-hover); }

/* PAGINATION */
.pagination {
  display: flex; justify-content: center; gap: 0.5rem;
  margin-top: 2.5rem;
}
.pagination a, .pagination span {
  display: inline-flex; align-items: center; justify-content: center;
  width: 40px; height: 40px; border-radius: 6px;
  font-size: 0.9rem; font-weight: 600; text-decoration: none;
  border: 1px solid var(--border); color: var(--mid-gray);
  transition: all 0.2s;
}
.pagination a:hover { border-color: var(--orange); color: var(--orange); }
.pagination .active {
  background: var(--orange); color: white; border-color: var(--orange);
}

/* FADE */
.fade-up {
  opacity: 0; transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }

/* HAMBURGER */
.hamburger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 4px;
}
.hamburger span {
  width: 22px; height: 2px; background: var(--charcoal);
  border-radius: 2px; transition: all 0.3s;
}
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* RESPONSIVE */
@media (max-width: 1024px) {
  .hero { grid-template-columns: 1fr; gap: 3rem; }
  .ps-grid { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: repeat(2, 1fr); }
  .feature-row, .feature-row.reverse { grid-template-columns: 1fr; direction: ltr; }
  .form-section .section-inner { grid-template-columns: 1fr; gap: 2rem; }
  .guide-form { grid-template-columns: 1fr; }
  .guide-form .form-submit { width: 100%; }
  .partner-feature { grid-template-columns: 1fr; gap: 2rem; }
  .together-grid { grid-template-columns: 1fr; gap: 1rem; }
  .together-arrow { transform: rotate(90deg); }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-links.open {
    display: flex; flex-direction: column;
    position: fixed; top: 72px; left: 0; right: 0;
    background: rgba(255,255,255,0.98); backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
    padding: 1.5rem clamp(1.5rem, 5vw, 6rem);
    gap: 1rem; z-index: 99;
    box-shadow: 0 8px 32px rgba(0,0,0,0.06);
  }
  .nav-links.open a { font-size: 1rem; color: var(--charcoal); }
  .nav-links.open .nav-cta { text-align: center; }
  .hamburger { display: flex; }
  .nav-logo span { font-size: 0.85rem; }
  .hero { padding-top: 110px; }
  .steps-grid { grid-template-columns: 1fr !important; }
}

@media (min-width: 1800px) {
  .hero { max-width: 1400px; }
  .section-inner { max-width: 1400px; }
}

/* LEGAL PAGES */
.legal-content {
  max-width: 720px; margin: 0 auto; line-height: 1.8;
}
.legal-content h1 { display: none; }
.legal-content h2 { font-size: 1.3rem; margin: 2.5rem 0 0.75rem; }
.legal-content h3 { font-size: 1.1rem; margin: 1.5rem 0 0.5rem; }
.legal-content p { margin-bottom: 1rem; color: var(--mid-gray); font-size: 0.95rem; }
.legal-content ul, .legal-content ol { margin: 0.5rem 0 1rem 1.5rem; color: var(--mid-gray); font-size: 0.95rem; }
.legal-content li { margin-bottom: 0.35rem; }
.legal-content hr { border: none; border-top: 1px solid var(--border); margin: 2rem 0; }
.legal-content a { color: var(--orange); text-decoration: none; }
.legal-content a:hover { text-decoration: underline; }
.legal-content strong { color: var(--charcoal); }

/* CONTACT PAGE */
.contact-cards {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem;
  max-width: 780px; margin: 0 auto;
}
.contact-card {
  text-align: center; padding: 2rem 1.5rem;
  background: var(--offwhite); border: 1px solid var(--border); border-radius: 12px;
}
.contact-card svg { margin-bottom: 0.75rem; }
.contact-card h4 { margin-bottom: 0.5rem; font-size: 1rem; }
.contact-card a { color: var(--orange); text-decoration: none; font-size: 0.9rem; word-break: break-all; }
.contact-card a:hover { text-decoration: underline; }
.contact-card p { font-size: 0.9rem; color: var(--mid-gray); line-height: 1.5; }

@media (max-width: 600px) {
  .contact-cards { grid-template-columns: 1fr; }
}
