/*
Theme Name: EGP Insurance
Theme URI: https://egpinsurance.com
Author: Elizabeth Govea
Author URI: https://egpinsurance.com
Description: A modern, professional insurance website theme for EGP Insurance.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: egp-insurance
Tags: insurance, business, professional, clean, modern
*/

/* ================================================
   EGP INSURANCE THEME - MAIN STYLESHEET
   Colors: Navy #1e3a5f | Blue #2980b9 | Light #5dade2
   ================================================ */

:root {
  --navy:       #1e3a5f;
  --navy-dark:  #142843;
  --navy-light: #2c4f7c;
  --blue:       #2980b9;
  --blue-light: #5dade2;
  --blue-pale:  #eaf4fb;
  --gold:       #f0a500;
  --white:      #ffffff;
  --gray-100:   #f8fafc;
  --gray-200:   #e9eef4;
  --gray-400:   #94a3b8;
  --gray-600:   #4a5568;
  --gray-800:   #2d3748;
  --text:       #2c3e50;
  --radius:     8px;
  --radius-lg:  16px;
  --shadow-sm:  0 1px 3px rgba(0,0,0,.08);
  --shadow:     0 4px 16px rgba(0,0,0,.10);
  --shadow-lg:  0 8px 32px rgba(0,0,0,.14);
  --transition: all .25s ease;
}

/* ---- Reset & Base ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

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

body {
  font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.7;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--blue); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--navy); }
ul { list-style: none; }

/* ---- Typography ---- */
h1, h2, h3, h4, h5 {
  font-weight: 700;
  line-height: 1.25;
  color: var(--navy);
}
h1 { font-size: clamp(2rem, 5vw, 3.25rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.25rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.5rem); }
h4 { font-size: 1.15rem; }
p  { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

/* ---- Layout ---- */
.container {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
}
.section {
  padding: 80px 0;
}
.section--gray  { background: var(--gray-100); }
.section--navy  { background: var(--navy); color: var(--white); }
.section--blue  { background: var(--blue); color: var(--white); }

.section__header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 56px;
}
.section__label {
  display: inline-block;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 10px;
}
.section--navy  .section__label,
.section--blue  .section__label { color: var(--blue-light); }
.section--navy  h2,
.section--navy  h3 { color: var(--white); }
.section--blue  h2,
.section--blue  h3 { color: var(--white); }

.divider {
  width: 56px;
  height: 4px;
  background: var(--blue);
  border-radius: 2px;
  margin: 16px auto 0;
}
.section--navy .divider,
.section--blue .divider { background: var(--gold); }

/* ---- Buttons ---- */
.btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: .95rem;
  cursor: pointer;
  border: 2px solid transparent;
  transition: var(--transition);
  letter-spacing: .01em;
}
.btn--primary {
  background: var(--blue);
  color: var(--white);
  border-color: var(--blue);
}
.btn--primary:hover {
  background: var(--navy);
  border-color: var(--navy);
  color: var(--white);
}
.btn--outline {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}
.btn--outline:hover {
  background: var(--white);
  color: var(--navy);
}
.btn--gold {
  background: var(--gold);
  color: var(--navy-dark);
  border-color: var(--gold);
}
.btn--gold:hover {
  background: #d4900a;
  border-color: #d4900a;
  color: var(--white);
}

/* ---- Grid ---- */
.grid { display: grid; gap: 32px; }
.grid--2 { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
.grid--3 { grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); }
.grid--4 { grid-template-columns: repeat(auto-fit, minmax(210px, 1fr)); }

