@font-face {
  font-family: 'Roobert ENEL';
  src: url('../fonts/RoobertENEL-Regular.woff2') format('woff2'), url('../fonts/RoobertENEL-Regular.woff') format('woff');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Roobert ENEL';
  src: url('../fonts/RoobertENEL-Bold.woff2') format('woff2'), url('../fonts/RoobertENEL-Bold.woff') format('woff');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Roobert ENEL';
  src: url('../fonts/RoobertENEL-Black.woff2') format('woff2'), url('../fonts/RoobertENEL-Black.woff') format('woff');
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

:root {
  --magenta: #d3135a;
  --magenta-dark: #b40d4a;
  --white: #ffffff;
  --ink: #111111;
  --text: #3b3b3b;
  --line: rgba(17,17,17,0.08);
  --bg-soft: #f7f4f5;
  --shadow-lg: 0 26px 64px rgba(0, 0, 0, 0.18);
  --shadow-md: 0 16px 32px rgba(0, 0, 0, 0.10);
  --radius-xl: 30px;
  --radius-lg: 22px;
}

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

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

.page-shell {
  overflow: hidden;
}

.hero-section {
  position: relative;
  background: var(--magenta);
  min-height: 760px;
}

.hero-inner {
  position: relative;
  padding: 38px 0 0;
}

.hero-brand {
  position: absolute;
  top: 34px;
  right: 0;
  z-index: 4;
}

.brand-logo,
.footer-logo {
  width: 138px;
  height: auto;
}

.hero-layout {
  position: relative;
  display: grid;
  grid-template-columns: 58% 42%;
  min-height: 760px;
}

.hero-visual-col {
  position: relative;
  min-height: 760px;
}

.hero-art {
  position: absolute;
  left: -150px;
  top: -14px;
  width: min(1020px, 78vw);
  max-width: none;
  pointer-events: none;
}

.hero-form-col {
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  padding: 134px 0 72px 22px;
}

.hero-copy {
  max-width: 470px;
  margin-bottom: 26px;
}

.eyebrow,
.lead-kicker {
  display: inline-block;
  font-size: 14px;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: .03em;
  font-weight: 700;
}

.eyebrow {
  color: rgba(255,255,255,0.86);
  margin-bottom: 16px;
}

.hero-copy h1 {
  margin: 0;
  color: var(--white);
  font-size: clamp(42px, 4.4vw, 62px);
  line-height: 0.94;
  font-weight: 900;
}

.hero-copy p {
  margin: 18px 0 0;
  color: rgba(255,255,255,0.92);
  font-size: 19px;
  line-height: 1.5;
  max-width: 450px;
}

.lead-card {
  width: min(100%, 456px);
  background: rgba(255,255,255,0.98);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  padding: 28px 28px 24px;
  backdrop-filter: blur(8px);
}

.lead-card-head {
  margin-bottom: 14px;
}

.lead-kicker {
  color: var(--magenta);
}

.lead-card-head h2 {
  margin: 10px 0 0;
  color: var(--ink);
  font-size: clamp(28px, 2.8vw, 40px);
  line-height: 0.98;
  font-weight: 900;
}

.lead-widget-wrap {
  padding-top: 10px;
  border-top: 1px solid var(--line);
}

.content-section {
  background: var(--white);
}

.content-shell {
  min-height: 320px;
  border-top-left-radius: 34px;
  border-top-right-radius: 34px;
  margin-top: -1px;
  background: var(--white);
}

.footer-section {
  background: var(--white);
  border-top: 1px solid var(--line);
  padding: 34px 0 42px;
}

.footer-inner {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
}

.footer-copy {
  margin: 0;
  font-size: 15px;
  line-height: 1.7;
  color: #505050;
}

.footer-copy a {
  color: var(--magenta);
}

@media (max-width: 1180px) {
  .hero-layout {
    grid-template-columns: 52% 48%;
  }

  .hero-art {
    left: -170px;
    width: min(920px, 82vw);
  }
}

@media (max-width: 1024px) {
  .container {
    width: min(100% - 36px, 100%);
  }

  .hero-section,
  .hero-layout,
  .hero-visual-col {
    min-height: auto;
  }

  .hero-inner {
    padding: 28px 0 0;
  }

  .hero-brand {
    position: relative;
    top: auto;
    right: auto;
    display: inline-block;
    margin-left: auto;
  }

  .hero-layout {
    grid-template-columns: 1fr;
    gap: 20px;
    padding-top: 12px;
  }

  .hero-visual-col {
    order: 1;
    min-height: 440px;
  }

  .hero-art {
    position: absolute;
    left: -70px;
    top: -8px;
    width: min(880px, 108vw);
  }

  .hero-form-col {
    order: 2;
    padding: 0 0 48px;
    align-items: center;
  }

  .hero-copy {
    max-width: 680px;
    text-align: center;
  }

  .hero-copy p {
    max-width: 100%;
  }

  .lead-card {
    width: min(100%, 540px);
  }

  .content-shell {
    min-height: 220px;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(100% - 24px, 100%);
  }

  .hero-inner {
    padding-top: 22px;
  }

  .brand-logo,
  .footer-logo {
    width: 112px;
  }

  .hero-layout {
    gap: 8px;
  }

  .hero-visual-col {
    min-height: 250px;
  }

  .hero-art {
    left: -40px;
    top: 8px;
    width: 128vw;
  }

  .hero-form-col {
    padding-bottom: 34px;
  }

  .hero-copy {
    text-align: left;
    margin-bottom: 18px;
  }

  .hero-copy h1 {
    font-size: 38px;
  }

  .hero-copy p {
    font-size: 17px;
  }

  .lead-card {
    padding: 22px 18px 18px;
    border-radius: 24px;
  }

  .lead-card-head h2 {
    font-size: 31px;
  }

  .content-shell {
    min-height: 160px;
  }

  .footer-inner {
    flex-direction: column-reverse;
    align-items: flex-start;
  }
}
