/* style.css */
:root{
  --bg: #f6f1e7;          /* warm cream */
  --bg2:#efe7d8;          /* slightly deeper cream */
  --ink:#1f2a37;          /* deep text */
  --muted:#5c6772;
  --navy:#1f2b34;         /* dark section */
  --navy2:#162028;
  --card:#ffffff;
  --line: rgba(31,43,52,.14);
  --accent:#c56a2c;       /* orange */
  --accent2:#e08a3c;
  --accent3:#a95523;
  --shadow: 0 18px 50px rgba(22,32,40,.10);
  --radius: 18px;
}

html,body{ height:100%; }
body{
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  background: var(--bg);
  color: var(--ink);
}
.connector-sms{
  font-weight: 1000;
  font-size: 45px;
  line-height: 1;
  margin: 0 0 10px;
  text-shadow: 0 10px 16px rgba(0,0,0,.08);
  font-family: 'Gill Sans Ultra Bold', sans-serif;
  justify-content:center;
}
/* Header */
.site-header{
  background: rgba(246,241,231,.86);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}

.navbar .nav-link{
  color: var(--ink);
  font-weight: 600;
  opacity: .86;
}
.navbar .nav-link:hover{ opacity: 1; }

.brand-mark{
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  color: #fff;
  background: linear-gradient(135deg, var(--navy), var(--navy2));
  font-weight: 800;
  letter-spacing: .5px;
  box-shadow: 0 10px 25px rgba(22,32,40,.18);
}
.brand-title{
  font-weight: 800;
  line-height: 1.1;
}
.brand-subtitle{
  font-size: .8rem;
  opacity: .75;
}

/* Buttons */
.btn-accent{
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  border: 0;
  color: #fff !important;
  font-weight: 800;
  border-radius: 999px;
  box-shadow: 0 14px 25px rgba(197,106,44,.22);
}
.btn-accent:hover{
  background: linear-gradient(135deg, var(--accent3), var(--accent));
}
.btn-outline-ink{
  border-radius: 999px;
  border: 1px solid rgba(31,43,52,.25);
  color: var(--ink);
  font-weight: 800;
}
.btn-outline-ink:hover{
  background: rgba(31,43,52,.06);
  border-color: rgba(31,43,52,.32);
}

/* Hero */
.hero-section{
  padding: 64px 0 40px;
  position: relative;
  overflow: hidden;
}
.hero-section::before{
  content:"";
  position:absolute;
  inset:-220px -200px auto auto;
  width: 520px;
  height: 520px;
  background: radial-gradient(circle at 30% 30%, rgba(224,138,60,.30), transparent 55%),
              radial-gradient(circle at 70% 70%, rgba(31,43,52,.14), transparent 58%);
  filter: blur(2px);
  pointer-events:none;
}
.hero-section::after{
  content:"";
  position:absolute;
  inset:auto auto -240px -220px;
  width: 560px;
  height: 560px;
  background: radial-gradient(circle at 45% 45%, rgba(197,106,44,.18), transparent 60%),
              radial-gradient(circle at 65% 65%, rgba(31,43,52,.10), transparent 62%);
  pointer-events:none;
}

.hero-kicker{
  font-weight: 800;
  letter-spacing: .12em;
  font-size: .82rem;
  color: var(--muted);
}
.hero-title{
  font-family: "Playfair Display", serif;
  font-weight: 700;
  font-size: clamp(2.3rem, 4.3vw, 4rem);
  line-height: 1.02;
  margin-top: 10px;
}
.hero-title-accent{
  color: var(--navy);
  text-decoration: underline;
  text-decoration-thickness: .12em;
  text-underline-offset: .18em;
  text-decoration-color: rgba(197,106,44,.55);
}
.hero-lead{
  margin-top: 16px;
  font-size: 1.08rem;
  color: var(--muted);
  max-width: 55ch;
}

.hero-trust{
  display:flex;
  flex-wrap: wrap;
  gap: 10px;
}
.trust-pill{
  display:flex;
  align-items:center;
  gap: 8px;
  padding: 10px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,.6);
  border: 1px solid var(--line);
  box-shadow: 0 10px 22px rgba(22,32,40,.06);
  font-weight: 700;
  color: rgba(31,43,52,.92);
}
.trust-pill i{ color: var(--accent); }

