:root {
  --primary:   #1C054F;
  --purple:    #56238E;
  --blue:      #3899DD;
  --green:     #86BC35;
  --light-purple: #AC8CCA;
  --pale:      #EEE8F7;
  --white:     #ffffff;
  --text:      #2d2d2d;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
}

/* ── HEADER ── */
.site-header {
  background: var(--white);
  padding: 18px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 3px solid var(--pale);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 16px rgba(28,5,79,.07);
}
.site-header img { height: 34px; }

/* ── HERO ── */
.hero {
  background: linear-gradient(135deg, var(--primary) 0%, var(--purple) 60%, #3a1a7a 100%);
  padding: 72px 48px 56px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  right: -80px; top: -80px;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(86,35,142,.5) 0%, transparent 70%);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  left: -60px; bottom: -100px;
  width: 380px; height: 380px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(56,153,221,.25) 0%, transparent 70%);
  pointer-events: none;
}
.hero-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 48px;
  position: relative;
  z-index: 1;
}
.hero-text { flex: 1; }
.hero-label {
  display: inline-block;
  background: rgba(134,188,53,.2);
  color: var(--green);
  font-family: 'Raleway', sans-serif;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 20px;
}
.hero h1 {
  font-family: 'Raleway', sans-serif;
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 800;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 20px;
}
.hero h1 span { color: var(--green); }
.hero p {
  font-size: 17px;
  color: rgba(255,255,255,.82);
  line-height: 1.7;
  max-width: 520px;
  margin-bottom: 32px;
}
.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--green);
  color: var(--white);
  font-family: 'Raleway', sans-serif;
  font-weight: 700;
  font-size: 15px;
  padding: 14px 28px;
  border-radius: 50px;
  text-decoration: none;
  transition: transform .2s, box-shadow .2s;
}
.hero-cta:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(134,188,53,.4); }
.hero-cta svg { width: 18px; height: 18px; fill: none; stroke: currentColor; stroke-width: 2.2; }
.hero-image { flex: 0 0 auto; }
.hero-image img { width: min(420px, 42vw); border-radius: 16px; box-shadow: 0 20px 60px rgba(0,0,0,.3); }

/* ── SECTION WRAPPER ── */
.section {
  max-width: 1100px;
  margin: 0 auto;
  padding: 72px 24px;
}
.section-title {
  font-family: 'Raleway', sans-serif;
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 12px;
}
.section-title .accent { color: var(--blue); }
.section-intro {
  font-size: 16px;
  color: #666;
  max-width: 600px;
  line-height: 1.7;
  margin-bottom: 48px;
}

/* ── DIVIDER ── */
.divider {
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--purple), var(--blue), var(--green));
  border-radius: 999px;
  max-width: 80px;
  margin-bottom: 16px;
}

/* ── PROCESS STEPS ── */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}
.step-card {
  background: var(--white);
  border: 1.5px solid var(--pale);
  border-radius: 16px;
  padding: 28px 24px;
  position: relative;
  transition: border-color .2s, box-shadow .2s;
}
.step-card:hover { border-color: var(--blue); box-shadow: 0 8px 32px rgba(56,153,221,.12); }
.step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px; height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--purple));
  color: var(--white);
  font-family: 'Raleway', sans-serif;
  font-weight: 800;
  font-size: 15px;
  margin-bottom: 14px;
}
.step-card h3 {
  font-family: 'Raleway', sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 8px;
}
.step-card p {
  font-size: 14px;
  color: #555;
  line-height: 1.65;
}
.step-card.highlight { background: linear-gradient(135deg, var(--primary) 0%, var(--purple) 100%); border-color: transparent; }
.step-card.highlight h3, .step-card.highlight p { color: var(--white); }
.step-card.highlight .step-num { background: rgba(255,255,255,.2); }

/* ── TWO COLUMN LAYOUT ── */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-bottom: 32px;
}
@media (max-width: 700px) { .two-col { grid-template-columns: 1fr; } }

