/* Web Refresh — Brochure Site Theme */
:root {
  --accent: #0d7377;
  --accent-light: #14a3a8;
  --accent-dark: #0a5c5f;
  --bg: #ffffff;
  --bg-alt: #f5f8fa;
  --text: #1a1a2e;
  --text-light: #555;
  --border: #e2e8f0;
  --card-shadow: 0 2px 12px rgba(0,0,0,0.06);
  --radius: 8px;
  --max-width: 1100px;
  --font-sans: system-ui, -apple-system, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  --transition: 0.2s ease;
}

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

html { font-size: 16px; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--font-sans);
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
}

a { color: var(--accent); text-decoration: none; }
a:hover { color: var(--accent-light); }

img { max-width: 100%; height: auto; }

/* Navigation */
.nav {
  background: var(--bg);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 100;
}

.nav-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 1rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-brand {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--accent);
}

.nav-links { display: flex; gap: 1.5rem; }
.nav-links a { color: var(--text); font-size: 0.95rem; font-weight: 500; }
.nav-links a:hover,
.nav-links a[aria-current] { color: var(--accent); }

/* Container */
.container { max-width: var(--max-width); margin: 0 auto; padding: 0 1.5rem; }

/* Hero */
.hero {
  background: linear-gradient(135deg, #0d7377 0%, #0a5c5f 50%, #063f41 100%);
  color: #fff;
  padding: 5rem 1.5rem;
  text-align: center;
}

.hero-content { max-width: 720px; margin: 0 auto; }

.hero-title {
  font-size: clamp(1.8rem, 5vw, 3rem);
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

.hero-accent { color: #7dd8db; }

.hero-text {
  font-size: 1.1rem;
  line-height: 1.7;
  opacity: 0.92;
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 0.85rem 2rem;
  background: #fff;
  color: var(--accent-dark);
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  border: none;
  transition: var(--transition);
}

.btn:hover { background: #e8f4f5; color: var(--accent-dark); }

.btn-outline {
  background: transparent;
  border: 2px solid var(--accent);
  color: var(--accent);
}

.btn-outline:hover { background: var(--accent); color: #fff; }

/* Sections */
.section { padding: 4rem 0; }
.section-alt { background: var(--bg-alt); }

.section h2 {
  font-size: 1.75rem;
  margin-bottom: 2rem;
  text-align: center;
}

/* Cards */
.card { background: var(--bg); padding: 1.75rem; border-radius: var(--radius); box-shadow: var(--card-shadow); }

.card h3 {
  font-size: 1.15rem;
  color: var(--accent);
  margin-bottom: 0.75rem;
}

.card p { font-size: 0.95rem; color: var(--text-light); line-height: 1.6; }

/* Grids */
.grid-2, .grid-3 {
  display: grid;
  gap: 1.5rem;
}

.grid-2 { grid-template-columns: 1fr 1fr; }
.grid-3 { grid-template-columns: 1fr 1fr 1fr; }

/* Page Header */
.page-header {
  background: var(--bg-alt);
  padding: 3rem 0;
  text-align: center;
}

.page-header h1 { font-size: 2rem; margin-bottom: 0.5rem; }

.lead { font-size: 1.15rem; color: var(--text-light); }

/* Pricing Cards */
.pricing-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--card-shadow);
  max-width: 480px;
  margin: 0 auto 1.5rem;
}

.pricing-card.featured {
  border-color: var(--accent);
  border-width: 2px;
}

.pricing-header { text-align: center; margin-bottom: 1.5rem; }

.pricing-header h2, .pricing-header h3 { font-size: 1.3rem; margin-bottom: 0.5rem; }

.price { font-size: 2.5rem; font-weight: 700; color: var(--accent); }
.price-note { font-size: 0.9rem; color: var(--text-light); }

.pricing-features { list-style: none; }
.pricing-features li {
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.95rem;
}

.pricing-features li:last-child { border-bottom: none; }

.pricing-features li::before { content: "✓ "; color: var(--accent); font-weight: 700; }

.pricing-table {
  width: 100%;
  border-collapse: collapse;
}

.pricing-table td {
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--border);
}

.pricing-table td:last-child { text-align: right; }

/* Portfolio */
.portfolio-item {
  margin-bottom: 2.5rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid var(--border);
}

.portfolio-item:last-child { border-bottom: none; }

.portfolio-text h2 { text-align: left; margin-bottom: 0.25rem; }
.portfolio-tag { font-size: 0.9rem; color: var(--text-light); margin-bottom: 0.75rem; }

/* Prose */
.prose h2 { text-align: left; font-size: 1.5rem; margin-top: 2.5rem; margin-bottom: 1rem; }
.prose h3 { font-size: 1.15rem; color: var(--accent); margin-top: 1.5rem; margin-bottom: 0.75rem; }
.prose p { margin-bottom: 1rem; }
.prose ul { margin-bottom: 1rem; padding-left: 1.5rem; }
.prose ul li { margin-bottom: 0.4rem; }
.prose hr { border: none; border-top: 1px solid var(--border); margin: 2rem 0; }
.prose code { background: var(--bg-alt); padding: 0.15rem 0.4rem; border-radius: 3px; font-size: 0.9rem; }

/* Footer */
.footer {
  background: var(--bg-alt);
  padding: 3rem 0 1.5rem;
  border-top: 1px solid var(--border);
  font-size: 0.9rem;
  color: var(--text-light);
}

.footer-grid {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 2rem;
}

.footer-grid h4 { color: var(--text); margin-bottom: 0.75rem; font-size: 0.95rem; }
.footer-grid a { display: inline-block; margin-bottom: 0.35rem; }

.footer-bottom {
  max-width: var(--max-width);
  margin: 2rem auto 0;
  padding: 1rem 1.5rem 0;
  border-top: 1px solid var(--border);
  text-align: center;
  font-size: 0.85rem;
}

/* Responsive */
@media (max-width: 768px) {
  .grid-2, .grid-3 { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero { padding: 3rem 1.5rem; }
  .nav-links { gap: 1rem; }
  .pricing-card { margin-left: 0; margin-right: 0; }
}

@media (max-width: 360px) {
  .nav-inner { flex-direction: column; gap: 0.5rem; }
  .nav-links { font-size: 0.9rem; gap: 0.75rem; }
  .hero-title { font-size: 1.5rem; }
  .btn { width: 100%; text-align: center; }
  .section { padding: 2rem 0; }
}