
:root {
  --bg: #F6F5F7;
  --white: #ffffff;
  --text: #24243A;
  --muted: #5E5B69;
  --line: #E8E3E8;
  --accent: #FF365B;
  --accent-soft: #FFF0F3;
  --accent-soft-2: #FFF4F6;
  --shadow: 0 24px 60px rgba(0,0,0,0.08);
  --shadow-sm: 0 8px 24px rgba(0,0,0,0.05);
  --radius: 22px;
  --radius-sm: 14px;
  --pill: 999px;
  --max: 1220px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Inter", Arial, Helvetica, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}
body.menu-open { overflow: hidden; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; }
.container { width: min(var(--max), calc(100% - 32px)); margin: 0 auto; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.98);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 6px 18px rgba(36,36,58,0.04);
}
.header-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 18px;
  min-height: 104px;
  padding: 12px 0;
}
.brand { display: flex; align-items: center; min-width: 0; }
.brand img { width: 360px; max-width: min(38vw, 360px); height: auto; }

.desktop-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  font-size: .95rem;
  font-weight: 700;
}
.desktop-nav a {
  padding: 10px 12px;
  border-radius: 999px;
  white-space: nowrap;
}
.desktop-nav a:hover,
.desktop-nav a[aria-current="page"] {
  color: var(--accent);
  background: var(--accent-soft);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}
.phone-link {
  font-size: .96rem;
  font-weight: 800;
  white-space: nowrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--pill);
  padding: 14px 24px;
  font-weight: 800;
  border: 1px solid transparent;
  transition: .2s ease;
  cursor: pointer;
  text-align: center;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary {
  background: var(--accent);
  color: var(--white);
  box-shadow: 0 16px 38px rgba(255,54,91,0.22);
}
.btn-outline {
  background: var(--white);
  color: var(--text);
  border-color: #d9d3d8;
}

.menu-toggle {
  display: none;
  width: 52px;
  height: 52px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--white);
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
}
.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  position: relative;
}
.menu-toggle span::before,
.menu-toggle span::after {
  content: "";
  position: absolute;
  left: 0;
  width: 22px;
  height: 2px;
  background: var(--text);
}
.menu-toggle span::before { top: -7px; }
.menu-toggle span::after { top: 7px; }

.mobile-menu {
  display: none;
  position: fixed;
  inset: 82px 10px auto 10px;
  background: rgba(255,255,255,0.99);
  border: 1px solid var(--line);
  border-radius: 22px;
  box-shadow: var(--shadow);
  padding: 16px;
  z-index: 99;
}
.mobile-menu.is-open { display: block; }
.mobile-menu nav { display: grid; gap: 10px; }
.mobile-menu nav a {
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--white);
  font-weight: 700;
}
.mobile-menu nav a:hover,
.mobile-menu nav a[aria-current="page"] {
  color: var(--accent);
  background: var(--accent-soft);
}
.mobile-menu .mobile-actions {
  display: grid;
  gap: 10px;
  margin-top: 12px;
}
.mobile-menu .phone-link {
  display: flex;
  justify-content: center;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--white);
}
.mobile-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(36,36,58,0.22);
  z-index: 98;
}
.mobile-overlay.is-open { display: block; }

.hero { padding: 74px 0 58px; }
.hero-grid {
  display: grid;
  grid-template-columns: 1.08fr .92fr;
  gap: 42px;
  align-items: center;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: var(--pill);
  background: #fff4f6;
  color: var(--accent);
  border: 1px solid #ffd7df;
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  margin-bottom: 18px;
}
h1, h2, h3 { margin: 0; line-height: 1.05; letter-spacing: -0.04em; }
.hero h1 { font-size: clamp(3rem, 6vw, 4.8rem); font-weight: 900; }
.hero h1 .accent { color: var(--accent); }
.lead {
  margin-top: 20px;
  max-width: 680px;
  color: var(--muted);
  font-size: 1.06rem;
}
.hero-actions {
  margin-top: 28px;
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.highlights {
  margin-top: 30px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 12px;
}
.highlight {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 14px 16px;
  box-shadow: var(--shadow-sm);
  font-size: .95rem;
}
.panel {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 28px;
  padding: 28px;
  box-shadow: var(--shadow);
}
.stack { margin-top: 16px; display: grid; gap: 12px; }
.stack-item {
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 16px;
  font-weight: 600;
}
.panel .btn { width: 100%; margin-top: 18px; }

.trust-strip {
  background: var(--white);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.trust-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0,1fr));
  gap: 14px;
  padding: 18px 0;
}
.trust-item {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 16px;
  box-shadow: var(--shadow-sm);
  font-size: .94rem;
  font-weight: 700;
  text-align: center;
}

