/* ====== Base / tokens ====== */
:root{
  --bg:#0b1220;
  --page:#ffffff;
  --alt:#f6f8fb;
  --text:#0f172a;
  --muted:#475569;
  --brand:#2563eb;        /* primary */
  --brand-2:#0ea5e9;      /* gradient partner */
  --ring:rgba(37,99,235,.25);
  --radius:14px;
  --shadow:0 8px 24px rgba(2,6,23,.08);
}

html{scroll-behavior:smooth;}
body{
  margin:0;
  font-family:'Inter',system-ui,-apple-system,Segoe UI,Roboto,Helvetica,Arial,sans-serif;
  color:var(--text);
  background:var(--page);
  line-height:1.6;
}

/* ====== Layout ====== */
.container{max-width:1100px;margin-inline:auto;padding:0 1.25rem;}
.section{padding:72px 0;background:#fff;}
.section--alt{background:var(--alt);}
.section--tight{padding:56px 0;}
.section-title{
  font-size:clamp(1.5rem,2.2vw,2.25rem);
  margin:0 0 28px;
  text-align:center;
}

/* ====== Nav ====== */
.site-nav{
  position:sticky;top:0;z-index:50;background:#fff;border-bottom:1px solid #e5e7eb;
}
.site-nav .nav-wrap{
  display:flex;align-items:center;justify-content:space-between;
  gap:1rem;padding:.9rem 1.25rem;max-width:1100px;margin:0 auto;
}
.brand{font-weight:700;color:var(--text);text-decoration:none;}
.links{display:flex;align-items:center;gap:1rem;flex-wrap:wrap;}
.links a{
  color:var(--text);text-decoration:none;font-weight:500;opacity:.9;
}
.links a:hover{opacity:1}

/* ====== Hero ====== */
.hero{
  background:linear-gradient(135deg,var(--brand) 0%,var(--brand-2) 100%);
  color:#fff;
}
.hero .container{padding-top:22px;padding-bottom:22px}
.hero-grid{
  display:grid;gap:24px;align-items:center;
  grid-template-columns: 1.2fr .8fr;
}
.hero h1{
  font-size:clamp(2rem,4vw,3rem);
  margin:0 0 12px;
}
.subhead{opacity:.95;margin:0 auto 22px;max-width:720px}
.hero-ctas{display:flex;gap:12px;flex-wrap:wrap}
.hero-figure img{
  width:100%;height:auto;border-radius:16px;box-shadow:var(--shadow);
  border:3px solid rgba(255,255,255,.55)
}
.visually-hidden{position:absolute;width:1px;height:1px;margin:-1px;border:0;padding:0;clip:rect(0 0 0 0);overflow:hidden}

/* ====== Buttons ====== */
.button{
  display:inline-flex;align-items:center;gap:.55rem;
  padding:.8rem 1.15rem;border-radius:10px;
  text-decoration:none;font-weight:700;letter-spacing:.2px;
  transition:transform .18s ease, box-shadow .18s ease, background .2s ease, color .2s ease;
  box-shadow:var(--shadow);
}
.button i{font-size:1rem}
.button--primary{background:#fff;color:var(--brand)}
.button--primary:hover{transform:translateY(-1px);box-shadow:0 10px 28px rgba(2,6,23,.12)}
.button--ghost{background:transparent;color:#fff;border:1px solid rgba(255,255,255,.6)}
.button--ghost:hover{background:rgba(255,255,255,.1);transform:translateY(-1px)}

/* ====== Cards ====== */
.cards{
  display:grid;gap:18px;
  grid-template-columns:repeat(auto-fit,minmax(240px,1fr));
}
.card{
  background:#fff;border-radius:var(--radius);padding:22px;text-align:left;
  box-shadow:var(--shadow);border:1px solid #eef2f7;
  transition:transform .18s ease, box-shadow .18s ease;
}
.card:hover{transform:translateY(-3px);box-shadow:0 14px 36px rgba(2,6,23,.12)}
.card h3{margin:.2rem 0 .35rem;font-size:1.05rem}
.card p{margin:0;color:var(--muted)}

/* prettier icons */
.icon-pill{
  display:inline-flex;align-items:center;justify-content:center;
  width:42px;height:42px;border-radius:999px;margin-bottom:8px;
  background:linear-gradient(135deg, rgba(37,99,235,.15), rgba(14,165,233,.15));
  border:1px solid rgba(37,99,235,.25);
  box-shadow:inset 0 0 0 1px rgba(255,255,255,.35);
}
.icon-pill i{color:#1d4ed8;font-size:1.1rem}

/* ====== Pricing ====== */
.pricing-grid{
  display:grid;gap:18px;margin-top:8px;
  grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
}
.price-card{
  background:#fff;border-radius:var(--radius);padding:26px;border:1px solid #e8eef7;
  box-shadow:var(--shadow);position:relative;text-align:left;
  display:flex;flex-direction:column;gap:12px;
}
.price-card .badge{
  position:absolute;top:14px;right:14px;background:var(--brand);color:#fff;
  padding:.25rem .5rem;border-radius:999px;font-size:.75rem;font-weight:700
}
.price-card.highlight{outline:2px solid var(--brand);outline-offset:2px}
.price{font-size:1.75rem;font-weight:800;margin:4px 0}
.price span{font-size:.9rem;color:var(--muted);font-weight:600;margin-left:4px}
.price-points{list-style:none;padding:0;margin:6px 0 12px;display:grid;gap:6px}
.price-points li{color:var(--muted)}
.price-points i{color:#10b981;margin-right:6px}

/* ====== Testimonials ====== */
.quote{
  font-size:1.15rem;max-width:820px;margin:0 auto;
  background:#fff;border-left:4px solid var(--brand);padding:18px 20px;border-radius:10px;
  box-shadow:var(--shadow)
}

/* ====== Steps ====== */
.steps{
  list-style:none;padding:0;margin:0 auto;max-width:720px;
  display:grid;gap:12px;
}
.steps li{
  background:#fff;border:1px solid #e8eef7;border-radius:12px;
  padding:14px 16px;display:flex;align-items:center;gap:10px;color:var(--text);
  box-shadow:var(--shadow)
}
.steps i{color:var(--brand)}

/* ====== Contact ====== */
.contact-form{
  max-width:560px;margin:0 auto 10px;background:#fff;border:1px solid #e8eef7;
  padding:18px;border-radius:12px;box-shadow:var(--shadow)
}
.contact-meta{color:var(--muted);text-align:center;margin-top:8px}
.form-hint{font-size:.9rem;color:var(--muted);margin-top:10px}

/* ====== Footer ====== */
.site-footer{background:#0f172a;color:#cbd5e1}
.site-footer .container{padding:28px 1.25rem;text-align:center}

/* ====== Animations ====== */
.reveal{opacity:0;transform:translateY(14px);transition:all .5s ease}
.reveal--visible{opacity:1;transform:none}

/* ====== Responsive tweaks ====== */
@media (max-width: 960px){
  .hero-grid{grid-template-columns:1fr}
  .hero-figure{order:-1}
}
@media (max-width: 760px){
  .links{gap:.75rem}
  .links a{padding:.25rem 0}
  .hero-ctas{flex-direction:column}
}

/* Center-align pricing card headings */
.price-card h3, .price-card .price {
  text-align: center;
}

/* Bigger icons and center alignment */
.icon-pill {
  width: 60px;
  height: 60px;
  margin: 0 auto 12px auto; /* center horizontally with margin auto */
}
.icon-pill i {
  font-size: 1.5rem; /* bigger icon size */
}

.card {
  text-align: center; /* center align all card content */
}

.price-card {
  text-align: center; /* center align all price card content */
}
.price-card ul.price-points {
  text-align: left; /* keep bullet points aligned left for readability */
  display: inline-block; /* center the list block inside */
}

/* Ensure Services icons also bigger and centered */
.cards .icon-pill {
  width: 60px;
  height: 60px;
  margin: 0 auto 12px auto;
}
.cards .icon-pill i {
  font-size: 1.5rem;
}

/* Pricing subtitle styling */
.price-card .subtitle {
  font-size: 1rem;
  color: var(--muted);
  margin-top: -8px;
  margin-bottom: 12px;
}

/* Adjust icon for pricing cards */
.price-card .icon-pill {
  width: 64px;
  height: 64px;
  margin: 0 auto 10px auto;
}
.price-card .icon-pill i {
  font-size: 1.6rem;
}

/* ===== Hero visual polish ===== */
.hero{
  /* Softer multi-layer gradient */
  background:
    radial-gradient(1200px 600px at 80% 20%, rgba(255,255,255,.18), transparent 60%),
    linear-gradient(135deg, #2563eb 0%, #1d74e8 35%, #0ea5e9 100%);
  color:#fff;
  position:relative;
}
.hero .container{padding-top:34px;padding-bottom:34px}
.hero-grid{grid-template-columns:1.05fr .95fr}
.hero-copy{max-width:640px}
.hero-figure{position:relative}
.hero-figure::after{
  content:"";position:absolute;inset:-16px;z-index:-1;border-radius:22px;
  background:radial-gradient(400px 220px at 70% 20%, rgba(255,255,255,.22), transparent 60%);
  filter:blur(2px);
}
.hero-figure img{border-radius:18px;box-shadow:0 10px 40px rgba(2,6,23,.25);border:3px solid rgba(255,255,255,.6)}

/* Hero badges (chips) */
.hero-badges{
  display:flex;gap:10px;flex-wrap:wrap;margin:12px 0 0;padding:0;list-style:none;
}
.hero-badges li{
  display:inline-flex;align-items:center;gap:.45rem;
  background:rgba(255,255,255,.16);border:1px solid rgba(255,255,255,.35);
  padding:.45rem .7rem;border-radius:999px;font-weight:600;backdrop-filter: blur(4px);
}
.hero-badges i{font-size:.95rem}

/* Reduce perceived emptiness on very wide screens */
@media (min-width:1200px){
  .hero .container{max-width:1200px}
}

/* ===== Best Value card accent ===== */
.price-card.highlight{
  background:linear-gradient(180deg, #f5f8ff 0%, #ffffff 55%);
  box-shadow:0 14px 36px rgba(37,99,235,.16);
  border-color:#cfe0ff;
}
.price-card.highlight .badge{
  background:linear-gradient(135deg, #2563eb, #0ea5e9);
}

/* Improve overall card rhythm */
.price-card h3{margin-top:2px;margin-bottom:2px}
.price-card .subtitle{margin-top:2px;margin-bottom:14px}

/* --- Remove stray bullets in pricing points --- */
.price-points {
  list-style: none !important;
  padding-left: 0 !important;
  margin-left: 0 !important;
}
.price-points li {
  list-style-type: none !important;
}
.price-points li::marker { content: ""; } /* Safari */

/* --- Hero badges: vertical, wider, more spaced --- */
.hero-badges{
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  margin-top: 16px;
}
.hero-badges li{
  width: 320px;               /* wider */
  justify-content: flex-start;
  padding: .6rem .9rem;       /* a touch larger */
  font-size: .98rem;
}

/* --- Bigger 'See Pricing' button in hero --- */
.hero-ctas .button.button--ghost {
  padding: 1rem 1.25rem;
  font-size: 1rem;
  border-width: 2px;
  border-color: rgba(255,255,255,.75);
  box-shadow: 0 6px 18px rgba(2,6,23,.16);
}

.hidden{display:none !important}

/* ===== Responsive type & buttons ===== */
body{font-size:clamp(0.98rem, 0.9rem + 0.25vw, 1.05rem)}
h1{font-size:clamp(2rem, 3.2vw, 3rem)}
h2.section-title{font-size:clamp(1.4rem, 1.8vw, 2.1rem)}
.subhead{font-size:clamp(1rem, 1vw + 0.6rem, 1.15rem)}
.button{min-height:44px}
.links a{padding:.35rem .25rem}

/* ===== Fluid media ===== */
img{max-width:100%;height:auto}

/* ===== Hero responsive ===== */
@media (max-width: 1024px){
  .hero-grid{grid-template-columns:1fr}
  .hero-figure{order:-1}
}
.hero-badges{flex-direction:column;align-items:stretch}
.hero-badges li{
  width:100%;
  max-width:520px;
  margin:0;
}

/* ===== Spacing adjustments for small screens ===== */
@media (max-width: 480px){
  .section{padding:44px 0}
  .card, .price-card{padding:16px}
  .pricing-grid{gap:14px}
  .cards{gap:14px}
  .icon-pill{width:52px;height:52px}
  .icon-pill i{font-size:1.3rem}
}

/* ===== Pricing list mobile simplification ===== */
@media (max-width: 560px){
  .price-card{ text-align:center }
  .price-card ul.price-points{
    display:block;
    width:100%;
    text-align:left;
  }
}

/* ===== Carousel mobile tweaks ===== */
@media (max-width: 560px){
  .carousel-track{gap:12px}
  .testimonial-card{flex:0 0 90vw}
}

/* ===== Nav tappability ===== */
.site-nav .nav-wrap{row-gap:.4rem}
.links a{line-height:1.2}

/* ===== Hero CTA stack ===== */
@media (max-width: 560px){
  .hero-ctas{flex-direction:column;align-items:stretch}
  .hero-ctas .button{width:100%;justify-content:center}
}

/* ===== Force headings color ===== */
h1, h2, h3, h4, h5, h6{
  color: var(--text) !important;
}
