*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --orange: #FF6D00;
  --orange-light: #FF9100;
  --orange-pale: #FFF3E0;
  --black: #111111;
  --gray-dark: #2C2C2C;
  --gray-mid: #757575;
  --gray-light: #F5F5F5;
  --white: #FFFFFF;
  --radius: 14px;
  --max: 1120px;
}

html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', system-ui, sans-serif;
  color: var(--black);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
h1, h2, h3, .brand, .btn { font-family: 'Sora', system-ui, sans-serif; }
a { color: inherit; }
img, svg { display: block; }

.wrap { max-width: var(--max); margin: 0 auto; padding: 0 20px; }

/* Header */
.header { position: sticky; top: 0; z-index: 10; background: rgba(255,255,255,.92); backdrop-filter: blur(8px); border-bottom: 1px solid #eee; }
.header .wrap { display: flex; align-items: center; justify-content: space-between; height: 68px; }
.brand { display: flex; align-items: center; gap: 8px; font-weight: 800; font-size: 22px; letter-spacing: -.02em; text-decoration: none; }
.brand svg { width: 26px; height: 26px; }
.nav { display: flex; gap: 28px; font-size: 15px; font-weight: 500; }
.nav a { text-decoration: none; color: var(--gray-dark); }
.nav a:hover { color: var(--orange); }

.btn { display: inline-block; font-weight: 700; font-size: 15px; text-decoration: none; padding: 14px 26px; border-radius: 100px; transition: transform .15s, background .15s; }
.btn:hover { transform: translateY(-1px); }
.btn-primary { background: var(--orange); color: var(--white); }
.btn-primary:hover { background: #e86300; }
.btn-ghost { border: 2px solid var(--black); color: var(--black); }
.btn-white { background: var(--white); color: var(--orange); }

/* Hero */
.hero { padding: 96px 0 88px; background: linear-gradient(180deg, var(--orange-pale) 0%, var(--white) 100%); }
.tag { display: inline-block; font-family: 'Sora', sans-serif; font-size: 12px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--orange); background: var(--white); border: 1px solid #ffd9b8; padding: 5px 14px; border-radius: 100px; margin-bottom: 22px; }
.hero h1 { font-size: clamp(36px, 6vw, 60px); font-weight: 800; line-height: 1.05; letter-spacing: -.03em; max-width: 820px; }
.hero h1 em { font-style: normal; color: var(--orange); }
.hero p { font-size: 19px; color: var(--gray-dark); max-width: 640px; margin: 22px 0 34px; }
.hero .actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* Sections */
section { padding: 88px 0; }
.section-head { max-width: 680px; margin-bottom: 48px; }
.section-head h2 { font-size: clamp(28px, 4vw, 40px); font-weight: 800; line-height: 1.1; letter-spacing: -.02em; margin-bottom: 14px; }
.section-head p { color: var(--gray-mid); font-size: 17px; }
.alt { background: var(--gray-light); }

.grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 20px; }
.card { background: var(--white); border: 1px solid #eee; border-radius: var(--radius); padding: 28px; }
.card .icon { width: 44px; height: 44px; border-radius: 12px; background: var(--orange-pale); color: var(--orange); display: grid; place-items: center; margin-bottom: 18px; }
.card .icon svg { width: 22px; height: 22px; }
.card h3 { font-size: 19px; font-weight: 700; margin-bottom: 8px; }
.card p { color: var(--gray-mid); font-size: 15px; }

.steps { counter-reset: step; display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 28px; }
.step { counter-increment: step; }
.step::before { content: counter(step, decimal-leading-zero); font-family: 'Sora', sans-serif; font-weight: 800; font-size: 32px; color: var(--orange); display: block; margin-bottom: 8px; }
.step h3 { font-size: 18px; margin-bottom: 6px; }
.step p { color: var(--gray-mid); font-size: 15px; }

.two { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }
.list { list-style: none; display: grid; gap: 14px; }
.list li { display: flex; gap: 12px; align-items: flex-start; }
.list li::before { content: ""; flex: 0 0 22px; height: 22px; margin-top: 2px; border-radius: 50%; background: var(--orange) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 12.5l4 4 8-9'/%3E%3C/svg%3E") center/14px no-repeat; }

.notice { border-left: 4px solid var(--orange); background: var(--orange-pale); padding: 20px 24px; border-radius: 0 var(--radius) var(--radius) 0; font-size: 15px; color: var(--gray-dark); }

/* CTA */
.cta { background: var(--orange); color: var(--white); border-radius: 24px; padding: 56px 48px; display: flex; justify-content: space-between; align-items: center; gap: 32px; flex-wrap: wrap; }
.cta h2 { font-size: clamp(26px, 3.5vw, 36px); font-weight: 800; line-height: 1.1; max-width: 560px; }
.cta p { opacity: .9; margin-top: 10px; }

/* Contact */
.contact dl { display: grid; gap: 18px; }
.contact dt { font-size: 13px; font-weight: 600; text-transform: uppercase; letter-spacing: .08em; color: var(--gray-mid); }
.contact dd { font-size: 17px; font-weight: 500; }

/* Footer */
.footer { background: var(--black); color: #bdbdbd; padding: 56px 0 40px; font-size: 14px; }
.footer .brand { color: var(--white); margin-bottom: 14px; }
.footer .cols { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
.footer h4 { color: var(--white); font-family: 'Sora', sans-serif; font-size: 14px; margin-bottom: 12px; }
.footer ul { list-style: none; display: grid; gap: 8px; }
.footer a { text-decoration: none; }
.footer a:hover { color: var(--white); }
.footer .legal { border-top: 1px solid #2c2c2c; padding-top: 24px; font-size: 13px; line-height: 1.7; }

/* Legal pages */
.doc { padding: 64px 0 88px; }
.doc .wrap { max-width: 780px; }
.doc h1 { font-size: 40px; font-weight: 800; letter-spacing: -.02em; margin-bottom: 8px; }
.doc .updated { color: var(--gray-mid); margin-bottom: 40px; }
.doc h2 { font-size: 22px; margin: 36px 0 12px; }
.doc p, .doc li { color: var(--gray-dark); margin-bottom: 12px; }
.doc ul { padding-left: 22px; }

@media (max-width: 800px) {
  .nav { display: none; }
  .two, .footer .cols { grid-template-columns: 1fr; }
  .hero { padding: 64px 0 56px; }
  section { padding: 64px 0; }
  .cta { padding: 40px 28px; }
}
