:root {
  --navy: #0b1f48;
  --blue: #1d4ed8;
  --light-blue: #eff6ff;
  --text: #1f2937;
  --muted: #4b5563;
  --border: #dbe2ea;
  --bg: #f6f8fc;
  --white: #ffffff;
}
* { box-sizing: border-box; }
body.site {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.5;
}
a { color: var(--blue); }
a:hover { color: #1e40af; }
.page { max-width: 1080px; margin: 0 auto; padding: 0 16px 48px; }
.topbar { background: var(--white); border-bottom: 1px solid var(--border); padding: 18px 0; margin-bottom: 24px; }
.topbar-inner { max-width: 1080px; margin: 0 auto; padding: 0 16px; display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
.brand { display: flex; align-items: center; gap: 12px; color: var(--navy); text-decoration: none; font-weight: bold; font-size: 24px; }
.brand img { width: 42px; height: 42px; border-radius: 8px; object-fit: cover; }
.callout { background: var(--light-blue); color: var(--navy); border: 1px solid #bfdbfe; border-radius: 10px; padding: 10px 14px; font-size: 15px; font-weight: bold; }
.hero { background: linear-gradient(135deg, #0b1f48 0%, #1d4ed8 100%); color: var(--white); border-radius: 16px; padding: 30px 24px; margin-bottom: 24px; }
.hero h1 { margin: 0 0 12px; font-size: 34px; line-height: 1.2; }
.hero p { margin: 0 0 16px; max-width: 760px; font-size: 17px; }
.hero-links { display: flex; flex-wrap: wrap; gap: 10px; }
.button { display: inline-block; padding: 10px 14px; border-radius: 8px; font-weight: bold; text-decoration: none; border: 1px solid transparent; }
.button-primary { background: #22c55e; color: #032915; }
.button-secondary { background: transparent; color: #ffffff; border-color: rgba(255, 255, 255, 0.45); }
.section { background: var(--white); border: 1px solid var(--border); border-radius: 14px; padding: 22px; margin-bottom: 20px; }
.section h2 { margin-top: 0; margin-bottom: 8px; color: var(--navy); font-size: 26px; }
.steps { list-style: none; padding: 0; margin: 12px 0 0; display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 12px; }
.steps li { background: #f9fbff; border: 1px solid var(--border); border-radius: 12px; padding: 14px; }
.step-number { display: inline-block; width: 28px; height: 28px; border-radius: 50%; background: var(--blue); color: var(--white); text-align: center; line-height: 28px; font-weight: bold; margin-bottom: 8px; }
.cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 14px; margin-top: 14px; }
.card { border: 1px solid var(--border); border-radius: 12px; padding: 14px; background: #fcfdff; }
.card h3 { margin: 0 0 6px; font-size: 18px; color: #0f2555; }
.card img { width: 100%; height: 145px; object-fit: cover; border-radius: 8px; margin-bottom: 8px; border: 1px solid #c8d4e2; display: block; }
.footer { text-align: center; color: var(--muted); font-size: 14px; margin-top: 28px; }

.carousel { position: relative; overflow: hidden; }
.carousel-track { min-height: 220px; }
.carousel-item { display: none; }
.carousel-item.active { display: block; }
.testimonial-quote { font-style: italic; color: var(--muted); border-left: 4px solid #93c5fd; padding-left: 14px; margin: 0; }
.testimonial-author { margin-top: 10px; font-weight: bold; color: #203b66; }
.testimonial-photo-row { margin-top: 16px; display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 10px; }
<<<<<<< HEAD
.testimonial-photo-row img { width: 100%; height: 140px; object-fit: cover; border-radius: 10px; border: 1px solid #c8d4e2; background: #eef4ff; }
=======
.testimonial-photo-row img { width: 100%; height: auto; max-height: 260px; object-fit: contain; border-radius: 10px; border: 1px solid #c8d4e2; background: #eef4ff; }
>>>>>>> codex/redesign-copycovers.com-ui-wl2hqs
.carousel-control { position: absolute; top: 50%; transform: translateY(-50%); width: 38px; height: 38px; border: 0; border-radius: 50%; background: rgba(11,31,72,0.85); color: #fff; font-size: 22px; cursor: pointer; }
.carousel-control.prev { left: 10px; }
.carousel-control.next { right: 10px; }

.testimonial-list { display: grid; gap: 14px; }
.testimonial-card { border: 1px solid var(--border); border-radius: 12px; padding: 16px; background: #fcfdff; }
.testimonial-card p { margin-top: 0; }

.price-wrap { max-width: 1120px; margin: 0 auto; padding: 0 16px 40px; }
.price-intro { background: var(--white); border: 1px solid var(--border); border-radius: 14px; padding: 20px; margin-bottom: 20px; }
.price-title { color: #cc0000; text-align: center; margin: 0 0 12px; }
.price-table-wrap { background: var(--white); border: 1px solid var(--border); border-radius: 14px; padding: 14px; overflow-x: auto; }
.price-table { border-collapse: collapse; width: 100%; font-size: 13px; }
.price-table th, .price-table td { border: 1px solid #ccc; padding: 6px 8px; text-align: center; }
.price-table th { background-color: #f2f2f2; font-weight: bold; }
.price-table tr:nth-child(even) td { background-color: #fafafa; }

@media (max-width: 640px) {
  .hero h1 { font-size: 28px; }
  .brand { font-size: 20px; }
}
