/* McCorry Comfort — Main Stylesheet */

/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Helvetica Neue', Arial, sans-serif;
  color: #333;
  font-size: 16px;
  line-height: 1.6;
}

img { max-width: 100%; height: auto; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ===== BUTTONS ===== */
.btn {
  display: inline-block;
  padding: 12px 28px;
  border-radius: 60px;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  border: none;
  transition: opacity 0.2s, transform 0.1s;
  white-space: nowrap;
}
.btn:hover { opacity: 0.9; transform: translateY(-1px); }
.btn:active { transform: translateY(0); }

.btn-orange {
  background: linear-gradient(180deg, #F8931F 0%, #F97518 50.13%, #FE0000 100%);
  color: #fff;
}
.btn-blue {
  background: linear-gradient(180deg, #29ABE1 0%, #2A87CD 49.9%, #2D53A9 100%);
  color: #fff;
}
.btn-lg { padding: 16px 36px; font-size: 1rem; }

/* ===== HEADER ===== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}

/* Top Bar */
.header-top {
  background: #f97518;
  color: #fff;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  padding: 6px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  min-height: 36px;
}
.header-top .top-center { text-align: center; }
.header-top .top-email {
  position: absolute;
  right: 20px;
  font-size: 0.78rem;
}
.header-top .top-email a { color: #fff; }
.header-top .top-email a:hover { text-decoration: underline; }

/* Header Mid */
.header-mid {
  background: #fff;
  padding: 12px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.header-phone {
  font-size: 1.1rem;
  font-weight: 700;
  color: #1a3a5c;
  white-space: nowrap;
}
.header-phone a { color: inherit; }
.header-logo { text-align: center; flex: 1; }
.header-logo img { height: 60px; width: auto; }
.header-cta { text-align: right; }

/* Nav Bar */
.header-nav {
  background: #2a87cd;
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}
.nav-inner a {
  color: #fff;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 14px 14px;
  display: block;
  transition: background 0.2s;
}
.nav-inner a:hover { background: rgba(255,255,255,0.15); }
.nav-inner a.active { background: rgba(255,255,255,0.2); }

/* Hamburger */
.hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  margin-left: auto;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  margin: 5px 0;
  transition: all 0.3s;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav-mobile {
  display: none;
  flex-direction: column;
  background: #2a87cd;
}
.nav-mobile.open { display: flex; }
.nav-mobile a {
  color: #fff;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 14px 20px;
  border-top: 1px solid rgba(255,255,255,0.15);
  transition: background 0.2s;
}
.nav-mobile a:hover { background: rgba(255,255,255,0.15); }

/* ===== HERO ===== */
.hero {
  background: linear-gradient(135deg, #0f2a3f 0%, #1a4a6e 100%);
  color: #fff;
  padding: 90px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.3);
}
.hero-img {
  background-size: cover !important;
  background-position: center !important;
  background-repeat: no-repeat !important;
}
.hero-img::before {
  background: rgba(0,20,40,0.55) !important;
}
.hero-content { position: relative; z-index: 1; max-width: 800px; margin: 0 auto; }
.hero h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}
.hero p {
  font-size: clamp(1rem, 2.5vw, 1.3rem);
  margin-bottom: 32px;
  opacity: 0.92;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}
.hero-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ===== SECTIONS ===== */
section { padding: 70px 20px; }
.section-inner { max-width: 1100px; margin: 0 auto; }
.section-title {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800;
  text-align: center;
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}
.section-subtitle {
  text-align: center;
  font-size: 1.05rem;
  color: #666;
  margin-bottom: 48px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}
.section-intro {
  max-width: 800px;
  margin: 0 auto 48px;
  text-align: center;
  font-size: 1.05rem;
  line-height: 1.75;
  color: #555;
}

/* ===== CARDS ===== */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 28px;
}
.card {
  background: #fff;
  border-radius: 12px;
  padding: 32px 28px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.09);
  transition: transform 0.2s, box-shadow 0.2s;
}
.card:hover { transform: translateY(-4px); box-shadow: 0 8px 30px rgba(0,0,0,0.13); }
.card-icon {
  font-size: 2.2rem;
  margin-bottom: 16px;
}
.card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: #1a3a5c;
}
.card p { font-size: 0.95rem; color: #555; line-height: 1.65; }

/* ===== STATS BAR ===== */
.stats-bar {
  background: linear-gradient(135deg, #f97518 0%, #2a87cd 100%);
  color: #fff;
  padding: 50px 20px;
}
.stats-inner {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  text-align: center;
}
.stat-number {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  display: block;
}
.stat-label {
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0.9;
}

/* ===== LOCATIONS STRIP ===== */
.locations-strip {
  background: #f4f4f4;
  padding: 50px 20px;
  text-align: center;
}
.locations-strip h2 {
  font-size: 1.3rem;
  font-weight: 800;
  color: #1a3a5c;
  margin-bottom: 20px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.locations-list {
  font-size: 1rem;
  color: #555;
  line-height: 2.2;
  max-width: 800px;
  margin: 0 auto;
}
.loc-dot { color: #f97518; margin: 0 6px; }

/* ===== REVIEWS ===== */
.reviews-section { background: #fff; }
.review-card { background: #f9f9f9; }
.review-stars { color: #f97518; font-size: 1.2rem; margin-bottom: 10px; }
.review-card p { font-style: italic; font-size: 0.95rem; margin-bottom: 12px; color: #444; }
.review-author { font-weight: 700; font-size: 0.9rem; color: #1a3a5c; }

/* ===== WHY SECTION ===== */
.why-section {
  background: #1a3a5c;
  color: #fff;
}
.why-section .card {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
}
.why-section .card h3 { color: #f97518; }
.why-section .card p { color: rgba(255,255,255,0.85); }

/* ===== CTA BANNER ===== */
.cta-banner {
  background: linear-gradient(180deg, #F8931F 0%, #F97518 50.13%, #FE0000 100%);
  color: #fff;
  text-align: center;
  padding: 60px 20px;
}
.cta-banner h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800;
  margin-bottom: 24px;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}
.cta-banner .btn-blue { box-shadow: 0 4px 16px rgba(0,0,0,0.25); }

/* ===== INTRO SECTION ===== */
.intro-section { background: #f9f9f9; }
.intro-section .section-inner { max-width: 850px; }

/* ===== LOCATION CARDS ===== */
.location-card {
  border-left: 4px solid #f97518;
}
.location-card h3 {
  color: #f97518;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.location-card address {
  font-style: normal;
  color: #555;
  font-size: 0.95rem;
  margin: 8px 0 16px;
  line-height: 1.5;
}
.location-hq-badge {
  display: inline-block;
  background: #f97518;
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 2px 10px;
  border-radius: 60px;
  margin-bottom: 8px;
}

/* ===== PILLARS ===== */
.pillar {
  text-align: center;
  padding: 32px 24px;
  background: #f9f9f9;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.06);
  transition: transform 0.2s;
}
.pillar:hover { transform: translateY(-3px); }
.pillar-icon { font-size: 2.5rem; margin-bottom: 14px; }
.pillar h3 { font-size: 1.05rem; font-weight: 700; color: #1a3a5c; margin-bottom: 10px; }
.pillar p { font-size: 0.95rem; color: #555; }

/* ===== NUMBERED CARDS (maintenance, top-10) ===== */
.numbered-card {
  display: flex;
  gap: 24px;
  align-items: flex-start;
  padding: 28px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.07);
  margin-bottom: 20px;
  transition: transform 0.2s;
}
.numbered-card:hover { transform: translateX(4px); }
.num-badge {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(180deg, #F8931F 0%, #F97518 50.13%, #FE0000 100%);
  color: #fff;
  font-size: 1.4rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
}
.numbered-card h3 { font-size: 1.05rem; font-weight: 700; color: #1a3a5c; margin-bottom: 6px; }
.numbered-card p { font-size: 0.95rem; color: #555; }

/* ===== WAYS TO PAY ===== */
.feature-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  margin-bottom: 24px;
}
.feature-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #f97518;
  color: #fff;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.feature-item h4 { font-size: 1rem; font-weight: 700; color: #1a3a5c; margin-bottom: 4px; }
.feature-item p { font-size: 0.95rem; color: #555; }

.financing-highlights { 
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin: 24px 0;
}
.financing-item {
  background: #f0f7ff;
  border-left: 3px solid #2a87cd;
  padding: 14px 18px;
  border-radius: 0 8px 8px 0;
  font-size: 0.95rem;
  color: #1a3a5c;
  font-weight: 600;
}

/* ===== CAREERS ===== */
.house-rules {
  background: #1a3a5c;
  color: #fff;
  padding: 50px 20px;
}
.house-rules .section-inner { max-width: 800px; }
.house-rules h2 { color: #f97518; text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 16px; font-size: 1.5rem; }
.house-rules p { color: rgba(255,255,255,0.85); margin-bottom: 20px; font-size: 1rem; }
.house-rules ul { margin-top: 16px; }
.house-rules ul li {
  color: rgba(255,255,255,0.9);
  padding: 12px 0 12px 28px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  position: relative;
  font-size: 0.98rem;
}
.house-rules ul li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: #f97518;
  font-weight: 700;
}

.job-card {
  background: #fff;
  border-radius: 12px;
  padding: 40px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.1);
  max-width: 800px;
  margin: 0 auto;
}
.job-card h2 { font-size: 1.5rem; font-weight: 800; color: #1a3a5c; margin-bottom: 16px; text-transform: uppercase; }
.job-card p { color: #555; margin-bottom: 24px; line-height: 1.75; }

/* ===== CONTACT ===== */
.contact-layout {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 48px;
  align-items: start;
}

/* Contact Form */
.contact-form-wrap h2 { font-size: 1.3rem; font-weight: 700; color: #1a3a5c; margin-bottom: 24px; }
.form-group { margin-bottom: 18px; }
.form-group label {
  display: block;
  font-size: 0.88rem;
  font-weight: 600;
  color: #555;
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid #ddd;
  border-radius: 8px;
  font-family: inherit;
  font-size: 1rem;
  color: #333;
  transition: border-color 0.2s, box-shadow 0.2s;
  background: #fff;
  appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #2a87cd;
  box-shadow: 0 0 0 3px rgba(42,135,205,0.15);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-group select { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M6 8L0 0h12z' fill='%23888'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 36px; }

.btn-submit {
  width: 100%;
  padding: 16px;
  font-size: 1rem;
  border-radius: 60px;
  background: linear-gradient(180deg, #F8931F 0%, #F97518 50.13%, #FE0000 100%);
  color: #fff;
  border: none;
  cursor: pointer;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  transition: opacity 0.2s;
}
.btn-submit:hover { opacity: 0.9; }
.btn-submit:disabled { opacity: 0.6; cursor: not-allowed; }
.success {
  background: #e8f5e9;
  color: #2e7d32;
  padding: 24px;
  border-radius: 8px;
  font-size: 1.1rem;
  font-weight: 600;
  text-align: center;
  border: 2px solid #a5d6a7;
}

/* Contact Info */
.contact-info-wrap { }
.contact-info-box {
  background: #f9f9f9;
  border-radius: 12px;
  padding: 32px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.07);
}
.contact-info-box h2 {
  font-size: 1.3rem;
  font-weight: 700;
  color: #1a3a5c;
  margin-bottom: 24px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.contact-info-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #eee;
}
.contact-info-item:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }
.ci-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #f97518;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
}
.ci-text strong { display: block; font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.06em; color: #999; margin-bottom: 3px; }
.ci-text a, .ci-text span { color: #1a3a5c; font-weight: 600; font-size: 0.98rem; }
.ci-text a:hover { color: #f97518; }

/* ===== TWO-PANEL SECTION ===== */
.two-panel {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}
.panel-box {
  background: #fff;
  border-radius: 12px;
  padding: 40px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.09);
}
.panel-box h2 { font-size: 1.4rem; font-weight: 800; color: #1a3a5c; margin-bottom: 16px; text-transform: uppercase; letter-spacing: 0.04em; }
.panel-box p { color: #555; margin-bottom: 16px; line-height: 1.75; }

/* ===== FOOTER ===== */
.site-footer {
  background: #262626;
  color: #fff;
}
.footer-main {
  max-width: 1100px;
  margin: 0 auto;
  padding: 60px 20px 40px;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.3fr;
  gap: 40px;
}
.footer-col h4 {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #f97518;
  margin-bottom: 18px;
}
.footer-logo { margin-bottom: 16px; display: inline-block; background: #fff; padding: 8px 16px; border-radius: 10px; }
.footer-logo img { height: 44px; display: block; }
.footer-tagline { font-size: 0.88rem; color: rgba(255,255,255,0.65); line-height: 1.65; }
.footer-col ul { }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.7);
  transition: color 0.2s;
}
.footer-col ul li a:hover { color: #f97518; }

.footer-contact-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin-bottom: 14px;
}
.footer-contact-item .fi-icon { font-size: 1rem; margin-top: 2px; opacity: 0.8; }
.footer-contact-item span, .footer-contact-item a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.5;
}
.footer-contact-item a:hover { color: #f97518; }

.footer-bottom {
  background: #1a1a1a;
  padding: 16px 20px;
  text-align: center;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.5);
}
.footer-bottom a { color: rgba(255,255,255,0.5); }
.footer-bottom a:hover { color: #f97518; }

/* ===== SECTION BG ALTERNATES ===== */
.bg-white { background: #fff; }
.bg-gray { background: #f4f4f4; }
.bg-dark-blue { background: #1a3a5c; color: #fff; }
.bg-dark-blue .section-title, .bg-dark-blue .section-subtitle { color: #fff; }
.bg-dark-blue .section-subtitle { opacity: 0.8; }

/* ===== UTILITY ===== */
.text-center { text-align: center; }
.mt-32 { margin-top: 32px; }
.divider { width: 60px; height: 4px; background: #f97518; margin: 16px auto 0; border-radius: 2px; }

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .footer-main { grid-template-columns: 1fr 1fr; }
  .contact-layout { grid-template-columns: 1fr; }
  .two-panel { grid-template-columns: 1fr; }
}

@media (max-width: 700px) {
  .nav-inner { display: none; }
  .hamburger { display: block; }
  .header-nav { display: flex; align-items: center; padding: 8px 16px; }
  .nav-label {
    color: #fff;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
  }
  .stats-inner { grid-template-columns: 1fr; gap: 32px; }
  .footer-main { grid-template-columns: 1fr; gap: 32px; }
  .financing-highlights { grid-template-columns: 1fr; }
  .header-top .top-email { display: none; }
  .card-grid { grid-template-columns: 1fr; }
}

@media (max-width: 500px) {
  .header-mid { padding: 10px 16px; }
  .header-phone { font-size: 0.9rem; }
  .hero { padding: 60px 16px; }
}

/* ===== BLOG ===== */
.blog-post-wrap { max-width: 800px; margin: 0 auto; padding: 48px 20px 64px; }
.blog-post-inner { background: #fff; }
.blog-post-meta { display: flex; align-items: center; gap: 20px; margin-bottom: 24px; font-size: 0.9rem; }
.blog-back { color: #2a87cd; text-decoration: none; font-weight: 600; }
.blog-back:hover { text-decoration: underline; }
.blog-date { color: #888; }
.blog-post-title { font-size: clamp(1.6rem, 4vw, 2.4rem); font-weight: 800; color: #1a3a5c; line-height: 1.25; margin-bottom: 32px; }
.blog-post-body { font-size: 1.05rem; line-height: 1.75; color: #333; }
.blog-post-body h2 { font-size: 1.5rem; font-weight: 700; color: #1a3a5c; margin: 36px 0 16px; }
.blog-post-body h3 { font-size: 1.2rem; font-weight: 700; color: #1a3a5c; margin: 28px 0 12px; }
.blog-post-body p { margin-bottom: 20px; }
.blog-post-body ul, .blog-post-body ol { padding-left: 24px; margin-bottom: 20px; }
.blog-post-body li { margin-bottom: 8px; }
.blog-post-body img { max-width: 100%; height: auto; border-radius: 8px; margin: 24px 0; }
.blog-post-body a { color: #2a87cd; }
.blog-featured-img { max-width: 100%; height: auto; border-radius: 8px; margin-bottom: 32px; display: block; }
.blog-post-cta { background: linear-gradient(135deg, #0f2a3f, #1a4a6e); color: #fff; padding: 36px; border-radius: 12px; text-align: center; margin-top: 48px; }
.blog-post-cta h3 { margin-bottom: 8px; font-size: 1.4rem; }
.blog-post-cta p { opacity: 0.85; margin-bottom: 24px; }
.blog-post-cta .btn { margin: 0 8px; }
/* Blog index */
.blog-index-wrap { max-width: 1100px; margin: 0 auto; padding: 48px 20px 64px; }
.blog-index-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: 28px; margin-top: 32px; }
.blog-card { background: #fff; border-radius: 12px; box-shadow: 0 2px 12px rgba(0,0,0,0.08); overflow: hidden; display: flex; flex-direction: column; }
.blog-card-img { width: 100%; height: 180px; object-fit: cover; display: block; }
.blog-card-body { padding: 24px; flex: 1; display: flex; flex-direction: column; }
.blog-card-date { font-size: 0.8rem; color: #888; margin-bottom: 8px; }
.blog-card-title { font-size: 1.1rem; font-weight: 700; color: #1a3a5c; line-height: 1.35; margin-bottom: 12px; flex: 1; }
.blog-card-title a { text-decoration: none; color: inherit; }
.blog-card-title a:hover { color: #f97518; }
.blog-card-link { color: #2a87cd; font-size: 0.9rem; font-weight: 600; text-decoration: none; }
/* Blog hero */
.blog-hero { background: linear-gradient(135deg, #0f2a3f, #1a4a6e); color: #fff; padding: 64px 20px 48px; text-align: center; }
.blog-hero h1 { font-size: clamp(2rem, 5vw, 3rem); font-weight: 800; margin-bottom: 16px; }
.blog-hero p { font-size: 1.15rem; opacity: 0.85; max-width: 600px; margin: 0 auto; }
