/* ============================================================
   Zippyly — Modern Professional Theme
   Palette: Charcoal dark bg · Pure white cards · Saffron-orange accent
   ============================================================ */

:root {
  /* Brand accent */
  --accent:        #f97316;   /* saffron-orange */
  --accent-dark:   #ea6a05;
  --accent-light:  #fff0e6;

  /* Neutrals */
  --ink:           #0f1117;   /* near-black body bg */
  --ink-2:         #1a1f2e;   /* footer bg */
  --surface:       #ffffff;   /* card / section bg */
  --surface-2:     #f7f8fc;   /* page body bg */
  --border:        #e8eaf0;

  /* Text */
  --text-primary:  #111827;
  --text-muted:    #6b7280;
  --text-light:    #9ca3af;

  /* Shadows / radius */
  --shadow-sm:     0 2px 8px rgba(0,0,0,.06);
  --shadow-md:     0 8px 28px rgba(0,0,0,.09);
  --shadow-lg:     0 18px 48px rgba(0,0,0,.14);
  --radius:        16px;
  --radius-sm:     10px;
}

/* ── Reset ──────────────────────────────────────────────── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html, body { height: 100%; }

body {
  font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  color: var(--text-primary);
  background: var(--surface-2);
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  line-height: 1.65;
}
a { text-decoration: none; }
main { flex: 1 0 auto; }

/* ── Navbar ─────────────────────────────────────────────── */
.navbar {
  background: rgba(255, 255, 255, 0.82) !important;
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  box-shadow: 0 1px 0 rgba(0,0,0,.08), 0 4px 20px rgba(0,0,0,.05);
  padding: .55rem 1.5rem;
  transition: box-shadow .3s;
}
.navbar-brand img { height: 42px; }

.nav-link {
  font-weight: 600;
  font-size: .93rem;
  color: var(--text-primary) !important;
  padding: .5rem 1rem !important;
  margin: 0 .1rem;
  border-radius: var(--radius-sm);
  transition: all .22s ease;
  letter-spacing: .01em;
}
.nav-link:hover {
  color: var(--accent) !important;
  background: var(--accent-light);
}
.nav-link.active {
  color: var(--surface) !important;
  background: var(--accent);
}

/* ── Hero ───────────────────────────────────────────────── */
.hero {
  background: linear-gradient(135deg, #0f1117 0%, #1a1f2e 55%, #242b3d 100%);
  color: #fff;
  text-align: center;
  padding: 6rem 1.5rem;
  position: relative;
  overflow: hidden;
}
/* Warm glow from accent */
.hero::before {
  content: "";
  position: absolute;
  top: -120px; left: 50%;
  transform: translateX(-50%);
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(249,115,22,.22) 0%, transparent 65%);
  pointer-events: none;
}
/* Subtle grid texture */
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255,255,255,.03) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none;
}
.hero .inner {
  position: relative;
  z-index: 1;
  max-width: 840px;
  margin: 0 auto;
}
.hero h1 {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  line-height: 1.22;
  margin-bottom: 1.1rem;
  letter-spacing: -.02em;
}
.hero p {
  font-size: 1.15rem;
  opacity: .8;
  margin: 0 auto 2rem;
  max-width: 680px;
  line-height: 1.7;
}

/* Badge / pill */
.badge-soft {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  background: rgba(249,115,22,.15);
  border: 1px solid rgba(249,115,22,.35);
  color: #fdba74;
  padding: .35rem 1.1rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: .85rem;
  margin-bottom: 1.4rem;
  letter-spacing: .02em;
}

