/* -------------------------
   Obelo Web Studio - CSS
-------------------------- */

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial;
  line-height: 1.6;
  /* Slightly improved readability while keeping your look */
  color: rgba(248, 249, 252, 0.86);
  background: #0b1020;
}

a { color: inherit; text-decoration: none; }
.container { width: min(1100px, 92%); margin: 0 auto; }

.muted { color: rgba(255,255,255,0.70); }
.sectionNote { color: rgba(255,255,255,0.70); margin-top: 18px; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 16px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.18);
  background: rgba(255,255,255,0.10);
  color: rgba(255,255,255,0.95);
  font-weight: 650;
  transition: transform 160ms ease, background 160ms ease, border 160ms ease;
}
.btn:hover { transform: translateY(-1px); background: rgba(255,255,255,0.14); border-color: rgba(255,255,255,0.28); }
.btn--ghost { background: transparent; }
.btn--wide { width: 100%; }
.btn--small { padding: 10px 12px; border-radius: 12px; }

/* Announcement */
.announcement {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255,255,255,0.12);
}
.announcement__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
  gap: 12px;
}
.announcement p { margin: 0; color: rgba(255,255,255,0.85); font-size: 0.95rem; }
.announcement__cta { font-weight: 650; border-bottom: 1px dashed rgba(255,255,255,0.35); }

/* Header */
.header {
  position: sticky;
  top: 44px;
  z-index: 40;
  background: rgba(11,16,32,0.75);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255,255,255,0.10);
}
.header__inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  gap: 14px;
}

/* Brand with Logo Image */
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,0.95);
}
.brand__logoWrap{
  width: 44px;
  height: 44px;
  border-radius: 0;
  background: transparent;
  border: none;
  overflow: visible;
}
.brand__logo{
  width: 44px;
  height: 44px;
  object-fit: contain;
  padding: 0;
  display: block;
}
.brand__logoWrap--footer {
  width: 46px;
  height: 46px;
}
.brand__text { font-size: 1.05rem; }

/* Desktop Nav */
.nav {
  display: flex;
  align-items: center;
  gap: 16px;
  color: rgba(255,255,255,0.82);
  font-weight: 600;
}
.nav a { opacity: 0.9; }
.nav a:hover { opacity: 1; }

/* Mobile nav */
.navToggle { display: none; }
.hamburger {
  display: none;
  width: 44px; height: 44px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(255,255,255,0.06);
  align-items: center;
  justify-content: center;
  gap: 4px;
  cursor: pointer;
}
.hamburger span {
  display: block;
  width: 18px;
  height: 2px;
  background: rgba(255,255,255,0.85);
  border-radius: 10px;
  transition: transform 150ms ease, opacity 150ms ease;
}
.mobileNav {
  display: none;
  position: absolute;
  right: 0;
  top: 64px;
  width: min(360px, 92vw);
  padding: 14px;
  border-radius: 18px;
  background: rgba(11,16,32,0.92);
  border: 1px solid rgba(255,255,255,0.14);
  backdrop-filter: blur(12px);
}
.mobileNav a {
  display: block;
  padding: 10px 12px;
  border-radius: 14px;
  color: rgba(255,255,255,0.90);
  font-weight: 650;
}
.mobileNav a:hover { background: rgba(255,255,255,0.08); }

/* Hero */
.hero {
  padding: 62px 0 34px;
  background:
    radial-gradient(900px 400px at 15% 20%, rgba(99,102,241,0.28), transparent 60%),
    radial-gradient(900px 450px at 80% 15%, rgba(34,211,238,0.22), transparent 60%),
    radial-gradient(800px 400px at 50% 90%, rgba(16,185,129,0.12), transparent 60%),
    linear-gradient(180deg, rgba(255,255,255,0.02), transparent 45%);
}

.hero__grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 26px;
  align-items: center;
}