/* ---- Cards ---- */
.card {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  padding: 36px 28px;
  transition: var(--transition);
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.card__icon {
  width: 60px;
  height: 60px;
  background: var(--blue-pale);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.card__icon svg {
  width: 28px;
  height: 28px;
  fill: var(--blue);
}

/* ---- Header / Nav ---- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--white);
  box-shadow: var(--shadow-sm);
}
.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

/* Logo */
.site-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.site-logo__mark {
  width: 44px;
  height: 44px;
  background: var(--navy);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.site-logo__mark span {
  font-size: 1rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -.5px;
}
.site-logo__text { line-height: 1.2; }
.site-logo__name {
  display: block;
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: .01em;
}
.site-logo__tagline {
  display: block;
  font-size: .68rem;
  font-weight: 600;
  color: var(--blue);
  letter-spacing: .08em;
  text-transform: uppercase;
}

/* Nav */
.main-nav { display: flex; align-items: center; gap: 6px; }
.main-nav a {
  padding: 8px 14px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: .9rem;
  color: var(--gray-600);
  transition: var(--transition);
}
.main-nav a:hover,
.main-nav a.active {
  color: var(--navy);
  background: var(--blue-pale);
}
.main-nav .btn {
  padding: 9px 22px;
  font-size: .875rem;
  margin-left: 8px;
}

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: var(--transition);
}

/* ---- Top Bar ---- */
.top-bar {
  background: var(--navy-dark);
  color: rgba(255,255,255,.85);
  font-size: .8rem;
  font-weight: 500;
  padding: 7px 0;
}
.top-bar__inner {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 24px;
}
.top-bar a { color: rgba(255,255,255,.85); }
.top-bar a:hover { color: var(--white); }
.top-bar__item { display: flex; align-items: center; gap: 6px; }
.top-bar__item svg { width: 13px; height: 13px; fill: var(--blue-light); flex-shrink: 0; }

/* ---- Hero ---- */
.hero {
  position: relative;
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 50%, var(--navy-light) 100%);
  color: var(--white);
  padding: 100px 0 90px;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.hero__inner {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 60px;
}
.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 40px;
  padding: 6px 16px 6px 8px;
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .05em;
  color: var(--blue-light);
  text-transform: uppercase;
  margin-bottom: 20px;
}
.hero__badge::before {
  content: '✓';
  background: var(--blue);
  color: white;
  width: 20px; height: 20px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: .65rem;
  flex-shrink: 0;
}
.hero h1 { color: var(--white); margin-bottom: 20px; }
.hero h1 span { color: var(--blue-light); }
.hero p.lead {
  font-size: 1.1rem;
  color: rgba(255,255,255,.85);
  margin-bottom: 36px;
  max-width: 480px;
}
.hero__cta { display: flex; gap: 14px; flex-wrap: wrap; }

/* Hero Visual */
.hero__visual {
  display: flex;
  justify-content: center;
}
.hero__card-stack {
  position: relative;
  width: 360px;
  max-width: 100%;
}
.hero__shield {
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 20px;
  backdrop-filter: blur(10px);
  padding: 40px 36px;
  text-align: center;
}
.hero__shield svg {
  width: 80px;
  height: 80px;
  fill: var(--blue-light);
  margin: 0 auto 20px;
}
.hero__shield h3 { color: var(--white); font-size: 1.25rem; margin-bottom: 8px; }
.hero__shield p  { color: rgba(255,255,255,.75); font-size: .88rem; margin: 0; }
.hero__stat-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 14px;
}
.hero__stat {
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 10px;
  padding: 14px;
  text-align: center;
}
.hero__stat strong { display: block; font-size: 1.4rem; color: var(--white); }
.hero__stat span   { font-size: .72rem; color: rgba(255,255,255,.65); text-transform: uppercase; letter-spacing: .06em; }

/* ---- Services Cards ---- */
.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  padding: 36px 28px 32px;
  transition: var(--transition);
  border-top: 4px solid transparent;
  text-decoration: none;
  display: block;
  color: inherit;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-top-color: var(--blue);
  color: inherit;
}
.service-card__icon {
  width: 56px;
  height: 56px;
  background: var(--blue-pale);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: var(--transition);
}
.service-card:hover .service-card__icon { background: var(--blue); }
.service-card__icon svg { width: 26px; height: 26px; fill: var(--blue); transition: var(--transition); }
.service-card:hover .service-card__icon svg { fill: var(--white); }
.service-card h3 { font-size: 1.15rem; margin-bottom: 10px; }
.service-card p  { font-size: .9rem; color: var(--gray-600); }
.service-card__link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: .85rem;
  font-weight: 600;
  color: var(--blue);
  margin-top: 16px;
}
.service-card__link::after { content: '→'; }