/* ── INFO CARDS ── */
.info-card {
  background: var(--pale);
  border-radius: 16px;
  padding: 28px;
}
.info-card h3 {
  font-family: 'Raleway', sans-serif;
  font-weight: 700;
  font-size: 17px;
  color: var(--primary);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.info-card h3 .icon-box {
  width: 34px; height: 34px;
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.info-card h3 .icon-box.green { background: var(--green); }
.info-card h3 .icon-box.blue { background: var(--blue); }
.info-card ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.info-card ul li {
  font-size: 14px;
  color: #444;
  padding-left: 20px;
  position: relative;
  line-height: 1.6;
}
.info-card ul li::before {
  content: '';
  position: absolute;
  left: 0; top: 7px;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--purple);
}

/* ── TYPE BLOCKS ── */
.type-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}
.type-card {
  border-radius: 16px;
  padding: 28px;
  border-left: 5px solid transparent;
}
.type-card.property { background: #f0f6ff; border-color: var(--blue); }
.type-card.mobility  { background: #f0faf0; border-color: var(--green); }
.type-card h3 {
  font-family: 'Raleway', sans-serif;
  font-weight: 700;
  font-size: 16px;
  color: var(--primary);
  margin-bottom: 12px;
}
.type-card ul { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.type-card ul li {
  font-size: 14px;
  color: #444;
  padding-left: 20px;
  position: relative;
  line-height: 1.6;
}
.type-card ul li::before {
  content: '→';
  position: absolute;
  left: 0;
  font-size: 13px;
  color: var(--purple);
}

/* ── FAQ ── */
.faq-bg {
  background: linear-gradient(180deg, #f7f3ff 0%, var(--white) 100%);
  padding: 72px 0;
}
.faq-group { margin-bottom: 36px; }
.faq-group-title {
  font-family: 'Raleway', sans-serif;
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--purple);
  margin-bottom: 12px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--pale);
}
details {
  border: 1.5px solid var(--pale);
  border-radius: 12px;
  margin-bottom: 8px;
  overflow: hidden;
  transition: border-color .2s;
}
details[open] { border-color: var(--blue); }
summary {
  font-family: 'Raleway', sans-serif;
  font-weight: 600;
  font-size: 15px;
  color: var(--primary);
  padding: 16px 20px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  list-style: none;
  gap: 12px;
}
summary::-webkit-details-marker { display: none; }
summary::after {
  content: '+';
  font-size: 20px;
  color: var(--blue);
  flex-shrink: 0;
  transition: transform .2s;
}
details[open] summary::after { transform: rotate(45deg); }
.faq-answer {
  padding: 0 20px 16px;
  font-size: 14.5px;
  color: #555;
  line-height: 1.7;
}

/* ── CTA BAND ── */
.cta-band {
  background: linear-gradient(135deg, var(--primary) 0%, var(--purple) 100%);
  padding: 64px 24px;
  text-align: center;
}
.cta-band h2 {
  font-family: 'Raleway', sans-serif;
  font-weight: 800;
  font-size: clamp(24px, 3.5vw, 38px);
  color: var(--white);
  margin-bottom: 16px;
}
.cta-band p {
  font-size: 16px;
  color: rgba(255,255,255,.75);
  max-width: 500px;
  margin: 0 auto 36px;
  line-height: 1.7;
}
.btn-white {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--white);
  color: var(--primary);
  font-family: 'Raleway', sans-serif;
  font-weight: 700;
  font-size: 15px;
  padding: 14px 32px;
  border-radius: 50px;
  text-decoration: none;
  transition: transform .2s, box-shadow .2s;
}
.btn-white:hover { transform: translateY(-2px); box-shadow: 0 10px 28px rgba(0,0,0,.25); }

/* ── ABOUT STRIP ── */
.about-strip {
  background: var(--pale);
  padding: 48px 24px;
}
.about-inner {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 32px;
}
.about-inner img { height: 48px; flex-shrink: 0; }
.about-inner p {
  font-size: 15px;
  color: #555;
  line-height: 1.7;
}
.about-inner strong { color: var(--primary); }

/* ── FOOTER ── */
footer {
  background: var(--primary);
  padding: 32px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}
footer img { height: 28px; }
.footer-links {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.footer-links span, .footer-links a {
  font-size: 13px;
  color: rgba(255,255,255,.6);
  text-decoration: none;
}
.footer-links a:hover { color: var(--light-purple); }
.footer-tagline {
  font-family: 'Raleway', sans-serif;
  font-weight: 600;
  font-size: 13px;
  color: rgba(255,255,255,.4);
  letter-spacing: 1px;
}

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  .site-header { padding: 16px 20px; }
  .hero { padding: 48px 20px 40px; }
  .hero-inner { flex-direction: column; gap: 32px; }
  .hero-image { display: none; }
  footer { padding: 24px 20px; flex-direction: column; align-items: flex-start; }
}