.pill {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.14);
  color: rgba(255,255,255,0.84);
  font-weight: 650;
  font-size: 0.9rem;
}
.dot { width: 5px; height: 5px; background: rgba(255,255,255,0.65); border-radius: 999px; }

.hero h1 {
  margin: 14px 0 12px;
  font-size: clamp(2.1rem, 3.2vw, 3.1rem);
  line-height: 1.12;
  color: rgba(255,255,255,0.96);
  letter-spacing: -0.8px;
}
.grad {
  background: linear-gradient(90deg, rgba(99,102,241,1), rgba(34,211,238,1), rgba(16,185,129,1));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.lead { margin: 0 0 16px; color: rgba(255,255,255,0.80); font-size: 1.07rem; }

.hero__actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 12px; }

.trust {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 18px;
}
.trust__item {
  padding: 12px;
  border-radius: 16px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
}
.trust__item strong { color: rgba(255,255,255,0.94); display: block; }
.trust__item span { color: rgba(255,255,255,0.70); font-size: 0.92rem; }

/* Hero card */
.hero__card { position: relative; }
.card {
  padding: 18px;
  border-radius: 22px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.14);
  box-shadow: 0 18px 60px rgba(0,0,0,0.35);
  color: rgba(255,255,255,0.88);
}
.card__badge {
  display: inline-flex;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.16);
  background: rgba(255,255,255,0.06);
  font-weight: 750;
  font-size: 0.86rem;
}
.card__title { margin: 10px 0 6px; font-weight: 800; font-size: 1.2rem; color: rgba(255,255,255,0.95); }
.card__desc { margin: 0 0 12px; color: rgba(255,255,255,0.76); }

.checklist {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}
.checklist li { position: relative; padding-left: 28px; color: rgba(255,255,255,0.84); }
.checklist li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  width: 20px; height: 20px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(16,185,129,0.18);
  border: 1px solid rgba(16,185,129,0.35);
  color: rgba(255,255,255,0.92);
  font-weight: 900;
  font-size: 0.9rem;
}
.checklist--compact { gap: 8px; }
.checklist--compact li { padding-left: 26px; }
.fineprint { margin: 10px 0 0; font-size: 0.92rem; color: rgba(255,255,255,0.65); }

.glow {
  position: absolute;
  inset: -30px;
  background: radial-gradient(closest-side at 40% 30%, rgba(99,102,241,0.25), transparent 60%),
              radial-gradient(closest-side at 75% 75%, rgba(34,211,238,0.18), transparent 60%);
  filter: blur(22px);
  z-index: -1;
  opacity: 0.9;
}

/* Sections */
.logos { padding: 10px 0 38px; }
.logos__row { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 10px; }
.logos__row span {
  padding: 10px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.78);
  font-weight: 650;
}

.section { padding: 70px 0; }
.section--alt {
  background: rgba(255,255,255,0.02);
  border-top: 1px solid rgba(255,255,255,0.08);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.sectionHead { max-width: 720px; margin-bottom: 26px; }
.sectionHead h2 {
  margin: 0 0 10px;
  color: rgba(255,255,255,0.95);
  font-size: clamp(1.6rem, 2.1vw, 2.1rem);
}
.sectionHead p { margin: 0; color: rgba(255,255,255,0.76); }

/* =========================
   Grid Utilities (MORE COLUMNS)
   Use these to distribute content across the site.
========================= */
.grid2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
.grid3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.grid4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }

/* Cards */
.feature, .workCard, .priceCard, .infoCard, .contactCard {
  padding: 18px;
  border-radius: 20px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.86);
}
.feature h3, .workCard h3, .priceCard h3, .infoCard h3, .contactCard h3 {
  margin: 0 0 8px;
  color: rgba(255,255,255,0.94);
  font-size: 1.15rem;
}
.feature p, .workCard p { margin: 0 0 12px; color: rgba(255,255,255,0.74); }
.miniList { margin: 0; padding-left: 18px; color: rgba(255,255,255,0.78); }
.miniList li { margin: 6px 0; }