/* ---- Why Choose Us ---- */
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.why-list { list-style: none; }
.why-list li {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 18px 0;
  border-bottom: 1px solid var(--gray-200);
}
.why-list li:last-child { border-bottom: none; }
.why-icon {
  width: 44px;
  height: 44px;
  background: var(--blue-pale);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.why-icon svg { width: 22px; height: 22px; fill: var(--blue); }
.why-text h4 { margin-bottom: 4px; }
.why-text p  { font-size: .88rem; color: var(--gray-600); margin: 0; }

.why-visual {
  background: linear-gradient(135deg, var(--navy) 0%, var(--blue) 100%);
  border-radius: var(--radius-lg);
  padding: 48px 40px;
  color: var(--white);
  text-align: center;
}
.why-visual .stat-big {
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
}
.why-visual .stat-label {
  font-size: .9rem;
  color: rgba(255,255,255,.75);
  margin-top: 6px;
  margin-bottom: 32px;
}
.why-visual .license-badge {
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: var(--radius);
  padding: 16px 20px;
  margin-top: 16px;
}
.why-visual .license-badge p { margin: 0; font-size: .82rem; color: rgba(255,255,255,.8); }
.why-visual .license-badge strong { color: var(--white); }

/* ---- CTA Banner ---- */
.cta-banner {
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--blue) 100%);
  padding: 72px 0;
  text-align: center;
  color: var(--white);
}
.cta-banner h2 { color: var(--white); margin-bottom: 14px; }
.cta-banner p  { color: rgba(255,255,255,.85); font-size: 1.05rem; max-width: 560px; margin: 0 auto 32px; }
.cta-banner__actions { display: flex; justify-content: center; gap: 14px; flex-wrap: wrap; }

/* ---- About ---- */
.about-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 60px; align-items: start; }
.about-photo-wrap {
  position: relative;
}
.about-photo-placeholder {
  background: linear-gradient(135deg, var(--navy) 0%, var(--blue) 100%);
  border-radius: var(--radius-lg);
  aspect-ratio: 3/4;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--white);
  text-align: center;
  padding: 40px;
}
.about-photo-placeholder svg { width: 72px; height: 72px; fill: rgba(255,255,255,.4); margin-bottom: 16px; }
.about-photo-placeholder p { color: rgba(255,255,255,.7); font-size: .85rem; margin: 0; }
.credentials {
  background: var(--white);
  border-radius: var(--radius);
  padding: 20px 24px;
  box-shadow: var(--shadow);
  margin-top: 16px;
}
.credentials p { margin: 0; font-size: .85rem; }
.credentials strong { color: var(--navy); }
.about-content .section__label { text-align: left; }
.about-content h2 { text-align: left; }

/* ---- Services Page ---- */
.service-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  padding: 64px 0;
  border-bottom: 1px solid var(--gray-200);
}
.service-block:last-child { border-bottom: none; }
.service-block.reverse { direction: rtl; }
.service-block.reverse > * { direction: ltr; }
.service-block__icon-wrap {
  background: var(--blue-pale);
  border-radius: var(--radius-lg);
  padding: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.service-block__icon-wrap svg {
  width: 100px;
  height: 100px;
  fill: var(--blue);
}
.service-block__content h2 { margin-bottom: 16px; font-size: 1.8rem; }
.service-block__content p  { color: var(--gray-600); margin-bottom: 20px; }
.service-block__list { margin-bottom: 28px; }
.service-block__list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 6px 0;
  font-size: .92rem;
  color: var(--gray-600);
}
.service-block__list li::before {
  content: '✓';
  color: var(--blue);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}

