:root {
  --bg: #ffffff;
  --text: #111827;
  --muted: #5b6474;
  --primary: #cf121b;
  --primary-dark: #9f0c13;
  --accent: #d8ac29;
  --soft: #fff6f6;
  --line: #eceef2;
  --shadow: 0 18px 50px rgba(17, 24, 39, 0.10);
  --radius: 24px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Inter', system-ui, sans-serif;
  color: var(--text);
  background: var(--bg);
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.container {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0,0,0,0.05);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 74px;
}

.brand {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--primary);
}

.menu {
  display: flex;
  gap: 24px;
  align-items: center;
}

.menu a {
  color: var(--muted);
  font-weight: 600;
  transition: color .2s ease;
}
.menu a:hover { color: var(--primary); }

.menu-toggle {
  display: none;
  border: none;
  background: transparent;
  font-size: 1.65rem;
  cursor: pointer;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 22px;
  border-radius: 999px;
  font-weight: 700;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.btn:hover { transform: translateY(-2px); }

.btn-primary {
  background: linear-gradient(135deg, var(--primary), #ea3232);
  color: #fff;
  box-shadow: 0 14px 30px rgba(207, 18, 27, .24);
}

.btn-secondary {
  border: 1px solid var(--line);
  background: #fff;
  color: var(--text);
}

.hero {
  position: relative;
  padding: 22px 0 36px;
}

.hero-banner {
  position: relative;
  width: min(1220px, calc(100% - 32px));
  margin: 0 auto;
  border-radius: 30px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.hero-banner img {
  width: 100%;
  min-height: 260px;
  max-height: 520px;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.08) 0%, rgba(0,0,0,0.42) 100%);
}

.hero-content {
  margin-top: -120px;
  position: relative;
  z-index: 2;
}

.hero-card {
  width: min(620px, 100%);
  background: rgba(255,255,255,0.94);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.7);
  border-radius: 28px;
  padding: 32px;
  box-shadow: var(--shadow);
}

.eyebrow, .section-tag {
  display: inline-block;
  padding: 8px 14px;
  border-radius: 999px;
  background: var(--soft);
  color: var(--primary);
  font-size: .9rem;
  font-weight: 700;
  margin-bottom: 14px;
}

.hero-card h1,
.section h2 {
  margin: 0 0 14px;
  line-height: 1.08;
}

.hero-card h1 {
  font-size: clamp(2rem, 5vw, 3.8rem);
}

.hero-card p,
.lead,
.section-head p,
.message-bottom,
.contact-side p,
.info-panel p,
.habit-card p {
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.75;
}

.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 24px;
}

.section {
  padding: 72px 0;
}

.two-col,
.contact-layout {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 28px;
  align-items: stretch;
}

.info-panel,
.contact-card,
.contact-side,
.message-box {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: 0 12px 32px rgba(17,24,39,.06);
}

.info-icon {
  width: 72px;
  height: 72px;
  display: grid;
  place-items: center;
  border-radius: 22px;
  background: linear-gradient(135deg, #fff2f2, #fff9e8);
  font-size: 2rem;
  margin-bottom: 18px;
}

.center { text-align: center; }
.section-head { max-width: 760px; margin: 0 auto 28px; }

.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.habit-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 26px;
  box-shadow: 0 14px 34px rgba(17, 24, 39, 0.05);
  transition: transform .25s ease, box-shadow .25s ease;
}
.habit-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 40px rgba(17, 24, 39, 0.10);
}

.habit-icon {
  width: 64px;
  height: 64px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, #fff2f2, #fff9ea);
  border-radius: 18px;
  font-size: 1.75rem;
  margin-bottom: 18px;
}

.habit-card h3 {
  margin: 0 0 10px;
  font-size: 1.18rem;
}

.message-box {
  text-align: center;
  background: linear-gradient(135deg, #fff, #fff8f8);
}

.message-top {
  font-size: 1rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 10px;
}

.contact-item { margin-bottom: 18px; }
.contact-label {
  display: block;
  font-size: .88rem;
  font-weight: 800;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: .05em;
  margin-bottom: 8px;
}

.hashtags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}
.hashtags span {
  padding: 10px 14px;
  border-radius: 999px;
  background: #f7f8fb;
  color: var(--muted);
  font-weight: 600;
  font-size: .92rem;
}

.footer {
  border-top: 1px solid var(--line);
  padding: 26px 0 90px;
  background: #fff;
}
.footer-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.footer h3 { margin: 0 0 6px; }
.footer p { margin: 0; color: var(--muted); }

.floating-call {
  position: fixed;
  right: 18px;
  bottom: 18px;
  width: 62px;
  height: 62px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 1.45rem;
  color: #fff;
  background: linear-gradient(135deg, var(--primary), #ea3232);
  box-shadow: 0 18px 34px rgba(207, 18, 27, 0.30);
  z-index: 1000;
}

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .6s ease, transform .6s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 920px) {
  .cards-grid,
  .two-col,
  .contact-layout {
    grid-template-columns: 1fr 1fr;
  }

  .hero-content { margin-top: -80px; }

  .menu {
    position: absolute;
    top: 74px;
    left: 16px;
    right: 16px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 20px;
    padding: 18px;
    flex-direction: column;
    align-items: flex-start;
    box-shadow: var(--shadow);
    display: none;
  }
  .menu.open { display: flex; }
  .menu-toggle { display: block; }
  .desktop-call { display: none; }
}

@media (max-width: 700px) {
  .cards-grid,
  .two-col,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .hero-banner img { min-height: 220px; }
  .hero-content { margin-top: -50px; }
  .hero-card { padding: 24px; }
  .section { padding: 56px 0; }
  .footer-content {
    flex-direction: column;
    align-items: flex-start;
  }
}
