/* ========== BASE ========== */
* { box-sizing: border-box; }
html, body { height: 100%; }

:root{
  --ink: #140f18;
  --ink-soft: rgba(20, 15, 24, 0.72);
  --card: rgba(255, 255, 255, 0.55);
  --card2: rgba(255, 255, 255, 0.40);
  --stroke: rgba(20, 15, 24, 0.18);
  --shadow: 0 18px 50px rgba(20, 15, 24, 0.22);
  --shadow-soft: 0 10px 30px rgba(20, 15, 24, 0.16);
  --radius: 22px;
}

body{
  margin: 0;
  font-family: ui-serif, Georgia, "Times New Roman", serif;
  color: var(--ink);
  background: radial-gradient(1200px 700px at 50% 20%, #f6d9ea 0%, #e8b9d2 35%, #d49abb 70%, #c68bb0 100%);
  overflow-x: hidden;
}

a{ color: inherit; }
.container{
  width: min(1100px, calc(100% - 32px));
  margin-inline: auto;
}

/* ========== ORNAMENTS ========== */
.orn{
  position: fixed;
  width: 340px;
  height: 340px;
  pointer-events: none;
  opacity: 0.35;
  filter: drop-shadow(0 12px 18px rgba(20,15,24,0.18));
  background:
    radial-gradient(circle at 30% 30%, rgba(20,15,24,0.55) 0 6px, transparent 7px),
    radial-gradient(circle at 62% 40%, rgba(20,15,24,0.55) 0 4px, transparent 5px),
    conic-gradient(from 90deg, rgba(20,15,24,0.0), rgba(20,15,24,0.55), rgba(20,15,24,0.0));
  border-radius: 999px;
  mask:
    radial-gradient(circle at 30% 30%, #0000 0 20px, #000 21px 100%),
    radial-gradient(circle at 55% 55%, #0000 0 85px, #000 86px 100%),
    radial-gradient(circle at 50% 50%, #000 0 100%);
}
.orn--tl{ top: -140px; left: -140px; transform: rotate(-25deg); }
.orn--br{ bottom: -150px; right: -150px; transform: rotate(155deg); opacity: 0.30; }

@media (max-width: 700px){
  .orn{ width: 240px; height: 240px; opacity: 0.24; }
  .orn--tl{ top: -110px; left: -110px; }
  .orn--br{ bottom: -120px; right: -120px; }
}

/* ========== TOP ========== */
.top{
  display: grid;
  place-items: center;
  padding: 28px 0 10px;
  gap: 12px;
}

.logoLink{ display: inline-grid; place-items: center; text-decoration: none; }
.logo{
  width: min(720px, 92vw);
  max-height: 260px;
  object-fit: contain;
  filter: drop-shadow(0 14px 24px rgba(20,15,24,0.22));
}

.nav{
  display: flex;
  gap: 14px;
  align-items: center;
  background: rgba(255,255,255,0.35);
  border: 1px solid rgba(20,15,24,0.14);
  border-radius: 999px;
  padding: 8px 12px;
  box-shadow: var(--shadow-soft);
}
.nav a{ text-decoration: none; }
.nav a:hover{ text-decoration: underline; }

.btn{
  border: 1px solid rgba(20,15,24,0.20);
  border-radius: 999px;
  padding: 8px 12px;
  background: rgba(20,15,24,0.88);
  color: #fff;
  text-decoration: none !important;
}

/* ========== TITLES ========== */
.pageTitle{
  margin: 18px 0 6px;
  text-align: center;
  font-size: clamp(26px, 3.2vw, 40px);
  letter-spacing: -0.2px;
}
.pageSub{
  margin: 0 auto 18px;
  text-align: center;
  color: var(--ink-soft);
  max-width: 72ch;
  line-height: 1.55;
}

/* ========== HERO ========== */
.hero__card{
  background: var(--card);
  border: 1px solid var(--stroke);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 18px;
  overflow: hidden;
  position: relative;
}
.hero__card::before{
  content:"";
  position:absolute;
  inset: -60px -60px auto auto;
  width: 260px;
  height: 260px;
  background: radial-gradient(circle at 40% 40%, rgba(255,255,255,0.55), rgba(255,255,255,0));
  transform: rotate(20deg);
  pointer-events: none;
}

.hero__grid{
  display: grid;
  grid-template-columns: 1.55fr 0.85fr;
  gap: 14px;
  align-items: start;
}

.hero__title{
  margin: 0 0 8px;
  font-size: 22px;
}
.hero__p{
  margin: 0 0 10px;
  color: var(--ink-soft);
  line-height: 1.55;
}

.badges{
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 10px;
}
.badge{
  padding: 8px 10px;
  border-radius: 999px;
  border: 1px solid rgba(20,15,24,0.16);
  background: rgba(255,255,255,0.42);
  font-size: 13px;
  font-weight: 700;
  opacity: 0.92;
}

/* side cards */
.card{
  background: var(--card2);
  border: 1px solid rgba(20,15,24,0.14);
  border-radius: 18px;
  box-shadow: var(--shadow-soft);
  padding: 14px;
}
.mini__title{ margin: 0 0 8px; font-size: 16px; }
.mini__list{
  margin: 0;
  padding-left: 18px;
  color: var(--ink-soft);
  line-height: 1.5;
}
.mini__list strong{ color: var(--ink); }

@media (max-width: 900px){
  .hero__grid{ grid-template-columns: 1fr; }
}

/* ========== SECTIONS ========== */
.section{
  margin: 16px 0 22px;
  background: rgba(255,255,255,0.22);
  border: 1px solid rgba(20,15,24,0.10);
  border-radius: var(--radius);
  padding: 16px;
  box-shadow: var(--shadow-soft);
}

.sectionTitle{
  margin: 0 0 6px;
  font-size: 22px;
  display: flex;
  gap: 10px;
  align-items: center;
}
.sectionTitle::after{
  content:"";
  height: 1px;
  flex: 1;
  background: rgba(20,15,24,0.16);
  opacity: 0.7;
}
.sectionSub{
  margin: 0 0 12px;
  color: var(--ink-soft);
  line-height: 1.5;
}

/* steps */
.steps{
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
}
.step{
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 12px;
  align-items: start;
  border: 1px solid rgba(20,15,24,0.12);
  border-radius: 18px;
  background: rgba(255,255,255,0.38);
  padding: 12px;
}
.step__n{
  width: 38px; height: 38px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: rgba(20,15,24,0.88);
  color: #fff;
  font-weight: 800;
}
.step__txt h3{
  margin: 0 0 4px;
  font-size: 16px;
}
.step__txt p{
  margin: 0;
  color: var(--ink-soft);
  line-height: 1.5;
}

/* cards grid */
.cards{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
.cards .card h3{ margin: 0 0 6px; font-size: 16px; }
.cards .card p{ margin: 0; color: var(--ink-soft); line-height: 1.5; }

@media (max-width: 900px){
  .cards{ grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px){
  .cards{ grid-template-columns: 1fr; }
}

/* ========== CTA ========== */
.cta{
  margin: 16px 0 26px;
}

.cta__inner{
  background: linear-gradient(to bottom, rgba(255,255,255,0.55), rgba(255,255,255,0.35));
  border: 1px solid rgba(20,15,24,0.16);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 18px;
  text-align: center;
}

.cta__title{
  margin: 0 0 6px;
  font-size: 24px;
}
.cta__sub{
  margin: 0 auto 14px;
  max-width: 70ch;
  color: var(--ink-soft);
  line-height: 1.55;
}

.cta__buttons{
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 12px;
}

.btnPrimary, .btnSecondary, .btnGhost{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 10px 14px;
  border: 1px solid rgba(20,15,24,0.22);
  box-shadow: var(--shadow-soft);
  text-decoration: none !important;
  font-weight: 800;
  transition: transform .12s ease, box-shadow .12s ease, background .12s ease;
}
.btnPrimary:hover, .btnSecondary:hover, .btnGhost:hover{
  transform: translateY(-1px);
  box-shadow: var(--shadow);
}

.btnPrimary{
  background: rgba(20,15,24,0.90);
  color: #fff;
  border-color: rgba(255,255,255,0.18);
}
.btnSecondary{
  background: rgba(255,255,255,0.55);
}
.btnGhost{
  background: rgba(255,255,255,0.30);
  box-shadow: none;
}

.contactRow{
  display: flex;
  gap: 10px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  font-size: 16px;
}
.contactLink{
  font-weight: 800;
  text-decoration: none !important;
  border-bottom: 1px solid rgba(20,15,24,0.25);
  padding-bottom: 2px;
}
.contactLink:hover{ border-bottom-color: rgba(20,15,24,0.65); }
.dot{ opacity: 0.55; }

/* ========== FOOTER ========== */
.footer{
  margin-top: 26px;
  padding: 18px 0 28px;
  border-top: 1px solid rgba(20,15,24,0.12);
  background: linear-gradient(to top, rgba(246,217,234,0.65), rgba(246,217,234,0.0));
}
.footer__inner{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  color: rgba(20,15,24,0.78);
  font-size: 13px;
}
.footer__links{
  display: flex;
  gap: 12px;
}
.footer__links a{
  text-decoration: none;
  opacity: 0.9;
}
.footer__links a:hover{
  opacity: 1;
  text-decoration: underline;
}