/* Steps */
.steps { display: grid; grid-template-columns: repeat(5, 1fr); gap: 12px; }
.step {
  padding: 16px;
  border-radius: 20px;
  background: rgba(16,185,129,0.18);
  border: 1px solid rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.85);
}
.step__num {
  width: 34px; height: 34px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.14);
  font-weight: 900;
  margin-bottom: 10px;
}
.step h3 { margin: 0 0 6px; color: rgba(255,255,255,0.95); font-size: 1.05rem; }
.step p { margin: 0; color: rgba(255,255,255,0.74); }

/* Work cards */
.workCard__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* This ensures the image fills the space without stretching */
  display: block;
}

.workCard__thumb {
  position: relative; /* Keeps the 'label' positioned correctly over the image */
  overflow: hidden;
}

.workCard__label {
  position: absolute;
  left: 12px;
  bottom: 12px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(11,16,32,0.70);
  border: 1px solid rgba(255,255,255,0.14);
  color: rgba(255,255,255,0.88);
  font-weight: 700;
  font-size: 0.86rem;
}
.tagRow { list-style: none; padding: 0; margin: 0; display: flex; gap: 8px; flex-wrap: wrap; }
.tagRow li {
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(255,255,255,0.06);
  color: rgba(255,255,255,0.78);
  font-weight: 650;
  font-size: 0.86rem;
}