/* ── Buttons ────────────────────────────────────────────── */
.btn-zip {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  background: var(--accent);
  color: #fff;
  font-weight: 700;
  font-size: .95rem;
  padding: .85rem 2.2rem;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  box-shadow: 0 8px 24px rgba(249,115,22,.35);
  transition: all .25s ease;
  letter-spacing: .01em;
}
.btn-zip:hover {
  background: var(--accent-dark);
  transform: translateY(-3px);
  box-shadow: 0 14px 30px rgba(249,115,22,.4);
  color: #fff;
}
/* White variant (used on coloured backgrounds) */
.btn-zip.outline {
  background: transparent;
  color: var(--accent);
  border: 2px solid var(--accent);
  box-shadow: none;
}
.btn-zip.outline:hover {
  background: var(--accent);
  color: #fff;
}
/* Keep .solid as alias for accent-filled */
.btn-zip.solid { background: var(--accent); color: #fff; }
.btn-zip.solid:hover { background: var(--accent-dark); color: #fff; }

/* ── Page sections ──────────────────────────────────────── */
.section {
  padding: 4.5rem 1.5rem;
  max-width: 1180px;
  margin: 0 auto;
  width: 100%;
}
.section-title {
  text-align: center;
  color: var(--text-primary);
  font-weight: 700;
  font-size: clamp(1.6rem, 3vw, 2.1rem);
  margin-bottom: .55rem;
  letter-spacing: -.02em;
}
.section-title span { color: var(--accent); }
.section-sub {
  text-align: center;
  color: var(--text-muted);
  max-width: 640px;
  margin: 0 auto 2.6rem;
  font-size: 1.05rem;
}

/* ── Feature cards ──────────────────────────────────────── */
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.6rem;
}
.card-z {
  background: var(--surface);
  border-radius: var(--radius);
  padding: 2.2rem 1.8rem;
  text-align: center;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s;
  position: relative;
  overflow: hidden;
}
.card-z::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), #fbbf24);
  opacity: 0;
  transition: opacity .3s;
}
.card-z:hover {
  transform: translateY(-7px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}
.card-z:hover::before { opacity: 1; }
.card-z .ic {
  width: 60px; height: 60px;
  border-radius: 14px;
  background: var(--accent-light);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.2rem;
  font-size: 1.6rem;
  color: var(--accent);
  transition: background .3s, color .3s;
}
.card-z:hover .ic {
  background: var(--accent);
  color: #fff;
}
.card-z h3 {
  color: var(--text-primary);
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: .5rem;
}
.card-z p { color: var(--text-muted); font-size: .95rem; }

/* ── Steps ──────────────────────────────────────────────── */
.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.6rem;
}
.step {
  background: var(--surface);
  border-radius: var(--radius);
  padding: 2.2rem 1.6rem;
  text-align: center;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
  transition: transform .3s, box-shadow .3s;
}
.step:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.step .num {
  width: 50px; height: 50px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), #fbbf24);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 1.1rem;
  margin: 0 auto 1.1rem;
  box-shadow: 0 6px 18px rgba(249,115,22,.3);
}
.step h3 { color: var(--text-primary); font-size: 1.1rem; font-weight: 700; margin-bottom: .4rem; }
.step p  { color: var(--text-muted); font-size: .95rem; }

/* ── List card (safety) ─────────────────────────────────── */
.list-card {
  background: var(--surface);
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
  overflow: hidden;
  height: 100%;
  transition: box-shadow .3s;
}
.list-card:hover { box-shadow: var(--shadow-lg); }
.list-card .head {
  background: linear-gradient(135deg, var(--ink) 0%, var(--ink-2) 100%);
  color: #fff;
  padding: 1.1rem 1.6rem;
  font-weight: 700;
  font-size: 1.05rem;
  display: flex;
  align-items: center;
  gap: .65rem;
}
.list-card .head i { color: var(--accent); }
.list-card ul { list-style: none; padding: 1.4rem 1.8rem; }
.list-card li {
  position: relative;
  padding: .5rem 0 .5rem 2rem;
  color: var(--text-muted);
  font-size: .95rem;
  border-bottom: 1px solid var(--border);
}
.list-card li:last-child { border-bottom: none; }
.list-card li::before {
  content: "\2713";
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 800;
  font-size: 1rem;
}

/* ── CTA banner ─────────────────────────────────────────── */
.cta {
  background: linear-gradient(135deg, var(--ink) 0%, var(--ink-2) 100%);
  color: #fff;
  border-radius: 24px;
  text-align: center;
  padding: 3.5rem 2rem;
  position: relative;
  overflow: hidden;
}
.cta::before {
  content: "";
  position: absolute;
  top: -80px; right: -80px;
  width: 320px; height: 320px;
  background: radial-gradient(circle, rgba(249,115,22,.18) 0%, transparent 65%);
  pointer-events: none;
}
.cta h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  margin-bottom: .8rem;
  letter-spacing: -.02em;
}
.cta p { opacity: .75; max-width: 600px; margin: 0 auto 1.8rem; }

