:root {
  --orange: #F97316;
  --orange-lt: #FFF0E6;
  --blue: #2B7EC1;
  --blue-lt: #E8F3FB;
  --cream: #FAF2E8;
  --cream-2: #F5E8D8;
  --ink: #1A1A24;
  --ink-2: #3D3D4A;
  --sub: #6B6F7A;
  --card: #FFFFFF;
  --border: #EADBC8;
  --shadow-sm: 0 4px 16px rgba(46, 38, 30, 0.08);
  --shadow: 0 10px 40px rgba(46, 38, 30, 0.10);
}

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

html {
  scroll-behavior: smooth
}

body {
  font-family: 'Nunito', -apple-system, 'Segoe UI', sans-serif;
  background: var(--cream);
  color: var(--ink);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

a {
  color: var(--blue);
  text-decoration: none
}

a:hover {
  text-decoration: underline
}

.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(250, 242, 232, 0.9);
  backdrop-filter: saturate(160%) blur(14px);
  -webkit-backdrop-filter: saturate(160%) blur(14px);
  border-bottom: 1px solid rgba(234, 219, 200, 0.6);
}

.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 14px 24px
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 900;
  font-size: 18px;
  color: var(--ink);
  text-decoration: none
}

.brand img {
  width: 28px;
  height: 28px;
  object-fit: contain
}

.brand .b {
  color: var(--blue)
}

.brand .o {
  color: var(--orange)
}

.back {
  margin-left: auto;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 700;
  color: var(--ink-2);
  padding: 8px 14px;
  border-radius: 20px;
  border: 1px solid var(--border);
  background: var(--card);
  transition: border-color .15s, color .15s;
}

.back:hover {
  color: var(--orange);
  border-color: var(--orange);
  text-decoration: none
}

/* HERO */
.hero-support {
  max-width: 1100px;
  margin: 0 auto;
  padding: 56px 24px 48px;
  text-align: center;
}

.eyebrow {
  font-size: 12px;
  font-weight: 900;
  color: var(--orange);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 12px
}

h1 {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 900;
  letter-spacing: -1px;
  line-height: 1.1;
  margin-bottom: 14px
}

.hero-sub {
  font-size: 17px;
  color: var(--ink-2);
  max-width: 520px;
  margin: 0 auto 40px
}

/* CONTACT CARDS */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px 64px;
}

.contact-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 28px 24px;
  text-align: center;
  transition: transform .2s, box-shadow .2s;
}

.contact-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow)
}

.contact-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  font-size: 24px;
}

.contact-card h3 {
  font-size: 17px;
  font-weight: 900;
  margin-bottom: 8px
}

.contact-card p {
  font-size: 14px;
  color: var(--sub);
  margin-bottom: 16px;
  line-height: 1.55
}

.contact-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 800;
  background: var(--ink);
  color: #fff;
  transition: background .15s, transform .15s;
  text-decoration: none;
}

.contact-btn:hover {
  background: var(--orange);
  transform: translateY(-1px);
  text-decoration: none
}

.contact-btn.secondary {
  background: var(--card);
  color: var(--ink);
  border: 1.5px solid var(--border)
}

.contact-btn.secondary:hover {
  background: var(--orange-lt);
  border-color: var(--orange);
  color: var(--orange)
}

/* FAQ */
.faq-section {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 24px 80px
}

h2.faq-title {
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 900;
  letter-spacing: -0.5px;
  margin-bottom: 8px;
  text-align: center
}

.faq-lead {
  font-size: 16px;
  color: var(--sub);
  text-align: center;
  margin-bottom: 40px
}

.faq-group {
  margin-bottom: 32px
}

.faq-group-title {
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 12px;
}

.faq-item {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 16px;
  margin-bottom: 10px;
  overflow: hidden;
}

.faq-q {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 18px 22px;
  font-size: 15px;
  font-weight: 800;
  color: var(--ink);
  cursor: pointer;
  background: none;
  border: none;
  font-family: inherit;
  text-align: left;
  transition: color .15s;
}

.faq-q:hover {
  color: var(--orange)
}

.faq-q .arr {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--cream-2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background .15s, transform .3s;
}

.faq-item.open .faq-q .arr {
  background: var(--orange-lt);
  transform: rotate(180deg)
}

.faq-item.open .faq-q {
  color: var(--orange)
}

.faq-a {
  display: none;
  padding: 0 22px 18px;
  font-size: 14px;
  color: var(--ink-2);
  line-height: 1.7;
}

.faq-item.open .faq-a {
  display: block
}

.faq-a a {
  color: var(--blue);
  font-weight: 700
}

/* CTA bottom */
.cta-bottom {
  max-width: 760px;
  margin: 0 auto 80px;
  padding: 0 24px;
}

.cta-box {
  background: linear-gradient(135deg, var(--orange) 0%, #FB923C 60%, var(--blue) 140%);
  border-radius: 24px;
  padding: 40px 36px;
  color: #fff;
  text-align: center;
}

.cta-box h3 {
  font-size: 22px;
  font-weight: 900;
  margin-bottom: 8px
}

.cta-box p {
  font-size: 15px;
  opacity: 0.95;
  margin-bottom: 24px
}

.cta-box a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  color: var(--ink);
  padding: 12px 24px;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 800;
  transition: opacity .15s;
  text-decoration: none;
}

.cta-box a:hover {
  opacity: 0.9;
  text-decoration: none
}

/* Footer */
footer {
  background: var(--ink);
  color: #fff;
  padding: 60px 24px 30px;
}

.foot-inner {
  max-width: 1160px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px
}

.foot-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px
}

.foot-brand img {
  width: 32px;
  height: 32px;
  object-fit: contain
}

.foot-brand .name {
  font-weight: 900;
  font-size: 20px
}

.foot-brand .name .b {
  color: #60A5FA
}

.foot-brand .name .o {
  color: #FB923C
}

footer p.tag {
  color: #9CA3AF;
  font-size: 14px;
  line-height: 1.6;
  max-width: 280px
}

.foot-col h5 {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 14px;
  color: #FB923C
}

.foot-col a {
  display: block;
  font-size: 14px;
  color: #D1D5DB;
  margin-bottom: 10px;
  transition: color .15s
}

.foot-col a:hover {
  color: #fff
}

.foot-bottom {
  max-width: 1160px;
  margin: 0 auto;
  border-top: 1px solid #2A2A38;
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 13px;
  color: #9CA3AF;
}

.bg-orange-lt {
  background: var(--orange-lt)
}

.bg-blue-lt {
  background: var(--blue-lt)
}

.bg-green-lt {
  background: #E8F8F0
}

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

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

  .cta-box {
    padding: 28px 20px
  }
}