.section { padding: 78px 0; }
.section-white { background: var(--white); }
.section-soft { background: var(--accent-soft-2); }
.section h2 { font-size: clamp(2rem, 3vw, 3rem); font-weight: 900; }
.section-intro {
  margin-top: 14px;
  color: var(--muted);
  max-width: 780px;
  font-size: 1.02rem;
}
.cards-2, .cards-3, .cards-4 {
  margin-top: 40px;
  display: grid;
  gap: 22px;
}
.cards-2 { grid-template-columns: repeat(2, minmax(0,1fr)); }
.cards-3 { grid-template-columns: repeat(3, minmax(0,1fr)); }
.cards-4 { grid-template-columns: repeat(4, minmax(0,1fr)); }
.card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px;
  box-shadow: 0 8px 24px rgba(36,36,58,0.03);
  transition: .2s ease;
}
.card:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 40px rgba(36,36,58,0.08);
}
.card .subtitle { margin-top: 8px; color: #6b6a78; font-size: .92rem; }
.card p { margin: 16px 0 0; color: #4f4b58; }
.link-accent {
  display: inline-block;
  margin-top: 18px;
  color: var(--accent);
  font-weight: 700;
}

.price-card .price-tag {
  display: inline-block;
  margin-top: 16px;
  font-size: 1.9rem;
  font-weight: 900;
  color: var(--accent);
}
.small-note { margin-top: 10px; color: var(--muted); font-size: .92rem; }

.pills, .link-list {
  margin-top: 26px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.pill {
  background: var(--accent-soft);
  border-radius: var(--pill);
  padding: 10px 16px;
  font-weight: 600;
  font-size: .92rem;
}
.badge-row {
  margin-top: 30px;
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  justify-content: center;
}
.badge {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 16px 22px;
  font-weight: 800;
  box-shadow: var(--shadow-sm);
}
.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
  align-items: start;
}
.contact-list, .sitemap-list, .faq-list, .content-list {
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 12px;
}
.form-card, .wizard-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow-sm);
}
.form-grid, .wizard-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 14px;
}
.field {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 15px 16px;
  font: inherit;
  color: var(--text);
  background: var(--white);
}
.field:focus {
  outline: none;
  border-color: #ff9db0;
  box-shadow: 0 0 0 4px rgba(255,54,91,0.08);
}
textarea.field { min-height: 140px; resize: vertical; }
.mt-14 { margin-top: 14px; }
.mt-18 { margin-top: 18px; }

.wizard-result {
  margin-top: 18px;
  padding: 18px;
  border-radius: 18px;
  background: var(--accent-soft-2);
  border: 1px solid #ffd7df;
}
.wizard-result strong {
  color: var(--accent);
  font-size: 1.7rem;
}

.breadcrumbs {
  padding: 16px 0 0;
  font-size: .92rem;
  color: var(--muted);
}
.breadcrumbs a:hover { color: var(--accent); }

.gallery-grid {
  margin-top: 28px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 18px;
}
.gallery-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.gallery-card img {
  width: 100%;
  height: auto;
}
.gallery-card .caption {
  padding: 14px 16px 18px;
  color: var(--muted);
  font-size: .94rem;
}

.site-footer {
  background: var(--white);
  border-top: 1px solid var(--line);
  padding: 28px 0;
  color: var(--muted);
}
.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.footer-brand img { width: 240px; height: auto; }
.footer-nav {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  font-size: .94rem;
}
.footer-nav a:hover { color: var(--accent); }