/* ── Coming soon ────────────────────────────────────────── */
.coming {
  min-height: 64vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 4rem 1.5rem;
}
.coming .box { max-width: 560px; }
.coming .ic {
  width: 80px; height: 80px;
  border-radius: 20px;
  background: var(--accent-light);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.4rem;
  font-size: 2.2rem;
  color: var(--accent);
}
.coming h1 {
  color: var(--text-primary);
  font-size: clamp(1.8rem, 4vw, 2.4rem);
  font-weight: 700;
  margin-bottom: .8rem;
  letter-spacing: -.02em;
}
.coming p {
  color: var(--text-muted);
  font-size: 1.1rem;
  margin-bottom: 1.8rem;
  line-height: 1.7;
}

/* ── Contact ────────────────────────────────────────────── */
.contact-wrap {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.4rem;
  max-width: 880px;
  margin: 0 auto;
}
.contact-item {
  display: flex;
  gap: 1.1rem;
  align-items: flex-start;
  background: var(--surface);
  border-radius: var(--radius);
  padding: 1.6rem 1.8rem;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
  transition: transform .25s, box-shadow .25s;
}
.contact-item:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.contact-item .ic {
  font-size: 1.25rem;
  color: var(--accent);
  width: 48px; height: 48px;
  display: flex; align-items: center; justify-content: center;
  background: var(--accent-light);
  border-radius: 12px;
  flex: none;
}
.contact-item h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: .2rem;
}
.contact-item a, .contact-item p { color: var(--text-muted); font-size: .95rem; }
.contact-item a:hover { color: var(--accent); }

/* Contact form focus styles */
.form-control:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(249,115,22,.15);
}

/* ── Footer ─────────────────────────────────────────────── */
footer.site {
  background: var(--ink-2);
  color: #fff;
  padding: 2.8rem 1.5rem 2rem;
  margin-top: auto;
}
footer.site .footer-inner {
  max-width: 1180px;
  margin: 0 auto;
}
footer.site .footer-banner {
  display: block;
  max-width: 860px;
  width: 100%;
  height: auto;
  margin: 0 auto 48px;
  border-radius: 14px;
}
footer.site .socials {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 1.2rem;
}
footer.site .socials .label {
  font-weight: 700;
  font-size: .9rem;
  color: #9ca3af;
  letter-spacing: .05em;
  text-transform: uppercase;
}
footer.site .socials a {
  display: flex; align-items: center; justify-content: center;
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,.07);
  transition: background .25s, transform .25s;
}
footer.site .socials a:hover {
  background: var(--accent);
  transform: translateY(-3px);
}
footer.site .socials img { width: 18px; height: 18px; }
footer.site .divider {
  height: 1px;
  background: rgba(255,255,255,.08);
  margin: 1.2rem auto;
  max-width: 1180px;
}
footer.site .footer-aws {
  max-width: 1180px;
  margin: 0 auto 1.2rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  text-align: left;
}
footer.site .footer-aws .aws-label {
  font-weight: 700;
  font-size: .82rem;
  color: #9ca3af;
  letter-spacing: .05em;
  text-transform: uppercase;
}
footer.site .footer-aws .aws-logo {
  display: inline-block;
  background: #fff;
  border-radius: 8px;
  padding: 6px 12px;
  line-height: 0;
  transition: transform .25s;
}
footer.site .footer-aws .aws-logo:hover { transform: translateY(-2px); }
footer.site .footer-aws .aws-logo img {
  height: 30px;
  width: auto;
  display: block;
}
footer.site .footer-aws .aws-title {
  font-size: .95rem;
  font-weight: 700;
  color: #fff;
  margin-top: 2px;
}
footer.site .footer-aws .aws-sub {
  font-size: .82rem;
  color: #6b7280;
}
footer.site .legal {
  text-align: center;
  font-size: .84rem;
  color: #6b7280;
  line-height: 2;
}
footer.site .legal a { color: #9ca3af; }
footer.site .legal a:hover { color: var(--accent); }

/* ── Responsive ─────────────────────────────────────────── */
@media (max-width: 768px) {
  .hero { padding: 4.5rem 1.2rem; }
  .hero p { font-size: 1rem; }
  .section { padding: 3rem 1.2rem; }
  .cta { padding: 2.5rem 1.4rem; border-radius: 16px; }
  footer.site { padding: 2.2rem 1.2rem 1.6rem; }
}
