
:root{
  --red:#d90b18;
  --text:#151515;
  --muted:#6e6e6e;
  --line:#e2e2e2;
  --bg:#f7f7f5;
  --white:#ffffff;
  --radius:14px;
  --shadow:0 18px 55px rgba(0,0,0,.07);
  --serif: Georgia, "Times New Roman", serif;
  --sans: Arial, Helvetica, sans-serif;
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  background:var(--bg);
  color:var(--text);
  font-family:var(--sans);
  -webkit-font-smoothing:antialiased;
}
a{color:inherit}
.page{
  min-height:100vh;
  display:flex;
  align-items:center;
  justify-content:center;
  padding:36px 20px;
}
.shell{
  width:min(1120px,100%);
  background:var(--white);
  border-radius:18px;
  box-shadow:var(--shadow);
  padding:54px 70px 30px;
}
.eyebrow{
  margin:0 0 42px;
  text-align:center;
  color:#565656;
  font-size:15px;
}
h1{
  margin:0;
  text-align:center;
  font-family:var(--serif);
  font-weight:400;
  font-size:clamp(42px,5vw,68px);
  line-height:1.04;
}
.accent{
  width:138px;
  height:2px;
  background:var(--red);
  margin:24px auto 26px;
}
.intro{
  max-width:720px;
  margin:0 auto;
  text-align:center;
  color:#3f3f3f;
  font-size:18px;
  line-height:1.55;
}
.cards{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:34px;
  max-width:820px;
  margin:48px auto 0;
}
.card{
  border:1px solid var(--line);
  border-radius:var(--radius);
  padding:34px 34px 28px;
  min-height:390px;
  display:flex;
  flex-direction:column;
  background:#fff;
}
.brand-area{
  min-height:145px;
  display:flex;
  align-items:center;
  justify-content:center;
  text-align:center;
}
.brand-logo{
  display:block;
  width:min(290px,100%);
  height:auto;
  object-fit:contain;
}
.card-title{
  margin:0;
  font-family:var(--serif);
  font-size:34px;
  line-height:1.06;
  font-weight:400;
}
.rule{
  height:1px;
  background:var(--line);
  margin:10px 0 20px;
}
.contact{
  min-height:82px;
  display:flex;
  flex-direction:column;
  justify-content:center;
  gap:8px;
  text-align:center;
  color:var(--muted);
  font-size:15px;
  line-height:1.45;
}
.contact a{
  text-decoration:none;
}
.contact a:hover{text-decoration:underline}
.cta{
  margin-top:auto;
  padding-top:24px;
}
.button{
  width:82%;
  min-height:50px;
  margin:0 auto;
  padding:13px 18px;
  border-radius:7px;
  display:flex;
  align-items:center;
  justify-content:center;
  gap:14px;
  font-size:15px;
  font-weight:600;
  text-decoration:none;
  transition:.2s ease;
}
.button-primary{
  color:#fff;
  background:rgba(217,11,24,.82);
  border:1px solid rgba(217,11,24,.82);
}
.button-primary:hover{
  background:var(--red);
  border-color:var(--red);
}
.button-secondary{
  color:var(--red);
  background:#fff;
  border:1px solid rgba(217,11,24,.65);
}
.button-disabled{
  opacity:.72;
  cursor:default;
  user-select:none;
}
.arrow{font-size:20px;line-height:1}
.footer{
  margin-top:48px;
  padding-top:24px;
  border-top:1px solid var(--line);
  text-align:center;
  color:#656565;
  font-size:14px;
}
.footer a{
  margin:0 10px;
  text-underline-offset:4px;
}
.legal-wrap{
  width:min(980px,100%);
  margin:0 auto;
  background:#fff;
  border-radius:18px;
  box-shadow:var(--shadow);
  padding:56px 64px;
}
.legal-wrap h1{
  text-align:left;
  font-size:48px;
  margin-bottom:30px;
}
.legal-wrap h2{
  font-family:var(--serif);
  font-weight:400;
  font-size:27px;
  margin:34px 0 12px;
}
.legal-wrap h3{
  font-size:17px;
  margin:25px 0 8px;
}
.legal-wrap p,.legal-wrap li{
  color:#3f3f3f;
  line-height:1.7;
  font-size:16px;
}
.legal-wrap ul{padding-left:21px}
.legal-toplink{
  display:inline-block;
  margin-bottom:28px;
  color:#5e5e5e;
  font-size:14px;
}
.note{
  padding:14px 16px;
  background:#faf7f7;
  border-left:3px solid var(--red);
  color:#565656;
  font-size:14px;
  line-height:1.55;
}

@media (max-width: 760px){
  .page{padding:18px 12px;align-items:flex-start}
  .shell{
    padding:34px 18px 22px;
    border-radius:14px;
  }
  .eyebrow{
    font-size:13px;
    line-height:1.35;
    margin-bottom:26px;
  }
  h1{font-size:38px}
  .accent{width:70px;margin:18px auto 22px}
  .intro{
    font-size:15px;
    line-height:1.55;
    padding:0 5px;
  }
  .cards{
    grid-template-columns:1fr;
    gap:26px;
    margin-top:38px;
    max-width:100%;
  }
  .card{
    min-height:auto;
    padding:28px 22px 24px;
  }
  .brand-area{min-height:118px}
  .brand-logo{width:min(245px,92%)}
  .card-title{font-size:30px}
  .contact{
    min-height:auto;
    margin:2px 0 2px;
    font-size:14px;
  }
  .cta{padding-top:24px}
  .button{width:100%;min-height:48px}
  .footer{
    margin-top:34px;
    padding-top:22px;
  }
  .legal-wrap{
    padding:34px 22px;
    border-radius:14px;
  }
  .legal-wrap h1{font-size:38px}
  .legal-wrap h2{font-size:24px}
}