/* Form card */
.form-card{
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--card);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}
.form-card-head{
  background: linear-gradient(135deg, var(--navy), var(--navy2));
  color: #fff;
  padding: 18px 18px;
}
.form-card-title{
  font-weight: 800;
  font-size: 1.15rem;
}
.form-card-sub{
  opacity: .82;
  font-size: .92rem;
}
.form-control, .form-select{
  border-radius: 14px;
  border: 1px solid rgba(31,43,52,.18);
}
.form-control:focus, .form-select:focus{
  border-color: rgba(197,106,44,.55);
  box-shadow: 0 0 0 .25rem rgba(197,106,44,.15);
}
.tiny-note{
  font-size: .82rem;
  color: rgba(31,43,52,.62);
}
.form-card-compact .form-card-head{
  padding: 16px 16px;
}

/* Sections */
.section{
  padding: 56px 0;
}
.section-soft{
  background: linear-gradient(180deg, var(--bg2), var(--bg));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.section-title{
  font-family: "Playfair Display", serif;
  font-weight: 700;
  font-size: clamp(1.8rem, 2.6vw, 2.4rem);
}
.section-lead{
  color: var(--muted);
  font-size: 1.02rem;
}
.muted{ color: var(--muted); }

/* Media frame (book image placeholder) */
.media-frame{
  position: relative;
  border-radius: 28px;
  background: rgba(255,255,255,.65);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  padding: 18px;
  overflow: hidden;
}
.media-photo{
  height: 320px;
  border-radius: 22px;
  background:
    linear-gradient(135deg, rgba(31,43,52,.72), rgba(31,43,52,.22)),
    url("https://picsum.photos/900/600?blur=1") center/cover no-repeat;
}
.media-mini{
  position: absolute;
  right: 18px;
  bottom: 18px;
  width: 160px;
  height: 110px;
  border-radius: 18px;
  background:
    linear-gradient(135deg, rgba(197,106,44,.65), rgba(224,138,60,.22)),
    url("https://picsum.photos/500/350?random=2") center/cover no-repeat;
  border: 1px solid rgba(255,255,255,.55);
  box-shadow: 0 18px 40px rgba(22,32,40,.18);
}
.media-sticker{
  position:absolute;
  left: 18px;
  bottom: 18px;
  padding: 10px 12px;
  border-radius: 999px;
  background: rgba(246,241,231,.92);
  border: 1px solid var(--line);
  font-weight: 800;
  display:flex;
  align-items:center;
  gap: 8px;
}
.media-sticker i{ color: var(--accent); }

/* Checklist */
.checklist{
  list-style:none;
  padding: 0;
  margin: 18px 0 0;
  display:grid;
  gap: 10px;
}
.checklist li{
  display:flex;
  gap: 10px;
  align-items:flex-start;
  color: rgba(31,43,52,.86);
  font-weight: 600;
}
.checklist i{
  color: var(--accent);
  font-size: 1.1rem;
  margin-top: 1px;
}

/* Service cards */
.service-card{
  border-radius: 22px;
  padding: 18px;
  background: rgba(255,255,255,.72);
  border: 1px solid var(--line);
  box-shadow: 0 16px 40px rgba(22,32,40,.07);
  transition: transform .15s ease, box-shadow .15s ease;
}
.service-card:hover{
  transform: translateY(-3px);
  box-shadow: 0 22px 55px rgba(22,32,40,.10);
}
.service-icon{
  width: 52px;
  height: 52px;
  border-radius: 18px;
  display:grid;
  place-items:center;
  background: rgba(31,43,52,.08);
  border: 1px solid var(--line);
  margin-bottom: 12px;
}
.service-icon i{ font-size: 1.35rem; color: var(--navy); }
.service-title{ font-weight: 900; font-size: 1.05rem; }
.service-text{ color: var(--muted); }
.service-link{
  font-weight: 900;
  color: var(--accent3);
  text-decoration: none;
}
.service-link:hover{ text-decoration: underline; }

/* CTA strip */
.cta-strip{
  display:flex;
  gap: 16px;
  align-items:center;
  justify-content: space-between;
  padding: 18px;
  border-radius: 24px;
  background: linear-gradient(135deg, rgba(31,43,52,.92), rgba(22,32,40,.98));
  color:#fff;
  box-shadow: 0 26px 70px rgba(22,32,40,.18);
}
.cta-strip-actions{ display:flex; gap: 10px; flex-wrap:wrap; }
.cta-strip p{ color: rgba(255,255,255,.78); }

/* Features */
.feature-grid{
  display:grid;
  grid-template-columns: 1fr;
  gap: 12px;
  margin-top: 18px;
}
.feature{
  display:flex;
  gap: 12px;
  align-items:flex-start;
  padding: 14px;
  border-radius: 20px;
  background: rgba(255,255,255,.62);
  border: 1px solid var(--line);
}
.feature i{
  font-size: 1.25rem;
  color: var(--accent);
  margin-top: 2px;
}
.feature-title{ font-weight: 900; }
.feature-text{ color: var(--muted); font-size: .95rem; }

/* Mockup */
.mockup-wrap{
  position: relative;
  display:flex;
  justify-content:center;
}
.book-mockup{
  width: min(420px, 100%);
  height: 320px;
  border-radius: 28px;
  background:
    linear-gradient(135deg, rgba(22,32,40,.82), rgba(197,106,44,.26)),
    url("https://picsum.photos/900/650?random=7") center/cover no-repeat;
  border: 1px solid rgba(255,255,255,.45);
  box-shadow: 0 30px 80px rgba(22,32,40,.22);
  position: relative;
  overflow:hidden;
}
.book-mockup::after{
  content:"";
  position:absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 30%, rgba(255,255,255,.22), transparent 45%);
}
.book-shadow{
  position:absolute;
  bottom:-18px;
  width: min(360px, 88%);
  height: 36px;
  filter: blur(14px);
  background: rgba(22,32,40,.24);
  border-radius: 999px;
}

