:root {
  --navy: #0d1b2a;
  --navy-light: #1b2f45;
  --orange: #ff6b35;
  --orange-dark: #e0551f;
  --cloud: #f4f6f8;
  --grey: #5c6b7a;
  --white: #ffffff;
  --border: #e2e6ea;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  color: var(--navy);
  background: var(--white);
  line-height: 1.6;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.container { max-width: 1120px; margin: 0 auto; padding: 0 24px; }

/* Header */
header {
  background: var(--navy);
  color: var(--white);
  position: sticky;
  top: 0;
  z-index: 100;
}
.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
  max-width: 1120px;
  margin: 0 auto;
}
.logo { display: flex; align-items: center; gap: 10px; font-weight: 700; font-size: 20px; letter-spacing: 0.5px; }
.logo svg { width: 28px; height: 28px; }
nav ul { list-style: none; display: flex; gap: 28px; margin: 0; padding: 0; }
nav a { font-size: 14px; font-weight: 500; opacity: 0.85; transition: opacity 0.15s; }
nav a:hover, nav a.active { opacity: 1; color: var(--orange); }
.nav-cta {
  background: var(--orange);
  color: var(--white) !important;
  padding: 8px 18px;
  border-radius: 4px;
  font-weight: 600;
  opacity: 1 !important;
}
.nav-cta:hover { background: var(--orange-dark); }

/* Hero */
.hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 60%, #2a4159 100%);
  color: var(--white);
  padding: 90px 24px 110px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.hero h1 { font-size: 44px; margin: 0 0 16px; font-weight: 800; letter-spacing: -0.5px; }
.hero p { font-size: 18px; max-width: 620px; margin: 0 auto 32px; opacity: 0.85; }
.hero .badge {
  display: inline-block; background: rgba(255,107,53,0.15); color: var(--orange);
  padding: 6px 16px; border-radius: 20px; font-size: 13px; font-weight: 600;
  letter-spacing: 0.5px; margin-bottom: 20px; border: 1px solid rgba(255,107,53,0.3);
}
.btn {
  display: inline-block; padding: 13px 30px; border-radius: 4px; font-weight: 600; font-size: 15px;
  cursor: pointer; border: none;
}
.btn-primary { background: var(--orange); color: var(--white); }
.btn-primary:hover { background: var(--orange-dark); }
.btn-outline { background: transparent; color: var(--white); border: 1px solid rgba(255,255,255,0.4); margin-left: 12px; }
.btn-outline:hover { border-color: var(--white); }

/* Sections */
section { padding: 72px 0; }
.section-alt { background: var(--cloud); }
.section-title { text-align: center; margin-bottom: 48px; }
.section-title .eyebrow { color: var(--orange); font-weight: 700; font-size: 13px; letter-spacing: 1.5px; text-transform: uppercase; }
.section-title h2 { font-size: 32px; margin: 8px 0 12px; }
.section-title p { color: var(--grey); max-width: 560px; margin: 0 auto; }

.grid { display: grid; gap: 28px; }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }

.card {
  background: var(--white); border: 1px solid var(--border); border-radius: 8px; padding: 28px;
  transition: transform 0.15s, box-shadow 0.15s;
}
.card:hover { transform: translateY(-3px); box-shadow: 0 12px 24px rgba(13,27,42,0.08); }
.card .icon {
  width: 46px; height: 46px; border-radius: 8px; background: rgba(255,107,53,0.1);
  display: flex; align-items: center; justify-content: center; margin-bottom: 16px;
}
.card h3 { margin: 0 0 8px; font-size: 18px; }
.card p { color: var(--grey); font-size: 14.5px; margin: 0; }

.product-card {
  background: var(--white); border: 1px solid var(--border); border-radius: 8px; overflow: hidden;
}
.product-thumb {
  height: 150px; background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  display: flex; align-items: center; justify-content: center;
}
.product-thumb svg { width: 56px; height: 56px; opacity: 0.85; }
.product-body { padding: 18px; }
.product-body h3 { font-size: 15.5px; margin: 0 0 4px; }
.product-body .price { color: var(--orange); font-weight: 700; font-size: 16px; margin: 8px 0 12px; }
.product-body .tag { font-size: 11.5px; color: var(--grey); text-transform: uppercase; letter-spacing: 0.5px; }
.btn-small {
  display: block; width: 100%; text-align: center; padding: 9px; border-radius: 4px;
  background: var(--navy); color: var(--white); font-size: 13.5px; font-weight: 600; border: none; cursor: pointer;
}
.btn-small:hover { background: var(--navy-light); }

