/* StorageKeeper — Professional, warm, trustworthy */

:root {
  --bg: #faf9f7;
  --bg-warm: #f5f0eb;
  --fg: #1a1a2e;
  --fg-muted: #5a5a7a;
  --accent: #c8873a;
  --accent-dark: #a86f2d;
  --surface: #ffffff;
  --border: #e8e3dc;
  --success: #2d9e6e;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  background: var(--bg);
  color: var(--fg);
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  font-weight: 400;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* Navigation */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250, 249, 247, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 16px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--fg);
  letter-spacing: -0.5px;
}
.nav-tagline {
  font-size: 13px;
  color: var(--fg-muted);
  font-weight: 500;
}

/* Hero */
.hero {
  position: relative;
  overflow: hidden;
  padding: 80px 32px 96px;
}
.hero-inner { max-width: 1120px; margin: 0 auto; position: relative; z-index: 1; }
.hero-badge {
  display: inline-block;
  background: var(--accent);
  color: white;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 4px;
  margin-bottom: 28px;
}
.hero-headline {
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(44px, 6vw, 80px);
  font-weight: 700;
  line-height: 1.05;
  color: var(--fg);
  letter-spacing: -2px;
  margin-bottom: 24px;
  max-width: 700px;
}
.hero-headline em {
  font-style: italic;
  color: var(--accent);
}
.hero-sub {
  font-size: 18px;
  color: var(--fg-muted);
  max-width: 520px;
  line-height: 1.7;
  margin-bottom: 56px;
}
.hero-stat-row {
  display: flex;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}
.hero-stat { max-width: 200px; }
.hero-stat-num {
  display: block;
  font-family: 'Fraunces', Georgia, serif;
  font-size: 48px;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 6px;
}
.hero-stat-label {
  font-size: 13px;
  color: var(--fg-muted);
  line-height: 1.4;
}
.hero-stat-divider {
  width: 1px;
  height: 60px;
  background: var(--border);
}
.hero-bg-shape {
  position: absolute;
  right: -120px;
  top: 0;
  bottom: 0;
  width: 600px;
  background: radial-gradient(ellipse at center, rgba(200,135,58,0.08) 0%, transparent 70%);
  pointer-events: none;
}

/* Problem */
.problem {
  background: var(--bg-warm);
  padding: 96px 32px;
}
.problem-inner { max-width: 1120px; margin: 0 auto; }
.problem-label, .how-label, .services-label, .testimonials-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}
.problem-headline, .how-headline, .services-headline {
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 700;
  color: var(--fg);
  line-height: 1.2;
  letter-spacing: -1px;
  margin-bottom: 56px;
  max-width: 560px;
}
.problem-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}
.problem-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 32px;
  transition: box-shadow 0.2s;
}
.problem-card:hover { box-shadow: 0 8px 32px rgba(0,0,0,0.06); }
.problem-icon {
  width: 40px;
  height: 40px;
  background: var(--bg-warm);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  color: var(--accent);
}
.problem-card h3 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--fg);
}
.problem-card p {
  font-size: 14px;
  color: var(--fg-muted);
  line-height: 1.6;
}

/* How It Works */
.how { padding: 96px 32px; }
.how-inner { max-width: 1120px; margin: 0 auto; }
.how-steps { display: flex; flex-direction: column; gap: 0; }
.how-step {
  display: flex;
  gap: 32px;
  align-items: flex-start;
  padding: 40px 0;
  border-bottom: 1px solid var(--border);
}
.how-step:last-child { border-bottom: none; }
.how-step-num {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 56px;
  font-weight: 700;
  color: var(--border);
  line-height: 1;
  min-width: 72px;
  letter-spacing: -2px;
}
.how-step-body h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--fg);
}
.how-step-body p { font-size: 15px; color: var(--fg-muted); max-width: 560px; line-height: 1.6; }

/* Services */
.services { background: var(--bg-warm); padding: 96px 32px; }
.services-inner { max-width: 1120px; margin: 0 auto; }
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
}
.service-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 28px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.service-check {
  min-width: 32px;
  height: 32px;
  background: rgba(45, 158, 110, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--success);
  margin-top: 2px;
}
.service-card h4 {
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--fg);
}
.service-card p { font-size: 14px; color: var(--fg-muted); line-height: 1.5; }

/* Testimonials */
.testimonials { padding: 96px 32px; }
.testimonials-inner { max-width: 1120px; margin: 0 auto; }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-bottom: 56px;
}
.testimonial-card {
  background: var(--bg-warm);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 32px;
}
.testimonial-quote {
  font-family: 'Fraunces', Georgia, serif;
  font-style: italic;
  font-size: 17px;
  line-height: 1.5;
  color: var(--fg);
  margin-bottom: 16px;
}
.testimonial-attr {
  font-size: 13px;
  color: var(--fg-muted);
  font-weight: 500;
}
.testimonials-stats {
  display: flex;
  gap: 48px;
  flex-wrap: wrap;
  padding-top: 48px;
  border-top: 1px solid var(--border);
}
.testimonial-stat { }
.testimonial-stat-num {
  display: block;
  font-family: 'Fraunces', Georgia, serif;
  font-size: 40px;
  font-weight: 700;
  color: var(--fg);
  line-height: 1;
  margin-bottom: 6px;
}
.testimonial-stat-label {
  font-size: 13px;
  color: var(--fg-muted);
}

/* Closing */
.closing {
  background: var(--fg);
  color: white;
  padding: 96px 32px;
}
.closing-inner { max-width: 800px; margin: 0 auto; text-align: center; }
.closing-headline {
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -1px;
  margin-bottom: 24px;
}
.closing-body {
  font-size: 17px;
  color: rgba(255,255,255,0.7);
  line-height: 1.7;
  max-width: 600px;
  margin: 0 auto;
}

/* Footer */
.footer {
  background: var(--bg-warm);
  border-top: 1px solid var(--border);
  padding: 64px 32px 32px;
}
.footer-inner {
  max-width: 1120px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  gap: 48px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}
.footer-logo {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 12px;
}
.footer-brand p { font-size: 14px; color: var(--fg-muted); max-width: 280px; }
.footer-links { display: flex; gap: 64px; }
.footer-col-title {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--fg-muted);
  margin-bottom: 16px;
}
.footer-col ul { list-style: none; }
.footer-col li {
  font-size: 14px;
  color: var(--fg);
  margin-bottom: 10px;
  cursor: pointer;
  transition: color 0.2s;
}
.footer-col li:hover { color: var(--accent); }
.footer-bottom {
  max-width: 1120px;
  margin: 0 auto;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}
.footer-bottom p { font-size: 13px; color: var(--fg-muted); }

/* Responsive */
@media (max-width: 768px) {
  .hero { padding: 56px 24px 72px; }
  .hero-headline { letter-spacing: -1px; }
  .hero-stat-row { gap: 24px; }
  .hero-stat-divider { display: none; }
  .hero-stat { max-width: 100%; }
  .problem, .how, .services, .testimonials, .closing { padding: 64px 24px; }
  .how-step { gap: 20px; }
  .how-step-num { font-size: 40px; min-width: 48px; }
  .footer-inner { flex-direction: column; }
  .footer-links { gap: 32px; }
  .testimonials-stats { gap: 32px; }
  .nav-inner { padding: 14px 24px; }
}

@media (max-width: 480px) {
  .hero-headline { font-size: 36px; }
  .hero-stat-num { font-size: 36px; }
  .services-grid, .problem-grid { grid-template-columns: 1fr; }
  .footer-links { flex-direction: column; }
}