:root {
  --bg: #ffffff;
  --surface: #ffffff;
  --surface-soft: #fff7ef;
  --text: #102a43;
  --text-muted: #627d98;
  --accent: #ff5f2e;
  --accent-soft: #ffb347;
  --border: rgba(16, 42, 67, 0.08);
  --max-width: 1200px;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: #ffffff;
  color: var(--text);
  min-height: 100vh;
}

img {
  max-width: 100%;
}

.container {
  width: min(100%, var(--max-width));
  margin: 0 auto;
  padding: 0 1.5rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid rgba(16, 42, 67, 0.08);
  backdrop-filter: blur(10px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--text);
  text-decoration: none;
  font-weight: 700;
}

.logo-image {
  max-width: 14rem;
  max-height: 4rem;
  width: auto;
  height: auto;
  object-fit: contain;
}

.main-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
}

.main-nav a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.95rem;
}

.main-nav a:hover {
  color: var(--accent);
}

.hero {
  padding: 5rem 0 2.5rem;
  background: linear-gradient(180deg, #fff7ef 0%, #ffffff 100%);
}

.hero-grid {
  display: grid;
  align-items: center;
  gap: 2rem;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
}

.hero-visual {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
}

.hero-image {
  width: 100%;
  max-width: 560px;
  border-radius: 1.5rem;
  object-fit: cover;
  border: 1px solid rgba(255, 95, 46, 0.18);
  box-shadow: 0 24px 60px rgba(255, 95, 46, 0.15);
}

.section-media {
  margin-top: 2rem;
  display: flex;
  justify-content: center;
}

.section-media img {
  width: 100%;
  max-width: 1100px;
  border-radius: 1.5rem;
  object-fit: cover;
  border: 1px solid rgba(16, 42, 67, 0.08);
  box-shadow: 0 20px 45px rgba(16, 42, 67, 0.08);
}

.eyebrow {
  margin: 0 0 1rem;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.8rem;
}

.hero-copy h1 {
  margin: 0;
  font-size: clamp(2.5rem, 4vw, 4rem);
  line-height: 1.05;
}

.hero-copy p {
  max-width: 42rem;
  color: var(--text-muted);
  line-height: 1.85;
  margin: 1.25rem 0 1.75rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.95rem 1.75rem;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
  transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  color: #ffffff;
  background: linear-gradient(135deg, #ff5f2e, #ffb347);
  box-shadow: 0 16px 32px rgba(255, 95, 46, 0.25);
}

.btn-secondary {
  color: var(--text);
  border: 1px solid rgba(16, 42, 67, 0.15);
  background: rgba(255, 255, 255, 0.88);
}

.hero-visual .hero-card {
  padding: 2rem;
  width: min(100%, 28rem);
  border-radius: 1.75rem;
  background: linear-gradient(180deg, rgba(255, 245, 236, 0.95), #ffffff);
  border: 1px solid rgba(255, 95, 46, 0.14);
  box-shadow: 0 24px 60px rgba(255, 95, 46, 0.14);
}

.blog-card {
  background: rgba(255, 255, 255, 0.06);
}

.hero-card p {
  margin: 0;
  color: var(--text-muted);
  line-height: 1.75;
}

.section {
  padding: 3rem 0;
}

.section-header {
  margin-bottom: 2rem;
}

.section-header h2,
.section-header h1 {
  margin: 0.5rem 0 0;
  font-size: clamp(2rem, 3vw, 2.75rem);
  line-height: 1.1;
}

.grid {
  display: grid;
  gap: 1.5rem;
}

.three-up {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.four-up {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.card,
.process-step {
  padding: 1.75rem;
  border-radius: 1.25rem;
  background: #ffffff;
  border: 1px solid rgba(16, 42, 67, 0.08);
  box-shadow: 0 16px 30px rgba(16, 42, 67, 0.06);
}

.card h3,
.process-step h4 {
  margin-top: 0;
  color: var(--text);
}

.card p,
.process-step p {
  margin: 0.85rem 0 0;
  color: var(--text-muted);
  line-height: 1.75;
}

.card-light {
  background: #fff7ef;
}

.process-step {
  min-height: 170px;
}

.site-footer {
  padding: 3rem 0 2rem;
  background: #ffffff;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
  align-items: start;
}

.footer-links,
.social-links {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-link {
  color: var(--text-muted);
  text-decoration: none;
}

.footer-links a,
.social-links a {
  color: var(--text-muted);
  text-decoration: none;
}

.footer-links a:hover,
.social-links a:hover {
  color: var(--text);
}

.footer-bottom {
  margin-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 1.5rem;
  color: var(--text-muted);
  font-size: 0.95rem;
}

.content-page {
  padding-top: 2rem;
  padding-bottom: 4rem;
}

.policy-text {
  max-width: 860px;
  margin-top: 1.5rem;
  color: var(--text-muted);
}

.policy-text h2 {
  margin-top: 2rem;
  color: var(--text);
  font-size: 1.35rem;
}

.policy-text p,
.policy-text li {
  line-height: 1.85;
}

.policy-text ul {
  padding-left: 1.25rem;
}

@media (max-width: 900px) {
  .hero-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .grid.three-up,
  .grid.four-up {
    grid-template-columns: 1fr;
  }

  .main-nav {
    justify-content: flex-start;
  }
}

@media (max-width: 640px) {
  .header-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero {
    padding-top: 3rem;
  }

  .btn {
    width: 100%;
  }
}