.price-table {
  background: var(--white); border: 1px solid var(--border); border-radius: 8px; padding: 32px; text-align: center;
}
.price-table.featured { border: 2px solid var(--orange); position: relative; }
.price-table .amount { font-size: 38px; font-weight: 800; color: var(--navy); margin: 12px 0; }
.price-table .amount span { font-size: 16px; color: var(--grey); font-weight: 500; }
.price-table ul { list-style: none; padding: 0; margin: 20px 0; text-align: left; }
.price-table li { padding: 8px 0; border-bottom: 1px solid var(--border); font-size: 14px; color: var(--grey); }
.price-table li:before { content: "✓ "; color: var(--orange); font-weight: 700; }

.testimonial {
  background: var(--white); border: 1px solid var(--border); border-radius: 8px; padding: 26px;
}
.testimonial p { font-style: italic; color: var(--navy-light); margin: 0 0 14px; }
.testimonial .author { font-weight: 700; font-size: 14px; }
.testimonial .role { color: var(--grey); font-size: 12.5px; }

.stats { display: flex; justify-content: space-around; text-align: center; flex-wrap: wrap; gap: 24px; }
.stats .num { font-size: 34px; font-weight: 800; color: var(--orange); }
.stats .label { color: var(--grey); font-size: 13.5px; }

form { max-width: 560px; margin: 0 auto; }
.form-row { margin-bottom: 18px; }
label { display: block; font-size: 13.5px; font-weight: 600; margin-bottom: 6px; }
input, textarea, select {
  width: 100%; padding: 11px 14px; border: 1px solid var(--border); border-radius: 4px; font-size: 14.5px;
  font-family: inherit;
}
textarea { resize: vertical; min-height: 110px; }

.blog-card img, .blog-card .thumb { height: 160px; }
.blog-card .thumb {
  background: linear-gradient(135deg, var(--orange) 0%, var(--orange-dark) 100%);
  border-radius: 8px 8px 0 0; display: flex; align-items: center; justify-content: center;
}
.blog-card .thumb svg { width: 44px; height: 44px; color: white; }
.blog-card { border: 1px solid var(--border); border-radius: 8px; overflow: hidden; background: var(--white); }
.blog-card .body { padding: 20px; }
.blog-card .date { font-size: 12px; color: var(--grey); text-transform: uppercase; letter-spacing: 0.5px; }
.blog-card h3 { font-size: 17px; margin: 8px 0; }
.blog-card p { color: var(--grey); font-size: 14px; }

.post-content { max-width: 720px; margin: 0 auto; }
.post-content h1 { font-size: 34px; margin-bottom: 8px; }
.post-content .meta { color: var(--grey); font-size: 13.5px; margin-bottom: 32px; }
.post-content p { margin-bottom: 18px; color: #2c3a48; }
.post-content h2 { margin-top: 36px; font-size: 22px; }

footer { background: var(--navy); color: rgba(255,255,255,0.7); padding: 56px 0 24px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 32px; margin-bottom: 40px; }
footer h4 { color: var(--white); font-size: 14px; margin-bottom: 16px; }
footer ul { list-style: none; padding: 0; margin: 0; }
footer li { margin-bottom: 10px; font-size: 13.5px; }
footer a:hover { color: var(--orange); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1); padding-top: 24px; display: flex;
  justify-content: space-between; font-size: 12.5px; flex-wrap: wrap; gap: 12px;
}

.breadcrumb { font-size: 13px; color: var(--grey); margin-bottom: 20px; }
.breadcrumb a:hover { color: var(--orange); }

@media (max-width: 860px) {
  nav ul { display: none; }
  .grid-3, .grid-4, .grid-2 { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .hero h1 { font-size: 30px; }
}