/* ---- Contact ---- */
.contact-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 60px; }
.contact-info { padding-right: 20px; }
.contact-info h2 { margin-bottom: 16px; }
.contact-info p  { color: var(--gray-600); }
.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px 0;
  border-bottom: 1px solid var(--gray-200);
}
.contact-detail:last-of-type { border-bottom: none; }
.contact-detail__icon {
  width: 46px;
  height: 46px;
  background: var(--blue-pale);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-detail__icon svg { width: 22px; height: 22px; fill: var(--blue); }
.contact-detail__text h4 { margin-bottom: 3px; font-size: 1rem; }
.contact-detail__text p  { margin: 0; font-size: .88rem; color: var(--gray-600); }
.contact-detail__text a  { color: var(--navy); font-weight: 600; }
.contact-detail__text a:hover { color: var(--blue); }

/* Contact Form */
.contact-form-wrap {
  background: var(--gray-100);
  border-radius: var(--radius-lg);
  padding: 40px;
}
.contact-form-wrap h3 { margin-bottom: 24px; }
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-weight: 600;
  font-size: .875rem;
  color: var(--navy);
  margin-bottom: 7px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius);
  font-size: .9rem;
  font-family: inherit;
  color: var(--text);
  background: var(--white);
  transition: var(--transition);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(41, 128, 185, .15);
}
.form-group textarea { height: 130px; resize: vertical; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-submit { width: 100%; padding: 15px; font-size: 1rem; border-radius: var(--radius); border: none; cursor: pointer; }

/* ---- Footer ---- */
.site-footer {
  background: var(--navy-dark);
  color: rgba(255,255,255,.75);
}
.site-footer__main {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 48px;
  padding: 64px 0 48px;
}
.footer-brand .site-logo__name { color: var(--white); }
.footer-brand p { font-size: .88rem; margin: 16px 0 24px; max-width: 260px; }
.footer-contact-item { display: flex; align-items: center; gap: 8px; font-size: .85rem; margin-bottom: 8px; }
.footer-contact-item svg { width: 14px; height: 14px; fill: var(--blue-light); flex-shrink: 0; }
.footer-contact-item a { color: rgba(255,255,255,.75); }
.footer-contact-item a:hover { color: var(--white); }

.footer-col h4 { color: var(--white); font-size: .92rem; margin-bottom: 20px; letter-spacing: .04em; text-transform: uppercase; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a { color: rgba(255,255,255,.65); font-size: .875rem; }
.footer-col ul li a:hover { color: var(--white); padding-left: 4px; }

.site-footer__bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: .8rem;
  color: rgba(255,255,255,.45);
  flex-wrap: wrap;
  gap: 10px;
}
.site-footer__bottom a { color: rgba(255,255,255,.5); }
.site-footer__bottom a:hover { color: rgba(255,255,255,.8); }

/* ---- Page Hero (inner pages) ---- */
.page-hero {
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy-light) 100%);
  padding: 64px 0;
  color: var(--white);
}
.page-hero h1 { color: var(--white); margin-bottom: 10px; }
.page-hero p   { color: rgba(255,255,255,.8); font-size: 1.05rem; max-width: 560px; margin: 0; }
.breadcrumb {
  font-size: .82rem;
  color: rgba(255,255,255,.55);
  margin-bottom: 14px;
}
.breadcrumb a { color: rgba(255,255,255,.6); }
.breadcrumb a:hover { color: var(--white); }
.breadcrumb span { margin: 0 6px; }

/* ---- Trust Bar ---- */
.trust-bar {
  background: var(--navy);
  padding: 28px 0;
}
.trust-bar__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,.8);
  font-size: .85rem;
  font-weight: 500;
}
.trust-item svg { width: 22px; height: 22px; fill: var(--gold); flex-shrink: 0; }