/* Pricing */
.pricing { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.price { margin: 8px 0 6px; font-size: 2rem; font-weight: 900; color: rgba(255,255,255,0.96); }
.price span { font-size: 0.95rem; font-weight: 700; color: rgba(255,255,255,0.70); }
.priceCard--featured {
  border-color: rgba(34,211,238,0.35);
  box-shadow: 0 16px 60px rgba(34,211,238,0.12);
  background: rgba(34,211,238,0.06);
  position: relative;}
  /* =========================
   Pricing - align CTA buttons
========================= */
/*muted.price  Monthly price */
/* =========================
   Monthly pricing highlight
========================= */

.monthlyPrice {
  display: inline-block;
  margin: 6px 0 14px;
  padding: 6px 12px;
  border-radius: 999px;
  font-weight: 800;
  font-size: 0.95rem;
  color: rgba(255,255,255,0.95);

  background: rgba(16,185,129,0.18);       /* soft green */
  border: 1px solid rgba(16,185,129,0.35);
}
/* =========================
   Yearly pricing (discount)
========================= */

.yearlyPrice{
  margin: 0 0 16px;
  padding: 6px 12px;
  border-radius: 12px;
  font-weight: 750;
  font-size: 0.92rem;
  color: rgba(255,255,255,0.88);

  background: rgba(255,255,255,0.06);
  border: 1px dashed rgba(255,255,255,0.28);
}

.monthlyPrice span{
  margin-left: 6px;
  font-weight: 800;
  color: rgba(16,185,129,0.95); /* green accent for savings */
}
/* =========================
   Recurring fee explanation
========================= */

.recurringNote{
  margin: -6px 0 14px;
  font-size: 0.88rem;
  line-height: 1.4;
  color: rgba(255,255,255,0.68);
}
/* =========================
   Setup + recurring separator
========================= */

.pricePlus{
  margin: 2px 0 6px;
  font-size: 1.4rem;
  font-weight: 900;
  color: rgba(255,255,255,0.55);
  line-height: 1;
}



.pricing {
  align-items: stretch; /* makes grid items same row height */
}

.priceCard {
  display: flex;
  flex-direction: column;
  height: 100%;              /* ensures equal-height behavior in the grid */
}

.priceCard .checklist {
  margin-top: 10px;
  margin-bottom: 25px;
}

/* Push the last button to the bottom of each card */
.priceCard .btn {
  margin-top: auto;
}
.priceCard .btn {
  margin-top: auto;
  padding-top: 12px;
}


/* Optional: make monthly price spacing consistent (if you use .muted under price) */
.priceCard .price + .muted {
  margin-top: -2px;
  margin-bottom: 10px;
}


.ribbon {
  position: absolute;
  top: 14px;
  right: 14px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(34,211,238,0.18);
  border: 1px solid rgba(34,211,238,0.30);
  color: rgba(255,255,255,0.92);
  font-weight: 800;
  font-size: 0.86rem;
}

/* FAQ */
.faq { display: grid; gap: 10px; max-width: 820px; }
.faqItem {
  padding: 14px 16px;
  border-radius: 18px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
}
.faqItem summary { cursor: pointer; font-weight: 800; color: rgba(255,255,255,0.92); }
.faqItem p { margin: 10px 0 0; color: rgba(255,255,255,0.76); }

/* =========================
   Contact (NO FORM)
   - Replaces .form with contact cards
========================= */
.contact {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 16px;
  align-items: start;
}
.contact__details {
  margin-top: 14px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

/* Contact cards column */
.contactCards { display: grid; gap: 12px; }
.contactCard { border-radius: 22px; }
.contactCard__role{
  margin: 0 0 6px 0;
  color: rgba(255,255,255,0.70);
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: 0.78rem;
  font-weight: 800;
}
.contactCard__name{
  margin: 0 0 10px 0;
  font-size: 1.15rem;
  color: rgba(255,255,255,0.95);
}
.contactCard__line{ margin: 0 0 10px 0; }
.contactLink{
  display: inline-block;
  margin-top: 6px;
  font-weight: 800;
  border-bottom: 1px dashed rgba(255,255,255,0.25);
}
.contactLink:hover{ border-bottom-color: rgba(255,255,255,0.45); }

/* Footer */
.footer {
  padding: 50px 0;
  border-top: 1px solid rgba(255,255,255,0.10);
  background: rgba(0,0,0,0.15);
}
.footer__grid { display: grid; grid-template-columns: 1.4fr 0.7fr 0.7fr; gap: 18px; }
.footer__links strong { display: block; margin-bottom: 10px; color: rgba(255,255,255,0.92); }
.footer__links a { display: block; padding: 6px 0; color: rgba(255,255,255,0.78); }
.footer__links a:hover { color: rgba(255,255,255,0.92); }
.footer__bottom {
  grid-column: 1 / -1;
  margin-top: 12px;
  color: rgba(255,255,255,0.65);
  font-size: 0.95rem;
  border-top: 1px solid rgba(255,255,255,0.10);
  padding-top: 12px;
}

/* Responsive */
@media (max-width: 980px) {
  .hero__grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr 1fr; }
  .grid3 { grid-template-columns: 1fr 1fr; }
  .grid4 { grid-template-columns: 1fr 1fr; }
  .pricing { grid-template-columns: 1fr; }
  .contact { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; }
}

@media (max-width: 720px) {
  .nav { display: none; }
  .hamburger { display: inline-flex; }

  .navToggle:checked ~ .hamburger span:nth-child(2) { opacity: 0; }
  .navToggle:checked ~ .hamburger span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
  .navToggle:checked ~ .hamburger span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

  .navToggle:checked ~ .mobileNav { display: grid; gap: 6px; }

  .announcement__inner { flex-direction: column; align-items: flex-start; }
  .trust { grid-template-columns: 1fr; }
  .grid3, .grid2, .grid4 { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .contact__details { grid-template-columns: 1fr; }
}
/* =========================
   Micro-interactions + reveals
========================= */

.reveal {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 600ms ease, transform 600ms ease;
  will-change: opacity, transform;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
  .reveal { transition: none; transform: none; opacity: 1; }
}

/* Header subtle state on scroll */
.header.is-scrolled {
  border-bottom-color: rgba(255,255,255,0.16);
  background: rgba(11,16,32,0.88);
}

/* Active nav link */
.nav a.is-active {
  opacity: 1;
  color: rgba(255,255,255,0.98);
  border-bottom: 1px solid rgba(34,211,238,0.55);
  padding-bottom: 6px;
}
