/* Shared styles for the Brand Core web UI kit */
@import url('../../colors_and_type.css');

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body { background: var(--surface-page); color: var(--text-primary); font-family: var(--font-body); }
img { max-width: 100%; display: block; }

/* Top nav */
.topstrip { background: var(--blue-700); color: #fff; font-size: 12px; padding: 6px 0; }
.topstrip .wrap { max-width: 1200px; margin: 0 auto; padding: 0 32px; display: flex; justify-content: space-between; align-items: center; gap: 16px; }
.topstrip a { color: #fff; opacity: 0.9; text-decoration: none; }
.topstrip a:hover { opacity: 1; }

nav.main { background: #fff; border-bottom: 1px solid var(--neutral-300); position: sticky; top: 0; z-index: 10; }
nav.main .wrap { max-width: 1200px; margin: 0 auto; padding: 14px 32px; display: flex; align-items: center; gap: 32px; }
nav.main .logo img { height: 46px; }
nav.main ul { list-style: none; display: flex; gap: 24px; margin: 0; padding: 0; }
nav.main a { color: var(--text-primary); font-weight: 500; font-size: 15px; padding: 6px 2px; }
nav.main a:hover { color: var(--blue-500); text-decoration: none; }
nav.main .spacer { flex: 1; }
nav.main .cta { background: var(--green-500); color: #fff; font-weight: 600; padding: 10px 18px; border-radius: 999px; font-size: 14px; box-shadow: var(--shadow-button); }
nav.main .cta:hover { background: var(--green-700); text-decoration: none; color: #fff; }

/* Hero */
.hero {
  background: linear-gradient(135deg, #1F4E8C 0%, #163A69 70%);
  color: #fff; position: relative; overflow: hidden;
}
.hero::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(circle at 80% 30%, rgba(122,192,67,0.25), transparent 60%),
              radial-gradient(circle at 15% 85%, rgba(31,78,140,0.5), transparent 55%);
  pointer-events: none;
}
.hero .wrap { max-width: 1200px; margin: 0 auto; padding: 80px 32px; display: grid; grid-template-columns: 1.2fr 1fr; gap: 40px; align-items: center; position: relative; }
.hero h1 { font-family: var(--font-heading); font-weight: 700; font-size: 56px; line-height: 1.05; letter-spacing: -0.02em; margin: 0 0 20px; color: #fff; }
.hero h1 em { font-style: normal; color: var(--green-500); }
.hero p { font-size: 19px; line-height: 1.55; opacity: 0.92; margin: 0 0 28px; max-width: 520px; color: #fff; }
.hero .proof span { color: #fff; }
.hero .row { display: flex; gap: 12px; flex-wrap: wrap; }
.hero .proof { display: flex; gap: 18px; margin-top: 32px; font-size: 13px; opacity: 0.85; flex-wrap: wrap; }
.hero .proof span { display: inline-flex; align-items: center; gap: 6px; }
.hero .proof svg { color: var(--green-500); }
.hero .visual { position: relative; min-height: 380px; }
.hero .visual .mascot { position: absolute; right: -10px; bottom: -40px; width: 100%; max-width: 440px; }
.hero .visual .medal {
  position: absolute; top: 0; right: 0; width: 140px; height: 140px; border-radius: 50%;
  background: rgba(255,255,255,0.06); backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.18); display: flex; flex-direction: column; align-items: center; justify-content: center;
  font-family: var(--font-heading); font-weight: 700; color: #fff; text-align: center; padding: 10px; font-size: 14px; line-height: 1.2;
}
.hero .visual .medal strong { font-size: 34px; color: var(--green-500); display: block; }

/* Buttons */
.btn { display: inline-flex; align-items: center; gap: 8px; font-family: var(--font-body); font-weight: 600; font-size: 15px; padding: 14px 26px; border-radius: 999px; border: 0; cursor: pointer; text-decoration: none; }
.btn.primary { background: var(--green-500); color: #fff; box-shadow: 0 6px 18px rgba(94,158,47,0.35); }
.btn.primary:hover { background: var(--green-700); color: #fff; text-decoration: none; }
.btn.ghost-light { background: rgba(255,255,255,0.1); color: #fff; border: 1.5px solid rgba(255,255,255,0.4); }
.btn.ghost-light:hover { background: rgba(255,255,255,0.18); text-decoration: none; color: #fff; }
.btn.secondary { background: #fff; color: var(--blue-500); border: 2px solid var(--blue-500); }
.btn.secondary:hover { background: #EEF2F6; text-decoration: none; }

/* Sections */
section { padding: 80px 0; }
section .wrap { max-width: 1200px; margin: 0 auto; padding: 0 32px; }
section .eyebrow { font-family: var(--font-body); font-size: 13px; font-weight: 600; color: var(--blue-500); text-transform: uppercase; letter-spacing: 0.08em; margin: 0 0 10px; }
section h2 { font-family: var(--font-heading); font-weight: 600; font-size: 38px; line-height: 1.2; letter-spacing: -0.01em; margin: 0 0 14px; color: var(--text-primary); }
section .lede { font-size: 18px; line-height: 1.55; color: var(--text-secondary); max-width: 640px; margin: 0 0 40px; }

/* Services grid */
.services { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.service-card { background: #fff; border-radius: 20px; padding: 28px; box-shadow: var(--shadow-card); transition: transform .2s ease, box-shadow .2s ease; }
.service-card:hover { transform: translateY(-2px); box-shadow: var(--shadow-card-hover); }
.service-card .icon { width: 52px; height: 52px; border-radius: 14px; background: var(--neutral-100); color: var(--blue-500); display: flex; align-items: center; justify-content: center; margin-bottom: 20px; }
.service-card.green .icon { background: #E9F5DA; color: var(--green-700); }
.service-card h3 { font-family: var(--font-heading); font-weight: 600; font-size: 22px; margin: 0 0 10px; color: var(--text-primary); }
.service-card p { font-size: 15px; line-height: 1.55; color: var(--text-secondary); margin: 0 0 18px; }
.service-card ul { list-style: none; padding: 0; margin: 0 0 20px; }
.service-card li { font-size: 13.5px; color: var(--text-primary); padding: 6px 0; display: flex; gap: 8px; align-items: center; }
.service-card li::before { content: "✓"; color: var(--green-500); font-weight: 700; }
.service-card .more { color: var(--blue-500); font-weight: 600; font-size: 14px; text-decoration: none; }
.service-card .more:hover { text-decoration: underline; }

/* Proofs */
.proofs { background: #fff; }
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; margin-top: 20px; }
.stat { text-align: left; }
.stat .n { font-family: var(--font-heading); font-weight: 700; font-size: 48px; line-height: 1; color: var(--blue-500); letter-spacing: -0.02em; }
.stat .l { font-size: 14px; color: var(--text-secondary); margin-top: 6px; }

/* Testimonials */
.testi { background: var(--neutral-50); }
.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.quote { background: #fff; border-radius: 20px; padding: 28px; box-shadow: var(--shadow-card); position: relative; }
.quote .stars { color: var(--retail-gold-500); margin-bottom: 12px; }
.quote p { font-size: 15px; line-height: 1.6; color: var(--text-primary); margin: 0 0 20px; }
.quote footer { display: flex; gap: 12px; align-items: center; }
.quote .avatar { width: 40px; height: 40px; border-radius: 50%; background: linear-gradient(135deg,#1F4E8C,#163A69); color: #fff; display: flex; align-items: center; justify-content: center; font-weight: 600; font-size: 14px; }
.quote .who { font-size: 13px; }
.quote .who b { display: block; color: var(--text-primary); }
.quote .who span { color: var(--text-secondary); font-size: 12px; }

/* FAQ */
.faq-list { display: flex; flex-direction: column; gap: 10px; }
.faq-item { background: #fff; border-radius: 14px; border: 1px solid var(--neutral-300); overflow: hidden; }
.faq-item summary { list-style: none; cursor: pointer; padding: 20px 24px; font-family: var(--font-heading); font-weight: 600; font-size: 17px; color: var(--text-primary); display: flex; justify-content: space-between; align-items: center; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: "+"; color: var(--blue-500); font-size: 24px; font-weight: 300; transition: transform .2s; }
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item .content { padding: 0 24px 20px; color: var(--text-secondary); line-height: 1.6; font-size: 15px; }

/* Contact */
.contact-strip { background: var(--blue-500); color: #fff; border-radius: 24px; padding: 44px; display: grid; grid-template-columns: 1.3fr 1fr; gap: 32px; align-items: center; overflow: hidden; position: relative; }
.contact-strip h2 { color: #fff !important; margin-bottom: 8px; }
.contact-strip p { color: rgba(255,255,255,0.9) !important; font-size: 16px; margin: 0 0 20px; line-height: 1.5; }
.contact-strip .details span { color: #fff; }
.contact-strip .details { display: flex; flex-direction: column; gap: 10px; font-size: 15px; }
.contact-strip .details span { display: flex; align-items: center; gap: 10px; }
.contact-strip .details svg { color: var(--green-500); flex: 0 0 auto; }

/* Footer */
footer.site { background: var(--blue-700); color: rgba(255,255,255,0.8); padding: 56px 0 28px; font-size: 14px; }
footer.site .wrap { max-width: 1200px; margin: 0 auto; padding: 0 32px; }
footer.site .cols { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 32px; border-bottom: 1px solid rgba(255,255,255,0.12); }
footer.site h4 { font-family: var(--font-heading); font-weight: 600; font-size: 15px; color: #fff; margin: 0 0 14px; text-transform: uppercase; letter-spacing: 0.06em; }
footer.site ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 8px; }
footer.site a { color: rgba(255,255,255,0.8); text-decoration: none; }
footer.site a:hover { color: #fff; }
footer.site .logo img { height: 48px; margin-bottom: 14px; filter: brightness(0) invert(1); opacity: 0.9; }
footer.site .bottom { padding-top: 20px; display: flex; justify-content: space-between; font-size: 12px; opacity: 0.7; }