@media (max-width: 1080px) {
  .desktop-nav, .header-actions { display: none; }
  .menu-toggle { display: inline-flex; justify-self: end; }
  .header-inner {
    grid-template-columns: 1fr auto;
    min-height: 90px;
    padding: 12px 0;
  }
  .brand img {
    width: min(72vw, 420px);
    max-width: 100%;
  }
  .hero-grid, .cards-2, .cards-3, .cards-4, .grid-2, .gallery-grid, .trust-row {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 767px) {
  .container { width: min(var(--max), calc(100% - 20px)); }
  .brand img { width: min(78vw, 430px); }
  .mobile-menu { inset: 80px 10px auto 10px; }
  .hero { padding: 42px 0 48px; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn, .panel .btn, .form-card .btn, .wizard-card .btn { width: 100%; }
  .highlights, .form-grid, .wizard-grid { grid-template-columns: 1fr; }
  .section { padding: 54px 0; }
  .footer-brand img { width: 200px; }
  .footer-inner { flex-direction: column; align-items: center; text-align: center; }
  .footer-nav { justify-content: center; }
}



/* Final homepage refinements using original brand assets */
.hero-home {
  padding: 0;
  background: var(--white);
}
.hero-home .hero-split {
  display: grid;
  grid-template-columns: 1.02fr .98fr;
  min-height: calc(100vh - 104px);
}
.hero-home .hero-left {
  background: linear-gradient(135deg, #ff365b 0%, #ff4f70 55%, #ff6984 100%);
  color: var(--white);
  padding: 72px 48px 64px;
  display: flex;
  align-items: center;
}
.hero-home .hero-left .inner {
  max-width: 700px;
  margin: 0 auto;
}
.hero-home .hero-logo {
  width: 320px;
  max-width: 100%;
  height: auto;
  margin-bottom: 22px;
}
.hero-home .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: var(--pill);
  background: rgba(255,255,255,0.16);
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.18);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.hero-home h1 {
  font-size: clamp(3rem, 5.5vw, 5rem);
  font-weight: 900;
  line-height: .94;
  letter-spacing: -.05em;
  margin: 0;
}
.hero-home .lead {
  margin-top: 20px;
  max-width: 640px;
  font-size: 1.08rem;
  color: rgba(255,255,255,0.92);
}
.hero-home .lead strong { color: #fff; }
.hero-home .hero-actions {
  margin-top: 28px;
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.hero-home .btn-dark {
  background: var(--text);
  color: var(--white);
}
.hero-home .btn-outline {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,0.45);
}
.hero-home .hero-features {
  margin-top: 28px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}
.hero-home .hero-feature {
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.14);
  color: #fff;
  border-radius: 16px;
  padding: 14px 16px;
  font-size: .93rem;
  backdrop-filter: blur(6px);
}
.hero-home .hero-right {
  background: var(--white);
  padding: 56px 40px;
  display: flex;
  align-items: center;
}
.hero-home .hero-panel {
  width: 100%;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 28px;
  padding: 30px;
  box-shadow: var(--shadow);
}
.hero-home .hero-panel h3 {
  font-size: 1.7rem;
  font-weight: 900;
  letter-spacing: -.04em;
  margin: 0;
}
.hero-home .hero-panel p { margin: 10px 0 0; color: var(--muted); }

.trust-items {
  display: grid;
  grid-template-columns: repeat(4, minmax(0,1fr));
  gap: 14px;
  padding: 18px 0;
}
.portal-strip {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 24px;
  align-items: start;
}
.portal-panel {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow-sm);
}
.portal-panel h3 {
  margin: 0;
  font-size: 1.35rem;
  font-weight: 900;
  letter-spacing: -.04em;
}
.content-list li {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 14px 16px;
  box-shadow: var(--shadow-sm);
}
.mt-24 { margin-top: 24px; }

@media (max-width: 1080px) {
  .hero-home .hero-split,
  .trust-items,
  .portal-strip {
    grid-template-columns: 1fr;
  }
  .hero-home .hero-left,
  .hero-home .hero-right { padding: 48px 24px; }
}
@media (max-width: 767px) {
  .hero-home .hero-left,
  .hero-home .hero-right { padding: 36px 18px; }
  .hero-home .hero-actions { flex-direction: column; }
  .hero-home .hero-features,
  .hero-home .wizard-grid { grid-template-columns: 1fr; }
  .hero-home .hero-actions .btn,
  .hero-home .hero-panel .btn { width: 100%; }
}
