/* ============================================
   WebJuicers — Stylesheet
   ============================================ */

:root {
  --navy-900: #0b1f3a;
  --navy-800: #12294d;
  --navy-700: #1c3763;
  --ink: #182437;
  --slate: #5b6b82;
  --slate-light: #8695ab;
  --paper: #ffffff;
  --paper-alt: #f6f8fb;
  --line: #e6eaf1;

  --orange: #ff7a32;
  --orange-dark: #e8631f;
  --lime: #a8d14a;
  --gradient-brand: linear-gradient(120deg, #ff7a45 0%, #ff9e2c 55%, #a8d14a 100%);

  --shadow-sm: 0 2px 8px rgba(11, 31, 58, 0.06);
  --shadow-md: 0 10px 30px rgba(11, 31, 58, 0.10);
  --shadow-lg: 0 24px 60px rgba(11, 31, 58, 0.16);

  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;

  --font-head: 'Poppins', 'Segoe UI', sans-serif;
  --font-body: 'Inter', 'Segoe UI', sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: var(--font-head);
  color: var(--navy-900);
  line-height: 1.2;
  margin: 0 0 0.5em;
}

p { margin: 0 0 1em; color: var(--slate); }

a { color: inherit; text-decoration: none; }

img { max-width: 100%; display: block; }

.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--navy-900);
  color: #fff;
  padding: 10px 16px;
  border-radius: 0 0 8px 0;
  z-index: 999;
}
.skip-link:focus { left: 0; }

.text-gradient {
  background: var(--gradient-brand);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.eyebrow {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--orange-dark);
  margin-bottom: 10px;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 13px 26px;
  border-radius: 999px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease, color 0.15s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }

.btn-primary {
  background: var(--gradient-brand);
  color: var(--navy-900);
  box-shadow: 0 10px 24px rgba(255, 122, 50, 0.32);
}
.btn-primary:hover { box-shadow: 0 14px 30px rgba(255, 122, 50, 0.42); }

.btn-ghost {
  background: transparent;
  border-color: var(--line);
  color: var(--navy-900);
}
.btn-ghost:hover { border-color: var(--orange); background: #fff6f0; }

.btn-outline {
  background: transparent;
  border-color: var(--navy-900);
  color: var(--navy-900);
  width: 100%;
}
.btn-outline:hover { background: var(--navy-900); color: #fff; }

.btn-sm { padding: 9px 20px; font-size: 0.85rem; }
.btn-lg { padding: 16px 32px; font-size: 1rem; }
.btn-block { width: 100%; }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: box-shadow 0.2s ease, border-color 0.2s ease;
}
.site-header.scrolled {
  box-shadow: var(--shadow-sm);
  border-bottom-color: var(--line);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  padding-bottom: 14px;
}

.brand-logo { height: 36px; width: auto; }

.main-nav {
  display: flex;
  gap: 34px;
}
.main-nav a {
  font-family: var(--font-head);
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--navy-800);
  position: relative;
  padding: 4px 0;
}
.main-nav a:hover { color: var(--orange-dark); }

.header-actions { display: flex; align-items: center; gap: 16px; }

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 38px;
  height: 38px;
  background: none;
  border: 1px solid var(--line);
  border-radius: 8px;
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 0 auto;
  background: var(--navy-900);
  transition: transform 0.2s ease, opacity 0.2s ease;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  overflow: hidden;
  padding: 84px 0 70px;
  background: radial-gradient(ellipse at top right, #fff3ea 0%, var(--paper) 55%);
}
.hero-glow {
  position: absolute;
  top: -160px;
  right: -160px;
  width: 480px;
  height: 480px;
  background: var(--gradient-brand);
  filter: blur(120px);
  opacity: 0.25;
  border-radius: 50%;
  pointer-events: none;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: center;
}

.hero h1 {
  font-size: clamp(2.1rem, 4.4vw, 3.4rem);
  font-weight: 700;
  margin-bottom: 0.4em;
}

.hero-sub {
  font-size: 1.08rem;
  max-width: 46ch;
}

.hero-cta { display: flex; gap: 16px; flex-wrap: wrap; margin: 28px 0 26px; }

.hero-trust { display: flex; align-items: center; gap: 12px; }
.stars { color: var(--orange); font-size: 1rem; letter-spacing: 2px; }
.hero-trust span { font-size: 0.85rem; color: var(--slate-light); }