/* ---- Blog Grid ---- */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 28px;
}
.blog-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  transition: var(--transition);
  border-top: 4px solid transparent;
}
.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-top-color: var(--blue);
}
.blog-card__cat {
  display: inline-block;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--blue);
  background: var(--blue-pale);
  padding: 4px 12px;
  border-radius: 40px;
  margin-bottom: 14px;
  width: fit-content;
}
.blog-card__title {
  font-size: 1.15rem;
  line-height: 1.35;
  margin-bottom: 12px;
}
.blog-card__title a {
  color: var(--navy);
  text-decoration: none;
}
.blog-card__title a:hover { color: var(--blue); }
.blog-card__excerpt {
  font-size: .9rem;
  color: var(--gray-600);
  line-height: 1.65;
  flex: 1;
  margin-bottom: 20px;
}
.blog-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--gray-200);
  padding-top: 16px;
  margin-top: auto;
}
.blog-card__date {
  font-size: .78rem;
  color: var(--gray-400);
}
.blog-card__read-more {
  font-size: .85rem;
  font-weight: 700;
  color: var(--blue);
}
.blog-card__read-more:hover { color: var(--navy); }

.blog-pagination {
  margin-top: 48px;
  text-align: center;
}
.blog-pagination .nav-links {
  display: flex;
  justify-content: center;
  gap: 8px;
}
.blog-pagination a,
.blog-pagination span {
  padding: 8px 16px;
  border-radius: var(--radius);
  font-size: .875rem;
  font-weight: 600;
  border: 1.5px solid var(--gray-200);
  color: var(--navy);
  background: var(--white);
}
.blog-pagination a:hover { background: var(--blue); color: var(--white); border-color: var(--blue); }
.blog-pagination .current { background: var(--navy); color: var(--white); border-color: var(--navy); }

/* ---- Single Post ---- */
.single-post-wrap {
  max-width: 740px;
  margin: 0 auto;
}
.single-post-wrap h2 { margin: 32px 0 12px; font-size: 1.4rem; }
.single-post-wrap h3 { margin: 24px 0 10px; font-size: 1.15rem; }
.single-post-wrap p  { color: var(--gray-600); margin-bottom: 18px; line-height: 1.8; }
.single-post-wrap ul { margin: 0 0 20px 0; }
.single-post-wrap ul li {
  display: flex;
  gap: 10px;
  padding: 5px 0;
  color: var(--gray-600);
  font-size: .95rem;
}
.single-post-wrap ul li::before {
  content: '✓';
  color: var(--blue);
  font-weight: 700;
  flex-shrink: 0;
}
.post-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 32px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--gray-200);
  flex-wrap: wrap;
}
.post-meta span {
  font-size: .82rem;
  color: var(--gray-400);
  font-weight: 500;
}
.post-meta .post-cat {
  background: var(--blue-pale);
  color: var(--blue);
  padding: 3px 12px;
  border-radius: 40px;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.post-cta {
  background: var(--blue-pale);
  border-left: 4px solid var(--blue);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 24px 28px;
  margin: 40px 0;
}
.post-cta p { margin-bottom: 12px; color: var(--navy); font-weight: 500; }
.post-cta .btn { font-size: .875rem; padding: 10px 24px; }

/* ---- Responsive ---- */
@media (max-width: 900px) {
  .hero__inner        { grid-template-columns: 1fr; }
  .hero__visual       { display: none; }
  .why-grid           { grid-template-columns: 1fr; }
  .about-grid         { grid-template-columns: 1fr; }
  .service-block      { grid-template-columns: 1fr; }
  .service-block.reverse { direction: ltr; }
  .contact-grid       { grid-template-columns: 1fr; }
  .site-footer__main  { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 700px) {
  .section { padding: 56px 0; }
  .hero { padding: 64px 0; }
  .main-nav { display: none; flex-direction: column; position: fixed; inset: 72px 0 0 0; background: var(--white); padding: 24px; gap: 4px; overflow-y: auto; }
  .main-nav.open { display: flex; }
  .main-nav a { padding: 12px 16px; font-size: 1rem; }
  .nav-toggle { display: flex; }
  .top-bar__inner { justify-content: center; gap: 16px; }
  .site-footer__main { grid-template-columns: 1fr; gap: 32px; }
  .form-row { grid-template-columns: 1fr; }
  .hero__cta { flex-direction: column; align-items: flex-start; }
  .cta-banner__actions { flex-direction: column; align-items: center; }
  .contact-form-wrap { padding: 24px 20px; }
}