/* Steps */
.step-card{
  border-radius: 22px;
  padding: 18px;
  background: rgba(255,255,255,.72);
  border: 1px solid var(--line);
  box-shadow: 0 16px 40px rgba(22,32,40,.07);
}
.step-icon{
  width: 56px;
  height: 56px;
  border-radius: 18px;
  display:grid;
  place-items:center;
  background: rgba(197,106,44,.10);
  border: 1px solid rgba(197,106,44,.22);
  margin-bottom: 12px;
}
.step-icon i{ font-size: 1.35rem; color: var(--accent3); }
.step-title{ font-weight: 900; }
.step-text{ color: var(--muted); }

/* Accordion clean */
.accordion-clean .accordion-item{
  border: 1px solid var(--line);
  border-radius: 18px !important;
  overflow: hidden;
  background: rgba(255,255,255,.70);
  box-shadow: 0 14px 35px rgba(22,32,40,.06);
  margin-bottom: 12px;
}
.accordion-clean .accordion-button{
  font-weight: 900;
  background: transparent;
  color: var(--ink);
}
.accordion-clean .accordion-button:not(.collapsed){
  color: var(--navy);
  box-shadow: none;
}
.accordion-clean .accordion-button:focus{
  box-shadow: 0 0 0 .25rem rgba(197,106,44,.15);
}
.accordion-clean .accordion-body{ color: var(--muted); }

/* Footer */
.footer{
  background: linear-gradient(135deg, var(--navy2), var(--navy));
  color: rgba(255,255,255,.86);
}
.brand-mark-footer{
  background: linear-gradient(135deg, var(--accent), var(--accent2));
}
.footer-brand-title{ font-weight: 900; }
.footer-brand-sub{ opacity: .75; font-size: .9rem; }
.footer-text{ color: rgba(255,255,255,.74); }
.footer-col-title{
  font-weight: 900;
  margin-bottom: 10px;
}
.footer-list{
  list-style:none;
  padding:0;
  margin:0;
  display:grid;
  gap: 10px;
}
.footer-list i{ color: rgba(224,138,60,.95); margin-right: 8px; }
.pay-row{ display:flex; flex-wrap:wrap; gap: 10px; }
.pay-pill{
  padding: 8px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.16);
  background: rgba(255,255,255,.06);
  font-weight: 800;
  font-size: .9rem;
}
.footer-note{
  color: rgba(255,255,255,.72);
  font-size: .9rem;
}
.footer-hr{
  border-color: rgba(255,255,255,.14);
}
.footer-link{
  color: rgba(255,255,255,.82);
  text-decoration:none;
  font-weight: 700;
}
.footer-link:hover{ text-decoration: underline; }

/* Responsive tweaks */
@media (min-width: 992px){
  .feature-grid{ grid-template-columns: 1fr 1fr; }
}