/* mock browser illustration */
.hero-visual { position: relative; }
.mock-browser {
  background: var(--paper);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--line);
  overflow: hidden;
  transform: rotate(1.2deg);
}
.mock-bar {
  display: flex;
  gap: 6px;
  padding: 12px 16px;
  background: var(--paper-alt);
  border-bottom: 1px solid var(--line);
}
.mock-bar span {
  width: 9px; height: 9px; border-radius: 50%;
  background: var(--line);
}
.mock-bar span:nth-child(1) { background: #ff8a7a; }
.mock-bar span:nth-child(2) { background: #ffd479; }
.mock-bar span:nth-child(3) { background: #9adf9a; }

.mock-body { padding: 22px; }
.mock-hero {
  height: 110px;
  border-radius: 12px;
  background: var(--gradient-brand);
  margin-bottom: 16px;
  opacity: 0.9;
}
.mock-line { height: 10px; border-radius: 6px; background: var(--line); margin-bottom: 10px; }
.mock-line.w60 { width: 60%; }
.mock-line.w40 { width: 40%; margin-bottom: 20px; }
.mock-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.mock-card { height: 60px; border-radius: 10px; background: var(--paper-alt); border: 1px solid var(--line); }

.float-badge {
  position: absolute;
  background: var(--paper);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-md);
  border-radius: 999px;
  padding: 10px 16px;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--navy-900);
}
.badge-1 { top: -6px; left: -18px; }
.badge-2 { bottom: 10px; right: -16px; }

/* ---------- Strip ---------- */
.strip { background: var(--navy-900); padding: 28px 0; }
.strip-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  text-align: center;
}
.strip-item strong {
  display: block;
  font-family: var(--font-head);
  color: #fff;
  font-size: 1.15rem;
}
.strip-item span { font-size: 0.82rem; color: #a9b6cc; }

/* ---------- Sections ---------- */
.section { padding: 96px 0; }
.section-alt { background: var(--paper-alt); }

.section-head { max-width: 640px; margin: 0 auto 56px; text-align: center; }
.section-head h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); }
.section-sub { font-size: 1.02rem; }

.grid { display: grid; gap: 28px; }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); max-width: 800px; margin: 0 auto; }

/* ---------- Service Cards ---------- */
.card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 30px 26px;
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: #ffd9bd;
}

.icon-wrap {
  width: 48px; height: 48px;
  border-radius: 12px;
  background: linear-gradient(135deg, #fff1e6, #f2f9e6);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
}
.icon-wrap svg {
  width: 24px; height: 24px;
  fill: none;
  stroke: var(--orange-dark);
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.service-card h3 { font-size: 1.12rem; margin-bottom: 8px; }
.service-card p { font-size: 0.95rem; margin: 0; }

.services-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.services-grid .service-card {
  flex: 1 1 300px;
  max-width: 360px;
}

/* ---------- Process ---------- */
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}
.process-step {
  position: relative;
  padding: 28px 22px 22px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
}
.step-num {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.6rem;
  background: var(--gradient-brand);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 10px;
}
.process-step h3 { font-size: 1.05rem; margin-bottom: 8px; }
.process-step p { font-size: 0.92rem; margin: 0; }

/* ---------- Why Us ---------- */
.why-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
}
.check-list { list-style: none; margin: 22px 0 28px; padding: 0; display: grid; gap: 12px; }
.check-list li {
  position: relative;
  padding-left: 30px;
  font-size: 0.98rem;
  color: var(--ink);
}
.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0; top: -1px;
  width: 20px; height: 20px;
  border-radius: 50%;
  background: var(--gradient-brand);
  color: var(--navy-900);
  font-size: 0.72rem;
  font-weight: 700;
  display: flex; align-items: center; justify-content: center;
}

.why-visual {
  position: relative;
  min-height: 320px;
}
.stat-card {
  position: absolute;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  padding: 20px 24px;
  text-align: center;
}
.stat-card strong {
  display: block;
  font-family: var(--font-head);
  font-size: 1.7rem;
  color: var(--navy-900);
}
.stat-card span { font-size: 0.8rem; color: var(--slate); }
.stat-1 { top: 0; left: 10%; }
.stat-2 { top: 42%; right: 0; background: var(--navy-900); border-color: var(--navy-900); }
.stat-2 strong, .stat-2 span { color: #fff; }
.stat-3 { bottom: 0; left: 22%; }

/* ---------- Pricing ---------- */
.pricing-grid { align-items: stretch; }
.price-card {
  position: relative;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 34px 28px;
  display: flex;
  flex-direction: column;
}
.price-card h3 { font-size: 1.15rem; margin-bottom: 4px; }
.price-tag {
  font-family: var(--font-head);
  font-size: 2rem;
  font-weight: 700;
  color: var(--navy-900);
  margin: 6px 0 10px;
}
.price-tag span { font-size: 0.85rem; font-weight: 500; color: var(--slate-light); margin-left: 6px; }
.price-sub {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.78rem;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  color: var(--orange-dark);
  margin: 0 0 6px;
}
.price-renew {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--slate);
  margin: 0 0 14px;
}
.price-desc { font-size: 0.9rem; }
.price-card ul {
  list-style: none;
  padding: 0;
  margin: 6px 0 26px;
  display: grid;
  gap: 10px;
  flex-grow: 1;
}
.price-card ul li {
  font-size: 0.92rem;
  color: var(--ink);
  padding-left: 22px;
  position: relative;
}
.price-card ul li::before {
  content: "";
  position: absolute;
  left: 0; top: 7px;
  width: 8px; height: 8px;
  border-radius: 2px;
  background: var(--gradient-brand);
}
.price-card.featured {
  background: var(--navy-900);
  border-color: var(--navy-900);
  transform: scale(1.03);
  box-shadow: var(--shadow-lg);
}
.price-card.featured h3,
.price-card.featured .price-tag,
.price-card.featured ul li { color: #fff; }
.price-card.featured .price-sub { color: var(--lime); }
.price-card.featured .price-renew,
.price-card.featured .price-desc,
.price-card.featured .price-tag span { color: #b9c4d8; }
.price-card.featured .btn-outline { border-color: #fff; color: #fff; }
.price-card.featured .btn-outline:hover { background: #fff; color: var(--navy-900); }

/* ---------- Quote Section ---------- */
.quote-section { background: var(--navy-900); color: #fff; }
.quote-section .eyebrow { color: var(--lime); }
.quote-section h2 { color: #fff; }
.quote-section .section-sub { color: #b9c4d8; }

.quote-inner {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 56px;
  align-items: start;
}

.contact-block { margin-top: 30px; display: grid; gap: 14px; }
.contact-line {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 1rem;
  color: #fff;
  transition: color 0.15s ease;
}
.contact-line:hover { color: var(--orange); }
.contact-icon {
  width: 38px; height: 38px;
  border-radius: 10px;
  background: rgba(255,255,255,0.08);
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
}

.quote-form {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 34px;
  box-shadow: var(--shadow-lg);
  color: var(--ink);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-field { margin-bottom: 18px; }
.form-field label {
  display: block;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--navy-900);
  margin-bottom: 6px;
}
.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 10px;
  border: 1.5px solid var(--line);
  background: var(--paper-alt);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--ink);
  transition: border-color 0.15s ease, background 0.15s ease;
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--orange);
  background: #fff;
}
.form-field textarea { resize: vertical; }

.form-note { font-size: 0.8rem; color: var(--slate-light); text-align: center; margin: 14px 0 0; }
.form-note.success { color: #3a9d4c; font-weight: 600; }

/* ---------- Footer ---------- */
.site-footer { background: #081428; color: #b9c4d8; padding: 60px 0 0; }
.footer-inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 44px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-logo { filter: brightness(1.4) contrast(1.1); }
.footer-brand p { margin-top: 14px; font-size: 0.9rem; max-width: 32ch; color: #8a99b3; }

.footer-col h4 {
  color: #fff;
  font-size: 0.85rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.footer-col { display: flex; flex-direction: column; gap: 10px; }
.footer-col a { font-size: 0.92rem; color: #b9c4d8; transition: color 0.15s ease; }
.footer-col a:hover { color: var(--orange); }

.footer-bottom {
  padding: 20px 24px;
  text-align: center;
  font-size: 0.82rem;
  color: #6f7f9c;
}

/* ============================================
   Responsive
   ============================================ */
@media (max-width: 960px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-visual { order: -1; }
  .why-grid { grid-template-columns: 1fr; }
  .why-visual { min-height: 220px; margin-top: 20px; }
  .quote-inner { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 720px) {
  .main-nav {
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: var(--paper);
    border-bottom: 1px solid var(--line);
    flex-direction: column;
    padding: 18px 24px;
    gap: 18px;
    display: none;
    box-shadow: var(--shadow-md);
  }
  .main-nav.open { display: flex; }
  .nav-toggle { display: flex; }
  .header-actions .btn-sm { display: none; }
  .strip-inner { grid-template-columns: repeat(2, 1fr); }
  .process-grid { grid-template-columns: 1fr; }
  .grid-3 { grid-template-columns: 1fr; }
  .grid-2 { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
  .price-card.featured { transform: none; }
  .stat-card { position: static; margin-bottom: 14px; }
  .why-visual { display: flex; flex-direction: column; }
}
